diff --git a/404.md b/404.md
new file mode 100644
index 0000000000000000000000000000000000000000..a7b58c002144f895fc745d766a0f17938797a265
--- /dev/null
+++ b/404.md
@@ -0,0 +1,6 @@
+---
+title: "Page Not Found"
+search: exclude
+---  
+
+Sorry, but the page you were trying to view does not exist. Try searching for it or looking at the URL to see if it looks correct.
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..2fdc308a439e20ea2ebbeb44898643361cf599a5
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,14 @@
+FROM jekyll/builder
+
+WORKDIR /tmp
+ADD Gemfile /tmp/
+ADD Gemfile.lock /tmp/
+RUN bundle install
+
+FROM jekyll/jekyll
+
+VOLUME /src
+EXPOSE 4000
+
+WORKDIR /src
+ENTRYPOINT ["jekyll", "serve", "-H", "0.0.0.0"]
diff --git a/Gemfile b/Gemfile
deleted file mode 100644
index 19e5a19a64f7ab976556eaea001548c3a9889f03..0000000000000000000000000000000000000000
--- a/Gemfile
+++ /dev/null
@@ -1,9 +0,0 @@
-source "https://rubygems.org"
-ruby RUBY_VERSION
-
-# This will help ensure the proper Jekyll version is running.
-gem "jekyll", "3.4.0"
-
-# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
-gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
-
diff --git a/Gemfile.lock b/Gemfile.lock
deleted file mode 100644
index 8180833900204fba3e07b667e7c4d8ba85684f3e..0000000000000000000000000000000000000000
--- a/Gemfile.lock
+++ /dev/null
@@ -1,51 +0,0 @@
-GEM
-  remote: https://rubygems.org/
-  specs:
-    addressable (2.5.0)
-      public_suffix (~> 2.0, >= 2.0.2)
-    colorator (1.1.0)
-    ffi (1.9.17)
-    forwardable-extended (2.6.0)
-    jekyll (3.4.0)
-      addressable (~> 2.4)
-      colorator (~> 1.0)
-      jekyll-sass-converter (~> 1.0)
-      jekyll-watch (~> 1.1)
-      kramdown (~> 1.3)
-      liquid (~> 3.0)
-      mercenary (~> 0.3.3)
-      pathutil (~> 0.9)
-      rouge (~> 1.7)
-      safe_yaml (~> 1.0)
-    jekyll-sass-converter (1.5.0)
-      sass (~> 3.4)
-    jekyll-watch (1.5.0)
-      listen (~> 3.0, < 3.1)
-    kramdown (1.13.2)
-    liquid (3.0.6)
-    listen (3.0.8)
-      rb-fsevent (~> 0.9, >= 0.9.4)
-      rb-inotify (~> 0.9, >= 0.9.7)
-    mercenary (0.3.6)
-    pathutil (0.14.0)
-      forwardable-extended (~> 2.6)
-    public_suffix (2.0.5)
-    rb-fsevent (0.9.8)
-    rb-inotify (0.9.8)
-      ffi (>= 0.5.0)
-    rouge (1.11.1)
-    safe_yaml (1.0.4)
-    sass (3.4.23)
-
-PLATFORMS
-  ruby
-
-DEPENDENCIES
-  jekyll (= 3.4.0)
-  tzinfo-data
-
-RUBY VERSION
-   ruby 2.3.1p112
-
-BUNDLED WITH
-   1.13.6
diff --git a/README.md b/README.md
deleted file mode 100644
index 96aaf28c4a02a3d1b02f9a6d5c5c96ea2674fdc9..0000000000000000000000000000000000000000
--- a/README.md
+++ /dev/null
@@ -1,119 +0,0 @@
-![Build Status](https://gitlab.com/pages/jekyll/badges/master/build.svg)
-![Jekyll Version](https://img.shields.io/gem/v/jekyll.svg)
-
----
-Test
-Example [Jekyll] website using GitLab Pages.  View it live at https://pages.gitlab.io/jekyll
-
-[Learn more about GitLab Pages](https://pages.gitlab.io) or read the the [official GitLab Pages documentation](https://docs.gitlab.com/ce/user/project/pages/).
-
----
-
-<!-- START doctoc generated TOC please keep comment here to allow auto update -->
-<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
-**Table of Contents**  *generated with [DocToc](https://github.com/thlorenz/doctoc)*
-
-- [Getting Started](#getting-started)
-  - [Start by forking this repository](#start-by-forking-this-repository)
-  - [Start from a local Jekyll project](#start-from-a-local-jekyll-project)
-- [GitLab CI](#gitlab-ci)
-- [Using Jekyll locally](#using-jekyll-locally)
-- [GitLab User or Group Pages](#gitlab-user-or-group-pages)
-- [Did you fork this project?](#did-you-fork-this-project)
-- [Other examples](#other-examples)
-- [Troubleshooting](#troubleshooting)
-
-<!-- END doctoc generated TOC please keep comment here to allow auto update -->
-
-## Getting Started
-
-You can get started with GitLab Pages using Jekyll easily by either forking this repository or by uploading a new/existing Jekyll project.
-
-Remember you need to wait for your site to build before you will be able to see your changes.  You can track the build on the **Pipelines** tab.
-
-### Start by forking this repository
-
-1. Fork this repository.
-1. **IMPORTANT:** Remove the fork relationship.
-Go to **Settings (⚙)** > **Edit Project** and click the **"Remove fork relationship"** button.
-1. Enable Shared Runners.
-Go to **Settings (⚙)** > **CI/CD Pipelines** and click the **"Enable shared Runners"** button.
-1. Rename the repository to match the name you want for your site.
-1. Edit your website through GitLab or clone the repository and push your changes.
-
-### Start from a local Jekyll project
-
-1. [Install][] Jekyll.
-1. Use `jekyll new` to create a new Jekyll Project.
-1. Add [this `.gitlab-ci.yml`](.gitlab-ci.yml) to the root of your project.
-1. Push your repository and changes to GitLab.
-
-## GitLab CI
-
-This project's static Pages are built by [GitLab CI][ci], following the steps
-defined in [`.gitlab-ci.yml`](.gitlab-ci.yml):
-
-```
-image: ruby:2.3
-
-variables:
-  JEKYLL_ENV: production
-
-pages:
-  script:
-  - bundle install
-  - bundle exec jekyll build -d public
-  artifacts:
-    paths:
-    - public
-  only:
-  - master
-```
-
-## Using Jekyll locally
-
-To work locally with this project, you'll have to follow the steps below:
-
-1. Fork, clone or download this project
-1. [Install][] Jekyll
-1. Download dependencies: `bundle`
-1. Build and preview: `bundle exec jekyll serve`
-1. Add content
-
-The above commands should be executed from the root directory of this project.
-
-Read more at Jekyll's [documentation][].
-
-## GitLab User or Group Pages
-
-To use this project as your user/group website, you will need one additional
-step: just rename your project to `namespace.gitlab.io`, where `namespace` is
-your `username` or `groupname`. This can be done by navigating to your
-project's **Settings**.
-
-Read more about [user/group Pages][userpages] and [project Pages][projpages].
-
-## Did you fork this project?
-
-If you forked this project for your own use, please go to your project's
-**Settings** and remove the forking relationship, which won't be necessary
-unless you want to contribute back to the upstream project.
-
-## Other examples
-
-* [jekyll-branched](https://gitlab.com/pages/jekyll-branched) demonstrates how you can keep your GitLab Pages site in one branch and your project's source code in another.
-* The [jekyll-themes](https://gitlab.com/groups/jekyll-themes) group contains a collection of example projects you can fork (like this one) having different visual styles.
-
-## Troubleshooting
-
-1. CSS is missing! That means two things:
-    * Either that you have wrongly set up the CSS URL in your templates, or
-    * your static generator has a configuration option that needs to be explicitly
-    set in order to serve static assets under a relative URL.
-
-[ci]: https://about.gitlab.com/gitlab-ci/
-[Jekyll]: http://jekyllrb.com/
-[install]: https://jekyllrb.com/docs/installation/
-[documentation]: https://jekyllrb.com/docs/home/
-[userpages]: https://docs.gitlab.com/ce/user/project/pages/introduction.html#user-or-group-pages
-[projpages]: https://docs.gitlab.com/ce/user/project/pages/introduction.html#project-pages
diff --git a/_config.yml b/_config.yml
index 3d5fbe62d413cdbce69a1401f6f03a575ec888e9..0a04134838658f958027125e8fcc683ea7ce678f 100644
--- a/_config.yml
+++ b/_config.yml
@@ -1,22 +1,115 @@
-# Welcome to Jekyll!
-#
-# This config file is meant for settings that affect your whole blog, values
-# which you are expected to set up once and rarely need to edit after that.
-# For technical reasons, this file is *NOT* reloaded automatically when you use
-# 'jekyll serve'. If you change this file, please restart the server process.
-
-# Site settings
-title: Example Jekyll site using GitLab Pages
-email: your-email@domain.com
-description: > # this means to ignore newlines until "baseurl:"
-  Write an awesome description for your new site here. You can edit this
-  line in _config.yml. It will appear in your document head meta (for
-  Google search results) and in your feed.xml site description.
-baseurl: "/jekyll" # the subpath of your site, e.g. /blog
-url: "/" # the base hostname & protocol for your site
-twitter_username: jekyllrb
-github_username:  jekyll
-
-# Build settings
+repository: tomjoht/documentation-theme-jekyll
+
+output: web
+# this property is useful for conditional filtering of content that is separate from the PDF.
+
+topnav_title: Jekyll Documentation Theme
+# this appears on the top navigation bar next to the home button
+
+site_title: Jekyll theme for documentation
+# this appears in the html browser tab for the site title (seen mostly by search engines, not users)
+
+company_name: Your company
+# this appears in the footer
+
+github_editme_path: tomjoht/documentation-theme-jekyll/blob/gh-pages/
+# if you're using Github, provide the basepath to the branch you've created for reviews, following the sample here. if not, leave this value blank.
+
+# gitlab_editme_path: tomjoht/documentation-theme-jekyll/blob/gh-pages/
+# if you're using GitLab, provide the basepath to the branch you've created for reviews, following the sample here. if not, leave this value blank.
+
+disqus_shortname: idratherbewriting
+# if you're using disqus for comments, add the shortname here. if not, leave this value blank.
+
+google_analytics: UA-66296557-1
+# if you have google-analytics ID, put it in. if not, edit this value to blank.
+
+host: 127.0.0.1
+# the preview server used. Leave as is.
+
+port: 4000
+# the port where the preview is rendered. You can leave this as is unless you have other Jekyll builds using this same port that might cause conflicts. in that case, use another port such as 4006.
+
+exclude:
+  - .idea/
+  - .gitignore
+# these are the files and directories that jekyll will exclude from the build
+
+feedback_subject_line: Jekyll documentation theme
+
+feedback_email: tomjoht@gmail.com
+# used as a contact email for the Feedback link in the top navigation bar
+
+# feedback_disable: true
+# if you uncomment the previous line, the Feedback link gets removed
+
+# feedback_text: "Need help?"
+# if you uncomment the previous line, it changes the Feedback text
+
+# feedback_link: "http://helpy.io/"
+# if you uncomment the previous line, it changes where the feedback link points to
+
+highlighter: rouge
+# library used for syntax highlighting
+
 markdown: kramdown
-exclude: ["README.md"]
\ No newline at end of file
+kramdown:
+ input: GFM
+ auto_ids: true
+ hard_wrap: false
+ syntax_highlighter: rouge
+
+# filter used to process markdown. note that kramdown differs from github-flavored markdown in some subtle ways
+
+collections:
+  tooltips:
+    output: false
+# collections are declared here. this renders the content in _tooltips and processes it, but doesn't output it as actual files in the output unless you change output to true
+
+defaults:
+  -
+    scope:
+      path: ""
+      type: "pages"
+    values:
+      layout: "page"
+      comments: true
+      search: true
+      sidebar: home_sidebar
+      topnav: topnav
+  -
+    scope:
+      path: ""
+      type: "tooltips"
+    values:
+      layout: "page"
+      comments: true
+      search: true
+      tooltip: true
+
+  -
+    scope:
+      path: ""
+      type: "posts"
+    values:
+      layout: "post"
+      comments: true
+      search: true
+      sidebar: home_sidebar
+      topnav: topnav
+
+# these are defaults used for the frontmatter for these file types
+
+sidebars:
+- home_sidebar
+- mydoc_sidebar
+- product1_sidebar
+- product2_sidebar
+- other
+
+description: "Intended as a documentation theme based on Jekyll for technical writers documenting software and other technical products, this theme has all the elements you would need to handle multiple products with both multi-level sidebar navigation, tags, and other documentation features."
+# the description is used in the feed.xml file
+
+# needed for sitemap.xml file only
+# url: http://idratherbewriting.com
+# baseurl: /documentation-theme-jekyll
diff --git a/_data/alerts.yml b/_data/alerts.yml
new file mode 100644
index 0000000000000000000000000000000000000000..157e1622b008ba4aa5b9e8aae6949d66db18e974
--- /dev/null
+++ b/_data/alerts.yml
@@ -0,0 +1,15 @@
+tip: '<div class="alert alert-success" role="alert"><i class="fa fa-check-square-o"></i> <b>Tip: </b>'
+note: '<div class="alert alert-info" role="alert"><i class="fa fa-info-circle"></i> <b>Note: </b>'
+important: '<div class="alert alert-warning" role="alert"><i class="fa fa-warning"></i> <b>Important: </b>'
+warning: '<div class="alert alert-danger" role="alert"><i class="fa fa-exclamation-circle"></i> <b>Warning: </b>'
+end: '</div>'
+
+callout_danger: '<div class="bs-callout bs-callout-danger">'
+callout_default: '<div class="bs-callout bs-callout-default">'
+callout_primary: '<div class="bs-callout bs-callout-primary">'
+callout_success: '<div class="bs-callout bs-callout-success">'
+callout_info: '<div class="bs-callout bs-callout-info">'
+callout_warning: '<div class="bs-callout bs-callout-warning">'
+
+hr_faded: '<hr class="faded"/>'
+hr_shaded: '<hr class="shaded"/>'
\ No newline at end of file
diff --git a/_data/definitions.yml b/_data/definitions.yml
new file mode 100644
index 0000000000000000000000000000000000000000..0da85d3d87bff4a669c42be6b14e69aece815df4
--- /dev/null
+++ b/_data/definitions.yml
@@ -0,0 +1,9 @@
+elephant: "This is a sample definition."
+
+baseball: "Baseball is considered America's pasttime sport, though that may be more of a historical term than a current one. There's a lot more excitement about football than baseball. A baseball game is somewhat of a snooze to watch, for the most part."
+
+basketball: "Basketball is a sport involving two teams of five players each competing to put a ball through a small circular rim 10 feet above the ground. Basketball requires players to be in top physical condition, since they spend most of the game running back and forth along a 94-foot-long floor."
+
+football: "No doubt the most fun sport to watch, football also manages to accrue the most injuries with the players. From concussions to blown knees, football players have short sport lives."
+
+soccer: "If there's one sport that dominates the world landscape, it's soccer. However, US soccer fans are few and far between. Apart from the popularity of soccer during the World Cup, most people don't even know the name of the professional soccer organization in their area."
\ No newline at end of file
diff --git a/_data/glossary.yml b/_data/glossary.yml
new file mode 100644
index 0000000000000000000000000000000000000000..e953fe73bfd8c9691173664496aadc7b0d287569
--- /dev/null
+++ b/_data/glossary.yml
@@ -0,0 +1,11 @@
+jekyll_platform: "Jekyll is a static site generator that builds sites using most modern web technologies."
+
+fractious: "Like a little mischevious child, full of annoying and constant trouble."
+
+gratuitous: "Something that is unwarranted and uncouth, like the social equivalent of a flagrant foul."
+
+haughty: "Proud and flaunting it. Holding your head high up like a snooty, too-good-for-everything rich person."
+
+impertinent: "Someone acting rude and insensitive to others."
+
+intrepid: "Brave and courageous especially in a difficult, dangerous situation."
\ No newline at end of file
diff --git a/_data/samplelist.yml b/_data/samplelist.yml
new file mode 100644
index 0000000000000000000000000000000000000000..453e9281eac490c20fbff4cc246b33be9dbcd5d7
--- /dev/null
+++ b/_data/samplelist.yml
@@ -0,0 +1,107 @@
+entries:
+- title: Sidebar
+  folders:
+  - title: Food
+
+    folderitems:
+    - title: Bananas
+      url: bananas.html
+
+      subfolder:
+      - title: Apples
+
+        subfolderitems:
+        - title:  Fuji apples
+          url: fuji_apples.html
+
+
+        - title: Gala apples
+          url: gala_apples.html
+
+name:
+  husband: Tom
+  wife: Shannon
+
+bikes:
+  - title: mountain bikes
+  - title: road bikes
+  - title: hybrid bikes
+
+
+salesteams:
+  - title: Regions
+    subfolderitems:
+      - location: US
+      - location: Spain
+      - location: France
+
+toc:
+  - title: Group 1
+    subfolderitems:
+      - page: Thing 1
+      - page: Thing 2
+      - page: Thing 3
+  - title: Group 2
+    subfolderitems:
+      - page: Piece 1
+      - page: Piece 2
+      - page: Piece 3
+  - title: Group 3
+    subfolderitems:
+      - page: Widget 1
+      - page: Widget 2
+      - page: Widget 3
+
+something: &hello Greetings earthling!
+myref: *hello
+
+about:
+ - zero
+ - one
+ - two
+ - three 
+
+numbercolors:
+ - zero:
+   properties: red
+ - one:
+   properties: yellow
+ - two: 
+   properties: green
+ - three:
+   properties: blue
+
+mypages:
+- section1: Section 1
+  audience: developers
+  product: acme
+  url: facebook.com
+- section2: Section 2
+  audience: writers
+  product: acme
+  url: google.com
+- section3: Section 3
+  audience: developers
+  product: acme
+  url: amazon.com
+- section4: Section 4
+  audience: writers
+  product: gizmo
+  url: apple.com
+- section5: Section 5
+  audience: writers
+  product: acme
+  url: microsoft.com
+
+feedback: > 
+  This is my feedback to you.
+  Even if I include linebreaks here,
+  all of the linebreaks will be removed when the value is inserted.
+    
+block: |
+    This pipe does something a little different. 
+    It preserves the breaks.
+    This is really helpful for code samples, 
+    since you can format the code samples with
+       the appropriate
+       white spacing.
\ No newline at end of file
diff --git a/_data/sidebars/home_sidebar.yml b/_data/sidebars/home_sidebar.yml
new file mode 100644
index 0000000000000000000000000000000000000000..fbf43d51fb68710ffc12e6e5e88c5cfc25b73137
--- /dev/null
+++ b/_data/sidebars/home_sidebar.yml
@@ -0,0 +1,22 @@
+# This is your sidebar TOC. The sidebar code loops through sections here and provides the appropriate formatting.
+
+entries:
+- title: Sidebar
+  levels: one
+  folders:
+
+  - title: Products
+    output: web
+    folderitems:
+    - title: News
+      url: /news.html
+      output: web
+    - title: Theme instructions
+      url: /mydoc_introduction.html
+      output: web
+    - title: Product 1
+      url: /p1_landing_page.html
+      output: web
+    - title: Product 2
+      url: /p2_landing_page.html
+      output: web
diff --git a/_data/sidebars/mydoc_sidebar.yml b/_data/sidebars/mydoc_sidebar.yml
new file mode 100644
index 0000000000000000000000000000000000000000..fe506cd4c508757c8bd8787b86969b2383f0b677
--- /dev/null
+++ b/_data/sidebars/mydoc_sidebar.yml
@@ -0,0 +1,295 @@
+# This is your sidebar TOC. The sidebar code loops through sections here and provides the appropriate formatting.
+
+entries:
+- title: sidebar
+  product: Jekyll Doc Theme
+  version: 6.0
+  folders:
+
+  - title:
+    output: pdf
+    type: frontmatter
+    folderitems:
+    - title:
+      url: /titlepage.html
+      output: pdf
+      type: frontmatter
+    - title:
+      url: /tocpage.html
+      output: pdf
+      type: frontmatter
+
+  - title: Overview
+    output: web, pdf
+    folderitems:
+
+    - title: Get started
+      url: /index.html
+      output: web, pdf
+      type: homepage
+
+    - title: Introduction
+      url: /mydoc_introduction.html
+      output: web, pdf
+
+    - title: Supported features
+      url: /mydoc_supported_features.html
+      output: web, pdf
+
+    - title: About the theme author
+      url: /mydoc_about.html
+      output: web, pdf
+
+    - title: Support
+      url: /mydoc_support.html
+      output: web, pdf
+
+  - title: Release Notes
+    output: web, pdf
+    folderitems:
+
+    - title: 6.0 Release notes
+      url: /mydoc_release_notes_60.html
+      output: web, pdf
+
+    - title: 5.0 Release notes
+      url: /mydoc_release_notes_50.html
+      output: web, pdf
+
+  - title: Installation
+    output: web, pdf
+    folderitems:
+
+    - title: About Ruby, Gems, Bundler, etc.
+      url: /mydoc_about_ruby_gems_etc.html
+      output: web, pdf
+
+    - title: Install Jekyll on Mac
+      url: /mydoc_install_jekyll_on_mac.html
+      output: web, pdf
+
+    - title: Install Jekyll on Windows
+      url: /mydoc_install_jekyll_on_windows.html
+      output: web, pdf
+
+  - title: Authoring
+    output: web, pdf
+
+    folderitems:
+    - title: Pages
+      url: /mydoc_pages.html
+      output: web, pdf
+
+    - title: Posts
+      url: /mydoc_posts.html
+      output: web, pdf
+
+    - title: Lists
+      url: /mydoc_lists.html
+      output: web, pdf
+
+    - title: Conditional logic
+      url: /mydoc_conditional_logic.html
+      output: web, pdf
+
+    - title: Content reuse
+      url: /mydoc_content_reuse.html
+      output: web, pdf
+
+    - title: Collections
+      url: /mydoc_collections.html
+      output: web, pdf
+
+    - title: WebStorm editor tips
+      url: /mydoc_webstorm_text_editor.html
+      output: web, pdf
+
+    - title: Atom editor tips
+      url: /mydoc_atom_text_editor.html
+      output: web, pdf
+
+  - title: Navigation
+    output: web, pdf
+
+    folderitems:
+    - title: Sidebar navigation
+      url: /mydoc_sidebar_navigation.html
+      output: web, pdf
+
+    - title: YAML tutorial in the context of Jekyll
+      url: /mydoc_yaml_tutorial.html
+      output: web, pdf
+
+    - title: Tags
+      url: /mydoc_tags.html
+      output: web, pdf
+
+    - title: Series
+      url: /mydoc_series.html
+      output: web, pdf
+
+  - title: Formatting
+    output: web, pdf
+
+    folderitems:
+    - title: Tooltips
+      url: /mydoc_adding_tooltips.html
+      output: web, pdf
+
+    - title: Alerts
+      url: /mydoc_alerts.html
+      output: web, pdf
+
+    - title: Icons
+      url: /mydoc_icons.html
+      output: web, pdf
+
+    - title: Images
+      url: /mydoc_images.html
+      output: web, pdf
+
+    - title: Code samples
+      url: /mydoc_code_samples.html
+      output: web, pdf
+
+    - title: Labels
+      url: /mydoc_labels.html
+      output: web, pdf
+
+    - title: Links
+      url: /mydoc_hyperlinks.html
+      output: web, pdf
+
+    - title: Navtabs
+      url: /mydoc_navtabs.html
+      output: web, pdf
+
+    - title: Tables
+      url: /mydoc_tables.html
+      output: web, pdf
+
+    - title: Syntax highlighting
+      url: /mydoc_syntax_highlighting.html
+      output: web, pdf
+
+    - title: Workflow maps
+      url: /mydoc_workflow_maps.html
+      output: web, pdf
+
+  - title: Handling reviews
+    output: web, pdf
+
+    folderitems:
+    - title: Commenting on files
+      url: /mydoc_commenting_on_files.html
+      output: web, pdf
+
+#    - title: Git collaboration
+#      url: /mydoc_git_collaboration
+#      output: web, pdf
+
+  - title: Publishing
+    output: web, pdf
+
+    folderitems:
+    - title: Build arguments
+      url: /mydoc_build_arguments.html
+      output: web, pdf
+
+    - title: Themes
+      url: /mydoc_themes.html
+      output: web, pdf
+
+    - title: Generating PDFs
+      url: /mydoc_generating_pdfs.html
+      output: web, pdf
+
+    - title: Help APIs and UI tooltips
+      url: /mydoc_help_api.html
+      output: web, pdf
+
+    - title: Search configuration
+      url: /mydoc_search_configuration.html
+      output: web, pdf
+
+    - title: iTerm profiles
+      url: /mydoc_iterm_profiles.html
+      output: web, pdf
+
+    - title: Pushing builds to server
+      url: /mydoc_push_build_to_server.html
+      output: web, pdf
+
+    - title: Publishing on Github Pages
+      url: /mydoc_publishing_github_pages.html
+      output: web, pdf
+
+  - title: Special layouts
+    output: web, pdf
+
+    folderitems:
+    - title: Knowledge-base layout
+      url: /mydoc_kb_layout.html
+      output: web, pdf
+
+    - title: Glossary layout
+      url: /mydoc_glossary.html
+      output: web, pdf
+
+    - title: FAQ layout
+      url: /mydoc_faq_layout.html
+      output: web, pdf
+
+    - title: Shuffle layout
+      url: /mydoc_shuffle.html
+      output: web, pdf
+
+  - title: Troubleshooting
+    output: web, pdf
+
+    folderitems:
+
+    - title: Troubleshooting
+      url: /mydoc_troubleshooting.html
+      output: web, pdf
+
+  - title: Tag archives
+    output: web
+    folderitems:
+
+    - title: Tag archives overview
+      url: /mydoc_tag_archives_overview.html
+      output: web
+
+      subfolders:
+      - title: Tag archive pages
+        output: web
+        subfolderitems:
+
+        - title: Formatting pages
+          url: /tag_formatting.html
+          output: web
+
+        - title: Navigation pages
+          url: /tag_navigation.html
+          output: web
+
+        - title: Content types pages
+          url: /tag_content_types.html
+          output: web
+
+        - title: Publishing pages
+          url: /tag_publishing.html
+          output: web
+
+        - title: Special layout pages
+          url: /tag_special_layouts.html
+          output: web
+
+        - title: Collaboration pages
+          url: /tag_collaboration.html
+          output: web
+
+        - title: Troubleshooting pages
+          url: /tag_troubleshooting.html
+          output: web
diff --git a/_data/sidebars/other.yml b/_data/sidebars/other.yml
new file mode 100644
index 0000000000000000000000000000000000000000..4be86f03b10cdfe6301e75874b21579c91c93f27
--- /dev/null
+++ b/_data/sidebars/other.yml
@@ -0,0 +1,18 @@
+
+# Follow the pattern here for the URLs -- no slash at the beginning, and include the .html. The link here is rendered exactly as is in the Markdown references.
+
+entries:
+- title: other
+  folders:
+
+  - title: Other Links
+    folderitems:
+
+    - title: Automated links bookmark
+      url: /mydoc_hyperlinks.html#automatedlinks
+
+    - title: Bookmark links
+      url: /mydoc_hyperlinks.html#bookmarklinks
+
+    - title: Some link bookmark
+      url: /mydoc_pages.html#someIdTag
diff --git a/_data/sidebars/product1_sidebar.yml b/_data/sidebars/product1_sidebar.yml
new file mode 100644
index 0000000000000000000000000000000000000000..4a04389f7279079ceec1d0f648777aa1581f95fc
--- /dev/null
+++ b/_data/sidebars/product1_sidebar.yml
@@ -0,0 +1,60 @@
+# This is your sidebar TOC. The sidebar code loops through sections here and provides the appropriate formatting.
+
+
+entries:
+- title: Sidebar
+  product: Product1
+  version: 1.0
+  folders:
+
+  - title:
+    output: pdf
+    type: frontmatter
+    folderitems:
+    - title:
+      url: /titlepage.html
+      output: pdf
+      type: frontmatter
+    - title:
+      url: /tocpage.html
+      output: pdf
+      type: frontmatter
+
+  - title: Getting Started
+    output: web, pdf
+    folderitems:
+    - title: Product 1 home
+      url: /p1_landing_page.html
+      output: web
+
+    - title: Sample 1
+      url: /p1_sample1.html
+      output: web, pdf
+
+    - title: Sample 2
+      url: /p1_sample2.html
+      output: web, pdf
+
+    - title: Sample 3
+      url: /p1_sample3.html
+      output: web, pdf
+
+  - title: Another heading
+    output: web, pdf
+
+    folderitems:
+    - title: Sample 4
+      url: /p1_sample4.html
+      output: web, pdf
+
+    - title: Sample 5
+      url: /p1_sample5.html
+      output: web, pdf
+
+    - title: Sample 6
+      url: /p1_sample6.html
+      output: web, pdf
+
+    - title: Sample 7
+      url: /p1_sample7.html
+      output: web, pdf
diff --git a/_data/sidebars/product2_sidebar.yml b/_data/sidebars/product2_sidebar.yml
new file mode 100644
index 0000000000000000000000000000000000000000..ca80dbbbf6455c5e1a0c96f33d417c565e3f3b08
--- /dev/null
+++ b/_data/sidebars/product2_sidebar.yml
@@ -0,0 +1,92 @@
+# This is your sidebar TOC. The sidebar code loops through sections here and provides the appropriate formatting.
+
+entries:
+- title: Product2
+  product: Product2
+  version: 1.0
+  folders:
+
+  - title:
+    output: pdf
+    type: frontmatter
+    folderitems:
+    - title:
+      url: /titlepage.html
+      output: pdf
+      type: frontmatter
+    - title:
+      url: /tocpage.html
+      output: pdf
+      type: frontmatter
+
+  - title: Introduction
+    output: web, pdf
+    folderitems:
+
+    - title: Overview
+      url: /p2_landing_page.html
+      output: web
+
+  - title: Simple Workflow
+    output: web, pdf
+    folderitems:
+
+    - title: Sample 1
+      url: /p2_sample1.html
+      output: web, pdf
+
+    - title: Sample 2
+      url: /p2_sample2.html
+      output: web, pdf
+
+    - title: Sample 3
+      url: /p2_sample3.html
+      output: web, pdf
+
+    - title: Sample 4
+      url: /p2_sample4.html
+      output: web, pdf
+
+    - title: Sample 5
+      url: /p2_sample5.html
+      output: web, pdf
+
+  - title: Complex Workflow
+    output: web, pdf
+    folderitems:
+
+    - title: Sample 6
+      url: /p2_sample6.html
+      output: web, pdf
+
+    - title: Sample 7
+      url: /p2_sample7.html
+      output: web, pdf
+
+    - title: Sample 8
+      url: /p2_sample8.html
+      output: web, pdf
+
+    - title: Sample 9
+      url: /p2_sample9.html
+      output: web, pdf
+
+    - title: Sample 10
+      url: /p2_sample10.html
+      output: web, pdf
+
+    - title: Sample 11
+      url: /p2_sample11.html
+      output: web, pdf
+
+    - title: Sample 12
+      url: /p2_sample12.html
+      output: web, pdf
+
+    - title: Sample 13
+      url: /p2_sample13.html
+      output: web, pdf
+
+    - title: Sample 14
+      url: /p2_sample14.html
+      output: web, pdf
diff --git a/_data/strings.yml b/_data/strings.yml
new file mode 100644
index 0000000000000000000000000000000000000000..d7c13924f5a4449e8ae141e188d605f817501abe
--- /dev/null
+++ b/_data/strings.yml
@@ -0,0 +1,5 @@
+
+
+# placed here for translation purposes
+search_placeholder_text: search...
+search_no_results_text: No results found.
diff --git a/_data/tags.yml b/_data/tags.yml
new file mode 100644
index 0000000000000000000000000000000000000000..79d2545ae481306982e901681ef4c5aa9709d5fa
--- /dev/null
+++ b/_data/tags.yml
@@ -0,0 +1,15 @@
+# Note:
+# If you are using the createtag script, don't leave an blank line at the end of this file.
+# In other words, the last line must be the last tag in the allowed-tags list.
+allowed-tags:
+  - getting_started
+  - content_types
+  - navigation
+  - formatting
+  - publishing
+  - single_sourcing
+  - special_layouts
+  - collaboration
+  - news
+  - troubleshooting
+  - mobile
diff --git a/_data/terms.yml b/_data/terms.yml
new file mode 100644
index 0000000000000000000000000000000000000000..1e9144818c2d410b6f69e624ba2209398a92d509
--- /dev/null
+++ b/_data/terms.yml
@@ -0,0 +1 @@
+apple: "apple - the fruit of a disiduous tree."
\ No newline at end of file
diff --git a/_data/topnav.yml b/_data/topnav.yml
new file mode 100644
index 0000000000000000000000000000000000000000..1e40361501c3a90ecf209237077d66a5fcef06b1
--- /dev/null
+++ b/_data/topnav.yml
@@ -0,0 +1,32 @@
+## Topnav single links
+## if you want to list an external url, use external_url instead of url. the theme will apply a different link base.
+topnav:
+- title: Topnav
+  items:
+    - title: GitHub
+      external_url: https://github.com/tomjoht/documentation-theme-jekyll
+    - title: News
+      url: /news
+
+#Topnav dropdowns
+topnav_dropdowns:
+- title: Topnav dropdowns
+  folders:
+    - title: Jekyll Help
+      folderitems:
+        - title: Jekyll Talk
+          external_url: https://talk.jekyllrb.com
+        - title: Jekyll documentation
+          external_url: http://jekyllrb.com/docs/home/
+        - title: Jekyll on Stack Overflow
+          external_url: http://stackoverflow.com/questions/tagged/jekyll
+        - title: Jekyll on my blog
+          external_url: http://idratherbewriting.com/category-jekyll/
+    - title: Products
+      folderitems:
+        - title: Jekyll Documentation Theme
+          url: /mydoc_introduction.html
+        - title: Product 1
+          url: /p1_landing_page.html
+        - title: Product 2
+          url: /p2_landing_page.html
diff --git a/_includes/archive.html b/_includes/archive.html
new file mode 100644
index 0000000000000000000000000000000000000000..275850c9cb34cb40f29f042bdcd43164aa537bc8
--- /dev/null
+++ b/_includes/archive.html
@@ -0,0 +1,15 @@
+---
+layout: default
+type: archive
+---
+
+<div class="post-header">
+  <h1 class="post-title-main">{{ page.title }}</h1>
+</div>
+<div class="post-content">
+
+{{ content }}
+</div>
+
+ 
+
diff --git a/_includes/callout.html b/_includes/callout.html
new file mode 100644
index 0000000000000000000000000000000000000000..d492b1830d30c81b0171966802ee5d4852a7dc6a
--- /dev/null
+++ b/_includes/callout.html
@@ -0,0 +1 @@
+<div markdown="span" class="bs-callout bs-callout-{{include.type}}">{{include.content}}</div>
diff --git a/_includes/custom/getting_started_series.html b/_includes/custom/getting_started_series.html
new file mode 100644
index 0000000000000000000000000000000000000000..5b573a9d0b5d255eb9c30bf5bca0138517386e4b
--- /dev/null
+++ b/_includes/custom/getting_started_series.html
@@ -0,0 +1,19 @@
+<div class="seriesContext">
+    <div class="btn-group">
+        <button type="button" data-toggle="dropdown" class="btn btn-primary dropdown-toggle">Getting Started <span class="caret"></span></button>
+        <ol class="dropdown-menu">
+            {% assign pages = site.pages | sort:"weight"  %}
+            {% for p in pages %}
+            {% if p.series == "Getting Started" %}
+            {% if p.url == page.url %}
+            <li class="active"> → {{p.title}}</li>
+            {% else %}
+            <li>
+                <a href="{{p.url | remove: "/"}}">{{p.title}}</a>
+            </li>
+            {% endif %}
+            {% endif %}
+            {% endfor %}
+        </ol>
+    </div>
+</div>
\ No newline at end of file
diff --git a/_includes/custom/getting_started_series_next.html b/_includes/custom/getting_started_series_next.html
new file mode 100644
index 0000000000000000000000000000000000000000..c464214b083a4c6175cd200d42131957bceb4485
--- /dev/null
+++ b/_includes/custom/getting_started_series_next.html
@@ -0,0 +1,10 @@
+<p>{% assign series_pages = site.tags.series_acme %}
+    {% for p in pages %}
+    {% if p.series == "Getting Started" %}
+    {% assign nextTopic = page.weight | plus: "1"  %}
+    {% if p.weight == nextTopic  %}
+    <a href="{{p.url | remove: "/"}}"><button type="button" class="btn btn-primary">Next: {{p.title}}</button></a>
+    {% endif %}
+    {% endif %}
+    {% endfor %}
+</p>
\ No newline at end of file
diff --git a/_includes/custom/series_acme.html b/_includes/custom/series_acme.html
new file mode 100644
index 0000000000000000000000000000000000000000..b9ebf44377722665e5ab81af875876aaf944e492
--- /dev/null
+++ b/_includes/custom/series_acme.html
@@ -0,0 +1,19 @@
+<div class="seriesContext">
+    <div class="btn-group">
+        <button type="button" data-toggle="dropdown" class="btn btn-primary dropdown-toggle">Series Demo <span class="caret"></span></button>
+        <ol class="dropdown-menu">
+            {% assign pages = site.pages | sort:"weight"  %}
+            {% for p in pages %}
+            {% if p.series == "ACME series" %}
+            {% if p.url == page.url %}
+            <li class="active"> → {{p.weight}}. {{p.title}}</li>
+            {% else %}
+            <li>
+                <a href="{{p.url | remove: "/"}}">{{p.weight}}. {{p.title}}</a>
+            </li>
+            {% endif %}
+            {% endif %}
+            {% endfor %}
+        </ol>
+    </div>
+</div>
\ No newline at end of file
diff --git a/_includes/custom/series_acme_next.html b/_includes/custom/series_acme_next.html
new file mode 100644
index 0000000000000000000000000000000000000000..9c9a11a5edb5ad8249bd46340fbf2a6298ff49ec
--- /dev/null
+++ b/_includes/custom/series_acme_next.html
@@ -0,0 +1,30 @@
+<div class="seriesContext">
+    <a>
+        {% assign pages = site.pages | sort:"weight"  %}
+        {% for pg in pages %}
+        {% if pg.series == "ACME series" %}
+        {% if pg.weight > page.weight %}
+        <a href="{{pg.url | remove: '/'}}"><button type="button" class="btn btn-primary">Next: {{pg.title}}</button></a>
+        {% break %}
+        {% endif %}
+        {% endif %}
+        {% endfor %}
+    </a>
+    &nbsp;
+    <div class="btn-group">
+        <button type="button" data-toggle="dropdown" class="btn btn-primary dropdown-toggle">Jump to: <span class="caret"></span></button>
+        <ol class="dropdown-menu">
+            {% for pg in pages %}
+            {% if pg.series == "ACME series" %}
+            {% if pg.url == page.url %}
+            <li class="active"> → {{pg.weight}}. {{pg.title}}</li>
+            {% else %}
+            <li>
+                <a href="{{pg.url | remove: '/'}}">{{pg.title}}</a>
+            </li>
+            {% endif %}
+            {% endif %}
+            {% endfor %}
+        </ol>
+    </div>
+</div>
\ No newline at end of file
diff --git a/_includes/custom/usermap.html b/_includes/custom/usermap.html
new file mode 100644
index 0000000000000000000000000000000000000000..f90b5c2cb64458ba611c65bf85be4f29af26916a
--- /dev/null
+++ b/_includes/custom/usermap.html
@@ -0,0 +1,14 @@
+
+<div id="userMap">
+<div class="content"><a href="p2_sample1.html"><div class="box box1">Connect to ADB</div></a></div>
+<div class="arrow">→</div>
+<div class="content"><a href="p2_sample2.html"><div class="box box2">Download and Build the Starter Kit</div></a></div>
+<div class="arrow">→</div>
+<div class="content"><a href="p2_sample3.html"><div class="box box3">Take a Tour</div></a></div>
+<div class="arrow">→</div>
+<div class="content"><a href="p2_sample4.html"><div class="box box4">Load Your Widgets</div></a></div>
+<div class="arrow">→</div>
+<div class="content"><a href="p2_sample5.html"><div class="box box5">Query for Something</div></a></div>
+<div class="clearfix"></div>
+
+</div>
diff --git a/_includes/custom/usermapcomplex.html b/_includes/custom/usermapcomplex.html
new file mode 100644
index 0000000000000000000000000000000000000000..c75a65254aa1b9ccc1daabec479361e0dc5371af
--- /dev/null
+++ b/_includes/custom/usermapcomplex.html
@@ -0,0 +1,91 @@
+<div id="userMap">
+
+    <!-- Button trigger modal -->
+<button type="button" class="btn btn-default btn-lg modalButton1" data-toggle="modal" data-target="#myModal1">Get Started</button>
+
+    <!-- Modal -->
+    <div class="modal fade" id="myModal1" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
+      <div class="modal-dialog" role="document">
+        <div class="modal-content">
+          <div class="modal-header">
+            <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
+            <h4 class="modal-title" id="myModalLabel">Get Started</h4>
+          </div>
+          <div class="modal-body">
+<p>This is just dummy text ... Your first steps should be to get started. You will need to do the following:</p>
+
+    <ul>
+        <li><a href="p2_sample6.html">Sample 6</a></li>
+        <li><a href="p2_sample7.html">Sample 7</a></li>
+        <li><a href="p2_sample8.html">Sample 8</a></li>
+    </ul>
+    <p>If you run into any of these setup issues, you must solve them before you can continue on.</p>
+
+          </div>
+          <div class="modal-footer">
+            <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
+          </div>
+        </div>
+      </div>
+    </div>
+            <span class="complexArrow">→</span>
+
+            <!-- Button trigger modal -->
+            <button type="button" class="btn btn-default btn-lg modalButton2" data-toggle="modal" data-target="#myModal2">Build your widgets</button>
+            <!-- Modal -->
+            <div class="modal fade" id="myModal2" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
+              <div class="modal-dialog" role="document">
+                <div class="modal-content">
+                  <div class="modal-header">
+                    <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
+                    <h4 class="modal-title" id="myModalLabel">Build your widgets</h4>
+                  </div>
+                  <div class="modal-body">
+                    <p>In this step, you will build the widgets for your system. The widgets form the various components that blah blah blah this is dummy text power the nuclear capabilities of your energy transformer into deep space using wormhole technology and warp drive speeds.</p>
+
+                    <p>In order to configure your widgets, you will need to follow these topics:</p>
+                    <ul>
+                        <li><a href="p2_sample9.html">Sample 9</a></li>
+                        <li><a href="p2_sample10.html">Sample 10</a></li>
+                        <li><a href="p2_sample11.html">Sample 11</a></li>
+                    </ul>
+                  </div>
+                  <div class="modal-footer">
+                    <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
+                  </div>
+                </div>
+              </div>
+            </div>
+
+            <span class="complexArrow">→</span>
+
+            <!-- Button trigger modal -->
+<button type="button" class="btn btn-default btn-lg modalButton3" data-toggle="modal" data-target="#myModal3">Publish your app</button>
+            <!-- Modal -->
+            <div class="modal fade" id="myModal3" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
+              <div class="modal-dialog" role="document">
+                <div class="modal-content">
+                  <div class="modal-header">
+                    <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
+                    <h4 class="modal-title" id="myModalLabel">Publish your app</h4>
+                  </div>
+                  <div class="modal-body">
+                    <p>After you've configured all the necessary components to build your space transformer, you need to publish your app. Of course this content is also just dummy text. Pay no particular attention to the content but rather the format and placement of the map.</p>
+                    <p>To publish your app, see the following:
+                        <ul>
+                            <li><a href="p2_sample12.html">Sample 12</a></li>
+                            <li><a href="p2_sample13.html">Sample 13</a></li>
+                            <li><a href="p2_sample14.html">Sample 14</a></li>
+                        </ul>
+                  </div>
+                  <div class="modal-footer">
+                    <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
+                  </div>
+                </div>
+              </div>
+            </div>
+
+
+<div class="clearfix"></div>
+
+</div>
diff --git a/_includes/disqus.html b/_includes/disqus.html
new file mode 100644
index 0000000000000000000000000000000000000000..4eb985253618a16805f26f3474da37c57076f9e5
--- /dev/null
+++ b/_includes/disqus.html
@@ -0,0 +1,17 @@
+{% if site.disqus_shortname %}
+
+    <div id="disqus_thread"></div>
+    <script type="text/javascript">
+        /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
+        var disqus_shortname = '{{site.disqus_shortname}}'; // required: replace example with your forum shortname
+
+        /* * * DON'T EDIT BELOW THIS LINE * * */
+        (function() {
+            var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
+            dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
+            (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
+        })();
+    </script>
+    <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
+
+{% endif %}
diff --git a/_includes/feedback.html b/_includes/feedback.html
new file mode 100644
index 0000000000000000000000000000000000000000..6031797fc85d2810cb7b9886a8fa7180897a718f
--- /dev/null
+++ b/_includes/feedback.html
@@ -0,0 +1,13 @@
+<li>
+{% if site.feedback_text %}
+  {% assign feedback_text = site.feedback_text %}
+{% else %}
+  {% assign feedback_text = "Feedback" %}
+{% endif %}
+
+{% if site.feedback_link %}
+  <a class="email" title="Submit feedback" href="{{site.feedback_link}}">{{feedback_text}}</a>
+{% else %}
+  <a class="email" title="Submit feedback" href="#" onclick="javascript:window.location='mailto:{{site.feedback_email}}?subject={{site.feedback_subject_line}} feedback&body=I have some feedback about the {{page.title}} page: ' + window.location.href;"><i class="fa fa-envelope-o"></i> {{feedback_text}}</a>
+{% endif %}
+</li>
diff --git a/_includes/footer.html b/_includes/footer.html
old mode 100644
new mode 100755
index 72239f1c32b64fa7934b1500ac647e4052a85b95..1682c9617c3feceea5bfa5c4de0111cc7593b3c5
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -1,38 +1,9 @@
-<footer class="site-footer">
-
-  <div class="wrapper">
-
-    <h2 class="footer-heading">{{ site.title }}</h2>
-
-    <div class="footer-col-wrapper">
-      <div class="footer-col footer-col-1">
-        <ul class="contact-list">
-          <li>{{ site.title }}</li>
-          <li><a href="mailto:{{ site.email }}">{{ site.email }}</a></li>
-        </ul>
-      </div>
-
-      <div class="footer-col footer-col-2">
-        <ul class="social-media-list">
-          {% if site.github_username %}
-          <li>
-            {% include icon-github.html username=site.github_username %}
-          </li>
-          {% endif %}
-
-          {% if site.twitter_username %}
-          <li>
-            {% include icon-twitter.html username=site.twitter_username %}
-          </li>
-          {% endif %}
-        </ul>
-      </div>
-
-      <div class="footer-col footer-col-3">
-        <p>{{ site.description }}</p>
-      </div>
-    </div>
-
-  </div>
-
+<footer>
+            <div class="row">
+                <div class="col-lg-12 footer">
+               &copy;{{ site.time | date: "%Y"  }} {{site.company_name}}. All rights reserved. <br />
+{% if page.last_updated %}<span>Page last updated:</span> {{page.last_updated}}<br/>{% endif %} Site last generated: {{ site.time | date: "%b %-d, %Y"  }} <br />
+<p><img src="{{ "images/company_logo.png" }}" alt="Company logo"/></p>
+                </div>
+            </div>
 </footer>
diff --git a/_includes/google_analytics.html b/_includes/google_analytics.html
new file mode 100644
index 0000000000000000000000000000000000000000..56b2ee88c5d18b8a3785221c0e541ee0d9eab604
--- /dev/null
+++ b/_includes/google_analytics.html
@@ -0,0 +1,6 @@
+<!-- the google_analytics_id gets auto inserted from the config file -->
+
+{% if site.google_analytics %}
+
+<script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create','{{site.google_analytics}}','auto');ga('require','displayfeatures');ga('send','pageview');</script>
+{% endif %}
\ No newline at end of file
diff --git a/_includes/head.html b/_includes/head.html
index 1598d6fe77a4053d5bb92c4289b650680d3cab38..a363237b0fb0c0365c201528358dcae0487cf2c5 100644
--- a/_includes/head.html
+++ b/_includes/head.html
@@ -1,12 +1,41 @@
-<head>
-  <meta charset="utf-8">
-  <meta http-equiv="X-UA-Compatible" content="IE=edge">
-  <meta name="viewport" content="width=device-width, initial-scale=1">
-
-  <title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
-  <meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
-
-  <link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
-  <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
-  <link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">
-</head>
+<meta charset="utf-8">
+<meta http-equiv="X-UA-Compatible" content="IE=edge">
+<meta name="viewport" content="width=device-width, initial-scale=1">
+<meta name="description" content="{% if page.summary %}{{ page.summary | strip_html | strip_newlines | truncate: 160 }}{% endif %}">
+<meta name="keywords" content="{{page.tags}}{% if page.tags %}, {% endif %} {{page.keywords}}">
+<title>{{ page.title }} | {{ site.site_title }}</title>
+<link rel="stylesheet" href="{{ "css/syntax.css" }}">
+
+<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
+<!--<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">-->
+<link rel="stylesheet" href="css/modern-business.css">
+<!-- Latest compiled and minified CSS -->
+<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
+<link rel="stylesheet" href="css/customstyles.css">
+<link rel="stylesheet" href="css/boxshadowproperties.css">
+<!-- most color styles are extracted out to here -->
+<link rel="stylesheet" href="css/theme-blue.css">
+
+<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
+
+<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>
+<script src="{{ "js/jquery.navgoco.min.js" }}"></script>
+
+
+<!-- Latest compiled and minified JavaScript -->
+<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
+<!-- Anchor.js -->
+<script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/2.0.0/anchor.min.js"></script>
+<script src="{{ "js/toc.js" }}"></script>
+<script src="{{ "js/customscripts.js" }}"></script>
+
+<link rel="shortcut icon" href="{{ "images/favicon.ico"  }}">
+
+<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
+<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
+<!--[if lt IE 9]>
+<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
+<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
+<![endif]-->
+
+<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.url }}">
diff --git a/_includes/head_print.html b/_includes/head_print.html
new file mode 100644
index 0000000000000000000000000000000000000000..12b861e6245addc4b2194bbbf5c7b604ed9e47c1
--- /dev/null
+++ b/_includes/head_print.html
@@ -0,0 +1,28 @@
+<meta charset="utf-8">
+<meta http-equiv="X-UA-Compatible" content="IE=edge">
+<meta name="viewport" content="width=device-width, initial-scale=1">
+<meta name="description" content="{% if page.summary %}{{ page.summary | strip_html | strip_newlines | truncate: 160 }}{% endif %}">
+<meta name="keywords" content="{{page.tags}}{% if page.tags %}, {% endif %} {{page.keywords}}">
+<title>{% if page.homepage == true %} {{site.homepage_title}} {% elsif page.title %}{{ page.title }}{% endif %}  | {{ site.site_title }}</title>
+
+
+<link rel="stylesheet" href="{{ "/css/syntax.css" | prepend: site.baseurl | prepend: site.url }}">
+<link rel="stylesheet" href="{{ "/css/font-awesome.min.css" | prepend: site.baseurl | prepend: site.url }}">
+<link rel="stylesheet" href="{{ "/css/bootstrap.min.css" | prepend: site.baseurl | prepend: site.url }}">
+<link rel="stylesheet" href="{{ "/css/modern-business.css" | prepend: site.baseurl | prepend: site.url }}">
+<link rel="stylesheet" href="{{ "/css/customstyles.css" | prepend: site.baseurl | prepend: site.url }}">
+<link rel="stylesheet" href="{{ "/css/theme-blue.css" | prepend: site.baseurl | prepend: site.url }}">
+<link rel="stylesheet" href="{{ "/css/syntax.css" | prepend: site.baseurl | prepend: site.url }}">
+<link rel="stylesheet" href="{{ "/css/printstyles.css" | prepend: site.baseurl }}">
+
+<script>
+    Prince.addScriptFunc("datestamp", function() {
+        return "PDF last generated: {{ site.time | date: '%B %d, %Y' }}";
+    });
+</script>
+
+<script>
+    Prince.addScriptFunc("guideName", function() {
+        return "{{site.print_title}} User Guide";
+    });
+</script>
diff --git a/_includes/header.html b/_includes/header.html
deleted file mode 100644
index b3f86db8f23d159636c8b54b1ad7479b2c2fc81d..0000000000000000000000000000000000000000
--- a/_includes/header.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<header class="site-header">
-
-  <div class="wrapper">
-
-    <a class="site-title" href="{{ site.baseurl }}/">{{ site.title }}</a>
-
-    <nav class="site-nav">
-      <a href="#" class="menu-icon">
-        <svg viewBox="0 0 18 15">
-          <path fill="#424242" d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.031C17.335,0,18,0.665,18,1.484L18,1.484z"/>
-          <path fill="#424242" d="M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0c0-0.82,0.665-1.484,1.484-1.484 h15.031C17.335,6.031,18,6.696,18,7.516L18,7.516z"/>
-          <path fill="#424242" d="M18,13.516C18,14.335,17.335,15,16.516,15H1.484C0.665,15,0,14.335,0,13.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.031C17.335,12.031,18,12.696,18,13.516L18,13.516z"/>
-        </svg>
-      </a>
-
-      <div class="trigger">
-        {% for my_page in site.pages %}
-          {% if my_page.title %}
-          <a class="page-link" href="{{ my_page.url | prepend: site.baseurl }}">{{ my_page.title }}</a>
-          {% endif %}
-        {% endfor %}
-      </div>
-    </nav>
-
-  </div>
-
-</header>
diff --git a/_includes/icon-github.html b/_includes/icon-github.html
deleted file mode 100644
index e501a16b18780f2f5beb70d992a5e7f0635f65fb..0000000000000000000000000000000000000000
--- a/_includes/icon-github.html
+++ /dev/null
@@ -1 +0,0 @@
-<a href="https://github.com/{{ include.username }}"><span class="icon icon--github">{% include icon-github.svg %}</span><span class="username">{{ include.username }}</span></a>
diff --git a/_includes/icon-github.svg b/_includes/icon-github.svg
deleted file mode 100644
index 4422c4f5dcc3b5046aa2fd13910880249bbe5e88..0000000000000000000000000000000000000000
--- a/_includes/icon-github.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg viewBox="0 0 16 16"><path fill="#828282" d="M7.999,0.431c-4.285,0-7.76,3.474-7.76,7.761 c0,3.428,2.223,6.337,5.307,7.363c0.388,0.071,0.53-0.168,0.53-0.374c0-0.184-0.007-0.672-0.01-1.32 c-2.159,0.469-2.614-1.04-2.614-1.04c-0.353-0.896-0.862-1.135-0.862-1.135c-0.705-0.481,0.053-0.472,0.053-0.472 c0.779,0.055,1.189,0.8,1.189,0.8c0.692,1.186,1.816,0.843,2.258,0.645c0.071-0.502,0.271-0.843,0.493-1.037 C4.86,11.425,3.049,10.76,3.049,7.786c0-0.847,0.302-1.54,0.799-2.082C3.768,5.507,3.501,4.718,3.924,3.65 c0,0,0.652-0.209,2.134,0.796C6.677,4.273,7.34,4.187,8,4.184c0.659,0.003,1.323,0.089,1.943,0.261 c1.482-1.004,2.132-0.796,2.132-0.796c0.423,1.068,0.157,1.857,0.077,2.054c0.497,0.542,0.798,1.235,0.798,2.082 c0,2.981-1.814,3.637-3.543,3.829c0.279,0.24,0.527,0.713,0.527,1.437c0,1.037-0.01,1.874-0.01,2.129 c0,0.208,0.14,0.449,0.534,0.373c3.081-1.028,5.302-3.935,5.302-7.362C15.76,3.906,12.285,0.431,7.999,0.431z"/></svg>
diff --git a/_includes/icon-twitter.html b/_includes/icon-twitter.html
deleted file mode 100644
index e623dbd6efc532519f62cca86e4509429018e92d..0000000000000000000000000000000000000000
--- a/_includes/icon-twitter.html
+++ /dev/null
@@ -1 +0,0 @@
-<a href="https://twitter.com/{{ include.username }}"><span class="icon icon--twitter">{% include icon-twitter.svg %}</span><span class="username">{{ include.username }}</span></a>
diff --git a/_includes/icon-twitter.svg b/_includes/icon-twitter.svg
deleted file mode 100644
index dcf660e7bb376738d0129a1f8e3e8acbc6ac2aca..0000000000000000000000000000000000000000
--- a/_includes/icon-twitter.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg viewBox="0 0 16 16"><path fill="#828282" d="M15.969,3.058c-0.586,0.26-1.217,0.436-1.878,0.515c0.675-0.405,1.194-1.045,1.438-1.809c-0.632,0.375-1.332,0.647-2.076,0.793c-0.596-0.636-1.446-1.033-2.387-1.033c-1.806,0-3.27,1.464-3.27,3.27 c0,0.256,0.029,0.506,0.085,0.745C5.163,5.404,2.753,4.102,1.14,2.124C0.859,2.607,0.698,3.168,0.698,3.767 c0,1.134,0.577,2.135,1.455,2.722C1.616,6.472,1.112,6.325,0.671,6.08c0,0.014,0,0.027,0,0.041c0,1.584,1.127,2.906,2.623,3.206 C3.02,9.402,2.731,9.442,2.433,9.442c-0.211,0-0.416-0.021-0.615-0.059c0.416,1.299,1.624,2.245,3.055,2.271 c-1.119,0.877-2.529,1.4-4.061,1.4c-0.264,0-0.524-0.015-0.78-0.046c1.447,0.928,3.166,1.469,5.013,1.469 c6.015,0,9.304-4.983,9.304-9.304c0-0.142-0.003-0.283-0.009-0.423C14.976,4.29,15.531,3.714,15.969,3.058z"/></svg>
diff --git a/_includes/image.html b/_includes/image.html
new file mode 100644
index 0000000000000000000000000000000000000000..7b3b0fa2ce5321eadbb9e0b724778f0d2b67d1f0
--- /dev/null
+++ b/_includes/image.html
@@ -0,0 +1 @@
+<figure>{% if {{include.url}} %}<a class="no_icon" target="_blank" href="{{include.url}}">{% endif %}<img class="docimage" src="images/{{include.file}}" alt="{{include.alt}}" {% if {{include.max-width}} %}style="max-width: {{include.max-width}}px"{% endif %} />{% if {{include.url}} %}</a>{% endif %}{% if {{include.caption}} %}<figcaption>{{include.caption}}</figcaption>{% endif %}</figure>
diff --git a/_includes/important.html b/_includes/important.html
new file mode 100644
index 0000000000000000000000000000000000000000..af8824b9f4a72cefe982beefcffc4ffe25c2c987
--- /dev/null
+++ b/_includes/important.html
@@ -0,0 +1 @@
+<div markdown="span" class="alert alert-warning" role="alert"><i class="fa fa-warning"></i> <b>Important:</b> {{include.content}}</div>
\ No newline at end of file
diff --git a/_includes/initialize_shuffle.html b/_includes/initialize_shuffle.html
new file mode 100644
index 0000000000000000000000000000000000000000..9a0f048dd11abbecb5171931261b2fb5f3712cfd
--- /dev/null
+++ b/_includes/initialize_shuffle.html
@@ -0,0 +1,130 @@
+<script type="text/javascript">
+$(document).ready(function() {
+    $('#toc').toc({ minimumHeaders: 0, listType: 'ul', showSpeed: 0, headers: 'h2,h3,h4' });
+});
+
+</script>
+<!-- shuffle -->
+<script>
+var shuffleme = (function( $ ) {
+  'use strict';
+
+  var $grid = $('#grid'),
+      $filterOptions = $('.filter-options'),
+      $sizer = $grid.find('.shuffle_sizer'),
+
+  init = function() {
+
+    // None of these need to be executed synchronously
+    setTimeout(function() {
+      listen();
+      setupFilters();
+    }, 100);
+
+    // instantiate the plugin
+    $grid.shuffle({
+      itemSelector: '[class*="col-"]',
+      sizer: $sizer    
+    });
+  },
+
+  // Set up button clicks
+  setupFilters = function() {
+    var $btns = $filterOptions.children();
+    $btns.on('click', function() {
+      var $this = $(this),
+          isActive = $this.hasClass( 'active' ),
+          group = isActive ? 'all' : $this.data('group');
+
+      // Hide current label, show current label in title
+      if ( !isActive ) {
+        $('.filter-options .active').removeClass('active');
+      }
+
+      $this.toggleClass('active');
+
+      // Filter elements
+      $grid.shuffle( 'shuffle', group );
+    });
+
+    $btns = null;
+  },
+
+  // Re layout shuffle when images load. This is only needed
+  // below 768 pixels because the .picture-item height is auto and therefore
+  // the height of the picture-item is dependent on the image
+  // I recommend using imagesloaded to determine when an image is loaded
+  // but that doesn't support IE7
+  listen = function() {
+    var debouncedLayout = $.throttle( 300, function() {
+      $grid.shuffle('update');
+    });
+
+    // Get all images inside shuffle
+    $grid.find('img').each(function() {
+      var proxyImage;
+
+      // Image already loaded
+      if ( this.complete && this.naturalWidth !== undefined ) {
+        return;
+      }
+
+      // If none of the checks above matched, simulate loading on detached element.
+      proxyImage = new Image();
+      $( proxyImage ).on('load', function() {
+        $(this).off('load');
+        debouncedLayout();
+      });
+
+      proxyImage.src = this.src;
+    });
+
+    // Because this method doesn't seem to be perfect.
+    setTimeout(function() {
+      debouncedLayout();
+    }, 500);
+  };      
+
+  return {
+    init: init
+  };
+}( jQuery ));
+
+
+
+$(document).ready(function() {
+  shuffleme.init();
+});
+
+    </script>
+
+    <!-- new attempt-->
+
+    <script>
+    $(document).ready(function() {
+     
+    /* initialize shuffle plugin */
+    var $grid = $('#grid');
+         
+    $grid.shuffle({
+        itemSelector: '.item' // the selector for the items in the grid
+    });
+ 
+});</script>
+
+<script>
+$('#filter a').click(function (e) {
+    e.preventDefault();
+         
+    // set active class
+    $('#filter a').removeClass('active');
+    $(this).addClass('active');
+         
+    // get group name from clicked item
+    var groupName = $(this).attr('data-group');
+         
+    // reshuffle grid
+    $grid.shuffle('shuffle', groupName );
+});</script>
+
+
diff --git a/_includes/inline_image.html b/_includes/inline_image.html
new file mode 100644
index 0000000000000000000000000000000000000000..1e7fd187cb76b860117114ba75fee1fa5afc8372
--- /dev/null
+++ b/_includes/inline_image.html
@@ -0,0 +1 @@
+<img class="inline" src="images/{{include.file}}" alt="{{include.alt}}" />
diff --git a/_includes/links.html b/_includes/links.html
new file mode 100644
index 0000000000000000000000000000000000000000..4f99e9422ef76cd6bd5f6bd0536b32b2c22b209e
--- /dev/null
+++ b/_includes/links.html
@@ -0,0 +1,44 @@
+{% comment %}Get links from each sidebar, as listed in the _config.yml file under sidebars{% endcomment %}
+
+{% for sidebar in site.sidebars %}
+{% for entry in site.data.sidebars[sidebar].entries %}
+{% for folder in entry.folders %}
+{% for folderitem in folder.folderitems %}
+{% if folderitem.url contains "html#" %}
+[{{folderitem.url | remove: "/" }}]: {{folderitem.url | remove: "/"}}
+{% else %}
+[{{folderitem.url | remove: "/"  | remove: ".html"}}]: {{folderitem.url | remove: "/"}}
+{% endif %}
+{% for subfolders in folderitem.subfolders %}
+{% for subfolderitem in subfolders.subfolderitems %}
+[{{subfolderitem.url | remove: "/"  | remove: ".html"}}]: {{subfolderitem.url | remove: "/"}}
+{% endfor %}
+{% endfor %}
+{% endfor %}
+{% endfor %}
+{% endfor %}
+{% endfor %}
+
+
+{% comment %} Get links from topnav {% endcomment %}
+
+{% for entry in site.data.topnav.topnav %}
+{% for item in entry.items %}
+{% if item.external_url == null %}
+[{{item.url | remove: "/" | remove: ".html"}}]: {{item.url | remove: "/"}}
+{% endif %}
+{% endfor %}
+{% endfor %}
+
+{% comment %}Get links from topnav dropdowns {% endcomment %}
+
+{% for entry in site.data.topnav.topnav_dropdowns %}
+{% for folder in entry.folders %}
+{% for folderitem in folder.folderitems %}
+{% if folderitem.external_url == null %}
+[{{folderitem.url | remove: "/"  | remove: ".html"}}]: {{folderitem.url | remove: "/"}}
+{% endif %}
+{% endfor %}
+{% endfor %}
+{% endfor %}
+
diff --git a/_includes/note.html b/_includes/note.html
new file mode 100644
index 0000000000000000000000000000000000000000..2c1cfe967c17c2ffada4baa5fb8f34860dcb423f
--- /dev/null
+++ b/_includes/note.html
@@ -0,0 +1 @@
+<div markdown="span" class="alert alert-info" role="alert"><i class="fa fa-info-circle"></i> <b>Note:</b> {{include.content}}</div>
diff --git a/_includes/sidebar.html b/_includes/sidebar.html
new file mode 100644
index 0000000000000000000000000000000000000000..47a6490d0fad2402eb1b60da956b20581d2bffbf
--- /dev/null
+++ b/_includes/sidebar.html
@@ -0,0 +1,58 @@
+{% assign sidebar = site.data.sidebars[page.sidebar].entries %}
+
+<ul id="mysidebar" class="nav">
+  <li class="sidebarTitle">{{sidebar[0].product}} {{sidebar[0].version}}</li>
+  {% for entry in sidebar %}
+  {% for folder in entry.folders %}
+  {% if folder.output contains "web" %}
+  <li>
+      <a href="#">{{ folder.title }}</a>
+      <ul>
+          {% for folderitem in folder.folderitems %}
+          {% if folderitem.output contains "web" %}
+          {% if folderitem.external_url %}
+          <li><a href="{{folderitem.external_url}}" target="_blank">{{folderitem.title}}</a></li>
+          {% elsif page.url == folderitem.url %}
+          <li class="active"><a href="{{folderitem.url | remove: "/"}}">{{folderitem.title}}</a></li>
+          {% elsif folderitem.type == "empty" %}
+          <li><a href="{{folderitem.url | remove: "/"}}">{{folderitem.title}}</a></li>
+
+          {% else %}
+          <li><a href="{{folderitem.url | remove: "/"}}">{{folderitem.title}}</a></li>
+          {% endif %}
+          {% for subfolders in folderitem.subfolders %}
+          {% if subfolders.output contains "web" %}
+          <li class="subfolders">
+              <a href="#">{{ subfolders.title }}</a>
+              <ul>
+                  {% for subfolderitem in subfolders.subfolderitems %}
+                  {% if subfolderitem.output contains "web" %}
+                  {% if subfolderitem.external_url %}
+                  <li><a href="{{subfolderitem.external_url}}" target="_blank">{{subfolderitem.title}}</a></li>
+                  {% elsif page.url == subfolderitem.url %}
+                  <li class="active"><a href="{{subfolderitem.url | remove: "/"}}">{{subfolderitem.title}}</a></li>
+                  {% else %}
+                  <li><a href="{{subfolderitem.url | remove: "/"}}">{{subfolderitem.title}}</a></li>
+                  {% endif %}
+                  {% endif %}
+                  {% endfor %}
+              </ul>
+          </li>
+          {% endif %}
+          {% endfor %}
+          {% endif %}
+          {% endfor %}
+      </ul>
+   </li>
+     {% endif %}
+      {% endfor %}
+      {% endfor %}
+      <!-- if you aren't using the accordion, uncomment this block:
+         <p class="external">
+             <a href="#" id="collapseAll">Collapse All</a> | <a href="#" id="expandAll">Expand All</a>
+         </p>
+         -->
+</ul>
+
+<!-- this highlights the active parent class in the navgoco sidebar. this is critical so that the parent expands when you're viewing a page. This must appear below the sidebar code above. Otherwise, if placed inside customscripts.js, the script runs before the sidebar code runs and the class never gets inserted.-->
+<script>$("li.active").parents('li').toggleClass("active");</script>
diff --git a/_includes/tip.html b/_includes/tip.html
new file mode 100644
index 0000000000000000000000000000000000000000..faf48afd861c7e98846b6a13b7eaa68f5c405218
--- /dev/null
+++ b/_includes/tip.html
@@ -0,0 +1 @@
+<div markdown="span" class="alert alert-success" role="alert"><i class="fa fa-check-square-o"></i> <b>Tip:</b> {{include.content}}</div>
\ No newline at end of file
diff --git a/_includes/toc.html b/_includes/toc.html
new file mode 100644
index 0000000000000000000000000000000000000000..067141a6ac77f21a9f39edd16efd3c077368155a
--- /dev/null
+++ b/_includes/toc.html
@@ -0,0 +1,21 @@
+
+<!-- this handles the automatic toc. use ## for subheads to auto-generate the on-page minitoc. if you use html tags, you must supply an ID for the heading element in order for it to appear in the minitoc. -->
+<script>
+$( document ).ready(function() {
+  // Handler for .ready() called.
+
+$('#toc').toc({ minimumHeaders: 0, listType: 'ul', showSpeed: 0, headers: 'h2,h3,h4' });
+
+/* this offset helps account for the space taken up by the floating toolbar. */
+$('#toc').on('click', 'a', function() {
+  var target = $(this.getAttribute('href'))
+    , scroll_target = target.offset().top
+
+  $(window).scrollTop(scroll_target - 10);
+  return false
+})
+  
+});
+</script>
+
+<div id="toc"></div>
diff --git a/_includes/topnav.html b/_includes/topnav.html
new file mode 100644
index 0000000000000000000000000000000000000000..5acf50c56d6c76a01a7f1e376c68f6647803d14c
--- /dev/null
+++ b/_includes/topnav.html
@@ -0,0 +1,81 @@
+<!-- Navigation -->
+<nav class="navbar navbar-inverse navbar-static-top">
+    <div class="container topnavlinks">
+        <div class="navbar-header">
+            <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
+                <span class="sr-only">Toggle navigation</span>
+                <span class="icon-bar"></span>
+                <span class="icon-bar"></span>
+                <span class="icon-bar"></span>
+            </button>
+            <a class="fa fa-home fa-lg navbar-brand" href="index.html">&nbsp;<span class="projectTitle"> {{site.topnav_title}}</span></a>
+        </div>
+        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
+            <ul class="nav navbar-nav navbar-right">
+                <!-- toggle sidebar button -->
+                <li><a id="tg-sb-link" href="#"><i id="tg-sb-icon" class="fa fa-toggle-on"></i> Nav</a></li>
+                <!-- entries without drop-downs appear here -->
+
+{% assign topnav = site.data[page.topnav] %}
+{% assign topnav_dropdowns = site.data[page.topnav].topnav_dropdowns %}
+
+                {% for entry in topnav.topnav %}
+                {% for item in entry.items %}
+                {% if item.external_url %}
+                <li><a href="{{item.external_url}}" target="_blank">{{item.title}}</a></li>
+                {% elsif page.url contains item.url %}
+                <li class="active"><a href="{{item.url | remove: "/"}}">{{item.title}}</a></li>
+                {% else %}
+                <li><a href="{{item.url | remove: "/"}}">{{item.title}}</a></li>
+                {% endif %}
+                {% endfor %}
+                {% endfor %}
+                <!-- entries with drop-downs appear here -->
+                <!-- conditional logic to control which topnav appears for the audience defined in the configuration file.-->
+                {% for entry in topnav_dropdowns %}
+                {% for folder in entry.folders %}
+                <li class="dropdown">
+                    <a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ folder.title }}<b class="caret"></b></a>
+                    <ul class="dropdown-menu">
+                        {% for folderitem in folder.folderitems %}
+                        {% if folderitem.external_url %}
+                        <li><a href="{{folderitem.external_url}}" target="_blank">{{folderitem.title}}</a></li>
+                        {% elsif page.url contains folderitem.url %}
+                        <li class="dropdownActive"><a href="{{folderitem.url |  remove: "/"}}">{{folderitem.title}}</a></li>
+                        {% else %}
+                        <li><a href="{{folderitem.url | remove: "/"}}">{{folderitem.title}}</a></li>
+                        {% endif %}
+                        {% endfor %}
+                    </ul>
+                </li>
+                {% endfor %}
+                {% endfor %}
+                {% if site.feedback_disable == null or site.feedback_disable == false %}
+			{% include feedback.html %}
+		{% endif %}
+                <!--comment out this block if you want to hide search-->
+                <li>
+                    <!--start search-->
+                    <div id="search-demo-container">
+                        <input type="text" id="search-input" placeholder="{{site.data.strings.search_placeholder_text}}">
+                        <ul id="results-container"></ul>
+                    </div>
+                    <script src="{{ "js/jekyll-search.js"}}" type="text/javascript"></script>
+                    <script type="text/javascript">
+                            SimpleJekyllSearch.init({
+                                searchInput: document.getElementById('search-input'),
+                                resultsContainer: document.getElementById('results-container'),
+                                dataSource: '{{ "search.json" }}',
+                                searchResultTemplate: '<li><a href="{url}" title="{{page.title | escape }}">{title}</a></li>',
+                    noResultsText: '{{site.data.strings.search_no_results_text}}',
+                            limit: 10,
+                            fuzzy: true,
+                    })
+                    </script>
+                    <!--end search-->
+                </li>
+            </ul>
+        </div>
+        </div>
+        <!-- /.container -->
+</nav>
diff --git a/_includes/warning.html b/_includes/warning.html
new file mode 100644
index 0000000000000000000000000000000000000000..e08268c93355ecc2b7c15a3aa91805a0417402c6
--- /dev/null
+++ b/_includes/warning.html
@@ -0,0 +1 @@
+<div markdown="span" class="alert alert-danger" role="alert"><i class="fa fa-exclamation-circle"></i> <b>Warning:</b> {{include.content}}</div>
\ No newline at end of file
diff --git a/_layouts/default.html b/_layouts/default.html
index e4ab96fb0b93f94b18e15f00917f31bbe0ceeaa2..0d7602ded19df7a8c64dc53e586b40d6a47bce97 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -1,20 +1,106 @@
 <!DOCTYPE html>
 <html>
+<head>
+    {% include head.html %}
+    <script>
+        $(document).ready(function() {
+            // Initialize navgoco with default options
+            $("#mysidebar").navgoco({
+                caretHtml: '',
+                accordion: true,
+                openClass: 'active', // open
+                save: false, // leave false or nav highlighting doesn't work right
+                cookie: {
+                    name: 'navgoco',
+                    expires: false,
+                    path: '/'
+                },
+                slide: {
+                    duration: 400,
+                    easing: 'swing'
+                }
+            });
 
-  {% include head.html %}
+            $("#collapseAll").click(function(e) {
+                e.preventDefault();
+                $("#mysidebar").navgoco('toggle', false);
+            });
 
-  <body>
+            $("#expandAll").click(function(e) {
+                e.preventDefault();
+                $("#mysidebar").navgoco('toggle', true);
+            });
 
-    {% include header.html %}
+        });
 
-    <div class="page-content">
-      <div class="wrapper">
-        {{ content }}
-      </div>
-    </div>
+    </script>
+    <script>
+        $(function () {
+            $('[data-toggle="tooltip"]').tooltip()
+        })
+    </script>
+    <script>
+        $(document).ready(function() {
+            $("#tg-sb-link").click(function() {
+                $("#tg-sb-sidebar").toggle();
+                $("#tg-sb-content").toggleClass('col-md-9');
+                $("#tg-sb-content").toggleClass('col-md-12');
+                $("#tg-sb-icon").toggleClass('fa-toggle-on');
+                $("#tg-sb-icon").toggleClass('fa-toggle-off');
+            });
+        });
+    </script>
+    {% if page.datatable == true %}
+    <!-- Include the standard DataTables bits -->
+    <link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.13/css/jquery.dataTables.css">
+    <script type="text/javascript" charset="utf8" src="//cdn.datatables.net/1.10.13/js/jquery.dataTables.js"></script>
+    <!-- First, this walks through the tables that occur between ...-begin
+         and ...-end and add the "datatable" class to them.
+         Then it invokes DataTable's standard initializer
+         Credit here: http://www.beardedhacker.com/blog/2015/08/28/add-class-attribute-to-markdown-table/
+      -->
+    <script>
+      $(document).ready(function(){
+          $('div.datatable-begin').nextUntil('div.datatable-end', 'table').addClass('display');
+          $('table.display').DataTable( {
+              paging: true,
+              stateSave: true,
+              searching: true
+          });
+       });
+    </script>
+    {% endif %}
 
-    {% include footer.html %}
+</head>
+<body>
+{% include topnav.html %}
+<!-- Page Content -->
+<div class="container">
+  <div id="main">
+    <!-- Content Row -->
+    <div class="row">
+        {% assign content_col_size = "col-md-12" %}
+        {% unless page.hide_sidebar %}
+            <!-- Sidebar Column -->
+            <div class="col-md-3" id="tg-sb-sidebar">
+                {% include sidebar.html %}
+            </div>
+            {% assign content_col_size = "col-md-9" %}
+        {% endunless %}
 
-  </body>
+        <!-- Content Column -->
+        <div class="{{content_col_size}}" id="tg-sb-content">
+            {{content}}
+        </div>
+    <!-- /.row -->
+</div>
+<!-- /.container -->
+</div>
+<!-- /#main -->
+    </div>
 
+</body>
+{% if site.google_analytics %}
+{% include google_analytics.html %}
+{% endif %}
 </html>
diff --git a/_layouts/default_print.html b/_layouts/default_print.html
new file mode 100644
index 0000000000000000000000000000000000000000..4bf619b4735e2f1861c88c8fbb6e44941dcbf7e5
--- /dev/null
+++ b/_layouts/default_print.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html lang="en">
+<html>
+<head>
+    {% include head_print.html %}
+
+
+</head>
+
+<body class="{% if page.type == "title"%}title{% elsif page.type == "frontmatter" %}frontmatter{% elsif page.type == "first_page" %}first_page{% endif %} print">
+
+<!-- Page Content -->
+<div class="container">
+    <!-- Content Column -->
+    <div class="col-md-9">
+
+        {{content}}
+    </div>
+
+</div>    <!-- /.container -->
+
+</body>
+
+</html>
+
diff --git a/_layouts/none.html b/_layouts/none.html
new file mode 100644
index 0000000000000000000000000000000000000000..60887a9201d77967970d81e9d1813785df2eb83e
--- /dev/null
+++ b/_layouts/none.html
@@ -0,0 +1,3 @@
+---
+---
+{{content}}
\ No newline at end of file
diff --git a/_layouts/page.html b/_layouts/page.html
index ce233ad75bfb7966cc211c065626d880aa46ef95..0929278dfdf1e3a94a7fcf412623dc977235fe36 100644
--- a/_layouts/page.html
+++ b/_layouts/page.html
@@ -1,14 +1,68 @@
 ---
 layout: default
 ---
-<article class="post">
 
-  <header class="post-header">
-    <h1 class="post-title">{{ page.title }}</h1>
-  </header>
+<div class="post-header">
+   <h1 class="post-title-main">{{ page.title }}</h1>
+</div>
 
-  <div class="post-content">
-    {{ content }}
-  </div>
+{% if page.simple_map == true %}
 
-</article>
+<script>
+    $(document).ready ( function(){
+        $('.box{{page.box_number}}').addClass('active');
+    });
+</script>
+
+{% include custom/{{page.map_name}}.html %}
+
+{% elsif page.complex_map == true %}
+
+<script>
+    $(document).ready ( function(){
+        $('.modalButton{{page.box_number}}').addClass('active');
+    });
+</script>
+
+{% include custom/{{page.map_name}}.html %}
+
+{% endif %}
+
+<div class="post-content">
+
+   {% if page.summary %}
+    <div class="summary">{{page.summary}}</div>
+   {% endif %}
+
+    {% unless page.toc == false %}
+    {% include toc.html %}
+    {% endunless %}
+
+
+    {% if site.github_editme_path %}
+
+    <a target="_blank" href="https://github.com/{{site.github_editme_path}}{{page.path}}" class="btn btn-default githubEditButton" role="button"><i class="fa fa-github fa-lg"></i> Edit me</a>
+
+    {% endif %}
+
+   {{content}}
+
+    <div class="tags">
+        {% if page.tags != null %}
+        <b>Tags: </b>
+        {% assign projectTags = site.data.tags.allowed-tags %}
+        {% for tag in page.tags %}
+        {% if projectTags contains tag %}
+        <a href="{{ "tag_" | append: tag | append: ".html" }}" class="btn btn-default navbar-btn cursorNorm" role="button">{{page.tagName}}{{tag}}</a>
+        {% endif %}
+        {% endfor %}
+        {% endif %}
+    </div>
+
+{% include disqus.html %}
+
+</div>
+
+{{site.data.alerts.hr_shaded}}
+
+{% include footer.html %}
diff --git a/_layouts/page_print.html b/_layouts/page_print.html
new file mode 100644
index 0000000000000000000000000000000000000000..9e04604a9cdf27419160baa50ec60bcc79d640b9
--- /dev/null
+++ b/_layouts/page_print.html
@@ -0,0 +1,15 @@
+---
+layout: default_print
+comments: true
+---
+<div class="post-header">
+    <h1 class="post-title-main" id="{{page.permalink | replace: '/', '' }}">{{ page.title }}</h1>
+</div>
+
+<div class="post-content">
+
+    {% if page.summary %}
+    <div class="summary">{{page.summary}}</div>
+    {% endif %}
+    {{ content }}
+</div>
diff --git a/_layouts/post.html b/_layouts/post.html
index 3a0fb52ecf57ab45874f66867d1217fa51ccc3b6..0e01ce6d1a69477fcadbb0c4df888993c5030df1 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -3,13 +3,37 @@ layout: default
 ---
 <article class="post" itemscope itemtype="http://schema.org/BlogPosting">
 
-  <header class="post-header">
-    <h1 class="post-title" itemprop="name headline">{{ page.title }}</h1>
-    <p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time>{% if page.author %} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>{% endif %}</p>
-  </header>
+    <header class="post-header">
+        <h1 class="post-title" itemprop="name headline">{{ page.title }}</h1>
+        <p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time> {% if page.author %}<span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">/ {{ page.author }}</span></span>{% endif %}{% if page.tags != null %}/
+            {% assign projectTags = site.data.tags.allowed-tags %}
+            {% for tag in page.tags %}
+            {% if projectTags contains tag %}
+            <a href="{{ "tag_" | append: tag | append: ".html"}}">{{tag}}</a>{% unless forloop.last %}, {% endunless%}
+            {% endif %}
+            {% endfor %}
+            {% endif %}
+
+        </p>
+
+
+    </header>
+
+    <div class="post-content" itemprop="articleBody">
+
+        {% if page.summary %}
+        <div class="summary">{{page.summary}}</div>
+        {% endif %}
+
+        {{ content }}
+    </div>
+
 
-  <div class="post-content" itemprop="articleBody">
-    {{ content }}
-  </div>
 
 </article>
+
+{% include disqus.html %}
+
+{{site.data.alerts.hr_shaded}}
+
+{% include footer.html %}
diff --git a/_posts/2015-04-12-test-post-last-year.md b/_posts/2015-04-12-test-post-last-year.md
new file mode 100644
index 0000000000000000000000000000000000000000..62beba80a658b0ec202fbf314b884a63345b6c0e
--- /dev/null
+++ b/_posts/2015-04-12-test-post-last-year.md
@@ -0,0 +1,10 @@
+---
+title:  "Test post from last year"
+categories: jekyll update
+permalink: test-post-from-last-year.html
+tags: [news]
+---
+
+This is just a test post from the previous year.
+
+{% include links.html %}
diff --git a/_posts/2016-02-24-first-post.md b/_posts/2016-02-24-first-post.md
new file mode 100644
index 0000000000000000000000000000000000000000..e29cc3b844101e592c329dbcbf831361a2ee02e4
--- /dev/null
+++ b/_posts/2016-02-24-first-post.md
@@ -0,0 +1,19 @@
+---
+title:  "Welcome to Jekyll!"
+categories: jekyll update
+permalink: myupdate.html
+tags: [news]
+---
+
+
+Theme updates:
+
+- Permalinks
+- Kramdown
+- URL specified in config file
+- removed PDF output
+- removed some of the alternative layouts
+- added blog feature
+- sidebars configurable per page
+
+{% include links.html %}
diff --git a/_posts/2016-02-26-sample-post-jekyll.md b/_posts/2016-02-26-sample-post-jekyll.md
new file mode 100644
index 0000000000000000000000000000000000000000..3ee58f53f5152dc7fb1fba28d1399f690b7df92d
--- /dev/null
+++ b/_posts/2016-02-26-sample-post-jekyll.md
@@ -0,0 +1,17 @@
+---
+title:  "Sample post"
+published: true
+permalink: samplepost.html
+summary: "This is some summary frontmatter for my sample post."
+tags: [news, getting_started]
+---
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries
+
+## Heading
+
+but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries
+
+{% include links.html %}
diff --git a/_posts/2016-03-24-latex.md b/_posts/2016-03-24-latex.md
deleted file mode 100644
index 4a3d8cb876402fe6fa19487c03577890cbbb3cf4..0000000000000000000000000000000000000000
--- a/_posts/2016-03-24-latex.md
+++ /dev/null
@@ -1,306 +0,0 @@
----
-title: Math Sample
-subtitle: Using KaTeX
-date: 2017-03-05
-tags: ["example", "math"]
----
-
-
-<!-- START doctoc generated TOC please keep comment here to allow auto update -->
-<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
-**Table of Contents**  *generated with [DocToc](https://github.com/thlorenz/doctoc)*
-
-- [General model parameters (for all models)](#general-model-parameters-for-all-models)
-- [Model_parameters](#model_parameters)
-- [Agent_parameters](#agent_parameters)
-    - [Desired speed](#desired-speed)
-    - [Shape of pedestrians](#shape-of-pedestrians)
-- [Generalized Centrifugal Force Model](#generalized-centrifugal-force-model)
-- [Gompertz model](#gompertz-model)
-- [Collision-free speed model](#collision-free-speed-model)
-    - [Model parameters](#model-parameters)
-    - [Agent parameters (recommendations)](#agent-parameters-recommendations)
-- [Wall-avoidance model](#wall-avoidance-model)
-    - [Parameters](#parameters)
-- [Generalized Centrifugal Force Model with lateral swaying](#generalized-centrifugal-force-model-with-lateral-swaying)
-
-<!-- END doctoc generated TOC please keep comment here to allow auto update -->
-
-
-Several operational models are implemented in `jpscore`. 
-An operational model defines how pedestrians moves from one time step to the next.
-In the definition of agent's properties it is mandatory to precise the number of the model to be used e.g.:
-
-```xml
-<agents operational_model_id="n">
-```
-
-where `n` is 1, 2, 3, 4 or 5.
-
-
-### General model parameters (for all models)
-The definition of any model parameter is composed of two different 
-sections: 
-
-- **model_parameters**: Model specific parameter. See below in the different model sections.
-- **agent_parameters**: These parameter are mainly specific for the shape of pedestrians 
-    or other pedestrian properties like desired speed, reaction time etc.
-
-### Model_parameters
-- `<solver>euler</solver>`
-     - The solver for the ODE. Only *Euler*. No other options.
-- `<stepsize>0.001</stepsize>`: 
-     - The time step for the solver. This should be choosed with care. For force-based model it is recommended to take a value between $`10^{-2} `$ and $`10^{-3}`$ s.
-       For first-order models, a value of 0.05 s should be OK.
-       A larger time step leads to faster simulations, however it is too risky and can lead to 
-numerical instability, collisions and overlapping among pedestrians.
-     - Unit: s 
-- `<periodic>0</periodic>`
-     - Set to 1 if a system with closed boundary conditions should be simulated. Default setting is 0.
-     - This option is only implemented in *Tordeux2015* and is very geometry-specific (only for corridors) with predefined settings. See Utest/Validation/1test_1D/ for a use case.
-     
-- `<exit_crossing_strategy>3</exit_crossing_strategy>`
-     - Positive values in $`[1, 9]`$. See [Direction strategies](2016-11-02-direction.html) for the definition of the strategies.
-     
-- `<linkedcells enabled="true" cell_size="2"/>`
-     - Defines the size of the cells. This is important to get the neighbors of a pedestrians, which
-       are all pedestrians within the eight neighboring cells. Larger cells, lead so slower simulations, since
-       more pedestrian-pedestrian interactions need to be calculated.
-     - Unit: m
-
-
-### Agent_parameters
-The *agent parameters* are mostly identical for all models. Exceptions will be mentioned explicitly. 
-
-The parameters that can be specified in this section are Gauss distributed (default value are given). 
-
-#### Desired speed
-- `<v0 mu="1.2" sigma="0.0" />` 
-    - Desired speed
-    - Unit: m/s
-- `<v0_upstairs mu="0.6" sigma="0.167" />`
-    - Desired speed upstairs
-    - Unit: m/s
-- `<v0_downstairs mu="0.6" sigma="0.188" />`
-    - Desired speed downstairs
-    - Unit: m/s
-- `<v0_idle_escalator_upstairs mu="0.6" sigma="0.0" />`
-    - Speed of idle escalators upstairs
-    - Unit: m/s
-- `<v0_idle_escalator_downstairs mu="0.6" sigma="0.0" />`
-    - Speed of idle escalators downstairs
-    - Unit: m/s
-
-#### Shape of pedestrians
-Pedestrians are modeled as ellipses with two semi-axes: $`a`$ and $`b`$, where
-
-$`
-a= a_{min} + a_{\tau}v, 
-`$
-
-and
-
-$`
-b = b_{max} - (b_{max}-b_{min})\frac{v}{v^0}.
-`$
-
-$`v`$ is the peed of a pedestrian.
-
-- `<bmax mu="0.15" sigma="0.0" />`
-    - Maximal length of the shoulder semi-axis
-    - Unit: m
-- `<bmin mu="0.15" sigma="0.0" />`
-    - Minimal length of the shoulder semi-axis
-    - Unit: m
-- `<amin mu="0.15" sigma="0.0" />`
-    - Minimal length of the movement semi-axis. This is the case when $`v=0`$.
-    - Unit: m  
-- `<atau mu="0." sigma="0.0" />`  
-    - (Linear) speed-dependency of the movement semi-axis  
-    - Unit: s  
-  
-Other parameters in this section are:
-
-- `<tau mu="0.5" sigma="0.0" />`
-    - Reaction time. This constant is used in the driving force of the force-based forces. Small $`\rightarrow`$ instantaneous acceleration.
-    - Unit: s
-- `<T mu="1" sigma="0.0" />`
-    - Specific parameter for model 3 (Tordeux2015). Defines the slope of the speed function. 
-  
-### Generalized Centrifugal Force Model
-[Generalized Centrifugal Force Model][#GCFM] is a force-based model.
-
-Usage:
-
-```xml
-<model operational_model_id="1" description="gcfm">
-```
-
-### Gompertz model
-[Gompertz Model][#gompertz] is a force-based model.
-
-Usage:
-
-```xml
-<model operational_model_id="2" description="gompertz">
-```
-
-
-### Collision-free speed model
-[Collision-free speed model][#Tordeux2015] is a velocity-based model. See also this [talk](https://fz-juelich.sciebo.de/index.php/s/1pYFETbvJdJDusE) for more details about the model.
-
-Usage:
-
-```xml
-<model operational_model_id="3" description="Tordeux2015">
-```
-
-#### Model parameters
-Besides the options defined in [Mode_parameters](#model_parameters) the following options are necessary for this model:
-
-- `<force_ped  a="5" D="0.2"/>`
-     - The influence of other pedestrians is triggered by $`a`$ and $`D`$ where $`a`$ is the strength if the interaction and $`D`$ gives its range. The naming may be misleading, since the model is **not** force-based, but velocity-based. 
-     - Unit: m
-- `<force_wall a="5" D="0.02"/>`: 
-     - The influence of  walls is triggered by $`a`$ and $`D`$ where $`a`$ is the strength if the interaction and $`D`$ gives its range. A larger value of $`D`$ may lead to blockades, especially when passing narrow bottlenecks.
-     - Unit: m
-     
-The names of the aforementioned parameters might be misleading, since the model is *not* force-based. The naming will be changed in the future.
-
-#### Agent parameters (recommendations)
-Actually, this model assumes circular pedestrian's shape, therefore the parameter for the semi-axes [Agent_parameters](#agent_parameters) should be chosen, such that circles with constant radius can be obtained.
-For example: 
-
-```xml
-<bmax mu="0.15" sigma="0.0" />
-<bmin mu="0.15" sigma="0.0" />
-<amin mu="0.15" sigma="0.0" />
-<atau mu="0." sigma="0.0" />
-```
-
-This defines circles with radius 15 cm.
-
-
-In summary the relevant section for this model could look like:
-
-```xml
-<model operational_model_id="3" description="Tordeux2015">
-    <model_parameters>
-        <solver>euler</solver>
-        <stepsize>0.05</stepsize>
-        <exit_crossing_strategy>3</exit_crossing_strategy>
-        <linkedcells enabled="true" cell_size="2"/>
-        <force_ped  a="5" D="0.2"/>
-        <force_wall a="5" D="0.02"/>
-    </model_parameters>
-    <agent_parameters agent_parameter_id="1">
-        <v0 mu="1.34" sigma="0.0" />
-        <v0_upstairs mu="0.668" sigma="0.167" />
-        <v0_downstairs mu="0.750" sigma="0.188" />
-        <v0_idle_escalator_upstairs mu="0.5" sigma="0.0" />
-        <v0_idle_escalator_downstairs mu="0.5" sigma="0.0" />
-        <bmax mu="0.15" sigma="0.0" />
-        <bmin mu="0.15" sigma="0.0" />
-        <amin mu="0.15" sigma="0.0" />
-        <atau mu="0." sigma="0.0" />
-        <tau mu="0.5" sigma="0.0" />
-        <T mu="1" sigma="0.0" />
-    </agent_parameters>
-</model>
-```
-
-### Wall-avoidance model
-
-[Wall-avoidance model][#ModelGraf2015] is a velocity-based model. The Wall-Avoidance Model focuses on valid pedestrian positions. The interaction of agents with walls takes precedence over the agent-to-agent interaction. There are two key aspects:
-
-* In the vicinity to walls, agents take on a different behaviour, slowing them down (parameter: slowdowndistance)
-
- * Agents follow special floorfields, directing them to the targets/goals, which will have them avoid walls if possible (free space)
-
-Valid exit strategies are {6, 8, 9}. Please see details below.
-
-
-(Sample) Usage:
-
-```xml
-<model operational_model_id="4" description="gradnav">
-  <model_parameters>
-    <solver>euler</solver>
-    <stepsize>0.01</stepsize>
-    <exit_crossing_strategy>9</exit_crossing_strategy>
-    <floorfield delta_h="0.0625" wall_avoid_distance="0.4" 
-        use_wall_avoidance="true" />
-    <linkedcells enabled="true" cell_size="4.2" />
-    <force_ped nu="3" b="1.0" c="3.0" />
-    <force_wall nu="1" b="0.70" c="3.0" />
-    <anti_clipping slow_down_distance=".2" />
-  </model_parameters>
-  <agent_parameters agent_parameter_id="0">
-    <v0 mu="1.5" sigma="0.0" />
-    <bmax mu="0.25" sigma="0.001" />
-    <bmin mu="0.20" sigma="0.001" />
-    <amin mu="0.18" sigma="0.001" />
-    <tau mu="0.5" sigma="0.001" />
-    <atau mu="0.23" sigma="0.001" />
-  </agent_parameters>
-</model>
-```
-
-#### Parameters ####
-
-- `<exit_crossing_strategy>[6, 8, 9]</exit_crossing_strategy>`
-  The strategies 6, 8 and 9 differ only in the way the floorfield is created:
-  - 6: one floorfield over all geometry (building); only in 2D geometries; directing every agent to the closest exit
-  - 8: multiple floorfield-objects (one for every __room__); each object can create a floor field on the fly to a target line (or vector of lines) within the room; working in multi-floor-buildings; requires a router that provides intermediate targets in the same room
-  - 9: (__recommended__) multiple floorfield-objects (one for every __subroom__); 
-       each object can create a floor field on the fly to a target line (or vector of lines) 
-       within the same subroom; working in multi-floor-buildings; 
-       requires a router that provides intermediate targets in the same subroom;
-
-- `<floorfield delta_h="0.0625" wall_avoid_distance="0.4" use_wall_avoidance="true" />`
-     - The parameters define:
-          - __delta_h__: discretization/stepsize of grid-points used by the floor field
-          - __wall_avoid_distance__: below this wall-distance, the floor field will show a wall-repulsive character, directing agents away from the wall
-          - __use_wall_avoidance__: {true, false} switch to turn on/off the enhancement of the floor field
-<img src="https://cst.version.fz-juelich.de/jupedsim/jpscore/uploads/785cda284f5f44d2b019332d29b8075e/transformFF.png" width="300" height="300" />
-         
-- `<linkedcells enabled="true" cell_size="4.2" />`
-  - range in which other pedestrians are considered neighbours and can influence the current agent. This value defines cell-size of the cell-grid.
-
-### Generalized Centrifugal Force Model with lateral swaying
-
-The [Generalized Centrifugal Force Model with lateral swaying][#Krausz] is mostly identical to the GCFM Model, 
-but instead of a variable semi-axis $`b`$ of the ellipse simulating the pedestrian, pedestrians perform an oscillation perpendicular to their direction of motion.
-As a consequence the parameter `Bmax` is ignored. 
-
-Usage:
-
-```xml
-<model operational_model_id="5" description="krausz">
-```
-
-Four Parameters can be passed to control the lateral swaying, for example:
-
-`<sway ampA="-0.14" ampB="0.21" freqA="0.44" freqB="0.35" />`
-
-- `ampA` and `ampB` determine the amplitude of the oscillation according to the linear relation 
-   $`A = \texttt{ampA} \cdot \| v_i \| + \texttt{ampB}`$.
-
-- `freqA` and `freqB` determine the frequency of the oscillation according to 
-   $`f = \texttt{freqA} \cdot \| v_i \| + \texttt{freqB}`$.
-
-Setting `ampA` and `ampB` to 0 disables lateral swaying. If not specified, the empirical values given in [Krausz, 2012][#Krausz] are used, that is:
-
-- `ampA` = -0.14, `ampB` = 0.21 and
-- `freqA` = 0.44, `freqB` = 0.25.
-
-
-[#GCFM]: http://journals.aps.org/pre/abstract/10.1103/PhysRevE.82.046111 "Mohcine Chraibi, Armin Seyfried, and Andreas Schadschneider Phys. Rev. E 82, 046111"
-
-[#gompertz]: http://trg-india.org/trg_conference_2015 "Kemloh Wagoum, Armel Ulrich, Mohcine Chraibi, Jun Zhang and Gregor Lämmel. JuPedSim: An Open Framework for Simulating and Analyzing the Dynamics of Pedestrians. In 3rd Conference of Transportation Research Group of India, 2015."
-
-[#Tordeux2015]: http://arxiv.org/abs/1512.05597  "Tordeux, Antoine, Chraibi, Mohcine and Seyfried, Armin, Collision-free speed model for pedestrian dynamics. In Traffic and Granular Flow  '15, to appear."
-
-[#ModelGraf2015]: https://fz-juelich.sciebo.de/index.php/s/VFnUCH2gtz1mSoL "Arne, Graf Master thesis"
-
-[#Krausz]: https://link.springer.com/chapter/10.1007/978-3-319-02447-9_61
diff --git a/_posts/2016-03-24-welcome-to-jekyll.markdown b/_posts/2016-03-24-welcome-to-jekyll.markdown
deleted file mode 100644
index 87f790a4852e4b8e9d0810a9c41554d1cac61008..0000000000000000000000000000000000000000
--- a/_posts/2016-03-24-welcome-to-jekyll.markdown
+++ /dev/null
@@ -1,35 +0,0 @@
----
-layout: post
-title:  "Welcome to Jekyll!"
-date:   2016-03-24 15:32:14 -0300
-categories: jekyll update
----
-You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
-
-To add new posts, simply add a file in the `_posts` directory that follows the convention `YYYY-MM-DD-name-of-post.ext` and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works.
-
-Jekyll also offers powerful support for code snippets:
-
-{% highlight ruby %}
-def print_hi(name)
-  puts "Hi, #{name}"
-end
-print_hi('Tom')
-#=> prints 'Hi, Tom' to STDOUT.
-{% endhighlight %}
-
-# Latex
-
-$$
-\alpha = \beta
-$$
-
-$`
-a= a_{min} + a_{\tau}v, 
-`$
-
-Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].
-
-[jekyll-docs]: http://jekyllrb.com/docs/home
-[jekyll-gh]:   https://github.com/jekyll/jekyll
-[jekyll-talk]: https://talk.jekyllrb.com/
diff --git a/_sass/_base.scss b/_sass/_base.scss
deleted file mode 100644
index 0883c3cdb5d1a672ff356b05ade8b0e8d26abdaf..0000000000000000000000000000000000000000
--- a/_sass/_base.scss
+++ /dev/null
@@ -1,206 +0,0 @@
-/**
- * Reset some basic elements
- */
-body, h1, h2, h3, h4, h5, h6,
-p, blockquote, pre, hr,
-dl, dd, ol, ul, figure {
-    margin: 0;
-    padding: 0;
-}
-
-
-
-/**
- * Basic styling
- */
-body {
-    font: $base-font-weight #{$base-font-size}/#{$base-line-height} $base-font-family;
-    color: $text-color;
-    background-color: $background-color;
-    -webkit-text-size-adjust: 100%;
-    -webkit-font-feature-settings: "kern" 1;
-    -moz-font-feature-settings: "kern" 1;
-    -o-font-feature-settings: "kern" 1;
-    font-feature-settings: "kern" 1;
-    font-kerning: normal;
-}
-
-
-
-/**
- * Set `margin-bottom` to maintain vertical rhythm
- */
-h1, h2, h3, h4, h5, h6,
-p, blockquote, pre,
-ul, ol, dl, figure,
-%vertical-rhythm {
-    margin-bottom: $spacing-unit / 2;
-}
-
-
-
-/**
- * Images
- */
-img {
-    max-width: 100%;
-    vertical-align: middle;
-}
-
-
-
-/**
- * Figures
- */
-figure > img {
-    display: block;
-}
-
-figcaption {
-    font-size: $small-font-size;
-}
-
-
-
-/**
- * Lists
- */
-ul, ol {
-    margin-left: $spacing-unit;
-}
-
-li {
-    > ul,
-    > ol {
-         margin-bottom: 0;
-    }
-}
-
-
-
-/**
- * Headings
- */
-h1, h2, h3, h4, h5, h6 {
-    font-weight: $base-font-weight;
-}
-
-
-
-/**
- * Links
- */
-a {
-    color: $brand-color;
-    text-decoration: none;
-
-    &:visited {
-        color: darken($brand-color, 15%);
-    }
-
-    &:hover {
-        color: $text-color;
-        text-decoration: underline;
-    }
-}
-
-
-
-/**
- * Blockquotes
- */
-blockquote {
-    color: $grey-color;
-    border-left: 4px solid $grey-color-light;
-    padding-left: $spacing-unit / 2;
-    font-size: 18px;
-    letter-spacing: -1px;
-    font-style: italic;
-
-    > :last-child {
-        margin-bottom: 0;
-    }
-}
-
-
-
-/**
- * Code formatting
- */
-pre,
-code {
-    font-size: 15px;
-    border: 1px solid $grey-color-light;
-    border-radius: 3px;
-    background-color: #eef;
-}
-
-code {
-    padding: 1px 5px;
-}
-
-pre {
-    padding: 8px 12px;
-    overflow-x: auto;
-
-    > code {
-        border: 0;
-        padding-right: 0;
-        padding-left: 0;
-    }
-}
-
-
-
-/**
- * Wrapper
- */
-.wrapper {
-    max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2));
-    max-width:         calc(#{$content-width} - (#{$spacing-unit} * 2));
-    margin-right: auto;
-    margin-left: auto;
-    padding-right: $spacing-unit;
-    padding-left: $spacing-unit;
-    @extend %clearfix;
-
-    @include media-query($on-laptop) {
-        max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));
-        max-width:         calc(#{$content-width} - (#{$spacing-unit}));
-        padding-right: $spacing-unit / 2;
-        padding-left: $spacing-unit / 2;
-    }
-}
-
-
-
-/**
- * Clearfix
- */
-%clearfix {
-
-    &:after {
-        content: "";
-        display: table;
-        clear: both;
-    }
-}
-
-
-
-/**
- * Icons
- */
-.icon {
-
-    > svg {
-        display: inline-block;
-        width: 16px;
-        height: 16px;
-        vertical-align: middle;
-
-        path {
-            fill: $grey-color;
-        }
-    }
-}
diff --git a/_sass/_layout.scss b/_sass/_layout.scss
deleted file mode 100644
index 9cbfddefefb7c5ed69b9abebe51965a0466dca7a..0000000000000000000000000000000000000000
--- a/_sass/_layout.scss
+++ /dev/null
@@ -1,242 +0,0 @@
-/**
- * Site header
- */
-.site-header {
-    border-top: 5px solid $grey-color-dark;
-    border-bottom: 1px solid $grey-color-light;
-    min-height: 56px;
-
-    // Positioning context for the mobile navigation icon
-    position: relative;
-}
-
-.site-title {
-    font-size: 26px;
-    font-weight: 300;
-    line-height: 56px;
-    letter-spacing: -1px;
-    margin-bottom: 0;
-    float: left;
-
-    &,
-    &:visited {
-        color: $grey-color-dark;
-    }
-}
-
-.site-nav {
-    float: right;
-    line-height: 56px;
-
-    .menu-icon {
-        display: none;
-    }
-
-    .page-link {
-        color: $text-color;
-        line-height: $base-line-height;
-
-        // Gaps between nav items, but not on the last one
-        &:not(:last-child) {
-            margin-right: 20px;
-        }
-    }
-
-    @include media-query($on-palm) {
-        position: absolute;
-        top: 9px;
-        right: $spacing-unit / 2;
-        background-color: $background-color;
-        border: 1px solid $grey-color-light;
-        border-radius: 5px;
-        text-align: right;
-
-        .menu-icon {
-            display: block;
-            float: right;
-            width: 36px;
-            height: 26px;
-            line-height: 0;
-            padding-top: 10px;
-            text-align: center;
-
-            > svg {
-                width: 18px;
-                height: 15px;
-
-                path {
-                    fill: $grey-color-dark;
-                }
-            }
-        }
-
-        .trigger {
-            clear: both;
-            display: none;
-        }
-
-        &:hover .trigger {
-            display: block;
-            padding-bottom: 5px;
-        }
-
-        .page-link {
-            display: block;
-            padding: 5px 10px;
-
-            &:not(:last-child) {
-                margin-right: 0;
-            }
-            margin-left: 20px;
-        }
-    }
-}
-
-
-
-/**
- * Site footer
- */
-.site-footer {
-    border-top: 1px solid $grey-color-light;
-    padding: $spacing-unit 0;
-}
-
-.footer-heading {
-    font-size: 18px;
-    margin-bottom: $spacing-unit / 2;
-}
-
-.contact-list,
-.social-media-list {
-    list-style: none;
-    margin-left: 0;
-}
-
-.footer-col-wrapper {
-    font-size: 15px;
-    color: $grey-color;
-    margin-left: -$spacing-unit / 2;
-    @extend %clearfix;
-}
-
-.footer-col {
-    float: left;
-    margin-bottom: $spacing-unit / 2;
-    padding-left: $spacing-unit / 2;
-}
-
-.footer-col-1 {
-    width: -webkit-calc(35% - (#{$spacing-unit} / 2));
-    width:         calc(35% - (#{$spacing-unit} / 2));
-}
-
-.footer-col-2 {
-    width: -webkit-calc(20% - (#{$spacing-unit} / 2));
-    width:         calc(20% - (#{$spacing-unit} / 2));
-}
-
-.footer-col-3 {
-    width: -webkit-calc(45% - (#{$spacing-unit} / 2));
-    width:         calc(45% - (#{$spacing-unit} / 2));
-}
-
-@include media-query($on-laptop) {
-    .footer-col-1,
-    .footer-col-2 {
-        width: -webkit-calc(50% - (#{$spacing-unit} / 2));
-        width:         calc(50% - (#{$spacing-unit} / 2));
-    }
-
-    .footer-col-3 {
-        width: -webkit-calc(100% - (#{$spacing-unit} / 2));
-        width:         calc(100% - (#{$spacing-unit} / 2));
-    }
-}
-
-@include media-query($on-palm) {
-    .footer-col {
-        float: none;
-        width: -webkit-calc(100% - (#{$spacing-unit} / 2));
-        width:         calc(100% - (#{$spacing-unit} / 2));
-    }
-}
-
-
-
-/**
- * Page content
- */
-.page-content {
-    padding: $spacing-unit 0;
-}
-
-.page-heading {
-    font-size: 20px;
-}
-
-.post-list {
-    margin-left: 0;
-    list-style: none;
-
-    > li {
-        margin-bottom: $spacing-unit;
-    }
-}
-
-.post-meta {
-    font-size: $small-font-size;
-    color: $grey-color;
-}
-
-.post-link {
-    display: block;
-    font-size: 24px;
-}
-
-
-
-/**
- * Posts
- */
-.post-header {
-    margin-bottom: $spacing-unit;
-}
-
-.post-title {
-    font-size: 42px;
-    letter-spacing: -1px;
-    line-height: 1;
-
-    @include media-query($on-laptop) {
-        font-size: 36px;
-    }
-}
-
-.post-content {
-    margin-bottom: $spacing-unit;
-
-    h2 {
-        font-size: 32px;
-
-        @include media-query($on-laptop) {
-            font-size: 28px;
-        }
-    }
-
-    h3 {
-        font-size: 26px;
-
-        @include media-query($on-laptop) {
-            font-size: 22px;
-        }
-    }
-
-    h4 {
-        font-size: 20px;
-
-        @include media-query($on-laptop) {
-            font-size: 18px;
-        }
-    }
-}
diff --git a/_sass/_syntax-highlighting.scss b/_sass/_syntax-highlighting.scss
deleted file mode 100644
index 8fac59776d54d4b29faccf049f4cf50b85b4e2c3..0000000000000000000000000000000000000000
--- a/_sass/_syntax-highlighting.scss
+++ /dev/null
@@ -1,71 +0,0 @@
-/**
- * Syntax highlighting styles
- */
-.highlight {
-    background: #fff;
-    @extend %vertical-rhythm;
-
-    .highlighter-rouge & {
-      background: #eef;
-    }
-
-    .c     { color: #998; font-style: italic } // Comment
-    .err   { color: #a61717; background-color: #e3d2d2 } // Error
-    .k     { font-weight: bold } // Keyword
-    .o     { font-weight: bold } // Operator
-    .cm    { color: #998; font-style: italic } // Comment.Multiline
-    .cp    { color: #999; font-weight: bold } // Comment.Preproc
-    .c1    { color: #998; font-style: italic } // Comment.Single
-    .cs    { color: #999; font-weight: bold; font-style: italic } // Comment.Special
-    .gd    { color: #000; background-color: #fdd } // Generic.Deleted
-    .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
-    .ge    { font-style: italic } // Generic.Emph
-    .gr    { color: #a00 } // Generic.Error
-    .gh    { color: #999 } // Generic.Heading
-    .gi    { color: #000; background-color: #dfd } // Generic.Inserted
-    .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
-    .go    { color: #888 } // Generic.Output
-    .gp    { color: #555 } // Generic.Prompt
-    .gs    { font-weight: bold } // Generic.Strong
-    .gu    { color: #aaa } // Generic.Subheading
-    .gt    { color: #a00 } // Generic.Traceback
-    .kc    { font-weight: bold } // Keyword.Constant
-    .kd    { font-weight: bold } // Keyword.Declaration
-    .kp    { font-weight: bold } // Keyword.Pseudo
-    .kr    { font-weight: bold } // Keyword.Reserved
-    .kt    { color: #458; font-weight: bold } // Keyword.Type
-    .m     { color: #099 } // Literal.Number
-    .s     { color: #d14 } // Literal.String
-    .na    { color: #008080 } // Name.Attribute
-    .nb    { color: #0086B3 } // Name.Builtin
-    .nc    { color: #458; font-weight: bold } // Name.Class
-    .no    { color: #008080 } // Name.Constant
-    .ni    { color: #800080 } // Name.Entity
-    .ne    { color: #900; font-weight: bold } // Name.Exception
-    .nf    { color: #900; font-weight: bold } // Name.Function
-    .nn    { color: #555 } // Name.Namespace
-    .nt    { color: #000080 } // Name.Tag
-    .nv    { color: #008080 } // Name.Variable
-    .ow    { font-weight: bold } // Operator.Word
-    .w     { color: #bbb } // Text.Whitespace
-    .mf    { color: #099 } // Literal.Number.Float
-    .mh    { color: #099 } // Literal.Number.Hex
-    .mi    { color: #099 } // Literal.Number.Integer
-    .mo    { color: #099 } // Literal.Number.Oct
-    .sb    { color: #d14 } // Literal.String.Backtick
-    .sc    { color: #d14 } // Literal.String.Char
-    .sd    { color: #d14 } // Literal.String.Doc
-    .s2    { color: #d14 } // Literal.String.Double
-    .se    { color: #d14 } // Literal.String.Escape
-    .sh    { color: #d14 } // Literal.String.Heredoc
-    .si    { color: #d14 } // Literal.String.Interpol
-    .sx    { color: #d14 } // Literal.String.Other
-    .sr    { color: #009926 } // Literal.String.Regex
-    .s1    { color: #d14 } // Literal.String.Single
-    .ss    { color: #990073 } // Literal.String.Symbol
-    .bp    { color: #999 } // Name.Builtin.Pseudo
-    .vc    { color: #008080 } // Name.Variable.Class
-    .vg    { color: #008080 } // Name.Variable.Global
-    .vi    { color: #008080 } // Name.Variable.Instance
-    .il    { color: #099 } // Literal.Number.Integer.Long
-}
diff --git a/_tooltips/baseball.html b/_tooltips/baseball.html
new file mode 100644
index 0000000000000000000000000000000000000000..c229636089e8987c5f882d16189951dde9abd50e
--- /dev/null
+++ b/_tooltips/baseball.html
@@ -0,0 +1,6 @@
+---
+doc_id: baseball
+product: mydoc
+---
+
+{{site.data.definitions.baseball}}
diff --git a/_tooltips/basketball.html b/_tooltips/basketball.html
new file mode 100644
index 0000000000000000000000000000000000000000..c0294855dcf8eb64309f5f52508bad54af714915
--- /dev/null
+++ b/_tooltips/basketball.html
@@ -0,0 +1,6 @@
+---
+doc_id: basketball
+product: mydoc
+---
+
+{{site.data.definitions.basketball}}
diff --git a/_tooltips/football.html b/_tooltips/football.html
new file mode 100644
index 0000000000000000000000000000000000000000..52ae35260b1bc8160d60bcbe08cd04824d3b40f7
--- /dev/null
+++ b/_tooltips/football.html
@@ -0,0 +1,6 @@
+---
+doc_id: football
+product: mydoc
+---
+
+{{site.data.definitions.football}}
\ No newline at end of file
diff --git a/_tooltips/soccer.html b/_tooltips/soccer.html
new file mode 100644
index 0000000000000000000000000000000000000000..19fd5bdadaced8c8efd115a4b41c0b71b35f5bae
--- /dev/null
+++ b/_tooltips/soccer.html
@@ -0,0 +1,6 @@
+---
+doc_id: soccer
+product: mydoc
+---
+
+{{site.data.definitions.soccer}}
\ No newline at end of file
diff --git a/about.md b/about.md
deleted file mode 100644
index d0e6de5e18a5f5e06495c0e7004327a307c779a3..0000000000000000000000000000000000000000
--- a/about.md
+++ /dev/null
@@ -1,15 +0,0 @@
----
-layout: page
-title: About
-permalink: /about/
----
-
-This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](http://jekyllrb.com/)
-
-You can find the source code for the Jekyll new theme at:
-{% include icon-github.html username="jglovier" %} /
-[jekyll-new](https://github.com/jglovier/jekyll-new)
-
-You can find the source code for Jekyll at
-{% include icon-github.html username="jekyll" %} /
-[jekyll](https://github.com/jekyll/jekyll)
diff --git a/createtag b/createtag
new file mode 100644
index 0000000000000000000000000000000000000000..4766b6e99e4c19670086884d4651ac589976da18
--- /dev/null
+++ b/createtag
@@ -0,0 +1,54 @@
+#!/bin/sh
+
+# Using a 'cat' here document, create a file for jekyll
+# website containing what's required for tag pages.
+
+# Pass in tag name(s)
+#   ./createtag linux bsd
+
+CMDLINEPARAM=1     #  Takes at least one param.
+TAGDIR="pages/tags"
+
+if [ $# -ge $CMDLINEPARAM ]
+then
+  tags=$@
+else
+  echo "Atleast ${CMDLINEPARAM} tag name is required."
+  exit 1
+fi
+
+if [ -d "${TAGDIR}" ]; then
+
+  echo "Creating tag(s) for ${tags}"
+
+  for tag in ${tags}; do
+    echo "Title for $tag:"
+    read title
+  # Cannot indent here string.
+cat <<EOF >"${TAGDIR}/tag_${tag}.md"
+---
+title: "${title}"
+tagName: ${tag}
+search: exclude
+permalink: tag_${tag}.html
+sidebar: mydoc_sidebar
+hide_sidebar: true
+folder: tags
+---
+
+{% include taglogic.html %}
+
+{% include links.html %}
+EOF
+
+echo "  - ${tag}" >> _data/tags.yml
+
+  done
+
+else
+  echo "Directory ${TAGDIR} doesn't exist or you are not in the top-level directory."
+  echo "Please run again from the root directory of your project."
+  exit 1
+fi
+
+exit
diff --git a/css/bootstrap.min.css b/css/bootstrap.min.css
new file mode 100755
index 0000000000000000000000000000000000000000..46556c4ae026a09a4d9253e33980e2edd535ddb3
--- /dev/null
+++ b/css/bootstrap.min.css
@@ -0,0 +1,7529 @@
+/*!
+ * Bootstrap v3.3.2 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+
+
+/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
+
+html {
+    font-family: sans-serif;
+    -webkit-text-size-adjust: 100%;
+    -ms-text-size-adjust: 100%
+}
+
+body {
+    margin: 0
+}
+
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+main,
+menu,
+nav,
+section,
+summary {
+    display: block
+}
+
+audio,
+canvas,
+progress,
+video {
+    display: inline-block;
+    vertical-align: baseline
+}
+
+audio:not([controls]) {
+    display: none;
+    height: 0
+}
+
+[hidden],
+template {
+    display: none
+}
+
+a {
+    background-color: transparent
+}
+
+a:active,
+a:hover {
+    outline: 0
+}
+
+abbr[title] {
+    border-bottom: 1px dotted
+}
+
+b,
+strong {
+    font-weight: 700
+}
+
+dfn {
+    font-style: italic
+}
+
+h1 {
+    margin: .67em 0;
+    font-size: 2em
+}
+
+mark {
+    color: #000;
+    background: #ff0
+}
+
+small {
+    font-size: 80%
+}
+
+sub,
+sup {
+    position: relative;
+    font-size: 75%;
+    line-height: 0;
+    vertical-align: baseline
+}
+
+sup {
+    top: -.5em
+}
+
+sub {
+    bottom: -.25em
+}
+
+img {
+    border: 0
+}
+
+svg:not(:root) {
+    overflow: hidden
+}
+
+figure {
+    margin: 1em 40px
+}
+
+hr {
+    height: 0;
+    -webkit-box-sizing: content-box;
+    -moz-box-sizing: content-box;
+    box-sizing: content-box
+}
+
+pre {
+    overflow: auto
+}
+
+code,
+kbd,
+pre,
+samp {
+    font-family: monospace, monospace;
+    font-size: 1em
+}
+
+button,
+input,
+optgroup,
+select,
+textarea {
+    margin: 0;
+    font: inherit;
+    color: inherit
+}
+
+button {
+    overflow: visible
+}
+
+button,
+select {
+    text-transform: none
+}
+
+button,
+html input[type=button],
+input[type=reset],
+input[type=submit] {
+    -webkit-appearance: button;
+    cursor: pointer
+}
+
+button[disabled],
+html input[disabled] {
+    cursor: default
+}
+
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+    padding: 0;
+    border: 0
+}
+
+input {
+    line-height: normal
+}
+
+input[type=checkbox],
+input[type=radio] {
+    -webkit-box-sizing: border-box;
+    -moz-box-sizing: border-box;
+    box-sizing: border-box;
+    padding: 0
+}
+
+input[type=number]::-webkit-inner-spin-button,
+input[type=number]::-webkit-outer-spin-button {
+    height: auto
+}
+
+input[type=search] {
+    -webkit-box-sizing: content-box;
+    -moz-box-sizing: content-box;
+    box-sizing: content-box;
+    -webkit-appearance: textfield
+}
+
+input[type=search]::-webkit-search-cancel-button,
+input[type=search]::-webkit-search-decoration {
+    -webkit-appearance: none
+}
+
+fieldset {
+    padding: .35em .625em .75em;
+    margin: 0 2px;
+    border: 1px solid silver
+}
+
+legend {
+    padding: 0;
+    border: 0
+}
+
+textarea {
+    overflow: auto
+}
+
+optgroup {
+    font-weight: 700
+}
+
+table {
+    border-spacing: 0;
+    border-collapse: collapse
+}
+
+td,
+th {
+    padding: 0
+}
+
+
+/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
+
+@media print {
+    *,
+    :after,
+    :before {
+        /*color:#000!important;*/
+        /*background:0 0!important*/
+        ;
+    }
+    a,
+    a:visited {
+        text-decoration: underline
+    }
+    a[href]:after {
+        content: " (" attr(href) ")"
+    }
+    abbr[title]:after {
+        content: " (" attr(title) ")"
+    }
+    a[href^="javascript:"]:after,
+    a[href^="#"]:after {
+        content: ""
+    }
+    blockquote,
+    pre {
+        border: 1px solid #999;
+        page-break-inside: avoid
+    }
+    thead {
+        display: table-header-group
+    }
+    img,
+    tr {
+        page-break-inside: avoid
+    }
+    img {
+        max-width: 100%!important
+    }
+    h2,
+    h3,
+    p {
+        orphans: 3;
+        widows: 3
+    }
+    h2,
+    h3 {
+        page-break-after: avoid
+    }
+    select {
+        background: #fff!important
+    }
+    .navbar {
+        display: none
+    }
+    .btn>.caret,
+    .dropup>.btn>.caret {
+        border-top-color: #000!important
+    }
+    .label {
+        border: 1px solid #000
+    }
+    .table {
+        border-collapse: collapse!important
+    }
+    .table td,
+    .table th {
+        background-color: #fff!important
+    }
+    .table-bordered td,
+    .table-bordered th {
+        border: 1px solid #ddd!important
+    }
+}
+
+@font-face {
+    font-family: 'Glyphicons Halflings';
+    src: url(../fonts/glyphicons-halflings-regular.eot);
+    src: url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')
+}
+
+.glyphicon {
+    position: relative;
+    top: 1px;
+    display: inline-block;
+    font-family: 'Glyphicons Halflings';
+    font-style: normal;
+    font-weight: 400;
+    line-height: 1;
+    -webkit-font-smoothing: antialiased;
+    -moz-osx-font-smoothing: grayscale
+}
+
+.glyphicon-asterisk:before {
+    content: "\2a"
+}
+
+.glyphicon-plus:before {
+    content: "\2b"
+}
+
+.glyphicon-eur:before,
+.glyphicon-euro:before {
+    content: "\20ac"
+}
+
+.glyphicon-minus:before {
+    content: "\2212"
+}
+
+.glyphicon-cloud:before {
+    content: "\2601"
+}
+
+.glyphicon-envelope:before {
+    content: "\2709"
+}
+
+.glyphicon-pencil:before {
+    content: "\270f"
+}
+
+.glyphicon-glass:before {
+    content: "\e001"
+}
+
+.glyphicon-music:before {
+    content: "\e002"
+}
+
+.glyphicon-search:before {
+    content: "\e003"
+}
+
+.glyphicon-heart:before {
+    content: "\e005"
+}
+
+.glyphicon-star:before {
+    content: "\e006"
+}
+
+.glyphicon-star-empty:before {
+    content: "\e007"
+}
+
+.glyphicon-user:before {
+    content: "\e008"
+}
+
+.glyphicon-film:before {
+    content: "\e009"
+}
+
+.glyphicon-th-large:before {
+    content: "\e010"
+}
+
+.glyphicon-th:before {
+    content: "\e011"
+}
+
+.glyphicon-th-list:before {
+    content: "\e012"
+}
+
+.glyphicon-ok:before {
+    content: "\e013"
+}
+
+.glyphicon-remove:before {
+    content: "\e014"
+}
+
+.glyphicon-zoom-in:before {
+    content: "\e015"
+}
+
+.glyphicon-zoom-out:before {
+    content: "\e016"
+}
+
+.glyphicon-off:before {
+    content: "\e017"
+}
+
+.glyphicon-signal:before {
+    content: "\e018"
+}
+
+.glyphicon-cog:before {
+    content: "\e019"
+}
+
+.glyphicon-trash:before {
+    content: "\e020"
+}
+
+.glyphicon-home:before {
+    content: "\e021"
+}
+
+.glyphicon-file:before {
+    content: "\e022"
+}
+
+.glyphicon-time:before {
+    content: "\e023"
+}
+
+.glyphicon-road:before {
+    content: "\e024"
+}
+
+.glyphicon-download-alt:before {
+    content: "\e025"
+}
+
+.glyphicon-download:before {
+    content: "\e026"
+}
+
+.glyphicon-upload:before {
+    content: "\e027"
+}
+
+.glyphicon-inbox:before {
+    content: "\e028"
+}
+
+.glyphicon-play-circle:before {
+    content: "\e029"
+}
+
+.glyphicon-repeat:before {
+    content: "\e030"
+}
+
+.glyphicon-refresh:before {
+    content: "\e031"
+}
+
+.glyphicon-list-alt:before {
+    content: "\e032"
+}
+
+.glyphicon-lock:before {
+    content: "\e033"
+}
+
+.glyphicon-flag:before {
+    content: "\e034"
+}
+
+.glyphicon-headphones:before {
+    content: "\e035"
+}
+
+.glyphicon-volume-off:before {
+    content: "\e036"
+}
+
+.glyphicon-volume-down:before {
+    content: "\e037"
+}
+
+.glyphicon-volume-up:before {
+    content: "\e038"
+}
+
+.glyphicon-qrcode:before {
+    content: "\e039"
+}
+
+.glyphicon-barcode:before {
+    content: "\e040"
+}
+
+.glyphicon-tag:before {
+    content: "\e041"
+}
+
+.glyphicon-tags:before {
+    content: "\e042"
+}
+
+.glyphicon-book:before {
+    content: "\e043"
+}
+
+.glyphicon-bookmark:before {
+    content: "\e044"
+}
+
+.glyphicon-print:before {
+    content: "\e045"
+}
+
+.glyphicon-camera:before {
+    content: "\e046"
+}
+
+.glyphicon-font:before {
+    content: "\e047"
+}
+
+.glyphicon-bold:before {
+    content: "\e048"
+}
+
+.glyphicon-italic:before {
+    content: "\e049"
+}
+
+.glyphicon-text-height:before {
+    content: "\e050"
+}
+
+.glyphicon-text-width:before {
+    content: "\e051"
+}
+
+.glyphicon-align-left:before {
+    content: "\e052"
+}
+
+.glyphicon-align-center:before {
+    content: "\e053"
+}
+
+.glyphicon-align-right:before {
+    content: "\e054"
+}
+
+.glyphicon-align-justify:before {
+    content: "\e055"
+}
+
+.glyphicon-list:before {
+    content: "\e056"
+}
+
+.glyphicon-indent-left:before {
+    content: "\e057"
+}
+
+.glyphicon-indent-right:before {
+    content: "\e058"
+}
+
+.glyphicon-facetime-video:before {
+    content: "\e059"
+}
+
+.glyphicon-picture:before {
+    content: "\e060"
+}
+
+.glyphicon-map-marker:before {
+    content: "\e062"
+}
+
+.glyphicon-adjust:before {
+    content: "\e063"
+}
+
+.glyphicon-tint:before {
+    content: "\e064"
+}
+
+.glyphicon-edit:before {
+    content: "\e065"
+}
+
+.glyphicon-share:before {
+    content: "\e066"
+}
+
+.glyphicon-check:before {
+    content: "\e067"
+}
+
+.glyphicon-move:before {
+    content: "\e068"
+}
+
+.glyphicon-step-backward:before {
+    content: "\e069"
+}
+
+.glyphicon-fast-backward:before {
+    content: "\e070"
+}
+
+.glyphicon-backward:before {
+    content: "\e071"
+}
+
+.glyphicon-play:before {
+    content: "\e072"
+}
+
+.glyphicon-pause:before {
+    content: "\e073"
+}
+
+.glyphicon-stop:before {
+    content: "\e074"
+}
+
+.glyphicon-forward:before {
+    content: "\e075"
+}
+
+.glyphicon-fast-forward:before {
+    content: "\e076"
+}
+
+.glyphicon-step-forward:before {
+    content: "\e077"
+}
+
+.glyphicon-eject:before {
+    content: "\e078"
+}
+
+.glyphicon-chevron-left:before {
+    content: "\e079"
+}
+
+.glyphicon-chevron-right:before {
+    content: "\e080"
+}
+
+.glyphicon-plus-sign:before {
+    content: "\e081"
+}
+
+.glyphicon-minus-sign:before {
+    content: "\e082"
+}
+
+.glyphicon-remove-sign:before {
+    content: "\e083"
+}
+
+.glyphicon-ok-sign:before {
+    content: "\e084"
+}
+
+.glyphicon-question-sign:before {
+    content: "\e085"
+}
+
+.glyphicon-info-sign:before {
+    content: "\e086"
+}
+
+.glyphicon-screenshot:before {
+    content: "\e087"
+}
+
+.glyphicon-remove-circle:before {
+    content: "\e088"
+}
+
+.glyphicon-ok-circle:before {
+    content: "\e089"
+}
+
+.glyphicon-ban-circle:before {
+    content: "\e090"
+}
+
+.glyphicon-arrow-left:before {
+    content: "\e091"
+}
+
+.glyphicon-arrow-right:before {
+    content: "\e092"
+}
+
+.glyphicon-arrow-up:before {
+    content: "\e093"
+}
+
+.glyphicon-arrow-down:before {
+    content: "\e094"
+}
+
+.glyphicon-share-alt:before {
+    content: "\e095"
+}
+
+.glyphicon-resize-full:before {
+    content: "\e096"
+}
+
+.glyphicon-resize-small:before {
+    content: "\e097"
+}
+
+.glyphicon-exclamation-sign:before {
+    content: "\e101"
+}
+
+.glyphicon-gift:before {
+    content: "\e102"
+}
+
+.glyphicon-leaf:before {
+    content: "\e103"
+}
+
+.glyphicon-fire:before {
+    content: "\e104"
+}
+
+.glyphicon-eye-open:before {
+    content: "\e105"
+}
+
+.glyphicon-eye-close:before {
+    content: "\e106"
+}
+
+.glyphicon-warning-sign:before {
+    content: "\e107"
+}
+
+.glyphicon-plane:before {
+    content: "\e108"
+}
+
+.glyphicon-calendar:before {
+    content: "\e109"
+}
+
+.glyphicon-random:before {
+    content: "\e110"
+}
+
+.glyphicon-comment:before {
+    content: "\e111"
+}
+
+.glyphicon-magnet:before {
+    content: "\e112"
+}
+
+.glyphicon-chevron-up:before {
+    content: "\e113"
+}
+
+.glyphicon-chevron-down:before {
+    content: "\e114"
+}
+
+.glyphicon-retweet:before {
+    content: "\e115"
+}
+
+.glyphicon-shopping-cart:before {
+    content: "\e116"
+}
+
+.glyphicon-folder-close:before {
+    content: "\e117"
+}
+
+.glyphicon-folder-open:before {
+    content: "\e118"
+}
+
+.glyphicon-resize-vertical:before {
+    content: "\e119"
+}
+
+.glyphicon-resize-horizontal:before {
+    content: "\e120"
+}
+
+.glyphicon-hdd:before {
+    content: "\e121"
+}
+
+.glyphicon-bullhorn:before {
+    content: "\e122"
+}
+
+.glyphicon-bell:before {
+    content: "\e123"
+}
+
+.glyphicon-certificate:before {
+    content: "\e124"
+}
+
+.glyphicon-thumbs-up:before {
+    content: "\e125"
+}
+
+.glyphicon-thumbs-down:before {
+    content: "\e126"
+}
+
+.glyphicon-hand-right:before {
+    content: "\e127"
+}
+
+.glyphicon-hand-left:before {
+    content: "\e128"
+}
+
+.glyphicon-hand-up:before {
+    content: "\e129"
+}
+
+.glyphicon-hand-down:before {
+    content: "\e130"
+}
+
+.glyphicon-circle-arrow-right:before {
+    content: "\e131"
+}
+
+.glyphicon-circle-arrow-left:before {
+    content: "\e132"
+}
+
+.glyphicon-circle-arrow-up:before {
+    content: "\e133"
+}
+
+.glyphicon-circle-arrow-down:before {
+    content: "\e134"
+}
+
+.glyphicon-globe:before {
+    content: "\e135"
+}
+
+.glyphicon-wrench:before {
+    content: "\e136"
+}
+
+.glyphicon-tasks:before {
+    content: "\e137"
+}
+
+.glyphicon-filter:before {
+    content: "\e138"
+}
+
+.glyphicon-briefcase:before {
+    content: "\e139"
+}
+
+.glyphicon-fullscreen:before {
+    content: "\e140"
+}
+
+.glyphicon-dashboard:before {
+    content: "\e141"
+}
+
+.glyphicon-paperclip:before {
+    content: "\e142"
+}
+
+.glyphicon-heart-empty:before {
+    content: "\e143"
+}
+
+.glyphicon-link:before {
+    content: "\e144"
+}
+
+.glyphicon-phone:before {
+    content: "\e145"
+}
+
+.glyphicon-pushpin:before {
+    content: "\e146"
+}
+
+.glyphicon-usd:before {
+    content: "\e148"
+}
+
+.glyphicon-gbp:before {
+    content: "\e149"
+}
+
+.glyphicon-sort:before {
+    content: "\e150"
+}
+
+.glyphicon-sort-by-alphabet:before {
+    content: "\e151"
+}
+
+.glyphicon-sort-by-alphabet-alt:before {
+    content: "\e152"
+}
+
+.glyphicon-sort-by-order:before {
+    content: "\e153"
+}
+
+.glyphicon-sort-by-order-alt:before {
+    content: "\e154"
+}
+
+.glyphicon-sort-by-attributes:before {
+    content: "\e155"
+}
+
+.glyphicon-sort-by-attributes-alt:before {
+    content: "\e156"
+}
+
+.glyphicon-unchecked:before {
+    content: "\e157"
+}
+
+.glyphicon-expand:before {
+    content: "\e158"
+}
+
+.glyphicon-collapse-down:before {
+    content: "\e159"
+}
+
+.glyphicon-collapse-up:before {
+    content: "\e160"
+}
+
+.glyphicon-log-in:before {
+    content: "\e161"
+}
+
+.glyphicon-flash:before {
+    content: "\e162"
+}
+
+.glyphicon-log-out:before {
+    content: "\e163"
+}
+
+.glyphicon-new-window:before {
+    content: "\e164"
+}
+
+.glyphicon-record:before {
+    content: "\e165"
+}
+
+.glyphicon-save:before {
+    content: "\e166"
+}
+
+.glyphicon-open:before {
+    content: "\e167"
+}
+
+.glyphicon-saved:before {
+    content: "\e168"
+}
+
+.glyphicon-import:before {
+    content: "\e169"
+}
+
+.glyphicon-export:before {
+    content: "\e170"
+}
+
+.glyphicon-send:before {
+    content: "\e171"
+}
+
+.glyphicon-floppy-disk:before {
+    content: "\e172"
+}
+
+.glyphicon-floppy-saved:before {
+    content: "\e173"
+}
+
+.glyphicon-floppy-remove:before {
+    content: "\e174"
+}
+
+.glyphicon-floppy-save:before {
+    content: "\e175"
+}
+
+.glyphicon-floppy-open:before {
+    content: "\e176"
+}
+
+.glyphicon-credit-card:before {
+    content: "\e177"
+}
+
+.glyphicon-transfer:before {
+    content: "\e178"
+}
+
+.glyphicon-cutlery:before {
+    content: "\e179"
+}
+
+.glyphicon-header:before {
+    content: "\e180"
+}
+
+.glyphicon-compressed:before {
+    content: "\e181"
+}
+
+.glyphicon-earphone:before {
+    content: "\e182"
+}
+
+.glyphicon-phone-alt:before {
+    content: "\e183"
+}
+
+.glyphicon-tower:before {
+    content: "\e184"
+}
+
+.glyphicon-stats:before {
+    content: "\e185"
+}
+
+.glyphicon-sd-video:before {
+    content: "\e186"
+}
+
+.glyphicon-hd-video:before {
+    content: "\e187"
+}
+
+.glyphicon-subtitles:before {
+    content: "\e188"
+}
+
+.glyphicon-sound-stereo:before {
+    content: "\e189"
+}
+
+.glyphicon-sound-dolby:before {
+    content: "\e190"
+}
+
+.glyphicon-sound-5-1:before {
+    content: "\e191"
+}
+
+.glyphicon-sound-6-1:before {
+    content: "\e192"
+}
+
+.glyphicon-sound-7-1:before {
+    content: "\e193"
+}
+
+.glyphicon-copyright-mark:before {
+    content: "\e194"
+}
+
+.glyphicon-registration-mark:before {
+    content: "\e195"
+}
+
+.glyphicon-cloud-download:before {
+    content: "\e197"
+}
+
+.glyphicon-cloud-upload:before {
+    content: "\e198"
+}
+
+.glyphicon-tree-conifer:before {
+    content: "\e199"
+}
+
+.glyphicon-tree-deciduous:before {
+    content: "\e200"
+}
+
+.glyphicon-cd:before {
+    content: "\e201"
+}
+
+.glyphicon-save-file:before {
+    content: "\e202"
+}
+
+.glyphicon-open-file:before {
+    content: "\e203"
+}
+
+.glyphicon-level-up:before {
+    content: "\e204"
+}
+
+.glyphicon-copy:before {
+    content: "\e205"
+}
+
+.glyphicon-paste:before {
+    content: "\e206"
+}
+
+.glyphicon-alert:before {
+    content: "\e209"
+}
+
+.glyphicon-equalizer:before {
+    content: "\e210"
+}
+
+.glyphicon-king:before {
+    content: "\e211"
+}
+
+.glyphicon-queen:before {
+    content: "\e212"
+}
+
+.glyphicon-pawn:before {
+    content: "\e213"
+}
+
+.glyphicon-bishop:before {
+    content: "\e214"
+}
+
+.glyphicon-knight:before {
+    content: "\e215"
+}
+
+.glyphicon-baby-formula:before {
+    content: "\e216"
+}
+
+.glyphicon-tent:before {
+    content: "\26fa"
+}
+
+.glyphicon-blackboard:before {
+    content: "\e218"
+}
+
+.glyphicon-bed:before {
+    content: "\e219"
+}
+
+.glyphicon-apple:before {
+    content: "\f8ff"
+}
+
+.glyphicon-erase:before {
+    content: "\e221"
+}
+
+.glyphicon-hourglass:before {
+    content: "\231b"
+}
+
+.glyphicon-lamp:before {
+    content: "\e223"
+}
+
+.glyphicon-duplicate:before {
+    content: "\e224"
+}
+
+.glyphicon-piggy-bank:before {
+    content: "\e225"
+}
+
+.glyphicon-scissors:before {
+    content: "\e226"
+}
+
+.glyphicon-bitcoin:before {
+    content: "\e227"
+}
+
+.glyphicon-yen:before {
+    content: "\00a5"
+}
+
+.glyphicon-ruble:before {
+    content: "\20bd"
+}
+
+.glyphicon-scale:before {
+    content: "\e230"
+}
+
+.glyphicon-ice-lolly:before {
+    content: "\e231"
+}
+
+.glyphicon-ice-lolly-tasted:before {
+    content: "\e232"
+}
+
+.glyphicon-education:before {
+    content: "\e233"
+}
+
+.glyphicon-option-horizontal:before {
+    content: "\e234"
+}
+
+.glyphicon-option-vertical:before {
+    content: "\e235"
+}
+
+.glyphicon-menu-hamburger:before {
+    content: "\e236"
+}
+
+.glyphicon-modal-window:before {
+    content: "\e237"
+}
+
+.glyphicon-oil:before {
+    content: "\e238"
+}
+
+.glyphicon-grain:before {
+    content: "\e239"
+}
+
+.glyphicon-sunglasses:before {
+    content: "\e240"
+}
+
+.glyphicon-text-size:before {
+    content: "\e241"
+}
+
+.glyphicon-text-color:before {
+    content: "\e242"
+}
+
+.glyphicon-text-background:before {
+    content: "\e243"
+}
+
+.glyphicon-object-align-top:before {
+    content: "\e244"
+}
+
+.glyphicon-object-align-bottom:before {
+    content: "\e245"
+}
+
+.glyphicon-object-align-horizontal:before {
+    content: "\e246"
+}
+
+.glyphicon-object-align-left:before {
+    content: "\e247"
+}
+
+.glyphicon-object-align-vertical:before {
+    content: "\e248"
+}
+
+.glyphicon-object-align-right:before {
+    content: "\e249"
+}
+
+.glyphicon-triangle-right:before {
+    content: "\e250"
+}
+
+.glyphicon-triangle-left:before {
+    content: "\e251"
+}
+
+.glyphicon-triangle-bottom:before {
+    content: "\e252"
+}
+
+.glyphicon-triangle-top:before {
+    content: "\e253"
+}
+
+.glyphicon-console:before {
+    content: "\e254"
+}
+
+.glyphicon-superscript:before {
+    content: "\e255"
+}
+
+.glyphicon-subscript:before {
+    content: "\e256"
+}
+
+.glyphicon-menu-left:before {
+    content: "\e257"
+}
+
+.glyphicon-menu-right:before {
+    content: "\e258"
+}
+
+.glyphicon-menu-down:before {
+    content: "\e259"
+}
+
+.glyphicon-menu-up:before {
+    content: "\e260"
+}
+
+* {
+    -webkit-box-sizing: border-box;
+    -moz-box-sizing: border-box;
+    box-sizing: border-box
+}
+
+:after,
+:before {
+    -webkit-box-sizing: border-box;
+    -moz-box-sizing: border-box;
+    box-sizing: border-box
+}
+
+html {
+    font-size: 10px;
+    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
+}
+
+body {
+    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+    font-size: 14px;
+    line-height: 1.42857143;
+    color: #333;
+    background-color: #fff
+}
+
+button,
+input,
+select,
+textarea {
+    font-family: inherit;
+    font-size: inherit;
+    line-height: inherit
+}
+
+a {
+    color: #337ab7;
+    text-decoration: none
+}
+
+a:focus,
+a:hover {
+    color: #23527c;
+    text-decoration: underline
+}
+
+a:focus {
+    outline: thin dotted;
+    outline: 5px auto -webkit-focus-ring-color;
+    outline-offset: -2px
+}
+
+figure {
+    margin: 0
+}
+
+img {
+    vertical-align: middle
+}
+
+.carousel-inner>.item>a>img,
+.carousel-inner>.item>img,
+.img-responsive,
+.thumbnail a>img,
+.thumbnail>img {
+    display: block;
+    max-width: 100%;
+    height: auto
+}
+
+.img-rounded {
+    border-radius: 6px
+}
+
+.img-thumbnail {
+    display: inline-block;
+    max-width: 100%;
+    height: auto;
+    padding: 4px;
+    line-height: 1.42857143;
+    background-color: #fff;
+    border: 1px solid #ddd;
+    border-radius: 4px;
+    -webkit-transition: all .2s ease-in-out;
+    -o-transition: all .2s ease-in-out;
+    transition: all .2s ease-in-out
+}
+
+.img-circle {
+    border-radius: 50%
+}
+
+hr {
+    margin-top: 20px;
+    margin-bottom: 20px;
+    border: 0;
+    border-top: 1px solid #eee
+}
+
+.sr-only {
+    position: absolute;
+    width: 1px;
+    height: 1px;
+    padding: 0;
+    margin: -1px;
+    overflow: hidden;
+    clip: rect(0, 0, 0, 0);
+    border: 0
+}
+
+.sr-only-focusable:active,
+.sr-only-focusable:focus {
+    position: static;
+    width: auto;
+    height: auto;
+    margin: 0;
+    overflow: visible;
+    clip: auto
+}
+
+.h1,
+.h2,
+.h3,
+.h4,
+.h5,
+.h6,
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+    font-family: inherit;
+    font-weight: 500;
+    line-height: 1.1;
+    color: inherit
+}
+
+.h1 .small,
+.h1 small,
+.h2 .small,
+.h2 small,
+.h3 .small,
+.h3 small,
+.h4 .small,
+.h4 small,
+.h5 .small,
+.h5 small,
+.h6 .small,
+.h6 small,
+h1 .small,
+h1 small,
+h2 .small,
+h2 small,
+h3 .small,
+h3 small,
+h4 .small,
+h4 small,
+h5 .small,
+h5 small,
+h6 .small,
+h6 small {
+    font-weight: 400;
+    line-height: 1;
+    color: #777
+}
+
+.h1,
+.h2,
+.h3,
+h1,
+h2,
+h3 {
+    margin-top: 20px;
+    margin-bottom: 10px
+}
+
+.h1 .small,
+.h1 small,
+.h2 .small,
+.h2 small,
+.h3 .small,
+.h3 small,
+h1 .small,
+h1 small,
+h2 .small,
+h2 small,
+h3 .small,
+h3 small {
+    font-size: 65%
+}
+
+.h4,
+.h5,
+.h6,
+h4,
+h5,
+h6 {
+    margin-top: 10px;
+    margin-bottom: 10px
+}
+
+.h4 .small,
+.h4 small,
+.h5 .small,
+.h5 small,
+.h6 .small,
+.h6 small,
+h4 .small,
+h4 small,
+h5 .small,
+h5 small,
+h6 .small,
+h6 small {
+    font-size: 75%
+}
+
+.h1,
+h1 {
+    font-size: 36px
+}
+
+.h2,
+h2 {
+    font-size: 30px
+}
+
+.h3,
+h3 {
+    font-size: 24px
+}
+
+.h4,
+h4 {
+    font-size: 18px
+}
+
+.h5,
+h5 {
+    font-size: 14px
+}
+
+.h6,
+h6 {
+    font-size: 12px
+}
+
+p {
+    margin: 0 0 10px
+}
+
+.lead {
+    margin-bottom: 20px;
+    font-size: 16px;
+    font-weight: 300;
+    line-height: 1.4
+}
+
+@media (min-width:768px) {
+    .lead {
+        font-size: 21px
+    }
+}
+
+.small,
+small {
+    font-size: 85%
+}
+
+.mark,
+mark {
+    padding: .2em;
+    background-color: #fcf8e3
+}
+
+.text-left {
+    text-align: left
+}
+
+.text-right {
+    text-align: right
+}
+
+.text-center {
+    text-align: center
+}
+
+.text-justify {
+    text-align: justify
+}
+
+.text-nowrap {
+    white-space: nowrap
+}
+
+.text-lowercase {
+    text-transform: lowercase
+}
+
+.text-uppercase {
+    text-transform: uppercase
+}
+
+.text-capitalize {
+    text-transform: capitalize
+}
+
+.text-muted {
+    color: #777
+}
+
+.text-primary {
+    color: #337ab7
+}
+
+a.text-primary:hover {
+    color: #286090
+}
+
+.text-success {
+    color: #3c763d
+}
+
+a.text-success:hover {
+    color: #2b542c
+}
+
+.text-info {
+    color: #31708f
+}
+
+a.text-info:hover {
+    color: #245269
+}
+
+.text-warning {
+    color: #8a6d3b
+}
+
+a.text-warning:hover {
+    color: #66512c
+}
+
+.text-danger {
+    color: #a94442
+}
+
+a.text-danger:hover {
+    color: #843534
+}
+
+.bg-primary {
+    color: #fff;
+    background-color: #337ab7
+}
+
+a.bg-primary:hover {
+    background-color: #286090
+}
+
+.bg-success {
+    background-color: #dff0d8
+}
+
+a.bg-success:hover {
+    background-color: #c1e2b3
+}
+
+.bg-info {
+    background-color: #d9edf7
+}
+
+a.bg-info:hover {
+    background-color: #afd9ee
+}
+
+.bg-warning {
+    background-color: #fcf8e3
+}
+
+a.bg-warning:hover {
+    background-color: #f7ecb5
+}
+
+.bg-danger {
+    background-color: #f2dede
+}
+
+a.bg-danger:hover {
+    background-color: #e4b9b9
+}
+
+.page-header {
+    padding-bottom: 9px;
+    margin: 40px 0 20px;
+    border-bottom: 1px solid #eee
+}
+
+ol,
+ul {
+    margin-top: 0;
+    margin-bottom: 10px
+}
+
+ol ol,
+ol ul,
+ul ol,
+ul ul {
+    margin-bottom: 0
+}
+
+.list-unstyled {
+    padding-left: 0;
+    list-style: none
+}
+
+.list-inline {
+    padding-left: 0;
+    margin-left: -5px;
+    list-style: none
+}
+
+.list-inline>li {
+    display: inline-block;
+    padding-right: 5px;
+    padding-left: 5px
+}
+
+dl {
+    margin-top: 0;
+    margin-bottom: 20px
+}
+
+dd,
+dt {
+    line-height: 1.42857143
+}
+
+dt {
+    font-weight: 700
+}
+
+dd {
+    margin-left: 0
+}
+
+@media (min-width:768px) {
+    .dl-horizontal dt {
+        float: left;
+        width: 160px;
+        overflow: hidden;
+        clear: left;
+        text-align: right;
+        text-overflow: ellipsis;
+        white-space: nowrap
+    }
+    .dl-horizontal dd {
+        margin-left: 180px
+    }
+}
+
+abbr[data-original-title],
+abbr[title] {
+    cursor: help;
+    border-bottom: 1px dotted #777
+}
+
+.initialism {
+    font-size: 90%;
+    text-transform: uppercase
+}
+
+blockquote {
+    padding: 10px 20px;
+    margin: 0 0 20px;
+    font-size: 17.5px;
+    border-left: 5px solid #eee
+}
+
+blockquote ol:last-child,
+blockquote p:last-child,
+blockquote ul:last-child {
+    margin-bottom: 0
+}
+
+blockquote .small,
+blockquote footer,
+blockquote small {
+    display: block;
+    font-size: 80%;
+    line-height: 1.42857143;
+    color: #777
+}
+
+blockquote .small:before,
+blockquote footer:before,
+blockquote small:before {
+    content: '\2014 \00A0'
+}
+
+.blockquote-reverse,
+blockquote.pull-right {
+    padding-right: 15px;
+    padding-left: 0;
+    text-align: right;
+    border-right: 5px solid #eee;
+    border-left: 0
+}
+
+.blockquote-reverse .small:before,
+.blockquote-reverse footer:before,
+.blockquote-reverse small:before,
+blockquote.pull-right .small:before,
+blockquote.pull-right footer:before,
+blockquote.pull-right small:before {
+    content: ''
+}
+
+.blockquote-reverse .small:after,
+.blockquote-reverse footer:after,
+.blockquote-reverse small:after,
+blockquote.pull-right .small:after,
+blockquote.pull-right footer:after,
+blockquote.pull-right small:after {
+    content: '\00A0 \2014'
+}
+
+address {
+    margin-bottom: 20px;
+    font-style: normal;
+    line-height: 1.42857143
+}
+
+code,
+kbd,
+pre,
+samp {
+    font-family: Menlo, Monaco, Consolas, "Courier New", monospace
+}
+
+code {
+    padding: 2px 4px;
+    font-size: 90%;
+    color: #c7254e;
+    background-color: #f9f2f4;
+    border-radius: 4px
+}
+
+kbd {
+    padding: 2px 4px;
+    font-size: 90%;
+    color: #fff;
+    background-color: #333;
+    border-radius: 3px;
+}
+
+kbd kbd {
+    padding: 0;
+    font-size: 100%;
+    font-weight: 700;
+}
+
+pre {
+    display: block;
+    padding: 9.5px;
+    margin: 0 0 10px;
+    font-size: 13px;
+    line-height: 1.42857143;
+    color: #333;
+    word-break: break-all;
+    word-wrap: break-word;
+    background-color: #f5f5f5;
+    border: 1px solid #ccc;
+    border-radius: 4px
+}
+
+pre code {
+    padding: 0;
+    font-size: inherit;
+    color: inherit;
+    white-space: pre-wrap;
+    background-color: transparent;
+    border-radius: 0
+}
+
+.pre-scrollable {
+    max-height: 340px;
+    overflow-y: scroll
+}
+
+.container {
+    padding-right: 15px;
+    padding-left: 15px;
+    margin-right: auto;
+    margin-left: auto
+}
+
+@media (min-width:768px) {
+    .container {
+        width: 750px
+    }
+}
+
+@media (min-width:992px) {
+    .container {
+        width: 970px
+    }
+}
+
+@media (min-width:1200px) {
+    .container {
+        width: 1170px
+    }
+}
+
+.container-fluid {
+    padding-right: 15px;
+    padding-left: 15px;
+    margin-right: auto;
+    margin-left: auto
+}
+
+.row {
+    margin-right: -15px;
+    margin-left: -15px
+}
+
+.col-lg-1,
+.col-lg-10,
+.col-lg-11,
+.col-lg-12,
+.col-lg-2,
+.col-lg-3,
+.col-lg-4,
+.col-lg-5,
+.col-lg-6,
+.col-lg-7,
+.col-lg-8,
+.col-lg-9,
+.col-md-1,
+.col-md-10,
+.col-md-11,
+.col-md-12,
+.col-md-2,
+.col-md-3,
+.col-md-4,
+.col-md-5,
+.col-md-6,
+.col-md-7,
+.col-md-8,
+.col-md-9,
+.col-sm-1,
+.col-sm-10,
+.col-sm-11,
+.col-sm-12,
+.col-sm-2,
+.col-sm-3,
+.col-sm-4,
+.col-sm-5,
+.col-sm-6,
+.col-sm-7,
+.col-sm-8,
+.col-sm-9,
+.col-xs-1,
+.col-xs-10,
+.col-xs-11,
+.col-xs-12,
+.col-xs-2,
+.col-xs-3,
+.col-xs-4,
+.col-xs-5,
+.col-xs-6,
+.col-xs-7,
+.col-xs-8,
+.col-xs-9 {
+    position: relative;
+    min-height: 1px;
+    padding-right: 15px;
+    padding-left: 15px
+}
+
+.col-xs-1,
+.col-xs-10,
+.col-xs-11,
+.col-xs-12,
+.col-xs-2,
+.col-xs-3,
+.col-xs-4,
+.col-xs-5,
+.col-xs-6,
+.col-xs-7,
+.col-xs-8,
+.col-xs-9 {
+    float: left
+}
+
+.col-xs-12 {
+    width: 100%
+}
+
+.col-xs-11 {
+    width: 91.66666667%
+}
+
+.col-xs-10 {
+    width: 83.33333333%
+}
+
+.col-xs-9 {
+    width: 75%
+}
+
+.col-xs-8 {
+    width: 66.66666667%
+}
+
+.col-xs-7 {
+    width: 58.33333333%
+}
+
+.col-xs-6 {
+    width: 50%
+}
+
+.col-xs-5 {
+    width: 41.66666667%
+}
+
+.col-xs-4 {
+    width: 33.33333333%
+}
+
+.col-xs-3 {
+    width: 25%
+}
+
+.col-xs-2 {
+    width: 16.66666667%
+}
+
+.col-xs-1 {
+    width: 8.33333333%
+}
+
+.col-xs-pull-12 {
+    right: 100%
+}
+
+.col-xs-pull-11 {
+    right: 91.66666667%
+}
+
+.col-xs-pull-10 {
+    right: 83.33333333%
+}
+
+.col-xs-pull-9 {
+    right: 75%
+}
+
+.col-xs-pull-8 {
+    right: 66.66666667%
+}
+
+.col-xs-pull-7 {
+    right: 58.33333333%
+}
+
+.col-xs-pull-6 {
+    right: 50%
+}
+
+.col-xs-pull-5 {
+    right: 41.66666667%
+}
+
+.col-xs-pull-4 {
+    right: 33.33333333%
+}
+
+.col-xs-pull-3 {
+    right: 25%
+}
+
+.col-xs-pull-2 {
+    right: 16.66666667%
+}
+
+.col-xs-pull-1 {
+    right: 8.33333333%
+}
+
+.col-xs-pull-0 {
+    right: auto
+}
+
+.col-xs-push-12 {
+    left: 100%
+}
+
+.col-xs-push-11 {
+    left: 91.66666667%
+}
+
+.col-xs-push-10 {
+    left: 83.33333333%
+}
+
+.col-xs-push-9 {
+    left: 75%
+}
+
+.col-xs-push-8 {
+    left: 66.66666667%
+}
+
+.col-xs-push-7 {
+    left: 58.33333333%
+}
+
+.col-xs-push-6 {
+    left: 50%
+}
+
+.col-xs-push-5 {
+    left: 41.66666667%
+}
+
+.col-xs-push-4 {
+    left: 33.33333333%
+}
+
+.col-xs-push-3 {
+    left: 25%
+}
+
+.col-xs-push-2 {
+    left: 16.66666667%
+}
+
+.col-xs-push-1 {
+    left: 8.33333333%
+}
+
+.col-xs-push-0 {
+    left: auto
+}
+
+.col-xs-offset-12 {
+    margin-left: 100%
+}
+
+.col-xs-offset-11 {
+    margin-left: 91.66666667%
+}
+
+.col-xs-offset-10 {
+    margin-left: 83.33333333%
+}
+
+.col-xs-offset-9 {
+    margin-left: 75%
+}
+
+.col-xs-offset-8 {
+    margin-left: 66.66666667%
+}
+
+.col-xs-offset-7 {
+    margin-left: 58.33333333%
+}
+
+.col-xs-offset-6 {
+    margin-left: 50%
+}
+
+.col-xs-offset-5 {
+    margin-left: 41.66666667%
+}
+
+.col-xs-offset-4 {
+    margin-left: 33.33333333%
+}
+
+.col-xs-offset-3 {
+    margin-left: 25%
+}
+
+.col-xs-offset-2 {
+    margin-left: 16.66666667%
+}
+
+.col-xs-offset-1 {
+    margin-left: 8.33333333%
+}
+
+.col-xs-offset-0 {
+    margin-left: 0
+}
+
+@media (min-width:768px) {
+    .col-sm-1,
+    .col-sm-10,
+    .col-sm-11,
+    .col-sm-12,
+    .col-sm-2,
+    .col-sm-3,
+    .col-sm-4,
+    .col-sm-5,
+    .col-sm-6,
+    .col-sm-7,
+    .col-sm-8,
+    .col-sm-9 {
+        float: left
+    }
+    .col-sm-12 {
+        width: 100%
+    }
+    .col-sm-11 {
+        width: 91.66666667%
+    }
+    .col-sm-10 {
+        width: 83.33333333%
+    }
+    .col-sm-9 {
+        width: 75%
+    }
+    .col-sm-8 {
+        width: 66.66666667%
+    }
+    .col-sm-7 {
+        width: 58.33333333%
+    }
+    .col-sm-6 {
+        width: 50%
+    }
+    .col-sm-5 {
+        width: 41.66666667%
+    }
+    .col-sm-4 {
+        width: 33.33333333%
+    }
+    .col-sm-3 {
+        width: 25%
+    }
+    .col-sm-2 {
+        width: 16.66666667%
+    }
+    .col-sm-1 {
+        width: 8.33333333%
+    }
+    .col-sm-pull-12 {
+        right: 100%
+    }
+    .col-sm-pull-11 {
+        right: 91.66666667%
+    }
+    .col-sm-pull-10 {
+        right: 83.33333333%
+    }
+    .col-sm-pull-9 {
+        right: 75%
+    }
+    .col-sm-pull-8 {
+        right: 66.66666667%
+    }
+    .col-sm-pull-7 {
+        right: 58.33333333%
+    }
+    .col-sm-pull-6 {
+        right: 50%
+    }
+    .col-sm-pull-5 {
+        right: 41.66666667%
+    }
+    .col-sm-pull-4 {
+        right: 33.33333333%
+    }
+    .col-sm-pull-3 {
+        right: 25%
+    }
+    .col-sm-pull-2 {
+        right: 16.66666667%
+    }
+    .col-sm-pull-1 {
+        right: 8.33333333%
+    }
+    .col-sm-pull-0 {
+        right: auto
+    }
+    .col-sm-push-12 {
+        left: 100%
+    }
+    .col-sm-push-11 {
+        left: 91.66666667%
+    }
+    .col-sm-push-10 {
+        left: 83.33333333%
+    }
+    .col-sm-push-9 {
+        left: 75%
+    }
+    .col-sm-push-8 {
+        left: 66.66666667%
+    }
+    .col-sm-push-7 {
+        left: 58.33333333%
+    }
+    .col-sm-push-6 {
+        left: 50%
+    }
+    .col-sm-push-5 {
+        left: 41.66666667%
+    }
+    .col-sm-push-4 {
+        left: 33.33333333%
+    }
+    .col-sm-push-3 {
+        left: 25%
+    }
+    .col-sm-push-2 {
+        left: 16.66666667%
+    }
+    .col-sm-push-1 {
+        left: 8.33333333%
+    }
+    .col-sm-push-0 {
+        left: auto
+    }
+    .col-sm-offset-12 {
+        margin-left: 100%
+    }
+    .col-sm-offset-11 {
+        margin-left: 91.66666667%
+    }
+    .col-sm-offset-10 {
+        margin-left: 83.33333333%
+    }
+    .col-sm-offset-9 {
+        margin-left: 75%
+    }
+    .col-sm-offset-8 {
+        margin-left: 66.66666667%
+    }
+    .col-sm-offset-7 {
+        margin-left: 58.33333333%
+    }
+    .col-sm-offset-6 {
+        margin-left: 50%
+    }
+    .col-sm-offset-5 {
+        margin-left: 41.66666667%
+    }
+    .col-sm-offset-4 {
+        margin-left: 33.33333333%
+    }
+    .col-sm-offset-3 {
+        margin-left: 25%
+    }
+    .col-sm-offset-2 {
+        margin-left: 16.66666667%
+    }
+    .col-sm-offset-1 {
+        margin-left: 8.33333333%
+    }
+    .col-sm-offset-0 {
+        margin-left: 0
+    }
+}
+
+@media (min-width:992px) {
+    .col-md-1,
+    .col-md-10,
+    .col-md-11,
+    .col-md-12,
+    .col-md-2,
+    .col-md-3,
+    .col-md-4,
+    .col-md-5,
+    .col-md-6,
+    .col-md-7,
+    .col-md-8,
+    .col-md-9 {
+        float: left
+    }
+    .col-md-12 {
+        width: 100%
+    }
+    .col-md-11 {
+        width: 91.66666667%
+    }
+    .col-md-10 {
+        width: 83.33333333%
+    }
+    .col-md-9 {
+        width: 75%
+    }
+    .col-md-8 {
+        width: 66.66666667%
+    }
+    .col-md-7 {
+        width: 58.33333333%
+    }
+    .col-md-6 {
+        width: 50%
+    }
+    .col-md-5 {
+        width: 41.66666667%
+    }
+    .col-md-4 {
+        width: 33.33333333%
+    }
+    .col-md-3 {
+        width: 25%
+    }
+    .col-md-2 {
+        width: 16.66666667%
+    }
+    .col-md-1 {
+        width: 8.33333333%
+    }
+    .col-md-pull-12 {
+        right: 100%
+    }
+    .col-md-pull-11 {
+        right: 91.66666667%
+    }
+    .col-md-pull-10 {
+        right: 83.33333333%
+    }
+    .col-md-pull-9 {
+        right: 75%
+    }
+    .col-md-pull-8 {
+        right: 66.66666667%
+    }
+    .col-md-pull-7 {
+        right: 58.33333333%
+    }
+    .col-md-pull-6 {
+        right: 50%
+    }
+    .col-md-pull-5 {
+        right: 41.66666667%
+    }
+    .col-md-pull-4 {
+        right: 33.33333333%
+    }
+    .col-md-pull-3 {
+        right: 25%
+    }
+    .col-md-pull-2 {
+        right: 16.66666667%
+    }
+    .col-md-pull-1 {
+        right: 8.33333333%
+    }
+    .col-md-pull-0 {
+        right: auto
+    }
+    .col-md-push-12 {
+        left: 100%
+    }
+    .col-md-push-11 {
+        left: 91.66666667%
+    }
+    .col-md-push-10 {
+        left: 83.33333333%
+    }
+    .col-md-push-9 {
+        left: 75%
+    }
+    .col-md-push-8 {
+        left: 66.66666667%
+    }
+    .col-md-push-7 {
+        left: 58.33333333%
+    }
+    .col-md-push-6 {
+        left: 50%
+    }
+    .col-md-push-5 {
+        left: 41.66666667%
+    }
+    .col-md-push-4 {
+        left: 33.33333333%
+    }
+    .col-md-push-3 {
+        left: 25%
+    }
+    .col-md-push-2 {
+        left: 16.66666667%
+    }
+    .col-md-push-1 {
+        left: 8.33333333%
+    }
+    .col-md-push-0 {
+        left: auto
+    }
+    .col-md-offset-12 {
+        margin-left: 100%
+    }
+    .col-md-offset-11 {
+        margin-left: 91.66666667%
+    }
+    .col-md-offset-10 {
+        margin-left: 83.33333333%
+    }
+    .col-md-offset-9 {
+        margin-left: 75%
+    }
+    .col-md-offset-8 {
+        margin-left: 66.66666667%
+    }
+    .col-md-offset-7 {
+        margin-left: 58.33333333%
+    }
+    .col-md-offset-6 {
+        margin-left: 50%
+    }
+    .col-md-offset-5 {
+        margin-left: 41.66666667%
+    }
+    .col-md-offset-4 {
+        margin-left: 33.33333333%
+    }
+    .col-md-offset-3 {
+        margin-left: 25%
+    }
+    .col-md-offset-2 {
+        margin-left: 16.66666667%
+    }
+    .col-md-offset-1 {
+        margin-left: 8.33333333%
+    }
+    .col-md-offset-0 {
+        margin-left: 0
+    }
+}
+
+@media (min-width:1200px) {
+    .col-lg-1,
+    .col-lg-10,
+    .col-lg-11,
+    .col-lg-12,
+    .col-lg-2,
+    .col-lg-3,
+    .col-lg-4,
+    .col-lg-5,
+    .col-lg-6,
+    .col-lg-7,
+    .col-lg-8,
+    .col-lg-9 {
+        float: left
+    }
+    .col-lg-12 {
+        width: 100%
+    }
+    .col-lg-11 {
+        width: 91.66666667%
+    }
+    .col-lg-10 {
+        width: 83.33333333%
+    }
+    .col-lg-9 {
+        width: 75%
+    }
+    .col-lg-8 {
+        width: 66.66666667%
+    }
+    .col-lg-7 {
+        width: 58.33333333%
+    }
+    .col-lg-6 {
+        width: 50%
+    }
+    .col-lg-5 {
+        width: 41.66666667%
+    }
+    .col-lg-4 {
+        width: 33.33333333%
+    }
+    .col-lg-3 {
+        width: 25%
+    }
+    .col-lg-2 {
+        width: 16.66666667%
+    }
+    .col-lg-1 {
+        width: 8.33333333%
+    }
+    .col-lg-pull-12 {
+        right: 100%
+    }
+    .col-lg-pull-11 {
+        right: 91.66666667%
+    }
+    .col-lg-pull-10 {
+        right: 83.33333333%
+    }
+    .col-lg-pull-9 {
+        right: 75%
+    }
+    .col-lg-pull-8 {
+        right: 66.66666667%
+    }
+    .col-lg-pull-7 {
+        right: 58.33333333%
+    }
+    .col-lg-pull-6 {
+        right: 50%
+    }
+    .col-lg-pull-5 {
+        right: 41.66666667%
+    }
+    .col-lg-pull-4 {
+        right: 33.33333333%
+    }
+    .col-lg-pull-3 {
+        right: 25%
+    }
+    .col-lg-pull-2 {
+        right: 16.66666667%
+    }
+    .col-lg-pull-1 {
+        right: 8.33333333%
+    }
+    .col-lg-pull-0 {
+        right: auto
+    }
+    .col-lg-push-12 {
+        left: 100%
+    }
+    .col-lg-push-11 {
+        left: 91.66666667%
+    }
+    .col-lg-push-10 {
+        left: 83.33333333%
+    }
+    .col-lg-push-9 {
+        left: 75%
+    }
+    .col-lg-push-8 {
+        left: 66.66666667%
+    }
+    .col-lg-push-7 {
+        left: 58.33333333%
+    }
+    .col-lg-push-6 {
+        left: 50%
+    }
+    .col-lg-push-5 {
+        left: 41.66666667%
+    }
+    .col-lg-push-4 {
+        left: 33.33333333%
+    }
+    .col-lg-push-3 {
+        left: 25%
+    }
+    .col-lg-push-2 {
+        left: 16.66666667%
+    }
+    .col-lg-push-1 {
+        left: 8.33333333%
+    }
+    .col-lg-push-0 {
+        left: auto
+    }
+    .col-lg-offset-12 {
+        margin-left: 100%
+    }
+    .col-lg-offset-11 {
+        margin-left: 91.66666667%
+    }
+    .col-lg-offset-10 {
+        margin-left: 83.33333333%
+    }
+    .col-lg-offset-9 {
+        margin-left: 75%
+    }
+    .col-lg-offset-8 {
+        margin-left: 66.66666667%
+    }
+    .col-lg-offset-7 {
+        margin-left: 58.33333333%
+    }
+    .col-lg-offset-6 {
+        margin-left: 50%
+    }
+    .col-lg-offset-5 {
+        margin-left: 41.66666667%
+    }
+    .col-lg-offset-4 {
+        margin-left: 33.33333333%
+    }
+    .col-lg-offset-3 {
+        margin-left: 25%
+    }
+    .col-lg-offset-2 {
+        margin-left: 16.66666667%
+    }
+    .col-lg-offset-1 {
+        margin-left: 8.33333333%
+    }
+    .col-lg-offset-0 {
+        margin-left: 0
+    }
+}
+
+table {
+    background-color: transparent
+}
+
+caption {
+    padding-top: 8px;
+    padding-bottom: 8px;
+    color: #777;
+    text-align: left
+}
+
+th {
+    text-align: left
+}
+
+.table {
+    width: 100%;
+    max-width: 100%;
+    margin-bottom: 20px
+}
+
+.table>tbody>tr>td,
+.table>tbody>tr>th,
+.table>tfoot>tr>td,
+.table>tfoot>tr>th,
+.table>thead>tr>td,
+.table>thead>tr>th {
+    padding: 8px;
+    line-height: 1.42857143;
+    vertical-align: top;
+    border-top: 1px solid #ddd
+}
+
+.table>thead>tr>th {
+    vertical-align: bottom;
+    border-bottom: 2px solid #ddd
+}
+
+.table>caption+thead>tr:first-child>td,
+.table>caption+thead>tr:first-child>th,
+.table>colgroup+thead>tr:first-child>td,
+.table>colgroup+thead>tr:first-child>th,
+.table>thead:first-child>tr:first-child>td,
+.table>thead:first-child>tr:first-child>th {
+    border-top: 0
+}
+
+.table>tbody+tbody {
+    border-top: 2px solid #ddd
+}
+
+.table .table {
+    background-color: #fff
+}
+
+.table-condensed>tbody>tr>td,
+.table-condensed>tbody>tr>th,
+.table-condensed>tfoot>tr>td,
+.table-condensed>tfoot>tr>th,
+.table-condensed>thead>tr>td,
+.table-condensed>thead>tr>th {
+    padding: 5px
+}
+
+.table-bordered {
+    border: 1px solid #ddd
+}
+
+.table-bordered>tbody>tr>td,
+.table-bordered>tbody>tr>th,
+.table-bordered>tfoot>tr>td,
+.table-bordered>tfoot>tr>th,
+.table-bordered>thead>tr>td,
+.table-bordered>thead>tr>th {
+    border: 1px solid #ddd
+}
+
+.table-bordered>thead>tr>td,
+.table-bordered>thead>tr>th {
+    border-bottom-width: 2px
+}
+
+.table-striped>tbody>tr:nth-of-type(odd) {
+    background-color: #f9f9f9
+}
+
+.table-hover>tbody>tr:hover {
+    background-color: #f5f5f5
+}
+
+table col[class*=col-] {
+    position: static;
+    display: table-column;
+    float: none
+}
+
+table td[class*=col-],
+table th[class*=col-] {
+    position: static;
+    display: table-cell;
+    float: none
+}
+
+.table>tbody>tr.active>td,
+.table>tbody>tr.active>th,
+.table>tbody>tr>td.active,
+.table>tbody>tr>th.active,
+.table>tfoot>tr.active>td,
+.table>tfoot>tr.active>th,
+.table>tfoot>tr>td.active,
+.table>tfoot>tr>th.active,
+.table>thead>tr.active>td,
+.table>thead>tr.active>th,
+.table>thead>tr>td.active,
+.table>thead>tr>th.active {
+    background-color: #f5f5f5
+}
+
+.table-hover>tbody>tr.active:hover>td,
+.table-hover>tbody>tr.active:hover>th,
+.table-hover>tbody>tr:hover>.active,
+.table-hover>tbody>tr>td.active:hover,
+.table-hover>tbody>tr>th.active:hover {
+    background-color: #e8e8e8
+}
+
+.table>tbody>tr.success>td,
+.table>tbody>tr.success>th,
+.table>tbody>tr>td.success,
+.table>tbody>tr>th.success,
+.table>tfoot>tr.success>td,
+.table>tfoot>tr.success>th,
+.table>tfoot>tr>td.success,
+.table>tfoot>tr>th.success,
+.table>thead>tr.success>td,
+.table>thead>tr.success>th,
+.table>thead>tr>td.success,
+.table>thead>tr>th.success {
+    background-color: #dff0d8
+}
+
+.table-hover>tbody>tr.success:hover>td,
+.table-hover>tbody>tr.success:hover>th,
+.table-hover>tbody>tr:hover>.success,
+.table-hover>tbody>tr>td.success:hover,
+.table-hover>tbody>tr>th.success:hover {
+    background-color: #d0e9c6
+}
+
+.table>tbody>tr.info>td,
+.table>tbody>tr.info>th,
+.table>tbody>tr>td.info,
+.table>tbody>tr>th.info,
+.table>tfoot>tr.info>td,
+.table>tfoot>tr.info>th,
+.table>tfoot>tr>td.info,
+.table>tfoot>tr>th.info,
+.table>thead>tr.info>td,
+.table>thead>tr.info>th,
+.table>thead>tr>td.info,
+.table>thead>tr>th.info {
+    background-color: #d9edf7
+}
+
+.table-hover>tbody>tr.info:hover>td,
+.table-hover>tbody>tr.info:hover>th,
+.table-hover>tbody>tr:hover>.info,
+.table-hover>tbody>tr>td.info:hover,
+.table-hover>tbody>tr>th.info:hover {
+    background-color: #c4e3f3
+}
+
+.table>tbody>tr.warning>td,
+.table>tbody>tr.warning>th,
+.table>tbody>tr>td.warning,
+.table>tbody>tr>th.warning,
+.table>tfoot>tr.warning>td,
+.table>tfoot>tr.warning>th,
+.table>tfoot>tr>td.warning,
+.table>tfoot>tr>th.warning,
+.table>thead>tr.warning>td,
+.table>thead>tr.warning>th,
+.table>thead>tr>td.warning,
+.table>thead>tr>th.warning {
+    background-color: #fcf8e3
+}
+
+.table-hover>tbody>tr.warning:hover>td,
+.table-hover>tbody>tr.warning:hover>th,
+.table-hover>tbody>tr:hover>.warning,
+.table-hover>tbody>tr>td.warning:hover,
+.table-hover>tbody>tr>th.warning:hover {
+    background-color: #faf2cc
+}
+
+.table>tbody>tr.danger>td,
+.table>tbody>tr.danger>th,
+.table>tbody>tr>td.danger,
+.table>tbody>tr>th.danger,
+.table>tfoot>tr.danger>td,
+.table>tfoot>tr.danger>th,
+.table>tfoot>tr>td.danger,
+.table>tfoot>tr>th.danger,
+.table>thead>tr.danger>td,
+.table>thead>tr.danger>th,
+.table>thead>tr>td.danger,
+.table>thead>tr>th.danger {
+    background-color: #f2dede
+}
+
+.table-hover>tbody>tr.danger:hover>td,
+.table-hover>tbody>tr.danger:hover>th,
+.table-hover>tbody>tr:hover>.danger,
+.table-hover>tbody>tr>td.danger:hover,
+.table-hover>tbody>tr>th.danger:hover {
+    background-color: #ebcccc
+}
+
+.table-responsive {
+    min-height: .01%;
+    overflow-x: auto
+}
+
+@media screen and (max-width:767px) {
+    .table-responsive {
+        width: 100%;
+        margin-bottom: 15px;
+        overflow-y: hidden;
+        -ms-overflow-style: -ms-autohiding-scrollbar;
+        border: 1px solid #ddd
+    }
+    .table-responsive>.table {
+        margin-bottom: 0
+    }
+    .table-responsive>.table>tbody>tr>td,
+    .table-responsive>.table>tbody>tr>th,
+    .table-responsive>.table>tfoot>tr>td,
+    .table-responsive>.table>tfoot>tr>th,
+    .table-responsive>.table>thead>tr>td,
+    .table-responsive>.table>thead>tr>th {
+        white-space: nowrap
+    }
+    .table-responsive>.table-bordered {
+        border: 0
+    }
+    .table-responsive>.table-bordered>tbody>tr>td:first-child,
+    .table-responsive>.table-bordered>tbody>tr>th:first-child,
+    .table-responsive>.table-bordered>tfoot>tr>td:first-child,
+    .table-responsive>.table-bordered>tfoot>tr>th:first-child,
+    .table-responsive>.table-bordered>thead>tr>td:first-child,
+    .table-responsive>.table-bordered>thead>tr>th:first-child {
+        border-left: 0
+    }
+    .table-responsive>.table-bordered>tbody>tr>td:last-child,
+    .table-responsive>.table-bordered>tbody>tr>th:last-child,
+    .table-responsive>.table-bordered>tfoot>tr>td:last-child,
+    .table-responsive>.table-bordered>tfoot>tr>th:last-child,
+    .table-responsive>.table-bordered>thead>tr>td:last-child,
+    .table-responsive>.table-bordered>thead>tr>th:last-child {
+        border-right: 0
+    }
+    .table-responsive>.table-bordered>tbody>tr:last-child>td,
+    .table-responsive>.table-bordered>tbody>tr:last-child>th,
+    .table-responsive>.table-bordered>tfoot>tr:last-child>td,
+    .table-responsive>.table-bordered>tfoot>tr:last-child>th {
+        border-bottom: 0
+    }
+}
+
+fieldset {
+    min-width: 0;
+    padding: 0;
+    margin: 0;
+    border: 0
+}
+
+legend {
+    display: block;
+    width: 100%;
+    padding: 0;
+    margin-bottom: 20px;
+    font-size: 21px;
+    line-height: inherit;
+    color: #333;
+    border: 0;
+    border-bottom: 1px solid #e5e5e5
+}
+
+label {
+    display: inline-block;
+    max-width: 100%;
+    margin-bottom: 5px;
+    font-weight: 700
+}
+
+input[type=search] {
+    -webkit-box-sizing: border-box;
+    -moz-box-sizing: border-box;
+    box-sizing: border-box
+}
+
+input[type=checkbox],
+input[type=radio] {
+    margin: 4px 0 0;
+    margin-top: 1px \9;
+    line-height: normal
+}
+
+input[type=file] {
+    display: block
+}
+
+input[type=range] {
+    display: block;
+    width: 100%
+}
+
+select[multiple],
+select[size] {
+    height: auto
+}
+
+input[type=file]:focus,
+input[type=checkbox]:focus,
+input[type=radio]:focus {
+    outline: thin dotted;
+    outline: 5px auto -webkit-focus-ring-color;
+    outline-offset: -2px
+}
+
+output {
+    display: block;
+    padding-top: 7px;
+    font-size: 14px;
+    line-height: 1.42857143;
+    color: #555
+}
+
+.form-control {
+    display: block;
+    width: 100%;
+    height: 34px;
+    padding: 6px 12px;
+    font-size: 14px;
+    line-height: 1.42857143;
+    color: #555;
+    background-color: #fff;
+    background-image: none;
+    border: 1px solid #ccc;
+    border-radius: 4px;
+}
+
+.form-control:focus {
+    border-color: #66afe9;
+    outline: 0;
+}
+
+.form-control::-moz-placeholder {
+    color: #999;
+    opacity: 1
+}
+
+.form-control:-ms-input-placeholder {
+    color: #999
+}
+
+.form-control::-webkit-input-placeholder {
+    color: #999
+}
+
+.form-control[disabled],
+.form-control[readonly],
+fieldset[disabled] .form-control {
+    cursor: not-allowed;
+    background-color: #eee;
+    opacity: 1
+}
+
+textarea.form-control {
+    height: auto
+}
+
+input[type=search] {
+    -webkit-appearance: none
+}
+
+@media screen and (-webkit-min-device-pixel-ratio:0) {
+    input[type=date],
+    input[type=time],
+    input[type=datetime-local],
+    input[type=month] {
+        line-height: 34px
+    }
+    .input-group-sm input[type=date],
+    .input-group-sm input[type=time],
+    .input-group-sm input[type=datetime-local],
+    .input-group-sm input[type=month],
+    input[type=date].input-sm,
+    input[type=time].input-sm,
+    input[type=datetime-local].input-sm,
+    input[type=month].input-sm {
+        line-height: 30px
+    }
+    .input-group-lg input[type=date],
+    .input-group-lg input[type=time],
+    .input-group-lg input[type=datetime-local],
+    .input-group-lg input[type=month],
+    input[type=date].input-lg,
+    input[type=time].input-lg,
+    input[type=datetime-local].input-lg,
+    input[type=month].input-lg {
+        line-height: 46px
+    }
+}
+
+.form-group {
+    margin-bottom: 15px
+}
+
+.checkbox,
+.radio {
+    position: relative;
+    display: block;
+    margin-top: 10px;
+    margin-bottom: 10px
+}
+
+.checkbox label,
+.radio label {
+    min-height: 20px;
+    padding-left: 20px;
+    margin-bottom: 0;
+    font-weight: 400;
+    cursor: pointer
+}
+
+.checkbox input[type=checkbox],
+.checkbox-inline input[type=checkbox],
+.radio input[type=radio],
+.radio-inline input[type=radio] {
+    position: absolute;
+    margin-top: 4px \9;
+    margin-left: -20px
+}
+
+.checkbox+.checkbox,
+.radio+.radio {
+    margin-top: -5px
+}
+
+.checkbox-inline,
+.radio-inline {
+    display: inline-block;
+    padding-left: 20px;
+    margin-bottom: 0;
+    font-weight: 400;
+    vertical-align: middle;
+    cursor: pointer
+}
+
+.checkbox-inline+.checkbox-inline,
+.radio-inline+.radio-inline {
+    margin-top: 0;
+    margin-left: 10px
+}
+
+fieldset[disabled] input[type=checkbox],
+fieldset[disabled] input[type=radio],
+input[type=checkbox].disabled,
+input[type=checkbox][disabled],
+input[type=radio].disabled,
+input[type=radio][disabled] {
+    cursor: not-allowed
+}
+
+.checkbox-inline.disabled,
+.radio-inline.disabled,
+fieldset[disabled] .checkbox-inline,
+fieldset[disabled] .radio-inline {
+    cursor: not-allowed
+}
+
+.checkbox.disabled label,
+.radio.disabled label,
+fieldset[disabled] .checkbox label,
+fieldset[disabled] .radio label {
+    cursor: not-allowed
+}
+
+.form-control-static {
+    padding-top: 7px;
+    padding-bottom: 7px;
+    margin-bottom: 0
+}
+
+.form-control-static.input-lg,
+.form-control-static.input-sm {
+    padding-right: 0;
+    padding-left: 0
+}
+
+.input-sm {
+    height: 30px;
+    padding: 5px 10px;
+    font-size: 12px;
+    line-height: 1.5;
+    border-radius: 3px
+}
+
+select.input-sm {
+    height: 30px;
+    line-height: 30px
+}
+
+select[multiple].input-sm,
+textarea.input-sm {
+    height: auto
+}
+
+.form-group-sm .form-control {
+    height: 30px;
+    padding: 5px 10px;
+    font-size: 12px;
+    line-height: 1.5;
+    border-radius: 3px
+}
+
+select.form-group-sm .form-control {
+    height: 30px;
+    line-height: 30px
+}
+
+select[multiple].form-group-sm .form-control,
+textarea.form-group-sm .form-control {
+    height: auto
+}
+
+.form-group-sm .form-control-static {
+    height: 30px;
+    padding: 5px 10px;
+    font-size: 12px;
+    line-height: 1.5
+}
+
+.input-lg {
+    height: 46px;
+    padding: 10px 16px;
+    font-size: 18px;
+    line-height: 1.3333333;
+    border-radius: 6px
+}
+
+select.input-lg {
+    height: 46px;
+    line-height: 46px
+}
+
+select[multiple].input-lg,
+textarea.input-lg {
+    height: auto
+}
+
+.form-group-lg .form-control {
+    height: 46px;
+    padding: 10px 16px;
+    font-size: 18px;
+    line-height: 1.3333333;
+    border-radius: 6px
+}
+
+select.form-group-lg .form-control {
+    height: 46px;
+    line-height: 46px
+}
+
+select[multiple].form-group-lg .form-control,
+textarea.form-group-lg .form-control {
+    height: auto
+}
+
+.form-group-lg .form-control-static {
+    height: 46px;
+    padding: 10px 16px;
+    font-size: 18px;
+    line-height: 1.3333333
+}
+
+.has-feedback {
+    position: relative
+}
+
+.has-feedback .form-control {
+    padding-right: 42.5px
+}
+
+.form-control-feedback {
+    position: absolute;
+    top: 0;
+    right: 0;
+    z-index: 2;
+    display: block;
+    width: 34px;
+    height: 34px;
+    line-height: 34px;
+    text-align: center;
+}
+
+.input-lg+.form-control-feedback {
+    width: 46px;
+    height: 46px;
+    line-height: 46px
+}
+
+.input-sm+.form-control-feedback {
+    width: 30px;
+    height: 30px;
+    line-height: 30px
+}
+
+.has-success .checkbox,
+.has-success .checkbox-inline,
+.has-success .control-label,
+.has-success .help-block,
+.has-success .radio,
+.has-success .radio-inline,
+.has-success.checkbox label,
+.has-success.checkbox-inline label,
+.has-success.radio label,
+.has-success.radio-inline label {
+    color: #3c763d
+}
+
+.has-success .form-control {
+    border-color: #3c763d;
+}
+
+.has-success .form-control:focus {
+    border-color: #2b542c;
+}
+
+.has-success .input-group-addon {
+    color: #3c763d;
+    background-color: #dff0d8;
+    border-color: #3c763d
+}
+
+.has-success .form-control-feedback {
+    color: #3c763d
+}
+
+.has-warning .checkbox,
+.has-warning .checkbox-inline,
+.has-warning .control-label,
+.has-warning .help-block,
+.has-warning .radio,
+.has-warning .radio-inline,
+.has-warning.checkbox label,
+.has-warning.checkbox-inline label,
+.has-warning.radio label,
+.has-warning.radio-inline label {
+    color: #8a6d3b
+}
+
+.has-warning .form-control {
+    border-color: #8a6d3b;
+}
+
+.has-warning .form-control:focus {
+    border-color: #66512c;
+}
+
+.has-warning .input-group-addon {
+    color: #8a6d3b;
+    background-color: #fcf8e3;
+    border-color: #8a6d3b
+}
+
+.has-warning .form-control-feedback {
+    color: #8a6d3b
+}
+
+.has-error .checkbox,
+.has-error .checkbox-inline,
+.has-error .control-label,
+.has-error .help-block,
+.has-error .radio,
+.has-error .radio-inline,
+.has-error.checkbox label,
+.has-error.checkbox-inline label,
+.has-error.radio label,
+.has-error.radio-inline label {
+    color: #a94442
+}
+
+.has-error .form-control {
+    border-color: #a94442;
+}
+
+.has-error .form-control:focus {
+    border-color: #843534;
+}
+
+.has-error .input-group-addon {
+    color: #a94442;
+    background-color: #f2dede;
+    border-color: #a94442
+}
+
+.has-error .form-control-feedback {
+    color: #a94442
+}
+
+.has-feedback label~.form-control-feedback {
+    top: 25px
+}
+
+.has-feedback label.sr-only~.form-control-feedback {
+    top: 0
+}
+
+.help-block {
+    display: block;
+    margin-top: 5px;
+    margin-bottom: 10px;
+    color: #737373
+}
+
+@media (min-width:768px) {
+    .form-inline .form-group {
+        display: inline-block;
+        margin-bottom: 0;
+        vertical-align: middle
+    }
+    .form-inline .form-control {
+        display: inline-block;
+        width: auto;
+        vertical-align: middle
+    }
+    .form-inline .form-control-static {
+        display: inline-block
+    }
+    .form-inline .input-group {
+        display: inline-table;
+        vertical-align: middle
+    }
+    .form-inline .input-group .form-control,
+    .form-inline .input-group .input-group-addon,
+    .form-inline .input-group .input-group-btn {
+        width: auto
+    }
+    .form-inline .input-group>.form-control {
+        width: 100%
+    }
+    .form-inline .control-label {
+        margin-bottom: 0;
+        vertical-align: middle
+    }
+    .form-inline .checkbox,
+    .form-inline .radio {
+        display: inline-block;
+        margin-top: 0;
+        margin-bottom: 0;
+        vertical-align: middle
+    }
+    .form-inline .checkbox label,
+    .form-inline .radio label {
+        padding-left: 0
+    }
+    .form-inline .checkbox input[type=checkbox],
+    .form-inline .radio input[type=radio] {
+        position: relative;
+        margin-left: 0
+    }
+    .form-inline .has-feedback .form-control-feedback {
+        top: 0
+    }
+}
+
+.form-horizontal .checkbox,
+.form-horizontal .checkbox-inline,
+.form-horizontal .radio,
+.form-horizontal .radio-inline {
+    padding-top: 7px;
+    margin-top: 0;
+    margin-bottom: 0
+}
+
+.form-horizontal .checkbox,
+.form-horizontal .radio {
+    min-height: 27px
+}
+
+.form-horizontal .form-group {
+    margin-right: -15px;
+    margin-left: -15px
+}
+
+@media (min-width:768px) {
+    .form-horizontal .control-label {
+        padding-top: 7px;
+        margin-bottom: 0;
+        text-align: right
+    }
+}
+
+.form-horizontal .has-feedback .form-control-feedback {
+    right: 15px
+}
+
+@media (min-width:768px) {
+    .form-horizontal .form-group-lg .control-label {
+        padding-top: 14.33px
+    }
+}
+
+@media (min-width:768px) {
+    .form-horizontal .form-group-sm .control-label {
+        padding-top: 6px
+    }
+}
+
+.btn {
+    display: inline-block;
+    padding: 6px 12px;
+    margin-bottom: 0;
+    font-size: 14px;
+    font-weight: 400;
+    line-height: 1.42857143;
+    text-align: center;
+    white-space: nowrap;
+    vertical-align: middle;
+    -ms-touch-action: manipulation;
+    touch-action: manipulation;
+    cursor: pointer;
+    -webkit-user-select: none;
+    -moz-user-select: none;
+    -ms-user-select: none;
+    user-select: none;
+    background-image: none;
+    border: 1px solid transparent;
+    border-radius: 4px
+}
+
+.btn.active.focus,
+.btn.active:focus,
+.btn.focus,
+.btn:active.focus,
+.btn:active:focus,
+.btn:focus {
+    outline: thin dotted;
+    outline: 5px auto -webkit-focus-ring-color;
+    outline-offset: -2px
+}
+
+.btn.focus,
+.btn:focus,
+.btn:hover {
+    color: #333;
+    text-decoration: none
+}
+
+.btn.active,
+.btn:active {
+    background-image: none;
+    outline: 0;
+}
+
+.btn.disabled,
+.btn[disabled],
+fieldset[disabled] .btn {
+    cursor: not-allowed;
+    filter: alpha(opacity=65);
+    opacity: .65
+}
+
+.btn-default {
+    color: #333;
+    background-color: #fff;
+    border-color: #ccc
+}
+
+.btn-default.active,
+.btn-default.focus,
+.btn-default:active,
+.btn-default:focus,
+.btn-default:hover,
+.open>.dropdown-toggle.btn-default {
+    color: #333;
+    background-color: #e6e6e6;
+    border-color: #adadad
+}
+
+.btn-default.active,
+.btn-default:active,
+.open>.dropdown-toggle.btn-default {
+    background-image: none
+}
+
+.btn-default.disabled,
+.btn-default.disabled.active,
+.btn-default.disabled.focus,
+.btn-default.disabled:active,
+.btn-default.disabled:focus,
+.btn-default.disabled:hover,
+.btn-default[disabled],
+.btn-default[disabled].active,
+.btn-default[disabled].focus,
+.btn-default[disabled]:active,
+.btn-default[disabled]:focus,
+.btn-default[disabled]:hover,
+fieldset[disabled] .btn-default,
+fieldset[disabled] .btn-default.active,
+fieldset[disabled] .btn-default.focus,
+fieldset[disabled] .btn-default:active,
+fieldset[disabled] .btn-default:focus,
+fieldset[disabled] .btn-default:hover {
+    background-color: #fff;
+    border-color: #ccc
+}
+
+.btn-default .badge {
+    color: #fff;
+    background-color: #333
+}
+
+.btn-primary {
+    color: #fff;
+    background-color: #337ab7;
+    border-color: #2e6da4
+}
+
+.btn-primary.active,
+.btn-primary.focus,
+.btn-primary:active,
+.btn-primary:focus,
+.btn-primary:hover,
+.open>.dropdown-toggle.btn-primary {
+    color: #fff;
+    background-color: #286090;
+    border-color: #204d74
+}
+
+.btn-primary.active,
+.btn-primary:active,
+.open>.dropdown-toggle.btn-primary {
+    background-image: none
+}
+
+.btn-primary.disabled,
+.btn-primary.disabled.active,
+.btn-primary.disabled.focus,
+.btn-primary.disabled:active,
+.btn-primary.disabled:focus,
+.btn-primary.disabled:hover,
+.btn-primary[disabled],
+.btn-primary[disabled].active,
+.btn-primary[disabled].focus,
+.btn-primary[disabled]:active,
+.btn-primary[disabled]:focus,
+.btn-primary[disabled]:hover,
+fieldset[disabled] .btn-primary,
+fieldset[disabled] .btn-primary.active,
+fieldset[disabled] .btn-primary.focus,
+fieldset[disabled] .btn-primary:active,
+fieldset[disabled] .btn-primary:focus,
+fieldset[disabled] .btn-primary:hover {
+    background-color: #337ab7;
+    border-color: #2e6da4
+}
+
+.btn-primary .badge {
+    color: #337ab7;
+    background-color: #fff
+}
+
+.btn-success {
+    color: #fff;
+    background-color: #5cb85c;
+    border-color: #4cae4c
+}
+
+.btn-success.active,
+.btn-success.focus,
+.btn-success:active,
+.btn-success:focus,
+.btn-success:hover,
+.open>.dropdown-toggle.btn-success {
+    color: #fff;
+    background-color: #449d44;
+    border-color: #398439
+}
+
+.btn-success.active,
+.btn-success:active,
+.open>.dropdown-toggle.btn-success {
+    background-image: none
+}
+
+.btn-success.disabled,
+.btn-success.disabled.active,
+.btn-success.disabled.focus,
+.btn-success.disabled:active,
+.btn-success.disabled:focus,
+.btn-success.disabled:hover,
+.btn-success[disabled],
+.btn-success[disabled].active,
+.btn-success[disabled].focus,
+.btn-success[disabled]:active,
+.btn-success[disabled]:focus,
+.btn-success[disabled]:hover,
+fieldset[disabled] .btn-success,
+fieldset[disabled] .btn-success.active,
+fieldset[disabled] .btn-success.focus,
+fieldset[disabled] .btn-success:active,
+fieldset[disabled] .btn-success:focus,
+fieldset[disabled] .btn-success:hover {
+    background-color: #5cb85c;
+    border-color: #4cae4c
+}
+
+.btn-success .badge {
+    color: #5cb85c;
+    background-color: #fff
+}
+
+.btn-info {
+    color: #fff;
+    background-color: #5bc0de;
+    border-color: #46b8da
+}
+
+.btn-info.active,
+.btn-info.focus,
+.btn-info:active,
+.btn-info:focus,
+.btn-info:hover,
+.open>.dropdown-toggle.btn-info {
+    color: #fff;
+    background-color: #31b0d5;
+    border-color: #269abc
+}
+
+.btn-info.active,
+.btn-info:active,
+.open>.dropdown-toggle.btn-info {
+    background-image: none
+}
+
+.btn-info.disabled,
+.btn-info.disabled.active,
+.btn-info.disabled.focus,
+.btn-info.disabled:active,
+.btn-info.disabled:focus,
+.btn-info.disabled:hover,
+.btn-info[disabled],
+.btn-info[disabled].active,
+.btn-info[disabled].focus,
+.btn-info[disabled]:active,
+.btn-info[disabled]:focus,
+.btn-info[disabled]:hover,
+fieldset[disabled] .btn-info,
+fieldset[disabled] .btn-info.active,
+fieldset[disabled] .btn-info.focus,
+fieldset[disabled] .btn-info:active,
+fieldset[disabled] .btn-info:focus,
+fieldset[disabled] .btn-info:hover {
+    background-color: #5bc0de;
+    border-color: #46b8da
+}
+
+.btn-info .badge {
+    color: #5bc0de;
+    background-color: #fff
+}
+
+.btn-warning {
+    color: #fff;
+    background-color: #f0ad4e;
+    border-color: #eea236
+}
+
+.btn-warning.active,
+.btn-warning.focus,
+.btn-warning:active,
+.btn-warning:focus,
+.btn-warning:hover,
+.open>.dropdown-toggle.btn-warning {
+    color: #fff;
+    background-color: #ec971f;
+    border-color: #d58512
+}
+
+.btn-warning.active,
+.btn-warning:active,
+.open>.dropdown-toggle.btn-warning {
+    background-image: none
+}
+
+.btn-warning.disabled,
+.btn-warning.disabled.active,
+.btn-warning.disabled.focus,
+.btn-warning.disabled:active,
+.btn-warning.disabled:focus,
+.btn-warning.disabled:hover,
+.btn-warning[disabled],
+.btn-warning[disabled].active,
+.btn-warning[disabled].focus,
+.btn-warning[disabled]:active,
+.btn-warning[disabled]:focus,
+.btn-warning[disabled]:hover,
+fieldset[disabled] .btn-warning,
+fieldset[disabled] .btn-warning.active,
+fieldset[disabled] .btn-warning.focus,
+fieldset[disabled] .btn-warning:active,
+fieldset[disabled] .btn-warning:focus,
+fieldset[disabled] .btn-warning:hover {
+    background-color: #f0ad4e;
+    border-color: #eea236
+}
+
+.btn-warning .badge {
+    color: #f0ad4e;
+    background-color: #fff
+}
+
+.btn-danger {
+    color: #fff;
+    background-color: #d9534f;
+    border-color: #d43f3a
+}
+
+.btn-danger.active,
+.btn-danger.focus,
+.btn-danger:active,
+.btn-danger:focus,
+.btn-danger:hover,
+.open>.dropdown-toggle.btn-danger {
+    color: #fff;
+    background-color: #c9302c;
+    border-color: #ac2925
+}
+
+.btn-danger.active,
+.btn-danger:active,
+.open>.dropdown-toggle.btn-danger {
+    background-image: none
+}
+
+.btn-danger.disabled,
+.btn-danger.disabled.active,
+.btn-danger.disabled.focus,
+.btn-danger.disabled:active,
+.btn-danger.disabled:focus,
+.btn-danger.disabled:hover,
+.btn-danger[disabled],
+.btn-danger[disabled].active,
+.btn-danger[disabled].focus,
+.btn-danger[disabled]:active,
+.btn-danger[disabled]:focus,
+.btn-danger[disabled]:hover,
+fieldset[disabled] .btn-danger,
+fieldset[disabled] .btn-danger.active,
+fieldset[disabled] .btn-danger.focus,
+fieldset[disabled] .btn-danger:active,
+fieldset[disabled] .btn-danger:focus,
+fieldset[disabled] .btn-danger:hover {
+    background-color: #d9534f;
+    border-color: #d43f3a
+}
+
+.btn-danger .badge {
+    color: #d9534f;
+    background-color: #fff
+}
+
+.btn-link {
+    font-weight: 400;
+    color: #337ab7;
+    border-radius: 0
+}
+
+.btn-link,
+.btn-link.active,
+.btn-link:active,
+.btn-link[disabled],
+fieldset[disabled] .btn-link {
+    background-color: transparent;
+}
+
+.btn-link,
+.btn-link:active,
+.btn-link:focus,
+.btn-link:hover {
+    border-color: transparent
+}
+
+.btn-link:focus,
+.btn-link:hover {
+    color: #23527c;
+    text-decoration: underline;
+    background-color: transparent
+}
+
+.btn-link[disabled]:focus,
+.btn-link[disabled]:hover,
+fieldset[disabled] .btn-link:focus,
+fieldset[disabled] .btn-link:hover {
+    color: #777;
+    text-decoration: none
+}
+
+.btn-group-lg>.btn,
+.btn-lg {
+    padding: 10px 16px;
+    font-size: 18px;
+    line-height: 1.3333333;
+    border-radius: 6px
+}
+
+.btn-group-sm>.btn,
+.btn-sm {
+    padding: 5px 10px;
+    font-size: 12px;
+    line-height: 1.5;
+    border-radius: 3px
+}
+
+.btn-group-xs>.btn,
+.btn-xs {
+    padding: 1px 5px;
+    font-size: 12px;
+    line-height: 1.5;
+    border-radius: 3px
+}
+
+.btn-block {
+    display: block;
+    width: 100%
+}
+
+.btn-block+.btn-block {
+    margin-top: 5px
+}
+
+input[type=button].btn-block,
+input[type=reset].btn-block,
+input[type=submit].btn-block {
+    width: 100%
+}
+
+.fade {
+    opacity: 0;
+    -webkit-transition: opacity .15s linear;
+    -o-transition: opacity .15s linear;
+    transition: opacity .15s linear
+}
+
+.fade.in {
+    opacity: 1
+}
+
+.collapse {
+    display: none;
+    visibility: hidden
+}
+
+.collapse.in {
+    display: block;
+    visibility: visible
+}
+
+tr.collapse.in {
+    display: table-row
+}
+
+tbody.collapse.in {
+    display: table-row-group
+}
+
+.collapsing {
+    position: relative;
+    height: 0;
+    overflow: hidden;
+    -webkit-transition-timing-function: ease;
+    -o-transition-timing-function: ease;
+    transition-timing-function: ease;
+    -webkit-transition-duration: .35s;
+    -o-transition-duration: .35s;
+    transition-duration: .35s;
+    -webkit-transition-property: height, visibility;
+    -o-transition-property: height, visibility;
+    transition-property: height, visibility
+}
+
+.caret {
+    display: inline-block;
+    width: 0;
+    height: 0;
+    margin-left: 2px;
+    vertical-align: middle;
+    border-top: 4px solid;
+    border-right: 4px solid transparent;
+    border-left: 4px solid transparent
+}
+
+.dropdown,
+.dropup {
+    position: relative
+}
+
+.dropdown-toggle:focus {
+    outline: 0
+}
+
+.dropdown-menu {
+    position: absolute;
+    top: 100%;
+    left: 0;
+    z-index: 1000;
+    display: none;
+    float: left;
+    min-width: 160px;
+    padding: 5px 0;
+    margin: 2px 0 0;
+    font-size: 14px;
+    text-align: left;
+    list-style: none;
+    background-color: #fff;
+    -webkit-background-clip: padding-box;
+    background-clip: padding-box;
+    border: 1px solid #ccc;
+    border: 1px solid rgba(0, 0, 0, .15);
+    border-radius: 4px;
+}
+
+.dropdown-menu.pull-right {
+    right: 0;
+    left: auto
+}
+
+.dropdown-menu .divider {
+    height: 1px;
+    margin: 9px 0;
+    overflow: hidden;
+    background-color: #e5e5e5
+}
+
+.dropdown-menu>li>a {
+    display: block;
+    padding: 3px 20px;
+    clear: both;
+    font-weight: 400;
+    line-height: 1.42857143;
+    color: #333;
+    white-space: nowrap
+}
+
+.dropdown-menu>li>a:focus,
+.dropdown-menu>li>a:hover {
+    color: #262626;
+    text-decoration: none;
+    background-color: #f5f5f5
+}
+
+.dropdown-menu>.active>a,
+.dropdown-menu>.active>a:focus,
+.dropdown-menu>.active>a:hover {
+    color: #fff;
+    text-decoration: none;
+    background-color: #337ab7;
+    outline: 0
+}
+
+.dropdown-menu>.disabled>a,
+.dropdown-menu>.disabled>a:focus,
+.dropdown-menu>.disabled>a:hover {
+    color: #777
+}
+
+.dropdown-menu>.disabled>a:focus,
+.dropdown-menu>.disabled>a:hover {
+    text-decoration: none;
+    cursor: not-allowed;
+    background-color: transparent;
+    background-image: none;
+    filter: progid: DXImageTransform.Microsoft.gradient(enabled=false)
+}
+
+.open>.dropdown-menu {
+    display: block
+}
+
+.open>a {
+    outline: 0
+}
+
+.dropdown-menu-right {
+    right: 0;
+    left: auto
+}
+
+.dropdown-menu-left {
+    right: auto;
+    left: 0
+}
+
+.dropdown-header {
+    display: block;
+    padding: 3px 20px;
+    font-size: 12px;
+    line-height: 1.42857143;
+    color: #777;
+    white-space: nowrap
+}
+
+.dropdown-backdrop {
+    position: fixed;
+    top: 0;
+    right: 0;
+    bottom: 0;
+    left: 0;
+    z-index: 990
+}
+
+.pull-right>.dropdown-menu {
+    right: 0;
+    left: auto
+}
+
+.dropup .caret,
+.navbar-fixed-bottom .dropdown .caret {
+    content: "";
+    border-top: 0;
+    border-bottom: 4px solid
+}
+
+.dropup .dropdown-menu,
+.navbar-fixed-bottom .dropdown .dropdown-menu {
+    top: auto;
+    bottom: 100%;
+    margin-bottom: 2px
+}
+
+@media (min-width:768px) {
+    .navbar-right .dropdown-menu {
+        right: 0;
+        left: auto
+    }
+    .navbar-right .dropdown-menu-left {
+        right: auto;
+        left: 0
+    }
+}
+
+.btn-group,
+.btn-group-vertical {
+    position: relative;
+    display: inline-block;
+    vertical-align: middle
+}
+
+.btn-group-vertical>.btn,
+.btn-group>.btn {
+    position: relative;
+    float: left
+}
+
+.btn-group-vertical>.btn.active,
+.btn-group-vertical>.btn:active,
+.btn-group-vertical>.btn:focus,
+.btn-group-vertical>.btn:hover,
+.btn-group>.btn.active,
+.btn-group>.btn:active,
+.btn-group>.btn:focus,
+.btn-group>.btn:hover {
+    z-index: 2
+}
+
+.btn-group .btn+.btn,
+.btn-group .btn+.btn-group,
+.btn-group .btn-group+.btn,
+.btn-group .btn-group+.btn-group {
+    margin-left: -1px
+}
+
+.btn-toolbar {
+    margin-left: -5px
+}
+
+.btn-toolbar .btn-group,
+.btn-toolbar .input-group {
+    float: left
+}
+
+.btn-toolbar>.btn,
+.btn-toolbar>.btn-group,
+.btn-toolbar>.input-group {
+    margin-left: 5px
+}
+
+.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
+    border-radius: 0
+}
+
+.btn-group>.btn:first-child {
+    margin-left: 0
+}
+
+.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
+    border-top-right-radius: 0;
+    border-bottom-right-radius: 0
+}
+
+.btn-group>.btn:last-child:not(:first-child),
+.btn-group>.dropdown-toggle:not(:first-child) {
+    border-top-left-radius: 0;
+    border-bottom-left-radius: 0
+}
+
+.btn-group>.btn-group {
+    float: left
+}
+
+.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn {
+    border-radius: 0
+}
+
+.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,
+.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
+    border-top-right-radius: 0;
+    border-bottom-right-radius: 0
+}
+
+.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child {
+    border-top-left-radius: 0;
+    border-bottom-left-radius: 0
+}
+
+.btn-group .dropdown-toggle:active,
+.btn-group.open .dropdown-toggle {
+    outline: 0
+}
+
+.btn-group>.btn+.dropdown-toggle {
+    padding-right: 8px;
+    padding-left: 8px
+}
+
+.btn-group>.btn-lg+.dropdown-toggle {
+    padding-right: 12px;
+    padding-left: 12px
+}
+
+.btn-group.open .dropdown-toggle {
+}
+
+.btn-group.open .dropdown-toggle.btn-link {
+}
+
+.btn .caret {
+    margin-left: 0
+}
+
+.btn-lg .caret {
+    border-width: 5px 5px 0;
+    border-bottom-width: 0
+}
+
+.dropup .btn-lg .caret {
+    border-width: 0 5px 5px
+}
+
+.btn-group-vertical>.btn,
+.btn-group-vertical>.btn-group,
+.btn-group-vertical>.btn-group>.btn {
+    display: block;
+    float: none;
+    width: 100%;
+    max-width: 100%
+}
+
+.btn-group-vertical>.btn-group>.btn {
+    float: none
+}
+
+.btn-group-vertical>.btn+.btn,
+.btn-group-vertical>.btn+.btn-group,
+.btn-group-vertical>.btn-group+.btn,
+.btn-group-vertical>.btn-group+.btn-group {
+    margin-top: -1px;
+    margin-left: 0
+}
+
+.btn-group-vertical>.btn:not(:first-child):not(:last-child) {
+    border-radius: 0
+}
+
+.btn-group-vertical>.btn:first-child:not(:last-child) {
+    border-top-right-radius: 4px;
+    border-bottom-right-radius: 0;
+    border-bottom-left-radius: 0
+}
+
+.btn-group-vertical>.btn:last-child:not(:first-child) {
+    border-top-left-radius: 0;
+    border-top-right-radius: 0;
+    border-bottom-left-radius: 4px
+}
+
+.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn {
+    border-radius: 0
+}
+
+.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,
+.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
+    border-bottom-right-radius: 0;
+    border-bottom-left-radius: 0
+}
+
+.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child {
+    border-top-left-radius: 0;
+    border-top-right-radius: 0
+}
+
+.btn-group-justified {
+    display: table;
+    width: 100%;
+    table-layout: fixed;
+    border-collapse: separate
+}
+
+.btn-group-justified>.btn,
+.btn-group-justified>.btn-group {
+    display: table-cell;
+    float: none;
+    width: 1%
+}
+
+.btn-group-justified>.btn-group .btn {
+    width: 100%
+}
+
+.btn-group-justified>.btn-group .dropdown-menu {
+    left: auto
+}
+
+[data-toggle=buttons]>.btn input[type=checkbox],
+[data-toggle=buttons]>.btn input[type=radio],
+[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],
+[data-toggle=buttons]>.btn-group>.btn input[type=radio] {
+    position: absolute;
+    clip: rect(0, 0, 0, 0);
+}
+
+.input-group {
+    position: relative;
+    display: table;
+    border-collapse: separate
+}
+
+.input-group[class*=col-] {
+    float: none;
+    padding-right: 0;
+    padding-left: 0
+}
+
+.input-group .form-control {
+    position: relative;
+    z-index: 2;
+    float: left;
+    width: 100%;
+    margin-bottom: 0
+}
+
+.input-group-lg>.form-control,
+.input-group-lg>.input-group-addon,
+.input-group-lg>.input-group-btn>.btn {
+    height: 46px;
+    padding: 10px 16px;
+    font-size: 18px;
+    line-height: 1.3333333;
+    border-radius: 6px
+}
+
+select.input-group-lg>.form-control,
+select.input-group-lg>.input-group-addon,
+select.input-group-lg>.input-group-btn>.btn {
+    height: 46px;
+    line-height: 46px
+}
+
+select[multiple].input-group-lg>.form-control,
+select[multiple].input-group-lg>.input-group-addon,
+select[multiple].input-group-lg>.input-group-btn>.btn,
+textarea.input-group-lg>.form-control,
+textarea.input-group-lg>.input-group-addon,
+textarea.input-group-lg>.input-group-btn>.btn {
+    height: auto
+}
+
+.input-group-sm>.form-control,
+.input-group-sm>.input-group-addon,
+.input-group-sm>.input-group-btn>.btn {
+    height: 30px;
+    padding: 5px 10px;
+    font-size: 12px;
+    line-height: 1.5;
+    border-radius: 3px
+}
+
+select.input-group-sm>.form-control,
+select.input-group-sm>.input-group-addon,
+select.input-group-sm>.input-group-btn>.btn {
+    height: 30px;
+    line-height: 30px
+}
+
+select[multiple].input-group-sm>.form-control,
+select[multiple].input-group-sm>.input-group-addon,
+select[multiple].input-group-sm>.input-group-btn>.btn,
+textarea.input-group-sm>.form-control,
+textarea.input-group-sm>.input-group-addon,
+textarea.input-group-sm>.input-group-btn>.btn {
+    height: auto
+}
+
+.input-group .form-control,
+.input-group-addon,
+.input-group-btn {
+    display: table-cell
+}
+
+.input-group .form-control:not(:first-child):not(:last-child),
+.input-group-addon:not(:first-child):not(:last-child),
+.input-group-btn:not(:first-child):not(:last-child) {
+    border-radius: 0
+}
+
+.input-group-addon,
+.input-group-btn {
+    width: 1%;
+    white-space: nowrap;
+    vertical-align: middle
+}
+
+.input-group-addon {
+    padding: 6px 12px;
+    font-size: 14px;
+    font-weight: 400;
+    line-height: 1;
+    color: #555;
+    text-align: center;
+    background-color: #eee;
+    border: 1px solid #ccc;
+    border-radius: 4px
+}
+
+.input-group-addon.input-sm {
+    padding: 5px 10px;
+    font-size: 12px;
+    border-radius: 3px
+}
+
+.input-group-addon.input-lg {
+    padding: 10px 16px;
+    font-size: 18px;
+    border-radius: 6px
+}
+
+.input-group-addon input[type=checkbox],
+.input-group-addon input[type=radio] {
+    margin-top: 0
+}
+
+.input-group .form-control:first-child,
+.input-group-addon:first-child,
+.input-group-btn:first-child>.btn,
+.input-group-btn:first-child>.btn-group>.btn,
+.input-group-btn:first-child>.dropdown-toggle,
+.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,
+.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) {
+    border-top-right-radius: 0;
+    border-bottom-right-radius: 0
+}
+
+.input-group-addon:first-child {
+    border-right: 0
+}
+
+.input-group .form-control:last-child,
+.input-group-addon:last-child,
+.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,
+.input-group-btn:first-child>.btn:not(:first-child),
+.input-group-btn:last-child>.btn,
+.input-group-btn:last-child>.btn-group>.btn,
+.input-group-btn:last-child>.dropdown-toggle {
+    border-top-left-radius: 0;
+    border-bottom-left-radius: 0
+}
+
+.input-group-addon:last-child {
+    border-left: 0
+}
+
+.input-group-btn {
+    position: relative;
+    font-size: 0;
+    white-space: nowrap
+}
+
+.input-group-btn>.btn {
+    position: relative
+}
+
+.input-group-btn>.btn+.btn {
+    margin-left: -1px
+}
+
+.input-group-btn>.btn:active,
+.input-group-btn>.btn:focus,
+.input-group-btn>.btn:hover {
+    z-index: 2
+}
+
+.input-group-btn:first-child>.btn,
+.input-group-btn:first-child>.btn-group {
+    margin-right: -1px
+}
+
+.input-group-btn:last-child>.btn,
+.input-group-btn:last-child>.btn-group {
+    margin-left: -1px
+}
+
+.nav {
+    padding-left: 0;
+    margin-bottom: 0;
+    list-style: none
+}
+
+.nav>li {
+    position: relative;
+    display: block
+}
+
+.nav>li>a {
+    position: relative;
+    display: block;
+    padding: 10px 15px
+}
+
+.nav>li>a:focus,
+.nav>li>a:hover {
+    text-decoration: none;
+    background-color: #eee
+}
+
+.nav>li.disabled>a {
+    color: #777
+}
+
+.nav>li.disabled>a:focus,
+.nav>li.disabled>a:hover {
+    color: #777;
+    text-decoration: none;
+    cursor: not-allowed;
+    background-color: transparent
+}
+
+.nav .open>a,
+.nav .open>a:focus,
+.nav .open>a:hover {
+    background-color: #eee;
+    border-color: #337ab7
+}
+
+.nav .nav-divider {
+    height: 1px;
+    margin: 9px 0;
+    overflow: hidden;
+    background-color: #e5e5e5
+}
+
+.nav>li>a>img {
+    max-width: none
+}
+
+.nav-tabs {
+    border-bottom: 1px solid #ddd
+}
+
+.nav-tabs>li {
+    float: left;
+    margin-bottom: -1px
+}
+
+.nav-tabs>li>a {
+    margin-right: 2px;
+    line-height: 1.42857143;
+    border: 1px solid transparent;
+    border-radius: 4px 4px 0 0
+}
+
+.nav-tabs>li>a:hover {
+    border-color: #eee #eee #ddd
+}
+
+.nav-tabs>li.active>a,
+.nav-tabs>li.active>a:focus,
+.nav-tabs>li.active>a:hover {
+    color: #555;
+    cursor: default;
+    background-color: #fff;
+    border: 1px solid #ddd;
+    border-bottom-color: transparent
+}
+
+.nav-tabs.nav-justified {
+    width: 100%;
+    border-bottom: 0
+}
+
+.nav-tabs.nav-justified>li {
+    float: none
+}
+
+.nav-tabs.nav-justified>li>a {
+    margin-bottom: 5px;
+    text-align: center
+}
+
+.nav-tabs.nav-justified>.dropdown .dropdown-menu {
+    top: auto;
+    left: auto
+}
+
+@media (min-width:768px) {
+    .nav-tabs.nav-justified>li {
+        display: table-cell;
+        width: 1%
+    }
+    .nav-tabs.nav-justified>li>a {
+        margin-bottom: 0
+    }
+}
+
+.nav-tabs.nav-justified>li>a {
+    margin-right: 0;
+    border-radius: 4px
+}
+
+.nav-tabs.nav-justified>.active>a,
+.nav-tabs.nav-justified>.active>a:focus,
+.nav-tabs.nav-justified>.active>a:hover {
+    border: 1px solid #ddd
+}
+
+@media (min-width:768px) {
+    .nav-tabs.nav-justified>li>a {
+        border-bottom: 1px solid #ddd;
+        border-radius: 4px 4px 0 0
+    }
+    .nav-tabs.nav-justified>.active>a,
+    .nav-tabs.nav-justified>.active>a:focus,
+    .nav-tabs.nav-justified>.active>a:hover {
+        border-bottom-color: #fff
+    }
+}
+
+.nav-pills>li {
+    float: left
+}
+
+.nav-pills>li>a {
+    border-radius: 4px
+}
+
+.nav-pills>li+li {
+    margin-left: 2px
+}
+
+.nav-pills>li.active>a,
+.nav-pills>li.active>a:focus,
+.nav-pills>li.active>a:hover {
+    color: #fff;
+    background-color: #337ab7
+}
+
+.nav-stacked>li {
+    float: none
+}
+
+.nav-stacked>li+li {
+    margin-top: 2px;
+    margin-left: 0
+}
+
+.nav-justified {
+    width: 100%
+}
+
+.nav-justified>li {
+    float: none
+}
+
+.nav-justified>li>a {
+    margin-bottom: 5px;
+    text-align: center
+}
+
+.nav-justified>.dropdown .dropdown-menu {
+    top: auto;
+    left: auto
+}
+
+@media (min-width:768px) {
+    .nav-justified>li {
+        display: table-cell;
+        width: 1%
+    }
+    .nav-justified>li>a {
+        margin-bottom: 0
+    }
+}
+
+.nav-tabs-justified {
+    border-bottom: 0
+}
+
+.nav-tabs-justified>li>a {
+    margin-right: 0;
+    border-radius: 4px
+}
+
+.nav-tabs-justified>.active>a,
+.nav-tabs-justified>.active>a:focus,
+.nav-tabs-justified>.active>a:hover {
+    border: 1px solid #ddd
+}
+
+@media (min-width:768px) {
+    .nav-tabs-justified>li>a {
+        border-bottom: 1px solid #ddd;
+        border-radius: 4px 4px 0 0
+    }
+    .nav-tabs-justified>.active>a,
+    .nav-tabs-justified>.active>a:focus,
+    .nav-tabs-justified>.active>a:hover {
+        border-bottom-color: #fff
+    }
+}
+
+.tab-content>.tab-pane {
+    display: none;
+    visibility: hidden
+}
+
+.tab-content>.active {
+    display: block;
+    visibility: visible
+}
+
+.nav-tabs .dropdown-menu {
+    margin-top: -1px;
+    border-top-left-radius: 0;
+    border-top-right-radius: 0
+}
+
+.navbar {
+    position: relative;
+    min-height: 50px;
+    margin-bottom: 20px;
+    border: 1px solid transparent
+}
+
+@media (min-width:768px) {
+    .navbar {
+        border-radius: 4px
+    }
+}
+
+@media (min-width:768px) {
+    .navbar-header {
+        float: left
+    }
+}
+
+.navbar-collapse {
+    padding-right: 15px;
+    padding-left: 15px;
+    overflow-x: visible;
+    -webkit-overflow-scrolling: touch;
+    border-top: 1px solid transparent;
+}
+
+.navbar-collapse.in {
+    overflow-y: auto
+}
+
+@media (min-width:768px) {
+    .navbar-collapse {
+        width: auto;
+        border-top: 0;
+    }
+    .navbar-collapse.collapse {
+        display: block!important;
+        height: auto!important;
+        padding-bottom: 0;
+        overflow: visible!important;
+        visibility: visible!important
+    }
+    .navbar-collapse.in {
+        overflow-y: visible
+    }
+    .navbar-fixed-bottom .navbar-collapse,
+    .navbar-fixed-top .navbar-collapse,
+    .navbar-static-top .navbar-collapse {
+        padding-right: 0;
+        padding-left: 0
+    }
+}
+
+.navbar-fixed-bottom .navbar-collapse,
+.navbar-fixed-top .navbar-collapse {
+    max-height: 340px
+}
+
+@media (max-device-width:480px) and (orientation:landscape) {
+    .navbar-fixed-bottom .navbar-collapse,
+    .navbar-fixed-top .navbar-collapse {
+        max-height: 200px
+    }
+}
+
+.container-fluid>.navbar-collapse,
+.container-fluid>.navbar-header,
+.container>.navbar-collapse,
+.container>.navbar-header {
+    margin-right: -15px;
+    margin-left: -15px
+}
+
+@media (min-width:768px) {
+    .container-fluid>.navbar-collapse,
+    .container-fluid>.navbar-header,
+    .container>.navbar-collapse,
+    .container>.navbar-header {
+        margin-right: 0;
+        margin-left: 0
+    }
+}
+
+.navbar-static-top {
+    z-index: 1000;
+    border-width: 0 0 1px
+}
+
+@media (min-width:768px) {
+    .navbar-static-top {
+        border-radius: 0
+    }
+}
+
+.navbar-fixed-bottom,
+.navbar-fixed-top {
+    position: fixed;
+    right: 0;
+    left: 0;
+    z-index: 1030
+}
+
+@media (min-width:768px) {
+    .navbar-fixed-bottom,
+    .navbar-fixed-top {
+        border-radius: 0
+    }
+}
+
+.navbar-fixed-top {
+    top: 0;
+    border-width: 0 0 1px
+}
+
+.navbar-fixed-bottom {
+    bottom: 0;
+    margin-bottom: 0;
+    border-width: 1px 0 0
+}
+
+.navbar-brand {
+    float: left;
+    height: 50px;
+    padding: 15px 15px;
+    font-size: 18px;
+    line-height: 20px
+}
+
+.navbar-brand:focus,
+.navbar-brand:hover {
+    text-decoration: none
+}
+
+.navbar-brand>img {
+    display: block
+}
+
+@media (min-width:768px) {
+    .navbar>.container .navbar-brand,
+    .navbar>.container-fluid .navbar-brand {
+        margin-left: -15px
+    }
+}
+
+.navbar-toggle {
+    position: relative;
+    float: right;
+    padding: 9px 10px;
+    margin-top: 8px;
+    margin-right: 15px;
+    margin-bottom: 8px;
+    background-color: transparent;
+    background-image: none;
+    border: 1px solid transparent;
+    border-radius: 4px
+}
+
+.navbar-toggle:focus {
+    outline: 0
+}
+
+.navbar-toggle .icon-bar {
+    display: block;
+    width: 22px;
+    height: 2px;
+    border-radius: 1px
+}
+
+.navbar-toggle .icon-bar+.icon-bar {
+    margin-top: 4px
+}
+
+@media (min-width:768px) {
+    .navbar-toggle {
+        display: none
+    }
+}
+
+.navbar-nav {
+    margin: 7.5px -15px
+}
+
+.navbar-nav>li>a {
+    padding-top: 10px;
+    padding-bottom: 10px;
+    line-height: 20px
+}
+
+@media (max-width:767px) {
+    .navbar-nav .open .dropdown-menu {
+        position: static;
+        float: none;
+        width: auto;
+        margin-top: 0;
+        background-color: transparent;
+        border: 0;
+    }
+    .navbar-nav .open .dropdown-menu .dropdown-header,
+    .navbar-nav .open .dropdown-menu>li>a {
+        padding: 5px 15px 5px 25px
+    }
+    .navbar-nav .open .dropdown-menu>li>a {
+        line-height: 20px
+    }
+    .navbar-nav .open .dropdown-menu>li>a:focus,
+    .navbar-nav .open .dropdown-menu>li>a:hover {
+        background-image: none
+    }
+}
+
+@media (min-width:768px) {
+    .navbar-nav {
+        float: left;
+        margin: 0
+    }
+    .navbar-nav>li {
+        float: left
+    }
+    .navbar-nav>li>a {
+        padding-top: 15px;
+        padding-bottom: 15px
+    }
+}
+
+.navbar-form {
+    padding: 10px 15px;
+    margin-top: 8px;
+    margin-right: -15px;
+    margin-bottom: 8px;
+    margin-left: -15px;
+    border-top: 1px solid transparent;
+    border-bottom: 1px solid transparent;
+}
+
+@media (min-width:768px) {
+    .navbar-form .form-group {
+        display: inline-block;
+        margin-bottom: 0;
+        vertical-align: middle
+    }
+    .navbar-form .form-control {
+        display: inline-block;
+        width: auto;
+        vertical-align: middle
+    }
+    .navbar-form .form-control-static {
+        display: inline-block
+    }
+    .navbar-form .input-group {
+        display: inline-table;
+        vertical-align: middle
+    }
+    .navbar-form .input-group .form-control,
+    .navbar-form .input-group .input-group-addon,
+    .navbar-form .input-group .input-group-btn {
+        width: auto
+    }
+    .navbar-form .input-group>.form-control {
+        width: 100%
+    }
+    .navbar-form .control-label {
+        margin-bottom: 0;
+        vertical-align: middle
+    }
+    .navbar-form .checkbox,
+    .navbar-form .radio {
+        display: inline-block;
+        margin-top: 0;
+        margin-bottom: 0;
+        vertical-align: middle
+    }
+    .navbar-form .checkbox label,
+    .navbar-form .radio label {
+        padding-left: 0
+    }
+    .navbar-form .checkbox input[type=checkbox],
+    .navbar-form .radio input[type=radio] {
+        position: relative;
+        margin-left: 0
+    }
+    .navbar-form .has-feedback .form-control-feedback {
+        top: 0
+    }
+}
+
+@media (max-width:767px) {
+    .navbar-form .form-group {
+        margin-bottom: 5px
+    }
+    .navbar-form .form-group:last-child {
+        margin-bottom: 0
+    }
+}
+
+@media (min-width:768px) {
+    .navbar-form {
+        width: auto;
+        padding-top: 0;
+        padding-bottom: 0;
+        margin-right: 0;
+        margin-left: 0;
+        border: 0;
+    }
+}
+
+.navbar-nav>li>.dropdown-menu {
+    margin-top: 0;
+    border-top-left-radius: 0;
+    border-top-right-radius: 0
+}
+
+.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
+    margin-bottom: 0;
+    border-top-left-radius: 4px;
+    border-top-right-radius: 4px;
+    border-bottom-right-radius: 0;
+    border-bottom-left-radius: 0
+}
+
+.navbar-btn {
+    margin-top: 8px;
+    margin-bottom: 8px
+}
+
+.navbar-btn.btn-sm {
+    margin-top: 10px;
+    margin-bottom: 10px
+}
+
+.navbar-btn.btn-xs {
+    margin-top: 14px;
+    margin-bottom: 14px
+}
+
+.navbar-text {
+    margin-top: 15px;
+    margin-bottom: 15px
+}
+
+@media (min-width:768px) {
+    .navbar-text {
+        float: left;
+        margin-right: 15px;
+        margin-left: 15px
+    }
+}
+
+@media (min-width:768px) {
+    .navbar-left {
+        float: left!important
+    }
+    .navbar-right {
+        float: right!important;
+        margin-right: -15px
+    }
+    .navbar-right~.navbar-right {
+        margin-right: 0
+    }
+}
+
+.navbar-default {
+    background-color: #f8f8f8;
+    border-color: #e7e7e7
+}
+
+.navbar-default .navbar-brand {
+    color: #777
+}
+
+.navbar-default .navbar-brand:focus,
+.navbar-default .navbar-brand:hover {
+    color: #5e5e5e;
+    background-color: transparent
+}
+
+.navbar-default .navbar-text {
+    color: #777
+}
+
+.navbar-default .navbar-nav>li>a {
+    color: #777
+}
+
+.navbar-default .navbar-nav>li>a:focus,
+.navbar-default .navbar-nav>li>a:hover {
+    color: #333;
+    background-color: transparent
+}
+
+.navbar-default .navbar-nav>.active>a,
+.navbar-default .navbar-nav>.active>a:focus,
+.navbar-default .navbar-nav>.active>a:hover {
+    color: #555;
+    background-color: #e7e7e7
+}
+
+.navbar-default .navbar-nav>.disabled>a,
+.navbar-default .navbar-nav>.disabled>a:focus,
+.navbar-default .navbar-nav>.disabled>a:hover {
+    color: #ccc;
+    background-color: transparent
+}
+
+.navbar-default .navbar-toggle {
+    border-color: #ddd
+}
+
+.navbar-default .navbar-toggle:focus,
+.navbar-default .navbar-toggle:hover {
+    background-color: #ddd
+}
+
+.navbar-default .navbar-toggle .icon-bar {
+    background-color: #888
+}
+
+.navbar-default .navbar-collapse,
+.navbar-default .navbar-form {
+    border-color: #e7e7e7
+}
+
+.navbar-default .navbar-nav>.open>a,
+.navbar-default .navbar-nav>.open>a:focus,
+.navbar-default .navbar-nav>.open>a:hover {
+    color: #555;
+    background-color: #e7e7e7
+}
+
+@media (max-width:767px) {
+    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
+        color: #777
+    }
+    .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,
+    .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
+        color: #333;
+        background-color: transparent
+    }
+    .navbar-default .navbar-nav .open .dropdown-menu>.active>a,
+    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,
+    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover {
+        color: #555;
+        background-color: #e7e7e7
+    }
+    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,
+    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,
+    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover {
+        color: #ccc;
+        background-color: transparent
+    }
+}
+
+.navbar-default .navbar-link {
+    color: #777
+}
+
+.navbar-default .navbar-link:hover {
+    color: #333
+}
+
+.navbar-default .btn-link {
+    color: #777
+}
+
+.navbar-default .btn-link:focus,
+.navbar-default .btn-link:hover {
+    color: #333
+}
+
+.navbar-default .btn-link[disabled]:focus,
+.navbar-default .btn-link[disabled]:hover,
+fieldset[disabled] .navbar-default .btn-link:focus,
+fieldset[disabled] .navbar-default .btn-link:hover {
+    color: #ccc
+}
+
+.navbar-inverse {
+    background-color: #222;
+    border-color: #080808
+}
+
+.navbar-inverse .navbar-brand {
+    color: #9d9d9d
+}
+
+.navbar-inverse .navbar-brand:focus,
+.navbar-inverse .navbar-brand:hover {
+    color: #fff;
+    background-color: transparent
+}
+
+.navbar-inverse .navbar-text {
+    color: #9d9d9d
+}
+
+.navbar-inverse .navbar-nav>li>a {
+    color: #9d9d9d
+}
+
+.navbar-inverse .navbar-nav>li>a:focus,
+.navbar-inverse .navbar-nav>li>a:hover {
+    color: #fff;
+    background-color: transparent
+}
+
+.navbar-inverse .navbar-nav>.active>a,
+.navbar-inverse .navbar-nav>.active>a:focus,
+.navbar-inverse .navbar-nav>.active>a:hover {
+    color: #fff;
+    background-color: #080808
+}
+
+.navbar-inverse .navbar-nav>.disabled>a,
+.navbar-inverse .navbar-nav>.disabled>a:focus,
+.navbar-inverse .navbar-nav>.disabled>a:hover {
+    color: #444;
+    background-color: transparent
+}
+
+.navbar-inverse .navbar-toggle {
+    border-color: #333
+}
+
+.navbar-inverse .navbar-toggle:focus,
+.navbar-inverse .navbar-toggle:hover {
+    background-color: #333
+}
+
+.navbar-inverse .navbar-toggle .icon-bar {
+    background-color: #fff
+}
+
+.navbar-inverse .navbar-collapse,
+.navbar-inverse .navbar-form {
+    border-color: #101010
+}
+
+.navbar-inverse .navbar-nav>.open>a,
+.navbar-inverse .navbar-nav>.open>a:focus,
+.navbar-inverse .navbar-nav>.open>a:hover {
+    color: #fff;
+    background-color: #080808
+}
+
+@media (max-width:767px) {
+    .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header {
+        border-color: #080808
+    }
+    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
+        background-color: #080808
+    }
+    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
+        color: #9d9d9d
+    }
+    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,
+    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover {
+        color: #fff;
+        background-color: transparent
+    }
+    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,
+    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,
+    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover {
+        color: #fff;
+        background-color: #080808
+    }
+    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,
+    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,
+    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover {
+        color: #444;
+        background-color: transparent
+    }
+}
+
+.navbar-inverse .navbar-link {
+    color: #9d9d9d
+}
+
+.navbar-inverse .navbar-link:hover {
+    color: #fff
+}
+
+.navbar-inverse .btn-link {
+    color: #9d9d9d
+}
+
+.navbar-inverse .btn-link:focus,
+.navbar-inverse .btn-link:hover {
+    color: #fff
+}
+
+.navbar-inverse .btn-link[disabled]:focus,
+.navbar-inverse .btn-link[disabled]:hover,
+fieldset[disabled] .navbar-inverse .btn-link:focus,
+fieldset[disabled] .navbar-inverse .btn-link:hover {
+    color: #444
+}
+
+.breadcrumb {
+    padding: 8px 15px;
+    margin-bottom: 20px;
+    list-style: none;
+    background-color: #f5f5f5;
+    border-radius: 4px
+}
+
+.breadcrumb>li {
+    display: inline-block
+}
+
+.breadcrumb>li+li:before {
+    padding: 0 5px;
+    color: #ccc;
+    content: "/\00a0"
+}
+
+.breadcrumb>.active {
+    color: #777
+}
+
+.pagination {
+    display: inline-block;
+    padding-left: 0;
+    margin: 20px 0;
+    border-radius: 4px
+}
+
+.pagination>li {
+    display: inline
+}
+
+.pagination>li>a,
+.pagination>li>span {
+    position: relative;
+    float: left;
+    padding: 6px 12px;
+    margin-left: -1px;
+    line-height: 1.42857143;
+    color: #337ab7;
+    text-decoration: none;
+    background-color: #fff;
+    border: 1px solid #ddd
+}
+
+.pagination>li:first-child>a,
+.pagination>li:first-child>span {
+    margin-left: 0;
+    border-top-left-radius: 4px;
+    border-bottom-left-radius: 4px
+}
+
+.pagination>li:last-child>a,
+.pagination>li:last-child>span {
+    border-top-right-radius: 4px;
+    border-bottom-right-radius: 4px
+}
+
+.pagination>li>a:focus,
+.pagination>li>a:hover,
+.pagination>li>span:focus,
+.pagination>li>span:hover {
+    color: #23527c;
+    background-color: #eee;
+    border-color: #ddd
+}
+
+.pagination>.active>a,
+.pagination>.active>a:focus,
+.pagination>.active>a:hover,
+.pagination>.active>span,
+.pagination>.active>span:focus,
+.pagination>.active>span:hover {
+    z-index: 2;
+    color: #fff;
+    cursor: default;
+    background-color: #337ab7;
+    border-color: #337ab7
+}
+
+.pagination>.disabled>a,
+.pagination>.disabled>a:focus,
+.pagination>.disabled>a:hover,
+.pagination>.disabled>span,
+.pagination>.disabled>span:focus,
+.pagination>.disabled>span:hover {
+    color: #777;
+    cursor: not-allowed;
+    background-color: #fff;
+    border-color: #ddd
+}
+
+.pagination-lg>li>a,
+.pagination-lg>li>span {
+    padding: 10px 16px;
+    font-size: 18px
+}
+
+.pagination-lg>li:first-child>a,
+.pagination-lg>li:first-child>span {
+    border-top-left-radius: 6px;
+    border-bottom-left-radius: 6px
+}
+
+.pagination-lg>li:last-child>a,
+.pagination-lg>li:last-child>span {
+    border-top-right-radius: 6px;
+    border-bottom-right-radius: 6px
+}
+
+.pagination-sm>li>a,
+.pagination-sm>li>span {
+    padding: 5px 10px;
+    font-size: 12px
+}
+
+.pagination-sm>li:first-child>a,
+.pagination-sm>li:first-child>span {
+    border-top-left-radius: 3px;
+    border-bottom-left-radius: 3px
+}
+
+.pagination-sm>li:last-child>a,
+.pagination-sm>li:last-child>span {
+    border-top-right-radius: 3px;
+    border-bottom-right-radius: 3px
+}
+
+.pager {
+    padding-left: 0;
+    margin: 20px 0;
+    text-align: center;
+    list-style: none
+}
+
+.pager li {
+    display: inline
+}
+
+.pager li>a,
+.pager li>span {
+    display: inline-block;
+    padding: 5px 14px;
+    background-color: #fff;
+    border: 1px solid #ddd;
+    border-radius: 15px
+}
+
+.pager li>a:focus,
+.pager li>a:hover {
+    text-decoration: none;
+    background-color: #eee
+}
+
+.pager .next>a,
+.pager .next>span {
+    float: right
+}
+
+.pager .previous>a,
+.pager .previous>span {
+    float: left
+}
+
+.pager .disabled>a,
+.pager .disabled>a:focus,
+.pager .disabled>a:hover,
+.pager .disabled>span {
+    color: #777;
+    cursor: not-allowed;
+    background-color: #fff
+}
+
+.label {
+    display: inline;
+    padding: .2em .6em .3em;
+    font-size: 75%;
+    font-weight: 700;
+    line-height: 1;
+    color: #fff;
+    text-align: center;
+    white-space: nowrap;
+    vertical-align: baseline;
+    border-radius: .25em
+}
+
+a.label:focus,
+a.label:hover {
+    color: #fff;
+    text-decoration: none;
+    cursor: pointer
+}
+
+.label:empty {
+    display: none
+}
+
+.btn .label {
+    position: relative;
+    top: -1px
+}
+
+.label-default {
+    background-color: #777
+}
+
+.label-default[href]:focus,
+.label-default[href]:hover {
+    background-color: #5e5e5e
+}
+
+.label-primary {
+    background-color: #337ab7
+}
+
+.label-primary[href]:focus,
+.label-primary[href]:hover {
+    background-color: #286090
+}
+
+.label-success {
+    background-color: #5cb85c
+}
+
+.label-success[href]:focus,
+.label-success[href]:hover {
+    background-color: #449d44
+}
+
+.label-info {
+    background-color: #5bc0de
+}
+
+.label-info[href]:focus,
+.label-info[href]:hover {
+    background-color: #31b0d5
+}
+
+.label-warning {
+    background-color: #f0ad4e
+}
+
+.label-warning[href]:focus,
+.label-warning[href]:hover {
+    background-color: #ec971f
+}
+
+.label-danger {
+    background-color: #d9534f
+}
+
+.label-danger[href]:focus,
+.label-danger[href]:hover {
+    background-color: #c9302c
+}
+
+.badge {
+    display: inline-block;
+    min-width: 10px;
+    padding: 3px 7px;
+    font-size: 12px;
+    font-weight: 700;
+    line-height: 1;
+    color: #fff;
+    text-align: center;
+    white-space: nowrap;
+    vertical-align: baseline;
+    background-color: #777;
+    border-radius: 10px
+}
+
+.badge:empty {
+    display: none
+}
+
+.btn .badge {
+    position: relative;
+    top: -1px
+}
+
+.btn-xs .badge {
+    top: 0;
+    padding: 1px 5px
+}
+
+a.badge:focus,
+a.badge:hover {
+    color: #fff;
+    text-decoration: none;
+    cursor: pointer
+}
+
+.list-group-item.active>.badge,
+.nav-pills>.active>a>.badge {
+    color: #337ab7;
+    background-color: #fff
+}
+
+.list-group-item>.badge {
+    float: right
+}
+
+.list-group-item>.badge+.badge {
+    margin-right: 5px
+}
+
+.nav-pills>li>a>.badge {
+    margin-left: 3px
+}
+
+.jumbotron {
+    padding: 30px 15px;
+    margin-bottom: 30px;
+    color: inherit;
+    background-color: #eee
+}
+
+.jumbotron .h1,
+.jumbotron h1 {
+    color: inherit
+}
+
+.jumbotron p {
+    margin-bottom: 15px;
+    font-size: 21px;
+    font-weight: 200
+}
+
+.jumbotron>hr {
+    border-top-color: #d5d5d5
+}
+
+.container .jumbotron,
+.container-fluid .jumbotron {
+    border-radius: 6px
+}
+
+.jumbotron .container {
+    max-width: 100%
+}
+
+@media screen and (min-width:768px) {
+    .jumbotron {
+        padding: 48px 0
+    }
+    .container .jumbotron,
+    .container-fluid .jumbotron {
+        padding-right: 60px;
+        padding-left: 60px
+    }
+    .jumbotron .h1,
+    .jumbotron h1 {
+        font-size: 63px
+    }
+}
+
+.thumbnail {
+    display: block;
+    padding: 4px;
+    margin-bottom: 20px;
+    line-height: 1.42857143;
+    background-color: #fff;
+    border: 1px solid #ddd;
+    border-radius: 4px;
+    -webkit-transition: border .2s ease-in-out;
+    -o-transition: border .2s ease-in-out;
+    transition: border .2s ease-in-out
+}
+
+.thumbnail a>img,
+.thumbnail>img {
+    margin-right: auto;
+    margin-left: auto
+}
+
+a.thumbnail.active,
+a.thumbnail:focus,
+a.thumbnail:hover {
+    border-color: #337ab7
+}
+
+.thumbnail .caption {
+    padding: 9px;
+    color: #333
+}
+
+.alert {
+    padding: 15px;
+    margin-bottom: 20px;
+    border: 1px solid transparent;
+    border-radius: 4px
+}
+
+.alert h4 {
+    margin-top: 0;
+    color: inherit
+}
+
+.alert .alert-link {
+    font-weight: 700
+}
+
+.alert>p,
+.alert>ul {
+    margin-bottom: 0
+}
+
+.alert>p+p {
+    margin-top: 5px
+}
+
+.alert-dismissable,
+.alert-dismissible {
+    padding-right: 35px
+}
+
+.alert-dismissable .close,
+.alert-dismissible .close {
+    position: relative;
+    top: -2px;
+    right: -21px;
+    color: inherit
+}
+
+.alert-success {
+    color: #3c763d;
+    background-color: #dff0d8;
+    border-color: #d6e9c6
+}
+
+.alert-success hr {
+    border-top-color: #c9e2b3
+}
+
+.alert-success .alert-link {
+    color: #2b542c
+}
+
+.alert-info {
+    color: #31708f;
+    background-color: #d9edf7;
+    border-color: #bce8f1
+}
+
+.alert-info hr {
+    border-top-color: #a6e1ec
+}
+
+.alert-info .alert-link {
+    color: #245269
+}
+
+.alert-warning {
+    color: #8a6d3b;
+    background-color: #fcf8e3;
+    border-color: #faebcc
+}
+
+.alert-warning hr {
+    border-top-color: #f7e1b5
+}
+
+.alert-warning .alert-link {
+    color: #66512c
+}
+
+.alert-danger {
+    color: #a94442;
+    background-color: #f2dede;
+    border-color: #ebccd1
+}
+
+.alert-danger hr {
+    border-top-color: #e4b9c0
+}
+
+.alert-danger .alert-link {
+    color: #843534
+}
+
+@-webkit-keyframes progress-bar-stripes {
+    from {
+        background-position: 40px 0
+    }
+    to {
+        background-position: 0 0
+    }
+}
+
+@-o-keyframes progress-bar-stripes {
+    from {
+        background-position: 40px 0
+    }
+    to {
+        background-position: 0 0
+    }
+}
+
+@keyframes progress-bar-stripes {
+    from {
+        background-position: 40px 0
+    }
+    to {
+        background-position: 0 0
+    }
+}
+
+.progress {
+    height: 20px;
+    margin-bottom: 20px;
+    overflow: hidden;
+    background-color: #f5f5f5;
+    border-radius: 4px;
+}
+
+.progress-bar {
+    float: left;
+    width: 0;
+    height: 100%;
+    font-size: 12px;
+    line-height: 20px;
+    color: #fff;
+    text-align: center;
+    background-color: #337ab7;
+    -webkit-transition: width .6s ease;
+    -o-transition: width .6s ease;
+    transition: width .6s ease
+}
+
+.progress-bar-striped,
+.progress-striped .progress-bar {
+    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+    -webkit-background-size: 40px 40px;
+    background-size: 40px 40px
+}
+
+.progress-bar.active,
+.progress.active .progress-bar {
+    -webkit-animation: progress-bar-stripes 2s linear infinite;
+    -o-animation: progress-bar-stripes 2s linear infinite;
+    animation: progress-bar-stripes 2s linear infinite
+}
+
+.progress-bar-success {
+    background-color: #5cb85c
+}
+
+.progress-striped .progress-bar-success {
+    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
+}
+
+.progress-bar-info {
+    background-color: #5bc0de
+}
+
+.progress-striped .progress-bar-info {
+    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
+}
+
+.progress-bar-warning {
+    background-color: #f0ad4e
+}
+
+.progress-striped .progress-bar-warning {
+    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
+}
+
+.progress-bar-danger {
+    background-color: #d9534f
+}
+
+.progress-striped .progress-bar-danger {
+    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
+}
+
+.media {
+    margin-top: 15px
+}
+
+.media:first-child {
+    margin-top: 0
+}
+
+.media,
+.media-body {
+    overflow: hidden;
+    zoom: 1
+}
+
+.media-body {
+    width: 10000px
+}
+
+.media-object {
+    display: block
+}
+
+.media-right,
+.media>.pull-right {
+    padding-left: 10px
+}
+
+.media-left,
+.media>.pull-left {
+    padding-right: 10px
+}
+
+.media-body,
+.media-left,
+.media-right {
+    display: table-cell;
+    vertical-align: top
+}
+
+.media-middle {
+    vertical-align: middle
+}
+
+.media-bottom {
+    vertical-align: bottom
+}
+
+.media-heading {
+    margin-top: 0;
+    margin-bottom: 5px
+}
+
+.media-list {
+    padding-left: 0;
+    list-style: none
+}
+
+.list-group {
+    padding-left: 0;
+    margin-bottom: 20px
+}
+
+.list-group-item {
+    position: relative;
+    display: block;
+    padding: 10px 15px;
+    margin-bottom: -1px;
+    background-color: #fff;
+    border: 1px solid #ddd
+}
+
+.list-group-item:first-child {
+    border-top-left-radius: 4px;
+    border-top-right-radius: 4px
+}
+
+.list-group-item:last-child {
+    margin-bottom: 0;
+    border-bottom-right-radius: 4px;
+    border-bottom-left-radius: 4px
+}
+
+a.list-group-item {
+    color: #555
+}
+
+a.list-group-item .list-group-item-heading {
+    color: #333
+}
+
+a.list-group-item:focus,
+a.list-group-item:hover {
+    color: #555;
+    text-decoration: none;
+    background-color: #f5f5f5
+}
+
+.list-group-item.disabled,
+.list-group-item.disabled:focus,
+.list-group-item.disabled:hover {
+    color: #777;
+    cursor: not-allowed;
+    background-color: #eee
+}
+
+.list-group-item.disabled .list-group-item-heading,
+.list-group-item.disabled:focus .list-group-item-heading,
+.list-group-item.disabled:hover .list-group-item-heading {
+    color: inherit
+}
+
+.list-group-item.disabled .list-group-item-text,
+.list-group-item.disabled:focus .list-group-item-text,
+.list-group-item.disabled:hover .list-group-item-text {
+    color: #777
+}
+
+.list-group-item.active,
+.list-group-item.active:focus,
+.list-group-item.active:hover {
+    z-index: 2;
+    color: #fff;
+    background-color: #337ab7;
+    border-color: #337ab7
+}
+
+.list-group-item.active .list-group-item-heading,
+.list-group-item.active .list-group-item-heading>.small,
+.list-group-item.active .list-group-item-heading>small,
+.list-group-item.active:focus .list-group-item-heading,
+.list-group-item.active:focus .list-group-item-heading>.small,
+.list-group-item.active:focus .list-group-item-heading>small,
+.list-group-item.active:hover .list-group-item-heading,
+.list-group-item.active:hover .list-group-item-heading>.small,
+.list-group-item.active:hover .list-group-item-heading>small {
+    color: inherit
+}
+
+.list-group-item.active .list-group-item-text,
+.list-group-item.active:focus .list-group-item-text,
+.list-group-item.active:hover .list-group-item-text {
+    color: #c7ddef
+}
+
+.list-group-item-success {
+    color: #3c763d;
+    background-color: #dff0d8
+}
+
+a.list-group-item-success {
+    color: #3c763d
+}
+
+a.list-group-item-success .list-group-item-heading {
+    color: inherit
+}
+
+a.list-group-item-success:focus,
+a.list-group-item-success:hover {
+    color: #3c763d;
+    background-color: #d0e9c6
+}
+
+a.list-group-item-success.active,
+a.list-group-item-success.active:focus,
+a.list-group-item-success.active:hover {
+    color: #fff;
+    background-color: #3c763d;
+    border-color: #3c763d
+}
+
+.list-group-item-info {
+    color: #31708f;
+    background-color: #d9edf7
+}
+
+a.list-group-item-info {
+    color: #31708f
+}
+
+a.list-group-item-info .list-group-item-heading {
+    color: inherit
+}
+
+a.list-group-item-info:focus,
+a.list-group-item-info:hover {
+    color: #31708f;
+    background-color: #c4e3f3
+}
+
+a.list-group-item-info.active,
+a.list-group-item-info.active:focus,
+a.list-group-item-info.active:hover {
+    color: #fff;
+    background-color: #31708f;
+    border-color: #31708f
+}
+
+.list-group-item-warning {
+    color: #8a6d3b;
+    background-color: #fcf8e3
+}
+
+a.list-group-item-warning {
+    color: #8a6d3b
+}
+
+a.list-group-item-warning .list-group-item-heading {
+    color: inherit
+}
+
+a.list-group-item-warning:focus,
+a.list-group-item-warning:hover {
+    color: #8a6d3b;
+    background-color: #faf2cc
+}
+
+a.list-group-item-warning.active,
+a.list-group-item-warning.active:focus,
+a.list-group-item-warning.active:hover {
+    color: #fff;
+    background-color: #8a6d3b;
+    border-color: #8a6d3b
+}
+
+.list-group-item-danger {
+    color: #a94442;
+    background-color: #f2dede
+}
+
+a.list-group-item-danger {
+    color: #a94442
+}
+
+a.list-group-item-danger .list-group-item-heading {
+    color: inherit
+}
+
+a.list-group-item-danger:focus,
+a.list-group-item-danger:hover {
+    color: #a94442;
+    background-color: #ebcccc
+}
+
+a.list-group-item-danger.active,
+a.list-group-item-danger.active:focus,
+a.list-group-item-danger.active:hover {
+    color: #fff;
+    background-color: #a94442;
+    border-color: #a94442
+}
+
+.list-group-item-heading {
+    margin-top: 0;
+    margin-bottom: 5px
+}
+
+.list-group-item-text {
+    margin-bottom: 0;
+    line-height: 1.3
+}
+
+.panel {
+    margin-bottom: 20px;
+    background-color: #fff;
+    border: 1px solid transparent;
+    border-radius: 4px;
+}
+
+.panel-body {
+    padding: 15px
+}
+
+.panel-heading {
+    padding: 10px 15px;
+    border-bottom: 1px solid transparent;
+    border-top-left-radius: 3px;
+    border-top-right-radius: 3px
+}
+
+.panel-heading>.dropdown .dropdown-toggle {
+    color: inherit
+}
+
+.panel-title {
+    margin-top: 0;
+    margin-bottom: 0;
+    font-size: 16px;
+    color: inherit
+}
+
+.panel-title>.small,
+.panel-title>.small>a,
+.panel-title>a,
+.panel-title>small,
+.panel-title>small>a {
+    color: inherit
+}
+
+.panel-footer {
+    padding: 10px 15px;
+    background-color: #f5f5f5;
+    border-top: 1px solid #ddd;
+    border-bottom-right-radius: 3px;
+    border-bottom-left-radius: 3px
+}
+
+.panel>.list-group,
+.panel>.panel-collapse>.list-group {
+    margin-bottom: 0
+}
+
+.panel>.list-group .list-group-item,
+.panel>.panel-collapse>.list-group .list-group-item {
+    border-width: 1px 0;
+    border-radius: 0
+}
+
+.panel>.list-group:first-child .list-group-item:first-child,
+.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child {
+    border-top: 0;
+    border-top-left-radius: 3px;
+    border-top-right-radius: 3px
+}
+
+.panel>.list-group:last-child .list-group-item:last-child,
+.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child {
+    border-bottom: 0;
+    border-bottom-right-radius: 3px;
+    border-bottom-left-radius: 3px
+}
+
+.panel-heading+.list-group .list-group-item:first-child {
+    border-top-width: 0
+}
+
+.list-group+.panel-footer {
+    border-top-width: 0
+}
+
+.panel>.panel-collapse>.table,
+.panel>.table,
+.panel>.table-responsive>.table {
+    margin-bottom: 0
+}
+
+.panel>.panel-collapse>.table caption,
+.panel>.table caption,
+.panel>.table-responsive>.table caption {
+    padding-right: 15px;
+    padding-left: 15px
+}
+
+.panel>.table-responsive:first-child>.table:first-child,
+.panel>.table:first-child {
+    border-top-left-radius: 3px;
+    border-top-right-radius: 3px
+}
+
+.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,
+.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,
+.panel>.table:first-child>tbody:first-child>tr:first-child,
+.panel>.table:first-child>thead:first-child>tr:first-child {
+    border-top-left-radius: 3px;
+    border-top-right-radius: 3px
+}
+
+.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,
+.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,
+.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,
+.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,
+.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,
+.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,
+.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,
+.panel>.table:first-child>thead:first-child>tr:first-child th:first-child {
+    border-top-left-radius: 3px
+}
+
+.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,
+.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,
+.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,
+.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,
+.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,
+.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,
+.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,
+.panel>.table:first-child>thead:first-child>tr:first-child th:last-child {
+    border-top-right-radius: 3px
+}
+
+.panel>.table-responsive:last-child>.table:last-child,
+.panel>.table:last-child {
+    border-bottom-right-radius: 3px;
+    border-bottom-left-radius: 3px
+}
+
+.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,
+.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,
+.panel>.table:last-child>tbody:last-child>tr:last-child,
+.panel>.table:last-child>tfoot:last-child>tr:last-child {
+    border-bottom-right-radius: 3px;
+    border-bottom-left-radius: 3px
+}
+
+.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,
+.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,
+.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
+.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,
+.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,
+.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,
+.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
+.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child {
+    border-bottom-left-radius: 3px
+}
+
+.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,
+.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,
+.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
+.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,
+.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,
+.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,
+.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
+.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child {
+    border-bottom-right-radius: 3px
+}
+
+.panel>.panel-body+.table,
+.panel>.panel-body+.table-responsive,
+.panel>.table+.panel-body,
+.panel>.table-responsive+.panel-body {
+    border-top: 1px solid #ddd
+}
+
+.panel>.table>tbody:first-child>tr:first-child td,
+.panel>.table>tbody:first-child>tr:first-child th {
+    border-top: 0
+}
+
+.panel>.table-bordered,
+.panel>.table-responsive>.table-bordered {
+    border: 0
+}
+
+.panel>.table-bordered>tbody>tr>td:first-child,
+.panel>.table-bordered>tbody>tr>th:first-child,
+.panel>.table-bordered>tfoot>tr>td:first-child,
+.panel>.table-bordered>tfoot>tr>th:first-child,
+.panel>.table-bordered>thead>tr>td:first-child,
+.panel>.table-bordered>thead>tr>th:first-child,
+.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,
+.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,
+.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,
+.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,
+.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,
+.panel>.table-responsive>.table-bordered>thead>tr>th:first-child {
+    border-left: 0
+}
+
+.panel>.table-bordered>tbody>tr>td:last-child,
+.panel>.table-bordered>tbody>tr>th:last-child,
+.panel>.table-bordered>tfoot>tr>td:last-child,
+.panel>.table-bordered>tfoot>tr>th:last-child,
+.panel>.table-bordered>thead>tr>td:last-child,
+.panel>.table-bordered>thead>tr>th:last-child,
+.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,
+.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,
+.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,
+.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,
+.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,
+.panel>.table-responsive>.table-bordered>thead>tr>th:last-child {
+    border-right: 0
+}
+
+.panel>.table-bordered>tbody>tr:first-child>td,
+.panel>.table-bordered>tbody>tr:first-child>th,
+.panel>.table-bordered>thead>tr:first-child>td,
+.panel>.table-bordered>thead>tr:first-child>th,
+.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,
+.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,
+.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,
+.panel>.table-responsive>.table-bordered>thead>tr:first-child>th {
+    border-bottom: 0
+}
+
+.panel>.table-bordered>tbody>tr:last-child>td,
+.panel>.table-bordered>tbody>tr:last-child>th,
+.panel>.table-bordered>tfoot>tr:last-child>td,
+.panel>.table-bordered>tfoot>tr:last-child>th,
+.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,
+.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,
+.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,
+.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th {
+    border-bottom: 0
+}
+
+.panel>.table-responsive {
+    margin-bottom: 0;
+    border: 0
+}
+
+.panel-group {
+    margin-bottom: 20px
+}
+
+.panel-group .panel {
+    margin-bottom: 0;
+    border-radius: 4px
+}
+
+.panel-group .panel+.panel {
+    margin-top: 5px
+}
+
+.panel-group .panel-heading {
+    border-bottom: 0
+}
+
+.panel-group .panel-heading+.panel-collapse>.list-group,
+.panel-group .panel-heading+.panel-collapse>.panel-body {
+    border-top: 1px solid #ddd
+}
+
+.panel-group .panel-footer {
+    border-top: 0
+}
+
+.panel-group .panel-footer+.panel-collapse .panel-body {
+    border-bottom: 1px solid #ddd
+}
+
+.panel-default {
+    border-color: #ddd
+}
+
+.panel-default>.panel-heading {
+    color: #333;
+    background-color: #f5f5f5;
+    border-color: #ddd
+}
+
+.panel-default>.panel-heading+.panel-collapse>.panel-body {
+    border-top-color: #ddd
+}
+
+.panel-default>.panel-heading .badge {
+    color: #f5f5f5;
+    background-color: #333
+}
+
+.panel-default>.panel-footer+.panel-collapse>.panel-body {
+    border-bottom-color: #ddd
+}
+
+.panel-primary {
+    border-color: #337ab7
+}
+
+.panel-primary>.panel-heading {
+    color: #fff;
+    background-color: #337ab7;
+    border-color: #337ab7
+}
+
+.panel-primary>.panel-heading+.panel-collapse>.panel-body {
+    border-top-color: #337ab7
+}
+
+.panel-primary>.panel-heading .badge {
+    color: #337ab7;
+    background-color: #fff
+}
+
+.panel-primary>.panel-footer+.panel-collapse>.panel-body {
+    border-bottom-color: #337ab7
+}
+
+.panel-success {
+    border-color: #d6e9c6
+}
+
+.panel-success>.panel-heading {
+    color: #3c763d;
+    background-color: #dff0d8;
+    border-color: #d6e9c6
+}
+
+.panel-success>.panel-heading+.panel-collapse>.panel-body {
+    border-top-color: #d6e9c6
+}
+
+.panel-success>.panel-heading .badge {
+    color: #dff0d8;
+    background-color: #3c763d
+}
+
+.panel-success>.panel-footer+.panel-collapse>.panel-body {
+    border-bottom-color: #d6e9c6
+}
+
+.panel-info {
+    border-color: #bce8f1
+}
+
+.panel-info>.panel-heading {
+    color: #31708f;
+    background-color: #d9edf7;
+    border-color: #bce8f1
+}
+
+.panel-info>.panel-heading+.panel-collapse>.panel-body {
+    border-top-color: #bce8f1
+}
+
+.panel-info>.panel-heading .badge {
+    color: #d9edf7;
+    background-color: #31708f
+}
+
+.panel-info>.panel-footer+.panel-collapse>.panel-body {
+    border-bottom-color: #bce8f1
+}
+
+.panel-warning {
+    border-color: #faebcc
+}
+
+.panel-warning>.panel-heading {
+    color: #8a6d3b;
+    background-color: #fcf8e3;
+    border-color: #faebcc
+}
+
+.panel-warning>.panel-heading+.panel-collapse>.panel-body {
+    border-top-color: #faebcc
+}
+
+.panel-warning>.panel-heading .badge {
+    color: #fcf8e3;
+    background-color: #8a6d3b
+}
+
+.panel-warning>.panel-footer+.panel-collapse>.panel-body {
+    border-bottom-color: #faebcc
+}
+
+.panel-danger {
+    border-color: #ebccd1
+}
+
+.panel-danger>.panel-heading {
+    color: #a94442;
+    background-color: #f2dede;
+    border-color: #ebccd1
+}
+
+.panel-danger>.panel-heading+.panel-collapse>.panel-body {
+    border-top-color: #ebccd1
+}
+
+.panel-danger>.panel-heading .badge {
+    color: #f2dede;
+    background-color: #a94442
+}
+
+.panel-danger>.panel-footer+.panel-collapse>.panel-body {
+    border-bottom-color: #ebccd1
+}
+
+.embed-responsive {
+    position: relative;
+    display: block;
+    height: 0;
+    padding: 0;
+    overflow: hidden
+}
+
+.embed-responsive .embed-responsive-item,
+.embed-responsive embed,
+.embed-responsive iframe,
+.embed-responsive object,
+.embed-responsive video {
+    position: absolute;
+    top: 0;
+    bottom: 0;
+    left: 0;
+    width: 100%;
+    height: 100%;
+    border: 0
+}
+
+.embed-responsive.embed-responsive-16by9 {
+    padding-bottom: 56.25%
+}
+
+.embed-responsive.embed-responsive-4by3 {
+    padding-bottom: 75%
+}
+
+.well {
+    min-height: 20px;
+    padding: 19px;
+    margin-bottom: 20px;
+    background-color: #f5f5f5;
+    border: 1px solid #e3e3e3;
+    border-radius: 4px;
+}
+
+.well blockquote {
+    border-color: #ddd;
+    border-color: rgba(0, 0, 0, .15)
+}
+
+.well-lg {
+    padding: 24px;
+    border-radius: 6px
+}
+
+.well-sm {
+    padding: 9px;
+    border-radius: 3px
+}
+
+.close {
+    float: right;
+    font-size: 21px;
+    font-weight: 700;
+    line-height: 1;
+    color: #000;
+    filter: alpha(opacity=20);
+    opacity: .2
+}
+
+.close:focus,
+.close:hover {
+    color: #000;
+    text-decoration: none;
+    cursor: pointer;
+    filter: alpha(opacity=50);
+    opacity: .5
+}
+
+button.close {
+    -webkit-appearance: none;
+    padding: 0;
+    cursor: pointer;
+    background: 0 0;
+    border: 0
+}
+
+.modal-open {
+    overflow: hidden
+}
+
+.modal {
+    position: fixed;
+    top: 0;
+    right: 0;
+    bottom: 0;
+    left: 0;
+    z-index: 1040;
+    display: none;
+    overflow: hidden;
+    -webkit-overflow-scrolling: touch;
+    outline: 0
+}
+
+.modal.fade .modal-dialog {
+    -webkit-transition: -webkit-transform .3s ease-out;
+    -o-transition: -o-transform .3s ease-out;
+    transition: transform .3s ease-out;
+    -webkit-transform: translate(0, -25%);
+    -ms-transform: translate(0, -25%);
+    -o-transform: translate(0, -25%);
+    transform: translate(0, -25%)
+}
+
+.modal.in .modal-dialog {
+    -webkit-transform: translate(0, 0);
+    -ms-transform: translate(0, 0);
+    -o-transform: translate(0, 0);
+    transform: translate(0, 0)
+}
+
+.modal-open .modal {
+    overflow-x: hidden;
+    overflow-y: auto
+}
+
+.modal-dialog {
+    position: relative;
+    width: auto;
+    margin: 10px
+}
+
+.modal-content {
+    position: relative;
+    background-color: #fff;
+    -webkit-background-clip: padding-box;
+    background-clip: padding-box;
+    border: 1px solid #999;
+    border: 1px solid rgba(0, 0, 0, .2);
+    border-radius: 6px;
+    outline: 0;
+}
+
+.modal-backdrop {
+    position: absolute;
+    top: 0;
+    right: 0;
+    left: 0;
+    background-color: #000
+}
+
+.modal-backdrop.fade {
+    filter: alpha(opacity=0);
+    opacity: 0
+}
+
+.modal-backdrop.in {
+    filter: alpha(opacity=50);
+    opacity: .5
+}
+
+.modal-header {
+    min-height: 16.43px;
+    padding: 15px;
+    border-bottom: 1px solid #e5e5e5
+}
+
+.modal-header .close {
+    margin-top: -2px
+}
+
+.modal-title {
+    margin: 0;
+    line-height: 1.42857143
+}
+
+.modal-body {
+    position: relative;
+    padding: 15px
+}
+
+.modal-footer {
+    padding: 15px;
+    text-align: right;
+    border-top: 1px solid #e5e5e5
+}
+
+.modal-footer .btn+.btn {
+    margin-bottom: 0;
+    margin-left: 5px
+}
+
+.modal-footer .btn-group .btn+.btn {
+    margin-left: -1px
+}
+
+.modal-footer .btn-block+.btn-block {
+    margin-left: 0
+}
+
+.modal-scrollbar-measure {
+    position: absolute;
+    top: -9999px;
+    width: 50px;
+    height: 50px;
+    overflow: scroll
+}
+
+@media (min-width:768px) {
+    .modal-dialog {
+        width: 600px;
+        margin: 30px auto
+    }
+    .modal-content {
+    }
+    .modal-sm {
+        width: 300px
+    }
+}
+
+@media (min-width:992px) {
+    .modal-lg {
+        width: 900px
+    }
+}
+
+.tooltip {
+    position: absolute;
+    z-index: 1070;
+    display: block;
+    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+    font-size: 12px;
+    font-weight: 400;
+    line-height: 1.4;
+    visibility: visible;
+    filter: alpha(opacity=0);
+    opacity: 0
+}
+
+.tooltip.in {
+    filter: alpha(opacity=90);
+    opacity: .9
+}
+
+.tooltip.top {
+    padding: 5px 0;
+    margin-top: -3px
+}
+
+.tooltip.right {
+    padding: 0 5px;
+    margin-left: 3px
+}
+
+.tooltip.bottom {
+    padding: 5px 0;
+    margin-top: 3px
+}
+
+.tooltip.left {
+    padding: 0 5px;
+    margin-left: -3px
+}
+
+.tooltip-inner {
+    max-width: 200px;
+    padding: 3px 8px;
+    color: #fff;
+    text-align: center;
+    text-decoration: none;
+    background-color: #000;
+    border-radius: 4px
+}
+
+.tooltip-arrow {
+    position: absolute;
+    width: 0;
+    height: 0;
+    border-color: transparent;
+    border-style: solid
+}
+
+.tooltip.top .tooltip-arrow {
+    bottom: 0;
+    left: 50%;
+    margin-left: -5px;
+    border-width: 5px 5px 0;
+    border-top-color: #000
+}
+
+.tooltip.top-left .tooltip-arrow {
+    right: 5px;
+    bottom: 0;
+    margin-bottom: -5px;
+    border-width: 5px 5px 0;
+    border-top-color: #000
+}
+
+.tooltip.top-right .tooltip-arrow {
+    bottom: 0;
+    left: 5px;
+    margin-bottom: -5px;
+    border-width: 5px 5px 0;
+    border-top-color: #000
+}
+
+.tooltip.right .tooltip-arrow {
+    top: 50%;
+    left: 0;
+    margin-top: -5px;
+    border-width: 5px 5px 5px 0;
+    border-right-color: #000
+}
+
+.tooltip.left .tooltip-arrow {
+    top: 50%;
+    right: 0;
+    margin-top: -5px;
+    border-width: 5px 0 5px 5px;
+    border-left-color: #000
+}
+
+.tooltip.bottom .tooltip-arrow {
+    top: 0;
+    left: 50%;
+    margin-left: -5px;
+    border-width: 0 5px 5px;
+    border-bottom-color: #000
+}
+
+.tooltip.bottom-left .tooltip-arrow {
+    top: 0;
+    right: 5px;
+    margin-top: -5px;
+    border-width: 0 5px 5px;
+    border-bottom-color: #000
+}
+
+.tooltip.bottom-right .tooltip-arrow {
+    top: 0;
+    left: 5px;
+    margin-top: -5px;
+    border-width: 0 5px 5px;
+    border-bottom-color: #000
+}
+
+.popover {
+    position: absolute;
+    top: 0;
+    left: 0;
+    z-index: 1060;
+    display: none;
+    max-width: 276px;
+    padding: 1px;
+    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+    font-size: 14px;
+    font-weight: 400;
+    line-height: 1.42857143;
+    text-align: left;
+    white-space: normal;
+    background-color: #fff;
+    -webkit-background-clip: padding-box;
+    background-clip: padding-box;
+    border: 1px solid #ccc;
+    border: 1px solid rgba(0, 0, 0, .2);
+    border-radius: 6px;
+}
+
+.popover.top {
+    margin-top: -10px
+}
+
+.popover.right {
+    margin-left: 10px
+}
+
+.popover.bottom {
+    margin-top: 10px
+}
+
+.popover.left {
+    margin-left: -10px
+}
+
+.popover-title {
+    padding: 8px 14px;
+    margin: 0;
+    font-size: 14px;
+    background-color: #f7f7f7;
+    border-bottom: 1px solid #ebebeb;
+    border-radius: 5px 5px 0 0
+}
+
+.popover-content {
+    padding: 9px 14px
+}
+
+.popover>.arrow,
+.popover>.arrow:after {
+    position: absolute;
+    display: block;
+    width: 0;
+    height: 0;
+    border-color: transparent;
+    border-style: solid
+}
+
+.popover>.arrow {
+    border-width: 11px
+}
+
+.popover>.arrow:after {
+    content: "";
+    border-width: 10px
+}
+
+.popover.top>.arrow {
+    bottom: -11px;
+    left: 50%;
+    margin-left: -11px;
+    border-top-color: #999;
+    border-top-color: rgba(0, 0, 0, .25);
+    border-bottom-width: 0
+}
+
+.popover.top>.arrow:after {
+    bottom: 1px;
+    margin-left: -10px;
+    content: " ";
+    border-top-color: #fff;
+    border-bottom-width: 0
+}
+
+.popover.right>.arrow {
+    top: 50%;
+    left: -11px;
+    margin-top: -11px;
+    border-right-color: #999;
+    border-right-color: rgba(0, 0, 0, .25);
+    border-left-width: 0
+}
+
+.popover.right>.arrow:after {
+    bottom: -10px;
+    left: 1px;
+    content: " ";
+    border-right-color: #fff;
+    border-left-width: 0
+}
+
+.popover.bottom>.arrow {
+    top: -11px;
+    left: 50%;
+    margin-left: -11px;
+    border-top-width: 0;
+    border-bottom-color: #999;
+    border-bottom-color: rgba(0, 0, 0, .25)
+}
+
+.popover.bottom>.arrow:after {
+    top: 1px;
+    margin-left: -10px;
+    content: " ";
+    border-top-width: 0;
+    border-bottom-color: #fff
+}
+
+.popover.left>.arrow {
+    top: 50%;
+    right: -11px;
+    margin-top: -11px;
+    border-right-width: 0;
+    border-left-color: #999;
+    border-left-color: rgba(0, 0, 0, .25)
+}
+
+.popover.left>.arrow:after {
+    right: 1px;
+    bottom: -10px;
+    content: " ";
+    border-right-width: 0;
+    border-left-color: #fff
+}
+
+
+@media screen and (min-width:768px) {
+    .carousel-control .glyphicon-chevron-left,
+    .carousel-control .glyphicon-chevron-right,
+    .carousel-control .icon-next,
+    .carousel-control .icon-prev {
+        width: 30px;
+        height: 30px;
+        margin-top: -15px;
+        font-size: 30px
+    }
+    .carousel-control .glyphicon-chevron-left,
+    .carousel-control .icon-prev {
+        margin-left: -15px
+    }
+    .carousel-control .glyphicon-chevron-right,
+    .carousel-control .icon-next {
+        margin-right: -15px
+    }
+    .carousel-caption {
+        right: 20%;
+        left: 20%;
+        padding-bottom: 30px
+    }
+    .carousel-indicators {
+        bottom: 20px
+    }
+}
+
+.btn-group-vertical>.btn-group:after,
+.btn-group-vertical>.btn-group:before,
+.btn-toolbar:after,
+.btn-toolbar:before,
+.clearfix:after,
+.clearfix:before,
+.container-fluid:after,
+.container-fluid:before,
+.container:after,
+.container:before,
+.dl-horizontal dd:after,
+.dl-horizontal dd:before,
+.form-horizontal .form-group:after,
+.form-horizontal .form-group:before,
+.modal-footer:after,
+.modal-footer:before,
+.nav:after,
+.nav:before,
+.navbar-collapse:after,
+.navbar-collapse:before,
+.navbar-header:after,
+.navbar-header:before,
+.navbar:after,
+.navbar:before,
+.pager:after,
+.pager:before,
+.panel-body:after,
+.panel-body:before,
+.row:after,
+.row:before {
+    display: table;
+    content: " "
+}
+
+.btn-group-vertical>.btn-group:after,
+.btn-toolbar:after,
+.clearfix:after,
+.container-fluid:after,
+.container:after,
+.dl-horizontal dd:after,
+.form-horizontal .form-group:after,
+.modal-footer:after,
+.nav:after,
+.navbar-collapse:after,
+.navbar-header:after,
+.navbar:after,
+.pager:after,
+.panel-body:after,
+.row:after {
+    clear: both
+}
+
+.center-block {
+    display: block;
+    margin-right: auto;
+    margin-left: auto
+}
+
+.pull-right {
+    float: right!important
+}
+
+.pull-left {
+    float: left!important
+}
+
+.hide {
+    display: none!important
+}
+
+.show {
+    display: block!important
+}
+
+.invisible {
+    visibility: hidden
+}
+
+.text-hide {
+    font: 0/0 a;
+    color: transparent;
+    background-color: transparent;
+    border: 0
+}
+
+.hidden {
+    display: none!important;
+    visibility: hidden!important
+}
+
+.affix {
+    position: fixed
+}
+
+@-ms-viewport {
+    width: device-width
+}
+
+.visible-lg,
+.visible-md,
+.visible-sm,
+.visible-xs {
+    display: none!important
+}
+
+.visible-lg-block,
+.visible-lg-inline,
+.visible-lg-inline-block,
+.visible-md-block,
+.visible-md-inline,
+.visible-md-inline-block,
+.visible-sm-block,
+.visible-sm-inline,
+.visible-sm-inline-block,
+.visible-xs-block,
+.visible-xs-inline,
+.visible-xs-inline-block {
+    display: none!important
+}
+
+@media (max-width:767px) {
+    .visible-xs {
+        display: block!important
+    }
+    table.visible-xs {
+        display: table
+    }
+    tr.visible-xs {
+        display: table-row!important
+    }
+    td.visible-xs,
+    th.visible-xs {
+        display: table-cell!important
+    }
+}
+
+@media (max-width:767px) {
+    .visible-xs-block {
+        display: block!important
+    }
+}
+
+@media (max-width:767px) {
+    .visible-xs-inline {
+        display: inline!important
+    }
+}
+
+@media (max-width:767px) {
+    .visible-xs-inline-block {
+        display: inline-block!important
+    }
+}
+
+@media (min-width:768px) and (max-width:991px) {
+    .visible-sm {
+        display: block!important
+    }
+    table.visible-sm {
+        display: table
+    }
+    tr.visible-sm {
+        display: table-row!important
+    }
+    td.visible-sm,
+    th.visible-sm {
+        display: table-cell!important
+    }
+}
+
+@media (min-width:768px) and (max-width:991px) {
+    .visible-sm-block {
+        display: block!important
+    }
+}
+
+@media (min-width:768px) and (max-width:991px) {
+    .visible-sm-inline {
+        display: inline!important
+    }
+}
+
+@media (min-width:768px) and (max-width:991px) {
+    .visible-sm-inline-block {
+        display: inline-block!important
+    }
+}
+
+@media (min-width:992px) and (max-width:1199px) {
+    .visible-md {
+        display: block!important
+    }
+    table.visible-md {
+        display: table
+    }
+    tr.visible-md {
+        display: table-row!important
+    }
+    td.visible-md,
+    th.visible-md {
+        display: table-cell!important
+    }
+}
+
+@media (min-width:992px) and (max-width:1199px) {
+    .visible-md-block {
+        display: block!important
+    }
+}
+
+@media (min-width:992px) and (max-width:1199px) {
+    .visible-md-inline {
+        display: inline!important
+    }
+}
+
+@media (min-width:992px) and (max-width:1199px) {
+    .visible-md-inline-block {
+        display: inline-block!important
+    }
+}
+
+@media (min-width:1200px) {
+    .visible-lg {
+        display: block!important
+    }
+    table.visible-lg {
+        display: table
+    }
+    tr.visible-lg {
+        display: table-row!important
+    }
+    td.visible-lg,
+    th.visible-lg {
+        display: table-cell!important
+    }
+}
+
+@media (min-width:1200px) {
+    .visible-lg-block {
+        display: block!important
+    }
+}
+
+@media (min-width:1200px) {
+    .visible-lg-inline {
+        display: inline!important
+    }
+}
+
+@media (min-width:1200px) {
+    .visible-lg-inline-block {
+        display: inline-block!important
+    }
+}
+
+@media (max-width:767px) {
+    .hidden-xs {
+        display: none!important
+    }
+}
+
+@media (min-width:768px) and (max-width:991px) {
+    .hidden-sm {
+        display: none!important
+    }
+}
+
+@media (min-width:992px) and (max-width:1199px) {
+    .hidden-md {
+        display: none!important
+    }
+}
+
+@media (min-width:1200px) {
+    .hidden-lg {
+        display: none!important
+    }
+}
+
+.visible-print {
+    display: none!important
+}
+
+@media print {
+    .visible-print {
+        display: block!important
+    }
+    table.visible-print {
+        display: table
+    }
+    tr.visible-print {
+        display: table-row!important
+    }
+    td.visible-print,
+    th.visible-print {
+        display: table-cell!important
+    }
+}
+
+.visible-print-block {
+    display: none!important
+}
+
+@media print {
+    .visible-print-block {
+        display: block!important
+    }
+}
+
+.visible-print-inline {
+    display: none!important
+}
+
+@media print {
+    .visible-print-inline {
+        display: inline!important
+    }
+}
+
+.visible-print-inline-block {
+    display: none!important
+}
+
+@media print {
+    .visible-print-inline-block {
+        display: inline-block!important
+    }
+}
+
+@media print {
+    .hidden-print {
+        display: none!important
+    }
+}
diff --git a/css/boxshadowproperties.css b/css/boxshadowproperties.css
new file mode 100644
index 0000000000000000000000000000000000000000..0f2e1e6db35ae1e6d1e0996024397de8247be522
--- /dev/null
+++ b/css/boxshadowproperties.css
@@ -0,0 +1,24 @@
+/* box-shadow fonts return errors with prince, so extracting here to put in web output only */
+
+#search-demo-container ul#results-container {
+    box-shadow: 2px 3px 2px #dedede;
+}
+
+
+hr.shaded {
+    box-shadow: inset 0 6px 6px -6px rgba(0,0,0,0.5);
+}
+
+.videoThumbs img {
+    box-shadow: 2px 2px 1px #f0f0f0;
+}
+
+.box {
+    box-shadow: 2px 2px 4px #dedede;
+}
+
+@media (max-width: 1200px) {
+    .navbar-collapse {
+        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
+    }
+}
diff --git a/css/customstyles.css b/css/customstyles.css
new file mode 100644
index 0000000000000000000000000000000000000000..908a22410b548af1bea49e602a3c76e155234868
--- /dev/null
+++ b/css/customstyles.css
@@ -0,0 +1,1200 @@
+body {
+    font-size:15px;
+}
+
+.bs-callout {
+    padding: 20px;
+    margin: 20px 0;
+    border: 1px solid #eee;
+    border-left-width: 5px;
+    border-radius: 3px;
+}
+.bs-callout h4 {
+    margin-top: 0;
+    margin-bottom: 5px;
+}
+.bs-callout p:last-child {
+    margin-bottom: 0;
+}
+.bs-callout code {
+    border-radius: 3px;
+}
+.bs-callout+.bs-callout {
+    margin-top: -5px;
+}
+.bs-callout-default {
+    border-left-color: #777;
+}
+.bs-callout-default h4 {
+    color: #777;
+}
+.bs-callout-primary {
+    border-left-color: #428bca;
+}
+.bs-callout-primary h4 {
+    color: #428bca;
+}
+.bs-callout-success {
+    border-left-color: #5cb85c;
+}
+.bs-callout-success h4 {
+    color: #5cb85c;
+}
+.bs-callout-danger {
+    border-left-color: #d9534f;
+}
+.bs-callout-danger h4 {
+    color: #d9534f;
+}
+.bs-callout-warning {
+    border-left-color: #f0ad4e;
+}
+.bs-callout-warning h4 {
+    color: #f0ad4e;
+}
+.bs-callout-info {
+    border-left-color: #5bc0de;
+}
+.bs-callout-info h4 {
+    color: #5bc0de;
+}
+
+
+.gi-2x{font-size: 2em;}
+.gi-3x{font-size: 3em;}
+.gi-4x{font-size: 4em;}
+.gi-5x{font-size: 5em;}
+
+
+
+
+
+.breadcrumb > .active {color: #777 !important;}
+
+/* make room for the nav bar */
+h1[id],
+h2[id],
+h3[id],
+h4[id],
+h5[id],
+h6[id],
+dt[id]{
+padding-top: 60px;
+margin-top: -40px
+}
+
+.post-content img {
+    margin: 12px 0px 3px 0px;
+    width: auto;
+    height: auto;
+    max-width: 100%;
+    max-height: 100%;
+}
+
+.post-content ol li, .post-content ul li {
+    margin: 10px 0px;
+}
+
+.pageSummary {
+    font-size:13px;
+    display:block;
+    margin-bottom:15px;
+    padding-left:20px;
+}
+
+.post-summary {
+    margin-bottom:12px;
+}
+
+.bs-example{
+    margin: 20px;
+}
+
+.breadcrumb li {
+    color: gray;
+}
+
+table {
+    background-color: transparent;
+}
+caption {
+    padding-top: 8px;
+    padding-bottom: 8px;
+    color: #777;
+    text-align: left;
+}
+th {
+    text-align: left;
+}
+table {
+    max-width: 90%;
+    margin-bottom: 20px;
+    border: 1px solid #dedede;
+}
+
+table > thead > tr > th,
+table > tbody > tr > th,
+table > tfoot > tr > th,
+table > thead > tr > td,
+table > tbody > tr > td,
+table > tfoot > tr > td {
+    padding: 8px;
+    line-height: 1.42857143;
+    vertical-align: top;
+    border-top: 1px solid #ddd;
+}
+table > thead > tr > th {
+    vertical-align: bottom;
+    border-bottom: 2px solid #ddd;
+    text-transform: none;
+    background-color: #777;
+    color: white;
+    text-align: left;
+}
+table > caption + thead > tr:first-child > th,
+table > colgroup + thead > tr:first-child > th,
+table > thead:first-child > tr:first-child > th,
+table > caption + thead > tr:first-child > td,
+table > colgroup + thead > tr:first-child > td,
+table > thead:first-child > tr:first-child > td {
+    border-top: 0;
+}
+
+table > tbody > tr:nth-of-type(odd) {
+    background-color: #f9f9f9;
+}
+
+table col[class*="col-"] {
+    position: static;
+    display: table-column;
+    float: none;
+}
+table td[class*="col-"],
+table th[class*="col-"] {
+    position: static;
+    display: table-cell;
+    float: none;
+}
+
+table tr td {
+    hyphens: auto;
+}
+
+
+p.external a {
+    text-align:right;
+    font-size:12px;
+    color: #0088cc;
+    display:inline;
+}
+
+#definition-box-container div a.active {
+    font-weight: bold;
+}
+p.post-meta {font-size: 80%; color: #777;}
+
+.entry-date{font-size:14px;font-size:0.875rem;line-height:1.71429;margin-bottom:0;text-transform:uppercase;}
+
+/* search area */
+#search-demo-container ul#results-container {
+    list-style: none;
+    font-size: 12px;
+    background-color: white;
+    position: absolute;
+    top: 40px; /* if you change anything about the nav, you'll prob. need to reset the top and left values here.*/
+    left: 20px;
+    z-index: -1;
+    width:223px;
+    border-left: 1px solid #dedede;
+}
+
+
+ul#results-container a {
+    background-color: transparent;
+}
+
+ul#results-container a:hover {
+    color: black;
+}
+
+
+#search-demo-container a:hover {
+    color: black;
+}
+#search-input {
+    padding: .5em;
+    margin-left:20px;
+    width:20em;
+    font-size: 0.8em;
+    -webkit-box-sizing: border-box;
+    -moz-box-sizing: border-box;
+    box-sizing: border-box;
+    margin-top:10px;
+}
+/* end search */
+
+.filter-options {
+    margin-bottom: 20px;
+}
+.filter-options button {
+    margin: 3px;
+}
+
+div#toc ul li {
+    margin: 8px 0px 8px 22px;
+    font-size: 90%;
+    list-style: square;
+}
+div#toc ul {
+    background-color: whitesmoke;
+    padding: 5px;
+    border-radius: 5px;
+    max-width: 300px;
+    color: gray;
+}
+
+div#toc ul li ul {
+    padding-left:8px;
+
+}
+
+div#toc ul li ul li::before {
+    content: "–  ";
+}
+
+div#toc >ul::before {
+    content: "Table of Contents";
+    font-weight: 500;
+    color: #555;
+    text-align:center;
+    margin-left:auto;
+    margin-right:auto;
+    width:70px;
+    padding-top:20px;
+    padding-bottom:20px;
+    padding-left:10px;
+}
+
+li.dropdownActive a {
+    font-weight: bold;
+}
+
+
+.post-content a.fa-rss {
+    color: orange;
+}
+
+
+.navbar-inverse .navbar-nav > li > a {
+    background-color: transparent;
+    margin-top:10px;
+}
+
+.post-content .rssfeedLink {
+    color: #248EC2;
+}
+
+footer {
+    font-size: smaller;
+}
+
+/* FAQ page */
+#accordion .panel-heading {
+    font-size: 12px;
+}
+
+a.accordion-toggle, a.accordion-collapsed {
+    font-size: 14px;
+    text-decoration: none;
+}
+
+/* navgoco sidebar styles (customized) */
+.nav, .nav ul, .nav li {
+    list-style: none;
+}
+
+.nav ul {
+    padding: 0;
+    /*margin: 0 0 0 18px;*/
+    margin:0px;
+}
+
+.nav {
+    /* padding: 4px;*/
+    padding:0px;
+    margin: 0px;
+}
+
+.nav > li {
+    margin: 1px 0;
+}
+
+.nav > li li {
+    margin: 2px 0;
+}
+
+.nav a {
+    color: #333;
+    display: block;
+    outline: none;
+    /*-webkit-border-radius: 4px;
+    -moz-border-radius: 4px;
+    border-radius: 4px;*/
+    text-decoration: none;
+}
+
+.nav li > a > span {
+    float: right;
+    font-size: 19px;
+    font-weight: bolder;
+}
+
+
+.nav li > a > span:after {
+    content: '\25be';
+}
+.nav li.active > a > span:after {
+    content: '\25b4';
+}
+
+.nav a:hover, .nav li.active > a {
+    background-color: #8D8D8D;
+    color: #f5f5f5;
+}
+
+.nav > li.active > a  {
+background-color: #347DBE;
+}
+
+.nav li a {
+    font-size: 12px;
+    line-height: 18px;
+    padding: 2px 10px;
+    background-color: #f1f1f1;
+}
+
+.nav > li > a {
+    font-size: 14px;
+    line-height: 20px;
+    padding: 4px 10px;
+}
+
+ul#mysidebar {
+    border-radius:0px;
+}
+
+.nav ul li ul li a {
+    padding-left:40px;
+}
+
+.nav li.thirdlevel > a {
+    color: #248EC2;
+    font-weight:bold;
+    padding-left:20px;
+    background-color: whitesmoke !important;
+}
+
+
+.nav ul li a {
+    background-color: #FAFAFA;
+}
+
+.nav li a {
+    padding-right:10px;
+}
+
+.nav li a:hover {
+    background-color: #8D8D8D;
+}
+
+.nav ul li a {
+    border-top:1px solid whitesmoke;
+    padding-left:10px;
+}
+/* end sidebar */
+
+.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
+    border-radius:5px;
+}
+
+.navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:focus, .navbar-inverse .navbar-nav>.open>a:hover {
+    border-radius: 5px;
+}
+
+span.projectTitle {
+    font-family: Helvetica;
+    font-weight: bold;
+}
+
+.footer {
+    text-align: right;
+}
+
+.footerMeta {
+    background-color: whitesmoke;
+    padding: 10px;
+    max-width: 250px;
+    border-radius: 5px;
+    margin-top: 50px;
+    font-style:italic;
+    font-size:12px;
+}
+
+img.screenshotSmall {
+    max-width: 300px;
+}
+
+
+dl dt p {
+    margin-left:20px;
+}
+
+
+dl dd {
+    margin-top:10px;
+    margin-bottom:10px;
+}
+
+dl.dl-horizontal dd {
+    padding-top: 20px;
+}
+
+figcaption {
+
+    padding-bottom:12px;
+    padding-top:6px;
+    max-width: 90%;
+    margin-bottom:20px;
+    font-style: italic;
+    color: gray;
+
+}
+
+.testing {
+    color: orange;
+}
+
+.preference {
+    color: red;
+}
+
+
+table.dataTable thead {
+    background-color: #444;
+}
+table td {
+    hyphens: auto;
+}
+
+section table tr.success {
+    background-color: #dff0d8 !important;
+}
+
+table tr.info {
+    background-color: #d9edf7 !important;
+}
+
+section table tr.warning, table tr.testing, table tr.testing > td.sorting_1  {
+    background-color: #fcf8e3 !important;
+}
+section table tr.danger, table tr.preference, table tr.preference > td.sorting_1  {
+    background-color: #f2dede !important;
+}
+
+.orange {
+    color: orange;
+}
+
+table.profile thead tr th {
+    background-color: #248ec2;
+}
+
+table.request thead tr th {
+    background-color: #ED1951;
+}
+
+.audienceLabel {
+    margin: 10px;
+    float: right;
+    border:1px solid #dedede;
+    padding:7px;
+}
+
+.prefaceAudienceLabel {
+    color: gray;
+    text-align: center;
+    margin:5px;
+}
+span.myLabel {
+    padding-left:10px;
+    padding-right:10px;
+}
+
+button.cursorNorm {
+    cursor: default;
+}
+
+a.dropdown-toggle, .navbar-inverse .navbar-nav > li > a  {
+    margin-left: 10px;
+}
+
+hr.faded {
+    border: 0;
+    height: 1px;
+    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
+    background-image:    -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
+    background-image:     -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
+    background-image:      -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
+}
+
+hr.shaded {
+    height: 12px;
+    border: 0;
+    margin-top: 70px;
+    background: white;
+    width: 100%;
+    margin-bottom: 10px;
+}
+
+.fa-6x{font-size:900%;}
+.fa-7x{font-size:1100%;}
+.fa-8x{font-size:1300%;}
+.fa-9x{font-size:1500%;}
+.fa-10x{font-size:1700%;}
+
+i.border {
+    padding: 10px 20px;
+    background-color: whitesmoke;
+}
+
+a[data-toggle] {
+    color: #248EC2;
+}
+
+.summary {
+    font-size:120%;
+    color: #808080;
+    margin:20px 0px 20px 0px;
+    border-left: 5px solid #ED1951;
+    padding-left: 10px;
+
+}
+
+.summary:before {
+    content: "Summary: ";
+    font-weight: bold;
+}
+
+
+a.fa.fa-envelope-o.mailto {
+    font-weight: 600;
+}
+
+h3 {color: #ED1951; font-weight:normal; font-size:130%;}
+h4 {color: #808080; font-weight:normal; font-size:120%; font-style:italic;}
+
+.alert, .callout {
+    overflow: hidden;
+}
+
+.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
+    background-color: #248ec2;
+    color: white;
+}
+
+ol li ol li {list-style-type: lower-alpha;}
+ol li ul li {list-style-type: disc;}
+
+li img {clear:both; }
+
+div#toc ul li ul li {
+    list-style-type: none;
+    margin: 5px 0px 0px 0px;
+}
+
+.tab-content {
+    padding: 15px;
+    background-color: #FAFAFA;
+}
+
+span.tagTitle {font-weight: 500;}
+
+li.activeSeries {
+    font-weight: bold;
+}
+
+.seriesContext .dropdown-menu li.active {
+    font-weight: bold;
+    margin-left: 43px;
+    font-size:18px;
+}
+
+.alert-warning {
+    color: #444;
+}
+
+div.alert code, h2 code {
+    background-color: transparent !important;
+}
+/* without this, the links in these notes aren't visible.*/
+.alert a {
+    text-decoration: underline;
+}
+
+div.tags {padding: 10px 5px;}
+
+.tabLabel {
+    font-weight: normal;
+}
+
+hr {
+    background: #999;
+    margin: 30px 0px;
+    width: 90%;
+    margin-left: auto;
+    margin-right: auto;
+}
+
+button.cursorNorm {
+    cursor: pointer;
+}
+
+h2  {
+    font-size:24px;
+    line-height:29px;
+}
+span.otherProgrammingLanguages {
+    font-style: normal;
+}
+
+a[data-toggle="tooltip"] {
+    color: #649345;
+    font-style: italic;
+    cursor: default;
+}
+
+.seriesNext, .seriesContext {
+    margin-top: 15px;
+    margin-bottom: 15px;
+}
+
+.seriescontext ol li {
+    list-style-type: upper-roman;
+}
+
+ol.series li {
+    list-style-type: decimal;
+    margin-left: 40px;
+    padding-left: 0px;
+}
+
+.siteTagline {
+    font-size: 200%;
+    font-weight: bold;
+    color: silver;
+    font-family: monospace;
+    text-align: center;
+    line-height: 10px;
+    margin: 20px 0px;
+    display: block;
+}
+
+.versionTagline {
+    text-align: center;
+    margin-bottom: 20px;
+    font-family: courier;
+    color: silver;
+    color: #444;
+    display:block;
+}
+
+/* not sure if using this ...*/
+.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
+    border-color: #248ec2 !important;
+}
+
+#mysidebar .nav ul {
+    background-color: #FAFAFA;
+}
+.nav ul.series li {
+    list-style: decimal;
+    font-size:12px;
+}
+
+.nav ul.series li a:hover {
+    background-color: gray;
+}
+.nav ul.series {
+    padding-left: 30px;
+}
+
+.nav ul.series {
+    background-color: #FAFAFA;
+}
+
+/*
+a.dropdown-toggle.otherProgLangs {
+    color: #f7e68f !important;
+}
+*/
+
+span.muted {color: #666;}
+
+table code {background-color: transparent;}
+
+.highlight .err {
+    color: #a61717;
+    background-color: transparent !important;
+}
+
+table p {
+    margin-top: 12px;
+    margin-bottom: 12px;
+}
+
+pre, table code {
+    white-space: pre-wrap;       /* css-3 */
+    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
+    white-space: -pre-wrap;      /* Opera 4-6 */
+    white-space: -o-pre-wrap;    /* Opera 7 */
+    word-wrap: break-word;       /* Internet Explorer 5.5+ */
+}
+
+pre {
+    margin: 25px 0px;
+}
+
+#json-box-container pre {
+    margin: 0px;
+}
+
+.video-js {
+    margin: 30px 0px;
+}
+
+video {
+    display: block;
+    margin: 30px 0px;
+    border: 1px solid #c0c0c0;
+}
+
+
+p.required, p.dataType {display: block; color: #c0c0c0; font-size: 80%; margin-left:4px;}
+
+dd {margin-left:20px;}
+
+.post-content img.inline {
+    margin:0px;
+    margin-bottom:6px;
+}
+.panel-heading {
+    font-weight: bold;
+}
+
+.note code, .alert code, .warning code, div#toc code, h2 code, h3 code, h4 code {
+    color: inherit;
+    padding: 0px;
+}
+
+.alert {
+    margin-bottom:10px;
+    margin-top:10px;
+}
+
+a.accordion-toggle {
+    font-style: normal;
+}
+
+span.red {
+    color: red;
+    font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
+}
+
+h3.codeExplanation {
+    font-size:18px;
+    font-style:normal;
+    color: black;
+    line-height: 24px;
+}
+
+span.soft {
+    color: #c0c0c0;
+}
+
+.githubEditButton {
+    margin-bottom:7px;
+}
+
+.endpoint {
+    padding: 15px;
+    background-color: #f0f0f0;
+    font-family: courier;
+    font-size: 110%;
+    margin: 20px 0px;
+    color: #444;
+}
+
+.parameter {
+    font-family: courier;
+    color: red !important;
+}
+
+.formBoundary {
+    border: 1px solid gray;
+    padding: 15px;
+    margin: 15px 0px;
+    background-color: whitesmoke;
+}
+
+@media (max-width: 767px) {
+    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
+        color: #444;
+    }
+}
+
+@media (max-width: 990px) {
+    #mysidebar {
+        position: relative;
+    }
+}
+
+@media (min-width: 1000px) {
+
+    ul#mysidebar {
+        width: 225px;
+    }
+}
+
+@media (max-width: 900px) {
+
+    ul#mysidebar {
+        max-width: 100%;
+    }
+}
+
+.col-md-9 img {
+    max-width: 100%;
+    max-height: 100%;
+}
+
+
+.post-content img {
+    margin: 12px 0px 3px 0px;
+    width: auto;
+    height: auto;
+    max-width: 100%;
+    max-height: 100%;
+}
+.col-md-9 img {
+    max-width: 100%;
+    max-height: 100%;
+}
+
+
+.post-content img {
+    margin: 12px 0px 3px 0px;
+    width: auto;
+    height: auto;
+    max-width: 100%;
+    max-height: 100%;
+}
+
+.videoThumbs img {
+    float: left;
+    margin:15px 15px 15px 0px;
+    border: 1px solid #dedede;
+}
+
+
+@media only screen and (min-width: 900px), only screen and (min-device-width: 900px) {
+    .col-md-9 img {
+        max-width: 700px;
+        max-height: 700px;
+    }
+}
+
+*:hover > .anchorjs-link {
+    transition: color .25s linear;
+    text-decoration: none;
+}
+
+.kbCaption {
+    color: white;
+    background-color: #444;
+    padding:10px;
+}
+
+/* this part adds an icon after external links, using FontAwesome*/
+a[href^="http://"]:after, a[href^="https://"]:after {
+    content: "\f08e";
+    font-family: FontAwesome;
+    font-weight: normal;
+    font-style: normal;
+    display: inline-block;
+    text-decoration: none;
+    padding-left: 3px;
+}
+
+/* Strip the outbound icon when this class is present */
+a[href].noCrossRef::after,
+a.no_icon:after
+ {
+    content:"" !important;
+    padding-left: 0;
+}
+
+.btn-default {
+    margin-bottom: 10px;
+}
+
+/* algolia search */
+
+.search {
+    text-align: left;
+}
+.search input {
+    font-size: 20px;
+    width: 300px;
+}
+.results {
+    margin: auto;
+    text-align: left;
+}
+.results ul {
+    list-style-type: none;
+    padding: 0;
+}
+
+/* algolia */
+
+div.results {
+    position: absolute;
+    background-color: white;
+    width: 100%;
+}
+
+.post-meta {
+    font-size: 14px;
+    color: #828282;
+}
+
+.post-link {
+    font-size: 22px;
+}
+
+.post-list p {
+    margin: 10px 0px;
+}
+
+time {
+    margin-right: 10px;
+}
+
+p.post-meta time {
+    margin-right: 0px;
+}
+
+span.label.label-default {
+    background-color: gray;
+}
+
+span.label.label-primary {
+    background-color: #f0ad4e;
+}
+.col-lg-12 .nav li a {background-color: white}
+
+
+.nav li.active > a.subfoldersTitle {
+    background-color: whitesmoke;
+    font-weight: bold;
+    color: black;
+    }
+
+a code {
+    color: #248EC2;
+}
+
+code + a > code {
+    margin-left: -7px;
+}
+
+table th code {
+    color: white;
+}
+
+ol li ul li ol li {
+    list-style: decimal;
+}
+
+ol li ul li ol li ul li{
+    list-style: disc;
+}
+
+.post-content table th {
+    vertical-align: top;
+}
+
+table thead th code.highlighter-rouge {
+    background-color: transparent;
+}
+
+
+.box {
+    padding: 10px;
+    border: 1px solid #888;
+    width: 100px;
+    height: 80px;
+    background-color: #f5f5f5;
+    font-family: Arial;
+    font-size: 12px;
+    hyphens: auto;
+    float: left;
+    font-size: 12px;
+}
+
+.box:hover {
+    background-color: #f0f0f0;
+}
+
+#userMap {
+    overflow-x: auto;
+    overflow-y: auto;
+    padding: 20px;
+    min-width: 770px;
+}
+
+#userMap .active {
+    background-color: #d6f5d6;
+    border:1px solid #555;
+    font-weight: bold;
+}
+
+h2.userMapTitle {
+    font-family: Arial;
+}
+
+#userMap a:hover {
+    text-decoration: none;
+  }
+
+div.arrow {
+    max-width: 50px;
+    margin-left: 15px;
+    margin-right: 15px;
+    font-size: 20px;
+}
+
+div.content {
+    max-width: 110px
+}
+
+#userMap div.arrow, #userMap div.content {
+    float: left;
+}
+
+.clearfix {
+    clear: both;
+}
+
+
+#userMap div.arrow {
+    position: relative;
+    top: 30px;
+}
+
+.box1 {
+    margin-left:0px;
+}
+
+button.btn.btn-default.btn-lg.modalButton1 {
+    margin-left: -20px;
+}
+
+div.box.box1 {
+    margin-left: -20px;
+}
+
+#userMap .btn-lg {
+    width: 100px;
+    height: 80px;
+
+}
+
+#userMap .complexArrow {
+    font-size: 22px;
+    margin: 0px 10px;
+}
+
+
+#userMap .btn-lg .active {
+    background-color: #d6f5d6;
+}
+
+#userMap .btn-lg  {
+        white-space: pre-wrap;       /* css-3 */
+        white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
+        white-space: -pre-wrap;      /* Opera 4-6 */
+        white-space: -o-pre-wrap;    /* Opera 7 */
+        word-wrap: break-word;       /* Internet Explorer 5.5+ */
+        font-size: 14px;
+    }
+
+/*
+ * Let's target IE to respect aspect ratios and sizes for img tags containing SVG files
+ *
+ * [1] IE9
+ * [2] IE10+
+ */
+/* 1 */
+.ie9 img[src$=".svg"] {
+    width: 100%;
+}
+/* 2 */
+@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
+    img[src$=".svg"] {
+        width: 100%;
+    }
+}
+
+h4.panel-title {
+    padding-top: 0px;
+    margin-top: 0px;
+}
+
+/*set navbar breakpoint so that it converts to hamburger earlier */
+
+@media (max-width: 1200px) {
+    .navbar-header {
+        float: none;
+    }
+    .navbar-left,.navbar-right {
+        float: none !important;
+    }
+    .navbar-toggle {
+        display: block;
+    }
+    .navbar-collapse {
+        border-top: 1px solid transparent;
+    }
+    .navbar-fixed-top {
+        top: 0;
+        border-width: 0 0 1px;
+    }
+    .navbar-collapse.collapse {
+        display: none!important;
+    }
+    .navbar-nav {
+        float: none!important;
+        margin-top: 7.5px;
+    }
+    .navbar-nav>li {
+        float: none;
+    }
+    .navbar-nav>li>a {
+        padding-top: 10px;
+        padding-bottom: 10px;
+    }
+    .collapse.in{
+        display:block !important;
+    }
+}
diff --git a/css/font-awesome.min.css b/css/font-awesome.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..0e0645d2acebbc2d73798b91a3e840384eb271da
--- /dev/null
+++ b/css/font-awesome.min.css
@@ -0,0 +1,4 @@
+/*!
+ *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
+ *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */@font-face{font-family:'FontAwesome';src:url('fonts/fontawesome-webfont.eot?v=4.7.0');src:url('fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
diff --git a/css/fonts/FontAwesome.otf b/css/fonts/FontAwesome.otf
new file mode 100644
index 0000000000000000000000000000000000000000..401ec0f36e4f73b8efa40bd6f604fe80d286db70
Binary files /dev/null and b/css/fonts/FontAwesome.otf differ
diff --git a/css/fonts/fontawesome-webfont.eot b/css/fonts/fontawesome-webfont.eot
new file mode 100644
index 0000000000000000000000000000000000000000..e9f60ca953f93e35eab4108bd414bc02ddcf3928
Binary files /dev/null and b/css/fonts/fontawesome-webfont.eot differ
diff --git a/css/fonts/fontawesome-webfont.svg b/css/fonts/fontawesome-webfont.svg
new file mode 100644
index 0000000000000000000000000000000000000000..855c845e538b65548118279537a04eab2ec6ef0d
--- /dev/null
+++ b/css/fonts/fontawesome-webfont.svg
@@ -0,0 +1,2671 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg>
+<metadata>
+Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016
+ By ,,,
+Copyright Dave Gandy 2016. All rights reserved.
+</metadata>
+<defs>
+<font id="FontAwesome" horiz-adv-x="1536" >
+  <font-face 
+    font-family="FontAwesome"
+    font-weight="400"
+    font-stretch="normal"
+    units-per-em="1792"
+    panose-1="0 0 0 0 0 0 0 0 0 0"
+    ascent="1536"
+    descent="-256"
+    bbox="-1.02083 -256.962 2304.6 1537.02"
+    underline-thickness="0"
+    underline-position="0"
+    unicode-range="U+0020-F500"
+  />
+<missing-glyph horiz-adv-x="896" 
+d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" />
+    <glyph glyph-name=".notdef" horiz-adv-x="896" 
+d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" />
+    <glyph glyph-name=".null" horiz-adv-x="0" 
+ />
+    <glyph glyph-name="nonmarkingreturn" horiz-adv-x="597" 
+ />
+    <glyph glyph-name="space" unicode=" " horiz-adv-x="448" 
+ />
+    <glyph glyph-name="dieresis" unicode="&#xa8;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="acute" unicode="&#xb4;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="infinity" unicode="&#x221e;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="notequal" unicode="&#x2260;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="glass" unicode="&#xf000;" horiz-adv-x="1792" 
+d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
+    <glyph glyph-name="music" unicode="&#xf001;" 
+d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89
+t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="search" unicode="&#xf002;" horiz-adv-x="1664" 
+d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5
+t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
+    <glyph glyph-name="envelope" unicode="&#xf003;" horiz-adv-x="1792" 
+d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13
+t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z
+M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="heart" unicode="&#xf004;" horiz-adv-x="1792" 
+d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600
+q-18 -18 -44 -18z" />
+    <glyph glyph-name="star" unicode="&#xf005;" horiz-adv-x="1664" 
+d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455
+l502 -73q56 -9 56 -46z" />
+    <glyph glyph-name="star_empty" unicode="&#xf006;" horiz-adv-x="1664" 
+d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500
+l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
+    <glyph glyph-name="user" unicode="&#xf007;" horiz-adv-x="1280" 
+d="M1280 137q0 -109 -62.5 -187t-150.5 -78h-854q-88 0 -150.5 78t-62.5 187q0 85 8.5 160.5t31.5 152t58.5 131t94 89t134.5 34.5q131 -128 313 -128t313 128q76 0 134.5 -34.5t94 -89t58.5 -131t31.5 -152t8.5 -160.5zM1024 1024q0 -159 -112.5 -271.5t-271.5 -112.5
+t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="film" unicode="&#xf008;" horiz-adv-x="1920" 
+d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128
+q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45
+t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128
+q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19
+t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="th_large" unicode="&#xf009;" horiz-adv-x="1664" 
+d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38
+h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="th" unicode="&#xf00a;" horiz-adv-x="1792" 
+d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320
+q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28
+h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192
+q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="th_list" unicode="&#xf00b;" horiz-adv-x="1792" 
+d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960
+q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28
+h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="ok" unicode="&#xf00c;" horiz-adv-x="1792" 
+d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
+    <glyph glyph-name="remove" unicode="&#xf00d;" horiz-adv-x="1408" 
+d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68
+t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
+    <glyph glyph-name="zoom_in" unicode="&#xf00e;" horiz-adv-x="1664" 
+d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224
+q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5
+t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
+    <glyph glyph-name="zoom_out" unicode="&#xf010;" horiz-adv-x="1664" 
+d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z
+M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z
+" />
+    <glyph glyph-name="off" unicode="&#xf011;" 
+d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5
+t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
+    <glyph glyph-name="signal" unicode="&#xf012;" horiz-adv-x="1792" 
+d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23
+v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="cog" unicode="&#xf013;" 
+d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38
+q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13
+l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22
+q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
+    <glyph glyph-name="trash" unicode="&#xf014;" horiz-adv-x="1408" 
+d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576
+q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832
+q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="home" unicode="&#xf015;" horiz-adv-x="1664" 
+d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5
+l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
+    <glyph glyph-name="file_alt" unicode="&#xf016;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+" />
+    <glyph glyph-name="time" unicode="&#xf017;" 
+d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="road" unicode="&#xf018;" horiz-adv-x="1920" 
+d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256
+q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
+    <glyph glyph-name="download_alt" unicode="&#xf019;" horiz-adv-x="1664" 
+d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136
+q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
+    <glyph glyph-name="download" unicode="&#xf01a;" 
+d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273
+t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="upload" unicode="&#xf01b;" 
+d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198
+t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="inbox" unicode="&#xf01c;" 
+d="M1023 576h316q-1 3 -2.5 8.5t-2.5 7.5l-212 496h-708l-212 -496q-1 -3 -2.5 -8.5t-2.5 -7.5h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552
+q25 -61 25 -123z" />
+    <glyph glyph-name="play_circle" unicode="&#xf01d;" 
+d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="repeat" unicode="&#xf01e;" 
+d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q15 0 25 -9
+l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
+    <glyph glyph-name="refresh" unicode="&#xf021;" 
+d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117
+q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5
+q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
+    <glyph glyph-name="list_alt" unicode="&#xf022;" horiz-adv-x="1792" 
+d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z
+M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5
+t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47
+t47 -113z" />
+    <glyph glyph-name="lock" unicode="&#xf023;" horiz-adv-x="1152" 
+d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="flag" unicode="&#xf024;" horiz-adv-x="1792" 
+d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48
+t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="headphones" unicode="&#xf025;" horiz-adv-x="1664" 
+d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78
+t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5
+t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
+    <glyph glyph-name="volume_off" unicode="&#xf026;" horiz-adv-x="768" 
+d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
+    <glyph glyph-name="volume_down" unicode="&#xf027;" horiz-adv-x="1152" 
+d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36
+t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
+    <glyph glyph-name="volume_up" unicode="&#xf028;" horiz-adv-x="1664" 
+d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36
+t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5
+t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289
+t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
+    <glyph glyph-name="qrcode" unicode="&#xf029;" horiz-adv-x="1408" 
+d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z
+M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
+    <glyph glyph-name="barcode" unicode="&#xf02a;" horiz-adv-x="1792" 
+d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z
+M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
+    <glyph glyph-name="tag" unicode="&#xf02b;" 
+d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5
+l715 -714q37 -39 37 -91z" />
+    <glyph glyph-name="tags" unicode="&#xf02c;" horiz-adv-x="1920" 
+d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5
+l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
+    <glyph glyph-name="book" unicode="&#xf02d;" horiz-adv-x="1664" 
+d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23
+q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906
+q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5
+t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
+    <glyph glyph-name="bookmark" unicode="&#xf02e;" horiz-adv-x="1280" 
+d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
+    <glyph glyph-name="print" unicode="&#xf02f;" horiz-adv-x="1664" 
+d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68
+v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
+    <glyph glyph-name="camera" unicode="&#xf030;" horiz-adv-x="1920" 
+d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136
+q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="font" unicode="&#xf031;" horiz-adv-x="1664" 
+d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57
+q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -5 -0.5 -13.5t-0.5 -12.5q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5
+q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" />
+    <glyph glyph-name="bold" unicode="&#xf032;" horiz-adv-x="1408" 
+d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142
+q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5
+t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68 -0.5t68 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5
+t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" />
+    <glyph glyph-name="italic" unicode="&#xf033;" horiz-adv-x="1024" 
+d="M0 -126l17 85q22 7 61.5 16.5t72 19t59.5 23.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5
+q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" />
+    <glyph glyph-name="text_height" unicode="&#xf034;" horiz-adv-x="1792" 
+d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2
+t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5
+q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27
+q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" />
+    <glyph glyph-name="text_width" unicode="&#xf035;" 
+d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1
+t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27
+q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5
+t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49
+t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" />
+    <glyph glyph-name="align_left" unicode="&#xf036;" horiz-adv-x="1792" 
+d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45
+t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="align_center" unicode="&#xf037;" horiz-adv-x="1792" 
+d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19
+h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="align_right" unicode="&#xf038;" horiz-adv-x="1792" 
+d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45
+t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="align_justify" unicode="&#xf039;" horiz-adv-x="1792" 
+d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45
+t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="list" unicode="&#xf03a;" horiz-adv-x="1792" 
+d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5
+t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344
+q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5
+t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192
+q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="indent_left" unicode="&#xf03b;" horiz-adv-x="1792" 
+d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5
+t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088
+q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="indent_right" unicode="&#xf03c;" horiz-adv-x="1792" 
+d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5
+t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088
+q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="facetime_video" unicode="&#xf03d;" horiz-adv-x="1792" 
+d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5
+q39 -17 39 -59z" />
+    <glyph glyph-name="picture" unicode="&#xf03e;" horiz-adv-x="1920" 
+d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216
+q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="pencil" unicode="&#xf040;" 
+d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38
+q53 0 91 -38l235 -234q37 -39 37 -91z" />
+    <glyph glyph-name="map_marker" unicode="&#xf041;" horiz-adv-x="1024" 
+d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
+    <glyph glyph-name="adjust" unicode="&#xf042;" 
+d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="tint" unicode="&#xf043;" horiz-adv-x="1024" 
+d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362
+q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
+    <glyph glyph-name="edit" unicode="&#xf044;" horiz-adv-x="1792" 
+d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832
+q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92
+l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
+    <glyph glyph-name="share" unicode="&#xf045;" horiz-adv-x="1664" 
+d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832
+q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5
+t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
+    <glyph glyph-name="check" unicode="&#xf046;" horiz-adv-x="1664" 
+d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832
+q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110
+q24 -24 24 -57t-24 -57z" />
+    <glyph glyph-name="move" unicode="&#xf047;" horiz-adv-x="1792" 
+d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45
+t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
+    <glyph glyph-name="step_backward" unicode="&#xf048;" horiz-adv-x="1024" 
+d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19z" />
+    <glyph glyph-name="fast_backward" unicode="&#xf049;" horiz-adv-x="1792" 
+d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19l710 710
+q19 19 32 13t13 -32v-710q4 10 13 19z" />
+    <glyph glyph-name="backward" unicode="&#xf04a;" horiz-adv-x="1664" 
+d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q4 10 13 19z" />
+    <glyph glyph-name="play" unicode="&#xf04b;" horiz-adv-x="1408" 
+d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
+    <glyph glyph-name="pause" unicode="&#xf04c;" 
+d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="stop" unicode="&#xf04d;" 
+d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="forward" unicode="&#xf04e;" horiz-adv-x="1664" 
+d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" />
+    <glyph glyph-name="fast_forward" unicode="&#xf050;" horiz-adv-x="1792" 
+d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19l-710 -710
+q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" />
+    <glyph glyph-name="step_forward" unicode="&#xf051;" horiz-adv-x="1024" 
+d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19z" />
+    <glyph glyph-name="eject" unicode="&#xf052;" horiz-adv-x="1538" 
+d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
+    <glyph glyph-name="chevron_left" unicode="&#xf053;" horiz-adv-x="1280" 
+d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" />
+    <glyph glyph-name="chevron_right" unicode="&#xf054;" horiz-adv-x="1280" 
+d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" />
+    <glyph glyph-name="plus_sign" unicode="&#xf055;" 
+d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5
+t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="minus_sign" unicode="&#xf056;" 
+d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
+t103 -385.5z" />
+    <glyph glyph-name="remove_sign" unicode="&#xf057;" 
+d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19
+q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="ok_sign" unicode="&#xf058;" 
+d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
+t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="question_sign" unicode="&#xf059;" 
+d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59
+q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="info_sign" unicode="&#xf05a;" 
+d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23
+t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="screenshot" unicode="&#xf05b;" 
+d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109
+q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143
+q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="remove_circle" unicode="&#xf05c;" 
+d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23
+l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5
+t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="ok_circle" unicode="&#xf05d;" 
+d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198
+t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="ban_circle" unicode="&#xf05e;" 
+d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61
+t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
+    <glyph glyph-name="arrow_left" unicode="&#xf060;" 
+d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5
+t32.5 -90.5z" />
+    <glyph glyph-name="arrow_right" unicode="&#xf061;" 
+d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
+    <glyph glyph-name="arrow_up" unicode="&#xf062;" horiz-adv-x="1664" 
+d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651
+q37 -39 37 -91z" />
+    <glyph glyph-name="arrow_down" unicode="&#xf063;" horiz-adv-x="1664" 
+d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
+    <glyph glyph-name="share_alt" unicode="&#xf064;" horiz-adv-x="1792" 
+d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22
+t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
+    <glyph glyph-name="resize_full" unicode="&#xf065;" 
+d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332
+q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="resize_small" unicode="&#xf066;" 
+d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45
+t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
+    <glyph glyph-name="plus" unicode="&#xf067;" horiz-adv-x="1408" 
+d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="minus" unicode="&#xf068;" horiz-adv-x="1408" 
+d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="asterisk" unicode="&#xf069;" horiz-adv-x="1664" 
+d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154
+q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
+    <glyph glyph-name="exclamation_sign" unicode="&#xf06a;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192
+q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
+    <glyph glyph-name="gift" unicode="&#xf06b;" 
+d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320
+q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5
+t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="leaf" unicode="&#xf06c;" horiz-adv-x="1792" 
+d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268
+q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-43 0 -63.5 17.5t-45.5 59.5q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5
+t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
+    <glyph glyph-name="fire" unicode="&#xf06d;" horiz-adv-x="1408" 
+d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1
+q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
+    <glyph glyph-name="eye_open" unicode="&#xf06e;" horiz-adv-x="1792" 
+d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5
+t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
+    <glyph glyph-name="eye_close" unicode="&#xf070;" horiz-adv-x="1792" 
+d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9
+q-106 -189 -316 -567t-315 -566l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5
+q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z
+" />
+    <glyph glyph-name="warning_sign" unicode="&#xf071;" horiz-adv-x="1792" 
+d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185
+q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
+    <glyph glyph-name="plane" unicode="&#xf072;" horiz-adv-x="1408" 
+d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9
+q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
+    <glyph glyph-name="calendar" unicode="&#xf073;" horiz-adv-x="1664" 
+d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z
+M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64
+q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47
+h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="random" unicode="&#xf074;" horiz-adv-x="1792" 
+d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1
+t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5
+v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111
+t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
+    <glyph glyph-name="comment" unicode="&#xf075;" horiz-adv-x="1792" 
+d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281
+q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
+    <glyph glyph-name="magnet" unicode="&#xf076;" 
+d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384
+q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="chevron_up" unicode="&#xf077;" horiz-adv-x="1792" 
+d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" />
+    <glyph glyph-name="chevron_down" unicode="&#xf078;" horiz-adv-x="1792" 
+d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" />
+    <glyph glyph-name="retweet" unicode="&#xf079;" horiz-adv-x="1920" 
+d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -10 7 -21
+zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z
+" />
+    <glyph glyph-name="shopping_cart" unicode="&#xf07a;" horiz-adv-x="1664" 
+d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45
+t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="folder_close" unicode="&#xf07b;" horiz-adv-x="1664" 
+d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="folder_open" unicode="&#xf07c;" horiz-adv-x="1920" 
+d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5
+t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="resize_vertical" unicode="&#xf07d;" horiz-adv-x="768" 
+d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
+    <glyph glyph-name="resize_horizontal" unicode="&#xf07e;" horiz-adv-x="1792" 
+d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
+    <glyph glyph-name="bar_chart" unicode="&#xf080;" horiz-adv-x="2048" 
+d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" />
+    <glyph glyph-name="twitter_sign" unicode="&#xf081;" 
+d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4
+q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5
+t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="facebook_sign" unicode="&#xf082;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960
+q0 119 84.5 203.5t203.5 84.5h960z" />
+    <glyph glyph-name="camera_retro" unicode="&#xf083;" horiz-adv-x="1792" 
+d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5
+t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280
+q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
+    <glyph glyph-name="key" unicode="&#xf084;" horiz-adv-x="1792" 
+d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26
+l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5
+t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
+    <glyph glyph-name="cogs" unicode="&#xf085;" horiz-adv-x="1920" 
+d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5
+t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -11 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5
+l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7
+l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -8 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31
+q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20
+t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68
+q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70
+q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
+    <glyph glyph-name="comments" unicode="&#xf086;" horiz-adv-x="1792" 
+d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224
+q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7
+q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
+    <glyph glyph-name="thumbs_up_alt" unicode="&#xf087;" 
+d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5
+t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769
+q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128
+q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
+    <glyph glyph-name="thumbs_down_alt" unicode="&#xf088;" 
+d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 31 18 69q0 37 -17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5
+t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z
+M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5
+h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -73 49 -163z" />
+    <glyph glyph-name="star_half" unicode="&#xf089;" horiz-adv-x="896" 
+d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
+    <glyph glyph-name="heart_empty" unicode="&#xf08a;" horiz-adv-x="1792" 
+d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559
+q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5
+q224 0 351 -124t127 -344z" />
+    <glyph glyph-name="signout" unicode="&#xf08b;" horiz-adv-x="1664" 
+d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704
+q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
+    <glyph glyph-name="linkedin_sign" unicode="&#xf08c;" 
+d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5
+q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="pushpin" unicode="&#xf08d;" horiz-adv-x="1152" 
+d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38
+t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
+    <glyph glyph-name="external_link" unicode="&#xf08e;" horiz-adv-x="1792" 
+d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320
+q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="signin" unicode="&#xf090;" 
+d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5
+q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="trophy" unicode="&#xf091;" horiz-adv-x="1664" 
+d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91
+t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96
+q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="github_sign" unicode="&#xf092;" 
+d="M519 336q4 6 -3 13q-9 7 -14 2q-4 -6 3 -13q9 -7 14 -2zM491 377q-5 7 -12 4q-6 -4 0 -12q7 -8 12 -5q6 4 0 13zM450 417q2 4 -5 8q-7 2 -8 -2q-3 -5 4 -8q8 -2 9 2zM471 394q2 1 1.5 4.5t-3.5 5.5q-6 7 -10 3t1 -11q6 -6 11 -2zM557 319q2 7 -9 11q-9 3 -13 -4
+q-2 -7 9 -11q9 -3 13 4zM599 316q0 8 -12 8q-10 0 -10 -8t11 -8t11 8zM638 323q-2 7 -13 5t-9 -9q2 -8 12 -6t10 10zM1280 640q0 212 -150 362t-362 150t-362 -150t-150 -362q0 -167 98 -300.5t252 -185.5q18 -3 26.5 5t8.5 20q0 52 -1 95q-6 -1 -15.5 -2.5t-35.5 -2t-48 4
+t-43.5 20t-29.5 41.5q-23 59 -57 74q-2 1 -4.5 3.5l-8 8t-7 9.5t4 7.5t19.5 3.5q6 0 15 -2t30 -15.5t33 -35.5q16 -28 37.5 -42t43.5 -14t38 3.5t30 9.5q7 47 33 69q-49 6 -86 18.5t-73 39t-55.5 76t-19.5 119.5q0 79 53 137q-24 62 5 136q19 6 54.5 -7.5t60.5 -29.5l26 -16
+q58 17 128 17t128 -17q11 7 28.5 18t55.5 26t57 9q29 -74 5 -136q53 -58 53 -137q0 -57 -14 -100.5t-35.5 -70t-53.5 -44.5t-62.5 -26t-68.5 -12q35 -31 35 -95q0 -40 -0.5 -89t-0.5 -51q0 -12 8.5 -20t26.5 -5q154 52 252 185.5t98 300.5zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="upload_alt" unicode="&#xf093;" horiz-adv-x="1664" 
+d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92
+t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
+    <glyph glyph-name="lemon" unicode="&#xf094;" 
+d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5
+q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44
+q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5
+q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -13 2 -25t3.5 -16.5t7.5 -20.5t8 -20q16 -40 25 -118.5t9 -136.5z" />
+    <glyph glyph-name="phone" unicode="&#xf095;" horiz-adv-x="1408" 
+d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -53 3.5t-57.5 12.5t-47 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-127 79 -264 216t-216 264q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47t-12.5 57.5t-3.5 53q0 92 51 186
+q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174q2 -1 19 -11.5t24 -14
+t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
+    <glyph glyph-name="check_empty" unicode="&#xf096;" horiz-adv-x="1408" 
+d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832
+q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="bookmark_empty" unicode="&#xf097;" horiz-adv-x="1280" 
+d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289
+q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
+    <glyph glyph-name="phone_sign" unicode="&#xf098;" 
+d="M1280 343q0 11 -2 16t-18 16.5t-40.5 25t-47.5 26.5t-45.5 25t-28.5 15q-5 3 -19 13t-25 15t-21 5q-15 0 -36.5 -20.5t-39.5 -45t-38.5 -45t-33.5 -20.5q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170 126.5t-127 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5
+t-3.5 16.5q0 13 20.5 33.5t45 38.5t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5
+t320.5 -216.5q6 -2 30 -11t33 -12.5t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z
+" />
+    <glyph glyph-name="twitter" unicode="&#xf099;" horiz-adv-x="1664" 
+d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41
+q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
+    <glyph glyph-name="facebook" unicode="&#xf09a;" horiz-adv-x="1024" 
+d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
+    <glyph glyph-name="github" unicode="&#xf09b;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -40 7t-13 30q0 3 0.5 76.5t0.5 134.5q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 119 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24
+q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-85 13.5q-45 -113 -8 -204q-79 -87 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-39 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5
+t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -88.5t0.5 -54.5q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103zM291 305q3 7 -7 12
+q-10 3 -13 -2q-3 -7 7 -12q9 -6 13 2zM322 271q7 5 -2 16q-10 9 -16 3q-7 -5 2 -16q10 -10 16 -3zM352 226q9 7 0 19q-8 13 -17 6q-9 -5 0 -18t17 -7zM394 184q8 8 -4 19q-12 12 -20 3q-9 -8 4 -19q12 -12 20 -3zM451 159q3 11 -13 16q-15 4 -19 -7t13 -15q15 -6 19 6z
+M514 154q0 13 -17 11q-16 0 -16 -11q0 -13 17 -11q16 0 16 11zM572 164q-2 11 -18 9q-16 -3 -14 -15t18 -8t14 14z" />
+    <glyph glyph-name="unlock" unicode="&#xf09c;" horiz-adv-x="1664" 
+d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5
+t316.5 -131.5t131.5 -316.5z" />
+    <glyph glyph-name="credit_card" unicode="&#xf09d;" horiz-adv-x="1920" 
+d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608
+q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
+    <glyph glyph-name="rss" unicode="&#xf09e;" horiz-adv-x="1408" 
+d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5
+t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294
+q187 -186 294 -425.5t120 -501.5z" />
+    <glyph glyph-name="hdd" unicode="&#xf0a0;" 
+d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5
+h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75
+l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
+    <glyph glyph-name="bullhorn" unicode="&#xf0a1;" horiz-adv-x="1792" 
+d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5
+t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
+    <glyph glyph-name="bell" unicode="&#xf0a2;" horiz-adv-x="1792" 
+d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z
+M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5
+t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
+    <glyph glyph-name="certificate" unicode="&#xf0a3;" 
+d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70
+l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70
+l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
+    <glyph glyph-name="hand_right" unicode="&#xf0a4;" horiz-adv-x="1792" 
+d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106
+q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43
+q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5
+t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
+    <glyph glyph-name="hand_left" unicode="&#xf0a5;" horiz-adv-x="1792" 
+d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-8 9 -12 14q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576q-50 0 -89 -38.5
+t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45z
+M1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128q0 122 81.5 189t206.5 67
+q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
+    <glyph glyph-name="hand_up" unicode="&#xf0a6;" 
+d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576
+q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5
+t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76
+q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
+    <glyph glyph-name="hand_down" unicode="&#xf0a7;" 
+d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33
+t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580
+q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100
+q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
+    <glyph glyph-name="circle_arrow_left" unicode="&#xf0a8;" 
+d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="circle_arrow_right" unicode="&#xf0a9;" 
+d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="circle_arrow_up" unicode="&#xf0aa;" 
+d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="circle_arrow_down" unicode="&#xf0ab;" 
+d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="globe" unicode="&#xf0ac;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11
+q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 11t-9.5 10q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5
+q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5
+q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5
+t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-4 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3
+q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25
+q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5
+t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5
+t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10.5t17 -19.5q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21
+q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5
+q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3
+q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5
+t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q8 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5
+q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7
+q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
+    <glyph glyph-name="wrench" unicode="&#xf0ad;" horiz-adv-x="1664" 
+d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5
+t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
+    <glyph glyph-name="tasks" unicode="&#xf0ae;" horiz-adv-x="1792" 
+d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19
+t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="filter" unicode="&#xf0b0;" horiz-adv-x="1408" 
+d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
+    <glyph glyph-name="briefcase" unicode="&#xf0b1;" horiz-adv-x="1792" 
+d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68
+t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="fullscreen" unicode="&#xf0b2;" 
+d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144
+l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z
+" />
+    <glyph glyph-name="group" unicode="&#xf0c0;" horiz-adv-x="1920" 
+d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5
+t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75
+t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5
+t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
+    <glyph glyph-name="link" unicode="&#xf0c1;" horiz-adv-x="1664" 
+d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26
+l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15
+t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207
+q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
+    <glyph glyph-name="cloud" unicode="&#xf0c2;" horiz-adv-x="1920" 
+d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z
+" />
+    <glyph glyph-name="beaker" unicode="&#xf0c3;" horiz-adv-x="1664" 
+d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
+    <glyph glyph-name="cut" unicode="&#xf0c4;" horiz-adv-x="1792" 
+d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84
+q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148
+q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108
+q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6
+q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
+    <glyph glyph-name="copy" unicode="&#xf0c5;" horiz-adv-x="1792" 
+d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299
+h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
+    <glyph glyph-name="paper_clip" unicode="&#xf0c6;" horiz-adv-x="1408" 
+d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181
+l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235
+z" />
+    <glyph glyph-name="save" unicode="&#xf0c7;" 
+d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5
+h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
+    <glyph glyph-name="sign_blank" unicode="&#xf0c8;" 
+d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="reorder" unicode="&#xf0c9;" 
+d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45
+t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="ul" unicode="&#xf0ca;" horiz-adv-x="1792" 
+d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5
+t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z
+M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="ol" unicode="&#xf0cb;" horiz-adv-x="1792" 
+d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362
+q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5
+t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 121.5t0.5 121.5v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216
+q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="strikethrough" unicode="&#xf0cc;" horiz-adv-x="1792" 
+d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 98 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6
+l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -56 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23
+l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
+    <glyph glyph-name="underline" unicode="&#xf0cd;" 
+d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47
+q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41
+q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472
+q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
+    <glyph glyph-name="table" unicode="&#xf0ce;" horiz-adv-x="1664" 
+d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23
+v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192
+q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192
+q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113
+z" />
+    <glyph glyph-name="magic" unicode="&#xf0d0;" horiz-adv-x="1664" 
+d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276
+l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
+    <glyph glyph-name="truck" unicode="&#xf0d1;" horiz-adv-x="1792" 
+d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5
+t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38
+t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="pinterest" unicode="&#xf0d2;" 
+d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134
+q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33
+q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="pinterest_sign" unicode="&#xf0d3;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5
+t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5
+t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
+    <glyph glyph-name="google_plus_sign" unicode="&#xf0d4;" 
+d="M917 631q0 26 -6 64h-362v-132h217q-3 -24 -16.5 -50t-37.5 -53t-66.5 -44.5t-96.5 -17.5q-99 0 -169 71t-70 171t70 171t169 71q92 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585
+h109v110h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="google_plus" unicode="&#xf0d5;" horiz-adv-x="2304" 
+d="M1437 623q0 -208 -87 -370.5t-248 -254t-369 -91.5q-149 0 -285 58t-234 156t-156 234t-58 285t58 285t156 234t234 156t285 58q286 0 491 -192l-199 -191q-117 113 -292 113q-123 0 -227.5 -62t-165.5 -168.5t-61 -232.5t61 -232.5t165.5 -168.5t227.5 -62
+q83 0 152.5 23t114.5 57.5t78.5 78.5t49 83t21.5 74h-416v252h692q12 -63 12 -122zM2304 745v-210h-209v-209h-210v209h-209v210h209v209h210v-209h209z" />
+    <glyph glyph-name="money" unicode="&#xf0d6;" horiz-adv-x="1920" 
+d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384
+v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="caret_down" unicode="&#xf0d7;" horiz-adv-x="1024" 
+d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="caret_up" unicode="&#xf0d8;" horiz-adv-x="1024" 
+d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+    <glyph glyph-name="caret_left" unicode="&#xf0d9;" horiz-adv-x="640" 
+d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
+    <glyph glyph-name="caret_right" unicode="&#xf0da;" horiz-adv-x="640" 
+d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
+    <glyph glyph-name="columns" unicode="&#xf0db;" horiz-adv-x="1664" 
+d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="sort" unicode="&#xf0dc;" horiz-adv-x="1024" 
+d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+    <glyph glyph-name="sort_down" unicode="&#xf0dd;" horiz-adv-x="1024" 
+d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="sort_up" unicode="&#xf0de;" horiz-adv-x="1024" 
+d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+    <glyph glyph-name="envelope_alt" unicode="&#xf0e0;" horiz-adv-x="1792" 
+d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123
+q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
+    <glyph glyph-name="linkedin" unicode="&#xf0e1;" 
+d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329
+q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
+    <glyph glyph-name="undo" unicode="&#xf0e2;" 
+d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5
+t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
+    <glyph glyph-name="legal" unicode="&#xf0e3;" horiz-adv-x="1792" 
+d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5
+t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14
+q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28
+q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
+    <glyph glyph-name="dashboard" unicode="&#xf0e4;" horiz-adv-x="1792" 
+d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5
+t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5
+t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29
+q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="comment_alt" unicode="&#xf0e5;" horiz-adv-x="1792" 
+d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640
+q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5
+t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
+    <glyph glyph-name="comments_alt" unicode="&#xf0e6;" horiz-adv-x="1792" 
+d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257
+t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5
+t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129
+q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
+    <glyph glyph-name="bolt" unicode="&#xf0e7;" horiz-adv-x="896" 
+d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
+    <glyph glyph-name="sitemap" unicode="&#xf0e8;" horiz-adv-x="1792" 
+d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320
+q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68
+z" />
+    <glyph glyph-name="umbrella" unicode="&#xf0e9;" horiz-adv-x="1664" 
+d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97
+q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69
+q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
+    <glyph glyph-name="paste" unicode="&#xf0ea;" horiz-adv-x="1792" 
+d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28
+h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
+    <glyph glyph-name="light_bulb" unicode="&#xf0eb;" horiz-adv-x="1024" 
+d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134
+q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47
+q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5
+t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
+    <glyph glyph-name="exchange" unicode="&#xf0ec;" horiz-adv-x="1792" 
+d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9
+q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
+    <glyph glyph-name="cloud_download" unicode="&#xf0ed;" horiz-adv-x="1920" 
+d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088
+q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
+    <glyph glyph-name="cloud_upload" unicode="&#xf0ee;" horiz-adv-x="1920" 
+d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088
+q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
+    <glyph glyph-name="user_md" unicode="&#xf0f0;" horiz-adv-x="1408" 
+d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56
+t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68
+t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5
+t271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="stethoscope" unicode="&#xf0f1;" horiz-adv-x="1408" 
+d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48
+t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252
+t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
+    <glyph glyph-name="suitcase" unicode="&#xf0f2;" horiz-adv-x="1792" 
+d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66
+t66 -158z" />
+    <glyph glyph-name="bell_alt" unicode="&#xf0f3;" horiz-adv-x="1792" 
+d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5
+t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
+    <glyph glyph-name="coffee" unicode="&#xf0f4;" horiz-adv-x="1920" 
+d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45
+t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="food" unicode="&#xf0f5;" horiz-adv-x="1408" 
+d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45
+t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="file_text_alt" unicode="&#xf0f6;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704
+q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" />
+    <glyph glyph-name="building" unicode="&#xf0f7;" horiz-adv-x="1408" 
+d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="hospital" unicode="&#xf0f8;" horiz-adv-x="1408" 
+d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5
+t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320
+v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="ambulance" unicode="&#xf0f9;" horiz-adv-x="1920" 
+d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5
+t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152
+q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="medkit" unicode="&#xf0fa;" horiz-adv-x="1792" 
+d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32
+q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="fighter_jet" unicode="&#xf0fb;" horiz-adv-x="1920" 
+d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96
+q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q128 -28 200 -52t80 -34z" />
+    <glyph glyph-name="beer" unicode="&#xf0fc;" horiz-adv-x="1664" 
+d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
+    <glyph glyph-name="h_sign" unicode="&#xf0fd;" 
+d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="f0fe" unicode="&#xf0fe;" 
+d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="double_angle_left" unicode="&#xf100;" horiz-adv-x="1024" 
+d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23
+t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
+    <glyph glyph-name="double_angle_right" unicode="&#xf101;" horiz-adv-x="1024" 
+d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23
+l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+    <glyph glyph-name="double_angle_up" unicode="&#xf102;" horiz-adv-x="1152" 
+d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393
+q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+    <glyph glyph-name="double_angle_down" unicode="&#xf103;" horiz-adv-x="1152" 
+d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23
+t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+    <glyph glyph-name="angle_left" unicode="&#xf104;" horiz-adv-x="640" 
+d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+    <glyph glyph-name="angle_right" unicode="&#xf105;" horiz-adv-x="640" 
+d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+    <glyph glyph-name="angle_up" unicode="&#xf106;" horiz-adv-x="1152" 
+d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+    <glyph glyph-name="angle_down" unicode="&#xf107;" horiz-adv-x="1152" 
+d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+    <glyph glyph-name="desktop" unicode="&#xf108;" horiz-adv-x="1920" 
+d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19
+t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="laptop" unicode="&#xf109;" horiz-adv-x="1920" 
+d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z
+M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
+    <glyph glyph-name="tablet" unicode="&#xf10a;" horiz-adv-x="1152" 
+d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832
+q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="mobile_phone" unicode="&#xf10b;" horiz-adv-x="768" 
+d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136
+q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="circle_blank" unicode="&#xf10c;" 
+d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103
+t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="quote_left" unicode="&#xf10d;" horiz-adv-x="1664" 
+d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z
+M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
+    <glyph glyph-name="quote_right" unicode="&#xf10e;" horiz-adv-x="1664" 
+d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216
+v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
+    <glyph glyph-name="spinner" unicode="&#xf110;" horiz-adv-x="1792" 
+d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5
+t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z
+M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5
+q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="circle" unicode="&#xf111;" 
+d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="reply" unicode="&#xf112;" horiz-adv-x="1792" 
+d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19
+l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
+    <glyph glyph-name="github_alt" unicode="&#xf113;" horiz-adv-x="1664" 
+d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320
+q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86
+t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218
+q0 -87 -27 -168q136 -160 136 -398z" />
+    <glyph glyph-name="folder_close_alt" unicode="&#xf114;" horiz-adv-x="1664" 
+d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320
+q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="folder_open_alt" unicode="&#xf115;" horiz-adv-x="1920" 
+d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68
+v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z
+" />
+    <glyph glyph-name="expand_alt" unicode="&#xf116;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="collapse_alt" unicode="&#xf117;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="smile" unicode="&#xf118;" 
+d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
+t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5
+t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="frown" unicode="&#xf119;" 
+d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
+t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204
+t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="meh" unicode="&#xf11a;" 
+d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
+t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="gamepad" unicode="&#xf11b;" horiz-adv-x="1920" 
+d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5
+t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150
+t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
+    <glyph glyph-name="keyboard" unicode="&#xf11c;" horiz-adv-x="1920" 
+d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16
+h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16
+h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96
+q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896
+h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
+    <glyph glyph-name="flag_alt" unicode="&#xf11d;" horiz-adv-x="1792" 
+d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9
+h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102
+q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
+    <glyph glyph-name="flag_checkered" unicode="&#xf11e;" horiz-adv-x="1792" 
+d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2
+q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266
+q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8
+q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
+    <glyph glyph-name="terminal" unicode="&#xf120;" horiz-adv-x="1664" 
+d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9
+t9 -23z" />
+    <glyph glyph-name="code" unicode="&#xf121;" horiz-adv-x="1920" 
+d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5
+l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
+    <glyph glyph-name="reply_all" unicode="&#xf122;" horiz-adv-x="1792" 
+d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1
+q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
+    <glyph glyph-name="star_half_empty" unicode="&#xf123;" horiz-adv-x="1664" 
+d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5
+l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
+    <glyph glyph-name="location_arrow" unicode="&#xf124;" horiz-adv-x="1408" 
+d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
+    <glyph glyph-name="crop" unicode="&#xf125;" horiz-adv-x="1664" 
+d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23
+v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="code_fork" unicode="&#xf126;" horiz-adv-x="1024" 
+d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5
+q-2 -287 -226 -414q-67 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497
+q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
+    <glyph glyph-name="unlink" unicode="&#xf127;" horiz-adv-x="1664" 
+d="M439 265l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320
+q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18
+l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9
+t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
+    <glyph glyph-name="question" unicode="&#xf128;" horiz-adv-x="1024" 
+d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5
+t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
+    <glyph glyph-name="_279" unicode="&#xf129;" horiz-adv-x="640" 
+d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192
+q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="exclamation" unicode="&#xf12a;" horiz-adv-x="640" 
+d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
+    <glyph glyph-name="superscript" unicode="&#xf12b;" 
+d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z
+M1534 846v-206h-514l-3 27q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5
+t-65.5 -51.5t-30.5 -63h232v80h126z" />
+    <glyph glyph-name="subscript" unicode="&#xf12c;" 
+d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z
+M1536 -50v-206h-514l-4 27q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73
+h232v80h126z" />
+    <glyph glyph-name="_283" unicode="&#xf12d;" horiz-adv-x="1920" 
+d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
+    <glyph glyph-name="puzzle_piece" unicode="&#xf12e;" horiz-adv-x="1664" 
+d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5
+t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89
+q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117
+q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
+    <glyph glyph-name="microphone" unicode="&#xf130;" horiz-adv-x="1152" 
+d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5
+t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
+    <glyph glyph-name="microphone_off" unicode="&#xf131;" horiz-adv-x="1408" 
+d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128
+q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23
+t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
+    <glyph glyph-name="shield" unicode="&#xf132;" horiz-adv-x="1280" 
+d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150
+t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="calendar_empty" unicode="&#xf133;" horiz-adv-x="1664" 
+d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280
+q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="fire_extinguisher" unicode="&#xf134;" horiz-adv-x="1408" 
+d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800
+q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113
+q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
+    <glyph glyph-name="rocket" unicode="&#xf135;" horiz-adv-x="1664" 
+d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1
+q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
+    <glyph glyph-name="maxcdn" unicode="&#xf136;" horiz-adv-x="1792" 
+d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
+    <glyph glyph-name="chevron_sign_left" unicode="&#xf137;" 
+d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="chevron_sign_right" unicode="&#xf138;" 
+d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="chevron_sign_up" unicode="&#xf139;" 
+d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="chevron_sign_down" unicode="&#xf13a;" 
+d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="html5" unicode="&#xf13b;" horiz-adv-x="1408" 
+d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
+    <glyph glyph-name="css3" unicode="&#xf13c;" horiz-adv-x="1792" 
+d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
+    <glyph glyph-name="anchor" unicode="&#xf13d;" horiz-adv-x="1792" 
+d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352
+q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19
+t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="unlock_alt" unicode="&#xf13e;" horiz-adv-x="1152" 
+d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181
+v-320h736z" />
+    <glyph glyph-name="bullseye" unicode="&#xf140;" 
+d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150
+t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="ellipsis_horizontal" unicode="&#xf141;" horiz-adv-x="1408" 
+d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192
+q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="ellipsis_vertical" unicode="&#xf142;" horiz-adv-x="384" 
+d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192
+q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="_303" unicode="&#xf143;" 
+d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 233 -176.5 396.5t-396.5 176.5q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128
+q13 0 23 10t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="play_sign" unicode="&#xf144;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56
+q16 -8 32 -8q17 0 32 9z" />
+    <glyph glyph-name="ticket" unicode="&#xf145;" horiz-adv-x="1792" 
+d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136
+t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
+    <glyph glyph-name="minus_sign_alt" unicode="&#xf146;" 
+d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
+t84.5 -203.5z" />
+    <glyph glyph-name="check_minus" unicode="&#xf147;" horiz-adv-x="1408" 
+d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5
+t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="level_up" unicode="&#xf148;" horiz-adv-x="1024" 
+d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
+    <glyph glyph-name="level_down" unicode="&#xf149;" horiz-adv-x="1024" 
+d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
+    <glyph glyph-name="check_sign" unicode="&#xf14a;" 
+d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5
+t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="edit_sign" unicode="&#xf14b;" 
+d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120
+v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_312" unicode="&#xf14c;" 
+d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960
+q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="share_sign" unicode="&#xf14d;" 
+d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q11 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5
+t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="compass" unicode="&#xf14e;" 
+d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
+t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="collapse" unicode="&#xf150;" 
+d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120
+v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="collapse_top" unicode="&#xf151;" 
+d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_317" unicode="&#xf152;" 
+d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5
+t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="eur" unicode="&#xf153;" horiz-adv-x="1024" 
+d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9
+t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26
+l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
+    <glyph glyph-name="gbp" unicode="&#xf154;" horiz-adv-x="1024" 
+d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7
+q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
+    <glyph glyph-name="usd" unicode="&#xf155;" horiz-adv-x="1024" 
+d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43
+t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5
+t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50
+t53 -63.5t31.5 -76.5t13 -94z" />
+    <glyph glyph-name="inr" unicode="&#xf156;" horiz-adv-x="898" 
+d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102
+q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="jpy" unicode="&#xf157;" horiz-adv-x="1027" 
+d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61
+l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
+    <glyph glyph-name="rub" unicode="&#xf158;" horiz-adv-x="1280" 
+d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128
+q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
+    <glyph glyph-name="krw" unicode="&#xf159;" horiz-adv-x="1792" 
+d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23
+t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28
+q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="btc" unicode="&#xf15a;" horiz-adv-x="1280" 
+d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164
+l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30
+t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
+    <glyph glyph-name="file" unicode="&#xf15b;" 
+d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" />
+    <glyph glyph-name="file_text" unicode="&#xf15c;" 
+d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704
+q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" />
+    <glyph glyph-name="sort_by_alphabet" unicode="&#xf15d;" horiz-adv-x="1664" 
+d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23
+v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162
+l230 -662h70z" />
+    <glyph glyph-name="_329" unicode="&#xf15e;" horiz-adv-x="1664" 
+d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150
+v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248
+v119h121z" />
+    <glyph glyph-name="sort_by_attributes" unicode="&#xf160;" horiz-adv-x="1792" 
+d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832
+q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256
+q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="sort_by_attributes_alt" unicode="&#xf161;" horiz-adv-x="1792" 
+d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192
+q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832
+q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="sort_by_order" unicode="&#xf162;" 
+d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23
+zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5
+t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
+    <glyph glyph-name="sort_by_order_alt" unicode="&#xf163;" 
+d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9
+t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13
+q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
+    <glyph glyph-name="_334" unicode="&#xf164;" horiz-adv-x="1664" 
+d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76
+q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5
+t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
+    <glyph glyph-name="_335" unicode="&#xf165;" horiz-adv-x="1664" 
+d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135
+t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121
+t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
+    <glyph glyph-name="youtube_sign" unicode="&#xf166;" 
+d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 17 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15
+q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38
+q21 -29 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5
+q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78q7 -23 23 -69l24 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38
+q-51 0 -78 -38q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5
+h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="youtube" unicode="&#xf167;" 
+d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73
+q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51
+q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99
+q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-38 -51 -106 -51q-67 0 -105 51
+q-28 38 -28 118v175q0 80 28 117q38 51 105 51q68 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
+    <glyph glyph-name="xing" unicode="&#xf168;" horiz-adv-x="1408" 
+d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942
+q25 45 64 45h241q22 0 31 -15z" />
+    <glyph glyph-name="xing_sign" unicode="&#xf169;" 
+d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1
+l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="youtube_play" unicode="&#xf16a;" horiz-adv-x="1792" 
+d="M711 408l484 250l-484 253v-503zM896 1270q168 0 324.5 -4.5t229.5 -9.5l73 -4q1 0 17 -1.5t23 -3t23.5 -4.5t28.5 -8t28 -13t31 -19.5t29 -26.5q6 -6 15.5 -18.5t29 -58.5t26.5 -101q8 -64 12.5 -136.5t5.5 -113.5v-40v-136q1 -145 -18 -290q-7 -55 -25 -99.5t-32 -61.5
+l-14 -17q-14 -15 -29 -26.5t-31 -19t-28 -12.5t-28.5 -8t-24 -4.5t-23 -3t-16.5 -1.5q-251 -19 -627 -19q-207 2 -359.5 6.5t-200.5 7.5l-49 4l-36 4q-36 5 -54.5 10t-51 21t-56.5 41q-6 6 -15.5 18.5t-29 58.5t-26.5 101q-8 64 -12.5 136.5t-5.5 113.5v40v136
+q-1 145 18 290q7 55 25 99.5t32 61.5l14 17q14 15 29 26.5t31 19.5t28 13t28.5 8t23.5 4.5t23 3t17 1.5q251 18 627 18z" />
+    <glyph glyph-name="dropbox" unicode="&#xf16b;" horiz-adv-x="1792" 
+d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
+    <glyph glyph-name="stackexchange" unicode="&#xf16c;" 
+d="M1289 -96h-1118v480h-160v-640h1438v640h-160v-480zM347 428l33 157l783 -165l-33 -156zM450 802l67 146l725 -339l-67 -145zM651 1158l102 123l614 -513l-102 -123zM1048 1536l477 -641l-128 -96l-477 641zM330 65v159h800v-159h-800z" />
+    <glyph glyph-name="instagram" unicode="&#xf16d;" 
+d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1162 640q0 -164 -115 -279t-279 -115t-279 115t-115 279t115 279t279 115t279 -115t115 -279zM1270 1050q0 -38 -27 -65t-65 -27t-65 27t-27 65t27 65t65 27t65 -27t27 -65zM768 1270
+q-7 0 -76.5 0.5t-105.5 0t-96.5 -3t-103 -10t-71.5 -18.5q-50 -20 -88 -58t-58 -88q-11 -29 -18.5 -71.5t-10 -103t-3 -96.5t0 -105.5t0.5 -76.5t-0.5 -76.5t0 -105.5t3 -96.5t10 -103t18.5 -71.5q20 -50 58 -88t88 -58q29 -11 71.5 -18.5t103 -10t96.5 -3t105.5 0t76.5 0.5
+t76.5 -0.5t105.5 0t96.5 3t103 10t71.5 18.5q50 20 88 58t58 88q11 29 18.5 71.5t10 103t3 96.5t0 105.5t-0.5 76.5t0.5 76.5t0 105.5t-3 96.5t-10 103t-18.5 71.5q-20 50 -58 88t-88 58q-29 11 -71.5 18.5t-103 10t-96.5 3t-105.5 0t-76.5 -0.5zM1536 640q0 -229 -5 -317
+q-10 -208 -124 -322t-322 -124q-88 -5 -317 -5t-317 5q-208 10 -322 124t-124 322q-5 88 -5 317t5 317q10 208 124 322t322 124q88 5 317 5t317 -5q208 -10 322 -124t124 -322q5 -88 5 -317z" />
+    <glyph glyph-name="flickr" unicode="&#xf16e;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150
+t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
+    <glyph glyph-name="adn" unicode="&#xf170;" 
+d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="f171" unicode="&#xf171;" horiz-adv-x="1408" 
+d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22
+t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18
+t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5
+t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
+    <glyph glyph-name="bitbucket_sign" unicode="&#xf172;" 
+d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5
+t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z
+M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120
+v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="tumblr" unicode="&#xf173;" horiz-adv-x="1024" 
+d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14
+q78 2 134 29z" />
+    <glyph glyph-name="tumblr_sign" unicode="&#xf174;" 
+d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z
+M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="long_arrow_down" unicode="&#xf175;" horiz-adv-x="768" 
+d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
+    <glyph glyph-name="long_arrow_up" unicode="&#xf176;" horiz-adv-x="768" 
+d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
+    <glyph glyph-name="long_arrow_left" unicode="&#xf177;" horiz-adv-x="1792" 
+d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="long_arrow_right" unicode="&#xf178;" horiz-adv-x="1792" 
+d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
+    <glyph glyph-name="apple" unicode="&#xf179;" horiz-adv-x="1408" 
+d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q113 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65
+q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
+    <glyph glyph-name="windows" unicode="&#xf17a;" horiz-adv-x="1664" 
+d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
+    <glyph glyph-name="android" unicode="&#xf17b;" horiz-adv-x="1408" 
+d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30
+t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5
+h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
+    <glyph glyph-name="linux" unicode="&#xf17c;" 
+d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-10 -11 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z
+M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7
+q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15
+q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5
+t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19
+q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63
+q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18q-2 -1 -4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92
+q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152
+q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-6 0 -8 -2t0 -4
+t5 -3q14 -4 18 -31q0 -3 8 2q2 2 2 3zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5
+t-30 -18.5t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43
+q-19 4 -51 9.5t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49
+t-14 -48q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54
+q110 143 124 195q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5
+t-40.5 -33.5t-61 -14q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5
+t15.5 47.5q1 -31 8 -56.5t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
+    <glyph glyph-name="dribble" unicode="&#xf17d;" 
+d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81
+t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19
+q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -5 6.5 -17t7.5 -17q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6
+t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="skype" unicode="&#xf17e;" 
+d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5
+t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5
+q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80
+q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
+    <glyph glyph-name="foursquare" unicode="&#xf180;" horiz-adv-x="1280" 
+d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z
+M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324
+l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" />
+    <glyph glyph-name="trello" unicode="&#xf181;" 
+d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408
+q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="female" unicode="&#xf182;" horiz-adv-x="1280" 
+d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43
+q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="male" unicode="&#xf183;" horiz-adv-x="1024" 
+d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z
+M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="gittip" unicode="&#xf184;" 
+d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
+t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="sun" unicode="&#xf185;" horiz-adv-x="1792" 
+d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4
+l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94
+q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
+    <glyph glyph-name="_366" unicode="&#xf186;" 
+d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61
+t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
+    <glyph glyph-name="archive" unicode="&#xf187;" horiz-adv-x="1792" 
+d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536
+q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="bug" unicode="&#xf188;" horiz-adv-x="1664" 
+d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207
+q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19
+t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
+    <glyph glyph-name="vk" unicode="&#xf189;" horiz-adv-x="1920" 
+d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-40 -51 -55 -72t-30.5 -49.5t-12 -42t13 -34.5t32.5 -43t57 -53q4 -2 5 -4q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58
+t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6
+q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q16 19 38 30q53 26 239 24
+q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2
+q39 5 64 -2.5t31 -16.5z" />
+    <glyph glyph-name="weibo" unicode="&#xf18a;" horiz-adv-x="1792" 
+d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12
+q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422
+q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178
+q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z
+M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
+    <glyph glyph-name="renren" unicode="&#xf18b;" 
+d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495
+q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
+    <glyph glyph-name="_372" unicode="&#xf18c;" horiz-adv-x="1408" 
+d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5
+t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56
+t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -4 1 -50t-1 -72q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5
+t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
+    <glyph glyph-name="stack_exchange" unicode="&#xf18d;" horiz-adv-x="1280" 
+d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z
+" />
+    <glyph glyph-name="_374" unicode="&#xf18e;" 
+d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198
+t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="arrow_circle_alt_left" unicode="&#xf190;" 
+d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198
+t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_376" unicode="&#xf191;" 
+d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z
+M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="dot_circle_alt" unicode="&#xf192;" 
+d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5
+t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_378" unicode="&#xf193;" horiz-adv-x="1664" 
+d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128
+q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 17 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
+    <glyph glyph-name="vimeo_square" unicode="&#xf194;" 
+d="M1292 898q10 216 -161 222q-231 8 -312 -261q44 19 82 19q85 0 74 -96q-4 -57 -74 -167t-105 -110q-43 0 -82 169q-13 54 -45 255q-30 189 -160 177q-59 -7 -164 -100l-81 -72l-81 -72l52 -67q76 52 87 52q57 0 107 -179q15 -55 45 -164.5t45 -164.5q68 -179 164 -179
+q157 0 383 294q220 283 226 444zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_380" unicode="&#xf195;" horiz-adv-x="1152" 
+d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160
+q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="plus_square_o" unicode="&#xf196;" horiz-adv-x="1408" 
+d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832
+q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_382" unicode="&#xf197;" horiz-adv-x="2176" 
+d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40
+t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29
+q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" />
+    <glyph glyph-name="_383" unicode="&#xf198;" horiz-adv-x="1664" 
+d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9
+q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102
+t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" />
+    <glyph glyph-name="_384" unicode="&#xf199;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69
+q-47 32 -142 92.5t-142 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13
+t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" />
+    <glyph glyph-name="_385" unicode="&#xf19a;" horiz-adv-x="1792" 
+d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5
+t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21
+t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286
+t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273
+t273 -182.5t331.5 -68z" />
+    <glyph glyph-name="_386" unicode="&#xf19b;" horiz-adv-x="1792" 
+d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" />
+    <glyph glyph-name="_387" unicode="&#xf19c;" horiz-adv-x="2048" 
+d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64
+q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
+    <glyph glyph-name="_388" unicode="&#xf19d;" horiz-adv-x="2304" 
+d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433
+q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
+    <glyph glyph-name="_389" unicode="&#xf19e;" 
+d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q44 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0
+q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
+    <glyph glyph-name="uniF1A0" unicode="&#xf1a0;" 
+d="M768 750h725q12 -67 12 -128q0 -217 -91 -387.5t-259.5 -266.5t-386.5 -96q-157 0 -299 60.5t-245 163.5t-163.5 245t-60.5 299t60.5 299t163.5 245t245 163.5t299 60.5q300 0 515 -201l-209 -201q-123 119 -306 119q-129 0 -238.5 -65t-173.5 -176.5t-64 -243.5
+t64 -243.5t173.5 -176.5t238.5 -65q87 0 160 24t120 60t82 82t51.5 87t22.5 78h-436v264z" />
+    <glyph glyph-name="f1a1" unicode="&#xf1a1;" horiz-adv-x="1792" 
+d="M1095 369q16 -16 0 -31q-62 -62 -199 -62t-199 62q-16 15 0 31q6 6 15 6t15 -6q48 -49 169 -49q120 0 169 49q6 6 15 6t15 -6zM788 550q0 -37 -26 -63t-63 -26t-63.5 26t-26.5 63q0 38 26.5 64t63.5 26t63 -26.5t26 -63.5zM1183 550q0 -37 -26.5 -63t-63.5 -26t-63 26
+t-26 63t26 63.5t63 26.5t63.5 -26t26.5 -64zM1434 670q0 49 -35 84t-85 35t-86 -36q-130 90 -311 96l63 283l200 -45q0 -37 26 -63t63 -26t63.5 26.5t26.5 63.5t-26.5 63.5t-63.5 26.5q-54 0 -80 -50l-221 49q-19 5 -25 -16l-69 -312q-180 -7 -309 -97q-35 37 -87 37
+q-50 0 -85 -35t-35 -84q0 -35 18.5 -64t49.5 -44q-6 -27 -6 -56q0 -142 140 -243t337 -101q198 0 338 101t140 243q0 32 -7 57q30 15 48 43.5t18 63.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191
+t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_392" unicode="&#xf1a2;" 
+d="M939 407q13 -13 0 -26q-53 -53 -171 -53t-171 53q-13 13 0 26q5 6 13 6t13 -6q42 -42 145 -42t145 42q5 6 13 6t13 -6zM676 563q0 -31 -23 -54t-54 -23t-54 23t-23 54q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1014 563q0 -31 -23 -54t-54 -23t-54 23t-23 54
+q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1229 666q0 42 -30 72t-73 30q-42 0 -73 -31q-113 78 -267 82l54 243l171 -39q1 -32 23.5 -54t53.5 -22q32 0 54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5q-48 0 -69 -43l-189 42q-17 5 -21 -13l-60 -268q-154 -6 -265 -83
+q-30 32 -74 32q-43 0 -73 -30t-30 -72q0 -30 16 -55t42 -38q-5 -25 -5 -48q0 -122 120 -208.5t289 -86.5q170 0 290 86.5t120 208.5q0 25 -6 49q25 13 40.5 37.5t15.5 54.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960
+q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_393" unicode="&#xf1a3;" 
+d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150
+v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103
+t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="f1a4" unicode="&#xf1a4;" horiz-adv-x="1920" 
+d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328
+v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" />
+    <glyph glyph-name="_395" unicode="&#xf1a5;" 
+d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
+t84.5 -203.5z" />
+    <glyph glyph-name="_396" unicode="&#xf1a6;" horiz-adv-x="2048" 
+d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123
+v-369h123z" />
+    <glyph glyph-name="_397" unicode="&#xf1a7;" 
+d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101
+v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960
+q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_398" unicode="&#xf1a8;" horiz-adv-x="2038" 
+d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14
+q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24
+q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33
+q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5
+t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43
+q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5
+t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13
+t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" />
+    <glyph glyph-name="_399" unicode="&#xf1a9;" 
+d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10
+q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14
+q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14
+t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44
+q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" />
+    <glyph glyph-name="_400" unicode="&#xf1aa;" 
+d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z
+M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5
+t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5
+q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126
+t135.5 51q85 0 145 -60.5t60 -145.5z" />
+    <glyph glyph-name="f1ab" unicode="&#xf1ab;" 
+d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5
+q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28
+q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z
+M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11
+q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q107 36 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5
+q20 0 20 -21v-418z" />
+    <glyph glyph-name="_402" unicode="&#xf1ac;" horiz-adv-x="1792" 
+d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48
+l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23
+t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128
+q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128
+q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" />
+    <glyph glyph-name="_403" unicode="&#xf1ad;" 
+d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9
+t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64
+q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64
+q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9
+t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64
+q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64
+q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9
+t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" />
+    <glyph glyph-name="_404" unicode="&#xf1ae;" horiz-adv-x="1280" 
+d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68q29 28 68.5 28t67.5 -28l228 -228h368l228 228q28 28 68 28t68 -28q28 -29 28 -68.5t-28 -67.5zM864 1152
+q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="uniF1B1" unicode="&#xf1b0;" horiz-adv-x="1664" 
+d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5
+q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819
+q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5
+t100.5 134t141.5 55.5z" />
+    <glyph glyph-name="_406" unicode="&#xf1b1;" horiz-adv-x="768" 
+d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" />
+    <glyph glyph-name="_407" unicode="&#xf1b2;" horiz-adv-x="1792" 
+d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z
+" />
+    <glyph glyph-name="_408" unicode="&#xf1b3;" horiz-adv-x="2304" 
+d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67
+t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-4 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70
+v-400l434 -186q36 -16 57 -48t21 -70z" />
+    <glyph glyph-name="_409" unicode="&#xf1b4;" horiz-adv-x="2048" 
+d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658
+q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204
+q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" />
+    <glyph glyph-name="_410" unicode="&#xf1b5;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5
+t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217
+t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" />
+    <glyph glyph-name="_411" unicode="&#xf1b6;" horiz-adv-x="1792" 
+d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5
+q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89
+q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" />
+    <glyph glyph-name="_412" unicode="&#xf1b7;" 
+d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5
+q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5
+q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z
+" />
+    <glyph glyph-name="_413" unicode="&#xf1b8;" horiz-adv-x="1792" 
+d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188
+l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5
+t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1
+q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" />
+    <glyph glyph-name="_414" unicode="&#xf1b9;" horiz-adv-x="2048" 
+d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384
+q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5
+l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="_415" unicode="&#xf1ba;" horiz-adv-x="2048" 
+d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5
+t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z
+M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" />
+    <glyph glyph-name="_416" unicode="&#xf1bb;" 
+d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384
+q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" />
+    <glyph glyph-name="_417" unicode="&#xf1bc;" 
+d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64
+q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37
+q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_418" unicode="&#xf1bd;" horiz-adv-x="1024" 
+d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" />
+    <glyph glyph-name="_419" unicode="&#xf1be;" horiz-adv-x="2304" 
+d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11
+q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245
+q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785
+l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242
+q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236
+q0 -11 -8 -19t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786
+q-13 2 -22 11t-9 22v899q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" />
+    <glyph glyph-name="uniF1C0" unicode="&#xf1c0;" 
+d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127
+t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5
+t-103 128v128q0 69 103 128t280 93.5t385 34.5z" />
+    <glyph glyph-name="uniF1C1" unicode="&#xf1c1;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197
+q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8
+q-1 1 -1 2q-1 2 -1 3q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" />
+    <glyph glyph-name="_422" unicode="&#xf1c2;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4q0 3 -0.5 6.5t-1.5 8t-1 6.5q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5
+t-3.5 -21.5l-4 -21h-4l-2 21q-2 26 -7 46l-99 438h90v107h-300z" />
+    <glyph glyph-name="_423" unicode="&#xf1c3;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107
+h-290v-107h68l189 -272l-194 -283h-68z" />
+    <glyph glyph-name="_424" unicode="&#xf1c4;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" />
+    <glyph glyph-name="_425" unicode="&#xf1c5;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" />
+    <glyph glyph-name="_426" unicode="&#xf1c6;" 
+d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400
+v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79
+q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" />
+    <glyph glyph-name="_427" unicode="&#xf1c7;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5
+q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" />
+    <glyph glyph-name="_428" unicode="&#xf1c8;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" />
+    <glyph glyph-name="_429" unicode="&#xf1c9;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243
+l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" />
+    <glyph glyph-name="_430" unicode="&#xf1ca;" 
+d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406
+q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" />
+    <glyph glyph-name="_431" unicode="&#xf1cb;" horiz-adv-x="1792" 
+d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546
+q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
+    <glyph glyph-name="_432" unicode="&#xf1cc;" horiz-adv-x="2048" 
+d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94
+q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55
+t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97l93 -108q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5t-85 -189.5z" />
+    <glyph glyph-name="_433" unicode="&#xf1cd;" horiz-adv-x="1792" 
+d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194
+q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5
+t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
+    <glyph glyph-name="_434" unicode="&#xf1ce;" horiz-adv-x="1792" 
+d="M1760 640q0 -176 -68.5 -336t-184 -275.5t-275.5 -184t-336 -68.5t-336 68.5t-275.5 184t-184 275.5t-68.5 336q0 213 97 398.5t265 305.5t374 151v-228q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5
+t136.5 204t51 248.5q0 230 -145.5 406t-366.5 221v228q206 -31 374 -151t265 -305.5t97 -398.5z" />
+    <glyph glyph-name="uniF1D0" unicode="&#xf1d0;" horiz-adv-x="1792" 
+d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41
+t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170
+t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136
+q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
+    <glyph glyph-name="uniF1D1" unicode="&#xf1d1;" horiz-adv-x="1792" 
+d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251
+l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162
+q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33
+q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5
+t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71
+t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF1D2" unicode="&#xf1d2;" 
+d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85
+q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392
+q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072
+q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_438" unicode="&#xf1d3;" horiz-adv-x="1792" 
+d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58
+q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47
+q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171
+v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" />
+    <glyph glyph-name="_439" unicode="&#xf1d4;" 
+d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="uniF1D5" unicode="&#xf1d5;" horiz-adv-x="1280" 
+d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5
+t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153
+t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" />
+    <glyph glyph-name="uniF1D6" unicode="&#xf1d6;" horiz-adv-x="1792" 
+d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5
+q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20
+t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5
+t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" />
+    <glyph glyph-name="uniF1D7" unicode="&#xf1d7;" horiz-adv-x="2048" 
+d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25
+q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5
+q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109
+q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" />
+    <glyph glyph-name="_443" unicode="&#xf1d8;" horiz-adv-x="1792" 
+d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" />
+    <glyph glyph-name="_444" unicode="&#xf1d9;" horiz-adv-x="1792" 
+d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137
+l863 639l-478 -797z" />
+    <glyph glyph-name="_445" unicode="&#xf1da;" 
+d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5
+t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23
+t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="_446" unicode="&#xf1db;" 
+d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
+t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_447" unicode="&#xf1dc;" horiz-adv-x="1792" 
+d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15
+t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2
+t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160
+q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5
+q0 -26 -12 -48t-36 -22z" />
+    <glyph glyph-name="_448" unicode="&#xf1dd;" horiz-adv-x="1280" 
+d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179
+q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" />
+    <glyph glyph-name="_449" unicode="&#xf1de;" 
+d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256
+q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" />
+    <glyph glyph-name="uniF1E0" unicode="&#xf1e0;" 
+d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5
+t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" />
+    <glyph glyph-name="_451" unicode="&#xf1e1;" 
+d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5
+t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_452" unicode="&#xf1e2;" horiz-adv-x="1792" 
+d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5
+t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91
+q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9
+t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
+    <glyph glyph-name="_453" unicode="&#xf1e3;" horiz-adv-x="1792" 
+d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323
+l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" />
+    <glyph glyph-name="_454" unicode="&#xf1e4;" horiz-adv-x="1792" 
+d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23
+v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192
+q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23
+zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5
+t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" />
+    <glyph glyph-name="_455" unicode="&#xf1e5;" horiz-adv-x="1792" 
+d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z
+M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="_456" unicode="&#xf1e6;" horiz-adv-x="1792" 
+d="M1755 1083q37 -38 37 -90.5t-37 -90.5l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234
+l401 400q38 37 91 37t90 -37z" />
+    <glyph glyph-name="_457" unicode="&#xf1e7;" horiz-adv-x="1792" 
+d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5
+t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z
+M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q4 -2 11.5 -7
+t10.5 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" />
+    <glyph glyph-name="_458" unicode="&#xf1e8;" horiz-adv-x="1792" 
+d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" />
+    <glyph glyph-name="_459" unicode="&#xf1e9;" 
+d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36
+q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q71 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5
+t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87
+q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" />
+    <glyph glyph-name="_460" unicode="&#xf1ea;" horiz-adv-x="2048" 
+d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19
+t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" />
+    <glyph glyph-name="_461" unicode="&#xf1eb;" horiz-adv-x="2048" 
+d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121
+q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z
+M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
+    <glyph glyph-name="_462" unicode="&#xf1ec;" horiz-adv-x="1792" 
+d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5
+t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5
+t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5
+t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z
+M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38
+h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_463" unicode="&#xf1ed;" 
+d="M1519 890q18 -84 -4 -204q-87 -444 -565 -444h-44q-25 0 -44 -16.5t-24 -42.5l-4 -19l-55 -346l-2 -15q-5 -26 -24.5 -42.5t-44.5 -16.5h-251q-21 0 -33 15t-9 36q9 56 26.5 168t26.5 168t27 167.5t27 167.5q5 37 43 37h131q133 -2 236 21q175 39 287 144q102 95 155 246
+q24 70 35 133q1 6 2.5 7.5t3.5 1t6 -3.5q79 -59 98 -162zM1347 1172q0 -107 -46 -236q-80 -233 -302 -315q-113 -40 -252 -42q0 -1 -90 -1l-90 1q-100 0 -118 -96q-2 -8 -85 -530q-1 -10 -12 -10h-295q-22 0 -36.5 16.5t-11.5 38.5l232 1471q5 29 27.5 48t51.5 19h598
+q34 0 97.5 -13t111.5 -32q107 -41 163.5 -123t56.5 -196z" />
+    <glyph glyph-name="_464" unicode="&#xf1ee;" horiz-adv-x="1792" 
+d="M441 864q33 0 52 -26q266 -364 362 -774h-446q-127 441 -367 749q-12 16 -3 33.5t29 17.5h373zM1000 507q-49 -199 -125 -393q-79 310 -256 594q40 221 44 449q211 -340 337 -650zM1099 1216q235 -324 384.5 -698.5t184.5 -773.5h-451q-41 665 -553 1472h435zM1792 640
+q0 -424 -101 -812q-67 560 -359 1083q-25 301 -106 584q-4 16 5.5 28.5t25.5 12.5h359q21 0 38.5 -13t22.5 -33q115 -409 115 -850z" />
+    <glyph glyph-name="uniF1F0" unicode="&#xf1f0;" horiz-adv-x="2304" 
+d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27
+q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128
+q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_466" unicode="&#xf1f1;" horiz-adv-x="2304" 
+d="M1119 1195q-128 85 -281 85q-103 0 -197.5 -40.5t-162.5 -108.5t-108.5 -162t-40.5 -197q0 -104 40.5 -198t108.5 -162t162 -108.5t198 -40.5q153 0 281 85q-131 107 -178 265.5t0.5 316.5t177.5 265zM1152 1171q-126 -99 -172 -249.5t-0.5 -300.5t172.5 -249
+q127 99 172.5 249t-0.5 300.5t-172 249.5zM1185 1195q130 -107 177.5 -265.5t0.5 -317t-178 -264.5q128 -85 281 -85q104 0 198 40.5t162 108.5t108.5 162t40.5 198q0 103 -40.5 197t-108.5 162t-162.5 108.5t-197.5 40.5q-153 0 -281 -85zM1926 473h7v3h-17v-3h7v-17h3v17z
+M1955 456h4v20h-5l-6 -13l-6 13h-5v-20h3v15l6 -13h4l5 13v-15zM1947 16v-2h-2h-3v3h3h2v-1zM1947 7h3l-4 5h2l1 1q1 1 1 3t-1 3l-1 1h-3h-6v-13h3v5h1zM685 75q0 19 11 31t30 12q18 0 29 -12.5t11 -30.5q0 -19 -11 -31t-29 -12q-19 0 -30 12t-11 31zM1158 119q30 0 35 -32
+h-70q5 32 35 32zM1514 75q0 19 11 31t29 12t29.5 -12.5t11.5 -30.5q0 -19 -11 -31t-30 -12q-18 0 -29 12t-11 31zM1786 75q0 18 11.5 30.5t29.5 12.5t29.5 -12.5t11.5 -30.5q0 -19 -11.5 -31t-29.5 -12t-29.5 12.5t-11.5 30.5zM1944 3q-2 0 -4 1q-1 0 -3 2t-2 3q-1 2 -1 4
+q0 3 1 4q0 2 2 4l1 1q2 0 2 1q2 1 4 1q3 0 4 -1l4 -2l2 -4v-1q1 -2 1 -3l-1 -1v-3t-1 -1l-1 -2q-2 -2 -4 -2q-1 -1 -4 -1zM599 7h30v85q0 24 -14.5 38.5t-39.5 15.5q-32 0 -47 -24q-14 24 -45 24q-24 0 -39 -20v16h-30v-135h30v75q0 36 33 36q30 0 30 -36v-75h29v75
+q0 36 33 36q30 0 30 -36v-75zM765 7h29v68v67h-29v-16q-17 20 -43 20q-29 0 -48 -20t-19 -51t19 -51t48 -20q28 0 43 20v-17zM943 48q0 34 -47 40l-14 2q-23 4 -23 14q0 15 25 15q23 0 43 -11l12 24q-22 14 -55 14q-26 0 -41 -12t-15 -32q0 -33 47 -39l13 -2q24 -4 24 -14
+q0 -17 -31 -17q-25 0 -45 14l-13 -23q25 -17 58 -17q29 0 45.5 12t16.5 32zM1073 14l-8 25q-13 -7 -26 -7q-19 0 -19 22v61h48v27h-48v41h-30v-41h-28v-27h28v-61q0 -50 47 -50q21 0 36 10zM1159 146q-29 0 -48 -20t-19 -51q0 -32 19.5 -51.5t49.5 -19.5q33 0 55 19l-14 22
+q-18 -15 -39 -15q-34 0 -41 33h101v12q0 32 -18 51.5t-46 19.5zM1318 146q-23 0 -35 -20v16h-30v-135h30v76q0 35 29 35q10 0 18 -4l9 28q-9 4 -21 4zM1348 75q0 -31 19.5 -51t52.5 -20q29 0 48 16l-14 24q-18 -13 -35 -12q-18 0 -29.5 12t-11.5 31t11.5 31t29.5 12
+q19 0 35 -12l14 24q-20 16 -48 16q-33 0 -52.5 -20t-19.5 -51zM1593 7h30v68v67h-30v-16q-15 20 -42 20q-29 0 -48.5 -20t-19.5 -51t19.5 -51t48.5 -20q28 0 42 20v-17zM1726 146q-23 0 -35 -20v16h-29v-135h29v76q0 35 29 35q10 0 18 -4l9 28q-8 4 -21 4zM1866 7h29v68v122
+h-29v-71q-15 20 -43 20t-47.5 -20.5t-19.5 -50.5t19.5 -50.5t47.5 -20.5q29 0 43 20v-17zM1944 27l-2 -1h-3q-2 -1 -4 -3q-3 -1 -3 -4q-1 -2 -1 -6q0 -3 1 -5q0 -2 3 -4q2 -2 4 -3t5 -1q4 0 6 1q0 1 2 2l2 1q1 1 3 4q1 2 1 5q0 4 -1 6q-1 1 -3 4q0 1 -2 2l-2 1q-1 0 -3 0.5
+t-3 0.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_467" unicode="&#xf1f2;" horiz-adv-x="2304" 
+d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42
+q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604
+v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569
+q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73
+t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
+    <glyph glyph-name="f1f3" unicode="&#xf1f3;" horiz-adv-x="2304" 
+d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z
+M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260
+l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279
+v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040
+q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168
+q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5
+t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21
+h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5
+t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" />
+    <glyph glyph-name="_469" unicode="&#xf1f4;" horiz-adv-x="2304" 
+d="M745 630q0 -37 -25.5 -61.5t-62.5 -24.5q-29 0 -46.5 16t-17.5 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM1530 779q0 -42 -22 -57t-66 -15l-32 -1l17 107q2 11 13 11h18q22 0 35 -2t25 -12.5t12 -30.5zM1881 630q0 -36 -25.5 -61t-61.5 -25q-29 0 -47 16
+t-18 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM513 801q0 59 -38.5 85.5t-100.5 26.5h-160q-19 0 -21 -19l-65 -408q-1 -6 3 -11t10 -5h76q20 0 22 19l18 110q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM822 489l41 261q1 6 -3 11t-10 5h-76
+q-14 0 -17 -33q-27 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q28 0 58 12t48 32q-4 -12 -4 -21q0 -16 13 -16h69q19 0 22 19zM1269 752q0 5 -4 9.5t-9 4.5h-77q-11 0 -18 -10l-106 -156l-44 150q-5 16 -22 16h-75q-5 0 -9 -4.5t-4 -9.5q0 -2 19.5 -59
+t42 -123t23.5 -70q-82 -112 -82 -120q0 -13 13 -13h77q11 0 18 10l255 368q2 2 2 7zM1649 801q0 59 -38.5 85.5t-100.5 26.5h-159q-20 0 -22 -19l-65 -408q-1 -6 3 -11t10 -5h82q12 0 16 13l18 116q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM1958 489
+l41 261q1 6 -3 11t-10 5h-76q-14 0 -17 -33q-26 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q29 0 59 12t47 32q0 -1 -2 -9t-2 -12q0 -16 13 -16h69q19 0 22 19zM2176 898v1q0 14 -13 14h-74q-11 0 -13 -11l-65 -416l-1 -2q0 -5 4 -9.5t10 -4.5h66
+q19 0 21 19zM392 764q-5 -35 -26 -46t-60 -11l-33 -1l17 107q2 11 13 11h19q40 0 58 -11.5t12 -48.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_470" unicode="&#xf1f5;" horiz-adv-x="2304" 
+d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109
+q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118
+q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151
+q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31
+q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_471" unicode="&#xf1f6;" horiz-adv-x="2048" 
+d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5
+l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5
+l418 363q10 8 23.5 7t21.5 -11z" />
+    <glyph glyph-name="_472" unicode="&#xf1f7;" horiz-adv-x="2048" 
+d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128
+q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161
+q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" />
+    <glyph glyph-name="_473" unicode="&#xf1f8;" horiz-adv-x="1408" 
+d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704
+q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167
+q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="_474" unicode="&#xf1f9;" 
+d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5
+t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5
+t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_475" unicode="&#xf1fa;" 
+d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53
+q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24
+t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61
+t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" />
+    <glyph glyph-name="_476" unicode="&#xf1fb;" horiz-adv-x="1792" 
+d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10
+t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" />
+    <glyph glyph-name="f1fc" unicode="&#xf1fc;" horiz-adv-x="1792" 
+d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5
+t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" />
+    <glyph glyph-name="_478" unicode="&#xf1fd;" horiz-adv-x="1792" 
+d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11q24 0 44 -7t31 -15t33 -27q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5
+t47 37.5q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-24 0 -44 7t-31 15t-33 27q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38
+t-58 27t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448
+h256v448h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5
+q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" />
+    <glyph glyph-name="_479" unicode="&#xf1fe;" horiz-adv-x="2048" 
+d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" />
+    <glyph glyph-name="_480" unicode="&#xf200;" horiz-adv-x="1792" 
+d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_481" unicode="&#xf201;" horiz-adv-x="2048" 
+d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9
+t9 -23z" />
+    <glyph glyph-name="_482" unicode="&#xf202;" horiz-adv-x="1792" 
+d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20
+q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50
+t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1
+q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" />
+    <glyph glyph-name="_483" unicode="&#xf203;" 
+d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73
+q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110
+q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_484" unicode="&#xf204;" horiz-adv-x="2048" 
+d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5
+t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5
+t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" />
+    <glyph glyph-name="_485" unicode="&#xf205;" horiz-adv-x="2048" 
+d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5
+t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
+    <glyph glyph-name="_486" unicode="&#xf206;" horiz-adv-x="2304" 
+d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94
+q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469
+q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400
+q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" />
+    <glyph glyph-name="_487" unicode="&#xf207;" 
+d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5
+h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
+t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" />
+    <glyph glyph-name="_488" unicode="&#xf208;" horiz-adv-x="2048" 
+d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327
+q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5
+q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" />
+    <glyph glyph-name="_489" unicode="&#xf209;" horiz-adv-x="1280" 
+d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q17 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119
+t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5
+t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14
+q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88
+q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5
+t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" />
+    <glyph glyph-name="_490" unicode="&#xf20a;" horiz-adv-x="2048" 
+d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206
+q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307
+t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14
+t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" />
+    <glyph glyph-name="_491" unicode="&#xf20b;" 
+d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5
+t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="_492" unicode="&#xf20c;" 
+d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55
+q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410
+q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" />
+    <glyph glyph-name="_493" unicode="&#xf20d;" 
+d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" />
+    <glyph glyph-name="_494" unicode="&#xf20e;" horiz-adv-x="2048" 
+d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335
+q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5
+q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360l15 -6l188 199v347l-187 194q-13 -8 -29 -10zM986 1438
+h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13zM552 226h402l64 66
+l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224l213 -225zM1023 946
+l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196l-48 -227l130 227h-82
+zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" />
+    <glyph glyph-name="f210" unicode="&#xf210;" 
+d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" />
+    <glyph glyph-name="_496" unicode="&#xf211;" 
+d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384
+q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" />
+    <glyph glyph-name="f212" unicode="&#xf212;" horiz-adv-x="2048" 
+d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021
+q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25
+q209 0 374 -102q172 107 374 102z" />
+    <glyph glyph-name="_498" unicode="&#xf213;" horiz-adv-x="2048" 
+d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101
+q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284
+q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" />
+    <glyph glyph-name="_499" unicode="&#xf214;" 
+d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34
+l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114
+v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z
+M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378
+v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51
+h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5
+t-43 -34t-16.5 -53.5z" />
+    <glyph glyph-name="_500" unicode="&#xf215;" horiz-adv-x="2048" 
+d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832
+q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" />
+    <glyph glyph-name="_501" unicode="&#xf216;" horiz-adv-x="2048" 
+d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126t-103.5 132.5t-108.5 126.5t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5
+t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113
+t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5
+q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" />
+    <glyph glyph-name="_502" unicode="&#xf217;" horiz-adv-x="1664" 
+d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
+t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920
+q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="_503" unicode="&#xf218;" horiz-adv-x="1664" 
+d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
+t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920
+q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="_504" unicode="&#xf219;" horiz-adv-x="2048" 
+d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20
+l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" />
+    <glyph glyph-name="_505" unicode="&#xf21a;" horiz-adv-x="2048" 
+d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83
+q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83
+q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314
+v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83
+q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" />
+    <glyph glyph-name="_506" unicode="&#xf21b;" 
+d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14
+t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5
+q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31
+t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" />
+    <glyph glyph-name="_507" unicode="&#xf21c;" horiz-adv-x="2304" 
+d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5
+t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105
+l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226
+t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" />
+    <glyph glyph-name="_508" unicode="&#xf21d;" 
+d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12
+q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384
+q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5
+t158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="_509" unicode="&#xf21e;" horiz-adv-x="1792" 
+d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221
+q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124
+t127 -344z" />
+    <glyph glyph-name="venus" unicode="&#xf221;" horiz-adv-x="1280" 
+d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292
+q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" />
+    <glyph glyph-name="_511" unicode="&#xf222;" 
+d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-382 -383q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5
+q203 0 359 -126l382 382h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_512" unicode="&#xf223;" horiz-adv-x="1280" 
+d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5
+t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
+t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_513" unicode="&#xf224;" 
+d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64
+q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
+t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_514" unicode="&#xf225;" horiz-adv-x="1792" 
+d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64
+q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9
+t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5
+t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_515" unicode="&#xf226;" horiz-adv-x="1792" 
+d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23
+t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391
+q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391
+q0 -226 -154 -391q103 -57 218 -57z" />
+    <glyph glyph-name="_516" unicode="&#xf227;" horiz-adv-x="1920" 
+d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230
+q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9
+t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128
+q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -28 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" />
+    <glyph glyph-name="_517" unicode="&#xf228;" horiz-adv-x="2048" 
+d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23
+t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9
+t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5
+t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" />
+    <glyph glyph-name="_518" unicode="&#xf229;" 
+d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-213 -214l140 -140q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-140 141l-78 -79q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5
+t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5q203 0 359 -126l78 78l-172 172q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l172 -172l213 213h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
+t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_519" unicode="&#xf22a;" horiz-adv-x="1280" 
+d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22
+t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5
+t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_520" unicode="&#xf22b;" horiz-adv-x="2048" 
+d="M1901 621q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-132q-24 -217 -187.5 -364.5t-384.5 -147.5q-167 0 -306 87t-212 236t-54 319q15 133 88 245.5
+t188 182t249 80.5q155 12 292 -52.5t224 -186t103 -271.5h132v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM576 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5
+t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_521" unicode="&#xf22c;" horiz-adv-x="1280" 
+d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5
+t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_522" unicode="&#xf22d;" horiz-adv-x="1280" 
+d="M1024 576q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1152 576q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123
+t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5z" />
+    <glyph glyph-name="_523" unicode="&#xf22e;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="_524" unicode="&#xf22f;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="_525" unicode="&#xf230;" 
+d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" />
+    <glyph glyph-name="_526" unicode="&#xf231;" horiz-adv-x="1280" 
+d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5
+l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5
+q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" />
+    <glyph glyph-name="_527" unicode="&#xf232;" 
+d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5
+t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233
+l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" />
+    <glyph glyph-name="_528" unicode="&#xf233;" horiz-adv-x="1792" 
+d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216
+q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" />
+    <glyph glyph-name="_529" unicode="&#xf234;" horiz-adv-x="2048" 
+d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5
+t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5
+t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" />
+    <glyph glyph-name="_530" unicode="&#xf235;" horiz-adv-x="2048" 
+d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136
+q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69
+t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" />
+    <glyph glyph-name="_531" unicode="&#xf236;" horiz-adv-x="2048" 
+d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704
+q-26 0 -45 -19t-19 -45v-384h1152z" />
+    <glyph glyph-name="_532" unicode="&#xf237;" 
+d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" />
+    <glyph glyph-name="_533" unicode="&#xf238;" 
+d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56
+t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" />
+    <glyph glyph-name="_534" unicode="&#xf239;" 
+d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47
+t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" />
+    <glyph glyph-name="_535" unicode="&#xf23a;" horiz-adv-x="1792" 
+d="M597 1115v-1173q0 -25 -12.5 -42.5t-36.5 -17.5q-17 0 -33 8l-465 233q-21 10 -35.5 33.5t-14.5 46.5v1140q0 20 10 34t29 14q14 0 44 -15l511 -256q3 -3 3 -5zM661 1014l534 -866l-534 266v600zM1792 996v-1054q0 -25 -14 -40.5t-38 -15.5t-47 13l-441 220zM1789 1116
+q0 -3 -256.5 -419.5t-300.5 -487.5l-390 634l324 527q17 28 52 28q14 0 26 -6l541 -270q4 -2 4 -6z" />
+    <glyph glyph-name="_536" unicode="&#xf23b;" 
+d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1408v-1536h-1536v1536h1536z" />
+    <glyph glyph-name="_537" unicode="&#xf23c;" horiz-adv-x="2296" 
+d="M478 -139q-8 -16 -27 -34.5t-37 -25.5q-25 -9 -51.5 3.5t-28.5 31.5q-1 22 40 55t68 38q23 4 34 -21.5t2 -46.5zM1819 -139q7 -16 26 -34.5t38 -25.5q25 -9 51.5 3.5t27.5 31.5q2 22 -39.5 55t-68.5 38q-22 4 -33 -21.5t-2 -46.5zM1867 -30q13 -27 56.5 -59.5t77.5 -41.5
+q45 -13 82 4.5t37 50.5q0 46 -67.5 100.5t-115.5 59.5q-40 5 -63.5 -37.5t-6.5 -76.5zM428 -30q-13 -27 -56 -59.5t-77 -41.5q-45 -13 -82 4.5t-37 50.5q0 46 67.5 100.5t115.5 59.5q40 5 63 -37.5t6 -76.5zM1158 1094h1q-41 0 -76 -15q27 -8 44 -30.5t17 -49.5
+q0 -35 -27 -60t-65 -25q-52 0 -80 43q-5 -23 -5 -42q0 -74 56 -126.5t135 -52.5q80 0 136 52.5t56 126.5t-56 126.5t-136 52.5zM1462 1312q-99 109 -220.5 131.5t-245.5 -44.5q27 60 82.5 96.5t118 39.5t121.5 -17t99.5 -74.5t44.5 -131.5zM2212 73q8 -11 -11 -42
+q7 -23 7 -40q1 -56 -44.5 -112.5t-109.5 -91.5t-118 -37q-48 -2 -92 21.5t-66 65.5q-687 -25 -1259 0q-23 -41 -66.5 -65t-92.5 -22q-86 3 -179.5 80.5t-92.5 160.5q2 22 7 40q-19 31 -11 42q6 10 31 1q14 22 41 51q-7 29 2 38q11 10 39 -4q29 20 59 34q0 29 13 37
+q23 12 51 -16q35 5 61 -2q18 -4 38 -19v73q-11 0 -18 2q-53 10 -97 44.5t-55 87.5q-9 38 0 81q15 62 93 95q2 17 19 35.5t36 23.5t33 -7.5t19 -30.5h13q46 -5 60 -23q3 -3 5 -7q10 1 30.5 3.5t30.5 3.5q-15 11 -30 17q-23 40 -91 43q0 6 1 10q-62 2 -118.5 18.5t-84.5 47.5
+q-32 36 -42.5 92t-2.5 112q16 126 90 179q23 16 52 4.5t32 -40.5q0 -1 1.5 -14t2.5 -21t3 -20t5.5 -19t8.5 -10q27 -14 76 -12q48 46 98 74q-40 4 -162 -14l47 46q61 58 163 111q145 73 282 86q-20 8 -41 15.5t-47 14t-42.5 10.5t-47.5 11t-43 10q595 126 904 -139
+q98 -84 158 -222q85 -10 121 9h1q5 3 8.5 10t5.5 19t3 19.5t3 21.5l1 14q3 28 32 40t52 -5q73 -52 91 -178q7 -57 -3.5 -113t-42.5 -91q-28 -32 -83.5 -48.5t-115.5 -18.5v-10q-71 -2 -95 -43q-14 -5 -31 -17q11 -1 32 -3.5t30 -3.5q1 5 5 8q16 18 60 23h13q5 18 19 30t33 8
+t36 -23t19 -36q79 -32 93 -95q9 -40 1 -81q-12 -53 -56 -88t-97 -44q-10 -2 -17 -2q0 -49 -1 -73q20 15 38 19q26 7 61 2q28 28 51 16q14 -9 14 -37q33 -16 59 -34q27 13 38 4q10 -10 2 -38q28 -30 41 -51q23 8 31 -1zM1937 1025q0 -29 -9 -54q82 -32 112 -132
+q4 37 -9.5 98.5t-41.5 90.5q-20 19 -36 17t-16 -20zM1859 925q35 -42 47.5 -108.5t-0.5 -124.5q67 13 97 45q13 14 18 28q-3 64 -31 114.5t-79 66.5q-15 -15 -52 -21zM1822 921q-30 0 -44 1q42 -115 53 -239q21 0 43 3q16 68 1 135t-53 100zM258 839q30 100 112 132
+q-9 25 -9 54q0 18 -16.5 20t-35.5 -17q-28 -29 -41.5 -90.5t-9.5 -98.5zM294 737q29 -31 97 -45q-13 58 -0.5 124.5t47.5 108.5v0q-37 6 -52 21q-51 -16 -78.5 -66t-31.5 -115q9 -17 18 -28zM471 683q14 124 73 235q-19 -4 -55 -18l-45 -19v1q-46 -89 -20 -196q25 -3 47 -3z
+M1434 644q8 -38 16.5 -108.5t11.5 -89.5q3 -18 9.5 -21.5t23.5 4.5q40 20 62 85.5t23 125.5q-24 2 -146 4zM1152 1285q-116 0 -199 -82.5t-83 -198.5q0 -117 83 -199.5t199 -82.5t199 82.5t83 199.5q0 116 -83 198.5t-199 82.5zM1380 646q-105 2 -211 0v1q-1 -27 2.5 -86
+t13.5 -66q29 -14 93.5 -14.5t95.5 10.5q9 3 11 39t-0.5 69.5t-4.5 46.5zM1112 447q8 4 9.5 48t-0.5 88t-4 63v1q-212 -3 -214 -3q-4 -20 -7 -62t0 -83t14 -46q34 -15 101 -16t101 10zM718 636q-16 -59 4.5 -118.5t77.5 -84.5q15 -8 24 -5t12 21q3 16 8 90t10 103
+q-69 -2 -136 -6zM591 510q3 -23 -34 -36q132 -141 271.5 -240t305.5 -154q172 49 310.5 146t293.5 250q-33 13 -30 34q0 2 0.5 3.5t1.5 3t1 2.5v1v-1q-17 2 -50 5.5t-48 4.5q-26 -90 -82 -132q-51 -38 -82 1q-5 6 -9 14q-7 13 -17 62q-2 -5 -5 -9t-7.5 -7t-8 -5.5t-9.5 -4
+l-10 -2.5t-12 -2l-12 -1.5t-13.5 -1t-13.5 -0.5q-106 -9 -163 11q-4 -17 -10 -26.5t-21 -15t-23 -7t-36 -3.5q-6 -1 -9 -1q-179 -17 -203 40q-2 -63 -56 -54q-47 8 -91 54q-12 13 -20 26q-17 29 -26 65q-58 -6 -87 -10q1 -2 4 -10zM507 -118q3 14 3 30q-17 71 -51 130
+t-73 70q-41 12 -101.5 -14.5t-104.5 -80t-39 -107.5q35 -53 100 -93t119 -42q51 -2 94 28t53 79zM510 53q23 -63 27 -119q195 113 392 174q-98 52 -180.5 120t-179.5 165q-6 -4 -29 -13q0 -1 -1 -4t-1 -5q31 -18 22 -37q-12 -23 -56 -34q-10 -13 -29 -24h-1q-2 -83 1 -150
+q19 -34 35 -73zM579 -113q532 -21 1145 0q-254 147 -428 196q-76 -35 -156 -57q-8 -3 -16 0q-65 21 -129 49q-208 -60 -416 -188h-1v-1q1 0 1 1zM1763 -67q4 54 28 120q14 38 33 71l-1 -1q3 77 3 153q-15 8 -30 25q-42 9 -56 33q-9 20 22 38q-2 4 -2 9q-16 4 -28 12
+q-204 -190 -383 -284q198 -59 414 -176zM2155 -90q5 54 -39 107.5t-104 80t-102 14.5q-38 -11 -72.5 -70.5t-51.5 -129.5q0 -16 3 -30q10 -49 53 -79t94 -28q54 2 119 42t100 93z" />
+    <glyph glyph-name="_538" unicode="&#xf23d;" horiz-adv-x="2304" 
+d="M1524 -25q0 -68 -48 -116t-116 -48t-116.5 48t-48.5 116t48.5 116.5t116.5 48.5t116 -48.5t48 -116.5zM775 -25q0 -68 -48.5 -116t-116.5 -48t-116 48t-48 116t48 116.5t116 48.5t116.5 -48.5t48.5 -116.5zM0 1469q57 -60 110.5 -104.5t121 -82t136 -63t166 -45.5
+t200 -31.5t250 -18.5t304 -9.5t372.5 -2.5q139 0 244.5 -5t181 -16.5t124 -27.5t71 -39.5t24 -51.5t-19.5 -64t-56.5 -76.5t-89.5 -91t-116 -104.5t-139 -119q-185 -157 -286 -247q29 51 76.5 109t94 105.5t94.5 98.5t83 91.5t54 80.5t13 70t-45.5 55.5t-116.5 41t-204 23.5
+t-304 5q-168 -2 -314 6t-256 23t-204.5 41t-159.5 51.5t-122.5 62.5t-91.5 66.5t-68 71.5t-50.5 69.5t-40 68t-36.5 59.5z" />
+    <glyph glyph-name="_539" unicode="&#xf23e;" horiz-adv-x="1792" 
+d="M896 1472q-169 0 -323 -66t-265.5 -177.5t-177.5 -265.5t-66 -323t66 -323t177.5 -265.5t265.5 -177.5t323 -66t323 66t265.5 177.5t177.5 265.5t66 323t-66 323t-177.5 265.5t-265.5 177.5t-323 66zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348
+t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM496 704q16 0 16 -16v-480q0 -16 -16 -16h-32q-16 0 -16 16v480q0 16 16 16h32zM896 640q53 0 90.5 -37.5t37.5 -90.5q0 -35 -17.5 -64t-46.5 -46v-114q0 -14 -9 -23
+t-23 -9h-64q-14 0 -23 9t-9 23v114q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5zM896 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM544 928v-96
+q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 93 65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5v-96q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 146 -103 249t-249 103t-249 -103t-103 -249zM1408 192v512q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-512
+q0 -26 19 -45t45 -19h896q26 0 45 19t19 45z" />
+    <glyph glyph-name="_540" unicode="&#xf240;" horiz-adv-x="2304" 
+d="M1920 1024v-768h-1664v768h1664zM2048 448h128v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288zM2304 832v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113
+v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160q53 0 90.5 -37.5t37.5 -90.5z" />
+    <glyph glyph-name="_541" unicode="&#xf241;" horiz-adv-x="2304" 
+d="M256 256v768h1280v-768h-1280zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
+h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
+    <glyph glyph-name="_542" unicode="&#xf242;" horiz-adv-x="2304" 
+d="M256 256v768h896v-768h-896zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
+h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
+    <glyph glyph-name="_543" unicode="&#xf243;" horiz-adv-x="2304" 
+d="M256 256v768h512v-768h-512zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
+h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
+    <glyph glyph-name="_544" unicode="&#xf244;" horiz-adv-x="2304" 
+d="M2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23
+v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
+    <glyph glyph-name="_545" unicode="&#xf245;" horiz-adv-x="1280" 
+d="M1133 493q31 -30 14 -69q-17 -40 -59 -40h-382l201 -476q10 -25 0 -49t-34 -35l-177 -75q-25 -10 -49 0t-35 34l-191 452l-312 -312q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v1504q0 42 40 59q12 5 24 5q27 0 45 -19z" />
+    <glyph glyph-name="_546" unicode="&#xf246;" horiz-adv-x="1024" 
+d="M832 1408q-320 0 -320 -224v-416h128v-128h-128v-544q0 -224 320 -224h64v-128h-64q-272 0 -384 146q-112 -146 -384 -146h-64v128h64q320 0 320 224v544h-128v128h128v416q0 224 -320 224h-64v128h64q272 0 384 -146q112 146 384 146h64v-128h-64z" />
+    <glyph glyph-name="_547" unicode="&#xf247;" horiz-adv-x="2048" 
+d="M2048 1152h-128v-1024h128v-384h-384v128h-1280v-128h-384v384h128v1024h-128v384h384v-128h1280v128h384v-384zM1792 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 -128v128h-128v-128h128zM1664 0v128h128v1024h-128v128h-1280v-128h-128v-1024h128v-128
+h1280zM1920 -128v128h-128v-128h128zM1280 896h384v-768h-896v256h-384v768h896v-256zM512 512h640v512h-640v-512zM1536 256v512h-256v-384h-384v-128h640z" />
+    <glyph glyph-name="_548" unicode="&#xf248;" horiz-adv-x="2304" 
+d="M2304 768h-128v-640h128v-384h-384v128h-896v-128h-384v384h128v128h-384v-128h-384v384h128v640h-128v384h384v-128h896v128h384v-384h-128v-128h384v128h384v-384zM2048 1024v-128h128v128h-128zM1408 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 256
+v128h-128v-128h128zM1536 384h-128v-128h128v128zM384 384h896v128h128v640h-128v128h-896v-128h-128v-640h128v-128zM896 -128v128h-128v-128h128zM2176 -128v128h-128v-128h128zM2048 128v640h-128v128h-384v-384h128v-384h-384v128h-384v-128h128v-128h896v128h128z" />
+    <glyph glyph-name="_549" unicode="&#xf249;" 
+d="M1024 288v-416h-928q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68v-928h-416q-40 0 -68 -28t-28 -68zM1152 256h381q-15 -82 -65 -132l-184 -184q-50 -50 -132 -65v381z" />
+    <glyph glyph-name="_550" unicode="&#xf24a;" 
+d="M1400 256h-248v-248q29 10 41 22l185 185q12 12 22 41zM1120 384h288v896h-1280v-1280h896v288q0 40 28 68t68 28zM1536 1312v-1024q0 -40 -20 -88t-48 -76l-184 -184q-28 -28 -76 -48t-88 -20h-1024q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68
+z" />
+    <glyph glyph-name="_551" unicode="&#xf24b;" horiz-adv-x="2304" 
+d="M1951 538q0 -26 -15.5 -44.5t-38.5 -23.5q-8 -2 -18 -2h-153v140h153q10 0 18 -2q23 -5 38.5 -23.5t15.5 -44.5zM1933 751q0 -25 -15 -42t-38 -21q-3 -1 -15 -1h-139v129h139q3 0 8.5 -0.5t6.5 -0.5q23 -4 38 -21.5t15 -42.5zM728 587v308h-228v-308q0 -58 -38 -94.5
+t-105 -36.5q-108 0 -229 59v-112q53 -15 121 -23t109 -9l42 -1q328 0 328 217zM1442 403v113q-99 -52 -200 -59q-108 -8 -169 41t-61 142t61 142t169 41q101 -7 200 -58v112q-48 12 -100 19.5t-80 9.5l-28 2q-127 6 -218.5 -14t-140.5 -60t-71 -88t-22 -106t22 -106t71 -88
+t140.5 -60t218.5 -14q101 4 208 31zM2176 518q0 54 -43 88.5t-109 39.5v3q57 8 89 41.5t32 79.5q0 55 -41 88t-107 36q-3 0 -12 0.5t-14 0.5h-455v-510h491q74 0 121.5 36.5t47.5 96.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90
+t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_552" unicode="&#xf24c;" horiz-adv-x="2304" 
+d="M858 295v693q-106 -41 -172 -135.5t-66 -211.5t66 -211.5t172 -134.5zM1362 641q0 117 -66 211.5t-172 135.5v-694q106 41 172 135.5t66 211.5zM1577 641q0 -159 -78.5 -294t-213.5 -213.5t-294 -78.5q-119 0 -227.5 46.5t-187 125t-125 187t-46.5 227.5q0 159 78.5 294
+t213.5 213.5t294 78.5t294 -78.5t213.5 -213.5t78.5 -294zM1960 634q0 139 -55.5 261.5t-147.5 205.5t-213.5 131t-252.5 48h-301q-176 0 -323.5 -81t-235 -230t-87.5 -335q0 -171 87 -317.5t236 -231.5t323 -85h301q129 0 251.5 50.5t214.5 135t147.5 202.5t55.5 246z
+M2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_553" unicode="&#xf24d;" horiz-adv-x="1792" 
+d="M1664 -96v1088q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 992v-1088q0 -66 -47 -113t-113 -47h-1088q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113
+zM1408 1376v-160h-128v160q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h160v-128h-160q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="_554" unicode="&#xf24e;" horiz-adv-x="2304" 
+d="M1728 1088l-384 -704h768zM448 1088l-384 -704h768zM1269 1280q-14 -40 -45.5 -71.5t-71.5 -45.5v-1291h608q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1344q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h608v1291q-40 14 -71.5 45.5t-45.5 71.5h-491q-14 0 -23 9t-9 23v64
+q0 14 9 23t23 9h491q21 57 70 92.5t111 35.5t111 -35.5t70 -92.5h491q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-491zM1088 1264q33 0 56.5 23.5t23.5 56.5t-23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5zM2176 384q0 -73 -46.5 -131t-117.5 -91
+t-144.5 -49.5t-139.5 -16.5t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81zM896 384q0 -73 -46.5 -131t-117.5 -91t-144.5 -49.5t-139.5 -16.5
+t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81z" />
+    <glyph glyph-name="_555" unicode="&#xf250;" 
+d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
+t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-77 -29 -149 -92.5
+t-129.5 -152.5t-92.5 -210t-35 -253h1024q0 132 -35 253t-92.5 210t-129.5 152.5t-149 92.5q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
+    <glyph glyph-name="_556" unicode="&#xf251;" 
+d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
+t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -66 9 -128h1006q9 61 9 128zM1280 -128q0 130 -34 249.5t-90.5 208t-126.5 152t-146 94.5h-230q-76 -31 -146 -94.5t-126.5 -152t-90.5 -208t-34 -249.5h1024z" />
+    <glyph glyph-name="_557" unicode="&#xf252;" 
+d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
+t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -206 85 -384h854q85 178 85 384zM1223 192q-54 141 -145.5 241.5t-194.5 142.5h-230q-103 -42 -194.5 -142.5t-145.5 -241.5h910z" />
+    <glyph glyph-name="_558" unicode="&#xf253;" 
+d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
+t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-137 -51 -244 -196
+h700q-107 145 -244 196q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
+    <glyph glyph-name="_559" unicode="&#xf254;" 
+d="M1504 -64q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472zM130 0q3 55 16 107t30 95t46 87t53.5 76t64.5 69.5t66 60t70.5 55t66.5 47.5t65 43q-43 28 -65 43t-66.5 47.5t-70.5 55t-66 60t-64.5 69.5t-53.5 76t-46 87
+t-30 95t-16 107h1276q-3 -55 -16 -107t-30 -95t-46 -87t-53.5 -76t-64.5 -69.5t-66 -60t-70.5 -55t-66.5 -47.5t-65 -43q43 -28 65 -43t66.5 -47.5t70.5 -55t66 -60t64.5 -69.5t53.5 -76t46 -87t30 -95t16 -107h-1276zM1504 1536q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9
+h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472z" />
+    <glyph glyph-name="_560" unicode="&#xf255;" 
+d="M768 1152q-53 0 -90.5 -37.5t-37.5 -90.5v-128h-32v93q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-429l-32 30v172q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-224q0 -47 35 -82l310 -296q39 -39 39 -102q0 -26 19 -45t45 -19h640q26 0 45 19t19 45v25
+q0 41 10 77l108 436q10 36 10 77v246q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-32h-32v125q0 40 -25 72.5t-64 40.5q-14 2 -23 2q-46 0 -79 -33t-33 -79v-128h-32v122q0 51 -32.5 89.5t-82.5 43.5q-5 1 -13 1zM768 1280q84 0 149 -50q57 34 123 34q59 0 111 -27
+t86 -76q27 7 59 7q100 0 170 -71.5t70 -171.5v-246q0 -51 -13 -108l-109 -436q-6 -24 -6 -71q0 -80 -56 -136t-136 -56h-640q-84 0 -138 58.5t-54 142.5l-308 296q-76 73 -76 175v224q0 99 70.5 169.5t169.5 70.5q11 0 16 -1q6 95 75.5 160t164.5 65q52 0 98 -21
+q72 69 174 69z" />
+    <glyph glyph-name="_561" unicode="&#xf256;" horiz-adv-x="1792" 
+d="M880 1408q-46 0 -79 -33t-33 -79v-656h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528v-256l-154 205q-38 51 -102 51q-53 0 -90.5 -37.5t-37.5 -90.5q0 -43 26 -77l384 -512q38 -51 102 -51h688q34 0 61 22t34 56l76 405q5 32 5 59v498q0 46 -33 79t-79 33t-79 -33
+t-33 -79v-272h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528h-32v656q0 46 -33 79t-79 33zM880 1536q68 0 125.5 -35.5t88.5 -96.5q19 4 42 4q99 0 169.5 -70.5t70.5 -169.5v-17q105 6 180.5 -64t75.5 -175v-498q0 -40 -8 -83l-76 -404q-14 -79 -76.5 -131t-143.5 -52
+h-688q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 106 75 181t181 75q78 0 128 -34v434q0 99 70.5 169.5t169.5 70.5q23 0 42 -4q31 61 88.5 96.5t125.5 35.5z" />
+    <glyph glyph-name="_562" unicode="&#xf257;" horiz-adv-x="1792" 
+d="M1073 -128h-177q-163 0 -226 141q-23 49 -23 102v5q-62 30 -98.5 88.5t-36.5 127.5q0 38 5 48h-261q-106 0 -181 75t-75 181t75 181t181 75h113l-44 17q-74 28 -119.5 93.5t-45.5 145.5q0 106 75 181t181 75q46 0 91 -17l628 -239h401q106 0 181 -75t75 -181v-668
+q0 -88 -54 -157.5t-140 -90.5l-339 -85q-92 -23 -186 -23zM1024 583l-155 -71l-163 -74q-30 -14 -48 -41.5t-18 -60.5q0 -46 33 -79t79 -33q26 0 46 10l338 154q-49 10 -80.5 50t-31.5 90v55zM1344 272q0 46 -33 79t-79 33q-26 0 -46 -10l-290 -132q-28 -13 -37 -17
+t-30.5 -17t-29.5 -23.5t-16 -29t-8 -40.5q0 -50 31.5 -82t81.5 -32q20 0 38 9l352 160q30 14 48 41.5t18 60.5zM1112 1024l-650 248q-24 8 -46 8q-53 0 -90.5 -37.5t-37.5 -90.5q0 -40 22.5 -73t59.5 -47l526 -200v-64h-640q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5
+t90.5 -37.5h535l233 106v198q0 63 46 106l111 102h-69zM1073 0q82 0 155 19l339 85q43 11 70 45.5t27 78.5v668q0 53 -37.5 90.5t-90.5 37.5h-308l-136 -126q-36 -33 -36 -82v-296q0 -46 33 -77t79 -31t79 35t33 81v208h32v-208q0 -70 -57 -114q52 -8 86.5 -48.5t34.5 -93.5
+q0 -42 -23 -78t-61 -53l-310 -141h91z" />
+    <glyph glyph-name="_563" unicode="&#xf258;" horiz-adv-x="2048" 
+d="M1151 1536q61 0 116 -28t91 -77l572 -781q118 -159 118 -359v-355q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v177l-286 143h-546q-80 0 -136 56t-56 136v32q0 119 84.5 203.5t203.5 84.5h420l42 128h-686q-100 0 -173.5 67.5t-81.5 166.5q-65 79 -65 182v32
+q0 80 56 136t136 56h959zM1920 -64v355q0 157 -93 284l-573 781q-39 52 -103 52h-959q-26 0 -45 -19t-19 -45q0 -32 1.5 -49.5t9.5 -40.5t25 -43q10 31 35.5 50t56.5 19h832v-32h-832q-26 0 -45 -19t-19 -45q0 -44 3 -58q8 -44 44 -73t81 -29h640h91q40 0 68 -28t28 -68
+q0 -15 -5 -30l-64 -192q-10 -29 -35 -47.5t-56 -18.5h-443q-66 0 -113 -47t-47 -113v-32q0 -26 19 -45t45 -19h561q16 0 29 -7l317 -158q24 -13 38.5 -36t14.5 -50v-197q0 -26 19 -45t45 -19h384q26 0 45 19t19 45z" />
+    <glyph glyph-name="_564" unicode="&#xf259;" horiz-adv-x="2048" 
+d="M459 -256q-77 0 -137.5 47.5t-79.5 122.5l-101 401q-13 57 -13 108q0 45 -5 67l-116 477q-7 27 -7 57q0 93 62 161t155 78q17 85 82.5 139t152.5 54q83 0 148 -51.5t85 -132.5l83 -348l103 428q20 81 85 132.5t148 51.5q89 0 155.5 -57.5t80.5 -144.5q92 -10 152 -79
+t60 -162q0 -24 -7 -59l-123 -512q10 7 37.5 28.5t38.5 29.5t35 23t41 20.5t41.5 11t49.5 5.5q105 0 180 -74t75 -179q0 -62 -28.5 -118t-78.5 -94l-507 -380q-68 -51 -153 -51h-694zM1104 1408q-38 0 -68.5 -24t-39.5 -62l-164 -682h-127l-145 602q-9 38 -39.5 62t-68.5 24
+q-48 0 -80 -33t-32 -80q0 -15 3 -28l132 -547h-26l-99 408q-9 37 -40 62.5t-69 25.5q-47 0 -80 -33t-33 -79q0 -14 3 -26l116 -478q7 -28 9 -86t10 -88l100 -401q8 -32 34 -52.5t59 -20.5h694q42 0 76 26l507 379q56 43 56 110q0 52 -37.5 88.5t-89.5 36.5q-43 0 -77 -26
+l-307 -230v227q0 4 32 138t68 282t39 161q4 18 4 29q0 47 -32 81t-79 34q-39 0 -69.5 -24t-39.5 -62l-116 -482h-26l150 624q3 14 3 28q0 48 -31.5 82t-79.5 34z" />
+    <glyph glyph-name="_565" unicode="&#xf25a;" horiz-adv-x="1792" 
+d="M640 1408q-53 0 -90.5 -37.5t-37.5 -90.5v-512v-384l-151 202q-41 54 -107 54q-52 0 -89 -38t-37 -90q0 -43 26 -77l384 -512q38 -51 102 -51h718q22 0 39.5 13.5t22.5 34.5l92 368q24 96 24 194v217q0 41 -28 71t-68 30t-68 -28t-28 -68h-32v61q0 48 -32 81.5t-80 33.5
+q-46 0 -79 -33t-33 -79v-64h-32v90q0 55 -37 94.5t-91 39.5q-53 0 -90.5 -37.5t-37.5 -90.5v-96h-32v570q0 55 -37 94.5t-91 39.5zM640 1536q107 0 181.5 -77.5t74.5 -184.5v-220q22 2 32 2q99 0 173 -69q47 21 99 21q113 0 184 -87q27 7 56 7q94 0 159 -67.5t65 -161.5
+v-217q0 -116 -28 -225l-92 -368q-16 -64 -68 -104.5t-118 -40.5h-718q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 105 74.5 180.5t179.5 75.5q71 0 130 -35v547q0 106 75 181t181 75zM768 128v384h-32v-384h32zM1024 128v384h-32v-384h32zM1280 128v384h-32
+v-384h32z" />
+    <glyph glyph-name="_566" unicode="&#xf25b;" 
+d="M1288 889q60 0 107 -23q141 -63 141 -226v-177q0 -94 -23 -186l-85 -339q-21 -86 -90.5 -140t-157.5 -54h-668q-106 0 -181 75t-75 181v401l-239 628q-17 45 -17 91q0 106 75 181t181 75q80 0 145.5 -45.5t93.5 -119.5l17 -44v113q0 106 75 181t181 75t181 -75t75 -181
+v-261q27 5 48 5q69 0 127.5 -36.5t88.5 -98.5zM1072 896q-33 0 -60.5 -18t-41.5 -48l-74 -163l-71 -155h55q50 0 90 -31.5t50 -80.5l154 338q10 20 10 46q0 46 -33 79t-79 33zM1293 761q-22 0 -40.5 -8t-29 -16t-23.5 -29.5t-17 -30.5t-17 -37l-132 -290q-10 -20 -10 -46
+q0 -46 33 -79t79 -33q33 0 60.5 18t41.5 48l160 352q9 18 9 38q0 50 -32 81.5t-82 31.5zM128 1120q0 -22 8 -46l248 -650v-69l102 111q43 46 106 46h198l106 233v535q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5v-640h-64l-200 526q-14 37 -47 59.5t-73 22.5
+q-53 0 -90.5 -37.5t-37.5 -90.5zM1180 -128q44 0 78.5 27t45.5 70l85 339q19 73 19 155v91l-141 -310q-17 -38 -53 -61t-78 -23q-53 0 -93.5 34.5t-48.5 86.5q-44 -57 -114 -57h-208v32h208q46 0 81 33t35 79t-31 79t-77 33h-296q-49 0 -82 -36l-126 -136v-308
+q0 -53 37.5 -90.5t90.5 -37.5h668z" />
+    <glyph glyph-name="_567" unicode="&#xf25c;" horiz-adv-x="1973" 
+d="M857 992v-117q0 -13 -9.5 -22t-22.5 -9h-298v-812q0 -13 -9 -22.5t-22 -9.5h-135q-13 0 -22.5 9t-9.5 23v812h-297q-13 0 -22.5 9t-9.5 22v117q0 14 9 23t23 9h793q13 0 22.5 -9.5t9.5 -22.5zM1895 995l77 -961q1 -13 -8 -24q-10 -10 -23 -10h-134q-12 0 -21 8.5
+t-10 20.5l-46 588l-189 -425q-8 -19 -29 -19h-120q-20 0 -29 19l-188 427l-45 -590q-1 -12 -10 -20.5t-21 -8.5h-135q-13 0 -23 10q-9 10 -9 24l78 961q1 12 10 20.5t21 8.5h142q20 0 29 -19l220 -520q10 -24 20 -51q3 7 9.5 24.5t10.5 26.5l221 520q9 19 29 19h141
+q13 0 22 -8.5t10 -20.5z" />
+    <glyph glyph-name="_568" unicode="&#xf25d;" horiz-adv-x="1792" 
+d="M1042 833q0 88 -60 121q-33 18 -117 18h-123v-281h162q66 0 102 37t36 105zM1094 548l205 -373q8 -17 -1 -31q-8 -16 -27 -16h-152q-20 0 -28 17l-194 365h-155v-350q0 -14 -9 -23t-23 -9h-134q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h294q128 0 190 -24q85 -31 134 -109
+t49 -180q0 -92 -42.5 -165.5t-115.5 -109.5q6 -10 9 -16zM896 1376q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM1792 640
+q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_569" unicode="&#xf25e;" horiz-adv-x="1792" 
+d="M605 303q153 0 257 104q14 18 3 36l-45 82q-6 13 -24 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13.5t-23.5 -14.5t-28.5 -13t-33.5 -9.5t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78
+q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-148 0 -246 -96.5t-98 -240.5q0 -146 97 -241.5t247 -95.5zM1235 303q153 0 257 104q14 18 4 36l-45 82q-8 14 -25 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13.5t-23.5 -14.5t-28.5 -13t-33.5 -9.5
+t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-147 0 -245.5 -96.5t-98.5 -240.5q0 -146 97 -241.5t247 -95.5zM896 1376
+q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191
+t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71z" />
+    <glyph glyph-name="f260" unicode="&#xf260;" horiz-adv-x="2048" 
+d="M736 736l384 -384l-384 -384l-672 672l672 672l168 -168l-96 -96l-72 72l-480 -480l480 -480l193 193l-289 287zM1312 1312l672 -672l-672 -672l-168 168l96 96l72 -72l480 480l-480 480l-193 -193l289 -287l-96 -96l-384 384z" />
+    <glyph glyph-name="f261" unicode="&#xf261;" horiz-adv-x="1792" 
+d="M717 182l271 271l-279 279l-88 -88l192 -191l-96 -96l-279 279l279 279l40 -40l87 87l-127 128l-454 -454zM1075 190l454 454l-454 454l-271 -271l279 -279l88 88l-192 191l96 96l279 -279l-279 -279l-40 40l-87 -88zM1792 640q0 -182 -71 -348t-191 -286t-286 -191
+t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_572" unicode="&#xf262;" horiz-adv-x="2304" 
+d="M651 539q0 -39 -27.5 -66.5t-65.5 -27.5q-39 0 -66.5 27.5t-27.5 66.5q0 38 27.5 65.5t66.5 27.5q38 0 65.5 -27.5t27.5 -65.5zM1805 540q0 -39 -27.5 -66.5t-66.5 -27.5t-66.5 27.5t-27.5 66.5t27.5 66t66.5 27t66.5 -27t27.5 -66zM765 539q0 79 -56.5 136t-136.5 57
+t-136.5 -56.5t-56.5 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM1918 540q0 80 -56.5 136.5t-136.5 56.5q-79 0 -136 -56.5t-57 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM850 539q0 -116 -81.5 -197.5t-196.5 -81.5q-116 0 -197.5 82t-81.5 197
+t82 196.5t197 81.5t196.5 -81.5t81.5 -196.5zM2004 540q0 -115 -81.5 -196.5t-197.5 -81.5q-115 0 -196.5 81.5t-81.5 196.5t81.5 196.5t196.5 81.5q116 0 197.5 -81.5t81.5 -196.5zM1040 537q0 191 -135.5 326.5t-326.5 135.5q-125 0 -231 -62t-168 -168.5t-62 -231.5
+t62 -231.5t168 -168.5t231 -62q191 0 326.5 135.5t135.5 326.5zM1708 1110q-254 111 -556 111q-319 0 -573 -110q117 0 223 -45.5t182.5 -122.5t122 -183t45.5 -223q0 115 43.5 219.5t118 180.5t177.5 123t217 50zM2187 537q0 191 -135 326.5t-326 135.5t-326.5 -135.5
+t-135.5 -326.5t135.5 -326.5t326.5 -135.5t326 135.5t135 326.5zM1921 1103h383q-44 -51 -75 -114.5t-40 -114.5q110 -151 110 -337q0 -156 -77 -288t-209 -208.5t-287 -76.5q-133 0 -249 56t-196 155q-47 -56 -129 -179q-11 22 -53.5 82.5t-74.5 97.5
+q-80 -99 -196.5 -155.5t-249.5 -56.5q-155 0 -287 76.5t-209 208.5t-77 288q0 186 110 337q-9 51 -40 114.5t-75 114.5h365q149 100 355 156.5t432 56.5q224 0 421 -56t348 -157z" />
+    <glyph glyph-name="f263" unicode="&#xf263;" horiz-adv-x="1280" 
+d="M640 629q-188 0 -321 133t-133 320q0 188 133 321t321 133t321 -133t133 -321q0 -187 -133 -320t-321 -133zM640 1306q-92 0 -157.5 -65.5t-65.5 -158.5q0 -92 65.5 -157.5t157.5 -65.5t157.5 65.5t65.5 157.5q0 93 -65.5 158.5t-157.5 65.5zM1163 574q13 -27 15 -49.5
+t-4.5 -40.5t-26.5 -38.5t-42.5 -37t-61.5 -41.5q-115 -73 -315 -94l73 -72l267 -267q30 -31 30 -74t-30 -73l-12 -13q-31 -30 -74 -30t-74 30q-67 68 -267 268l-267 -268q-31 -30 -74 -30t-73 30l-12 13q-31 30 -31 73t31 74l267 267l72 72q-203 21 -317 94
+q-39 25 -61.5 41.5t-42.5 37t-26.5 38.5t-4.5 40.5t15 49.5q10 20 28 35t42 22t56 -2t65 -35q5 -4 15 -11t43 -24.5t69 -30.5t92 -24t113 -11q91 0 174 25.5t120 50.5l38 25q33 26 65 35t56 2t42 -22t28 -35z" />
+    <glyph glyph-name="_574" unicode="&#xf264;" 
+d="M927 956q0 -66 -46.5 -112.5t-112.5 -46.5t-112.5 46.5t-46.5 112.5t46.5 112.5t112.5 46.5t112.5 -46.5t46.5 -112.5zM1141 593q-10 20 -28 32t-47.5 9.5t-60.5 -27.5q-10 -8 -29 -20t-81 -32t-127 -20t-124 18t-86 36l-27 18q-31 25 -60.5 27.5t-47.5 -9.5t-28 -32
+q-22 -45 -2 -74.5t87 -73.5q83 -53 226 -67l-51 -52q-142 -142 -191 -190q-22 -22 -22 -52.5t22 -52.5l9 -9q22 -22 52.5 -22t52.5 22l191 191q114 -115 191 -191q22 -22 52.5 -22t52.5 22l9 9q22 22 22 52.5t-22 52.5l-191 190l-52 52q141 14 225 67q67 44 87 73.5t-2 74.5
+zM1092 956q0 134 -95 229t-229 95t-229 -95t-95 -229t95 -229t229 -95t229 95t95 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_575" unicode="&#xf265;" horiz-adv-x="1720" 
+d="M1565 1408q65 0 110 -45.5t45 -110.5v-519q0 -176 -68 -336t-182.5 -275t-274 -182.5t-334.5 -67.5q-176 0 -335.5 67.5t-274.5 182.5t-183 275t-68 336v519q0 64 46 110t110 46h1409zM861 344q47 0 82 33l404 388q37 35 37 85q0 49 -34.5 83.5t-83.5 34.5q-47 0 -82 -33
+l-323 -310l-323 310q-35 33 -81 33q-49 0 -83.5 -34.5t-34.5 -83.5q0 -51 36 -85l405 -388q33 -33 81 -33z" />
+    <glyph glyph-name="_576" unicode="&#xf266;" horiz-adv-x="2304" 
+d="M1494 -103l-295 695q-25 -49 -158.5 -305.5t-198.5 -389.5q-1 -1 -27.5 -0.5t-26.5 1.5q-82 193 -255.5 587t-259.5 596q-21 50 -66.5 107.5t-103.5 100.5t-102 43q0 5 -0.5 24t-0.5 27h583v-50q-39 -2 -79.5 -16t-66.5 -43t-10 -64q26 -59 216.5 -499t235.5 -540
+q31 61 140 266.5t131 247.5q-19 39 -126 281t-136 295q-38 69 -201 71v50l513 -1v-47q-60 -2 -93.5 -25t-12.5 -69q33 -70 87 -189.5t86 -187.5q110 214 173 363q24 55 -10 79.5t-129 26.5q1 7 1 25v24q64 0 170.5 0.5t180 1t92.5 0.5v-49q-62 -2 -119 -33t-90 -81
+l-213 -442q13 -33 127.5 -290t121.5 -274l441 1017q-14 38 -49.5 62.5t-65 31.5t-55.5 8v50l460 -4l1 -2l-1 -44q-139 -4 -201 -145q-526 -1216 -559 -1291h-49z" />
+    <glyph glyph-name="_577" unicode="&#xf267;" horiz-adv-x="1792" 
+d="M949 643q0 -26 -16.5 -45t-41.5 -19q-26 0 -45 16.5t-19 41.5q0 26 17 45t42 19t44 -16.5t19 -41.5zM964 585l350 581q-9 -8 -67.5 -62.5t-125.5 -116.5t-136.5 -127t-117 -110.5t-50.5 -51.5l-349 -580q7 7 67 62t126 116.5t136 127t117 111t50 50.5zM1611 640
+q0 -201 -104 -371q-3 2 -17 11t-26.5 16.5t-16.5 7.5q-13 0 -13 -13q0 -10 59 -44q-74 -112 -184.5 -190.5t-241.5 -110.5l-16 67q-1 10 -15 10q-5 0 -8 -5.5t-2 -9.5l16 -68q-72 -15 -146 -15q-199 0 -372 105q1 2 13 20.5t21.5 33.5t9.5 19q0 13 -13 13q-6 0 -17 -14.5
+t-22.5 -34.5t-13.5 -23q-113 75 -192 187.5t-110 244.5l69 15q10 3 10 15q0 5 -5.5 8t-10.5 2l-68 -15q-14 72 -14 139q0 206 109 379q2 -1 18.5 -12t30 -19t17.5 -8q13 0 13 12q0 6 -12.5 15.5t-32.5 21.5l-20 12q77 112 189 189t244 107l15 -67q2 -10 15 -10q5 0 8 5.5
+t2 10.5l-15 66q71 13 134 13q204 0 379 -109q-39 -56 -39 -65q0 -13 12 -13q11 0 48 64q111 -75 187.5 -186t107.5 -241l-56 -12q-10 -2 -10 -16q0 -5 5.5 -8t9.5 -2l57 13q14 -72 14 -140zM1696 640q0 163 -63.5 311t-170.5 255t-255 170.5t-311 63.5t-311 -63.5
+t-255 -170.5t-170.5 -255t-63.5 -311t63.5 -311t170.5 -255t255 -170.5t311 -63.5t311 63.5t255 170.5t170.5 255t63.5 311zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191
+t191 -286t71 -348z" />
+    <glyph glyph-name="_578" unicode="&#xf268;" horiz-adv-x="1792" 
+d="M893 1536q240 2 451 -120q232 -134 352 -372l-742 39q-160 9 -294 -74.5t-185 -229.5l-276 424q128 159 311 245.5t383 87.5zM146 1131l337 -663q72 -143 211 -217t293 -45l-230 -451q-212 33 -385 157.5t-272.5 316t-99.5 411.5q0 267 146 491zM1732 962
+q58 -150 59.5 -310.5t-48.5 -306t-153 -272t-246 -209.5q-230 -133 -498 -119l405 623q88 131 82.5 290.5t-106.5 277.5zM896 942q125 0 213.5 -88.5t88.5 -213.5t-88.5 -213.5t-213.5 -88.5t-213.5 88.5t-88.5 213.5t88.5 213.5t213.5 88.5z" />
+    <glyph glyph-name="_579" unicode="&#xf269;" horiz-adv-x="1792" 
+d="M903 -256q-283 0 -504.5 150.5t-329.5 398.5q-58 131 -67 301t26 332.5t111 312t179 242.5l-11 -281q11 14 68 15.5t70 -15.5q42 81 160.5 138t234.5 59q-54 -45 -119.5 -148.5t-58.5 -163.5q25 -8 62.5 -13.5t63 -7.5t68 -4t50.5 -3q15 -5 9.5 -45.5t-30.5 -75.5
+q-5 -7 -16.5 -18.5t-56.5 -35.5t-101 -34l15 -189l-139 67q-18 -43 -7.5 -81.5t36 -66.5t65.5 -41.5t81 -6.5q51 9 98 34.5t83.5 45t73.5 17.5q61 -4 89.5 -33t19.5 -65q-1 -2 -2.5 -5.5t-8.5 -12.5t-18 -15.5t-31.5 -10.5t-46.5 -1q-60 -95 -144.5 -135.5t-209.5 -29.5
+q74 -61 162.5 -82.5t168.5 -6t154.5 52t128 87.5t80.5 104q43 91 39 192.5t-37.5 188.5t-78.5 125q87 -38 137 -79.5t77 -112.5q15 170 -57.5 343t-209.5 284q265 -77 412 -279.5t151 -517.5q2 -127 -40.5 -255t-123.5 -238t-189 -196t-247.5 -135.5t-288.5 -49.5z" />
+    <glyph glyph-name="_580" unicode="&#xf26a;" horiz-adv-x="1792" 
+d="M1493 1308q-165 110 -359 110q-155 0 -293 -73t-240 -200q-75 -93 -119.5 -218t-48.5 -266v-42q4 -141 48.5 -266t119.5 -218q102 -127 240 -200t293 -73q194 0 359 110q-121 -108 -274.5 -168t-322.5 -60q-29 0 -43 1q-175 8 -333 82t-272 193t-181 281t-67 339
+q0 182 71 348t191 286t286 191t348 71h3q168 -1 320.5 -60.5t273.5 -167.5zM1792 640q0 -192 -77 -362.5t-213 -296.5q-104 -63 -222 -63q-137 0 -255 84q154 56 253.5 233t99.5 405q0 227 -99 404t-253 234q119 83 254 83q119 0 226 -65q135 -125 210.5 -295t75.5 -361z
+" />
+    <glyph glyph-name="_581" unicode="&#xf26b;" horiz-adv-x="1792" 
+d="M1792 599q0 -56 -7 -104h-1151q0 -146 109.5 -244.5t257.5 -98.5q99 0 185.5 46.5t136.5 130.5h423q-56 -159 -170.5 -281t-267.5 -188.5t-321 -66.5q-187 0 -356 83q-228 -116 -394 -116q-237 0 -237 263q0 115 45 275q17 60 109 229q199 360 475 606
+q-184 -79 -427 -354q63 274 283.5 449.5t501.5 175.5q30 0 45 -1q255 117 433 117q64 0 116 -13t94.5 -40.5t66.5 -76.5t24 -115q0 -116 -75 -286q101 -182 101 -390zM1722 1239q0 83 -53 132t-137 49q-108 0 -254 -70q121 -47 222.5 -131.5t170.5 -195.5q51 135 51 216z
+M128 2q0 -86 48.5 -132.5t134.5 -46.5q115 0 266 83q-122 72 -213.5 183t-137.5 245q-98 -205 -98 -332zM632 715h728q-5 142 -113 237t-251 95q-144 0 -251.5 -95t-112.5 -237z" />
+    <glyph glyph-name="_582" unicode="&#xf26c;" horiz-adv-x="2048" 
+d="M1792 288v960q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1248v-960q0 -66 -47 -113t-113 -47h-736v-128h352q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23
+v64q0 14 9 23t23 9h352v128h-736q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="_583" unicode="&#xf26d;" horiz-adv-x="1792" 
+d="M138 1408h197q-70 -64 -126 -149q-36 -56 -59 -115t-30 -125.5t-8.5 -120t10.5 -132t21 -126t28 -136.5q4 -19 6 -28q51 -238 81 -329q57 -171 152 -275h-272q-48 0 -82 34t-34 82v1304q0 48 34 82t82 34zM1346 1408h308q48 0 82 -34t34 -82v-1304q0 -48 -34 -82t-82 -34
+h-178q212 210 196 565l-469 -101q-2 -45 -12 -82t-31 -72t-59.5 -59.5t-93.5 -36.5q-123 -26 -199 40q-32 27 -53 61t-51.5 129t-64.5 258q-35 163 -45.5 263t-5.5 139t23 77q20 41 62.5 73t102.5 45q45 12 83.5 6.5t67 -17t54 -35t43 -48t34.5 -56.5l468 100
+q-68 175 -180 287z" />
+    <glyph glyph-name="_584" unicode="&#xf26e;" 
+d="M1401 -11l-6 -6q-113 -113 -259 -175q-154 -64 -317 -64q-165 0 -317 64q-148 63 -259 175q-113 112 -175 258q-42 103 -54 189q-4 28 48 36q51 8 56 -20q1 -1 1 -4q18 -90 46 -159q50 -124 152 -226q98 -98 226 -152q132 -56 276 -56q143 0 276 56q128 55 225 152l6 6
+q10 10 25 6q12 -3 33 -22q36 -37 17 -58zM929 604l-66 -66l63 -63q21 -21 -7 -49q-17 -17 -32 -17q-10 0 -19 10l-62 61l-66 -66q-5 -5 -15 -5q-15 0 -31 16l-2 2q-18 15 -18 29q0 7 8 17l66 65l-66 66q-16 16 14 45q18 18 31 18q6 0 13 -5l65 -66l65 65q18 17 48 -13
+q27 -27 11 -44zM1400 547q0 -118 -46 -228q-45 -105 -126 -186q-80 -80 -187 -126t-228 -46t-228 46t-187 126q-82 82 -125 186q-15 33 -15 40h-1q-9 27 43 44q50 16 60 -12q37 -99 97 -167h1v339v2q3 136 102 232q105 103 253 103q147 0 251 -103t104 -249
+q0 -147 -104.5 -251t-250.5 -104q-58 0 -112 16q-28 11 -13 61q16 51 44 43l14 -3q14 -3 33 -6t30 -3q104 0 176 71.5t72 174.5q0 101 -72 171q-71 71 -175 71q-107 0 -178 -80q-64 -72 -64 -160v-413q110 -67 242 -67q96 0 185 36.5t156 103.5t103.5 155t36.5 183
+q0 198 -141 339q-140 140 -339 140q-200 0 -340 -140q-53 -53 -77 -87l-2 -2q-8 -11 -13 -15.5t-21.5 -9.5t-38.5 3q-21 5 -36.5 16.5t-15.5 26.5v680q0 15 10.5 26.5t27.5 11.5h877q30 0 30 -55t-30 -55h-811v-483h1q40 42 102 84t108 61q109 46 231 46q121 0 228 -46
+t187 -126q81 -81 126 -186q46 -112 46 -229zM1369 1128q9 -8 9 -18t-5.5 -18t-16.5 -21q-26 -26 -39 -26q-9 0 -16 7q-106 91 -207 133q-128 56 -276 56q-133 0 -262 -49q-27 -10 -45 37q-9 25 -8 38q3 16 16 20q130 57 299 57q164 0 316 -64q137 -58 235 -152z" />
+    <glyph glyph-name="_585" unicode="&#xf270;" horiz-adv-x="1792" 
+d="M1551 60q15 6 26 3t11 -17.5t-15 -33.5q-13 -16 -44 -43.5t-95.5 -68t-141 -74t-188 -58t-229.5 -24.5q-119 0 -238 31t-209 76.5t-172.5 104t-132.5 105t-84 87.5q-8 9 -10 16.5t1 12t8 7t11.5 2t11.5 -4.5q192 -117 300 -166q389 -176 799 -90q190 40 391 135z
+M1758 175q11 -16 2.5 -69.5t-28.5 -102.5q-34 -83 -85 -124q-17 -14 -26 -9t0 24q21 45 44.5 121.5t6.5 98.5q-5 7 -15.5 11.5t-27 6t-29.5 2.5t-35 0t-31.5 -2t-31 -3t-22.5 -2q-6 -1 -13 -1.5t-11 -1t-8.5 -1t-7 -0.5h-5.5h-4.5t-3 0.5t-2 1.5l-1.5 3q-6 16 47 40t103 30
+q46 7 108 1t76 -24zM1364 618q0 -31 13.5 -64t32 -58t37.5 -46t33 -32l13 -11l-227 -224q-40 37 -79 75.5t-58 58.5l-19 20q-11 11 -25 33q-38 -59 -97.5 -102.5t-127.5 -63.5t-140 -23t-137.5 21t-117.5 65.5t-83 113t-31 162.5q0 84 28 154t72 116.5t106.5 83t122.5 57
+t130 34.5t119.5 18.5t99.5 6.5v127q0 65 -21 97q-34 53 -121 53q-6 0 -16.5 -1t-40.5 -12t-56 -29.5t-56 -59.5t-48 -96l-294 27q0 60 22 119t67 113t108 95t151.5 65.5t190.5 24.5q100 0 181 -25t129.5 -61.5t81 -83t45 -86t12.5 -73.5v-589zM692 597q0 -86 70 -133
+q66 -44 139 -22q84 25 114 123q14 45 14 101v162q-59 -2 -111 -12t-106.5 -33.5t-87 -71t-32.5 -114.5z" />
+    <glyph glyph-name="_586" unicode="&#xf271;" horiz-adv-x="1792" 
+d="M1536 1280q52 0 90 -38t38 -90v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128zM1152 1376v-288q0 -14 9 -23t23 -9
+h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 1376v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM1536 -128v1024h-1408v-1024h1408zM896 448h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224
+v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224z" />
+    <glyph glyph-name="_587" unicode="&#xf272;" horiz-adv-x="1792" 
+d="M1152 416v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23
+t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47
+t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_588" unicode="&#xf273;" horiz-adv-x="1792" 
+d="M1111 151l-46 -46q-9 -9 -22 -9t-23 9l-188 189l-188 -189q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22t9 23l189 188l-189 188q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l188 -188l188 188q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23l-188 -188l188 -188q9 -10 9 -23t-9 -22z
+M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280
+q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_589" unicode="&#xf274;" horiz-adv-x="1792" 
+d="M1303 572l-512 -512q-10 -9 -23 -9t-23 9l-288 288q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l220 -220l444 444q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23
+t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47
+t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_590" unicode="&#xf275;" horiz-adv-x="1792" 
+d="M448 1536q26 0 45 -19t19 -45v-891l536 429q17 14 40 14q26 0 45 -19t19 -45v-379l536 429q17 14 40 14q26 0 45 -19t19 -45v-1152q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h384z" />
+    <glyph glyph-name="_591" unicode="&#xf276;" horiz-adv-x="1024" 
+d="M512 448q66 0 128 15v-655q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v655q62 -15 128 -15zM512 1536q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150t-150 362t150 362t362 150zM512 1312q14 0 23 9t9 23t-9 23t-23 9q-146 0 -249 -103t-103 -249
+q0 -14 9 -23t23 -9t23 9t9 23q0 119 84.5 203.5t203.5 84.5z" />
+    <glyph glyph-name="_592" unicode="&#xf277;" horiz-adv-x="1792" 
+d="M1745 1239q10 -10 10 -23t-10 -23l-141 -141q-28 -28 -68 -28h-1344q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h576v64q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-64h512q40 0 68 -28zM768 320h256v-512q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v512zM1600 768
+q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-1344q-40 0 -68 28l-141 141q-10 10 -10 23t10 23l141 141q28 28 68 28h512v192h256v-192h576z" />
+    <glyph glyph-name="_593" unicode="&#xf278;" horiz-adv-x="2048" 
+d="M2020 1525q28 -20 28 -53v-1408q0 -20 -11 -36t-29 -23l-640 -256q-24 -11 -48 0l-616 246l-616 -246q-10 -5 -24 -5q-19 0 -36 11q-28 20 -28 53v1408q0 20 11 36t29 23l640 256q24 11 48 0l616 -246l616 246q32 13 60 -6zM736 1390v-1270l576 -230v1270zM128 1173
+v-1270l544 217v1270zM1920 107v1270l-544 -217v-1270z" />
+    <glyph glyph-name="_594" unicode="&#xf279;" horiz-adv-x="1792" 
+d="M512 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472q0 20 17 28l480 256q7 4 15 4zM1760 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472
+q0 20 17 28l480 256q7 4 15 4zM640 1536q8 0 14 -3l512 -256q18 -10 18 -29v-1472q0 -13 -9.5 -22.5t-22.5 -9.5q-8 0 -14 3l-512 256q-18 10 -18 29v1472q0 13 9.5 22.5t22.5 9.5z" />
+    <glyph glyph-name="_595" unicode="&#xf27a;" horiz-adv-x="1792" 
+d="M640 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 640q0 53 -37.5 90.5t-90.5 37.5
+t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-110 0 -211 18q-173 -173 -435 -229q-52 -10 -86 -13q-12 -1 -22 6t-13 18q-4 15 20 37q5 5 23.5 21.5t25.5 23.5t23.5 25.5t24 31.5t20.5 37
+t20 48t14.5 57.5t12.5 72.5q-146 90 -229.5 216.5t-83.5 269.5q0 174 120 321.5t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
+    <glyph glyph-name="_596" unicode="&#xf27b;" horiz-adv-x="1792" 
+d="M640 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 -53 -37.5 -90.5t-90.5 -37.5
+t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5
+t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51
+t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 130 71 248.5t191 204.5t286 136.5t348 50.5t348 -50.5t286 -136.5t191 -204.5t71 -248.5z" />
+    <glyph glyph-name="_597" unicode="&#xf27c;" horiz-adv-x="1024" 
+d="M512 345l512 295v-591l-512 -296v592zM0 640v-591l512 296zM512 1527v-591l-512 -296v591zM512 936l512 295v-591z" />
+    <glyph glyph-name="_598" unicode="&#xf27d;" horiz-adv-x="1792" 
+d="M1709 1018q-10 -236 -332 -651q-333 -431 -562 -431q-142 0 -240 263q-44 160 -132 482q-72 262 -157 262q-18 0 -127 -76l-77 98q24 21 108 96.5t130 115.5q156 138 241 146q95 9 153 -55.5t81 -203.5q44 -287 66 -373q55 -249 120 -249q51 0 154 161q101 161 109 246
+q13 139 -109 139q-57 0 -121 -26q120 393 459 382q251 -8 236 -326z" />
+    <glyph glyph-name="f27e" unicode="&#xf27e;" 
+d="M0 1408h1536v-1536h-1536v1536zM1085 293l-221 631l221 297h-634l221 -297l-221 -631l317 -304z" />
+    <glyph glyph-name="uniF280" unicode="&#xf280;" 
+d="M0 1408h1536v-1536h-1536v1536zM908 1088l-12 -33l75 -83l-31 -114l25 -25l107 57l107 -57l25 25l-31 114l75 83l-12 33h-95l-53 96h-32l-53 -96h-95zM641 925q32 0 44.5 -16t11.5 -63l174 21q0 55 -17.5 92.5t-50.5 56t-69 25.5t-85 7q-133 0 -199 -57.5t-66 -182.5v-72
+h-96v-128h76q20 0 20 -8v-382q0 -14 -5 -20t-18 -7l-73 -7v-88h448v86l-149 14q-6 1 -8.5 1.5t-3.5 2.5t-0.5 4t1 7t0.5 10v387h191l38 128h-231q-6 0 -2 6t4 9v80q0 27 1.5 40.5t7.5 28t19.5 20t36.5 5.5zM1248 96v86l-54 9q-7 1 -9.5 2.5t-2.5 3t1 7.5t1 12v520h-275
+l-23 -101l83 -22q23 -7 23 -27v-370q0 -14 -6 -18.5t-20 -6.5l-70 -9v-86h352z" />
+    <glyph glyph-name="uniF281" unicode="&#xf281;" horiz-adv-x="1792" 
+d="M1792 690q0 -58 -29.5 -105.5t-79.5 -72.5q12 -46 12 -96q0 -155 -106.5 -287t-290.5 -208.5t-400 -76.5t-399.5 76.5t-290 208.5t-106.5 287q0 47 11 94q-51 25 -82 73.5t-31 106.5q0 82 58 140.5t141 58.5q85 0 145 -63q218 152 515 162l116 521q3 13 15 21t26 5
+l369 -81q18 37 54 59.5t79 22.5q62 0 106 -43.5t44 -105.5t-44 -106t-106 -44t-105.5 43.5t-43.5 105.5l-334 74l-104 -472q300 -9 519 -160q58 61 143 61q83 0 141 -58.5t58 -140.5zM418 491q0 -62 43.5 -106t105.5 -44t106 44t44 106t-44 105.5t-106 43.5q-61 0 -105 -44
+t-44 -105zM1228 136q11 11 11 26t-11 26q-10 10 -25 10t-26 -10q-41 -42 -121 -62t-160 -20t-160 20t-121 62q-11 10 -26 10t-25 -10q-11 -10 -11 -25.5t11 -26.5q43 -43 118.5 -68t122.5 -29.5t91 -4.5t91 4.5t122.5 29.5t118.5 68zM1225 341q62 0 105.5 44t43.5 106
+q0 61 -44 105t-105 44q-62 0 -106 -43.5t-44 -105.5t44 -106t106 -44z" />
+    <glyph glyph-name="_602" unicode="&#xf282;" horiz-adv-x="1792" 
+d="M69 741h1q16 126 58.5 241.5t115 217t167.5 176t223.5 117.5t276.5 43q231 0 414 -105.5t294 -303.5q104 -187 104 -442v-188h-1125q1 -111 53.5 -192.5t136.5 -122.5t189.5 -57t213 -3t208 46.5t173.5 84.5v-377q-92 -55 -229.5 -92t-312.5 -38t-316 53
+q-189 73 -311.5 249t-124.5 372q-3 242 111 412t325 268q-48 -60 -78 -125.5t-46 -159.5h635q8 77 -8 140t-47 101.5t-70.5 66.5t-80.5 41t-75 20.5t-56 8.5l-22 1q-135 -5 -259.5 -44.5t-223.5 -104.5t-176 -140.5t-138 -163.5z" />
+    <glyph glyph-name="_603" unicode="&#xf283;" horiz-adv-x="2304" 
+d="M0 32v608h2304v-608q0 -66 -47 -113t-113 -47h-1984q-66 0 -113 47t-47 113zM640 256v-128h384v128h-384zM256 256v-128h256v128h-256zM2144 1408q66 0 113 -47t47 -113v-224h-2304v224q0 66 47 113t113 47h1984z" />
+    <glyph glyph-name="_604" unicode="&#xf284;" horiz-adv-x="1792" 
+d="M1584 246l-218 111q-74 -120 -196.5 -189t-263.5 -69q-147 0 -271 72t-196 196t-72 270q0 110 42.5 209.5t115 172t172 115t209.5 42.5q131 0 247.5 -60.5t192.5 -168.5l215 125q-110 169 -286.5 265t-378.5 96q-161 0 -308 -63t-253 -169t-169 -253t-63 -308t63 -308
+t169 -253t253 -169t308 -63q213 0 397.5 107t290.5 292zM1030 643l693 -352q-116 -253 -334.5 -400t-492.5 -147q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71q260 0 470.5 -133.5t335.5 -366.5zM1543 640h-39v-160h-96v352h136q32 0 54.5 -20
+t28.5 -48t1 -56t-27.5 -48t-57.5 -20z" />
+    <glyph glyph-name="uniF285" unicode="&#xf285;" horiz-adv-x="1792" 
+d="M1427 827l-614 386l92 151h855zM405 562l-184 116v858l1183 -743zM1424 697l147 -95v-858l-532 335zM1387 718l-500 -802h-855l356 571z" />
+    <glyph glyph-name="uniF286" unicode="&#xf286;" horiz-adv-x="1792" 
+d="M640 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1152 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1664 496v-752h-640v320q0 80 -56 136t-136 56t-136 -56t-56 -136v-320h-640v752q0 16 16 16h96
+q16 0 16 -16v-112h128v624q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 6 2.5 9.5t8.5 5t9.5 2t11.5 0t9 -0.5v391q-32 15 -32 50q0 23 16.5 39t38.5 16t38.5 -16t16.5 -39q0 -35 -32 -50v-17q45 10 83 10q21 0 59.5 -7.5t54.5 -7.5
+q17 0 47 7.5t37 7.5q16 0 16 -16v-210q0 -15 -35 -21.5t-62 -6.5q-18 0 -54.5 7.5t-55.5 7.5q-40 0 -90 -12v-133q1 0 9 0.5t11.5 0t9.5 -2t8.5 -5t2.5 -9.5v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-624h128v112q0 16 16 16h96
+q16 0 16 -16z" />
+    <glyph glyph-name="_607" unicode="&#xf287;" horiz-adv-x="2304" 
+d="M2288 731q16 -8 16 -27t-16 -27l-320 -192q-8 -5 -16 -5q-9 0 -16 4q-16 10 -16 28v128h-858q37 -58 83 -165q16 -37 24.5 -55t24 -49t27 -47t27 -34t31.5 -26t33 -8h96v96q0 14 9 23t23 9h320q14 0 23 -9t9 -23v-320q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v96h-96
+q-32 0 -61 10t-51 23.5t-45 40.5t-37 46t-33.5 57t-28.5 57.5t-28 60.5q-23 53 -37 81.5t-36 65t-44.5 53.5t-46.5 17h-360q-22 -84 -91 -138t-157 -54q-106 0 -181 75t-75 181t75 181t181 75q88 0 157 -54t91 -138h104q24 0 46.5 17t44.5 53.5t36 65t37 81.5q19 41 28 60.5
+t28.5 57.5t33.5 57t37 46t45 40.5t51 23.5t61 10h107q21 57 70 92.5t111 35.5q80 0 136 -56t56 -136t-56 -136t-136 -56q-62 0 -111 35.5t-70 92.5h-107q-17 0 -33 -8t-31.5 -26t-27 -34t-27 -47t-24 -49t-24.5 -55q-46 -107 -83 -165h1114v128q0 18 16 28t32 -1z" />
+    <glyph glyph-name="_608" unicode="&#xf288;" horiz-adv-x="1792" 
+d="M1150 774q0 -56 -39.5 -95t-95.5 -39h-253v269h253q56 0 95.5 -39.5t39.5 -95.5zM1329 774q0 130 -91.5 222t-222.5 92h-433v-896h180v269h253q130 0 222 91.5t92 221.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348
+t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_609" unicode="&#xf289;" horiz-adv-x="2304" 
+d="M1645 438q0 59 -34 106.5t-87 68.5q-7 -45 -23 -92q-7 -24 -27.5 -38t-44.5 -14q-12 0 -24 3q-31 10 -45 38.5t-4 58.5q23 71 23 143q0 123 -61 227.5t-166 165.5t-228 61q-134 0 -247 -73t-167 -194q108 -28 188 -106q22 -23 22 -55t-22 -54t-54 -22t-55 22
+q-75 75 -180 75q-106 0 -181 -74.5t-75 -180.5t75 -180.5t181 -74.5h1046q79 0 134.5 55.5t55.5 133.5zM1798 438q0 -142 -100.5 -242t-242.5 -100h-1046q-169 0 -289 119.5t-120 288.5q0 153 100 267t249 136q62 184 221 298t354 114q235 0 408.5 -158.5t196.5 -389.5
+q116 -25 192.5 -118.5t76.5 -214.5zM2048 438q0 -175 -97 -319q-23 -33 -64 -33q-24 0 -43 13q-26 17 -32 48.5t12 57.5q71 104 71 233t-71 233q-18 26 -12 57t32 49t57.5 11.5t49.5 -32.5q97 -142 97 -318zM2304 438q0 -244 -134 -443q-23 -34 -64 -34q-23 0 -42 13
+q-26 18 -32.5 49t11.5 57q108 164 108 358q0 195 -108 357q-18 26 -11.5 57.5t32.5 48.5q26 18 57 12t49 -33q134 -198 134 -442z" />
+    <glyph glyph-name="_610" unicode="&#xf28a;" 
+d="M1500 -13q0 -89 -63 -152.5t-153 -63.5t-153.5 63.5t-63.5 152.5q0 90 63.5 153.5t153.5 63.5t153 -63.5t63 -153.5zM1267 268q-115 -15 -192.5 -102.5t-77.5 -205.5q0 -74 33 -138q-146 -78 -379 -78q-109 0 -201 21t-153.5 54.5t-110.5 76.5t-76 85t-44.5 83
+t-23.5 66.5t-6 39.5q0 19 4.5 42.5t18.5 56t36.5 58t64 43.5t94.5 18t94 -17.5t63 -41t35.5 -53t17.5 -49t4 -33.5q0 -34 -23 -81q28 -27 82 -42t93 -17l40 -1q115 0 190 51t75 133q0 26 -9 48.5t-31.5 44.5t-49.5 41t-74 44t-93.5 47.5t-119.5 56.5q-28 13 -43 20
+q-116 55 -187 100t-122.5 102t-72 125.5t-20.5 162.5q0 78 20.5 150t66 137.5t112.5 114t166.5 77t221.5 28.5q120 0 220 -26t164.5 -67t109.5 -94t64 -105.5t19 -103.5q0 -46 -15 -82.5t-36.5 -58t-48.5 -36t-49 -19.5t-39 -5h-8h-32t-39 5t-44 14t-41 28t-37 46t-24 70.5
+t-10 97.5q-15 16 -59 25.5t-81 10.5l-37 1q-68 0 -117.5 -31t-70.5 -70t-21 -76q0 -24 5 -43t24 -46t53 -51t97 -53.5t150 -58.5q76 -25 138.5 -53.5t109 -55.5t83 -59t60.5 -59.5t41 -62.5t26.5 -62t14.5 -63.5t6 -62t1 -62.5z" />
+    <glyph glyph-name="_611" unicode="&#xf28b;" 
+d="M704 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1152 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103
+t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_612" unicode="&#xf28c;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273
+t73 -273t198 -198t273 -73zM864 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192z" />
+    <glyph glyph-name="_613" unicode="&#xf28d;" 
+d="M1088 352v576q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
+t103 -385.5z" />
+    <glyph glyph-name="_614" unicode="&#xf28e;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273
+t73 -273t198 -198t273 -73zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h576q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-576z" />
+    <glyph glyph-name="_615" unicode="&#xf290;" horiz-adv-x="1792" 
+d="M1757 128l35 -313q3 -28 -16 -50q-19 -21 -48 -21h-1664q-29 0 -48 21q-19 22 -16 50l35 313h1722zM1664 967l86 -775h-1708l86 775q3 24 21 40.5t43 16.5h256v-128q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v128h384v-128q0 -53 37.5 -90.5t90.5 -37.5
+t90.5 37.5t37.5 90.5v128h256q25 0 43 -16.5t21 -40.5zM1280 1152v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 159 112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="_616" unicode="&#xf291;" horiz-adv-x="2048" 
+d="M1920 768q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-15l-115 -662q-8 -46 -44 -76t-82 -30h-1280q-46 0 -82 30t-44 76l-115 662h-15q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h1792zM485 -32q26 2 43.5 22.5t15.5 46.5l-32 416q-2 26 -22.5 43.5
+t-46.5 15.5t-43.5 -22.5t-15.5 -46.5l32 -416q2 -25 20.5 -42t43.5 -17h5zM896 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1280 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1632 27l32 416
+q2 26 -15.5 46.5t-43.5 22.5t-46.5 -15.5t-22.5 -43.5l-32 -416q-2 -26 15.5 -46.5t43.5 -22.5h5q25 0 43.5 17t20.5 42zM476 1244l-93 -412h-132l101 441q19 88 89 143.5t160 55.5h167q0 26 19 45t45 19h384q26 0 45 -19t19 -45h167q90 0 160 -55.5t89 -143.5l101 -441
+h-132l-93 412q-11 44 -45.5 72t-79.5 28h-167q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45h-167q-45 0 -79.5 -28t-45.5 -72z" />
+    <glyph glyph-name="_617" unicode="&#xf292;" horiz-adv-x="1792" 
+d="M991 512l64 256h-254l-64 -256h254zM1759 1016l-56 -224q-7 -24 -31 -24h-327l-64 -256h311q15 0 25 -12q10 -14 6 -28l-56 -224q-5 -24 -31 -24h-327l-81 -328q-7 -24 -31 -24h-224q-16 0 -26 12q-9 12 -6 28l78 312h-254l-81 -328q-7 -24 -31 -24h-225q-15 0 -25 12
+q-9 12 -6 28l78 312h-311q-15 0 -25 12q-9 12 -6 28l56 224q7 24 31 24h327l64 256h-311q-15 0 -25 12q-10 14 -6 28l56 224q5 24 31 24h327l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h254l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h311
+q15 0 25 -12q9 -12 6 -28z" />
+    <glyph glyph-name="_618" unicode="&#xf293;" 
+d="M841 483l148 -148l-149 -149zM840 1094l149 -149l-148 -148zM710 -130l464 464l-306 306l306 306l-464 464v-611l-255 255l-93 -93l320 -321l-320 -321l93 -93l255 255v-611zM1429 640q0 -209 -32 -365.5t-87.5 -257t-140.5 -162.5t-181.5 -86.5t-219.5 -24.5
+t-219.5 24.5t-181.5 86.5t-140.5 162.5t-87.5 257t-32 365.5t32 365.5t87.5 257t140.5 162.5t181.5 86.5t219.5 24.5t219.5 -24.5t181.5 -86.5t140.5 -162.5t87.5 -257t32 -365.5z" />
+    <glyph glyph-name="_619" unicode="&#xf294;" horiz-adv-x="1024" 
+d="M596 113l173 172l-173 172v-344zM596 823l173 172l-173 172v-344zM628 640l356 -356l-539 -540v711l-297 -296l-108 108l372 373l-372 373l108 108l297 -296v711l539 -540z" />
+    <glyph glyph-name="_620" unicode="&#xf295;" 
+d="M1280 256q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM512 1024q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5
+t112.5 -271.5zM1440 1344q0 -20 -13 -38l-1056 -1408q-19 -26 -51 -26h-160q-26 0 -45 19t-19 45q0 20 13 38l1056 1408q19 26 51 26h160q26 0 45 -19t19 -45zM768 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5
+t271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="_621" unicode="&#xf296;" horiz-adv-x="1792" 
+d="M104 830l792 -1015l-868 630q-18 13 -25 34.5t0 42.5l101 308v0zM566 830h660l-330 -1015v0zM368 1442l198 -612h-462l198 612q8 23 33 23t33 -23zM1688 830l101 -308q7 -21 0 -42.5t-25 -34.5l-868 -630l792 1015v0zM1688 830h-462l198 612q8 23 33 23t33 -23z" />
+    <glyph glyph-name="_622" unicode="&#xf297;" horiz-adv-x="1792" 
+d="M384 704h160v224h-160v-224zM1221 372v92q-104 -36 -243 -38q-135 -1 -259.5 46.5t-220.5 122.5l1 -96q88 -80 212 -128.5t272 -47.5q129 0 238 49zM640 704h640v224h-640v-224zM1792 736q0 -187 -99 -352q89 -102 89 -229q0 -157 -129.5 -268t-313.5 -111
+q-122 0 -225 52.5t-161 140.5q-19 -1 -57 -1t-57 1q-58 -88 -161 -140.5t-225 -52.5q-184 0 -313.5 111t-129.5 268q0 127 89 229q-99 165 -99 352q0 209 120 385.5t326.5 279.5t449.5 103t449.5 -103t326.5 -279.5t120 -385.5z" />
+    <glyph glyph-name="_623" unicode="&#xf298;" 
+d="M515 625v-128h-252v128h252zM515 880v-127h-252v127h252zM1273 369v-128h-341v128h341zM1273 625v-128h-672v128h672zM1273 880v-127h-672v127h672zM1408 20v1240q0 8 -6 14t-14 6h-32l-378 -256l-210 171l-210 -171l-378 256h-32q-8 0 -14 -6t-6 -14v-1240q0 -8 6 -14
+t14 -6h1240q8 0 14 6t6 14zM553 1130l185 150h-406zM983 1130l221 150h-406zM1536 1260v-1240q0 -62 -43 -105t-105 -43h-1240q-62 0 -105 43t-43 105v1240q0 62 43 105t105 43h1240q62 0 105 -43t43 -105z" />
+    <glyph glyph-name="_624" unicode="&#xf299;" horiz-adv-x="1792" 
+d="M896 720q-104 196 -160 278q-139 202 -347 318q-34 19 -70 36q-89 40 -94 32t34 -38l39 -31q62 -43 112.5 -93.5t94.5 -116.5t70.5 -113t70.5 -131q9 -17 13 -25q44 -84 84 -153t98 -154t115.5 -150t131 -123.5t148.5 -90.5q153 -66 154 -60q1 3 -49 37q-53 36 -81 57
+q-77 58 -179 211t-185 310zM549 177q-76 60 -132.5 125t-98 143.5t-71 154.5t-58.5 186t-52 209t-60.5 252t-76.5 289q273 0 497.5 -36t379 -92t271 -144.5t185.5 -172.5t110 -198.5t56 -199.5t12.5 -198.5t-9.5 -173t-20 -143.5t-13 -107l323 -327h-104l-281 285
+q-22 -2 -91.5 -14t-121.5 -19t-138 -6t-160.5 17t-167.5 59t-179 111z" />
+    <glyph glyph-name="_625" unicode="&#xf29a;" horiz-adv-x="1792" 
+d="M1374 879q-6 26 -28.5 39.5t-48.5 7.5q-261 -62 -401 -62t-401 62q-26 6 -48.5 -7.5t-28.5 -39.5t7.5 -48.5t39.5 -28.5q194 -46 303 -58q-2 -158 -15.5 -269t-26.5 -155.5t-41 -115.5l-9 -21q-10 -25 1 -49t36 -34q9 -4 23 -4q44 0 60 41l8 20q54 139 71 259h42
+q17 -120 71 -259l8 -20q16 -41 60 -41q14 0 23 4q25 10 36 34t1 49l-9 21q-28 71 -41 115.5t-26.5 155.5t-15.5 269q109 12 303 58q26 6 39.5 28.5t7.5 48.5zM1024 1024q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z
+M1600 640q0 -143 -55.5 -273.5t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5zM896 1408q-156 0 -298 -61t-245 -164t-164 -245t-61 -298t61 -298
+t164 -245t245 -164t298 -61t298 61t245 164t164 245t61 298t-61 298t-164 245t-245 164t-298 61zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_626" unicode="&#xf29b;" 
+d="M1438 723q34 -35 29 -82l-44 -551q-4 -42 -34.5 -70t-71.5 -28q-6 0 -9 1q-44 3 -72.5 36.5t-25.5 77.5l35 429l-143 -8q55 -113 55 -240q0 -216 -148 -372l-137 137q91 101 91 235q0 145 -102.5 248t-247.5 103q-134 0 -236 -92l-137 138q120 114 284 141l264 300
+l-149 87l-181 -161q-33 -30 -77 -27.5t-73 35.5t-26.5 77t34.5 73l239 213q26 23 60 26.5t64 -14.5l488 -283q36 -21 48 -68q17 -67 -26 -117l-205 -232l371 20q49 3 83 -32zM1240 1180q-74 0 -126 52t-52 126t52 126t126 52t126.5 -52t52.5 -126t-52.5 -126t-126.5 -52z
+M613 -62q106 0 196 61l139 -139q-146 -116 -335 -116q-148 0 -273.5 73t-198.5 198t-73 273q0 188 116 336l139 -139q-60 -88 -60 -197q0 -145 102.5 -247.5t247.5 -102.5z" />
+    <glyph glyph-name="_627" unicode="&#xf29c;" 
+d="M880 336v-160q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v160q0 14 9 23t23 9h160q14 0 23 -9t9 -23zM1136 832q0 -50 -15 -90t-45.5 -69t-52 -44t-59.5 -36q-32 -18 -46.5 -28t-26 -24t-11.5 -29v-32q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v68q0 35 10.5 64.5
+t24 47.5t39 35.5t41 25.5t44.5 21q53 25 75 43t22 49q0 42 -43.5 71.5t-95.5 29.5q-56 0 -95 -27q-29 -20 -80 -83q-9 -12 -25 -12q-11 0 -19 6l-108 82q-10 7 -12 20t5 23q122 192 349 192q129 0 238.5 -89.5t109.5 -214.5zM768 1280q-130 0 -248.5 -51t-204 -136.5
+t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5
+t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_628" unicode="&#xf29d;" horiz-adv-x="1408" 
+d="M366 1225q-64 0 -110 45.5t-46 110.5q0 64 46 109.5t110 45.5t109.5 -45.5t45.5 -109.5q0 -65 -45.5 -110.5t-109.5 -45.5zM917 583q0 -50 -30 -67.5t-63.5 -6.5t-47.5 34l-367 438q-7 12 -14 15.5t-11 1.5l-3 -3q-7 -8 4 -21l122 -139l1 -354l-161 -457
+q-67 -192 -92 -234q-15 -26 -28 -32q-50 -26 -103 -1q-29 13 -41.5 43t-9.5 57q2 17 197 618l5 416l-85 -164l35 -222q4 -24 -1 -42t-14 -27.5t-19 -16t-17 -7.5l-7 -2q-19 -3 -34.5 3t-24 16t-14 22t-7.5 19.5t-2 9.5l-46 299l211 381q23 34 113 34q75 0 107 -40l424 -521
+q7 -5 14 -17l3 -3l-1 -1q7 -13 7 -29zM514 433q43 -113 88.5 -225t69.5 -168l24 -55q36 -93 42 -125q11 -70 -36 -97q-35 -22 -66 -16t-51 22t-29 35h-1q-6 16 -8 25l-124 351zM1338 -159q31 -49 31 -57q0 -5 -3 -7q-9 -5 -14.5 0.5t-15.5 26t-16 30.5q-114 172 -423 661
+q3 -1 7 1t7 4l3 2q11 9 11 17z" />
+    <glyph glyph-name="_629" unicode="&#xf29e;" horiz-adv-x="2304" 
+d="M504 542h171l-1 265zM1530 641q0 87 -50.5 140t-146.5 53h-54v-388h52q91 0 145 57t54 138zM956 1018l1 -756q0 -14 -9.5 -24t-23.5 -10h-216q-14 0 -23.5 10t-9.5 24v62h-291l-55 -81q-10 -15 -28 -15h-267q-21 0 -30.5 18t3.5 35l556 757q9 14 27 14h332q14 0 24 -10
+t10 -24zM1783 641q0 -193 -125.5 -303t-324.5 -110h-270q-14 0 -24 10t-10 24v756q0 14 10 24t24 10h268q200 0 326 -109t126 -302zM1939 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5
+t-7.5 60t-20 91.5t-41 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2123 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-45 -108t-74 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5
+h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2304 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66 104.5t41 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96
+t9.5 -70.5z" />
+    <glyph glyph-name="uniF2A0" unicode="&#xf2a0;" horiz-adv-x="1408" 
+d="M617 -153q0 11 -13 58t-31 107t-20 69q-1 4 -5 26.5t-8.5 36t-13.5 21.5q-15 14 -51 14q-23 0 -70 -5.5t-71 -5.5q-34 0 -47 11q-6 5 -11 15.5t-7.5 20t-6.5 24t-5 18.5q-37 128 -37 255t37 255q1 4 5 18.5t6.5 24t7.5 20t11 15.5q13 11 47 11q24 0 71 -5.5t70 -5.5
+q36 0 51 14q9 8 13.5 21.5t8.5 36t5 26.5q2 9 20 69t31 107t13 58q0 22 -43.5 52.5t-75.5 42.5q-20 8 -45 8q-34 0 -98 -18q-57 -17 -96.5 -40.5t-71 -66t-46 -70t-45.5 -94.5q-6 -12 -9 -19q-49 -107 -68 -216t-19 -244t19 -244t68 -216q56 -122 83 -161q63 -91 179 -127
+l6 -2q64 -18 98 -18q25 0 45 8q32 12 75.5 42.5t43.5 52.5zM776 760q-26 0 -45 19t-19 45.5t19 45.5q37 37 37 90q0 52 -37 91q-19 19 -19 45t19 45t45 19t45 -19q75 -75 75 -181t-75 -181q-21 -19 -45 -19zM957 579q-27 0 -45 19q-19 19 -19 45t19 45q112 114 112 272
+t-112 272q-19 19 -19 45t19 45t45 19t45 -19q150 -150 150 -362t-150 -362q-18 -19 -45 -19zM1138 398q-27 0 -45 19q-19 19 -19 45t19 45q90 91 138.5 208t48.5 245t-48.5 245t-138.5 208q-19 19 -19 45t19 45t45 19t45 -19q109 -109 167 -249t58 -294t-58 -294t-167 -249
+q-18 -19 -45 -19z" />
+    <glyph glyph-name="uniF2A1" unicode="&#xf2a1;" horiz-adv-x="2176" 
+d="M192 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 352
+q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 864
+q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 1376q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 192q0 -80 -56 -136
+t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 1216q0 -80 -56 -136t-136 -56
+t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 192q0 -80 -56 -136t-136 -56t-136 56
+t-56 136t56 136t136 56t136 -56t56 -136zM1664 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136
+t56 136t136 56t136 -56t56 -136zM2176 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136z" />
+    <glyph glyph-name="uniF2A2" unicode="&#xf2a2;" horiz-adv-x="1792" 
+d="M128 -192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM320 0q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM365 365l256 -256l-90 -90l-256 256zM704 384q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45z
+M1411 704q0 -59 -11.5 -108.5t-37.5 -93.5t-44 -67.5t-53 -64.5q-31 -35 -45.5 -54t-33.5 -50t-26.5 -64t-7.5 -74q0 -159 -112.5 -271.5t-271.5 -112.5q-26 0 -45 19t-19 45t19 45t45 19q106 0 181 75t75 181q0 57 11.5 105.5t37 91t43.5 66.5t52 63q40 46 59.5 72
+t37.5 74.5t18 103.5q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM896 576q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45
+t45 19t45 -19t19 -45zM1184 704q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 93 -65.5 158.5t-158.5 65.5q-92 0 -158 -65.5t-66 -158.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 146 103 249t249 103t249 -103t103 -249zM1578 993q10 -25 -1 -49t-36 -34q-9 -4 -23 -4
+q-19 0 -35.5 11t-23.5 30q-68 178 -224 295q-21 16 -25 42t12 47q17 21 43 25t47 -12q183 -137 266 -351zM1788 1074q9 -25 -1.5 -49t-35.5 -34q-11 -4 -23 -4q-44 0 -60 41q-92 238 -297 393q-22 16 -25.5 42t12.5 47q16 22 42 25.5t47 -12.5q235 -175 341 -449z" />
+    <glyph glyph-name="uniF2A3" unicode="&#xf2a3;" horiz-adv-x="2304" 
+d="M1032 576q-59 2 -84 55q-17 34 -48 53.5t-68 19.5q-53 0 -90.5 -37.5t-37.5 -90.5q0 -56 36 -89l10 -8q34 -31 82 -31q37 0 68 19.5t48 53.5q25 53 84 55zM1600 704q0 56 -36 89l-10 8q-34 31 -82 31q-37 0 -68 -19.5t-48 -53.5q-25 -53 -84 -55q59 -2 84 -55
+q17 -34 48 -53.5t68 -19.5q53 0 90.5 37.5t37.5 90.5zM1174 925q-17 -35 -55 -48t-73 4q-62 31 -134 31q-51 0 -99 -17q3 0 9.5 0.5t9.5 0.5q92 0 170.5 -50t118.5 -133q17 -36 3.5 -73.5t-49.5 -54.5q-18 -9 -39 -9q21 0 39 -9q36 -17 49.5 -54.5t-3.5 -73.5
+q-40 -83 -118.5 -133t-170.5 -50h-6q-16 2 -44 4l-290 27l-239 -120q-14 -7 -29 -7q-40 0 -57 35l-160 320q-11 23 -4 47.5t29 37.5l209 119l148 267q17 155 91.5 291.5t195.5 236.5q31 25 70.5 21.5t64.5 -34.5t21.5 -70t-34.5 -65q-70 -59 -117 -128q123 84 267 101
+q40 5 71.5 -19t35.5 -64q5 -40 -19 -71.5t-64 -35.5q-84 -10 -159 -55q46 10 99 10q115 0 218 -50q36 -18 49 -55.5t-5 -73.5zM2137 1085l160 -320q11 -23 4 -47.5t-29 -37.5l-209 -119l-148 -267q-17 -155 -91.5 -291.5t-195.5 -236.5q-26 -22 -61 -22q-45 0 -74 35
+q-25 31 -21.5 70t34.5 65q70 59 117 128q-123 -84 -267 -101q-4 -1 -12 -1q-36 0 -63.5 24t-31.5 60q-5 40 19 71.5t64 35.5q84 10 159 55q-46 -10 -99 -10q-115 0 -218 50q-36 18 -49 55.5t5 73.5q17 35 55 48t73 -4q62 -31 134 -31q51 0 99 17q-3 0 -9.5 -0.5t-9.5 -0.5
+q-92 0 -170.5 50t-118.5 133q-17 36 -3.5 73.5t49.5 54.5q18 9 39 9q-21 0 -39 9q-36 17 -49.5 54.5t3.5 73.5q40 83 118.5 133t170.5 50h6h1q14 -2 42 -4l291 -27l239 120q14 7 29 7q40 0 57 -35z" />
+    <glyph glyph-name="uniF2A4" unicode="&#xf2a4;" horiz-adv-x="1792" 
+d="M1056 704q0 -26 19 -45t45 -19t45 19t19 45q0 146 -103 249t-249 103t-249 -103t-103 -249q0 -26 19 -45t45 -19t45 19t19 45q0 93 66 158.5t158 65.5t158 -65.5t66 -158.5zM835 1280q-117 0 -223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5q0 -26 19 -45t45 -19t45 19
+t19 45q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -55 -18 -103.5t-37.5 -74.5t-59.5 -72q-34 -39 -52 -63t-43.5 -66.5t-37 -91t-11.5 -105.5q0 -106 -75 -181t-181 -75q-26 0 -45 -19t-19 -45t19 -45t45 -19q159 0 271.5 112.5t112.5 271.5q0 41 7.5 74
+t26.5 64t33.5 50t45.5 54q35 41 53 64.5t44 67.5t37.5 93.5t11.5 108.5q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5zM591 561l226 -226l-579 -579q-12 -12 -29 -12t-29 12l-168 168q-12 12 -12 29t12 29zM1612 1524l168 -168q12 -12 12 -29t-12 -30l-233 -233
+l-26 -25l-71 -71q-66 153 -195 258l91 91l207 207q13 12 30 12t29 -12z" />
+    <glyph glyph-name="uniF2A5" unicode="&#xf2a5;" 
+d="M866 1021q0 -27 -13 -94q-11 -50 -31.5 -150t-30.5 -150q-2 -11 -4.5 -12.5t-13.5 -2.5q-20 -2 -31 -2q-58 0 -84 49.5t-26 113.5q0 88 35 174t103 124q28 14 51 14q28 0 36.5 -16.5t8.5 -47.5zM1352 597q0 14 -39 75.5t-52 66.5q-21 8 -34 8q-91 0 -226 -77l-2 2
+q3 22 27.5 135t24.5 178q0 233 -242 233q-24 0 -68 -6q-94 -17 -168.5 -89.5t-111.5 -166.5t-37 -189q0 -146 80.5 -225t227.5 -79q25 0 25 -3t-1 -5q-4 -34 -26 -117q-14 -52 -51.5 -101t-82.5 -49q-42 0 -42 47q0 24 10.5 47.5t25 39.5t29.5 28.5t26 20t11 8.5q0 3 -7 10
+q-24 22 -58.5 36.5t-65.5 14.5q-35 0 -63.5 -34t-41 -75t-12.5 -75q0 -88 51.5 -142t138.5 -54q82 0 155 53t117.5 126t65.5 153q6 22 15.5 66.5t14.5 66.5q3 12 14 18q118 60 227 60q48 0 127 -18q1 -1 4 -1q5 0 9.5 4.5t4.5 8.5zM1536 1120v-960q0 -119 -84.5 -203.5
+t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="uniF2A6" unicode="&#xf2a6;" horiz-adv-x="1535" 
+d="M744 1231q0 24 -2 38.5t-8.5 30t-21 23t-37.5 7.5q-39 0 -78 -23q-105 -58 -159 -190.5t-54 -269.5q0 -44 8.5 -85.5t26.5 -80.5t52.5 -62.5t81.5 -23.5q4 0 18 -0.5t20 0t16 3t15 8.5t7 16q16 77 48 231.5t48 231.5q19 91 19 146zM1498 575q0 -7 -7.5 -13.5t-15.5 -6.5
+l-6 1q-22 3 -62 11t-72 12.5t-63 4.5q-167 0 -351 -93q-15 -8 -21 -27q-10 -36 -24.5 -105.5t-22.5 -100.5q-23 -91 -70 -179.5t-112.5 -164.5t-154.5 -123t-185 -47q-135 0 -214.5 83.5t-79.5 219.5q0 53 19.5 117t63 116.5t97.5 52.5q38 0 120 -33.5t83 -61.5
+q0 -1 -16.5 -12.5t-39.5 -31t-46 -44.5t-39 -61t-16 -74q0 -33 16.5 -53t48.5 -20q45 0 85 31.5t66.5 78t48 105.5t32.5 107t16 90v9q0 2 -3.5 3.5t-8.5 1.5h-10t-10 -0.5t-6 -0.5q-227 0 -352 122.5t-125 348.5q0 108 34.5 221t96 210t156 167.5t204.5 89.5q52 9 106 9
+q374 0 374 -360q0 -98 -38 -273t-43 -211l3 -3q101 57 182.5 88t167.5 31q22 0 53 -13q19 -7 80 -102.5t61 -116.5z" />
+    <glyph glyph-name="uniF2A7" unicode="&#xf2a7;" horiz-adv-x="1664" 
+d="M831 863q32 0 59 -18l222 -148q61 -40 110 -97l146 -170q40 -46 29 -106l-72 -413q-6 -32 -29.5 -53.5t-55.5 -25.5l-527 -56l-352 -32h-9q-39 0 -67.5 28t-28.5 68q0 37 27 64t65 32l260 32h-448q-41 0 -69.5 30t-26.5 71q2 39 32 65t69 26l442 1l-521 64q-41 5 -66 37
+t-19 73q6 35 34.5 57.5t65.5 22.5h10l481 -60l-351 94q-38 10 -62 41.5t-18 68.5q6 36 33 58.5t62 22.5q6 0 20 -2l448 -96l217 -37q1 0 3 -0.5t3 -0.5q23 0 30.5 23t-12.5 36l-186 125q-35 23 -42 63.5t18 73.5q27 38 76 38zM761 661l186 -125l-218 37l-5 2l-36 38
+l-238 262q-1 1 -2.5 3.5t-2.5 3.5q-24 31 -18.5 70t37.5 64q31 23 68 17.5t64 -33.5l142 -147q-2 -1 -5 -3.5t-4 -4.5q-32 -45 -23 -99t55 -85zM1648 1115l15 -266q4 -73 -11 -147l-48 -219q-12 -59 -67 -87l-106 -54q2 62 -39 109l-146 170q-53 61 -117 103l-222 148
+q-34 23 -76 23q-51 0 -88 -37l-235 312q-25 33 -18 73.5t41 63.5q33 22 71.5 14t62.5 -40l266 -352l-262 455q-21 35 -10.5 75t47.5 59q35 18 72.5 6t57.5 -46l241 -420l-136 337q-15 35 -4.5 74t44.5 56q37 19 76 6t56 -51l193 -415l101 -196q8 -15 23 -17.5t27 7.5t11 26
+l-12 224q-2 41 26 71t69 31q39 0 67 -28.5t30 -67.5z" />
+    <glyph glyph-name="uniF2A8" unicode="&#xf2a8;" horiz-adv-x="1792" 
+d="M335 180q-2 0 -6 2q-86 57 -168.5 145t-139.5 180q-21 30 -21 69q0 9 2 19t4 18t7 18t8.5 16t10.5 17t10 15t12 15.5t11 14.5q184 251 452 365q-110 198 -110 211q0 19 17 29q116 64 128 64q18 0 28 -16l124 -229q92 19 192 19q266 0 497.5 -137.5t378.5 -369.5
+q20 -31 20 -69t-20 -69q-91 -142 -218.5 -253.5t-278.5 -175.5q110 -198 110 -211q0 -20 -17 -29q-116 -64 -127 -64q-19 0 -29 16l-124 229l-64 119l-444 820l7 7q-58 -24 -99 -47q3 -5 127 -234t243 -449t119 -223q0 -7 -9 -9q-13 -3 -72 -3q-57 0 -60 7l-456 841
+q-39 -28 -82 -68q24 -43 214 -393.5t190 -354.5q0 -10 -11 -10q-14 0 -82.5 22t-72.5 28l-106 197l-224 413q-44 -53 -78 -106q2 -3 18 -25t23 -34l176 -327q0 -10 -10 -10zM1165 282l49 -91q273 111 450 385q-180 277 -459 389q67 -64 103 -148.5t36 -176.5
+q0 -106 -47 -200.5t-132 -157.5zM848 896q0 -20 14 -34t34 -14q86 0 147 -61t61 -147q0 -20 14 -34t34 -14t34 14t14 34q0 126 -89 215t-215 89q-20 0 -34 -14t-14 -34zM1214 961l-9 4l7 -7z" />
+    <glyph glyph-name="uniF2A9" unicode="&#xf2a9;" horiz-adv-x="1280" 
+d="M1050 430q0 -215 -147 -374q-148 -161 -378 -161q-232 0 -378 161q-147 159 -147 374q0 147 68 270.5t189 196.5t268 73q96 0 182 -31q-32 -62 -39 -126q-66 28 -143 28q-167 0 -280.5 -123t-113.5 -291q0 -170 112.5 -288.5t281.5 -118.5t281 118.5t112 288.5
+q0 89 -32 166q66 13 123 49q41 -98 41 -212zM846 619q0 -192 -79.5 -345t-238.5 -253l-14 -1q-29 0 -62 5q83 32 146.5 102.5t99.5 154.5t58.5 189t30 192.5t7.5 178.5q0 69 -3 103q55 -160 55 -326zM791 947v-2q-73 214 -206 440q88 -59 142.5 -186.5t63.5 -251.5z
+M1035 744q-83 0 -160 75q218 120 290 247q19 37 21 56q-42 -94 -139.5 -166.5t-204.5 -97.5q-35 54 -35 113q0 37 17 79t43 68q46 44 157 74q59 16 106 58.5t74 100.5q74 -105 74 -253q0 -109 -24 -170q-32 -77 -88.5 -130.5t-130.5 -53.5z" />
+    <glyph glyph-name="uniF2AA" unicode="&#xf2aa;" 
+d="M1050 495q0 78 -28 147q-41 -25 -85 -34q22 -50 22 -114q0 -117 -77 -198.5t-193 -81.5t-193.5 81.5t-77.5 198.5q0 115 78 199.5t193 84.5q53 0 98 -19q4 43 27 87q-60 21 -125 21q-154 0 -257.5 -108.5t-103.5 -263.5t103.5 -261t257.5 -106t257.5 106.5t103.5 260.5z
+M872 850q2 -24 2 -71q0 -63 -5 -123t-20.5 -132.5t-40.5 -130t-68.5 -106t-100.5 -70.5q21 -3 42 -3h10q219 139 219 411q0 116 -38 225zM872 850q-4 80 -44 171.5t-98 130.5q92 -156 142 -302zM1207 955q0 102 -51 174q-41 -86 -124 -109q-69 -19 -109 -53.5t-40 -99.5
+q0 -40 24 -77q74 17 140.5 67t95.5 115q-4 -52 -74.5 -111.5t-138.5 -97.5q52 -52 110 -52q51 0 90 37t60 90q17 42 17 117zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
+t84.5 -203.5z" />
+    <glyph glyph-name="uniF2AB" unicode="&#xf2ab;" 
+d="M1279 388q0 22 -22 27q-67 15 -118 59t-80 108q-7 19 -7 25q0 15 19.5 26t43 17t43 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-12 0 -32 -8t-31 -8q-4 0 -12 2q5 95 5 114q0 79 -17 114q-36 78 -103 121.5t-152 43.5q-199 0 -275 -165q-17 -35 -17 -114q0 -19 5 -114
+q-4 -2 -14 -2q-12 0 -32 7.5t-30 7.5q-21 0 -38.5 -12t-17.5 -32q0 -21 19.5 -35.5t43 -20.5t43 -17t19.5 -26q0 -6 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -46 137 -68q2 -5 6 -26t11.5 -30.5t23.5 -9.5q12 0 37.5 4.5t39.5 4.5q35 0 67 -15t54 -32.5t57.5 -32.5
+t76.5 -15q43 0 79 15t57.5 32.5t53.5 32.5t67 15q14 0 39.5 -4t38.5 -4q16 0 23 10t11 30t6 25q137 22 137 68zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
+t103 -385.5z" />
+    <glyph glyph-name="uniF2AC" unicode="&#xf2ac;" horiz-adv-x="1664" 
+d="M848 1408q134 1 240.5 -68.5t163.5 -192.5q27 -58 27 -179q0 -47 -9 -191q14 -7 28 -7q18 0 51 13.5t51 13.5q29 0 56 -18t27 -46q0 -32 -31.5 -54t-69 -31.5t-69 -29t-31.5 -47.5q0 -15 12 -43q37 -82 102.5 -150t144.5 -101q28 -12 80 -23q28 -6 28 -35
+q0 -70 -219 -103q-7 -11 -11 -39t-14 -46.5t-33 -18.5q-20 0 -62 6.5t-64 6.5q-37 0 -62 -5q-32 -5 -63 -22.5t-58 -38t-58 -40.5t-76 -33.5t-99 -13.5q-52 0 -96.5 13.5t-75 33.5t-57.5 40.5t-58 38t-62 22.5q-26 5 -63 5q-24 0 -65.5 -7.5t-58.5 -7.5q-25 0 -35 18.5
+t-14 47.5t-11 40q-219 33 -219 103q0 29 28 35q52 11 80 23q78 32 144.5 101t102.5 150q12 28 12 43q0 28 -31.5 47.5t-69.5 29.5t-69.5 31.5t-31.5 52.5q0 27 26 45.5t55 18.5q15 0 48 -13t53 -13q18 0 32 7q-9 142 -9 190q0 122 27 180q64 137 172 198t264 63z" />
+    <glyph glyph-name="uniF2AD" unicode="&#xf2ad;" 
+d="M1280 388q0 22 -22 27q-67 14 -118 58t-80 109q-7 14 -7 25q0 15 19.5 26t42.5 17t42.5 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-11 0 -31 -8t-32 -8q-4 0 -12 2q5 63 5 115q0 78 -17 114q-36 78 -102.5 121.5t-152.5 43.5q-198 0 -275 -165q-18 -38 -18 -115
+q0 -38 6 -114q-10 -2 -15 -2q-11 0 -31.5 8t-30.5 8q-20 0 -37.5 -12.5t-17.5 -32.5q0 -21 19.5 -35.5t42.5 -20.5t42.5 -17t19.5 -26q0 -11 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -47 138 -69q2 -5 6 -26t11 -30.5t23 -9.5q13 0 38.5 5t38.5 5q35 0 67.5 -15
+t54.5 -32.5t57.5 -32.5t76.5 -15q43 0 79 15t57.5 32.5t54 32.5t67.5 15q13 0 39 -4.5t39 -4.5q15 0 22.5 9.5t11.5 31t5 24.5q138 22 138 69zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960
+q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="uniF2AE" unicode="&#xf2ae;" horiz-adv-x="2304" 
+d="M2304 1536q-69 -46 -125 -92t-89 -81t-59.5 -71.5t-37.5 -57.5t-22 -44.5t-14 -29.5q-10 -18 -35.5 -136.5t-48.5 -164.5q-15 -29 -50 -60.5t-67.5 -50.5t-72.5 -41t-48 -28q-47 -31 -151 -231q-341 14 -630 -158q-92 -53 -303 -179q47 16 86 31t55 22l15 7
+q71 27 163 64.5t133.5 53.5t108 34.5t142.5 31.5q186 31 465 -7q1 0 10 -3q11 -6 14 -17t-3 -22l-194 -345q-15 -29 -47 -22q-128 24 -354 24q-146 0 -402 -44.5t-392 -46.5q-82 -1 -149 13t-107 37t-61 40t-33 34l-1 1v2q0 6 6 6q138 0 371 55q192 366 374.5 524t383.5 158
+q5 0 14.5 -0.5t38 -5t55 -12t61.5 -24.5t63 -39.5t54 -59t40 -82.5l102 177q2 4 21 42.5t44.5 86.5t61 109.5t84 133.5t100.5 137q66 82 128 141.5t121.5 96.5t92.5 53.5t88 39.5z" />
+    <glyph glyph-name="uniF2B0" unicode="&#xf2b0;" 
+d="M1322 640q0 -45 -5 -76l-236 14l224 -78q-19 -73 -58 -141l-214 103l177 -158q-44 -61 -107 -108l-157 178l103 -215q-61 -37 -140 -59l-79 228l14 -240q-38 -6 -76 -6t-76 6l14 238l-78 -226q-74 19 -140 59l103 215l-157 -178q-59 43 -108 108l178 158l-214 -104
+q-39 69 -58 141l224 79l-237 -14q-5 42 -5 76q0 35 5 77l238 -14l-225 79q19 73 58 140l214 -104l-177 159q46 61 107 108l158 -178l-103 215q67 39 140 58l77 -224l-13 236q36 6 75 6q38 0 76 -6l-14 -237l78 225q74 -19 140 -59l-103 -214l158 178q61 -47 107 -108
+l-177 -159l213 104q37 -62 58 -141l-224 -78l237 14q5 -31 5 -77zM1352 640q0 160 -78.5 295.5t-213 214t-292.5 78.5q-119 0 -227 -46.5t-186.5 -125t-124.5 -187.5t-46 -229q0 -119 46 -228t124.5 -187.5t186.5 -125t227 -46.5q158 0 292.5 78.5t213 214t78.5 294.5z
+M1425 1023v-766l-657 -383l-657 383v766l657 383zM768 -183l708 412v823l-708 411l-708 -411v-823zM1536 1088v-896l-768 -448l-768 448v896l768 448z" />
+    <glyph glyph-name="uniF2B1" unicode="&#xf2b1;" horiz-adv-x="1664" 
+d="M339 1318h691l-26 -72h-665q-110 0 -188.5 -79t-78.5 -189v-771q0 -95 60.5 -169.5t153.5 -93.5q23 -5 98 -5v-72h-45q-140 0 -239.5 100t-99.5 240v771q0 140 99.5 240t239.5 100zM1190 1536h247l-482 -1294q-23 -61 -40.5 -103.5t-45 -98t-54 -93.5t-64.5 -78.5
+t-79.5 -65t-95.5 -41t-116 -18.5v195q163 26 220 182q20 52 20 105q0 54 -20 106l-285 733h228l187 -585zM1664 978v-1111h-795q37 55 45 73h678v1038q0 85 -49.5 155t-129.5 99l25 67q101 -34 163.5 -123.5t62.5 -197.5z" />
+    <glyph glyph-name="uniF2B2" unicode="&#xf2b2;" horiz-adv-x="1792" 
+d="M852 1227q0 -29 -17 -52.5t-45 -23.5t-45 23.5t-17 52.5t17 52.5t45 23.5t45 -23.5t17 -52.5zM688 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50 -21.5t-20 -51.5v-114q0 -30 20.5 -52t49.5 -22q30 0 50.5 22t20.5 52zM860 -149v114q0 30 -20 51.5t-50 21.5t-50.5 -21.5
+t-20.5 -51.5v-114q0 -30 20.5 -52t50.5 -22q29 0 49.5 22t20.5 52zM1034 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50.5 -21.5t-20.5 -51.5v-114q0 -30 20.5 -52t50.5 -22t50.5 22t20.5 52zM1208 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50.5 -21.5t-20.5 -51.5v-114
+q0 -30 20.5 -52t50.5 -22t50.5 22t20.5 52zM1476 535q-84 -160 -232 -259.5t-323 -99.5q-123 0 -229.5 51.5t-178.5 137t-113 197.5t-41 232q0 88 21 174q-104 -175 -104 -390q0 -162 65 -312t185 -251q30 57 91 57q56 0 86 -50q32 50 87 50q56 0 86 -50q32 50 87 50t87 -50
+q30 50 86 50q28 0 52.5 -15.5t37.5 -40.5q112 94 177 231.5t73 287.5zM1326 564q0 75 -72 75q-17 0 -47 -6q-95 -19 -149 -19q-226 0 -226 243q0 86 30 204q-83 -127 -83 -275q0 -150 89 -260.5t235 -110.5q111 0 210 70q13 48 13 79zM884 1223q0 50 -32 89.5t-81 39.5
+t-81 -39.5t-32 -89.5q0 -51 31.5 -90.5t81.5 -39.5t81.5 39.5t31.5 90.5zM1513 884q0 96 -37.5 179t-113 137t-173.5 54q-77 0 -149 -35t-127 -94q-48 -159 -48 -268q0 -104 45.5 -157t147.5 -53q53 0 142 19q36 6 53 6q51 0 77.5 -28t26.5 -80q0 -26 -4 -46
+q75 68 117.5 165.5t42.5 200.5zM1792 667q0 -111 -33.5 -249.5t-93.5 -204.5q-58 -64 -195 -142.5t-228 -104.5l-4 -1v-114q0 -43 -29.5 -75t-72.5 -32q-56 0 -86 50q-32 -50 -87 -50t-87 50q-30 -50 -86 -50q-55 0 -87 50q-30 -50 -86 -50q-47 0 -75 33.5t-28 81.5
+q-90 -68 -198 -68q-118 0 -211 80q54 1 106 20q-113 31 -182 127q32 -7 71 -7q89 0 164 46q-192 192 -240 306q-24 56 -24 160q0 57 9 125.5t31.5 146.5t55 141t86.5 105t120 42q59 0 81 -52q19 29 42 54q2 3 12 13t13 16q10 15 23 38t25 42t28 39q87 111 211.5 177
+t260.5 66q35 0 62 -4q59 64 146 64q83 0 140 -57q5 -5 5 -12q0 -5 -6 -13.5t-12.5 -16t-16 -17l-10.5 -10.5q17 -6 36 -18t19 -24q0 -6 -16 -25q157 -138 197 -378q25 30 60 30q45 0 100 -49q90 -80 90 -279z" />
+    <glyph glyph-name="uniF2B3" unicode="&#xf2b3;" 
+d="M917 631q0 33 -6 64h-362v-132h217q-12 -76 -74.5 -120.5t-142.5 -44.5q-99 0 -169 71.5t-70 170.5t70 170.5t169 71.5q93 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585h109v110
+h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="uniF2B4" unicode="&#xf2b4;" 
+d="M1536 1024v-839q0 -48 -49 -62q-174 -52 -338 -52q-73 0 -215.5 29.5t-227.5 29.5q-164 0 -370 -48v-338h-160v1368q-63 25 -101 81t-38 124q0 91 64 155t155 64t155 -64t64 -155q0 -68 -38 -124t-101 -81v-68q190 44 343 44q99 0 198 -15q14 -2 111.5 -22.5t149.5 -20.5
+q77 0 165 18q11 2 80 21t89 19q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="uniF2B5" unicode="&#xf2b5;" horiz-adv-x="2304" 
+d="M192 384q40 0 56 32t0 64t-56 32t-56 -32t0 -64t56 -32zM1665 442q-10 13 -38.5 50t-41.5 54t-38 49t-42.5 53t-40.5 47t-45 49l-125 -140q-83 -94 -208.5 -92t-205.5 98q-57 69 -56.5 158t58.5 157l177 206q-22 11 -51 16.5t-47.5 6t-56.5 -0.5t-49 -1q-92 0 -158 -66
+l-158 -158h-155v-544q5 0 21 0.5t22 0t19.5 -2t20.5 -4.5t17.5 -8.5t18.5 -13.5l297 -292q115 -111 227 -111q78 0 125 47q57 -20 112.5 8t72.5 85q74 -6 127 44q20 18 36 45.5t14 50.5q10 -10 43 -10q43 0 77 21t49.5 53t12 71.5t-30.5 73.5zM1824 384h96v512h-93l-157 180
+q-66 76 -169 76h-167q-89 0 -146 -67l-209 -243q-28 -33 -28 -75t27 -75q43 -51 110 -52t111 49l193 218q25 23 53.5 21.5t47 -27t8.5 -56.5q16 -19 56 -63t60 -68q29 -36 82.5 -105.5t64.5 -84.5q52 -66 60 -140zM2112 384q40 0 56 32t0 64t-56 32t-56 -32t0 -64t56 -32z
+M2304 960v-640q0 -26 -19 -45t-45 -19h-434q-27 -65 -82 -106.5t-125 -51.5q-33 -48 -80.5 -81.5t-102.5 -45.5q-42 -53 -104.5 -81.5t-128.5 -24.5q-60 -34 -126 -39.5t-127.5 14t-117 53.5t-103.5 81l-287 282h-358q-26 0 -45 19t-19 45v672q0 26 19 45t45 19h421
+q14 14 47 48t47.5 48t44 40t50.5 37.5t51 25.5t62 19.5t68 5.5h117q99 0 181 -56q82 56 181 56h167q35 0 67 -6t56.5 -14.5t51.5 -26.5t44.5 -31t43 -39.5t39 -42t41 -48t41.5 -48.5h355q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="uniF2B6" unicode="&#xf2b6;" horiz-adv-x="1792" 
+d="M1792 882v-978q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v978q0 15 11 24q8 7 39 34.5t41.5 36t45.5 37.5t70 55.5t96 73t143.5 107t192.5 140.5q5 4 52.5 40t71.5 52.5t64 35t69 18.5t69 -18.5t65 -35.5t71 -52t52 -40q110 -80 192.5 -140.5t143.5 -107
+t96 -73t70 -55.5t45.5 -37.5t41.5 -36t39 -34.5q11 -9 11 -24zM1228 297q263 191 345 252q11 8 12.5 20.5t-6.5 23.5l-38 52q-8 11 -21 12.5t-24 -6.5q-231 -169 -343 -250q-5 -3 -52 -39t-71.5 -52.5t-64.5 -35t-69 -18.5t-69 18.5t-64.5 35t-71.5 52.5t-52 39
+q-186 134 -343 250q-11 8 -24 6.5t-21 -12.5l-38 -52q-8 -11 -6.5 -23.5t12.5 -20.5q82 -61 345 -252q10 -8 50 -38t65 -47t64 -39.5t77.5 -33.5t75.5 -11t75.5 11t79 34.5t64.5 39.5t65 47.5t48 36.5z" />
+    <glyph glyph-name="uniF2B7" unicode="&#xf2b7;" horiz-adv-x="1792" 
+d="M1474 623l39 -51q8 -11 6.5 -23.5t-11.5 -20.5q-43 -34 -126.5 -98.5t-146.5 -113t-67 -51.5q-39 -32 -60 -48t-60.5 -41t-76.5 -36.5t-74 -11.5h-1h-1q-37 0 -74 11.5t-76 36.5t-61 41.5t-60 47.5q-5 4 -65 50.5t-143.5 111t-122.5 94.5q-11 8 -12.5 20.5t6.5 23.5
+l37 52q8 11 21.5 13t24.5 -7q94 -73 306 -236q5 -4 43.5 -35t60.5 -46.5t56.5 -32.5t58.5 -17h1h1q24 0 58.5 17t56.5 32.5t60.5 46.5t43.5 35q258 198 313 242q11 8 24 6.5t21 -12.5zM1664 -96v928q-90 83 -159 139q-91 74 -389 304q-3 2 -43 35t-61 48t-56 32.5t-59 17.5
+h-1h-1q-24 0 -59 -17.5t-56 -32.5t-61 -48t-43 -35q-215 -166 -315.5 -245.5t-129.5 -104t-82 -74.5q-14 -12 -21 -19v-928q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 832v-928q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v928q0 56 41 94
+q123 114 350 290.5t233 181.5q36 30 59 47.5t61.5 42t76 36.5t74.5 12h1h1q37 0 74.5 -12t76 -36.5t61.5 -42t59 -47.5q43 -36 156 -122t226 -177t201 -173q41 -38 41 -94z" />
+    <glyph glyph-name="uniF2B8" unicode="&#xf2b8;" 
+d="M330 1l202 -214l-34 236l-216 213zM556 -225l274 218l-11 245l-300 -215zM245 413l227 -213l-48 327l-245 204zM495 189l317 214l-14 324l-352 -200zM843 178l95 -80l-2 239l-103 79q0 -1 1 -8.5t0 -12t-5 -7.5l-78 -52l85 -70q7 -6 7 -88zM138 930l256 -200l-68 465
+l-279 173zM1173 267l15 234l-230 -164l2 -240zM417 722l373 194l-19 441l-423 -163zM1270 357l20 233l-226 142l-2 -105l144 -95q6 -4 4 -9l-7 -119zM1461 496l30 222l-179 -128l-20 -228zM1273 329l-71 49l-8 -117q0 -5 -4 -8l-234 -187q-7 -5 -14 0l-98 83l7 -161
+q0 -5 -4 -8l-293 -234q-4 -2 -6 -2q-8 2 -8 3l-228 242q-4 4 -59 277q-2 7 5 11l61 37q-94 86 -95 92l-72 351q-2 7 6 12l94 45q-133 100 -135 108l-96 466q-2 10 7 13l433 135q5 0 8 -1l317 -153q6 -4 6 -9l20 -463q0 -7 -6 -10l-118 -61l126 -85q5 -2 5 -8l5 -123l121 74
+q5 4 11 0l84 -56l3 110q0 6 5 9l206 126q6 3 11 0l245 -135q4 -4 5 -7t-6.5 -60t-17.5 -124.5t-10 -70.5q0 -5 -4 -7l-191 -153q-6 -5 -13 0z" />
+    <glyph glyph-name="uniF2B9" unicode="&#xf2b9;" horiz-adv-x="1664" 
+d="M1201 298q0 57 -5.5 107t-21 100.5t-39.5 86t-64 58t-91 22.5q-6 -4 -33.5 -20.5t-42.5 -24.5t-40.5 -20t-49 -17t-46.5 -5t-46.5 5t-49 17t-40.5 20t-42.5 24.5t-33.5 20.5q-51 0 -91 -22.5t-64 -58t-39.5 -86t-21 -100.5t-5.5 -107q0 -73 42 -121.5t103 -48.5h576
+q61 0 103 48.5t42 121.5zM1028 892q0 108 -76.5 184t-183.5 76t-183.5 -76t-76.5 -184q0 -107 76.5 -183t183.5 -76t183.5 76t76.5 183zM1664 352v-192q0 -14 -9 -23t-23 -9h-96v-224q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h1216
+q66 0 113 -47t47 -113v-224h96q14 0 23 -9t9 -23v-192q0 -14 -9 -23t-23 -9h-96v-128h96q14 0 23 -9t9 -23v-192q0 -14 -9 -23t-23 -9h-96v-128h96q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="uniF2BA" unicode="&#xf2ba;" horiz-adv-x="1664" 
+d="M1028 892q0 -107 -76.5 -183t-183.5 -76t-183.5 76t-76.5 183q0 108 76.5 184t183.5 76t183.5 -76t76.5 -184zM980 672q46 0 82.5 -17t60 -47.5t39.5 -67t24 -81t11.5 -82.5t3.5 -79q0 -67 -39.5 -118.5t-105.5 -51.5h-576q-66 0 -105.5 51.5t-39.5 118.5q0 48 4.5 93.5
+t18.5 98.5t36.5 91.5t63 64.5t93.5 26h5q7 -4 32 -19.5t35.5 -21t33 -17t37 -16t35 -9t39.5 -4.5t39.5 4.5t35 9t37 16t33 17t35.5 21t32 19.5zM1664 928q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-128h96q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-128h96
+q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-224q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h1216q66 0 113 -47t47 -113v-224h96q13 0 22.5 -9.5t9.5 -22.5v-192zM1408 -96v1472q0 13 -9.5 22.5t-22.5 9.5h-1216
+q-13 0 -22.5 -9.5t-9.5 -22.5v-1472q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5z" />
+    <glyph glyph-name="uniF2BB" unicode="&#xf2bb;" horiz-adv-x="2048" 
+d="M1024 405q0 64 -9 117.5t-29.5 103t-60.5 78t-97 28.5q-6 -4 -30 -18t-37.5 -21.5t-35.5 -17.5t-43 -14.5t-42 -4.5t-42 4.5t-43 14.5t-35.5 17.5t-37.5 21.5t-30 18q-57 0 -97 -28.5t-60.5 -78t-29.5 -103t-9 -117.5t37 -106.5t91 -42.5h512q54 0 91 42.5t37 106.5z
+M867 925q0 94 -66.5 160.5t-160.5 66.5t-160.5 -66.5t-66.5 -160.5t66.5 -160.5t160.5 -66.5t160.5 66.5t66.5 160.5zM1792 416v64q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1792 676v56q0 15 -10.5 25.5t-25.5 10.5h-568
+q-15 0 -25.5 -10.5t-10.5 -25.5v-56q0 -15 10.5 -25.5t25.5 -10.5h568q15 0 25.5 10.5t10.5 25.5zM1792 928v64q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-352v96q0 14 -9 23t-23 9
+h-64q-14 0 -23 -9t-9 -23v-96h-768v96q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-96h-352q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2BC" unicode="&#xf2bc;" horiz-adv-x="2048" 
+d="M1024 405q0 -64 -37 -106.5t-91 -42.5h-512q-54 0 -91 42.5t-37 106.5t9 117.5t29.5 103t60.5 78t97 28.5q6 -4 30 -18t37.5 -21.5t35.5 -17.5t43 -14.5t42 -4.5t42 4.5t43 14.5t35.5 17.5t37.5 21.5t30 18q57 0 97 -28.5t60.5 -78t29.5 -103t9 -117.5zM867 925
+q0 -94 -66.5 -160.5t-160.5 -66.5t-160.5 66.5t-66.5 160.5t66.5 160.5t160.5 66.5t160.5 -66.5t66.5 -160.5zM1792 480v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM1792 732v-56q0 -15 -10.5 -25.5t-25.5 -10.5h-568
+q-15 0 -25.5 10.5t-10.5 25.5v56q0 15 10.5 25.5t25.5 10.5h568q15 0 25.5 -10.5t10.5 -25.5zM1792 992v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM1920 32v1216q0 13 -9.5 22.5t-22.5 9.5h-1728q-13 0 -22.5 -9.5
+t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h352v96q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-96h768v96q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-96h352q13 0 22.5 9.5t9.5 22.5zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-1728q-66 0 -113 47t-47 113v1216q0 66 47 113
+t113 47h1728q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2BD" unicode="&#xf2bd;" horiz-adv-x="1792" 
+d="M1523 197q-22 155 -87.5 257.5t-184.5 118.5q-67 -74 -159.5 -115.5t-195.5 -41.5t-195.5 41.5t-159.5 115.5q-119 -16 -184.5 -118.5t-87.5 -257.5q106 -150 271 -237.5t356 -87.5t356 87.5t271 237.5zM1280 896q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5
+t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1792 640q0 -182 -71 -347.5t-190.5 -286t-285.5 -191.5t-349 -71q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2BE" unicode="&#xf2be;" horiz-adv-x="1792" 
+d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348q0 -181 -70.5 -347t-190.5 -286t-286 -191.5t-349 -71.5t-349 71t-285.5 191.5t-190.5 286t-71 347.5t71 348t191 286t286 191t348 71zM1515 185q149 205 149 455q0 156 -61 298t-164 245t-245 164t-298 61t-298 -61
+t-245 -164t-164 -245t-61 -298q0 -250 149 -455q66 327 306 327q131 -128 313 -128t313 128q240 0 306 -327zM1280 832q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5z" />
+    <glyph glyph-name="uniF2C0" unicode="&#xf2c0;" 
+d="M1201 752q47 -14 89.5 -38t89 -73t79.5 -115.5t55 -172t22 -236.5q0 -154 -100 -263.5t-241 -109.5h-854q-141 0 -241 109.5t-100 263.5q0 131 22 236.5t55 172t79.5 115.5t89 73t89.5 38q-79 125 -79 272q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5
+t198.5 -40.5t163.5 -109.5t109.5 -163.5t40.5 -198.5q0 -147 -79 -272zM768 1408q-159 0 -271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5zM1195 -128q88 0 150.5 71.5t62.5 173.5q0 239 -78.5 377t-225.5 145
+q-145 -127 -336 -127t-336 127q-147 -7 -225.5 -145t-78.5 -377q0 -102 62.5 -173.5t150.5 -71.5h854z" />
+    <glyph glyph-name="uniF2C1" unicode="&#xf2c1;" horiz-adv-x="1280" 
+d="M1024 278q0 -64 -37 -107t-91 -43h-512q-54 0 -91 43t-37 107t9 118t29.5 104t61 78.5t96.5 28.5q80 -75 188 -75t188 75q56 0 96.5 -28.5t61 -78.5t29.5 -104t9 -118zM870 797q0 -94 -67.5 -160.5t-162.5 -66.5t-162.5 66.5t-67.5 160.5t67.5 160.5t162.5 66.5
+t162.5 -66.5t67.5 -160.5zM1152 -96v1376h-1024v-1376q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1280 1376v-1472q0 -66 -47 -113t-113 -47h-960q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h352v-96q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v96h352
+q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2C2" unicode="&#xf2c2;" horiz-adv-x="2048" 
+d="M896 324q0 54 -7.5 100.5t-24.5 90t-51 68.5t-81 25q-64 -64 -156 -64t-156 64q-47 0 -81 -25t-51 -68.5t-24.5 -90t-7.5 -100.5q0 -55 31.5 -93.5t75.5 -38.5h426q44 0 75.5 38.5t31.5 93.5zM768 768q0 80 -56 136t-136 56t-136 -56t-56 -136t56 -136t136 -56t136 56
+t56 136zM1792 288v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1408 544v64q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1792 544v64q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23
+v-64q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1792 800v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM128 1152h1792v96q0 14 -9 23t-23 9h-1728q-14 0 -23 -9t-9 -23v-96zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-1728
+q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2C3" unicode="&#xf2c3;" horiz-adv-x="2048" 
+d="M896 324q0 -55 -31.5 -93.5t-75.5 -38.5h-426q-44 0 -75.5 38.5t-31.5 93.5q0 54 7.5 100.5t24.5 90t51 68.5t81 25q64 -64 156 -64t156 64q47 0 81 -25t51 -68.5t24.5 -90t7.5 -100.5zM768 768q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136z
+M1792 352v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1408 608v-64q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h320q14 0 23 -9t9 -23zM1792 608v-64q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v64
+q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 864v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1920 32v1120h-1792v-1120q0 -13 9.5 -22.5t22.5 -9.5h1728q13 0 22.5 9.5t9.5 22.5zM2048 1248v-1216q0 -66 -47 -113t-113 -47
+h-1728q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2C4" unicode="&#xf2c4;" horiz-adv-x="1792" 
+d="M1255 749q0 318 -105 474.5t-330 156.5q-222 0 -326 -157t-104 -474q0 -316 104 -471.5t326 -155.5q74 0 131 17q-22 43 -39 73t-44 65t-53.5 56.5t-63 36t-77.5 14.5q-46 0 -79 -16l-49 97q105 91 276 91q132 0 215.5 -54t150.5 -155q67 149 67 402zM1645 117h117
+q3 -27 -2 -67t-26.5 -95t-58 -100.5t-107 -78t-162.5 -32.5q-71 0 -130.5 19t-105.5 56t-79 78t-66 96q-97 -27 -205 -27q-150 0 -292.5 58t-253 158.5t-178 249t-67.5 317.5q0 170 67.5 319.5t178.5 250.5t253.5 159t291.5 58q121 0 238.5 -36t217 -106t176 -164.5
+t119.5 -219t43 -261.5q0 -190 -80.5 -347.5t-218.5 -264.5q47 -70 93.5 -106.5t104.5 -36.5q61 0 94 37.5t38 85.5z" />
+    <glyph glyph-name="uniF2C5" unicode="&#xf2c5;" horiz-adv-x="2304" 
+d="M453 -101q0 -21 -16 -37.5t-37 -16.5q-1 0 -13 3q-63 15 -162 140q-225 284 -225 676q0 341 213 614q39 51 95 103.5t94 52.5q19 0 35 -13.5t16 -32.5q0 -27 -63 -90q-98 -102 -147 -184q-119 -199 -119 -449q0 -281 123 -491q50 -85 136 -173q2 -3 14.5 -16t19.5 -21
+t17 -20.5t14.5 -23.5t4.5 -21zM1796 33q0 -29 -17.5 -48.5t-46.5 -19.5h-1081q-26 0 -45 19t-19 45q0 29 17.5 48.5t46.5 19.5h1081q26 0 45 -19t19 -45zM1581 644q0 -134 -67 -233q-25 -38 -69.5 -78.5t-83.5 -60.5q-16 -10 -27 -10q-7 0 -15 6t-8 12q0 9 19 30t42 46
+t42 67.5t19 88.5q0 76 -35 130q-29 42 -46 42q-3 0 -3 -5q0 -12 7.5 -35.5t7.5 -36.5q0 -22 -21.5 -35t-44.5 -13q-66 0 -66 76q0 15 1.5 44t1.5 44q0 25 -10 46q-13 25 -42 53.5t-51 28.5q-5 0 -7 -0.5t-3.5 -2.5t-1.5 -6q0 -2 16 -26t16 -54q0 -37 -19 -68t-46 -54
+t-53.5 -46t-45.5 -54t-19 -68q0 -98 42 -160q29 -43 79 -63q16 -5 17 -10q1 -2 1 -5q0 -16 -18 -16q-6 0 -33 11q-119 43 -195 139.5t-76 218.5q0 55 24.5 115.5t60 115t70.5 108.5t59.5 113.5t24.5 111.5q0 53 -25 94q-29 48 -56 64q-19 9 -19 21q0 20 41 20q50 0 110 -29
+q41 -19 71 -44.5t49.5 -51t33.5 -62.5t22 -69t16 -80q0 -1 3 -17.5t4.5 -25t5.5 -25t9 -27t11 -21.5t14.5 -16.5t18.5 -5.5q23 0 37 14t14 37q0 25 -20 67t-20 52t10 10q27 0 93 -70q72 -76 102.5 -156t30.5 -186zM2304 615q0 -274 -138 -503q-19 -32 -48 -72t-68 -86.5
+t-81 -77t-74 -30.5q-16 0 -31 15.5t-15 31.5q0 15 29 50.5t68.5 77t48.5 52.5q183 230 183 531q0 131 -20.5 235t-72.5 211q-58 119 -163 228q-2 3 -13 13.5t-16.5 16.5t-15 17.5t-15 20t-9.5 18.5t-4 19q0 19 16 35.5t35 16.5q70 0 196 -169q98 -131 146 -273t60 -314
+q2 -42 2 -64z" />
+    <glyph glyph-name="uniF2C6" unicode="&#xf2c6;" horiz-adv-x="1792" 
+d="M1189 229l147 693q9 44 -10.5 63t-51.5 7l-864 -333q-29 -11 -39.5 -25t-2.5 -26.5t32 -19.5l221 -69l513 323q21 14 32 6q7 -5 -4 -15l-415 -375v0v0l-16 -228q23 0 45 22l108 104l224 -165q64 -36 81 38zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71
+t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2C7" unicode="&#xf2c7;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v907h128v-907q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
+t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
+v128h192z" />
+    <glyph glyph-name="uniF2C8" unicode="&#xf2c8;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v651h128v-651q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
+t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
+v128h192z" />
+    <glyph glyph-name="uniF2C9" unicode="&#xf2c9;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v395h128v-395q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
+t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
+v128h192z" />
+    <glyph glyph-name="uniF2CA" unicode="&#xf2ca;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v139h128v-139q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
+t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
+v128h192z" />
+    <glyph glyph-name="uniF2CB" unicode="&#xf2cb;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 79 56 135.5t136 56.5t136 -56.5t56 -135.5zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5t93.5 226.5z
+M896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192v128h192z" />
+    <glyph glyph-name="uniF2CC" unicode="&#xf2cc;" horiz-adv-x="1920" 
+d="M1433 1287q10 -10 10 -23t-10 -23l-626 -626q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l44 44q-72 91 -81.5 207t46.5 215q-74 71 -176 71q-106 0 -181 -75t-75 -181v-1280h-256v1280q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5q106 0 201 -41
+t166 -115q94 39 197 24.5t185 -79.5l44 44q10 10 23 10t23 -10zM1344 1024q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1600 896q-26 0 -45 19t-19 45t19 45t45 19t45 -19t19 -45t-19 -45t-45 -19zM1856 1024q26 0 45 -19t19 -45t-19 -45t-45 -19
+t-45 19t-19 45t19 45t45 19zM1216 896q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1408 832q0 26 19 45t45 19t45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45zM1728 896q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 768
+q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1344 640q-26 0 -45 19t-19 45t19 45t45 19t45 -19t19 -45t-19 -45t-45 -19zM1600 768q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1216 512q-26 0 -45 19t-19 45t19 45t45 19t45 -19
+t19 -45t-19 -45t-45 -19zM1472 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 512q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1344 512q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1216 384
+q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 256q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19z" />
+    <glyph glyph-name="uniF2CD" unicode="&#xf2cd;" horiz-adv-x="1792" 
+d="M1664 448v-192q0 -169 -128 -286v-194q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v118q-63 -22 -128 -22h-768q-65 0 -128 22v-110q0 -17 -9.5 -28.5t-22.5 -11.5h-64q-13 0 -22.5 11.5t-9.5 28.5v186q-128 117 -128 286v192h1536zM704 864q0 -14 -9 -23t-23 -9t-23 9
+t-9 23t9 23t23 9t23 -9t9 -23zM768 928q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM704 992q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 992q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM768 1056q0 -14 -9 -23t-23 -9t-23 9
+t-9 23t9 23t23 9t23 -9t9 -23zM704 1120q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1792 608v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v640q0 106 75 181t181 75q108 0 184 -78q46 19 98 12t93 -39l22 22q11 11 22 0l42 -42
+q11 -11 0 -22l-314 -314q-11 -11 -22 0l-42 42q-11 11 0 22l22 22q-36 46 -40.5 104t23.5 108q-37 35 -88 35q-53 0 -90.5 -37.5t-37.5 -90.5v-640h1504q14 0 23 -9t9 -23zM896 1056q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 1120q0 -14 -9 -23t-23 -9
+t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM768 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM960 1120q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM896 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 1248q0 -14 -9 -23
+t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1024 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM960 1248q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1088 1248q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23z" />
+    <glyph glyph-name="uniF2CE" unicode="&#xf2ce;" 
+d="M994 344q0 -86 -17 -197q-31 -215 -55 -313q-22 -90 -152 -90t-152 90q-24 98 -55 313q-17 110 -17 197q0 168 224 168t224 -168zM1536 768q0 -240 -134 -434t-350 -280q-8 -3 -15 3t-6 15q7 48 10 66q4 32 6 47q1 9 9 12q159 81 255.5 234t96.5 337q0 180 -91 330.5
+t-247 234.5t-337 74q-124 -7 -237 -61t-193.5 -140.5t-128 -202t-46.5 -240.5q1 -184 99 -336.5t257 -231.5q7 -3 9 -12q3 -21 6 -45q1 -9 5 -32.5t6 -35.5q1 -9 -6.5 -15t-15.5 -2q-148 58 -261 169.5t-173.5 264t-52.5 319.5q7 143 66 273.5t154.5 227t225 157.5t272.5 70
+q164 10 315.5 -46.5t261 -160.5t175 -250.5t65.5 -308.5zM994 800q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5zM1282 768q0 -122 -53.5 -228.5t-146.5 -177.5q-8 -6 -16 -2t-10 14q-6 52 -29 92q-7 10 3 20
+q58 54 91 127t33 155q0 111 -58.5 204t-157.5 141.5t-212 36.5q-133 -15 -229 -113t-109 -231q-10 -92 23.5 -176t98.5 -144q10 -10 3 -20q-24 -41 -29 -93q-2 -9 -10 -13t-16 2q-95 74 -148.5 183t-51.5 234q3 131 69 244t177 181.5t241 74.5q144 7 268 -60t196.5 -187.5
+t72.5 -263.5z" />
+    <glyph glyph-name="uniF2D0" unicode="&#xf2d0;" horiz-adv-x="1792" 
+d="M256 128h1280v768h-1280v-768zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D1" unicode="&#xf2d1;" horiz-adv-x="1792" 
+d="M1792 224v-192q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D2" unicode="&#xf2d2;" horiz-adv-x="2048" 
+d="M256 0h768v512h-768v-512zM1280 512h512v768h-768v-256h96q66 0 113 -47t47 -113v-352zM2048 1376v-960q0 -66 -47 -113t-113 -47h-608v-352q0 -66 -47 -113t-113 -47h-960q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h608v352q0 66 47 113t113 47h960q66 0 113 -47
+t47 -113z" />
+    <glyph glyph-name="uniF2D3" unicode="&#xf2d3;" horiz-adv-x="1792" 
+d="M1175 215l146 146q10 10 10 23t-10 23l-233 233l233 233q10 10 10 23t-10 23l-146 146q-10 10 -23 10t-23 -10l-233 -233l-233 233q-10 10 -23 10t-23 -10l-146 -146q-10 -10 -10 -23t10 -23l233 -233l-233 -233q-10 -10 -10 -23t10 -23l146 -146q10 -10 23 -10t23 10
+l233 233l233 -233q10 -10 23 -10t23 10zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D4" unicode="&#xf2d4;" horiz-adv-x="1792" 
+d="M1257 425l-146 -146q-10 -10 -23 -10t-23 10l-169 169l-169 -169q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l169 169l-169 169q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l169 -169l169 169q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23
+l-169 -169l169 -169q10 -10 10 -23t-10 -23zM256 128h1280v1024h-1280v-1024zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D5" unicode="&#xf2d5;" horiz-adv-x="1792" 
+d="M1070 358l306 564h-654l-306 -564h654zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2D6" unicode="&#xf2d6;" horiz-adv-x="1794" 
+d="M1291 1060q-15 17 -35 8.5t-26 -28.5t5 -38q14 -17 40 -14.5t34 20.5t-18 52zM895 814q-8 -8 -19.5 -8t-18.5 8q-8 8 -8 19t8 18q7 8 18.5 8t19.5 -8q7 -7 7 -18t-7 -19zM1060 740l-35 -35q-12 -13 -29.5 -13t-30.5 13l-38 38q-12 13 -12 30t12 30l35 35q12 12 29.5 12
+t30.5 -12l38 -39q12 -12 12 -29.5t-12 -29.5zM951 870q-7 -8 -18.5 -8t-19.5 8q-7 8 -7 19t7 19q8 8 19 8t19 -8t8 -19t-8 -19zM1354 968q-34 -64 -107.5 -85.5t-127.5 16.5q-38 28 -61 66.5t-21 87.5t39 92t75.5 53t70.5 -5t70 -51q2 -2 13 -12.5t14.5 -13.5t13 -13.5
+t12.5 -15.5t10 -15.5t8.5 -18t4 -18.5t1 -21t-5 -22t-9.5 -24zM1555 486q3 20 -8.5 34.5t-27.5 21.5t-33 17t-23 20q-40 71 -84 98.5t-113 11.5q19 13 40 18.5t33 4.5l12 -1q2 45 -34 90q6 20 6.5 40.5t-2.5 30.5l-3 10q43 24 71 65t34 91q10 84 -43 150.5t-137 76.5
+q-60 7 -114 -18.5t-82 -74.5q-30 -51 -33.5 -101t14.5 -87t43.5 -64t56.5 -42q-45 4 -88 36t-57 88q-28 108 32 222q-16 21 -29 32q-50 0 -89 -19q19 24 42 37t36 14l13 1q0 50 -13 78q-10 21 -32.5 28.5t-47 -3.5t-37.5 -40q2 4 4 7q-7 -28 -6.5 -75.5t19 -117t48.5 -122.5
+q-25 -14 -47 -36q-35 -16 -85.5 -70.5t-84.5 -101.5l-33 -46q-90 -34 -181 -125.5t-75 -162.5q1 -16 11 -27q-15 -12 -30 -30q-21 -25 -21 -54t21.5 -40t63.5 6q41 19 77 49.5t55 60.5q-2 2 -6.5 5t-20.5 7.5t-33 3.5q23 5 51 12.5t40 10t27.5 6t26 4t23.5 0.5q14 -7 22 34
+q7 37 7 90q0 102 -40 150q106 -103 101 -219q-1 -29 -15 -50t-27 -27l-13 -6q-4 -7 -19 -32t-26 -45.5t-26.5 -52t-25 -61t-17 -63t-6.5 -66.5t10 -63q-35 54 -37 80q-22 -24 -34.5 -39t-33.5 -42t-30.5 -46t-16.5 -41t-0.5 -38t25.5 -27q45 -25 144 64t190.5 221.5
+t122.5 228.5q86 52 145 115.5t86 119.5q47 -93 154 -178q104 -83 167 -80q39 2 46 43zM1794 640q0 -182 -71 -348t-191 -286t-286.5 -191t-348.5 -71t-348.5 71t-286.5 191t-191 286t-71 348t71 348t191 286t286.5 191t348.5 71t348.5 -71t286.5 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2D7" unicode="&#xf2d7;" 
+d="M518 1353v-655q103 -1 191.5 1.5t125.5 5.5l37 3q68 2 90.5 24.5t39.5 94.5l33 142h103l-14 -322l7 -319h-103l-29 127q-15 68 -45 93t-84 26q-87 8 -352 8v-556q0 -78 43.5 -115.5t133.5 -37.5h357q35 0 59.5 2t55 7.5t54 18t48.5 32t46 50.5t39 73l93 216h89
+q-6 -37 -31.5 -252t-30.5 -276q-146 5 -263.5 8t-162.5 4h-44h-628l-376 -12v102l127 25q67 13 91.5 37t25.5 79l8 643q3 402 -8 645q-2 61 -25.5 84t-91.5 36l-127 24v102l376 -12h702q139 0 374 27q-6 -68 -14 -194.5t-12 -219.5l-5 -92h-93l-32 124q-31 121 -74 179.5
+t-113 58.5h-548q-28 0 -35.5 -8.5t-7.5 -30.5z" />
+    <glyph glyph-name="uniF2D8" unicode="&#xf2d8;" 
+d="M922 739v-182q0 -4 0.5 -15t0 -15l-1.5 -12t-3.5 -11.5t-6.5 -7.5t-11 -5.5t-16 -1.5v309q9 0 16 -1t11 -5t6.5 -5.5t3.5 -9.5t1 -10.5v-13.5v-14zM1238 643v-121q0 -1 0.5 -12.5t0 -15.5t-2.5 -11.5t-7.5 -10.5t-13.5 -3q-9 0 -14 9q-4 10 -4 165v7v8.5v9t1.5 8.5l3.5 7
+t5 5.5t8 1.5q6 0 10 -1.5t6.5 -4.5t4 -6t2 -8.5t0.5 -8v-9.5v-9zM180 407h122v472h-122v-472zM614 407h106v472h-159l-28 -221q-20 148 -32 221h-158v-472h107v312l45 -312h76l43 319v-319zM1039 712q0 67 -5 90q-3 16 -11 28.5t-17 20.5t-25 14t-26.5 8.5t-31 4t-29 1.5
+h-29.5h-12h-91v-472h56q169 -1 197 24.5t25 180.5q-1 62 -1 100zM1356 515v133q0 29 -2 45t-9.5 33.5t-24.5 25t-46 7.5q-46 0 -77 -34v154h-117v-472h110l7 30q30 -36 77 -36q50 0 66 30.5t16 83.5zM1536 1248v-1216q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113
+v1216q0 66 47 113t113 47h1216q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D9" unicode="&#xf2d9;" horiz-adv-x="2176" 
+d="M1143 -197q-6 1 -11 4q-13 8 -36 23t-86 65t-116.5 104.5t-112 140t-89.5 172.5q-17 3 -175 37q66 -213 235 -362t391 -184zM502 409l168 -28q-25 76 -41 167.5t-19 145.5l-4 53q-84 -82 -121 -224q5 -65 17 -114zM612 1018q-43 -64 -77 -148q44 46 74 68zM2049 584
+q0 161 -62 307t-167.5 252t-250.5 168.5t-304 62.5q-147 0 -281 -52.5t-240 -148.5q-30 -58 -45 -160q60 51 143 83.5t158.5 43t143 13.5t108.5 -1l40 -3q33 -1 53 -15.5t24.5 -33t6.5 -37t-1 -28.5q-126 11 -227.5 0.5t-183 -43.5t-142.5 -71.5t-131 -98.5
+q4 -36 11.5 -92.5t35.5 -178t62 -179.5q123 -6 247.5 14.5t214.5 53.5t162.5 67t109.5 59l37 24q22 16 39.5 20.5t30.5 -5t17 -34.5q14 -97 -39 -121q-208 -97 -467 -134q-135 -20 -317 -16q41 -96 110 -176.5t137 -127t130.5 -79t101.5 -43.5l39 -12q143 -23 263 15
+q195 99 314 289t119 418zM2123 621q-14 -135 -40 -212q-70 -208 -181.5 -346.5t-318.5 -253.5q-48 -33 -82 -44q-72 -26 -163 -16q-36 -3 -73 -3q-283 0 -504.5 173t-295.5 442q-1 0 -4 0.5t-5 0.5q-6 -50 2.5 -112.5t26 -115t36 -98t31.5 -71.5l14 -26q8 -12 54 -82
+q-71 38 -124.5 106.5t-78.5 140t-39.5 137t-17.5 107.5l-2 42q-5 2 -33.5 12.5t-48.5 18t-53 20.5t-57.5 25t-50 25.5t-42.5 27t-25 25.5q19 -10 50.5 -25.5t113 -45.5t145.5 -38l2 32q11 149 94 290q41 202 176 365q28 115 81 214q15 28 32 45t49 32q158 74 303.5 104
+t302 11t306.5 -97q220 -115 333 -336t87 -474z" />
+    <glyph glyph-name="uniF2DA" unicode="&#xf2da;" horiz-adv-x="1792" 
+d="M1341 752q29 44 -6.5 129.5t-121.5 142.5q-58 39 -125.5 53.5t-118 4.5t-68.5 -37q-12 -23 -4.5 -28t42.5 -10q23 -3 38.5 -5t44.5 -9.5t56 -17.5q36 -13 67.5 -31.5t53 -37t40 -38.5t30.5 -38t22 -34.5t16.5 -28.5t12 -18.5t10.5 -6t11 9.5zM1704 178
+q-52 -127 -148.5 -220t-214.5 -141.5t-253 -60.5t-266 13.5t-251 91t-210 161.5t-141.5 235.5t-46.5 303.5q1 41 8.5 84.5t12.5 64t24 80.5t23 73q-51 -208 1 -397t173 -318t291 -206t346 -83t349 74.5t289 244.5q20 27 18 14q0 -4 -4 -14zM1465 627q0 -104 -40.5 -199
+t-108.5 -164t-162 -109.5t-198 -40.5t-198 40.5t-162 109.5t-108.5 164t-40.5 199t40.5 199t108.5 164t162 109.5t198 40.5t198 -40.5t162 -109.5t108.5 -164t40.5 -199zM1752 915q-65 147 -180.5 251t-253 153.5t-292 53.5t-301 -36.5t-275.5 -129t-220 -211.5t-131 -297
+t-10 -373q-49 161 -51.5 311.5t35.5 272.5t109 227t165.5 180.5t207 126t232 71t242.5 9t236 -54t216 -124.5t178 -197q33 -50 62 -121t31 -112zM1690 573q12 244 -136.5 416t-396.5 240q-8 0 -10 5t24 8q125 -4 230 -50t173 -120t116 -168.5t58.5 -199t-1 -208
+t-61.5 -197.5t-122.5 -167t-185 -117.5t-248.5 -46.5q108 30 201.5 80t174 123t129.5 176.5t55 225.5z" />
+    <glyph glyph-name="uniF2DB" unicode="&#xf2db;" 
+d="M192 256v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 512v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 768v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16
+q0 16 16 16h112zM192 1024v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 1280v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM1280 1440v-1472q0 -40 -28 -68t-68 -28h-832q-40 0 -68 28
+t-28 68v1472q0 40 28 68t68 28h832q40 0 68 -28t28 -68zM1536 208v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 464v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 720v-32
+q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 976v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 1232v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16
+h48q16 0 16 -16z" />
+    <glyph glyph-name="uniF2DC" unicode="&#xf2dc;" horiz-adv-x="1664" 
+d="M1566 419l-167 -33l186 -107q23 -13 29.5 -38.5t-6.5 -48.5q-14 -23 -39 -29.5t-48 6.5l-186 106l55 -160q13 -38 -12 -63.5t-60.5 -20.5t-48.5 42l-102 300l-271 156v-313l208 -238q16 -18 17 -39t-11 -36.5t-28.5 -25t-37 -5.5t-36.5 22l-112 128v-214q0 -26 -19 -45
+t-45 -19t-45 19t-19 45v214l-112 -128q-16 -18 -36.5 -22t-37 5.5t-28.5 25t-11 36.5t17 39l208 238v313l-271 -156l-102 -300q-13 -37 -48.5 -42t-60.5 20.5t-12 63.5l55 160l-186 -106q-23 -13 -48 -6.5t-39 29.5q-13 23 -6.5 48.5t29.5 38.5l186 107l-167 33
+q-29 6 -42 29t-8.5 46.5t25.5 40t50 10.5l310 -62l271 157l-271 157l-310 -62q-4 -1 -13 -1q-27 0 -44 18t-19 40t11 43t40 26l167 33l-186 107q-23 13 -29.5 38.5t6.5 48.5t39 30t48 -7l186 -106l-55 160q-13 38 12 63.5t60.5 20.5t48.5 -42l102 -300l271 -156v313
+l-208 238q-16 18 -17 39t11 36.5t28.5 25t37 5.5t36.5 -22l112 -128v214q0 26 19 45t45 19t45 -19t19 -45v-214l112 128q16 18 36.5 22t37 -5.5t28.5 -25t11 -36.5t-17 -39l-208 -238v-313l271 156l102 300q13 37 48.5 42t60.5 -20.5t12 -63.5l-55 -160l186 106
+q23 13 48 6.5t39 -29.5q13 -23 6.5 -48.5t-29.5 -38.5l-186 -107l167 -33q27 -5 40 -26t11 -43t-19 -40t-44 -18q-9 0 -13 1l-310 62l-271 -157l271 -157l310 62q29 6 50 -10.5t25.5 -40t-8.5 -46.5t-42 -29z" />
+    <glyph glyph-name="uniF2DD" unicode="&#xf2dd;" horiz-adv-x="1792" 
+d="M1473 607q7 118 -33 226.5t-113 189t-177 131t-221 57.5q-116 7 -225.5 -32t-192 -110.5t-135 -175t-59.5 -220.5q-7 -118 33 -226.5t113 -189t177.5 -131t221.5 -57.5q155 -9 293 59t224 195.5t94 283.5zM1792 1536l-349 -348q120 -117 180.5 -272t50.5 -321
+q-11 -183 -102 -339t-241 -255.5t-332 -124.5l-999 -132l347 347q-120 116 -180.5 271.5t-50.5 321.5q11 184 102 340t241.5 255.5t332.5 124.5q167 22 500 66t500 66z" />
+    <glyph glyph-name="uniF2DE" unicode="&#xf2de;" horiz-adv-x="1792" 
+d="M948 508l163 -329h-51l-175 350l-171 -350h-49l179 374l-78 33l21 49l240 -102l-21 -50zM563 1100l304 -130l-130 -304l-304 130zM907 915l240 -103l-103 -239l-239 102zM1188 765l191 -81l-82 -190l-190 81zM1680 640q0 159 -62 304t-167.5 250.5t-250.5 167.5t-304 62
+t-304 -62t-250.5 -167.5t-167.5 -250.5t-62 -304t62 -304t167.5 -250.5t250.5 -167.5t304 -62t304 62t250.5 167.5t167.5 250.5t62 304zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71
+t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2E0" unicode="&#xf2e0;" horiz-adv-x="1920" 
+d="M1334 302q-4 24 -27.5 34t-49.5 10.5t-48.5 12.5t-25.5 38q-5 47 33 139.5t75 181t32 127.5q-14 101 -117 103q-45 1 -75 -16l-3 -2l-5 -2.5t-4.5 -2t-5 -2t-5 -0.5t-6 1.5t-6 3.5t-6.5 5q-3 2 -9 8.5t-9 9t-8.5 7.5t-9.5 7.5t-9.5 5.5t-11 4.5t-11.5 2.5q-30 5 -48 -3
+t-45 -31q-1 -1 -9 -8.5t-12.5 -11t-15 -10t-16.5 -5.5t-17 3q-54 27 -84 40q-41 18 -94 -5t-76 -65q-16 -28 -41 -98.5t-43.5 -132.5t-40 -134t-21.5 -73q-22 -69 18.5 -119t110.5 -46q30 2 50.5 15t38.5 46q7 13 79 199.5t77 194.5q6 11 21.5 18t29.5 0q27 -15 21 -53
+q-2 -18 -51 -139.5t-50 -132.5q-6 -38 19.5 -56.5t60.5 -7t55 49.5q4 8 45.5 92t81.5 163.5t46 88.5q20 29 41 28q29 0 25 -38q-2 -16 -65.5 -147.5t-70.5 -159.5q-12 -53 13 -103t74 -74q17 -9 51 -15.5t71.5 -8t62.5 14t20 48.5zM383 86q3 -15 -5 -27.5t-23 -15.5
+q-14 -3 -26.5 5t-15.5 23q-3 14 5 27t22 16t27 -5t16 -23zM953 -177q12 -17 8.5 -37.5t-20.5 -32.5t-37.5 -8t-32.5 21q-11 17 -7.5 37.5t20.5 32.5t37.5 8t31.5 -21zM177 635q-18 -27 -49.5 -33t-57.5 13q-26 18 -32 50t12 58q18 27 49.5 33t57.5 -12q26 -19 32 -50.5
+t-12 -58.5zM1467 -42q19 -28 13 -61.5t-34 -52.5t-60.5 -13t-51.5 34t-13 61t33 53q28 19 60.5 13t52.5 -34zM1579 562q69 -113 42.5 -244.5t-134.5 -207.5q-90 -63 -199 -60q-20 -80 -84.5 -127t-143.5 -44.5t-140 57.5q-12 -9 -13 -10q-103 -71 -225 -48.5t-193 126.5
+q-50 73 -53 164q-83 14 -142.5 70.5t-80.5 128t-2 152t81 138.5q-36 60 -38 128t24.5 125t79.5 98.5t121 50.5q32 85 99 148t146.5 91.5t168 17t159.5 -66.5q72 21 140 17.5t128.5 -36t104.5 -80t67.5 -115t17.5 -140.5q52 -16 87 -57t45.5 -89t-5.5 -99.5t-58 -87.5z
+M455 1222q14 -20 9.5 -44.5t-24.5 -38.5q-19 -14 -43.5 -9.5t-37.5 24.5q-14 20 -9.5 44.5t24.5 38.5q19 14 43.5 9.5t37.5 -24.5zM614 1503q4 -16 -5 -30.5t-26 -18.5t-31 5.5t-18 26.5q-3 17 6.5 31t25.5 18q17 4 31 -5.5t17 -26.5zM1800 555q4 -20 -6.5 -37t-30.5 -21
+q-19 -4 -36 6.5t-21 30.5t6.5 37t30.5 22q20 4 36.5 -7.5t20.5 -30.5zM1136 1448q16 -27 8.5 -58.5t-35.5 -47.5q-27 -16 -57.5 -8.5t-46.5 34.5q-16 28 -8.5 59t34.5 48t58 9t47 -36zM1882 792q4 -15 -4 -27.5t-23 -16.5q-15 -3 -27.5 5.5t-15.5 22.5q-3 15 5 28t23 16
+q14 3 26.5 -5t15.5 -23zM1691 1033q15 -22 10.5 -49t-26.5 -43q-22 -15 -49 -10t-42 27t-10 49t27 43t48.5 11t41.5 -28z" />
+    <glyph glyph-name="uniF2E1" unicode="&#xf2e1;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E2" unicode="&#xf2e2;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E3" unicode="&#xf2e3;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E4" unicode="&#xf2e4;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E5" unicode="&#xf2e5;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E6" unicode="&#xf2e6;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E7" unicode="&#xf2e7;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="_698" unicode="&#xf2e8;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E9" unicode="&#xf2e9;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2EA" unicode="&#xf2ea;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2EB" unicode="&#xf2eb;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2EC" unicode="&#xf2ec;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2ED" unicode="&#xf2ed;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2EE" unicode="&#xf2ee;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="lessequal" unicode="&#xf500;" horiz-adv-x="1792" 
+ />
+  </font>
+</defs></svg>
diff --git a/css/fonts/fontawesome-webfont.ttf b/css/fonts/fontawesome-webfont.ttf
new file mode 100644
index 0000000000000000000000000000000000000000..35acda2fa1196aad98c2adf4378a7611dd713aa3
Binary files /dev/null and b/css/fonts/fontawesome-webfont.ttf differ
diff --git a/css/fonts/fontawesome-webfont.woff b/css/fonts/fontawesome-webfont.woff
new file mode 100644
index 0000000000000000000000000000000000000000..400014a4b06eee3d0c0d54402a47ab2601b2862b
Binary files /dev/null and b/css/fonts/fontawesome-webfont.woff differ
diff --git a/css/fonts/fontawesome-webfont.woff2 b/css/fonts/fontawesome-webfont.woff2
new file mode 100644
index 0000000000000000000000000000000000000000..4d13fc60404b91e398a37200c4a77b645cfd9586
Binary files /dev/null and b/css/fonts/fontawesome-webfont.woff2 differ
diff --git a/css/main.scss b/css/main.scss
deleted file mode 100644
index f2e566e2a19c6299179729cda45c10e5d2060f27..0000000000000000000000000000000000000000
--- a/css/main.scss
+++ /dev/null
@@ -1,53 +0,0 @@
----
-# Only the main Sass file needs front matter (the dashes are enough)
----
-@charset "utf-8";
-
-
-
-// Our variables
-$base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
-$base-font-size:   16px;
-$base-font-weight: 400;
-$small-font-size:  $base-font-size * 0.875;
-$base-line-height: 1.5;
-
-$spacing-unit:     30px;
-
-$text-color:       #111;
-$background-color: #fdfdfd;
-$brand-color:      #2a7ae2;
-
-$grey-color:       #828282;
-$grey-color-light: lighten($grey-color, 40%);
-$grey-color-dark:  darken($grey-color, 25%);
-
-// Width of the content area
-$content-width:    800px;
-
-$on-palm:          600px;
-$on-laptop:        800px;
-
-
-
-// Use media queries like this:
-// @include media-query($on-palm) {
-//     .wrapper {
-//         padding-right: $spacing-unit / 2;
-//         padding-left: $spacing-unit / 2;
-//     }
-// }
-@mixin media-query($device) {
-    @media screen and (max-width: $device) {
-        @content;
-    }
-}
-
-
-
-// Import partials from `sass_dir` (defaults to `_sass`)
-@import
-        "base",
-        "layout",
-        "syntax-highlighting"
-;
diff --git a/css/modern-business.css b/css/modern-business.css
new file mode 100755
index 0000000000000000000000000000000000000000..b0323c5cdf05a6fda2d02456695021dea2f96700
--- /dev/null
+++ b/css/modern-business.css
@@ -0,0 +1,89 @@
+/*!
+ * Start Bootstrap - Modern Business HTML Template (http://startbootstrap.com)
+ * Code licensed under the Apache License v2.0.
+ * For details, see http://www.apache.org/licenses/LICENSE-2.0.
+ */
+
+/* Global Styles */
+
+html,
+body {
+    height: 100%;
+}
+
+.img-portfolio {
+    margin-bottom: 30px;
+}
+
+.img-hover:hover {
+    opacity: 0.8;
+}
+
+/* Home Page Carousel */
+
+header.carousel {
+    height: 50%;
+}
+
+header.carousel .item,
+header.carousel .item.active,
+header.carousel .carousel-inner {
+    height: 100%;
+}
+
+header.carousel .fill {
+    width: 100%;
+    height: 100%;
+    background-position: center;
+    background-size: cover;
+}
+
+/* 404 Page Styles */
+
+.error-404 {
+    font-size: 100px;
+}
+
+/* Pricing Page Styles */
+
+.price {
+    display: block;
+    font-size: 50px;
+    line-height: 50px;
+}
+
+.price sup {
+    top: -20px;
+    left: 2px;
+    font-size: 20px;
+}
+
+.period {
+    display: block;
+    font-style: italic;
+}
+
+/* Footer Styles */
+
+footer {
+    margin: 50px 0;
+}
+
+/* Responsive Styles */
+
+@media(max-width:991px) {
+    .client-img,
+    .img-related {
+        margin-bottom: 30px;
+    }
+}
+
+@media(max-width:767px) {
+    .img-portfolio {
+        margin-bottom: 15px;
+    }
+
+    header.carousel .carousel {
+        height: 70%;
+    }
+}
diff --git a/css/printstyles.css b/css/printstyles.css
new file mode 100644
index 0000000000000000000000000000000000000000..64d0f6310112a223d89cbeb956fd0f988e7b2aca
--- /dev/null
+++ b/css/printstyles.css
@@ -0,0 +1,159 @@
+
+/*body.print .container {max-width: 650px;}*/
+
+body {
+    font-size:14px;
+}
+.nav ul li a {border-top:0px; background-color:transparent; color: #808080; }
+#navig a[href] {color: #595959 !important;}
+table .table {max-width:650px;}
+
+#navig li.sectionHead {font-weight: bold; font-size: 18px; color: #595959 !important; }
+#navig li {font-weight: normal; }
+
+#navig a[href]::after { content: leader(".") target-counter(attr(href), page); }
+
+a[href]::after {
+    content: " (page " target-counter(attr(href), page) ")"
+}
+
+a[href^="http:"]::after, a[href^="https:"]::after {
+    content: "";
+}
+
+a[href] {
+    color: blue !important;
+}
+a[href*="mailto"]::after, a[data-toggle="tooltip"]::after, a[href].noCrossRef::after {
+    content: "";
+}
+
+
+@page {
+    margin: 60pt 90pt 60pt 90pt;
+    font-family: sans-serif;
+    font-style:none;
+    color: gray;
+
+}
+
+.printTitle {
+    line-height:30pt;
+    font-size:27pt;
+    font-weight: bold;
+    letter-spacing: -.5px;
+    margin-bottom:25px;
+}
+
+.printSubtitle {
+    font-size: 19pt;
+    color: #cccccc !important;
+    font-family: "Grotesque MT Light";
+    line-height: 22pt;
+    letter-spacing: -.5px;
+    margin-bottom:20px;
+}
+.printTitleArea hr {
+    color: #999999 !important;
+    height: 2px;
+    width: 100%;
+}
+
+.printTitleImage {
+    max-width:300px;
+    margin-bottom:200px;
+}
+
+
+.printTitleImage {
+    max-width: 250px;
+}
+
+#navig {
+    /*page-break-before: always;*/
+}
+
+.copyrightBoilerplate {
+    page-break-before:always;
+    font-size:14px;
+}
+
+.lastGeneratedDate {
+    font-style: italic;
+    font-size:14px;
+    color: gray;
+}
+
+.alert a {
+    text-decoration: none !important;
+}
+
+
+body.title { page: title }
+
+@page title {
+    @top-left {
+        content: " ";
+    }
+    @top-right {
+        content: " "
+    }
+    @bottom-right {
+        content: " ";
+    }
+    @bottom-left {
+        content: " ";
+    }
+}
+
+body.frontmatter { page: frontmatter }
+body.frontmatter {counter-reset: page 1}
+
+
+@page frontmatter {
+    @top-left {
+        content: prince-script(guideName);
+    }
+    @top-right {
+        content: prince-script(datestamp);
+    }
+    @bottom-right {
+        content: counter(page, lower-roman);
+    }
+    @bottom-left {
+        content: "youremail@domain.com";   }
+}
+
+body.first_page {counter-reset: page 1}
+
+h1 { string-set: doctitle content() }
+
+@page {
+    @top-left {
+        content: string(doctitle);
+        font-size: 11px;
+        font-style: italic;
+    }
+    @top-right {
+        content: prince-script(datestamp);
+        font-size: 11px;
+    }
+
+    @bottom-right {
+        content: "Page " counter(page);
+        font-size: 11px;
+    }
+    @bottom-left {
+        content: prince-script(guideName);
+        font-size: 11px;
+    }
+}
+.alert {
+    background-color: #fafafa !important;
+    border-color: #dedede !important;
+    color: black;
+}
+
+pre {
+    background-color: #fafafa;
+}
diff --git a/css/syntax.css b/css/syntax.css
new file mode 100644
index 0000000000000000000000000000000000000000..1e651cf79db8253e56e236c4592b19902a71c8f9
--- /dev/null
+++ b/css/syntax.css
@@ -0,0 +1,60 @@
+.highlight  { background: #ffffff; }
+.highlight .c { color: #999988; font-style: italic } /* Comment */
+.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
+.highlight .k { font-weight: bold } /* Keyword */
+.highlight .o { font-weight: bold } /* Operator */
+.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
+.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
+.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
+.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
+.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
+.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
+.highlight .ge { font-style: italic } /* Generic.Emph */
+.highlight .gr { color: #aa0000 } /* Generic.Error */
+.highlight .gh { color: #999999 } /* Generic.Heading */
+.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
+.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
+.highlight .go { color: #888888 } /* Generic.Output */
+.highlight .gp { color: #555555 } /* Generic.Prompt */
+.highlight .gs { font-weight: bold } /* Generic.Strong */
+.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
+.highlight .gt { color: #aa0000 } /* Generic.Traceback */
+.highlight .kc { font-weight: bold } /* Keyword.Constant */
+.highlight .kd { font-weight: bold } /* Keyword.Declaration */
+.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
+.highlight .kr { font-weight: bold } /* Keyword.Reserved */
+.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
+.highlight .m { color: #009999 } /* Literal.Number */
+.highlight .s { color: #d14 } /* Literal.String */
+.highlight .na { color: #008080 } /* Name.Attribute */
+.highlight .nb { color: #0086B3 } /* Name.Builtin */
+.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
+.highlight .no { color: #008080 } /* Name.Constant */
+.highlight .ni { color: #800080 } /* Name.Entity */
+.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
+.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
+.highlight .nn { color: #555555 } /* Name.Namespace */
+.highlight .nt { color: #000080 } /* Name.Tag */
+.highlight .nv { color: #008080 } /* Name.Variable */
+.highlight .ow { font-weight: bold } /* Operator.Word */
+.highlight .w { color: #bbbbbb } /* Text.Whitespace */
+.highlight .mf { color: #009999 } /* Literal.Number.Float */
+.highlight .mh { color: #009999 } /* Literal.Number.Hex */
+.highlight .mi { color: #009999 } /* Literal.Number.Integer */
+.highlight .mo { color: #009999 } /* Literal.Number.Oct */
+.highlight .sb { color: #d14 } /* Literal.String.Backtick */
+.highlight .sc { color: #d14 } /* Literal.String.Char */
+.highlight .sd { color: #d14 } /* Literal.String.Doc */
+.highlight .s2 { color: #d14 } /* Literal.String.Double */
+.highlight .se { color: #d14 } /* Literal.String.Escape */
+.highlight .sh { color: #d14 } /* Literal.String.Heredoc */
+.highlight .si { color: #d14 } /* Literal.String.Interpol */
+.highlight .sx { color: #d14 } /* Literal.String.Other */
+.highlight .sr { color: #009926 } /* Literal.String.Regex */
+.highlight .s1 { color: #d14 } /* Literal.String.Single */
+.highlight .ss { color: #990073 } /* Literal.String.Symbol */
+.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
+.highlight .vc { color: #008080 } /* Name.Variable.Class */
+.highlight .vg { color: #008080 } /* Name.Variable.Global */
+.highlight .vi { color: #008080 } /* Name.Variable.Instance */
+.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
\ No newline at end of file
diff --git a/css/theme-blue.css b/css/theme-blue.css
new file mode 100644
index 0000000000000000000000000000000000000000..db84521bf5ff40c2ae8c035f1fe959f24952b39d
--- /dev/null
+++ b/css/theme-blue.css
@@ -0,0 +1,121 @@
+.summary {
+    color: #808080;
+    border-left: 5px solid #ED1951;
+    font-size:16px;
+}
+
+
+h3 {color: #ED1951; }
+h4 {color: #808080; }
+
+.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
+    background-color: #248ec2;
+    color: white;
+}
+
+.nav > li.active > a {
+    background-color: #347DBE;
+}
+
+.nav > li > a:hover {
+    background-color: #248ec2;
+}
+
+div.navbar-collapse .dropdown-menu > li > a:hover {
+    background-color: #347DBE;
+}
+
+.nav li.thirdlevel > a {
+    background-color: #FAFAFA !important;
+    color: #248EC2;
+    font-weight: bold;
+}
+
+a[data-toggle="tooltip"] {
+    color: #649345;
+    font-style: italic;
+    cursor: default;
+}
+
+.navbar-inverse {
+    background-color: #347DBE;
+    border-color: #015CAE;
+}
+.navbar-inverse .navbar-nav>li>a, .navbar-inverse .navbar-brand {
+    color: white;
+}
+
+.navbar-inverse .navbar-nav>li>a:hover, a.fa.fa-home.fa-lg.navbar-brand:hover {
+     color: #f0f0f0;
+}
+
+a.navbar-brand:hover {
+  color: #f0f0f0;
+}
+
+.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
+    color: #015CAE;
+}
+
+.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
+    background-color: #015CAE;
+    color: #ffffff;
+}
+
+.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
+    border-color: #248ec2 !important;
+}
+
+.btn-primary {
+    color: #ffffff;
+    background-color: #347DBE;
+    border-color: #347DBE;
+}
+
+.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
+    background-color: #347DBE;
+}
+
+.btn-primary:hover,
+.btn-primary:focus,
+.btn-primary:active,
+.btn-primary.active,
+.open .dropdown-toggle.btn-primary {
+    background-color: #248ec2;
+    border-color: #347DBE;
+}
+
+.printTitle {
+    color: #015CAE !important;
+}
+
+body.print h1 {color: #015CAE !important; font-size:28px !important;}
+body.print h2 {color: #595959 !important; font-size:20px !important;}
+body.print h3 {color: #E50E51 !important; font-size:14px !important;}
+body.print h4 {color: #679DCE !important; font-size:14px; font-style: italic !important;}
+
+.anchorjs-link:hover {
+    color: #216f9b;
+}
+
+div.sidebarTitle {
+    color: #015CAE;
+}
+
+li.sidebarTitle {
+  margin-top:20px;
+    font-weight:normal;
+    font-size:130%;
+    color: #ED1951;
+    margin-bottom:10px;
+    margin-left: 5px;
+
+}
+
+.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
+    background-color: #015CAE;
+}
+
+.navbar-inverse .navbar-toggle {
+    border-color: #015CAE;
+}
diff --git a/css/theme-green.css b/css/theme-green.css
new file mode 100644
index 0000000000000000000000000000000000000000..4991586b5a60fa9d26b0a465a7ea12e20d79d7d5
--- /dev/null
+++ b/css/theme-green.css
@@ -0,0 +1,110 @@
+.summary {
+    color: #808080;
+    border-left: 5px solid #E50E51;
+    font-size:16px;
+}
+
+
+h3 {color: #E50E51; }
+h4 {color: #808080; }
+
+.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
+    background-color: #248ec2;
+    color: white;
+}
+
+.nav > li.active > a {
+    background-color: #72ac4a;
+}
+
+.nav > li > a:hover {
+    background-color: #72ac4a;
+}
+
+div.navbar-collapse .dropdown-menu > li > a:hover {
+    background-color: #72ac4a;
+}
+
+.navbar-inverse .navbar-nav>li>a, .navbar-inverse .navbar-brand {
+    color: white;
+}
+
+.navbar-inverse .navbar-nav>li>a:hover, a.fa.fa-home.fa-lg.navbar-brand:hover {
+     color: #f0f0f0;
+}
+
+.nav li.thirdlevel > a {
+    background-color: #FAFAFA !important;
+    color: #72ac4a;
+    font-weight: bold;
+}
+
+a[data-toggle="tooltip"] {
+    color: #649345;
+    font-style: italic;
+    cursor: default;
+}
+
+.navbar-inverse {
+    background-color: #72ac4a;
+    border-color: #5b893c;
+}
+
+.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
+    color: #5b893c;
+}
+
+.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
+    background-color: #5b893c;
+    color: #ffffff;
+}
+
+/* not sure if using this ...*/
+.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
+    border-color: #72ac4a !important;
+}
+
+.btn-primary {
+    color: #ffffff;
+    background-color: #5b893c;
+    border-color: #5b893c;
+}
+
+.btn-primary:hover,
+.btn-primary:focus,
+.btn-primary:active,
+.btn-primary.active,
+.open .dropdown-toggle.btn-primary {
+    background-color: #72ac4a;
+    border-color: #5b893c;
+}
+
+.printTitle {
+    color: #5b893c !important;
+}
+
+body.print h1 {color: #5b893c !important; font-size:28px;}
+body.print h2 {color: #595959 !important; font-size:24px;}
+body.print h3 {color: #E50E51 !important; font-size:14px;}
+body.print h4 {color: #679DCE !important; font-size:14px; font-style: italic;}
+
+.anchorjs-link:hover {
+    color: #4f7233;
+}
+
+div.sidebarTitle {
+    color: #E50E51;
+}
+
+li.sidebarTitle {
+    margin-top:20px;
+    font-weight:normal;
+    font-size:130%;
+    color: #ED1951;
+    margin-bottom:10px;
+    margin-left: 5px;
+}
+
+.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
+    background-color: #E50E51;
+}
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000000000000000000000000000000000000..f372ae68676a9c632c0949f80181cfdc3659586b
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,11 @@
+version: '2'
+services:
+  server:
+    build:
+      context: .
+      dockerfile: Dockerfile
+    image: result/latest
+    ports:
+      - "4000:4000"
+    volumes:
+      - ".:/src"
\ No newline at end of file
diff --git a/feed.xml b/feed.xml
index a6628bd842af95a7f423155dd95510941d3a78dc..d8d6ac999d664fefba1208e66e5d850d2d41fb40 100644
--- a/feed.xml
+++ b/feed.xml
@@ -1,30 +1,32 @@
 ---
-layout: null
+search: exclude
+layout: none
 ---
+
 <?xml version="1.0" encoding="UTF-8"?>
 <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
-  <channel>
-    <title>{{ site.title | xml_escape }}</title>
-    <description>{{ site.description | xml_escape }}</description>
-    <link>{{ site.url }}{{ site.baseurl }}/</link>
-    <atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml"/>
-    <pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
-    <lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
-    <generator>Jekyll v{{ jekyll.version }}</generator>
-    {% for post in site.posts limit:10 %}
-      <item>
-        <title>{{ post.title | xml_escape }}</title>
-        <description>{{ post.content | xml_escape }}</description>
-        <pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
-        <link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>
-        <guid isPermaLink="true">{{ post.url | prepend: site.baseurl | prepend: site.url }}</guid>
-        {% for tag in post.tags %}
-        <category>{{ tag | xml_escape }}</category>
+    <channel>
+        <title>{{ site.title | xml_escape }}</title>
+        <description>{{ site.description | xml_escape }}</description>
+        <link>{{ site.url }}/</link>
+        <atom:link href="{{ "/feed.xml" | prepend: site.url }}" rel="self" type="application/rss+xml"/>
+        <pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
+        <lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
+        <generator>Jekyll v{{ jekyll.version }}</generator>
+        {% for post in site.posts limit:10 %}
+        <item>
+            <title>{{ post.title | xml_escape }}</title>
+            <description>{{ post.content | xml_escape }}</description>
+            <pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
+            <link>{{ post.url | prepend: site.url }}</link>
+            <guid isPermaLink="true">{{ post.url | prepend: site.url }}</guid>
+            {% for tag in post.tags %}
+            <category>{{ tag | xml_escape }}</category>
+            {% endfor %}
+            {% for tag in page.tags %}
+            <category>{{ cat | xml_escape }}</category>
+            {% endfor %}
+        </item>
         {% endfor %}
-        {% for cat in post.categories %}
-        <category>{{ cat | xml_escape }}</category>
-        {% endfor %}
-      </item>
-    {% endfor %}
-  </channel>
+    </channel>
 </rss>
diff --git a/fonts/FontAwesome.otf b/fonts/FontAwesome.otf
new file mode 100644
index 0000000000000000000000000000000000000000..81c9ad949b47f64afeca5642ee2494b6e3147f44
Binary files /dev/null and b/fonts/FontAwesome.otf differ
diff --git a/fonts/fontawesome-webfont.eot b/fonts/fontawesome-webfont.eot
new file mode 100644
index 0000000000000000000000000000000000000000..84677bc0c5f37f1fac9d87548c4554b5c91717cf
Binary files /dev/null and b/fonts/fontawesome-webfont.eot differ
diff --git a/fonts/fontawesome-webfont.svg b/fonts/fontawesome-webfont.svg
new file mode 100644
index 0000000000000000000000000000000000000000..d907b25ae60ec7e3d32e4027aa6e6b7595de97af
--- /dev/null
+++ b/fonts/fontawesome-webfont.svg
@@ -0,0 +1,520 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="fontawesomeregular" horiz-adv-x="1536" >
+<font-face units-per-em="1792" ascent="1536" descent="-256" />
+<missing-glyph horiz-adv-x="448" />
+<glyph unicode=" "  horiz-adv-x="448" />
+<glyph unicode="&#x09;" horiz-adv-x="448" />
+<glyph unicode="&#xa0;" horiz-adv-x="448" />
+<glyph unicode="&#xa8;" horiz-adv-x="1792" />
+<glyph unicode="&#xa9;" horiz-adv-x="1792" />
+<glyph unicode="&#xae;" horiz-adv-x="1792" />
+<glyph unicode="&#xb4;" horiz-adv-x="1792" />
+<glyph unicode="&#xc6;" horiz-adv-x="1792" />
+<glyph unicode="&#xd8;" horiz-adv-x="1792" />
+<glyph unicode="&#x2000;" horiz-adv-x="768" />
+<glyph unicode="&#x2001;" horiz-adv-x="1537" />
+<glyph unicode="&#x2002;" horiz-adv-x="768" />
+<glyph unicode="&#x2003;" horiz-adv-x="1537" />
+<glyph unicode="&#x2004;" horiz-adv-x="512" />
+<glyph unicode="&#x2005;" horiz-adv-x="384" />
+<glyph unicode="&#x2006;" horiz-adv-x="256" />
+<glyph unicode="&#x2007;" horiz-adv-x="256" />
+<glyph unicode="&#x2008;" horiz-adv-x="192" />
+<glyph unicode="&#x2009;" horiz-adv-x="307" />
+<glyph unicode="&#x200a;" horiz-adv-x="85" />
+<glyph unicode="&#x202f;" horiz-adv-x="307" />
+<glyph unicode="&#x205f;" horiz-adv-x="384" />
+<glyph unicode="&#x2122;" horiz-adv-x="1792" />
+<glyph unicode="&#x221e;" horiz-adv-x="1792" />
+<glyph unicode="&#x2260;" horiz-adv-x="1792" />
+<glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
+<glyph unicode="&#xf000;" horiz-adv-x="1792" d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
+<glyph unicode="&#xf001;" d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf002;" horiz-adv-x="1664" d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
+<glyph unicode="&#xf003;" horiz-adv-x="1792" d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+<glyph unicode="&#xf004;" horiz-adv-x="1792" d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 q-18 -18 -44 -18z" />
+<glyph unicode="&#xf005;" horiz-adv-x="1664" d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 l502 -73q56 -9 56 -46z" />
+<glyph unicode="&#xf006;" horiz-adv-x="1664" d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
+<glyph unicode="&#xf007;" horiz-adv-x="1408" d="M1408 131q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q9 0 42 -21.5t74.5 -48t108 -48t133.5 -21.5t133.5 21.5t108 48t74.5 48t42 21.5q61 0 111.5 -20t85.5 -53.5t62 -81 t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
+<glyph unicode="&#xf008;" horiz-adv-x="1920" d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+<glyph unicode="&#xf009;" horiz-adv-x="1664" d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
+<glyph unicode="&#xf00a;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf00b;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf00c;" horiz-adv-x="1792" d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
+<glyph unicode="&#xf00d;" horiz-adv-x="1408" d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
+<glyph unicode="&#xf00e;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
+<glyph unicode="&#xf010;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z " />
+<glyph unicode="&#xf011;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
+<glyph unicode="&#xf012;" horiz-adv-x="1792" d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf013;" d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
+<glyph unicode="&#xf014;" horiz-adv-x="1408" d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf015;" horiz-adv-x="1664" d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
+<glyph unicode="&#xf016;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z " />
+<glyph unicode="&#xf017;" d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf018;" horiz-adv-x="1920" d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
+<glyph unicode="&#xf019;" horiz-adv-x="1664" d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
+<glyph unicode="&#xf01a;" d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf01b;" d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf01c;" d="M1023 576h316q-1 3 -2.5 8t-2.5 8l-212 496h-708l-212 -496q-1 -2 -2.5 -8t-2.5 -8h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 q25 -61 25 -123z" />
+<glyph unicode="&#xf01d;" d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf01e;" d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q14 0 25 -9 l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
+<glyph unicode="&#xf021;" d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
+<glyph unicode="&#xf022;" horiz-adv-x="1792" d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 t47 -113z" />
+<glyph unicode="&#xf023;" horiz-adv-x="1152" d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf024;" horiz-adv-x="1792" d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf025;" horiz-adv-x="1664" d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
+<glyph unicode="&#xf026;" horiz-adv-x="768" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
+<glyph unicode="&#xf027;" horiz-adv-x="1152" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
+<glyph unicode="&#xf028;" horiz-adv-x="1664" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
+<glyph unicode="&#xf029;" horiz-adv-x="1408" d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
+<glyph unicode="&#xf02a;" horiz-adv-x="1792" d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
+<glyph unicode="&#xf02b;" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91z" />
+<glyph unicode="&#xf02c;" horiz-adv-x="1920" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
+<glyph unicode="&#xf02d;" horiz-adv-x="1664" d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
+<glyph unicode="&#xf02e;" horiz-adv-x="1280" d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
+<glyph unicode="&#xf02f;" horiz-adv-x="1664" d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
+<glyph unicode="&#xf030;" horiz-adv-x="1920" d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+<glyph unicode="&#xf031;" horiz-adv-x="1664" d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57 q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -4 -0.5 -13t-0.5 -13q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5 q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" />
+<glyph unicode="&#xf032;" horiz-adv-x="1408" d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142 q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5 t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68.5 -0.5t67.5 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5 t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" />
+<glyph unicode="&#xf033;" horiz-adv-x="1024" d="M0 -126l17 85q6 2 81.5 21.5t111.5 37.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5 q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" />
+<glyph unicode="&#xf034;" horiz-adv-x="1792" d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2 t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5 q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" />
+<glyph unicode="&#xf035;" d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1 t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5 t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49 t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" />
+<glyph unicode="&#xf036;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf037;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf038;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf039;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf03a;" horiz-adv-x="1792" d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
+<glyph unicode="&#xf03b;" horiz-adv-x="1792" d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
+<glyph unicode="&#xf03c;" horiz-adv-x="1792" d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
+<glyph unicode="&#xf03d;" horiz-adv-x="1792" d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 q39 -17 39 -59z" />
+<glyph unicode="&#xf03e;" horiz-adv-x="1920" d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+<glyph unicode="&#xf040;" d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 q53 0 91 -38l235 -234q37 -39 37 -91z" />
+<glyph unicode="&#xf041;" horiz-adv-x="1024" d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
+<glyph unicode="&#xf042;" d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf043;" horiz-adv-x="1024" d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
+<glyph unicode="&#xf044;" horiz-adv-x="1792" d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
+<glyph unicode="&#xf045;" horiz-adv-x="1664" d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
+<glyph unicode="&#xf046;" horiz-adv-x="1664" d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 q24 -24 24 -57t-24 -57z" />
+<glyph unicode="&#xf047;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
+<glyph unicode="&#xf048;" horiz-adv-x="1024" d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19z" />
+<glyph unicode="&#xf049;" horiz-adv-x="1792" d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19l710 710 q19 19 32 13t13 -32v-710q4 11 13 19z" />
+<glyph unicode="&#xf04a;" horiz-adv-x="1664" d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-8 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q5 11 13 19z" />
+<glyph unicode="&#xf04b;" horiz-adv-x="1408" d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
+<glyph unicode="&#xf04c;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf04d;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf04e;" horiz-adv-x="1664" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
+<glyph unicode="&#xf050;" horiz-adv-x="1792" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19l-710 -710 q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
+<glyph unicode="&#xf051;" horiz-adv-x="1024" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19z" />
+<glyph unicode="&#xf052;" horiz-adv-x="1538" d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
+<glyph unicode="&#xf053;" horiz-adv-x="1280" d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" />
+<glyph unicode="&#xf054;" horiz-adv-x="1280" d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" />
+<glyph unicode="&#xf055;" d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf056;" d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
+<glyph unicode="&#xf057;" d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf058;" d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf059;" d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf05a;" d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf05b;" d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf05c;" d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf05d;" d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf05e;" d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
+<glyph unicode="&#xf060;" d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 t32.5 -90.5z" />
+<glyph unicode="&#xf061;" d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
+<glyph unicode="&#xf062;" horiz-adv-x="1664" d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 q37 -39 37 -91z" />
+<glyph unicode="&#xf063;" horiz-adv-x="1664" d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
+<glyph unicode="&#xf064;" horiz-adv-x="1792" d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
+<glyph unicode="&#xf065;" d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf066;" d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
+<glyph unicode="&#xf067;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf068;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf069;" horiz-adv-x="1664" d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
+<glyph unicode="&#xf06a;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
+<glyph unicode="&#xf06b;" d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf06c;" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-30 0 -51 11t-31 24t-27 42q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
+<glyph unicode="&#xf06d;" horiz-adv-x="1408" d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
+<glyph unicode="&#xf06e;" horiz-adv-x="1792" d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
+<glyph unicode="&#xf070;" horiz-adv-x="1792" d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 q-105 -188 -315 -566t-316 -567l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z " />
+<glyph unicode="&#xf071;" horiz-adv-x="1792" d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
+<glyph unicode="&#xf072;" horiz-adv-x="1408" d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
+<glyph unicode="&#xf073;" horiz-adv-x="1664" d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+<glyph unicode="&#xf074;" horiz-adv-x="1792" d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
+<glyph unicode="&#xf075;" horiz-adv-x="1792" d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
+<glyph unicode="&#xf076;" d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf077;" horiz-adv-x="1792" d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" />
+<glyph unicode="&#xf078;" horiz-adv-x="1792" d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" />
+<glyph unicode="&#xf079;" horiz-adv-x="1920" d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -11 7 -21 zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z " />
+<glyph unicode="&#xf07a;" horiz-adv-x="1664" d="M640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5 l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5 t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf07b;" horiz-adv-x="1664" d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
+<glyph unicode="&#xf07c;" horiz-adv-x="1920" d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
+<glyph unicode="&#xf07d;" horiz-adv-x="768" d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
+<glyph unicode="&#xf07e;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
+<glyph unicode="&#xf080;" horiz-adv-x="2048" d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" />
+<glyph unicode="&#xf081;" d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf082;" d="M1536 160q0 -119 -84.5 -203.5t-203.5 -84.5h-192v608h203l30 224h-233v143q0 54 28 83t96 29l132 1v207q-96 9 -180 9q-136 0 -218 -80.5t-82 -225.5v-166h-224v-224h224v-608h-544q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960 q119 0 203.5 -84.5t84.5 -203.5v-960z" />
+<glyph unicode="&#xf083;" horiz-adv-x="1792" d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
+<glyph unicode="&#xf084;" horiz-adv-x="1792" d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
+<glyph unicode="&#xf085;" horiz-adv-x="1920" d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -10 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -9 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
+<glyph unicode="&#xf086;" horiz-adv-x="1792" d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
+<glyph unicode="&#xf087;" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
+<glyph unicode="&#xf088;" d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 32 18 69t-17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -74 49 -163z" />
+<glyph unicode="&#xf089;" horiz-adv-x="896" d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
+<glyph unicode="&#xf08a;" horiz-adv-x="1792" d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 q224 0 351 -124t127 -344z" />
+<glyph unicode="&#xf08b;" horiz-adv-x="1664" d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
+<glyph unicode="&#xf08c;" d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf08d;" horiz-adv-x="1152" d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
+<glyph unicode="&#xf08e;" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf090;" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf091;" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf092;" d="M394 184q-8 -9 -20 3q-13 11 -4 19q8 9 20 -3q12 -11 4 -19zM352 245q9 -12 0 -19q-8 -6 -17 7t0 18q9 7 17 -6zM291 305q-5 -7 -13 -2q-10 5 -7 12q3 5 13 2q10 -5 7 -12zM322 271q-6 -7 -16 3q-9 11 -2 16q6 6 16 -3q9 -11 2 -16zM451 159q-4 -12 -19 -6q-17 4 -13 15 t19 7q16 -5 13 -16zM514 154q0 -11 -16 -11q-17 -2 -17 11q0 11 16 11q17 2 17 -11zM572 164q2 -10 -14 -14t-18 8t14 15q16 2 18 -9zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-224q-16 0 -24.5 1t-19.5 5t-16 14.5t-5 27.5v239q0 97 -52 142q57 6 102.5 18t94 39 t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103 q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -103t0.5 -68q0 -22 -11 -33.5t-22 -13t-33 -1.5 h-224q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf093;" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
+<glyph unicode="&#xf094;" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" />
+<glyph unicode="&#xf095;" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
+<glyph unicode="&#xf096;" horiz-adv-x="1408" d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf097;" horiz-adv-x="1280" d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
+<glyph unicode="&#xf098;" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf099;" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
+<glyph unicode="&#xf09a;" horiz-adv-x="1024" d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
+<glyph unicode="&#xf09b;" d="M1536 640q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -39.5 7t-12.5 30v211q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5 q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23 q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -89t0.5 -54q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf09c;" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" />
+<glyph unicode="&#xf09d;" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
+<glyph unicode="&#xf09e;" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" />
+<glyph unicode="&#xf0a0;" d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
+<glyph unicode="&#xf0a1;" horiz-adv-x="1792" d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
+<glyph unicode="&#xf0a2;" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5 t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
+<glyph unicode="&#xf0a3;" d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
+<glyph unicode="&#xf0a4;" horiz-adv-x="1792" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
+<glyph unicode="&#xf0a5;" horiz-adv-x="1792" d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-2 3 -3.5 4.5t-4 4.5t-4.5 5q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576 q-50 0 -89 -38.5t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45 t45 -19t45 19t19 45zM1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128 q0 122 81.5 189t206.5 67q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
+<glyph unicode="&#xf0a6;" d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
+<glyph unicode="&#xf0a7;" d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
+<glyph unicode="&#xf0a8;" d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf0a9;" d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf0aa;" d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf0ab;" d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf0ac;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 10.5t-9.5 10.5q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-5 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10t17 -20q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q7 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
+<glyph unicode="&#xf0ad;" horiz-adv-x="1664" d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
+<glyph unicode="&#xf0ae;" horiz-adv-x="1792" d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0b0;" horiz-adv-x="1408" d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
+<glyph unicode="&#xf0b1;" horiz-adv-x="1792" d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
+<glyph unicode="&#xf0b2;" d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z " />
+<glyph unicode="&#xf0c0;" horiz-adv-x="1920" d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
+<glyph unicode="&#xf0c1;" horiz-adv-x="1664" d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
+<glyph unicode="&#xf0c2;" horiz-adv-x="1920" d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z " />
+<glyph unicode="&#xf0c3;" horiz-adv-x="1664" d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
+<glyph unicode="&#xf0c4;" horiz-adv-x="1792" d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
+<glyph unicode="&#xf0c5;" horiz-adv-x="1792" d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
+<glyph unicode="&#xf0c6;" horiz-adv-x="1408" d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 z" />
+<glyph unicode="&#xf0c7;" d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
+<glyph unicode="&#xf0c8;" d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf0c9;" d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0ca;" horiz-adv-x="1792" d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
+<glyph unicode="&#xf0cb;" horiz-adv-x="1792" d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 122t0.5 121v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5 t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
+<glyph unicode="&#xf0cc;" horiz-adv-x="1792" d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 97 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -55 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
+<glyph unicode="&#xf0cd;" d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
+<glyph unicode="&#xf0ce;" horiz-adv-x="1664" d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 z" />
+<glyph unicode="&#xf0d0;" horiz-adv-x="1664" d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
+<glyph unicode="&#xf0d1;" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0d2;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf0d3;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
+<glyph unicode="&#xf0d4;" d="M829 318q0 -76 -58.5 -112.5t-139.5 -36.5q-41 0 -80.5 9.5t-75.5 28.5t-58 53t-22 78q0 46 25 80t65.5 51.5t82 25t84.5 7.5q20 0 31 -2q2 -1 23 -16.5t26 -19t23 -18t24.5 -22t19 -22.5t17 -26t9 -26.5t4.5 -31.5zM755 863q0 -60 -33 -99.5t-92 -39.5q-53 0 -93 42.5 t-57.5 96.5t-17.5 106q0 61 32 104t92 43q53 0 93.5 -45t58 -101t17.5 -107zM861 1120l88 64h-265q-85 0 -161 -32t-127.5 -98t-51.5 -153q0 -93 64.5 -154.5t158.5 -61.5q22 0 43 3q-13 -29 -13 -54q0 -44 40 -94q-175 -12 -257 -63q-47 -29 -75.5 -73t-28.5 -95 q0 -43 18.5 -77.5t48.5 -56.5t69 -37t77.5 -21t76.5 -6q60 0 120.5 15.5t113.5 46t86 82.5t33 117q0 49 -20 89.5t-49 66.5t-58 47.5t-49 44t-20 44.5t15.5 42.5t37.5 39.5t44 42t37.5 59.5t15.5 82.5q0 60 -22.5 99.5t-72.5 90.5h83zM1152 672h128v64h-128v128h-64v-128 h-128v-64h128v-160h64v160zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf0d5;" horiz-adv-x="1664" d="M735 740q0 -36 32 -70.5t77.5 -68t90.5 -73.5t77 -104t32 -142q0 -90 -48 -173q-72 -122 -211 -179.5t-298 -57.5q-132 0 -246.5 41.5t-171.5 137.5q-37 60 -37 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 42 -47.5 74t-15.5 73q0 36 21 85q-46 -4 -68 -4 q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q77 66 182.5 98t217.5 32h418l-138 -88h-131q74 -63 112 -133t38 -160q0 -72 -24.5 -129.5t-59 -93t-69.5 -65t-59.5 -61.5t-24.5 -66zM589 836q38 0 78 16.5t66 43.5q53 57 53 159q0 58 -17 125t-48.5 129.5 t-84.5 103.5t-117 41q-42 0 -82.5 -19.5t-65.5 -52.5q-47 -59 -47 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26zM591 -37q58 0 111.5 13t99 39t73 73t27.5 109q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -48 2 q-53 0 -105 -7t-107.5 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -70 35 -123.5t91.5 -83t119 -44t127.5 -14.5zM1401 839h213v-108h-213v-219h-105v219h-212v108h212v217h105v-217z" />
+<glyph unicode="&#xf0d6;" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0d7;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0d8;" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+<glyph unicode="&#xf0d9;" horiz-adv-x="640" d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
+<glyph unicode="&#xf0da;" horiz-adv-x="640" d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
+<glyph unicode="&#xf0db;" horiz-adv-x="1664" d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
+<glyph unicode="&#xf0dc;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+<glyph unicode="&#xf0dd;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0de;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+<glyph unicode="&#xf0e0;" horiz-adv-x="1792" d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
+<glyph unicode="&#xf0e1;" d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
+<glyph unicode="&#xf0e2;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
+<glyph unicode="&#xf0e3;" horiz-adv-x="1792" d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
+<glyph unicode="&#xf0e4;" horiz-adv-x="1792" d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+<glyph unicode="&#xf0e5;" horiz-adv-x="1792" d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
+<glyph unicode="&#xf0e6;" horiz-adv-x="1792" d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
+<glyph unicode="&#xf0e7;" horiz-adv-x="896" d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
+<glyph unicode="&#xf0e8;" horiz-adv-x="1792" d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 z" />
+<glyph unicode="&#xf0e9;" horiz-adv-x="1664" d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
+<glyph unicode="&#xf0ea;" horiz-adv-x="1792" d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
+<glyph unicode="&#xf0eb;" horiz-adv-x="1024" d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
+<glyph unicode="&#xf0ec;" horiz-adv-x="1792" d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
+<glyph unicode="&#xf0ed;" horiz-adv-x="1920" d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
+<glyph unicode="&#xf0ee;" horiz-adv-x="1920" d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
+<glyph unicode="&#xf0f0;" horiz-adv-x="1408" d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
+<glyph unicode="&#xf0f1;" horiz-adv-x="1408" d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
+<glyph unicode="&#xf0f2;" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 t66 -158z" />
+<glyph unicode="&#xf0f3;" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5 t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
+<glyph unicode="&#xf0f4;" horiz-adv-x="1920" d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
+<glyph unicode="&#xf0f5;" horiz-adv-x="1408" d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0f6;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704 q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" />
+<glyph unicode="&#xf0f7;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0f8;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0f9;" horiz-adv-x="1920" d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0fa;" horiz-adv-x="1792" d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
+<glyph unicode="&#xf0fb;" horiz-adv-x="1920" d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q261 -58 287 -93z" />
+<glyph unicode="&#xf0fc;" horiz-adv-x="1664" d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
+<glyph unicode="&#xf0fd;" d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf0fe;" d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf100;" horiz-adv-x="1024" d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
+<glyph unicode="&#xf101;" horiz-adv-x="1024" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+<glyph unicode="&#xf102;" horiz-adv-x="1152" d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+<glyph unicode="&#xf103;" horiz-adv-x="1152" d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+<glyph unicode="&#xf104;" horiz-adv-x="640" d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+<glyph unicode="&#xf105;" horiz-adv-x="640" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+<glyph unicode="&#xf106;" horiz-adv-x="1152" d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+<glyph unicode="&#xf107;" horiz-adv-x="1152" d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+<glyph unicode="&#xf108;" horiz-adv-x="1920" d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+<glyph unicode="&#xf109;" horiz-adv-x="1920" d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
+<glyph unicode="&#xf10a;" horiz-adv-x="1152" d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
+<glyph unicode="&#xf10b;" horiz-adv-x="768" d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
+<glyph unicode="&#xf10c;" d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf10d;" horiz-adv-x="1664" d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
+<glyph unicode="&#xf10e;" horiz-adv-x="1664" d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
+<glyph unicode="&#xf110;" horiz-adv-x="1568" d="M496 192q0 -60 -42.5 -102t-101.5 -42q-60 0 -102 42t-42 102t42 102t102 42q59 0 101.5 -42t42.5 -102zM928 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -66 -47 -113t-113 -47t-113 47t-47 113 t47 113t113 47t113 -47t47 -113zM1360 192q0 -46 -33 -79t-79 -33t-79 33t-33 79t33 79t79 33t79 -33t33 -79zM528 1088q0 -73 -51.5 -124.5t-124.5 -51.5t-124.5 51.5t-51.5 124.5t51.5 124.5t124.5 51.5t124.5 -51.5t51.5 -124.5zM992 1280q0 -80 -56 -136t-136 -56 t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1536 640q0 -40 -28 -68t-68 -28t-68 28t-28 68t28 68t68 28t68 -28t28 -68zM1328 1088q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5z" />
+<glyph unicode="&#xf111;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf112;" horiz-adv-x="1792" d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
+<glyph unicode="&#xf113;" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" />
+<glyph unicode="&#xf114;" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
+<glyph unicode="&#xf115;" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " />
+<glyph unicode="&#xf116;" horiz-adv-x="1792" />
+<glyph unicode="&#xf117;" horiz-adv-x="1792" />
+<glyph unicode="&#xf118;" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf119;" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf11a;" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf11b;" horiz-adv-x="1920" d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
+<glyph unicode="&#xf11c;" horiz-adv-x="1920" d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
+<glyph unicode="&#xf11d;" horiz-adv-x="1792" d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
+<glyph unicode="&#xf11e;" horiz-adv-x="1792" d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
+<glyph unicode="&#xf120;" horiz-adv-x="1664" d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 t9 -23z" />
+<glyph unicode="&#xf121;" horiz-adv-x="1920" d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
+<glyph unicode="&#xf122;" horiz-adv-x="1792" d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
+<glyph unicode="&#xf123;" horiz-adv-x="1664" d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
+<glyph unicode="&#xf124;" horiz-adv-x="1408" d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
+<glyph unicode="&#xf125;" horiz-adv-x="1664" d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf126;" horiz-adv-x="1024" d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 q-2 -287 -226 -414q-68 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
+<glyph unicode="&#xf127;" horiz-adv-x="1664" d="M439 265l-256 -256q-10 -9 -23 -9q-12 0 -23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
+<glyph unicode="&#xf128;" horiz-adv-x="1024" d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
+<glyph unicode="&#xf129;" horiz-adv-x="640" d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf12a;" horiz-adv-x="640" d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
+<glyph unicode="&#xf12b;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1534 846v-206h-514l-3 27 q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5t-65.5 -51.5t-30.5 -63h232v80 h126z" />
+<glyph unicode="&#xf12c;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1536 -50v-206h-514l-4 27 q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73h232v80h126z" />
+<glyph unicode="&#xf12d;" horiz-adv-x="1920" d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
+<glyph unicode="&#xf12e;" horiz-adv-x="1664" d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
+<glyph unicode="&#xf130;" horiz-adv-x="1152" d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
+<glyph unicode="&#xf131;" horiz-adv-x="1408" d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
+<glyph unicode="&#xf132;" horiz-adv-x="1280" d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf133;" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+<glyph unicode="&#xf134;" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
+<glyph unicode="&#xf135;" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
+<glyph unicode="&#xf136;" horiz-adv-x="1792" d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
+<glyph unicode="&#xf137;" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf138;" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf139;" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf13a;" d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf13b;" horiz-adv-x="1408" d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
+<glyph unicode="&#xf13c;" horiz-adv-x="1792" d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
+<glyph unicode="&#xf13d;" horiz-adv-x="1792" d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-13 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf13e;" horiz-adv-x="1152" d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 v-320h736z" />
+<glyph unicode="&#xf140;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf141;" horiz-adv-x="1408" d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf142;" horiz-adv-x="384" d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf143;" d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 232 -177 396t-396 177q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128q13 0 23 10 t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf144;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 q16 -8 32 -8q17 0 32 9z" />
+<glyph unicode="&#xf145;" horiz-adv-x="1792" d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
+<glyph unicode="&#xf146;" d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
+<glyph unicode="&#xf147;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf148;" horiz-adv-x="1024" d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
+<glyph unicode="&#xf149;" horiz-adv-x="1024" d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
+<glyph unicode="&#xf14a;" d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf14b;" d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf14c;" d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf14d;" d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q10 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf14e;" d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf150;" d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf151;" d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf152;" d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf153;" horiz-adv-x="1024" d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
+<glyph unicode="&#xf154;" horiz-adv-x="1024" d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
+<glyph unicode="&#xf155;" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" />
+<glyph unicode="&#xf156;" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf157;" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
+<glyph unicode="&#xf158;" horiz-adv-x="1280" d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
+<glyph unicode="&#xf159;" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf15a;" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
+<glyph unicode="&#xf15b;" d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" />
+<glyph unicode="&#xf15c;" d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" />
+<glyph unicode="&#xf15d;" horiz-adv-x="1664" d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 l230 -662h70z" />
+<glyph unicode="&#xf15e;" horiz-adv-x="1664" d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 v119h121z" />
+<glyph unicode="&#xf160;" horiz-adv-x="1792" d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf161;" horiz-adv-x="1792" d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf162;" d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
+<glyph unicode="&#xf163;" d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
+<glyph unicode="&#xf164;" horiz-adv-x="1664" d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
+<glyph unicode="&#xf165;" horiz-adv-x="1664" d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
+<glyph unicode="&#xf166;" d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 16 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 q21 -28 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78l24 -69t23 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38q-51 0 -78 -38 q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf167;" d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-37 -51 -106 -51q-67 0 -105 51 q-28 38 -28 118v175q0 80 28 117q38 51 105 51q69 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
+<glyph unicode="&#xf168;" horiz-adv-x="1408" d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 q25 45 64 45h241q22 0 31 -15z" />
+<glyph unicode="&#xf169;" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf16a;" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" />
+<glyph unicode="&#xf16b;" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
+<glyph unicode="&#xf16c;" horiz-adv-x="1408" d="M928 135v-151l-707 -1v151zM1169 481v-701l-1 -35v-1h-1132l-35 1h-1v736h121v-618h928v618h120zM241 393l704 -65l-13 -150l-705 65zM309 709l683 -183l-39 -146l-683 183zM472 1058l609 -360l-77 -130l-609 360zM832 1389l398 -585l-124 -85l-399 584zM1285 1536 l121 -697l-149 -26l-121 697z" />
+<glyph unicode="&#xf16d;" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" />
+<glyph unicode="&#xf16e;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
+<glyph unicode="&#xf170;" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf171;" horiz-adv-x="1408" d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
+<glyph unicode="&#xf172;" d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf173;" horiz-adv-x="1024" d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14 q78 2 134 29z" />
+<glyph unicode="&#xf174;" d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf175;" horiz-adv-x="768" d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
+<glyph unicode="&#xf176;" horiz-adv-x="768" d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
+<glyph unicode="&#xf177;" horiz-adv-x="1792" d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf178;" horiz-adv-x="1792" d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
+<glyph unicode="&#xf179;" horiz-adv-x="1408" d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q112 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
+<glyph unicode="&#xf17a;" horiz-adv-x="1664" d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
+<glyph unicode="&#xf17b;" horiz-adv-x="1408" d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
+<glyph unicode="&#xf17c;" d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-7 -10 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18l-4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-14 -1 -7 -7l4 -2 q14 -4 18 -31q0 -3 8 2zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5t-30 -18.5 t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43q-19 4 -51 9.5 t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49t-14 -48 q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54q110 143 124 195 q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5t-40.5 -33.5t-61 -14 q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5t15.5 47.5q1 -31 8 -56.5 t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
+<glyph unicode="&#xf17d;" d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -6 6.5 -17.5t7.5 -16.5q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf17e;" d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
+<glyph unicode="&#xf180;" horiz-adv-x="1280" d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324 l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" />
+<glyph unicode="&#xf181;" d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf182;" horiz-adv-x="1280" d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
+<glyph unicode="&#xf183;" horiz-adv-x="1024" d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
+<glyph unicode="&#xf184;" d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf185;" horiz-adv-x="1792" d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
+<glyph unicode="&#xf186;" d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
+<glyph unicode="&#xf187;" horiz-adv-x="1792" d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf188;" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
+<glyph unicode="&#xf189;" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" />
+<glyph unicode="&#xf18a;" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
+<glyph unicode="&#xf18b;" d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
+<glyph unicode="&#xf18c;" horiz-adv-x="1408" d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -5 1 -50.5t-1 -71.5q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
+<glyph unicode="&#xf18d;" horiz-adv-x="1280" d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z " />
+<glyph unicode="&#xf18e;" d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf190;" d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf191;" d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf192;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf193;" horiz-adv-x="1664" d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 16 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
+<glyph unicode="&#xf194;" d="M1254 899q16 85 -21 132q-52 65 -187 45q-17 -3 -41 -12.5t-57.5 -30.5t-64.5 -48.5t-59.5 -70t-44.5 -91.5q80 7 113.5 -16t26.5 -99q-5 -52 -52 -143q-43 -78 -71 -99q-44 -32 -87 14q-23 24 -37.5 64.5t-19 73t-10 84t-8.5 71.5q-23 129 -34 164q-12 37 -35.5 69 t-50.5 40q-57 16 -127 -25q-54 -32 -136.5 -106t-122.5 -102v-7q16 -8 25.5 -26t21.5 -20q21 -3 54.5 8.5t58 10.5t41.5 -30q11 -18 18.5 -38.5t15 -48t12.5 -40.5q17 -46 53 -187q36 -146 57 -197q42 -99 103 -125q43 -12 85 -1.5t76 31.5q131 77 250 237 q104 139 172.5 292.5t82.5 226.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf195;" horiz-adv-x="1152" d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf196;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832 q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf197;" horiz-adv-x="2176" d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40 t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29 q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" />
+<glyph unicode="&#xf198;" horiz-adv-x="1664" d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9 q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102 t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" />
+<glyph unicode="&#xf199;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69 q-46 32 -141.5 92.5t-142.5 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13 t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" />
+<glyph unicode="&#xf19a;" horiz-adv-x="1792" d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5 t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21 t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286 t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273 t273 -182.5t331.5 -68z" />
+<glyph unicode="&#xf19b;" horiz-adv-x="1792" d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" />
+<glyph unicode="&#xf19c;" horiz-adv-x="2048" d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64 q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
+<glyph unicode="&#xf19d;" horiz-adv-x="2304" d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433 q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
+<glyph unicode="&#xf19e;" d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q43 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0 q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
+<glyph unicode="&#xf1a0;" horiz-adv-x="1280" d="M981 197q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -49 2q-53 0 -104.5 -7t-107 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -56 23.5 -102t61 -75.5t87 -50t100 -29t101.5 -8.5q58 0 111.5 13t99 39t73 73t27.5 109zM864 1055 q0 59 -17 125.5t-48 129t-84 103.5t-117 41q-42 0 -82.5 -19.5t-66.5 -52.5q-46 -59 -46 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26q37 0 77.5 16.5t65.5 43.5q53 56 53 159zM752 1536h417l-137 -88h-132q75 -63 113 -133t38 -160q0 -72 -24.5 -129.5 t-59.5 -93t-69.5 -65t-59 -61.5t-24.5 -66q0 -36 32 -70.5t77 -68t90.5 -73.5t77.5 -104t32 -142q0 -91 -49 -173q-71 -122 -209.5 -179.5t-298.5 -57.5q-132 0 -246.5 41.5t-172.5 137.5q-36 59 -36 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 41 -47.5 73.5 t-15.5 73.5q0 40 21 85q-46 -4 -68 -4q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q76 66 182 98t218 32z" />
+<glyph unicode="&#xf1a1;" horiz-adv-x="1984" d="M831 572q0 -56 -40.5 -96t-96.5 -40q-57 0 -98 40t-41 96q0 57 41.5 98t97.5 41t96.5 -41t40.5 -98zM1292 711q56 0 96.5 -41t40.5 -98q0 -56 -40.5 -96t-96.5 -40q-57 0 -98 40t-41 96q0 57 41.5 98t97.5 41zM1984 722q0 -62 -31 -114t-83 -82q5 -33 5 -61 q0 -121 -68.5 -230.5t-197.5 -193.5q-125 -82 -285.5 -125.5t-335.5 -43.5q-176 0 -336.5 43.5t-284.5 125.5q-129 84 -197.5 193t-68.5 231q0 29 5 66q-48 31 -77 81.5t-29 109.5q0 94 66 160t160 66q83 0 148 -55q248 158 592 164l134 423q4 14 17.5 21.5t28.5 4.5 l347 -82q22 50 68.5 81t102.5 31q77 0 131.5 -54.5t54.5 -131.5t-54.5 -132t-131.5 -55q-76 0 -130.5 54t-55.5 131l-315 74l-116 -366q327 -14 560 -166q64 58 151 58q94 0 160 -66t66 -160zM1664 1459q-45 0 -77 -32t-32 -77t32 -77t77 -32t77 32t32 77t-32 77t-77 32z M77 722q0 -67 51 -111q49 131 180 235q-36 25 -82 25q-62 0 -105.5 -43.5t-43.5 -105.5zM1567 105q112 73 171.5 166t59.5 194t-59.5 193.5t-171.5 165.5q-116 75 -265.5 115.5t-313.5 40.5t-313.5 -40.5t-265.5 -115.5q-112 -73 -171.5 -165.5t-59.5 -193.5t59.5 -194 t171.5 -166q116 -75 265.5 -115.5t313.5 -40.5t313.5 40.5t265.5 115.5zM1850 605q57 46 57 117q0 62 -43.5 105.5t-105.5 43.5q-49 0 -86 -28q131 -105 178 -238zM1258 237q11 11 27 11t27 -11t11 -27.5t-11 -27.5q-99 -99 -319 -99h-2q-220 0 -319 99q-11 11 -11 27.5 t11 27.5t27 11t27 -11q77 -77 265 -77h2q188 0 265 77z" />
+<glyph unicode="&#xf1a2;" d="M950 393q7 7 17.5 7t17.5 -7t7 -18t-7 -18q-65 -64 -208 -64h-1h-1q-143 0 -207 64q-8 7 -8 18t8 18q7 7 17.5 7t17.5 -7q49 -51 172 -51h1h1q122 0 173 51zM671 613q0 -37 -26 -64t-63 -27t-63 27t-26 64t26 63t63 26t63 -26t26 -63zM1214 1049q-29 0 -50 21t-21 50 q0 30 21 51t50 21q30 0 51 -21t21 -51q0 -29 -21 -50t-51 -21zM1216 1408q132 0 226 -94t94 -227v-894q0 -133 -94 -227t-226 -94h-896q-132 0 -226 94t-94 227v894q0 133 94 227t226 94h896zM1321 596q35 14 57 45.5t22 70.5q0 51 -36 87.5t-87 36.5q-60 0 -98 -48 q-151 107 -375 115l83 265l206 -49q1 -50 36.5 -85t84.5 -35q50 0 86 35.5t36 85.5t-36 86t-86 36q-36 0 -66 -20.5t-45 -53.5l-227 54q-9 2 -17.5 -2.5t-11.5 -14.5l-95 -302q-224 -4 -381 -113q-36 43 -93 43q-51 0 -87 -36.5t-36 -87.5q0 -37 19.5 -67.5t52.5 -45.5 q-7 -25 -7 -54q0 -98 74 -181.5t201.5 -132t278.5 -48.5q150 0 277.5 48.5t201.5 132t74 181.5q0 27 -6 54zM971 702q37 0 63 -26t26 -63t-26 -64t-63 -27t-63 27t-26 64t26 63t63 26z" />
+<glyph unicode="&#xf1a3;" d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150 v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103 t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf1a4;" horiz-adv-x="1920" d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328 v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" />
+<glyph unicode="&#xf1a5;" d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
+<glyph unicode="&#xf1a6;" horiz-adv-x="2048" d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123 v-369h123z" />
+<glyph unicode="&#xf1a7;" d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101 v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf1a8;" horiz-adv-x="2038" d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14 q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24 q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33 q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5 t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43 q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5 t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13 t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" />
+<glyph unicode="&#xf1a9;" d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10 q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14 q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14 t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44 q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" />
+<glyph unicode="&#xf1aa;" d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5 t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5 q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126 t135.5 51q85 0 145 -60.5t60 -145.5z" />
+<glyph unicode="&#xf1ab;" d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5 q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28 q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11 q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q106 35 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5 q20 0 20 -21v-418z" />
+<glyph unicode="&#xf1ac;" horiz-adv-x="1792" d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48 l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23 t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128 q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128 q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" />
+<glyph unicode="&#xf1ad;" d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9 t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9 t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9 t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" />
+<glyph unicode="&#xf1ae;" horiz-adv-x="1280" d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68t68 28t68 -28l228 -228h368l228 228q28 28 68 28t68 -28t28 -68t-28 -68zM864 1152q0 -93 -65.5 -158.5 t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
+<glyph unicode="&#xf1b0;" horiz-adv-x="1664" d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5 q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819 q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5 t100.5 134t141.5 55.5z" />
+<glyph unicode="&#xf1b1;" horiz-adv-x="768" d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" />
+<glyph unicode="&#xf1b2;" horiz-adv-x="1792" d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z " />
+<glyph unicode="&#xf1b3;" horiz-adv-x="2304" d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67 t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-5 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70 v-400l434 -186q36 -16 57 -48t21 -70z" />
+<glyph unicode="&#xf1b4;" horiz-adv-x="2048" d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658 q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204 q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" />
+<glyph unicode="&#xf1b5;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5 t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217 t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" />
+<glyph unicode="&#xf1b6;" horiz-adv-x="1792" d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5 q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89 q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" />
+<glyph unicode="&#xf1b7;" d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5 q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5 q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z " />
+<glyph unicode="&#xf1b8;" horiz-adv-x="1792" d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188 l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5 t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1 q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" />
+<glyph unicode="&#xf1b9;" horiz-adv-x="2048" d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384 q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5 l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" />
+<glyph unicode="&#xf1ba;" horiz-adv-x="2048" d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5 t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" />
+<glyph unicode="&#xf1bb;" d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384 q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" />
+<glyph unicode="&#xf1bc;" d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64 q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37 q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf1bd;" d="M1397 1408q58 0 98.5 -40.5t40.5 -98.5v-1258q0 -58 -40.5 -98.5t-98.5 -40.5h-1258q-58 0 -98.5 40.5t-40.5 98.5v1258q0 58 40.5 98.5t98.5 40.5h1258zM1465 11v1258q0 28 -20 48t-48 20h-1258q-28 0 -48 -20t-20 -48v-1258q0 -28 20 -48t48 -20h1258q28 0 48 20t20 48 zM694 749l188 -387l533 145v-496q0 -7 -5.5 -12.5t-12.5 -5.5h-1258q-7 0 -12.5 5.5t-5.5 12.5v141l711 195l-212 439q4 1 12 2.5t12 1.5q170 32 303.5 21.5t221 -46t143.5 -94.5q27 -28 -25 -42q-64 -16 -256 -62l-97 198q-111 7 -240 -16zM1397 1287q7 0 12.5 -5.5 t5.5 -12.5v-428q-85 30 -188 52q-294 64 -645 12l-18 -3l-65 134h-233l85 -190q-132 -51 -230 -137v560q0 7 5.5 12.5t12.5 5.5h1258zM286 387q-14 -3 -26 4.5t-14 21.5q-24 203 166 305l129 -270z" />
+<glyph unicode="&#xf1be;" horiz-adv-x="2304" d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11 q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245 q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785 l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242 q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236q0 -11 -8 -19 t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786q-13 2 -22 11t-9 22v899 q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" />
+<glyph unicode="&#xf1c0;" d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127 t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5 t-103 128v128q0 69 103 128t280 93.5t385 34.5z" />
+<glyph unicode="&#xf1c1;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197 q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8 q-1 1 -1 2t-0.5 1.5t-0.5 1.5q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" />
+<glyph unicode="&#xf1c2;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4l-3 21q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5t-3.5 -21.5l-4 -21h-4l-2 21 q-2 26 -7 46l-99 438h90v107h-300z" />
+<glyph unicode="&#xf1c3;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107 h-290v-107h68l189 -272l-194 -283h-68z" />
+<glyph unicode="&#xf1c4;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" />
+<glyph unicode="&#xf1c5;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" />
+<glyph unicode="&#xf1c6;" d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400 v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79 q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" />
+<glyph unicode="&#xf1c7;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5 q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" />
+<glyph unicode="&#xf1c8;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" />
+<glyph unicode="&#xf1c9;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243 l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" />
+<glyph unicode="&#xf1ca;" d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406 q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" />
+<glyph unicode="&#xf1cb;" horiz-adv-x="1792" d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546 q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
+<glyph unicode="&#xf1cc;" horiz-adv-x="2048" d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94 q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55 t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97q14 -16 29.5 -34t34.5 -40t29 -34q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5 t-85 -189.5z" />
+<glyph unicode="&#xf1cd;" horiz-adv-x="1792" d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194 q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5 t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
+<glyph unicode="&#xf1ce;" horiz-adv-x="1792" d="M1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348q0 222 101 414.5t276.5 317t390.5 155.5v-260q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 q0 230 -145.5 406t-366.5 221v260q215 -31 390.5 -155.5t276.5 -317t101 -414.5z" />
+<glyph unicode="&#xf1d0;" horiz-adv-x="1792" d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41 t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170 t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136 q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
+<glyph unicode="&#xf1d1;" horiz-adv-x="1792" d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251 l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162 q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33 q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5 t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+<glyph unicode="&#xf1d2;" d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85 q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392 q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072 q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf1d3;" horiz-adv-x="1792" d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58 q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47 q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171 v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" />
+<glyph unicode="&#xf1d4;" d="M825 547l343 588h-150q-21 -39 -63.5 -118.5t-68 -128.5t-59.5 -118.5t-60 -128.5h-3q-21 48 -44.5 97t-52 105.5t-46.5 92t-54 104.5t-49 95h-150l323 -589v-435h134v436zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf1d5;" horiz-adv-x="1280" d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5 t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153 t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" />
+<glyph unicode="&#xf1d6;" horiz-adv-x="1792" d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5 q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20 t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5 t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" />
+<glyph unicode="&#xf1d7;" horiz-adv-x="2048" d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25 q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5 q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109 q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" />
+<glyph unicode="&#xf1d8;" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" />
+<glyph unicode="&#xf1d9;" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137 l863 639l-478 -797z" />
+<glyph unicode="&#xf1da;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23 t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf1db;" d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf1dc;" horiz-adv-x="1792" d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15 t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2 t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160 q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5 q0 -26 -12 -48t-36 -22z" />
+<glyph unicode="&#xf1dd;" horiz-adv-x="1280" d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179 q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" />
+<glyph unicode="&#xf1de;" d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256 q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" />
+<glyph unicode="&#xf1e0;" d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5 t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" />
+<glyph unicode="&#xf1e1;" d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5 t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf1e2;" horiz-adv-x="1792" d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5 t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91 q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9 t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
+<glyph unicode="&#xf1e3;" horiz-adv-x="1792" d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323 l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" />
+<glyph unicode="&#xf1e4;" horiz-adv-x="1792" d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23 zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5 t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" />
+<glyph unicode="&#xf1e5;" horiz-adv-x="1792" d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf1e6;" horiz-adv-x="1792" d="M1755 1083q37 -37 37 -90t-37 -91l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234l401 400 q38 37 91 37t90 -37z" />
+<glyph unicode="&#xf1e7;" horiz-adv-x="1792" d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5 t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q3 -2 11 -7 t11 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" />
+<glyph unicode="&#xf1e8;" horiz-adv-x="1792" d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" />
+<glyph unicode="&#xf1e9;" d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36 q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q70 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5 t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87 q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" />
+<glyph unicode="&#xf1ea;" horiz-adv-x="2048" d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19 t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" />
+<glyph unicode="&#xf1eb;" horiz-adv-x="2048" d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121 q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
+<glyph unicode="&#xf1ec;" horiz-adv-x="1792" d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5 t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38 h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
+<glyph unicode="&#xf1ed;" horiz-adv-x="1792" d="M1112 1090q0 159 -237 159h-70q-32 0 -59.5 -21.5t-34.5 -52.5l-63 -276q-2 -5 -2 -16q0 -24 17 -39.5t41 -15.5h53q69 0 128.5 13t112.5 41t83.5 81.5t30.5 126.5zM1716 938q0 -265 -220 -428q-219 -161 -612 -161h-61q-32 0 -59 -21.5t-34 -52.5l-73 -316 q-8 -36 -40.5 -61.5t-69.5 -25.5h-213q-31 0 -53 20t-22 51q0 10 13 65h151q34 0 64 23.5t38 56.5l73 316q8 33 37.5 57t63.5 24h61q390 0 607 160t217 421q0 129 -51 207q183 -92 183 -335zM1533 1123q0 -264 -221 -428q-218 -161 -612 -161h-60q-32 0 -59.5 -22t-34.5 -53 l-73 -315q-8 -36 -40 -61.5t-69 -25.5h-214q-31 0 -52.5 19.5t-21.5 51.5q0 8 2 20l300 1301q8 36 40.5 61.5t69.5 25.5h444q68 0 125 -4t120.5 -15t113.5 -30t96.5 -50.5t77.5 -74t49.5 -103.5t18.5 -136z" />
+<glyph unicode="&#xf1ee;" horiz-adv-x="1792" d="M602 949q19 -61 31 -123.5t17 -141.5t-14 -159t-62 -145q-21 81 -67 157t-95.5 127t-99 90.5t-78.5 57.5t-33 19q-62 34 -81.5 100t14.5 128t101 81.5t129 -14.5q138 -83 238 -177zM927 1236q11 -25 20.5 -46t36.5 -100.5t42.5 -150.5t25.5 -179.5t0 -205.5t-47.5 -209.5 t-105.5 -208.5q-51 -72 -138 -72q-54 0 -98 31q-57 40 -69 109t28 127q60 85 81 195t13 199.5t-32 180.5t-39 128t-22 52q-31 63 -8.5 129.5t85.5 97.5q34 17 75 17q47 0 88.5 -25t63.5 -69zM1248 567q-17 -160 -72 -311q-17 131 -63 246q25 174 -5 361q-27 178 -94 342 q114 -90 212 -211q9 -37 15 -80q26 -179 7 -347zM1520 1440q9 -17 23.5 -49.5t43.5 -117.5t50.5 -178t34 -227.5t5 -269t-47 -300t-112.5 -323.5q-22 -48 -66 -75.5t-95 -27.5q-39 0 -74 16q-67 31 -92.5 100t4.5 136q58 126 90 257.5t37.5 239.5t-3.5 213.5t-26.5 180.5 t-38.5 138.5t-32.5 90t-15.5 32.5q-34 65 -11.5 135.5t87.5 104.5q37 20 81 20q49 0 91.5 -25.5t66.5 -70.5z" />
+<glyph unicode="&#xf1f0;" horiz-adv-x="2304" d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27 q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128 q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+<glyph unicode="&#xf1f1;" horiz-adv-x="2304" d="M671 603h-13q-47 0 -47 -32q0 -22 20 -22q17 0 28 15t12 39zM1066 639h62v3q1 4 0.5 6.5t-1 7t-2 8t-4.5 6.5t-7.5 5t-11.5 2q-28 0 -36 -38zM1606 603h-12q-48 0 -48 -32q0 -22 20 -22q17 0 28 15t12 39zM1925 629q0 41 -30 41q-19 0 -31 -20t-12 -51q0 -42 28 -42 q20 0 32.5 20t12.5 52zM480 770h87l-44 -262h-56l32 201l-71 -201h-39l-4 200l-34 -200h-53l44 262h81l2 -163zM733 663q0 -6 -4 -42q-16 -101 -17 -113h-47l1 22q-20 -26 -58 -26q-23 0 -37.5 16t-14.5 42q0 39 26 60.5t73 21.5q14 0 23 -1q0 3 0.5 5.5t1 4.5t0.5 3 q0 20 -36 20q-29 0 -59 -10q0 4 7 48q38 11 67 11q74 0 74 -62zM889 721l-8 -49q-22 3 -41 3q-27 0 -27 -17q0 -8 4.5 -12t21.5 -11q40 -19 40 -60q0 -72 -87 -71q-34 0 -58 6q0 2 7 49q29 -8 51 -8q32 0 32 19q0 7 -4.5 11.5t-21.5 12.5q-43 20 -43 59q0 72 84 72 q30 0 50 -4zM977 721h28l-7 -52h-29q-2 -17 -6.5 -40.5t-7 -38.5t-2.5 -18q0 -16 19 -16q8 0 16 2l-8 -47q-21 -7 -40 -7q-43 0 -45 47q0 12 8 56q3 20 25 146h55zM1180 648q0 -23 -7 -52h-111q-3 -22 10 -33t38 -11q30 0 58 14l-9 -54q-30 -8 -57 -8q-95 0 -95 95 q0 55 27.5 90.5t69.5 35.5q35 0 55.5 -21t20.5 -56zM1319 722q-13 -23 -22 -62q-22 2 -31 -24t-25 -128h-56l3 14q22 130 29 199h51l-3 -33q14 21 25.5 29.5t28.5 4.5zM1506 763l-9 -57q-28 14 -50 14q-31 0 -51 -27.5t-20 -70.5q0 -30 13.5 -47t38.5 -17q21 0 48 13 l-10 -59q-28 -8 -50 -8q-45 0 -71.5 30.5t-26.5 82.5q0 70 35.5 114.5t91.5 44.5q26 0 61 -13zM1668 663q0 -18 -4 -42q-13 -79 -17 -113h-46l1 22q-20 -26 -59 -26q-23 0 -37 16t-14 42q0 39 25.5 60.5t72.5 21.5q15 0 23 -1q2 7 2 13q0 20 -36 20q-29 0 -59 -10q0 4 8 48 q38 11 67 11q73 0 73 -62zM1809 722q-14 -24 -21 -62q-23 2 -31.5 -23t-25.5 -129h-56l3 14q19 104 29 199h52q0 -11 -4 -33q15 21 26.5 29.5t27.5 4.5zM1950 770h56l-43 -262h-53l3 19q-23 -23 -52 -23q-31 0 -49.5 24t-18.5 64q0 53 27.5 92t64.5 39q31 0 53 -29z M2061 640q0 148 -72.5 273t-198 198t-273.5 73q-181 0 -328 -110q127 -116 171 -284h-50q-44 150 -158 253q-114 -103 -158 -253h-50q44 168 171 284q-147 110 -328 110q-148 0 -273.5 -73t-198 -198t-72.5 -273t72.5 -273t198 -198t273.5 -73q181 0 328 110 q-120 111 -165 264h50q46 -138 152 -233q106 95 152 233h50q-45 -153 -165 -264q147 -110 328 -110q148 0 273.5 73t198 198t72.5 273zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+<glyph unicode="&#xf1f2;" horiz-adv-x="2304" d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42 q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604 v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569 q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73 t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
+<glyph unicode="&#xf1f3;" horiz-adv-x="2304" d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260 l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279 v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040 q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168 q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5 t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21 h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5 t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" />
+<glyph unicode="&#xf1f4;" horiz-adv-x="2304" d="M322 689h-15q-19 0 -19 18q0 28 19 85q5 15 15 19.5t28 4.5q77 0 77 -49q0 -41 -30.5 -59.5t-74.5 -18.5zM664 528q-47 0 -47 29q0 62 123 62l3 -3q-5 -88 -79 -88zM1438 687h-15q-19 0 -19 19q0 28 19 85q5 15 14.5 19t28.5 4q77 0 77 -49q0 -41 -30.5 -59.5 t-74.5 -18.5zM1780 527q-47 0 -47 30q0 62 123 62l3 -3q-5 -89 -79 -89zM373 894h-128q-8 0 -14.5 -4t-8.5 -7.5t-7 -12.5q-3 -7 -45 -190t-42 -192q0 -7 5.5 -12.5t13.5 -5.5h62q25 0 32.5 34.5l15 69t32.5 34.5q47 0 87.5 7.5t80.5 24.5t63.5 52.5t23.5 84.5 q0 36 -14.5 61t-41 36.5t-53.5 15.5t-62 4zM719 798q-38 0 -74 -6q-2 0 -8.5 -1t-9 -1.5l-7.5 -1.5t-7.5 -2t-6.5 -3t-6.5 -4t-5 -5t-4.5 -7t-4 -9q-9 -29 -9 -39t9 -10q5 0 21.5 5t19.5 6q30 8 58 8q74 0 74 -36q0 -11 -10 -14q-8 -2 -18 -3t-21.5 -1.5t-17.5 -1.5 q-38 -4 -64.5 -10t-56.5 -19.5t-45.5 -39t-15.5 -62.5q0 -38 26 -59.5t64 -21.5q24 0 45.5 6.5t33 13t38.5 23.5q-3 -7 -3 -15t5.5 -13.5t12.5 -5.5h56q1 1 7 3.5t7.5 3.5t5 3.5t5 5.5t2.5 8l45 194q4 13 4 30q0 81 -145 81zM1247 793h-74q-22 0 -39 -23q-5 -7 -29.5 -51 t-46.5 -81.5t-26 -38.5l-5 4q0 77 -27 166q-1 5 -3.5 8.5t-6 6.5t-6.5 5t-8.5 3t-8.5 1.5t-9.5 1t-9 0.5h-10h-8.5q-38 0 -38 -21l1 -5q5 -53 25 -151t25 -143q2 -16 2 -24q0 -19 -30.5 -61.5t-30.5 -58.5q0 -13 40 -13q61 0 76 25l245 415q10 20 10 26q0 9 -8 9zM1489 892 h-129q-18 0 -29 -23q-6 -13 -46.5 -191.5t-40.5 -190.5q0 -20 43 -20h7.5h9h9t9.5 1t8.5 2t8.5 3t6.5 4.5t5.5 6t3 8.5l21 91q2 10 10.5 17t19.5 7q47 0 87.5 7t80.5 24.5t63.5 52.5t23.5 84q0 36 -14.5 61t-41 36.5t-53.5 15.5t-62 4zM1835 798q-26 0 -74 -6 q-38 -6 -48 -16q-7 -8 -11 -19q-8 -24 -8 -39q0 -10 8 -10q1 0 41 12q30 8 58 8q74 0 74 -36q0 -12 -10 -14q-4 -1 -57 -7q-38 -4 -64.5 -10t-56.5 -19.5t-45.5 -39t-15.5 -62.5t26 -58.5t64 -21.5q24 0 45 6t34 13t38 24q-3 -15 -3 -16q0 -5 2 -8.5t6.5 -5.5t8 -3.5 t10.5 -2t9.5 -0.5h9.5h8q42 0 48 25l45 194q3 15 3 31q0 81 -145 81zM2157 889h-55q-25 0 -33 -40q-10 -44 -36.5 -167t-42.5 -190v-5q0 -16 16 -18h1h57q10 0 18.5 6.5t10.5 16.5l83 374h-1l1 5q0 7 -5.5 12.5t-13.5 5.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048 q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+<glyph unicode="&#xf1f5;" horiz-adv-x="2304" d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109 q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118 q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151 q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31 q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+<glyph unicode="&#xf1f6;" horiz-adv-x="2048" d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5 l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5 l418 363q10 8 23.5 7t21.5 -11z" />
+<glyph unicode="&#xf1f7;" horiz-adv-x="2048" d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128 q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161 q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" />
+<glyph unicode="&#xf1f8;" horiz-adv-x="1408" d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704 q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167 q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf1f9;" d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5 t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf1fa;" d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53 q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24 t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61 t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" />
+<glyph unicode="&#xf1fb;" horiz-adv-x="1792" d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10 t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" />
+<glyph unicode="&#xf1fc;" horiz-adv-x="1792" d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5 t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" />
+<glyph unicode="&#xf1fd;" horiz-adv-x="1792" d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11t55.5 -11t52.5 -38q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5t47 37.5 q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-35 0 -55.5 11t-52.5 38q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38t-58 27 t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448h256v448 h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51 t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" />
+<glyph unicode="&#xf1fe;" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" />
+<glyph unicode="&#xf200;" horiz-adv-x="1792" d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf201;" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9 t9 -23z" />
+<glyph unicode="&#xf202;" horiz-adv-x="1792" d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20 q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50 t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1 q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" />
+<glyph unicode="&#xf203;" d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73 q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110 q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf204;" horiz-adv-x="2048" d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5 t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5 t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" />
+<glyph unicode="&#xf205;" horiz-adv-x="2048" d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5 t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
+<glyph unicode="&#xf206;" horiz-adv-x="2304" d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94 q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469 q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400 q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" />
+<glyph unicode="&#xf207;" d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5 h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" />
+<glyph unicode="&#xf208;" horiz-adv-x="2048" d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327 q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5 q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" />
+<glyph unicode="&#xf209;" horiz-adv-x="1280" d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q18 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119 t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5 t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14 q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88 q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5 t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" />
+<glyph unicode="&#xf20a;" horiz-adv-x="2048" d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206 q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307 t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14 t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" />
+<glyph unicode="&#xf20b;" d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5 t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf20c;" d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55 q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410 q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" />
+<glyph unicode="&#xf20d;" horiz-adv-x="1792" />
+<glyph unicode="&#xf20e;" horiz-adv-x="1792" />
+<glyph unicode="&#xf500;" horiz-adv-x="1792" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/fonts/fontawesome-webfont.ttf b/fonts/fontawesome-webfont.ttf
new file mode 100644
index 0000000000000000000000000000000000000000..96a3639cdde5e8ab459c6380e3b9524ee81641dc
Binary files /dev/null and b/fonts/fontawesome-webfont.ttf differ
diff --git a/fonts/fontawesome-webfont.woff b/fonts/fontawesome-webfont.woff
new file mode 100644
index 0000000000000000000000000000000000000000..628b6a52a87e62c6f22426e17c01f6a303aa194e
Binary files /dev/null and b/fonts/fontawesome-webfont.woff differ
diff --git a/fonts/glyphicons-halflings-regular.eot b/fonts/glyphicons-halflings-regular.eot
new file mode 100644
index 0000000000000000000000000000000000000000..b93a4953fff68df523aa7656497ee339d6026d64
Binary files /dev/null and b/fonts/glyphicons-halflings-regular.eot differ
diff --git a/fonts/glyphicons-halflings-regular.svg b/fonts/glyphicons-halflings-regular.svg
new file mode 100644
index 0000000000000000000000000000000000000000..94fb5490a2ed10b2c69a4a567a4fd2e4f706d841
--- /dev/null
+++ b/fonts/glyphicons-halflings-regular.svg
@@ -0,0 +1,288 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="glyphicons_halflingsregular" horiz-adv-x="1200" >
+<font-face units-per-em="1200" ascent="960" descent="-240" />
+<missing-glyph horiz-adv-x="500" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="400" />
+<glyph unicode=" " />
+<glyph unicode="*" d="M600 1100q15 0 34 -1.5t30 -3.5l11 -1q10 -2 17.5 -10.5t7.5 -18.5v-224l158 158q7 7 18 8t19 -6l106 -106q7 -8 6 -19t-8 -18l-158 -158h224q10 0 18.5 -7.5t10.5 -17.5q6 -41 6 -75q0 -15 -1.5 -34t-3.5 -30l-1 -11q-2 -10 -10.5 -17.5t-18.5 -7.5h-224l158 -158 q7 -7 8 -18t-6 -19l-106 -106q-8 -7 -19 -6t-18 8l-158 158v-224q0 -10 -7.5 -18.5t-17.5 -10.5q-41 -6 -75 -6q-15 0 -34 1.5t-30 3.5l-11 1q-10 2 -17.5 10.5t-7.5 18.5v224l-158 -158q-7 -7 -18 -8t-19 6l-106 106q-7 8 -6 19t8 18l158 158h-224q-10 0 -18.5 7.5 t-10.5 17.5q-6 41 -6 75q0 15 1.5 34t3.5 30l1 11q2 10 10.5 17.5t18.5 7.5h224l-158 158q-7 7 -8 18t6 19l106 106q8 7 19 6t18 -8l158 -158v224q0 10 7.5 18.5t17.5 10.5q41 6 75 6z" />
+<glyph unicode="+" d="M450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-350h350q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-350v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v350h-350q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5 h350v350q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xa0;" />
+<glyph unicode="&#xa5;" d="M825 1100h250q10 0 12.5 -5t-5.5 -13l-364 -364q-6 -6 -11 -18h268q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-100h275q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-174q0 -11 -7.5 -18.5t-18.5 -7.5h-148q-11 0 -18.5 7.5t-7.5 18.5v174 h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h125v100h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h118q-5 12 -11 18l-364 364q-8 8 -5.5 13t12.5 5h250q25 0 43 -18l164 -164q8 -8 18 -8t18 8l164 164q18 18 43 18z" />
+<glyph unicode="&#x2000;" horiz-adv-x="650" />
+<glyph unicode="&#x2001;" horiz-adv-x="1300" />
+<glyph unicode="&#x2002;" horiz-adv-x="650" />
+<glyph unicode="&#x2003;" horiz-adv-x="1300" />
+<glyph unicode="&#x2004;" horiz-adv-x="433" />
+<glyph unicode="&#x2005;" horiz-adv-x="325" />
+<glyph unicode="&#x2006;" horiz-adv-x="216" />
+<glyph unicode="&#x2007;" horiz-adv-x="216" />
+<glyph unicode="&#x2008;" horiz-adv-x="162" />
+<glyph unicode="&#x2009;" horiz-adv-x="260" />
+<glyph unicode="&#x200a;" horiz-adv-x="72" />
+<glyph unicode="&#x202f;" horiz-adv-x="260" />
+<glyph unicode="&#x205f;" horiz-adv-x="325" />
+<glyph unicode="&#x20ac;" d="M744 1198q242 0 354 -189q60 -104 66 -209h-181q0 45 -17.5 82.5t-43.5 61.5t-58 40.5t-60.5 24t-51.5 7.5q-19 0 -40.5 -5.5t-49.5 -20.5t-53 -38t-49 -62.5t-39 -89.5h379l-100 -100h-300q-6 -50 -6 -100h406l-100 -100h-300q9 -74 33 -132t52.5 -91t61.5 -54.5t59 -29 t47 -7.5q22 0 50.5 7.5t60.5 24.5t58 41t43.5 61t17.5 80h174q-30 -171 -128 -278q-107 -117 -274 -117q-206 0 -324 158q-36 48 -69 133t-45 204h-217l100 100h112q1 47 6 100h-218l100 100h134q20 87 51 153.5t62 103.5q117 141 297 141z" />
+<glyph unicode="&#x20bd;" d="M428 1200h350q67 0 120 -13t86 -31t57 -49.5t35 -56.5t17 -64.5t6.5 -60.5t0.5 -57v-16.5v-16.5q0 -36 -0.5 -57t-6.5 -61t-17 -65t-35 -57t-57 -50.5t-86 -31.5t-120 -13h-178l-2 -100h288q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-138v-175q0 -11 -5.5 -18 t-15.5 -7h-149q-10 0 -17.5 7.5t-7.5 17.5v175h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v100h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v475q0 10 7.5 17.5t17.5 7.5zM600 1000v-300h203q64 0 86.5 33t22.5 119q0 84 -22.5 116t-86.5 32h-203z" />
+<glyph unicode="&#x2212;" d="M250 700h800q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#x231b;" d="M1000 1200v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-50v-100q0 -91 -49.5 -165.5t-130.5 -109.5q81 -35 130.5 -109.5t49.5 -165.5v-150h50q21 0 35.5 -14.5t14.5 -35.5v-150h-800v150q0 21 14.5 35.5t35.5 14.5h50v150q0 91 49.5 165.5t130.5 109.5q-81 35 -130.5 109.5 t-49.5 165.5v100h-50q-21 0 -35.5 14.5t-14.5 35.5v150h800zM400 1000v-100q0 -60 32.5 -109.5t87.5 -73.5q28 -12 44 -37t16 -55t-16 -55t-44 -37q-55 -24 -87.5 -73.5t-32.5 -109.5v-150h400v150q0 60 -32.5 109.5t-87.5 73.5q-28 12 -44 37t-16 55t16 55t44 37 q55 24 87.5 73.5t32.5 109.5v100h-400z" />
+<glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
+<glyph unicode="&#x2601;" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -206.5q0 -121 -85 -207.5t-205 -86.5h-750q-79 0 -135.5 57t-56.5 137q0 69 42.5 122.5t108.5 67.5q-2 12 -2 37q0 153 108 260.5t260 107.5z" />
+<glyph unicode="&#x26fa;" d="M774 1193.5q16 -9.5 20.5 -27t-5.5 -33.5l-136 -187l467 -746h30q20 0 35 -18.5t15 -39.5v-42h-1200v42q0 21 15 39.5t35 18.5h30l468 746l-135 183q-10 16 -5.5 34t20.5 28t34 5.5t28 -20.5l111 -148l112 150q9 16 27 20.5t34 -5zM600 200h377l-182 112l-195 534v-646z " />
+<glyph unicode="&#x2709;" d="M25 1100h1150q10 0 12.5 -5t-5.5 -13l-564 -567q-8 -8 -18 -8t-18 8l-564 567q-8 8 -5.5 13t12.5 5zM18 882l264 -264q8 -8 8 -18t-8 -18l-264 -264q-8 -8 -13 -5.5t-5 12.5v550q0 10 5 12.5t13 -5.5zM918 618l264 264q8 8 13 5.5t5 -12.5v-550q0 -10 -5 -12.5t-13 5.5 l-264 264q-8 8 -8 18t8 18zM818 482l364 -364q8 -8 5.5 -13t-12.5 -5h-1150q-10 0 -12.5 5t5.5 13l364 364q8 8 18 8t18 -8l164 -164q8 -8 18 -8t18 8l164 164q8 8 18 8t18 -8z" />
+<glyph unicode="&#x270f;" d="M1011 1210q19 0 33 -13l153 -153q13 -14 13 -33t-13 -33l-99 -92l-214 214l95 96q13 14 32 14zM1013 800l-615 -614l-214 214l614 614zM317 96l-333 -112l110 335z" />
+<glyph unicode="&#xe001;" d="M700 650v-550h250q21 0 35.5 -14.5t14.5 -35.5v-50h-800v50q0 21 14.5 35.5t35.5 14.5h250v550l-500 550h1200z" />
+<glyph unicode="&#xe002;" d="M368 1017l645 163q39 15 63 0t24 -49v-831q0 -55 -41.5 -95.5t-111.5 -63.5q-79 -25 -147 -4.5t-86 75t25.5 111.5t122.5 82q72 24 138 8v521l-600 -155v-606q0 -42 -44 -90t-109 -69q-79 -26 -147 -5.5t-86 75.5t25.5 111.5t122.5 82.5q72 24 138 7v639q0 38 14.5 59 t53.5 34z" />
+<glyph unicode="&#xe003;" d="M500 1191q100 0 191 -39t156.5 -104.5t104.5 -156.5t39 -191l-1 -2l1 -5q0 -141 -78 -262l275 -274q23 -26 22.5 -44.5t-22.5 -42.5l-59 -58q-26 -20 -46.5 -20t-39.5 20l-275 274q-119 -77 -261 -77l-5 1l-2 -1q-100 0 -191 39t-156.5 104.5t-104.5 156.5t-39 191 t39 191t104.5 156.5t156.5 104.5t191 39zM500 1022q-88 0 -162 -43t-117 -117t-43 -162t43 -162t117 -117t162 -43t162 43t117 117t43 162t-43 162t-117 117t-162 43z" />
+<glyph unicode="&#xe005;" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104z" />
+<glyph unicode="&#xe006;" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429z" />
+<glyph unicode="&#xe007;" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429zM477 700h-240l197 -142l-74 -226 l193 139l195 -140l-74 229l192 140h-234l-78 211z" />
+<glyph unicode="&#xe008;" d="M600 1200q124 0 212 -88t88 -212v-250q0 -46 -31 -98t-69 -52v-75q0 -10 6 -21.5t15 -17.5l358 -230q9 -5 15 -16.5t6 -21.5v-93q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v93q0 10 6 21.5t15 16.5l358 230q9 6 15 17.5t6 21.5v75q-38 0 -69 52 t-31 98v250q0 124 88 212t212 88z" />
+<glyph unicode="&#xe009;" d="M25 1100h1150q10 0 17.5 -7.5t7.5 -17.5v-1050q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v1050q0 10 7.5 17.5t17.5 7.5zM100 1000v-100h100v100h-100zM875 1000h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5t17.5 -7.5h550 q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM1000 1000v-100h100v100h-100zM100 800v-100h100v100h-100zM1000 800v-100h100v100h-100zM100 600v-100h100v100h-100zM1000 600v-100h100v100h-100zM875 500h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5 t17.5 -7.5h550q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM100 400v-100h100v100h-100zM1000 400v-100h100v100h-100zM100 200v-100h100v100h-100zM1000 200v-100h100v100h-100z" />
+<glyph unicode="&#xe010;" d="M50 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM50 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe011;" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM850 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 700h200q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5 t35.5 14.5z" />
+<glyph unicode="&#xe012;" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h700q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe013;" d="M465 477l571 571q8 8 18 8t17 -8l177 -177q8 -7 8 -17t-8 -18l-783 -784q-7 -8 -17.5 -8t-17.5 8l-384 384q-8 8 -8 18t8 17l177 177q7 8 17 8t18 -8l171 -171q7 -7 18 -7t18 7z" />
+<glyph unicode="&#xe014;" d="M904 1083l178 -179q8 -8 8 -18.5t-8 -17.5l-267 -268l267 -268q8 -7 8 -17.5t-8 -18.5l-178 -178q-8 -8 -18.5 -8t-17.5 8l-268 267l-268 -267q-7 -8 -17.5 -8t-18.5 8l-178 178q-8 8 -8 18.5t8 17.5l267 268l-267 268q-8 7 -8 17.5t8 18.5l178 178q8 8 18.5 8t17.5 -8 l268 -267l268 268q7 7 17.5 7t18.5 -7z" />
+<glyph unicode="&#xe015;" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM425 900h150q10 0 17.5 -7.5t7.5 -17.5v-75h75q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5 t-17.5 -7.5h-75v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-75q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v75q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe016;" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM325 800h350q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-350q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe017;" d="M550 1200h100q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM800 975v166q167 -62 272 -209.5t105 -331.5q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5 t-184.5 123t-123 184.5t-45.5 224q0 184 105 331.5t272 209.5v-166q-103 -55 -165 -155t-62 -220q0 -116 57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5q0 120 -62 220t-165 155z" />
+<glyph unicode="&#xe018;" d="M1025 1200h150q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM725 800h150q10 0 17.5 -7.5t7.5 -17.5v-750q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v750 q0 10 7.5 17.5t17.5 7.5zM425 500h150q10 0 17.5 -7.5t7.5 -17.5v-450q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v450q0 10 7.5 17.5t17.5 7.5zM125 300h150q10 0 17.5 -7.5t7.5 -17.5v-250q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5 v250q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe019;" d="M600 1174q33 0 74 -5l38 -152l5 -1q49 -14 94 -39l5 -2l134 80q61 -48 104 -105l-80 -134l3 -5q25 -44 39 -93l1 -6l152 -38q5 -43 5 -73q0 -34 -5 -74l-152 -38l-1 -6q-15 -49 -39 -93l-3 -5l80 -134q-48 -61 -104 -105l-134 81l-5 -3q-44 -25 -94 -39l-5 -2l-38 -151 q-43 -5 -74 -5q-33 0 -74 5l-38 151l-5 2q-49 14 -94 39l-5 3l-134 -81q-60 48 -104 105l80 134l-3 5q-25 45 -38 93l-2 6l-151 38q-6 42 -6 74q0 33 6 73l151 38l2 6q13 48 38 93l3 5l-80 134q47 61 105 105l133 -80l5 2q45 25 94 39l5 1l38 152q43 5 74 5zM600 815 q-89 0 -152 -63t-63 -151.5t63 -151.5t152 -63t152 63t63 151.5t-63 151.5t-152 63z" />
+<glyph unicode="&#xe020;" d="M500 1300h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-75h-1100v75q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5zM500 1200v-100h300v100h-300zM1100 900v-800q0 -41 -29.5 -70.5t-70.5 -29.5h-700q-41 0 -70.5 29.5t-29.5 70.5 v800h900zM300 800v-700h100v700h-100zM500 800v-700h100v700h-100zM700 800v-700h100v700h-100zM900 800v-700h100v700h-100z" />
+<glyph unicode="&#xe021;" d="M18 618l620 608q8 7 18.5 7t17.5 -7l608 -608q8 -8 5.5 -13t-12.5 -5h-175v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v375h-300v-375q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v575h-175q-10 0 -12.5 5t5.5 13z" />
+<glyph unicode="&#xe022;" d="M600 1200v-400q0 -41 29.5 -70.5t70.5 -29.5h300v-650q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5h450zM1000 800h-250q-21 0 -35.5 14.5t-14.5 35.5v250z" />
+<glyph unicode="&#xe023;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h50q10 0 17.5 -7.5t7.5 -17.5v-275h175q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe024;" d="M1300 0h-538l-41 400h-242l-41 -400h-538l431 1200h209l-21 -300h162l-20 300h208zM515 800l-27 -300h224l-27 300h-170z" />
+<glyph unicode="&#xe025;" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-450h191q20 0 25.5 -11.5t-7.5 -27.5l-327 -400q-13 -16 -32 -16t-32 16l-327 400q-13 16 -7.5 27.5t25.5 11.5h191v450q0 21 14.5 35.5t35.5 14.5zM1125 400h50q10 0 17.5 -7.5t7.5 -17.5v-350q0 -10 -7.5 -17.5t-17.5 -7.5 h-1050q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h50q10 0 17.5 -7.5t7.5 -17.5v-175h900v175q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe026;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -275q-13 -16 -32 -16t-32 16l-223 275q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z " />
+<glyph unicode="&#xe027;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM632 914l223 -275q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5l223 275q13 16 32 16 t32 -16z" />
+<glyph unicode="&#xe028;" d="M225 1200h750q10 0 19.5 -7t12.5 -17l186 -652q7 -24 7 -49v-425q0 -12 -4 -27t-9 -17q-12 -6 -37 -6h-1100q-12 0 -27 4t-17 8q-6 13 -6 38l1 425q0 25 7 49l185 652q3 10 12.5 17t19.5 7zM878 1000h-556q-10 0 -19 -7t-11 -18l-87 -450q-2 -11 4 -18t16 -7h150 q10 0 19.5 -7t11.5 -17l38 -152q2 -10 11.5 -17t19.5 -7h250q10 0 19.5 7t11.5 17l38 152q2 10 11.5 17t19.5 7h150q10 0 16 7t4 18l-87 450q-2 11 -11 18t-19 7z" />
+<glyph unicode="&#xe029;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM540 820l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
+<glyph unicode="&#xe030;" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-362q0 -10 -7.5 -17.5t-17.5 -7.5h-362q-11 0 -13 5.5t5 12.5l133 133q-109 76 -238 76q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5h150q0 -117 -45.5 -224 t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117z" />
+<glyph unicode="&#xe031;" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-361q0 -11 -7.5 -18.5t-18.5 -7.5h-361q-11 0 -13 5.5t5 12.5l134 134q-110 75 -239 75q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5h-150q0 117 45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117zM1027 600h150 q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5q-192 0 -348 118l-134 -134q-7 -8 -12.5 -5.5t-5.5 12.5v360q0 11 7.5 18.5t18.5 7.5h360q10 0 12.5 -5.5t-5.5 -12.5l-133 -133q110 -76 240 -76q116 0 214.5 57t155.5 155.5t57 214.5z" />
+<glyph unicode="&#xe032;" d="M125 1200h1050q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-1050q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM1075 1000h-850q-10 0 -17.5 -7.5t-7.5 -17.5v-850q0 -10 7.5 -17.5t17.5 -7.5h850q10 0 17.5 7.5t7.5 17.5v850 q0 10 -7.5 17.5t-17.5 7.5zM325 900h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 900h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 700h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 700h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 500h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 500h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 300h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 300h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe033;" d="M900 800v200q0 83 -58.5 141.5t-141.5 58.5h-300q-82 0 -141 -59t-59 -141v-200h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h900q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-100zM400 800v150q0 21 15 35.5t35 14.5h200 q20 0 35 -14.5t15 -35.5v-150h-300z" />
+<glyph unicode="&#xe034;" d="M125 1100h50q10 0 17.5 -7.5t7.5 -17.5v-1075h-100v1075q0 10 7.5 17.5t17.5 7.5zM1075 1052q4 0 9 -2q16 -6 16 -23v-421q0 -6 -3 -12q-33 -59 -66.5 -99t-65.5 -58t-56.5 -24.5t-52.5 -6.5q-26 0 -57.5 6.5t-52.5 13.5t-60 21q-41 15 -63 22.5t-57.5 15t-65.5 7.5 q-85 0 -160 -57q-7 -5 -15 -5q-6 0 -11 3q-14 7 -14 22v438q22 55 82 98.5t119 46.5q23 2 43 0.5t43 -7t32.5 -8.5t38 -13t32.5 -11q41 -14 63.5 -21t57 -14t63.5 -7q103 0 183 87q7 8 18 8z" />
+<glyph unicode="&#xe035;" d="M600 1175q116 0 227 -49.5t192.5 -131t131 -192.5t49.5 -227v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v300q0 127 -70.5 231.5t-184.5 161.5t-245 57t-245 -57t-184.5 -161.5t-70.5 -231.5v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50 q-10 0 -17.5 7.5t-7.5 17.5v300q0 116 49.5 227t131 192.5t192.5 131t227 49.5zM220 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460q0 8 6 14t14 6zM820 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460 q0 8 6 14t14 6z" />
+<glyph unicode="&#xe036;" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM900 668l120 120q7 7 17 7t17 -7l34 -34q7 -7 7 -17t-7 -17l-120 -120l120 -120q7 -7 7 -17 t-7 -17l-34 -34q-7 -7 -17 -7t-17 7l-120 119l-120 -119q-7 -7 -17 -7t-17 7l-34 34q-7 7 -7 17t7 17l119 120l-119 120q-7 7 -7 17t7 17l34 34q7 8 17 8t17 -8z" />
+<glyph unicode="&#xe037;" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6 l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238q-6 8 -4.5 18t9.5 17l29 22q7 5 15 5z" />
+<glyph unicode="&#xe038;" d="M967 1004h3q11 -1 17 -10q135 -179 135 -396q0 -105 -34 -206.5t-98 -185.5q-7 -9 -17 -10h-3q-9 0 -16 6l-42 34q-8 6 -9 16t5 18q111 150 111 328q0 90 -29.5 176t-84.5 157q-6 9 -5 19t10 16l42 33q7 5 15 5zM321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5 t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238 q-6 8 -4.5 18.5t9.5 16.5l29 22q7 5 15 5z" />
+<glyph unicode="&#xe039;" d="M500 900h100v-100h-100v-100h-400v-100h-100v600h500v-300zM1200 700h-200v-100h200v-200h-300v300h-200v300h-100v200h600v-500zM100 1100v-300h300v300h-300zM800 1100v-300h300v300h-300zM300 900h-100v100h100v-100zM1000 900h-100v100h100v-100zM300 500h200v-500 h-500v500h200v100h100v-100zM800 300h200v-100h-100v-100h-200v100h-100v100h100v200h-200v100h300v-300zM100 400v-300h300v300h-300zM300 200h-100v100h100v-100zM1200 200h-100v100h100v-100zM700 0h-100v100h100v-100zM1200 0h-300v100h300v-100z" />
+<glyph unicode="&#xe040;" d="M100 200h-100v1000h100v-1000zM300 200h-100v1000h100v-1000zM700 200h-200v1000h200v-1000zM900 200h-100v1000h100v-1000zM1200 200h-200v1000h200v-1000zM400 0h-300v100h300v-100zM600 0h-100v91h100v-91zM800 0h-100v91h100v-91zM1100 0h-200v91h200v-91z" />
+<glyph unicode="&#xe041;" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
+<glyph unicode="&#xe042;" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM800 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-56 56l424 426l-700 700h150zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5 t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
+<glyph unicode="&#xe043;" d="M300 1200h825q75 0 75 -75v-900q0 -25 -18 -43l-64 -64q-8 -8 -13 -5.5t-5 12.5v950q0 10 -7.5 17.5t-17.5 7.5h-700q-25 0 -43 -18l-64 -64q-8 -8 -5.5 -13t12.5 -5h700q10 0 17.5 -7.5t7.5 -17.5v-950q0 -10 -7.5 -17.5t-17.5 -7.5h-850q-10 0 -17.5 7.5t-7.5 17.5v975 q0 25 18 43l139 139q18 18 43 18z" />
+<glyph unicode="&#xe044;" d="M250 1200h800q21 0 35.5 -14.5t14.5 -35.5v-1150l-450 444l-450 -445v1151q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe045;" d="M822 1200h-444q-11 0 -19 -7.5t-9 -17.5l-78 -301q-7 -24 7 -45l57 -108q6 -9 17.5 -15t21.5 -6h450q10 0 21.5 6t17.5 15l62 108q14 21 7 45l-83 301q-1 10 -9 17.5t-19 7.5zM1175 800h-150q-10 0 -21 -6.5t-15 -15.5l-78 -156q-4 -9 -15 -15.5t-21 -6.5h-550 q-10 0 -21 6.5t-15 15.5l-78 156q-4 9 -15 15.5t-21 6.5h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-650q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h750q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5 t7.5 17.5v650q0 10 -7.5 17.5t-17.5 7.5zM850 200h-500q-10 0 -19.5 -7t-11.5 -17l-38 -152q-2 -10 3.5 -17t15.5 -7h600q10 0 15.5 7t3.5 17l-38 152q-2 10 -11.5 17t-19.5 7z" />
+<glyph unicode="&#xe046;" d="M500 1100h200q56 0 102.5 -20.5t72.5 -50t44 -59t25 -50.5l6 -20h150q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5h150q2 8 6.5 21.5t24 48t45 61t72 48t102.5 21.5zM900 800v-100 h100v100h-100zM600 730q-95 0 -162.5 -67.5t-67.5 -162.5t67.5 -162.5t162.5 -67.5t162.5 67.5t67.5 162.5t-67.5 162.5t-162.5 67.5zM600 603q43 0 73 -30t30 -73t-30 -73t-73 -30t-73 30t-30 73t30 73t73 30z" />
+<glyph unicode="&#xe047;" d="M681 1199l385 -998q20 -50 60 -92q18 -19 36.5 -29.5t27.5 -11.5l10 -2v-66h-417v66q53 0 75 43.5t5 88.5l-82 222h-391q-58 -145 -92 -234q-11 -34 -6.5 -57t25.5 -37t46 -20t55 -6v-66h-365v66q56 24 84 52q12 12 25 30.5t20 31.5l7 13l399 1006h93zM416 521h340 l-162 457z" />
+<glyph unicode="&#xe048;" d="M753 641q5 -1 14.5 -4.5t36 -15.5t50.5 -26.5t53.5 -40t50.5 -54.5t35.5 -70t14.5 -87q0 -67 -27.5 -125.5t-71.5 -97.5t-98.5 -66.5t-108.5 -40.5t-102 -13h-500v89q41 7 70.5 32.5t29.5 65.5v827q0 24 -0.5 34t-3.5 24t-8.5 19.5t-17 13.5t-28 12.5t-42.5 11.5v71 l471 -1q57 0 115.5 -20.5t108 -57t80.5 -94t31 -124.5q0 -51 -15.5 -96.5t-38 -74.5t-45 -50.5t-38.5 -30.5zM400 700h139q78 0 130.5 48.5t52.5 122.5q0 41 -8.5 70.5t-29.5 55.5t-62.5 39.5t-103.5 13.5h-118v-350zM400 200h216q80 0 121 50.5t41 130.5q0 90 -62.5 154.5 t-156.5 64.5h-159v-400z" />
+<glyph unicode="&#xe049;" d="M877 1200l2 -57q-83 -19 -116 -45.5t-40 -66.5l-132 -839q-9 -49 13 -69t96 -26v-97h-500v97q186 16 200 98l173 832q3 17 3 30t-1.5 22.5t-9 17.5t-13.5 12.5t-21.5 10t-26 8.5t-33.5 10q-13 3 -19 5v57h425z" />
+<glyph unicode="&#xe050;" d="M1300 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM175 1000h-75v-800h75l-125 -167l-125 167h75v800h-75l125 167z" />
+<glyph unicode="&#xe051;" d="M1100 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-650q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v650h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM1167 50l-167 -125v75h-800v-75l-167 125l167 125v-75h800v75z" />
+<glyph unicode="&#xe052;" d="M50 1100h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe053;" d="M250 1100h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM250 500h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe054;" d="M500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000 q-21 0 -35.5 14.5t-14.5 35.5zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5zM0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5z" />
+<glyph unicode="&#xe055;" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe056;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 1100h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 800h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 500h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 500h800q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 200h800 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe057;" d="M400 0h-100v1100h100v-1100zM550 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM267 550l-167 -125v75h-200v100h200v75zM550 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe058;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM900 0h-100v1100h100v-1100zM50 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM1100 600h200v-100h-200v-75l-167 125l167 125v-75zM50 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe059;" d="M75 1000h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53v650q0 31 22 53t53 22zM1200 300l-300 300l300 300v-600z" />
+<glyph unicode="&#xe060;" d="M44 1100h1112q18 0 31 -13t13 -31v-1012q0 -18 -13 -31t-31 -13h-1112q-18 0 -31 13t-13 31v1012q0 18 13 31t31 13zM100 1000v-737l247 182l298 -131l-74 156l293 318l236 -288v500h-1000zM342 884q56 0 95 -39t39 -94.5t-39 -95t-95 -39.5t-95 39.5t-39 95t39 94.5 t95 39z" />
+<glyph unicode="&#xe062;" d="M648 1169q117 0 216 -60t156.5 -161t57.5 -218q0 -115 -70 -258q-69 -109 -158 -225.5t-143 -179.5l-54 -62q-9 8 -25.5 24.5t-63.5 67.5t-91 103t-98.5 128t-95.5 148q-60 132 -60 249q0 88 34 169.5t91.5 142t137 96.5t166.5 36zM652.5 974q-91.5 0 -156.5 -65 t-65 -157t65 -156.5t156.5 -64.5t156.5 64.5t65 156.5t-65 157t-156.5 65z" />
+<glyph unicode="&#xe063;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 173v854q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57z" />
+<glyph unicode="&#xe064;" d="M554 1295q21 -72 57.5 -143.5t76 -130t83 -118t82.5 -117t70 -116t49.5 -126t18.5 -136.5q0 -71 -25.5 -135t-68.5 -111t-99 -82t-118.5 -54t-125.5 -23q-84 5 -161.5 34t-139.5 78.5t-99 125t-37 164.5q0 69 18 136.5t49.5 126.5t69.5 116.5t81.5 117.5t83.5 119 t76.5 131t58.5 143zM344 710q-23 -33 -43.5 -70.5t-40.5 -102.5t-17 -123q1 -37 14.5 -69.5t30 -52t41 -37t38.5 -24.5t33 -15q21 -7 32 -1t13 22l6 34q2 10 -2.5 22t-13.5 19q-5 4 -14 12t-29.5 40.5t-32.5 73.5q-26 89 6 271q2 11 -6 11q-8 1 -15 -10z" />
+<glyph unicode="&#xe065;" d="M1000 1013l108 115q2 1 5 2t13 2t20.5 -1t25 -9.5t28.5 -21.5q22 -22 27 -43t0 -32l-6 -10l-108 -115zM350 1100h400q50 0 105 -13l-187 -187h-368q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v182l200 200v-332 q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM1009 803l-362 -362l-161 -50l55 170l355 355z" />
+<glyph unicode="&#xe066;" d="M350 1100h361q-164 -146 -216 -200h-195q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-103q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M824 1073l339 -301q8 -7 8 -17.5t-8 -17.5l-340 -306q-7 -6 -12.5 -4t-6.5 11v203q-26 1 -54.5 0t-78.5 -7.5t-92 -17.5t-86 -35t-70 -57q10 59 33 108t51.5 81.5t65 58.5t68.5 40.5t67 24.5t56 13.5t40 4.5v210q1 10 6.5 12.5t13.5 -4.5z" />
+<glyph unicode="&#xe067;" d="M350 1100h350q60 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-219q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M643 639l395 395q7 7 17.5 7t17.5 -7l101 -101q7 -7 7 -17.5t-7 -17.5l-531 -532q-7 -7 -17.5 -7t-17.5 7l-248 248q-7 7 -7 17.5t7 17.5l101 101q7 7 17.5 7t17.5 -7l111 -111q8 -7 18 -7t18 7z" />
+<glyph unicode="&#xe068;" d="M318 918l264 264q8 8 18 8t18 -8l260 -264q7 -8 4.5 -13t-12.5 -5h-170v-200h200v173q0 10 5 12t13 -5l264 -260q8 -7 8 -17.5t-8 -17.5l-264 -265q-8 -7 -13 -5t-5 12v173h-200v-200h170q10 0 12.5 -5t-4.5 -13l-260 -264q-8 -8 -18 -8t-18 8l-264 264q-8 8 -5.5 13 t12.5 5h175v200h-200v-173q0 -10 -5 -12t-13 5l-264 265q-8 7 -8 17.5t8 17.5l264 260q8 7 13 5t5 -12v-173h200v200h-175q-10 0 -12.5 5t5.5 13z" />
+<glyph unicode="&#xe069;" d="M250 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe070;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5 t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe071;" d="M1200 1050v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-492 480q-15 14 -15 35t15 35l492 480q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25z" />
+<glyph unicode="&#xe072;" d="M243 1074l814 -498q18 -11 18 -26t-18 -26l-814 -498q-18 -11 -30.5 -4t-12.5 28v1000q0 21 12.5 28t30.5 -4z" />
+<glyph unicode="&#xe073;" d="M250 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM650 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800 q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe074;" d="M1100 950v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5z" />
+<glyph unicode="&#xe075;" d="M500 612v438q0 21 10.5 25t25.5 -10l492 -480q15 -14 15 -35t-15 -35l-492 -480q-15 -14 -25.5 -10t-10.5 25v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10z" />
+<glyph unicode="&#xe076;" d="M1048 1102l100 1q20 0 35 -14.5t15 -35.5l5 -1000q0 -21 -14.5 -35.5t-35.5 -14.5l-100 -1q-21 0 -35.5 14.5t-14.5 35.5l-2 437l-463 -454q-14 -15 -24.5 -10.5t-10.5 25.5l-2 437l-462 -455q-15 -14 -25.5 -9.5t-10.5 24.5l-5 1000q0 21 10.5 25.5t25.5 -10.5l466 -450 l-2 438q0 20 10.5 24.5t25.5 -9.5l466 -451l-2 438q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe077;" d="M850 1100h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10l464 -453v438q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe078;" d="M686 1081l501 -540q15 -15 10.5 -26t-26.5 -11h-1042q-22 0 -26.5 11t10.5 26l501 540q15 15 36 15t36 -15zM150 400h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe079;" d="M885 900l-352 -353l352 -353l-197 -198l-552 552l552 550z" />
+<glyph unicode="&#xe080;" d="M1064 547l-551 -551l-198 198l353 353l-353 353l198 198z" />
+<glyph unicode="&#xe081;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM650 900h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-150 q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5h150v-150q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v150h150q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-150v150q0 21 -14.5 35.5t-35.5 14.5z" />
+<glyph unicode="&#xe082;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM850 700h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5 t35.5 -14.5h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5z" />
+<glyph unicode="&#xe083;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM741.5 913q-12.5 0 -21.5 -9l-120 -120l-120 120q-9 9 -21.5 9 t-21.5 -9l-141 -141q-9 -9 -9 -21.5t9 -21.5l120 -120l-120 -120q-9 -9 -9 -21.5t9 -21.5l141 -141q9 -9 21.5 -9t21.5 9l120 120l120 -120q9 -9 21.5 -9t21.5 9l141 141q9 9 9 21.5t-9 21.5l-120 120l120 120q9 9 9 21.5t-9 21.5l-141 141q-9 9 -21.5 9z" />
+<glyph unicode="&#xe084;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM546 623l-84 85q-7 7 -17.5 7t-18.5 -7l-139 -139q-7 -8 -7 -18t7 -18 l242 -241q7 -8 17.5 -8t17.5 8l375 375q7 7 7 17.5t-7 18.5l-139 139q-7 7 -17.5 7t-17.5 -7z" />
+<glyph unicode="&#xe085;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM588 941q-29 0 -59 -5.5t-63 -20.5t-58 -38.5t-41.5 -63t-16.5 -89.5 q0 -25 20 -25h131q30 -5 35 11q6 20 20.5 28t45.5 8q20 0 31.5 -10.5t11.5 -28.5q0 -23 -7 -34t-26 -18q-1 0 -13.5 -4t-19.5 -7.5t-20 -10.5t-22 -17t-18.5 -24t-15.5 -35t-8 -46q-1 -8 5.5 -16.5t20.5 -8.5h173q7 0 22 8t35 28t37.5 48t29.5 74t12 100q0 47 -17 83 t-42.5 57t-59.5 34.5t-64 18t-59 4.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe086;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM675 1000h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5 t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5zM675 700h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h75v-200h-75q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h350q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5 t-17.5 7.5h-75v275q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe087;" d="M525 1200h150q10 0 17.5 -7.5t7.5 -17.5v-194q103 -27 178.5 -102.5t102.5 -178.5h194q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-194q-27 -103 -102.5 -178.5t-178.5 -102.5v-194q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v194 q-103 27 -178.5 102.5t-102.5 178.5h-194q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h194q27 103 102.5 178.5t178.5 102.5v194q0 10 7.5 17.5t17.5 7.5zM700 893v-168q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v168q-68 -23 -119 -74 t-74 -119h168q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-168q23 -68 74 -119t119 -74v168q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-168q68 23 119 74t74 119h-168q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h168 q-23 68 -74 119t-119 74z" />
+<glyph unicode="&#xe088;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM759 823l64 -64q7 -7 7 -17.5t-7 -17.5l-124 -124l124 -124q7 -7 7 -17.5t-7 -17.5l-64 -64q-7 -7 -17.5 -7t-17.5 7l-124 124l-124 -124q-7 -7 -17.5 -7t-17.5 7l-64 64 q-7 7 -7 17.5t7 17.5l124 124l-124 124q-7 7 -7 17.5t7 17.5l64 64q7 7 17.5 7t17.5 -7l124 -124l124 124q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe089;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM782 788l106 -106q7 -7 7 -17.5t-7 -17.5l-320 -321q-8 -7 -18 -7t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l197 197q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe090;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5q0 -120 65 -225 l587 587q-105 65 -225 65zM965 819l-584 -584q104 -62 219 -62q116 0 214.5 57t155.5 155.5t57 214.5q0 115 -62 219z" />
+<glyph unicode="&#xe091;" d="M39 582l522 427q16 13 27.5 8t11.5 -26v-291h550q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-550v-291q0 -21 -11.5 -26t-27.5 8l-522 427q-16 13 -16 32t16 32z" />
+<glyph unicode="&#xe092;" d="M639 1009l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291h-550q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h550v291q0 21 11.5 26t27.5 -8z" />
+<glyph unicode="&#xe093;" d="M682 1161l427 -522q13 -16 8 -27.5t-26 -11.5h-291v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v550h-291q-21 0 -26 11.5t8 27.5l427 522q13 16 32 16t32 -16z" />
+<glyph unicode="&#xe094;" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-550h291q21 0 26 -11.5t-8 -27.5l-427 -522q-13 -16 -32 -16t-32 16l-427 522q-13 16 -8 27.5t26 11.5h291v550q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe095;" d="M639 1109l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291q-94 -2 -182 -20t-170.5 -52t-147 -92.5t-100.5 -135.5q5 105 27 193.5t67.5 167t113 135t167 91.5t225.5 42v262q0 21 11.5 26t27.5 -8z" />
+<glyph unicode="&#xe096;" d="M850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5zM350 0h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249 q8 7 18 7t18 -7l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5z" />
+<glyph unicode="&#xe097;" d="M1014 1120l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249q8 7 18 7t18 -7zM250 600h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5z" />
+<glyph unicode="&#xe101;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM704 900h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5 t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe102;" d="M260 1200q9 0 19 -2t15 -4l5 -2q22 -10 44 -23l196 -118q21 -13 36 -24q29 -21 37 -12q11 13 49 35l196 118q22 13 45 23q17 7 38 7q23 0 47 -16.5t37 -33.5l13 -16q14 -21 18 -45l25 -123l8 -44q1 -9 8.5 -14.5t17.5 -5.5h61q10 0 17.5 -7.5t7.5 -17.5v-50 q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 -7.5t-7.5 -17.5v-175h-400v300h-200v-300h-400v175q0 10 -7.5 17.5t-17.5 7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5h61q11 0 18 3t7 8q0 4 9 52l25 128q5 25 19 45q2 3 5 7t13.5 15t21.5 19.5t26.5 15.5 t29.5 7zM915 1079l-166 -162q-7 -7 -5 -12t12 -5h219q10 0 15 7t2 17l-51 149q-3 10 -11 12t-15 -6zM463 917l-177 157q-8 7 -16 5t-11 -12l-51 -143q-3 -10 2 -17t15 -7h231q11 0 12.5 5t-5.5 12zM500 0h-375q-10 0 -17.5 7.5t-7.5 17.5v375h400v-400zM1100 400v-375 q0 -10 -7.5 -17.5t-17.5 -7.5h-375v400h400z" />
+<glyph unicode="&#xe103;" d="M1165 1190q8 3 21 -6.5t13 -17.5q-2 -178 -24.5 -323.5t-55.5 -245.5t-87 -174.5t-102.5 -118.5t-118 -68.5t-118.5 -33t-120 -4.5t-105 9.5t-90 16.5q-61 12 -78 11q-4 1 -12.5 0t-34 -14.5t-52.5 -40.5l-153 -153q-26 -24 -37 -14.5t-11 43.5q0 64 42 102q8 8 50.5 45 t66.5 58q19 17 35 47t13 61q-9 55 -10 102.5t7 111t37 130t78 129.5q39 51 80 88t89.5 63.5t94.5 45t113.5 36t129 31t157.5 37t182 47.5zM1116 1098q-8 9 -22.5 -3t-45.5 -50q-38 -47 -119 -103.5t-142 -89.5l-62 -33q-56 -30 -102 -57t-104 -68t-102.5 -80.5t-85.5 -91 t-64 -104.5q-24 -56 -31 -86t2 -32t31.5 17.5t55.5 59.5q25 30 94 75.5t125.5 77.5t147.5 81q70 37 118.5 69t102 79.5t99 111t86.5 148.5q22 50 24 60t-6 19z" />
+<glyph unicode="&#xe104;" d="M653 1231q-39 -67 -54.5 -131t-10.5 -114.5t24.5 -96.5t47.5 -80t63.5 -62.5t68.5 -46.5t65 -30q-4 7 -17.5 35t-18.5 39.5t-17 39.5t-17 43t-13 42t-9.5 44.5t-2 42t4 43t13.5 39t23 38.5q96 -42 165 -107.5t105 -138t52 -156t13 -159t-19 -149.5q-13 -55 -44 -106.5 t-68 -87t-78.5 -64.5t-72.5 -45t-53 -22q-72 -22 -127 -11q-31 6 -13 19q6 3 17 7q13 5 32.5 21t41 44t38.5 63.5t21.5 81.5t-6.5 94.5t-50 107t-104 115.5q10 -104 -0.5 -189t-37 -140.5t-65 -93t-84 -52t-93.5 -11t-95 24.5q-80 36 -131.5 114t-53.5 171q-2 23 0 49.5 t4.5 52.5t13.5 56t27.5 60t46 64.5t69.5 68.5q-8 -53 -5 -102.5t17.5 -90t34 -68.5t44.5 -39t49 -2q31 13 38.5 36t-4.5 55t-29 64.5t-36 75t-26 75.5q-15 85 2 161.5t53.5 128.5t85.5 92.5t93.5 61t81.5 25.5z" />
+<glyph unicode="&#xe105;" d="M600 1094q82 0 160.5 -22.5t140 -59t116.5 -82.5t94.5 -95t68 -95t42.5 -82.5t14 -57.5t-14 -57.5t-43 -82.5t-68.5 -95t-94.5 -95t-116.5 -82.5t-140 -59t-159.5 -22.5t-159.5 22.5t-140 59t-116.5 82.5t-94.5 95t-68.5 95t-43 82.5t-14 57.5t14 57.5t42.5 82.5t68 95 t94.5 95t116.5 82.5t140 59t160.5 22.5zM888 829q-15 15 -18 12t5 -22q25 -57 25 -119q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 59 23 114q8 19 4.5 22t-17.5 -12q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q22 -36 47 -71t70 -82t92.5 -81t113 -58.5t133.5 -24.5 t133.5 24t113 58.5t92.5 81.5t70 81.5t47 70.5q11 18 9 42.5t-14 41.5q-90 117 -163 189zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l35 34q14 15 12.5 33.5t-16.5 33.5q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
+<glyph unicode="&#xe106;" d="M592 0h-148l31 120q-91 20 -175.5 68.5t-143.5 106.5t-103.5 119t-66.5 110t-22 76q0 21 14 57.5t42.5 82.5t68 95t94.5 95t116.5 82.5t140 59t160.5 22.5q61 0 126 -15l32 121h148zM944 770l47 181q108 -85 176.5 -192t68.5 -159q0 -26 -19.5 -71t-59.5 -102t-93 -112 t-129 -104.5t-158 -75.5l46 173q77 49 136 117t97 131q11 18 9 42.5t-14 41.5q-54 70 -107 130zM310 824q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q18 -30 39 -60t57 -70.5t74 -73t90 -61t105 -41.5l41 154q-107 18 -178.5 101.5t-71.5 193.5q0 59 23 114q8 19 4.5 22 t-17.5 -12zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l12 11l22 86l-3 4q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
+<glyph unicode="&#xe107;" d="M-90 100l642 1066q20 31 48 28.5t48 -35.5l642 -1056q21 -32 7.5 -67.5t-50.5 -35.5h-1294q-37 0 -50.5 34t7.5 66zM155 200h345v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h345l-445 723zM496 700h208q20 0 32 -14.5t8 -34.5l-58 -252 q-4 -20 -21.5 -34.5t-37.5 -14.5h-54q-20 0 -37.5 14.5t-21.5 34.5l-58 252q-4 20 8 34.5t32 14.5z" />
+<glyph unicode="&#xe108;" d="M650 1200q62 0 106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -93 100 -113v-64q0 -21 -13 -29t-32 1l-205 128l-205 -128q-19 -9 -32 -1t-13 29v64q0 20 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5v41 q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44z" />
+<glyph unicode="&#xe109;" d="M850 1200h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-150h-1100v150q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-50h500v50q0 21 14.5 35.5t35.5 14.5zM1100 800v-750q0 -21 -14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v750h1100zM100 600v-100h100v100h-100zM300 600v-100h100v100h-100zM500 600v-100h100v100h-100zM700 600v-100h100v100h-100zM900 600v-100h100v100h-100zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400 v-100h100v100h-100zM700 400v-100h100v100h-100zM900 400v-100h100v100h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100zM500 200v-100h100v100h-100zM700 200v-100h100v100h-100zM900 200v-100h100v100h-100z" />
+<glyph unicode="&#xe110;" d="M1135 1165l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-159l-600 -600h-291q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h209l600 600h241v150q0 21 10.5 25t24.5 -10zM522 819l-141 -141l-122 122h-209q-21 0 -35.5 14.5 t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h291zM1135 565l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-241l-181 181l141 141l122 -122h159v150q0 21 10.5 25t24.5 -10z" />
+<glyph unicode="&#xe111;" d="M100 1100h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5z" />
+<glyph unicode="&#xe112;" d="M150 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM850 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM1100 800v-300q0 -41 -3 -77.5t-15 -89.5t-32 -96t-58 -89t-89 -77t-129 -51t-174 -20t-174 20 t-129 51t-89 77t-58 89t-32 96t-15 89.5t-3 77.5v300h300v-250v-27v-42.5t1.5 -41t5 -38t10 -35t16.5 -30t25.5 -24.5t35 -19t46.5 -12t60 -4t60 4.5t46.5 12.5t35 19.5t25 25.5t17 30.5t10 35t5 38t2 40.5t-0.5 42v25v250h300z" />
+<glyph unicode="&#xe113;" d="M1100 411l-198 -199l-353 353l-353 -353l-197 199l551 551z" />
+<glyph unicode="&#xe114;" d="M1101 789l-550 -551l-551 551l198 199l353 -353l353 353z" />
+<glyph unicode="&#xe115;" d="M404 1000h746q21 0 35.5 -14.5t14.5 -35.5v-551h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v401h-381zM135 984l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-400h385l215 -200h-750q-21 0 -35.5 14.5 t-14.5 35.5v550h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe116;" d="M56 1200h94q17 0 31 -11t18 -27l38 -162h896q24 0 39 -18.5t10 -42.5l-100 -475q-5 -21 -27 -42.5t-55 -21.5h-633l48 -200h535q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-50q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-300v-50 q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-31q-18 0 -32.5 10t-20.5 19l-5 10l-201 961h-54q-20 0 -35 14.5t-15 35.5t15 35.5t35 14.5z" />
+<glyph unicode="&#xe117;" d="M1200 1000v-100h-1200v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500zM0 800h1200v-800h-1200v800z" />
+<glyph unicode="&#xe118;" d="M200 800l-200 -400v600h200q0 41 29.5 70.5t70.5 29.5h300q42 0 71 -29.5t29 -70.5h500v-200h-1000zM1500 700l-300 -700h-1200l300 700h1200z" />
+<glyph unicode="&#xe119;" d="M635 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-601h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v601h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe120;" d="M936 864l249 -229q14 -15 14 -35.5t-14 -35.5l-249 -229q-15 -15 -25.5 -10.5t-10.5 24.5v151h-600v-151q0 -20 -10.5 -24.5t-25.5 10.5l-249 229q-14 15 -14 35.5t14 35.5l249 229q15 15 25.5 10.5t10.5 -25.5v-149h600v149q0 21 10.5 25.5t25.5 -10.5z" />
+<glyph unicode="&#xe121;" d="M1169 400l-172 732q-5 23 -23 45.5t-38 22.5h-672q-20 0 -38 -20t-23 -41l-172 -739h1138zM1100 300h-1000q-41 0 -70.5 -29.5t-29.5 -70.5v-100q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v100q0 41 -29.5 70.5t-70.5 29.5zM800 100v100h100v-100h-100 zM1000 100v100h100v-100h-100z" />
+<glyph unicode="&#xe122;" d="M1150 1100q21 0 35.5 -14.5t14.5 -35.5v-850q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v850q0 21 14.5 35.5t35.5 14.5zM1000 200l-675 200h-38l47 -276q3 -16 -5.5 -20t-29.5 -4h-7h-84q-20 0 -34.5 14t-18.5 35q-55 337 -55 351v250v6q0 16 1 23.5t6.5 14 t17.5 6.5h200l675 250v-850zM0 750v-250q-4 0 -11 0.5t-24 6t-30 15t-24 30t-11 48.5v50q0 26 10.5 46t25 30t29 16t25.5 7z" />
+<glyph unicode="&#xe123;" d="M553 1200h94q20 0 29 -10.5t3 -29.5l-18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q19 0 33 -14.5t14 -35t-13 -40.5t-31 -27q-8 -4 -23 -9.5t-65 -19.5t-103 -25t-132.5 -20t-158.5 -9q-57 0 -115 5t-104 12t-88.5 15.5t-73.5 17.5t-54.5 16t-35.5 12l-11 4 q-18 8 -31 28t-13 40.5t14 35t33 14.5h17l118 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3.5 32t28.5 13zM498 110q50 -6 102 -6q53 0 102 6q-12 -49 -39.5 -79.5t-62.5 -30.5t-63 30.5t-39 79.5z" />
+<glyph unicode="&#xe124;" d="M800 946l224 78l-78 -224l234 -45l-180 -155l180 -155l-234 -45l78 -224l-224 78l-45 -234l-155 180l-155 -180l-45 234l-224 -78l78 224l-234 45l180 155l-180 155l234 45l-78 224l224 -78l45 234l155 -180l155 180z" />
+<glyph unicode="&#xe125;" d="M650 1200h50q40 0 70 -40.5t30 -84.5v-150l-28 -125h328q40 0 70 -40.5t30 -84.5v-100q0 -45 -29 -74l-238 -344q-16 -24 -38 -40.5t-45 -16.5h-250q-7 0 -42 25t-66 50l-31 25h-61q-45 0 -72.5 18t-27.5 57v400q0 36 20 63l145 196l96 198q13 28 37.5 48t51.5 20z M650 1100l-100 -212l-150 -213v-375h100l136 -100h214l250 375v125h-450l50 225v175h-50zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe126;" d="M600 1100h250q23 0 45 -16.5t38 -40.5l238 -344q29 -29 29 -74v-100q0 -44 -30 -84.5t-70 -40.5h-328q28 -118 28 -125v-150q0 -44 -30 -84.5t-70 -40.5h-50q-27 0 -51.5 20t-37.5 48l-96 198l-145 196q-20 27 -20 63v400q0 39 27.5 57t72.5 18h61q124 100 139 100z M50 1000h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM636 1000l-136 -100h-100v-375l150 -213l100 -212h50v175l-50 225h450v125l-250 375h-214z" />
+<glyph unicode="&#xe127;" d="M356 873l363 230q31 16 53 -6l110 -112q13 -13 13.5 -32t-11.5 -34l-84 -121h302q84 0 138 -38t54 -110t-55 -111t-139 -39h-106l-131 -339q-6 -21 -19.5 -41t-28.5 -20h-342q-7 0 -90 81t-83 94v525q0 17 14 35.5t28 28.5zM400 792v-503l100 -89h293l131 339 q6 21 19.5 41t28.5 20h203q21 0 30.5 25t0.5 50t-31 25h-456h-7h-6h-5.5t-6 0.5t-5 1.5t-5 2t-4 2.5t-4 4t-2.5 4.5q-12 25 5 47l146 183l-86 83zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500 q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe128;" d="M475 1103l366 -230q2 -1 6 -3.5t14 -10.5t18 -16.5t14.5 -20t6.5 -22.5v-525q0 -13 -86 -94t-93 -81h-342q-15 0 -28.5 20t-19.5 41l-131 339h-106q-85 0 -139.5 39t-54.5 111t54 110t138 38h302l-85 121q-11 15 -10.5 34t13.5 32l110 112q22 22 53 6zM370 945l146 -183 q17 -22 5 -47q-2 -2 -3.5 -4.5t-4 -4t-4 -2.5t-5 -2t-5 -1.5t-6 -0.5h-6h-6.5h-6h-475v-100h221q15 0 29 -20t20 -41l130 -339h294l106 89v503l-342 236zM1050 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5 v500q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe129;" d="M550 1294q72 0 111 -55t39 -139v-106l339 -131q21 -6 41 -19.5t20 -28.5v-342q0 -7 -81 -90t-94 -83h-525q-17 0 -35.5 14t-28.5 28l-9 14l-230 363q-16 31 6 53l112 110q13 13 32 13.5t34 -11.5l121 -84v302q0 84 38 138t110 54zM600 972v203q0 21 -25 30.5t-50 0.5 t-25 -31v-456v-7v-6v-5.5t-0.5 -6t-1.5 -5t-2 -5t-2.5 -4t-4 -4t-4.5 -2.5q-25 -12 -47 5l-183 146l-83 -86l236 -339h503l89 100v293l-339 131q-21 6 -41 19.5t-20 28.5zM450 200h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe130;" d="M350 1100h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5zM600 306v-106q0 -84 -39 -139t-111 -55t-110 54t-38 138v302l-121 -84q-15 -12 -34 -11.5t-32 13.5l-112 110 q-22 22 -6 53l230 363q1 2 3.5 6t10.5 13.5t16.5 17t20 13.5t22.5 6h525q13 0 94 -83t81 -90v-342q0 -15 -20 -28.5t-41 -19.5zM308 900l-236 -339l83 -86l183 146q22 17 47 5q2 -1 4.5 -2.5t4 -4t2.5 -4t2 -5t1.5 -5t0.5 -6v-5.5v-6v-7v-456q0 -22 25 -31t50 0.5t25 30.5 v203q0 15 20 28.5t41 19.5l339 131v293l-89 100h-503z" />
+<glyph unicode="&#xe131;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM914 632l-275 223q-16 13 -27.5 8t-11.5 -26v-137h-275 q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h275v-137q0 -21 11.5 -26t27.5 8l275 223q16 13 16 32t-16 32z" />
+<glyph unicode="&#xe132;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM561 855l-275 -223q-16 -13 -16 -32t16 -32l275 -223q16 -13 27.5 -8 t11.5 26v137h275q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5h-275v137q0 21 -11.5 26t-27.5 -8z" />
+<glyph unicode="&#xe133;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM855 639l-223 275q-13 16 -32 16t-32 -16l-223 -275q-13 -16 -8 -27.5 t26 -11.5h137v-275q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v275h137q21 0 26 11.5t-8 27.5z" />
+<glyph unicode="&#xe134;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM675 900h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-275h-137q-21 0 -26 -11.5 t8 -27.5l223 -275q13 -16 32 -16t32 16l223 275q13 16 8 27.5t-26 11.5h-137v275q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe135;" d="M600 1176q116 0 222.5 -46t184 -123.5t123.5 -184t46 -222.5t-46 -222.5t-123.5 -184t-184 -123.5t-222.5 -46t-222.5 46t-184 123.5t-123.5 184t-46 222.5t46 222.5t123.5 184t184 123.5t222.5 46zM627 1101q-15 -12 -36.5 -20.5t-35.5 -12t-43 -8t-39 -6.5 q-15 -3 -45.5 0t-45.5 -2q-20 -7 -51.5 -26.5t-34.5 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -91t-29.5 -79q-9 -34 5 -93t8 -87q0 -9 17 -44.5t16 -59.5q12 0 23 -5t23.5 -15t19.5 -14q16 -8 33 -15t40.5 -15t34.5 -12q21 -9 52.5 -32t60 -38t57.5 -11 q7 -15 -3 -34t-22.5 -40t-9.5 -38q13 -21 23 -34.5t27.5 -27.5t36.5 -18q0 -7 -3.5 -16t-3.5 -14t5 -17q104 -2 221 112q30 29 46.5 47t34.5 49t21 63q-13 8 -37 8.5t-36 7.5q-15 7 -49.5 15t-51.5 19q-18 0 -41 -0.5t-43 -1.5t-42 -6.5t-38 -16.5q-51 -35 -66 -12 q-4 1 -3.5 25.5t0.5 25.5q-6 13 -26.5 17.5t-24.5 6.5q1 15 -0.5 30.5t-7 28t-18.5 11.5t-31 -21q-23 -25 -42 4q-19 28 -8 58q6 16 22 22q6 -1 26 -1.5t33.5 -4t19.5 -13.5q7 -12 18 -24t21.5 -20.5t20 -15t15.5 -10.5l5 -3q2 12 7.5 30.5t8 34.5t-0.5 32q-3 18 3.5 29 t18 22.5t15.5 24.5q6 14 10.5 35t8 31t15.5 22.5t34 22.5q-6 18 10 36q8 0 24 -1.5t24.5 -1.5t20 4.5t20.5 15.5q-10 23 -31 42.5t-37.5 29.5t-49 27t-43.5 23q0 1 2 8t3 11.5t1.5 10.5t-1 9.5t-4.5 4.5q31 -13 58.5 -14.5t38.5 2.5l12 5q5 28 -9.5 46t-36.5 24t-50 15 t-41 20q-18 -4 -37 0zM613 994q0 -17 8 -42t17 -45t9 -23q-8 1 -39.5 5.5t-52.5 10t-37 16.5q3 11 16 29.5t16 25.5q10 -10 19 -10t14 6t13.5 14.5t16.5 12.5z" />
+<glyph unicode="&#xe136;" d="M756 1157q164 92 306 -9l-259 -138l145 -232l251 126q6 -89 -34 -156.5t-117 -110.5q-60 -34 -127 -39.5t-126 16.5l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5t15 37.5l600 599q-34 101 5.5 201.5t135.5 154.5z" />
+<glyph unicode="&#xe137;" horiz-adv-x="1220" d="M100 1196h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 1096h-200v-100h200v100zM100 796h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 696h-500v-100h500v100zM100 396h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 296h-300v-100h300v100z " />
+<glyph unicode="&#xe138;" d="M150 1200h900q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM700 500v-300l-200 -200v500l-350 500h900z" />
+<glyph unicode="&#xe139;" d="M500 1200h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5zM500 1100v-100h200v100h-200zM1200 400v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v200h1200z" />
+<glyph unicode="&#xe140;" d="M50 1200h300q21 0 25 -10.5t-10 -24.5l-94 -94l199 -199q7 -8 7 -18t-7 -18l-106 -106q-8 -7 -18 -7t-18 7l-199 199l-94 -94q-14 -14 -24.5 -10t-10.5 25v300q0 21 14.5 35.5t35.5 14.5zM850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-199 -199q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l199 199l-94 94q-14 14 -10 24.5t25 10.5zM364 470l106 -106q7 -8 7 -18t-7 -18l-199 -199l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l199 199 q8 7 18 7t18 -7zM1071 271l94 94q14 14 24.5 10t10.5 -25v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -25 10.5t10 24.5l94 94l-199 199q-7 8 -7 18t7 18l106 106q8 7 18 7t18 -7z" />
+<glyph unicode="&#xe141;" d="M596 1192q121 0 231.5 -47.5t190 -127t127 -190t47.5 -231.5t-47.5 -231.5t-127 -190.5t-190 -127t-231.5 -47t-231.5 47t-190.5 127t-127 190.5t-47 231.5t47 231.5t127 190t190.5 127t231.5 47.5zM596 1010q-112 0 -207.5 -55.5t-151 -151t-55.5 -207.5t55.5 -207.5 t151 -151t207.5 -55.5t207.5 55.5t151 151t55.5 207.5t-55.5 207.5t-151 151t-207.5 55.5zM454.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38.5 -16.5t-38.5 16.5t-16 39t16 38.5t38.5 16zM754.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38 -16.5q-14 0 -29 10l-55 -145 q17 -23 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5t-61.5 25.5t-25.5 61.5q0 32 20.5 56.5t51.5 29.5l122 126l1 1q-9 14 -9 28q0 23 16 39t38.5 16zM345.5 709q22.5 0 38.5 -16t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16zM854.5 709q22.5 0 38.5 -16 t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16z" />
+<glyph unicode="&#xe142;" d="M546 173l469 470q91 91 99 192q7 98 -52 175.5t-154 94.5q-22 4 -47 4q-34 0 -66.5 -10t-56.5 -23t-55.5 -38t-48 -41.5t-48.5 -47.5q-376 -375 -391 -390q-30 -27 -45 -41.5t-37.5 -41t-32 -46.5t-16 -47.5t-1.5 -56.5q9 -62 53.5 -95t99.5 -33q74 0 125 51l548 548 q36 36 20 75q-7 16 -21.5 26t-32.5 10q-26 0 -50 -23q-13 -12 -39 -38l-341 -338q-15 -15 -35.5 -15.5t-34.5 13.5t-14 34.5t14 34.5q327 333 361 367q35 35 67.5 51.5t78.5 16.5q14 0 29 -1q44 -8 74.5 -35.5t43.5 -68.5q14 -47 2 -96.5t-47 -84.5q-12 -11 -32 -32 t-79.5 -81t-114.5 -115t-124.5 -123.5t-123 -119.5t-96.5 -89t-57 -45q-56 -27 -120 -27q-70 0 -129 32t-93 89q-48 78 -35 173t81 163l511 511q71 72 111 96q91 55 198 55q80 0 152 -33q78 -36 129.5 -103t66.5 -154q17 -93 -11 -183.5t-94 -156.5l-482 -476 q-15 -15 -36 -16t-37 14t-17.5 34t14.5 35z" />
+<glyph unicode="&#xe143;" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104zM896 972q-33 0 -64.5 -19t-56.5 -46t-47.5 -53.5t-43.5 -45.5t-37.5 -19t-36 19t-40 45.5t-43 53.5t-54 46t-65.5 19q-67 0 -122.5 -55.5t-55.5 -132.5q0 -23 13.5 -51t46 -65t57.5 -63t76 -75l22 -22q15 -14 44 -44t50.5 -51t46 -44t41 -35t23 -12 t23.5 12t42.5 36t46 44t52.5 52t44 43q4 4 12 13q43 41 63.5 62t52 55t46 55t26 46t11.5 44q0 79 -53 133.5t-120 54.5z" />
+<glyph unicode="&#xe144;" d="M776.5 1214q93.5 0 159.5 -66l141 -141q66 -66 66 -160q0 -42 -28 -95.5t-62 -87.5l-29 -29q-31 53 -77 99l-18 18l95 95l-247 248l-389 -389l212 -212l-105 -106l-19 18l-141 141q-66 66 -66 159t66 159l283 283q65 66 158.5 66zM600 706l105 105q10 -8 19 -17l141 -141 q66 -66 66 -159t-66 -159l-283 -283q-66 -66 -159 -66t-159 66l-141 141q-66 66 -66 159.5t66 159.5l55 55q29 -55 75 -102l18 -17l-95 -95l247 -248l389 389z" />
+<glyph unicode="&#xe145;" d="M603 1200q85 0 162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5v953q0 21 30 46.5t81 48t129 37.5t163 15zM300 1000v-700h600v700h-600zM600 254q-43 0 -73.5 -30.5t-30.5 -73.5t30.5 -73.5t73.5 -30.5t73.5 30.5 t30.5 73.5t-30.5 73.5t-73.5 30.5z" />
+<glyph unicode="&#xe146;" d="M902 1185l283 -282q15 -15 15 -36t-14.5 -35.5t-35.5 -14.5t-35 15l-36 35l-279 -267v-300l-212 210l-308 -307l-280 -203l203 280l307 308l-210 212h300l267 279l-35 36q-15 14 -15 35t14.5 35.5t35.5 14.5t35 -15z" />
+<glyph unicode="&#xe148;" d="M700 1248v-78q38 -5 72.5 -14.5t75.5 -31.5t71 -53.5t52 -84t24 -118.5h-159q-4 36 -10.5 59t-21 45t-40 35.5t-64.5 20.5v-307l64 -13q34 -7 64 -16.5t70 -32t67.5 -52.5t47.5 -80t20 -112q0 -139 -89 -224t-244 -97v-77h-100v79q-150 16 -237 103q-40 40 -52.5 93.5 t-15.5 139.5h139q5 -77 48.5 -126t117.5 -65v335l-27 8q-46 14 -79 26.5t-72 36t-63 52t-40 72.5t-16 98q0 70 25 126t67.5 92t94.5 57t110 27v77h100zM600 754v274q-29 -4 -50 -11t-42 -21.5t-31.5 -41.5t-10.5 -65q0 -29 7 -50.5t16.5 -34t28.5 -22.5t31.5 -14t37.5 -10 q9 -3 13 -4zM700 547v-310q22 2 42.5 6.5t45 15.5t41.5 27t29 42t12 59.5t-12.5 59.5t-38 44.5t-53 31t-66.5 24.5z" />
+<glyph unicode="&#xe149;" d="M561 1197q84 0 160.5 -40t123.5 -109.5t47 -147.5h-153q0 40 -19.5 71.5t-49.5 48.5t-59.5 26t-55.5 9q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -26 13.5 -63t26.5 -61t37 -66q6 -9 9 -14h241v-100h-197q8 -50 -2.5 -115t-31.5 -95q-45 -62 -99 -112 q34 10 83 17.5t71 7.5q32 1 102 -16t104 -17q83 0 136 30l50 -147q-31 -19 -58 -30.5t-55 -15.5t-42 -4.5t-46 -0.5q-23 0 -76 17t-111 32.5t-96 11.5q-39 -3 -82 -16t-67 -25l-23 -11l-55 145q4 3 16 11t15.5 10.5t13 9t15.5 12t14.5 14t17.5 18.5q48 55 54 126.5 t-30 142.5h-221v100h166q-23 47 -44 104q-7 20 -12 41.5t-6 55.5t6 66.5t29.5 70.5t58.5 71q97 88 263 88z" />
+<glyph unicode="&#xe150;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM935 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-900h-200v900h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe151;" d="M1000 700h-100v100h-100v-100h-100v500h300v-500zM400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM801 1100v-200h100v200h-100zM1000 350l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150z " />
+<glyph unicode="&#xe152;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 1050l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150zM1000 0h-100v100h-100v-100h-100v500h300v-500zM801 400v-200h100v200h-100z " />
+<glyph unicode="&#xe153;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 700h-100v400h-100v100h200v-500zM1100 0h-100v100h-200v400h300v-500zM901 400v-200h100v200h-100z" />
+<glyph unicode="&#xe154;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1100 700h-100v100h-200v400h300v-500zM901 1100v-200h100v200h-100zM1000 0h-100v400h-100v100h200v-500z" />
+<glyph unicode="&#xe155;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM900 1000h-200v200h200v-200zM1000 700h-300v200h300v-200zM1100 400h-400v200h400v-200zM1200 100h-500v200h500v-200z" />
+<glyph unicode="&#xe156;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1200 1000h-500v200h500v-200zM1100 700h-400v200h400v-200zM1000 400h-300v200h300v-200zM900 100h-200v200h200v-200z" />
+<glyph unicode="&#xe157;" d="M350 1100h400q162 0 256 -93.5t94 -256.5v-400q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5z" />
+<glyph unicode="&#xe158;" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-163 0 -256.5 92.5t-93.5 257.5v400q0 163 94 256.5t256 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM440 770l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
+<glyph unicode="&#xe159;" d="M350 1100h400q163 0 256.5 -94t93.5 -256v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 163 92.5 256.5t257.5 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM350 700h400q21 0 26.5 -12t-6.5 -28l-190 -253q-12 -17 -30 -17t-30 17l-190 253q-12 16 -6.5 28t26.5 12z" />
+<glyph unicode="&#xe160;" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -163 -92.5 -256.5t-257.5 -93.5h-400q-163 0 -256.5 94t-93.5 256v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM580 693l190 -253q12 -16 6.5 -28t-26.5 -12h-400q-21 0 -26.5 12t6.5 28l190 253q12 17 30 17t30 -17z" />
+<glyph unicode="&#xe161;" d="M550 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h450q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-450q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM338 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
+<glyph unicode="&#xe162;" d="M793 1182l9 -9q8 -10 5 -27q-3 -11 -79 -225.5t-78 -221.5l300 1q24 0 32.5 -17.5t-5.5 -35.5q-1 0 -133.5 -155t-267 -312.5t-138.5 -162.5q-12 -15 -26 -15h-9l-9 8q-9 11 -4 32q2 9 42 123.5t79 224.5l39 110h-302q-23 0 -31 19q-10 21 6 41q75 86 209.5 237.5 t228 257t98.5 111.5q9 16 25 16h9z" />
+<glyph unicode="&#xe163;" d="M350 1100h400q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-450q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h450q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400 q0 165 92.5 257.5t257.5 92.5zM938 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
+<glyph unicode="&#xe164;" d="M750 1200h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -10.5 -25t-24.5 10l-109 109l-312 -312q-15 -15 -35.5 -15t-35.5 15l-141 141q-15 15 -15 35.5t15 35.5l312 312l-109 109q-14 14 -10 24.5t25 10.5zM456 900h-156q-41 0 -70.5 -29.5t-29.5 -70.5v-500 q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v148l200 200v-298q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5h300z" />
+<glyph unicode="&#xe165;" d="M600 1186q119 0 227.5 -46.5t187 -125t125 -187t46.5 -227.5t-46.5 -227.5t-125 -187t-187 -125t-227.5 -46.5t-227.5 46.5t-187 125t-125 187t-46.5 227.5t46.5 227.5t125 187t187 125t227.5 46.5zM600 1022q-115 0 -212 -56.5t-153.5 -153.5t-56.5 -212t56.5 -212 t153.5 -153.5t212 -56.5t212 56.5t153.5 153.5t56.5 212t-56.5 212t-153.5 153.5t-212 56.5zM600 794q80 0 137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137t57 137t137 57z" />
+<glyph unicode="&#xe166;" d="M450 1200h200q21 0 35.5 -14.5t14.5 -35.5v-350h245q20 0 25 -11t-9 -26l-383 -426q-14 -15 -33.5 -15t-32.5 15l-379 426q-13 15 -8.5 26t25.5 11h250v350q0 21 14.5 35.5t35.5 14.5zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe167;" d="M583 1182l378 -435q14 -15 9 -31t-26 -16h-244v-250q0 -20 -17 -35t-39 -15h-200q-20 0 -32 14.5t-12 35.5v250h-250q-20 0 -25.5 16.5t8.5 31.5l383 431q14 16 33.5 17t33.5 -14zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe168;" d="M396 723l369 369q7 7 17.5 7t17.5 -7l139 -139q7 -8 7 -18.5t-7 -17.5l-525 -525q-7 -8 -17.5 -8t-17.5 8l-292 291q-7 8 -7 18t7 18l139 139q8 7 18.5 7t17.5 -7zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50 h-100z" />
+<glyph unicode="&#xe169;" d="M135 1023l142 142q14 14 35 14t35 -14l77 -77l-212 -212l-77 76q-14 15 -14 36t14 35zM655 855l210 210q14 14 24.5 10t10.5 -25l-2 -599q-1 -20 -15.5 -35t-35.5 -15l-597 -1q-21 0 -25 10.5t10 24.5l208 208l-154 155l212 212zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5 v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe170;" d="M350 1200l599 -2q20 -1 35 -15.5t15 -35.5l1 -597q0 -21 -10.5 -25t-24.5 10l-208 208l-155 -154l-212 212l155 154l-210 210q-14 14 -10 24.5t25 10.5zM524 512l-76 -77q-15 -14 -36 -14t-35 14l-142 142q-14 14 -14 35t14 35l77 77zM50 300h1000q21 0 35.5 -14.5 t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe171;" d="M1200 103l-483 276l-314 -399v423h-399l1196 796v-1096zM483 424v-230l683 953z" />
+<glyph unicode="&#xe172;" d="M1100 1000v-850q0 -21 -14.5 -35.5t-35.5 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200z" />
+<glyph unicode="&#xe173;" d="M1100 1000l-2 -149l-299 -299l-95 95q-9 9 -21.5 9t-21.5 -9l-149 -147h-312v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1132 638l106 -106q7 -7 7 -17.5t-7 -17.5l-420 -421q-8 -7 -18 -7 t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l297 297q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe174;" d="M1100 1000v-269l-103 -103l-134 134q-15 15 -33.5 16.5t-34.5 -12.5l-266 -266h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1202 572l70 -70q15 -15 15 -35.5t-15 -35.5l-131 -131 l131 -131q15 -15 15 -35.5t-15 -35.5l-70 -70q-15 -15 -35.5 -15t-35.5 15l-131 131l-131 -131q-15 -15 -35.5 -15t-35.5 15l-70 70q-15 15 -15 35.5t15 35.5l131 131l-131 131q-15 15 -15 35.5t15 35.5l70 70q15 15 35.5 15t35.5 -15l131 -131l131 131q15 15 35.5 15 t35.5 -15z" />
+<glyph unicode="&#xe175;" d="M1100 1000v-300h-350q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM850 600h100q21 0 35.5 -14.5t14.5 -35.5v-250h150q21 0 25 -10.5t-10 -24.5 l-230 -230q-14 -14 -35 -14t-35 14l-230 230q-14 14 -10 24.5t25 10.5h150v250q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe176;" d="M1100 1000v-400l-165 165q-14 15 -35 15t-35 -15l-263 -265h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM935 565l230 -229q14 -15 10 -25.5t-25 -10.5h-150v-250q0 -20 -14.5 -35 t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35v250h-150q-21 0 -25 10.5t10 25.5l230 229q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe177;" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-150h-1200v150q0 21 14.5 35.5t35.5 14.5zM1200 800v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v550h1200zM100 500v-200h400v200h-400z" />
+<glyph unicode="&#xe178;" d="M935 1165l248 -230q14 -14 14 -35t-14 -35l-248 -230q-14 -14 -24.5 -10t-10.5 25v150h-400v200h400v150q0 21 10.5 25t24.5 -10zM200 800h-50q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v-200zM400 800h-100v200h100v-200zM18 435l247 230 q14 14 24.5 10t10.5 -25v-150h400v-200h-400v-150q0 -21 -10.5 -25t-24.5 10l-247 230q-15 14 -15 35t15 35zM900 300h-100v200h100v-200zM1000 500h51q20 0 34.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-34.5 -14.5h-51v200z" />
+<glyph unicode="&#xe179;" d="M862 1073l276 116q25 18 43.5 8t18.5 -41v-1106q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v397q-4 1 -11 5t-24 17.5t-30 29t-24 42t-11 56.5v359q0 31 18.5 65t43.5 52zM550 1200q22 0 34.5 -12.5t14.5 -24.5l1 -13v-450q0 -28 -10.5 -59.5 t-25 -56t-29 -45t-25.5 -31.5l-10 -11v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447q-4 4 -11 11.5t-24 30.5t-30 46t-24 55t-11 60v450q0 2 0.5 5.5t4 12t8.5 15t14.5 12t22.5 5.5q20 0 32.5 -12.5t14.5 -24.5l3 -13v-350h100v350v5.5t2.5 12 t7 15t15 12t25.5 5.5q23 0 35.5 -12.5t13.5 -24.5l1 -13v-350h100v350q0 2 0.5 5.5t3 12t7 15t15 12t24.5 5.5z" />
+<glyph unicode="&#xe180;" d="M1200 1100v-56q-4 0 -11 -0.5t-24 -3t-30 -7.5t-24 -15t-11 -24v-888q0 -22 25 -34.5t50 -13.5l25 -2v-56h-400v56q75 0 87.5 6.5t12.5 43.5v394h-500v-394q0 -37 12.5 -43.5t87.5 -6.5v-56h-400v56q4 0 11 0.5t24 3t30 7.5t24 15t11 24v888q0 22 -25 34.5t-50 13.5 l-25 2v56h400v-56q-75 0 -87.5 -6.5t-12.5 -43.5v-394h500v394q0 37 -12.5 43.5t-87.5 6.5v56h400z" />
+<glyph unicode="&#xe181;" d="M675 1000h375q21 0 35.5 -14.5t14.5 -35.5v-150h-105l-295 -98v98l-200 200h-400l100 100h375zM100 900h300q41 0 70.5 -29.5t29.5 -70.5v-500q0 -41 -29.5 -70.5t-70.5 -29.5h-300q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5zM100 800v-200h300v200 h-300zM1100 535l-400 -133v163l400 133v-163zM100 500v-200h300v200h-300zM1100 398v-248q0 -21 -14.5 -35.5t-35.5 -14.5h-375l-100 -100h-375l-100 100h400l200 200h105z" />
+<glyph unicode="&#xe182;" d="M17 1007l162 162q17 17 40 14t37 -22l139 -194q14 -20 11 -44.5t-20 -41.5l-119 -118q102 -142 228 -268t267 -227l119 118q17 17 42.5 19t44.5 -12l192 -136q19 -14 22.5 -37.5t-13.5 -40.5l-163 -162q-3 -1 -9.5 -1t-29.5 2t-47.5 6t-62.5 14.5t-77.5 26.5t-90 42.5 t-101.5 60t-111 83t-119 108.5q-74 74 -133.5 150.5t-94.5 138.5t-60 119.5t-34.5 100t-15 74.5t-4.5 48z" />
+<glyph unicode="&#xe183;" d="M600 1100q92 0 175 -10.5t141.5 -27t108.5 -36.5t81.5 -40t53.5 -37t31 -27l9 -10v-200q0 -21 -14.5 -33t-34.5 -9l-202 34q-20 3 -34.5 20t-14.5 38v146q-141 24 -300 24t-300 -24v-146q0 -21 -14.5 -38t-34.5 -20l-202 -34q-20 -3 -34.5 9t-14.5 33v200q3 4 9.5 10.5 t31 26t54 37.5t80.5 39.5t109 37.5t141 26.5t175 10.5zM600 795q56 0 97 -9.5t60 -23.5t30 -28t12 -24l1 -10v-50l365 -303q14 -15 24.5 -40t10.5 -45v-212q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v212q0 20 10.5 45t24.5 40l365 303v50 q0 4 1 10.5t12 23t30 29t60 22.5t97 10z" />
+<glyph unicode="&#xe184;" d="M1100 700l-200 -200h-600l-200 200v500h200v-200h200v200h200v-200h200v200h200v-500zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5 t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe185;" d="M700 1100h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-1000h300v1000q0 41 -29.5 70.5t-70.5 29.5zM1100 800h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-700h300v700q0 41 -29.5 70.5t-70.5 29.5zM400 0h-300v400q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-400z " />
+<glyph unicode="&#xe186;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
+<glyph unicode="&#xe187;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 300h-100v200h-100v-200h-100v500h100v-200h100v200h100v-500zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
+<glyph unicode="&#xe188;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-300h200v-100h-300v500h300v-100zM900 700h-200v-300h200v-100h-300v500h300v-100z" />
+<glyph unicode="&#xe189;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 400l-300 150l300 150v-300zM900 550l-300 -150v300z" />
+<glyph unicode="&#xe190;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM900 300h-700v500h700v-500zM800 700h-130q-38 0 -66.5 -43t-28.5 -108t27 -107t68 -42h130v300zM300 700v-300 h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130z" />
+<glyph unicode="&#xe191;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 300h-100v400h-100v100h200v-500z M700 300h-100v100h100v-100z" />
+<glyph unicode="&#xe192;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM300 700h200v-400h-300v500h100v-100zM900 300h-100v400h-100v100h200v-500zM300 600v-200h100v200h-100z M700 300h-100v100h100v-100z" />
+<glyph unicode="&#xe193;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 500l-199 -200h-100v50l199 200v150h-200v100h300v-300zM900 300h-100v400h-100v100h200v-500zM701 300h-100 v100h100v-100z" />
+<glyph unicode="&#xe194;" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700h-300v-200h300v-100h-300l-100 100v200l100 100h300v-100z" />
+<glyph unicode="&#xe195;" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700v-100l-50 -50l100 -100v-50h-100l-100 100h-150v-100h-100v400h300zM500 700v-100h200v100h-200z" />
+<glyph unicode="&#xe197;" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -207t-85 -207t-205 -86.5h-128v250q0 21 -14.5 35.5t-35.5 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-250h-222q-80 0 -136 57.5t-56 136.5q0 69 43 122.5t108 67.5q-2 19 -2 37q0 100 49 185 t134 134t185 49zM525 500h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -244q-13 -16 -32 -16t-32 16l-223 244q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe198;" d="M502 1089q110 0 201 -59.5t135 -156.5q43 15 89 15q121 0 206 -86.5t86 -206.5q0 -99 -60 -181t-150 -110l-378 360q-13 16 -31.5 16t-31.5 -16l-381 -365h-9q-79 0 -135.5 57.5t-56.5 136.5q0 69 43 122.5t108 67.5q-2 19 -2 38q0 100 49 184.5t133.5 134t184.5 49.5z M632 467l223 -228q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5q199 204 223 228q19 19 31.5 19t32.5 -19z" />
+<glyph unicode="&#xe199;" d="M700 100v100h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170l-270 -300h400v-100h-50q-21 0 -35.5 -14.5t-14.5 -35.5v-50h400v50q0 21 -14.5 35.5t-35.5 14.5h-50z" />
+<glyph unicode="&#xe200;" d="M600 1179q94 0 167.5 -56.5t99.5 -145.5q89 -6 150.5 -71.5t61.5 -155.5q0 -61 -29.5 -112.5t-79.5 -82.5q9 -29 9 -55q0 -74 -52.5 -126.5t-126.5 -52.5q-55 0 -100 30v-251q21 0 35.5 -14.5t14.5 -35.5v-50h-300v50q0 21 14.5 35.5t35.5 14.5v251q-45 -30 -100 -30 q-74 0 -126.5 52.5t-52.5 126.5q0 18 4 38q-47 21 -75.5 65t-28.5 97q0 74 52.5 126.5t126.5 52.5q5 0 23 -2q0 2 -1 10t-1 13q0 116 81.5 197.5t197.5 81.5z" />
+<glyph unicode="&#xe201;" d="M1010 1010q111 -111 150.5 -260.5t0 -299t-150.5 -260.5q-83 -83 -191.5 -126.5t-218.5 -43.5t-218.5 43.5t-191.5 126.5q-111 111 -150.5 260.5t0 299t150.5 260.5q83 83 191.5 126.5t218.5 43.5t218.5 -43.5t191.5 -126.5zM476 1065q-4 0 -8 -1q-121 -34 -209.5 -122.5 t-122.5 -209.5q-4 -12 2.5 -23t18.5 -14l36 -9q3 -1 7 -1q23 0 29 22q27 96 98 166q70 71 166 98q11 3 17.5 13.5t3.5 22.5l-9 35q-3 13 -14 19q-7 4 -15 4zM512 920q-4 0 -9 -2q-80 -24 -138.5 -82.5t-82.5 -138.5q-4 -13 2 -24t19 -14l34 -9q4 -1 8 -1q22 0 28 21 q18 58 58.5 98.5t97.5 58.5q12 3 18 13.5t3 21.5l-9 35q-3 12 -14 19q-7 4 -15 4zM719.5 719.5q-49.5 49.5 -119.5 49.5t-119.5 -49.5t-49.5 -119.5t49.5 -119.5t119.5 -49.5t119.5 49.5t49.5 119.5t-49.5 119.5zM855 551q-22 0 -28 -21q-18 -58 -58.5 -98.5t-98.5 -57.5 q-11 -4 -17 -14.5t-3 -21.5l9 -35q3 -12 14 -19q7 -4 15 -4q4 0 9 2q80 24 138.5 82.5t82.5 138.5q4 13 -2.5 24t-18.5 14l-34 9q-4 1 -8 1zM1000 515q-23 0 -29 -22q-27 -96 -98 -166q-70 -71 -166 -98q-11 -3 -17.5 -13.5t-3.5 -22.5l9 -35q3 -13 14 -19q7 -4 15 -4 q4 0 8 1q121 34 209.5 122.5t122.5 209.5q4 12 -2.5 23t-18.5 14l-36 9q-3 1 -7 1z" />
+<glyph unicode="&#xe202;" d="M700 800h300v-380h-180v200h-340v-200h-380v755q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM700 300h162l-212 -212l-212 212h162v200h100v-200zM520 0h-395q-10 0 -17.5 7.5t-7.5 17.5v395zM1000 220v-195q0 -10 -7.5 -17.5t-17.5 -7.5h-195z" />
+<glyph unicode="&#xe203;" d="M700 800h300v-520l-350 350l-550 -550v1095q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM862 200h-162v-200h-100v200h-162l212 212zM480 0h-355q-10 0 -17.5 7.5t-7.5 17.5v55h380v-80zM1000 80v-55q0 -10 -7.5 -17.5t-17.5 -7.5h-155v80h180z" />
+<glyph unicode="&#xe204;" d="M1162 800h-162v-200h100l100 -100h-300v300h-162l212 212zM200 800h200q27 0 40 -2t29.5 -10.5t23.5 -30t7 -57.5h300v-100h-600l-200 -350v450h100q0 36 7 57.5t23.5 30t29.5 10.5t40 2zM800 400h240l-240 -400h-800l300 500h500v-100z" />
+<glyph unicode="&#xe205;" d="M650 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM1000 850v150q41 0 70.5 -29.5t29.5 -70.5v-800 q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-1 0 -20 4l246 246l-326 326v324q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM412 250l-212 -212v162h-200v100h200v162z" />
+<glyph unicode="&#xe206;" d="M450 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM800 850v150q41 0 70.5 -29.5t29.5 -70.5v-500 h-200v-300h200q0 -36 -7 -57.5t-23.5 -30t-29.5 -10.5t-40 -2h-600q-41 0 -70.5 29.5t-29.5 70.5v800q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM1212 250l-212 -212v162h-200v100h200v162z" />
+<glyph unicode="&#xe209;" d="M658 1197l637 -1104q23 -38 7 -65.5t-60 -27.5h-1276q-44 0 -60 27.5t7 65.5l637 1104q22 39 54 39t54 -39zM704 800h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM500 300v-100h200 v100h-200z" />
+<glyph unicode="&#xe210;" d="M425 1100h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM825 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM25 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5zM425 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5 v150q0 10 7.5 17.5t17.5 7.5zM25 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe211;" d="M700 1200h100v-200h-100v-100h350q62 0 86.5 -39.5t-3.5 -94.5l-66 -132q-41 -83 -81 -134h-772q-40 51 -81 134l-66 132q-28 55 -3.5 94.5t86.5 39.5h350v100h-100v200h100v100h200v-100zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100 h-950l138 100h-13q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe212;" d="M600 1300q40 0 68.5 -29.5t28.5 -70.5h-194q0 41 28.5 70.5t68.5 29.5zM443 1100h314q18 -37 18 -75q0 -8 -3 -25h328q41 0 44.5 -16.5t-30.5 -38.5l-175 -145h-678l-178 145q-34 22 -29 38.5t46 16.5h328q-3 17 -3 25q0 38 18 75zM250 700h700q21 0 35.5 -14.5 t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-150v-200l275 -200h-950l275 200v200h-150q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe213;" d="M600 1181q75 0 128 -53t53 -128t-53 -128t-128 -53t-128 53t-53 128t53 128t128 53zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13 l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe214;" d="M600 1300q47 0 92.5 -53.5t71 -123t25.5 -123.5q0 -78 -55.5 -133.5t-133.5 -55.5t-133.5 55.5t-55.5 133.5q0 62 34 143l144 -143l111 111l-163 163q34 26 63 26zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45 zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe215;" d="M600 1200l300 -161v-139h-300q0 -57 18.5 -108t50 -91.5t63 -72t70 -67.5t57.5 -61h-530q-60 83 -90.5 177.5t-30.5 178.5t33 164.5t87.5 139.5t126 96.5t145.5 41.5v-98zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100 h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe216;" d="M600 1300q41 0 70.5 -29.5t29.5 -70.5v-78q46 -26 73 -72t27 -100v-50h-400v50q0 54 27 100t73 72v78q0 41 29.5 70.5t70.5 29.5zM400 800h400q54 0 100 -27t72 -73h-172v-100h200v-100h-200v-100h200v-100h-200v-100h200q0 -83 -58.5 -141.5t-141.5 -58.5h-400 q-83 0 -141.5 58.5t-58.5 141.5v400q0 83 58.5 141.5t141.5 58.5z" />
+<glyph unicode="&#xe218;" d="M150 1100h900q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM125 400h950q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-283l224 -224q13 -13 13 -31.5t-13 -32 t-31.5 -13.5t-31.5 13l-88 88h-524l-87 -88q-13 -13 -32 -13t-32 13.5t-13 32t13 31.5l224 224h-289q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM541 300l-100 -100h324l-100 100h-124z" />
+<glyph unicode="&#xe219;" d="M200 1100h800q83 0 141.5 -58.5t58.5 -141.5v-200h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100v200q0 83 58.5 141.5t141.5 58.5zM100 600h1000q41 0 70.5 -29.5 t29.5 -70.5v-300h-1200v300q0 41 29.5 70.5t70.5 29.5zM300 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200zM1100 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200z" />
+<glyph unicode="&#xe221;" d="M480 1165l682 -683q31 -31 31 -75.5t-31 -75.5l-131 -131h-481l-517 518q-32 31 -32 75.5t32 75.5l295 296q31 31 75.5 31t76.5 -31zM108 794l342 -342l303 304l-341 341zM250 100h800q21 0 35.5 -14.5t14.5 -35.5v-50h-900v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe223;" d="M1057 647l-189 506q-8 19 -27.5 33t-40.5 14h-400q-21 0 -40.5 -14t-27.5 -33l-189 -506q-8 -19 1.5 -33t30.5 -14h625v-150q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5t14.5 35.5v150h125q21 0 30.5 14t1.5 33zM897 0h-595v50q0 21 14.5 35.5t35.5 14.5h50v50 q0 21 14.5 35.5t35.5 14.5h48v300h200v-300h47q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-50z" />
+<glyph unicode="&#xe224;" d="M900 800h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-375v591l-300 300v84q0 10 7.5 17.5t17.5 7.5h375v-400zM1200 900h-200v200zM400 600h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-650q-10 0 -17.5 7.5t-7.5 17.5v950q0 10 7.5 17.5t17.5 7.5h375v-400zM700 700h-200v200z " />
+<glyph unicode="&#xe225;" d="M484 1095h195q75 0 146 -32.5t124 -86t89.5 -122.5t48.5 -142q18 -14 35 -20q31 -10 64.5 6.5t43.5 48.5q10 34 -15 71q-19 27 -9 43q5 8 12.5 11t19 -1t23.5 -16q41 -44 39 -105q-3 -63 -46 -106.5t-104 -43.5h-62q-7 -55 -35 -117t-56 -100l-39 -234q-3 -20 -20 -34.5 t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l12 70q-49 -14 -91 -14h-195q-24 0 -65 8l-11 -64q-3 -20 -20 -34.5t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l26 157q-84 74 -128 175l-159 53q-19 7 -33 26t-14 40v50q0 21 14.5 35.5t35.5 14.5h124q11 87 56 166l-111 95 q-16 14 -12.5 23.5t24.5 9.5h203q116 101 250 101zM675 1000h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h250q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe226;" d="M641 900l423 247q19 8 42 2.5t37 -21.5l32 -38q14 -15 12.5 -36t-17.5 -34l-139 -120h-390zM50 1100h106q67 0 103 -17t66 -71l102 -212h823q21 0 35.5 -14.5t14.5 -35.5v-50q0 -21 -14 -40t-33 -26l-737 -132q-23 -4 -40 6t-26 25q-42 67 -100 67h-300q-62 0 -106 44 t-44 106v200q0 62 44 106t106 44zM173 928h-80q-19 0 -28 -14t-9 -35v-56q0 -51 42 -51h134q16 0 21.5 8t5.5 24q0 11 -16 45t-27 51q-18 28 -43 28zM550 727q-32 0 -54.5 -22.5t-22.5 -54.5t22.5 -54.5t54.5 -22.5t54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5zM130 389 l152 130q18 19 34 24t31 -3.5t24.5 -17.5t25.5 -28q28 -35 50.5 -51t48.5 -13l63 5l48 -179q13 -61 -3.5 -97.5t-67.5 -79.5l-80 -69q-47 -40 -109 -35.5t-103 51.5l-130 151q-40 47 -35.5 109.5t51.5 102.5zM380 377l-102 -88q-31 -27 2 -65l37 -43q13 -15 27.5 -19.5 t31.5 6.5l61 53q19 16 14 49q-2 20 -12 56t-17 45q-11 12 -19 14t-23 -8z" />
+<glyph unicode="&#xe227;" d="M625 1200h150q10 0 17.5 -7.5t7.5 -17.5v-109q79 -33 131 -87.5t53 -128.5q1 -46 -15 -84.5t-39 -61t-46 -38t-39 -21.5l-17 -6q6 0 15 -1.5t35 -9t50 -17.5t53 -30t50 -45t35.5 -64t14.5 -84q0 -59 -11.5 -105.5t-28.5 -76.5t-44 -51t-49.5 -31.5t-54.5 -16t-49.5 -6.5 t-43.5 -1v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-100v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-175q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v600h-75q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5h175v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h100v75q0 10 7.5 17.5t17.5 7.5zM400 900v-200h263q28 0 48.5 10.5t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-263zM400 500v-200h363q28 0 48.5 10.5 t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-363z" />
+<glyph unicode="&#xe230;" d="M212 1198h780q86 0 147 -61t61 -147v-416q0 -51 -18 -142.5t-36 -157.5l-18 -66q-29 -87 -93.5 -146.5t-146.5 -59.5h-572q-82 0 -147 59t-93 147q-8 28 -20 73t-32 143.5t-20 149.5v416q0 86 61 147t147 61zM600 1045q-70 0 -132.5 -11.5t-105.5 -30.5t-78.5 -41.5 t-57 -45t-36 -41t-20.5 -30.5l-6 -12l156 -243h560l156 243q-2 5 -6 12.5t-20 29.5t-36.5 42t-57 44.5t-79 42t-105 29.5t-132.5 12zM762 703h-157l195 261z" />
+<glyph unicode="&#xe231;" d="M475 1300h150q103 0 189 -86t86 -189v-500q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
+<glyph unicode="&#xe232;" d="M475 1300h96q0 -150 89.5 -239.5t239.5 -89.5v-446q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
+<glyph unicode="&#xe233;" d="M1294 767l-638 -283l-378 170l-78 -60v-224l100 -150v-199l-150 148l-150 -149v200l100 150v250q0 4 -0.5 10.5t0 9.5t1 8t3 8t6.5 6l47 40l-147 65l642 283zM1000 380l-350 -166l-350 166v147l350 -165l350 165v-147z" />
+<glyph unicode="&#xe234;" d="M250 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM650 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM1050 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
+<glyph unicode="&#xe235;" d="M550 1100q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 700q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 300q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
+<glyph unicode="&#xe236;" d="M125 1100h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM125 700h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM125 300h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe237;" d="M350 1200h500q162 0 256 -93.5t94 -256.5v-500q0 -165 -93.5 -257.5t-256.5 -92.5h-500q-165 0 -257.5 92.5t-92.5 257.5v500q0 165 92.5 257.5t257.5 92.5zM900 1000h-600q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h600q41 0 70.5 29.5 t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5zM350 900h500q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-500q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 14.5 35.5t35.5 14.5zM400 800v-200h400v200h-400z" />
+<glyph unicode="&#xe238;" d="M150 1100h1000q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe239;" d="M650 1187q87 -67 118.5 -156t0 -178t-118.5 -155q-87 66 -118.5 155t0 178t118.5 156zM300 800q124 0 212 -88t88 -212q-124 0 -212 88t-88 212zM1000 800q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM300 500q124 0 212 -88t88 -212q-124 0 -212 88t-88 212z M1000 500q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM700 199v-144q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v142q40 -4 43 -4q17 0 57 6z" />
+<glyph unicode="&#xe240;" d="M745 878l69 19q25 6 45 -12l298 -295q11 -11 15 -26.5t-2 -30.5q-5 -14 -18 -23.5t-28 -9.5h-8q1 0 1 -13q0 -29 -2 -56t-8.5 -62t-20 -63t-33 -53t-51 -39t-72.5 -14h-146q-184 0 -184 288q0 24 10 47q-20 4 -62 4t-63 -4q11 -24 11 -47q0 -288 -184 -288h-142 q-48 0 -84.5 21t-56 51t-32 71.5t-16 75t-3.5 68.5q0 13 2 13h-7q-15 0 -27.5 9.5t-18.5 23.5q-6 15 -2 30.5t15 25.5l298 296q20 18 46 11l76 -19q20 -5 30.5 -22.5t5.5 -37.5t-22.5 -31t-37.5 -5l-51 12l-182 -193h891l-182 193l-44 -12q-20 -5 -37.5 6t-22.5 31t6 37.5 t31 22.5z" />
+<glyph unicode="&#xe241;" d="M1200 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM500 450h-25q0 15 -4 24.5t-9 14.5t-17 7.5t-20 3t-25 0.5h-100v-425q0 -11 12.5 -17.5t25.5 -7.5h12v-50h-200v50q50 0 50 25v425h-100q-17 0 -25 -0.5t-20 -3t-17 -7.5t-9 -14.5t-4 -24.5h-25v150h500v-150z" />
+<glyph unicode="&#xe242;" d="M1000 300v50q-25 0 -55 32q-14 14 -25 31t-16 27l-4 11l-289 747h-69l-300 -754q-18 -35 -39 -56q-9 -9 -24.5 -18.5t-26.5 -14.5l-11 -5v-50h273v50q-49 0 -78.5 21.5t-11.5 67.5l69 176h293l61 -166q13 -34 -3.5 -66.5t-55.5 -32.5v-50h312zM412 691l134 342l121 -342 h-255zM1100 150v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5z" />
+<glyph unicode="&#xe243;" d="M50 1200h1100q21 0 35.5 -14.5t14.5 -35.5v-1100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5zM611 1118h-70q-13 0 -18 -12l-299 -753q-17 -32 -35 -51q-18 -18 -56 -34q-12 -5 -12 -18v-50q0 -8 5.5 -14t14.5 -6 h273q8 0 14 6t6 14v50q0 8 -6 14t-14 6q-55 0 -71 23q-10 14 0 39l63 163h266l57 -153q11 -31 -6 -55q-12 -17 -36 -17q-8 0 -14 -6t-6 -14v-50q0 -8 6 -14t14 -6h313q8 0 14 6t6 14v50q0 7 -5.5 13t-13.5 7q-17 0 -42 25q-25 27 -40 63h-1l-288 748q-5 12 -19 12zM639 611 h-197l103 264z" />
+<glyph unicode="&#xe244;" d="M1200 1100h-1200v100h1200v-100zM50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 1000h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM700 900v-300h300v300h-300z" />
+<glyph unicode="&#xe245;" d="M50 1200h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 700h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM700 600v-300h300v300h-300zM1200 0h-1200v100h1200v-100z" />
+<glyph unicode="&#xe246;" d="M50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-350h100v150q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-150h100v-100h-100v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v150h-100v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM700 700v-300h300v300h-300z" />
+<glyph unicode="&#xe247;" d="M100 0h-100v1200h100v-1200zM250 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM300 1000v-300h300v300h-300zM250 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe248;" d="M600 1100h150q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-100h450q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h350v100h-150q-21 0 -35.5 14.5 t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h150v100h100v-100zM400 1000v-300h300v300h-300z" />
+<glyph unicode="&#xe249;" d="M1200 0h-100v1200h100v-1200zM550 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM600 1000v-300h300v300h-300zM50 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe250;" d="M865 565l-494 -494q-23 -23 -41 -23q-14 0 -22 13.5t-8 38.5v1000q0 25 8 38.5t22 13.5q18 0 41 -23l494 -494q14 -14 14 -35t-14 -35z" />
+<glyph unicode="&#xe251;" d="M335 635l494 494q29 29 50 20.5t21 -49.5v-1000q0 -41 -21 -49.5t-50 20.5l-494 494q-14 14 -14 35t14 35z" />
+<glyph unicode="&#xe252;" d="M100 900h1000q41 0 49.5 -21t-20.5 -50l-494 -494q-14 -14 -35 -14t-35 14l-494 494q-29 29 -20.5 50t49.5 21z" />
+<glyph unicode="&#xe253;" d="M635 865l494 -494q29 -29 20.5 -50t-49.5 -21h-1000q-41 0 -49.5 21t20.5 50l494 494q14 14 35 14t35 -14z" />
+<glyph unicode="&#xe254;" d="M700 741v-182l-692 -323v221l413 193l-413 193v221zM1200 0h-800v200h800v-200z" />
+<glyph unicode="&#xe255;" d="M1200 900h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300zM0 700h50q0 21 4 37t9.5 26.5t18 17.5t22 11t28.5 5.5t31 2t37 0.5h100v-550q0 -22 -25 -34.5t-50 -13.5l-25 -2v-100h400v100q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v550h100q25 0 37 -0.5t31 -2 t28.5 -5.5t22 -11t18 -17.5t9.5 -26.5t4 -37h50v300h-800v-300z" />
+<glyph unicode="&#xe256;" d="M800 700h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-100v-550q0 -22 25 -34.5t50 -14.5l25 -1v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v550h-100q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h800v-300zM1100 200h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300z" />
+<glyph unicode="&#xe257;" d="M701 1098h160q16 0 21 -11t-7 -23l-464 -464l464 -464q12 -12 7 -23t-21 -11h-160q-13 0 -23 9l-471 471q-7 8 -7 18t7 18l471 471q10 9 23 9z" />
+<glyph unicode="&#xe258;" d="M339 1098h160q13 0 23 -9l471 -471q7 -8 7 -18t-7 -18l-471 -471q-10 -9 -23 -9h-160q-16 0 -21 11t7 23l464 464l-464 464q-12 12 -7 23t21 11z" />
+<glyph unicode="&#xe259;" d="M1087 882q11 -5 11 -21v-160q0 -13 -9 -23l-471 -471q-8 -7 -18 -7t-18 7l-471 471q-9 10 -9 23v160q0 16 11 21t23 -7l464 -464l464 464q12 12 23 7z" />
+<glyph unicode="&#xe260;" d="M618 993l471 -471q9 -10 9 -23v-160q0 -16 -11 -21t-23 7l-464 464l-464 -464q-12 -12 -23 -7t-11 21v160q0 13 9 23l471 471q8 7 18 7t18 -7z" />
+<glyph unicode="&#xf8ff;" d="M1000 1200q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM450 1000h100q21 0 40 -14t26 -33l79 -194q5 1 16 3q34 6 54 9.5t60 7t65.5 1t61 -10t56.5 -23t42.5 -42t29 -64t5 -92t-19.5 -121.5q-1 -7 -3 -19.5t-11 -50t-20.5 -73t-32.5 -81.5t-46.5 -83t-64 -70 t-82.5 -50q-13 -5 -42 -5t-65.5 2.5t-47.5 2.5q-14 0 -49.5 -3.5t-63 -3.5t-43.5 7q-57 25 -104.5 78.5t-75 111.5t-46.5 112t-26 90l-7 35q-15 63 -18 115t4.5 88.5t26 64t39.5 43.5t52 25.5t58.5 13t62.5 2t59.5 -4.5t55.5 -8l-147 192q-12 18 -5.5 30t27.5 12z" />
+<glyph unicode="&#x1f511;" d="M250 1200h600q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-500l-255 -178q-19 -9 -32 -1t-13 29v650h-150q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM400 1100v-100h300v100h-300z" />
+<glyph unicode="&#x1f6aa;" d="M250 1200h750q39 0 69.5 -40.5t30.5 -84.5v-933l-700 -117v950l600 125h-700v-1000h-100v1025q0 23 15.5 49t34.5 26zM500 525v-100l100 20v100z" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/fonts/glyphicons-halflings-regular.ttf b/fonts/glyphicons-halflings-regular.ttf
new file mode 100644
index 0000000000000000000000000000000000000000..1413fc609ab6f21774de0cb7e01360095584f65b
Binary files /dev/null and b/fonts/glyphicons-halflings-regular.ttf differ
diff --git a/fonts/glyphicons-halflings-regular.woff b/fonts/glyphicons-halflings-regular.woff
new file mode 100644
index 0000000000000000000000000000000000000000..9e612858f802245ddcbf59788a0db942224bab35
Binary files /dev/null and b/fonts/glyphicons-halflings-regular.woff differ
diff --git a/fonts/glyphicons-halflings-regular.woff2 b/fonts/glyphicons-halflings-regular.woff2
new file mode 100644
index 0000000000000000000000000000000000000000..64539b54c3751a6d9adb44c8e3a45ba5a73b77f0
Binary files /dev/null and b/fonts/glyphicons-halflings-regular.woff2 differ
diff --git a/images/androidsdkmanagericon.png b/images/androidsdkmanagericon.png
new file mode 100644
index 0000000000000000000000000000000000000000..65014a26040069aef54ec8ac0911f43fe5ea395b
Binary files /dev/null and b/images/androidsdkmanagericon.png differ
diff --git a/images/authorizegithubscreen2.png b/images/authorizegithubscreen2.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f6b6ca0fa5c2b26d07ab65c9592c2a78d30eaeb
Binary files /dev/null and b/images/authorizegithubscreen2.png differ
diff --git a/images/authorizeongithub.png b/images/authorizeongithub.png
new file mode 100644
index 0000000000000000000000000000000000000000..9380f80c30548b92e8e31e5e5328c20069607237
Binary files /dev/null and b/images/authorizeongithub.png differ
diff --git a/images/favicon.ico b/images/favicon.ico
new file mode 100644
index 0000000000000000000000000000000000000000..0d505bed3c3a9383ed47dea35eaef9ec86ef57e1
Binary files /dev/null and b/images/favicon.ico differ
diff --git a/images/helpapi-01.png b/images/helpapi-01.png
new file mode 100644
index 0000000000000000000000000000000000000000..51308a163de73618c31bca58ede44cdfbc7d9929
Binary files /dev/null and b/images/helpapi-01.png differ
diff --git a/images/helpapi.svg b/images/helpapi.svg
new file mode 100644
index 0000000000000000000000000000000000000000..0ddc9227e52b80361cd9a65b3567a04b52704ce4
--- /dev/null
+++ b/images/helpapi.svg
@@ -0,0 +1,1661 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+    viewBox="0 0 1200 900" enable-background="new 0 0 1200 900" xml:space="preserve">
+<g id="Layer_1">
+   <rect fill="#9CCFEF" stroke="#000000" stroke-miterlimit="10" width="1200" height="900"/>
+</g>
+<g id="Layer_2">
+   <line fill="none" stroke="#5E5E5D" stroke-width="3" stroke-miterlimit="10" x1="470.4" y1="254.4" x2="197.8" y2="493.7"/>
+   <line fill="none" stroke="#5E5E5D" stroke-width="3" stroke-miterlimit="10" x1="740.8" y1="344.8" x2="890.8" y2="596.4"/>
+   <line fill="none" stroke="#5E5E5D" stroke-width="3" stroke-miterlimit="10" x1="801.2" y1="269.8" x2="1028.5" y2="426.2"/>
+   <g>
+      <g>
+         <path fill="#F2F2F2" d="M329.4,609.5c0,5.5-4.5,10-10,10H116c-5.5,0-10-4.5-10-10V503.7c0-5.5,4.5-10,10-10h203.4
+            c5.5,0,10,4.5,10,10V609.5z"/>
+         <path fill="none" stroke="#464747" stroke-width="22" stroke-miterlimit="10" d="M329.4,609.5c0,5.5-4.5,10-10,10H116
+            c-5.5,0-10-4.5-10-10V503.7c0-5.5,4.5-10,10-10h203.4c5.5,0,10,4.5,10,10V609.5z"/>
+      </g>
+      <rect x="124.7" y="523.8" fill="none" width="193.6" height="73.9"/>
+      <text transform="matrix(1 0 0 1 124.7476 533.7126)"><tspan x="0" y="0" font-family="'MyriadPro-Regular'" font-size="14">sample help text sample help </tspan><tspan x="0" y="16.8" font-family="'MyriadPro-Regular'" font-size="14">text sample help text sample </tspan><tspan x="0" y="33.6" font-family="'MyriadPro-Regular'" font-size="14">help text sample help text </tspan><tspan x="0" y="50.4" font-family="'MyriadPro-Regular'" font-size="14">sample help text sample help </tspan></text>
+   </g>
+   <radialGradient id="SVGID_1_" cx="329.75" cy="558.375" r="6.875" gradientUnits="userSpaceOnUse">
+      <stop  offset="0" style="stop-color:#7A7A7A"/>
+      <stop  offset="0.1457" style="stop-color:#767676"/>
+      <stop  offset="0.3151" style="stop-color:#676767"/>
+      <stop  offset="0.4963" style="stop-color:#505050"/>
+      <stop  offset="0.6857" style="stop-color:#303030"/>
+      <stop  offset="0.8799" style="stop-color:#060606"/>
+      <stop  offset="0.9053" style="stop-color:#000000"/>
+   </radialGradient>
+   <circle fill="url(#SVGID_1_)" cx="329.8" cy="558.4" r="6.9"/>
+   <g>
+      <g>
+         <path fill="#050505" d="M590.2,815.3c-14.1-4.7-17.6-35.3-17.6-35.3c-0.6-5.5-4.4-9.9-8.4-10s-7.2,0-7.2-0.1c0,0-1,0-2.2,0
+            c-1.2,0-3.2,0-4.5,0c-1.2,0-2.3,0-2.3,0s-3.1,0-7,0.1c-3.8,0-7.5,4.5-8.1,10c0,0-3.4,30.6-17.4,35.3s-35.2,8.1-35.2,8.1
+            c-5.4,0.9-5.4,1.6,0.1,1.6H538c5.5,0,12,0,14.5,0s9,0,14.5,0h58.5c5.5,0,5.6-0.7,0.1-1.6C625.6,823.4,604.2,820,590.2,815.3z"/>
+      </g>
+      <g>
+         <path fill="#F2F2F2" d="M663,765.3c0,5.5-4.5,10-10,10H449.5c-5.5,0-10-4.5-10-10V622.1c0-5.5,4.5-10,10-10H653
+            c5.5,0,10,4.5,10,10V765.3z"/>
+         <path fill="none" stroke="#464747" stroke-width="5" stroke-miterlimit="10" d="M663,765.3c0,5.5-4.5,10-10,10H449.5
+            c-5.5,0-10-4.5-10-10V622.1c0-5.5,4.5-10,10-10H653c5.5,0,10,4.5,10,10V765.3z"/>
+      </g>
+   </g>
+   <rect x="461.5" y="630.6" fill="#CDF9F8" stroke="#565656" stroke-miterlimit="10" width="180.9" height="128"/>
+   <rect x="470.4" y="636.3" fill="none" width="172" height="121.2"/>
+   <text transform="matrix(1 0 0 1 470.4375 647.7349)"><tspan x="0" y="0" font-family="'ArialMT'" font-size="16">Getting Started </tspan><tspan x="0" y="19.2" font-family="'MyriadPro-Regular'" font-size="16">text sample help text </tspan><tspan x="0" y="38.4" font-family="'MyriadPro-Regular'" font-size="16">sample help text sample </tspan><tspan x="0" y="57.6" font-family="'MyriadPro-Regular'" font-size="16">help text sample help </tspan><tspan x="0" y="76.8" font-family="'MyriadPro-Regular'" font-size="16">text sample help text </tspan><tspan x="0" y="96" font-family="'MyriadPro-Regular'" font-size="16">sample help text sample </tspan></text>
+   <g>
+      <g>
+         <g>
+            <path fill="#050505" d="M976.4,778.4c-16.3-4.1-20.3-30.1-20.3-30.1c-0.8-5.4-5.3-9.9-9.9-9.9c-4.6,0-8.4,0-8.4-0.1
+               c0,0-1.2,0-2.6,0c-1.4,0-3.8,0-5.2,0c-1.5,0-2.6,0-2.6,0s-3.7,0-8.1,0.1c-4.5,0-8.8,4.5-9.5,9.9c0,0-3.7,26-20.1,30.1
+               c-16.3,4.1-42.5,7.4-42.5,7.4c-5.5,0.7-5.4,1.2,0.1,1.2h70.2c5.5,0,12.4,0,15.2,0c2.9,0,9.7,0,15.2,0h71.2
+               c5.5,0,5.5-0.5,0.1-1.2C1019.1,785.8,992.7,782.6,976.4,778.4z"/>
+         </g>
+         <g>
+            <path fill="#F2F2F2" d="M1061,733c0,5.5-4.5,10-10,10H811.2c-5.5,0-10-4.5-10-10V608.6c0-5.5,4.5-10,10-10H1051
+               c5.5,0,10,4.5,10,10V733z"/>
+            <path fill="none" stroke="#464747" stroke-width="5" stroke-miterlimit="10" d="M1061,733c0,5.5-4.5,10-10,10H811.2
+               c-5.5,0-10-4.5-10-10V608.6c0-5.5,4.5-10,10-10H1051c5.5,0,10,4.5,10,10V733z"/>
+         </g>
+      </g>
+      <rect x="811" y="606.8" fill="#F4E8C6" stroke="#565656" stroke-miterlimit="10" width="239.4" height="128"/>
+      <rect x="820.4" y="615.6" fill="none" width="220.6" height="110.5"/>
+      <text transform="matrix(1 0 0 1 820.4385 628.4581)"><tspan x="0" y="0" font-family="'ArialMT'" font-size="18">Learning Course</tspan><tspan x="0" y="21.6" font-family="'MyriadPro-Regular'" font-size="18">sample help text sample help </tspan><tspan x="0" y="43.2" font-family="'MyriadPro-Regular'" font-size="18">text sample help text sample </tspan><tspan x="0" y="64.8" font-family="'MyriadPro-Regular'" font-size="18">help text sample help text </tspan><tspan x="0" y="86.4" font-family="'MyriadPro-Regular'" font-size="18">sample help text sample help </tspan></text>
+   </g>
+   <g>
+      <path fill="#1E1E1E" d="M1080.8,544.5h-52.3c-4,0-7.2-3.2-7.2-7.2V433.4c0-4,3.2-7.2,7.2-7.2h52.3c4,0,7.2,3.2,7.2,7.2v103.8
+         C1088.1,541.2,1084.8,544.5,1080.8,544.5z"/>
+      <path fill="none" stroke="#565656" stroke-miterlimit="10" d="M1080.8,544.5h-52.3c-4,0-7.2-3.2-7.2-7.2V433.4
+         c0-4,3.2-7.2,7.2-7.2h52.3c4,0,7.2,3.2,7.2,7.2v103.8C1088.1,541.2,1084.8,544.5,1080.8,544.5z"/>
+   </g>
+   <path fill="#EAEAE8" stroke="#565656" stroke-miterlimit="10" d="M1081.5,525.8H1028c-0.8,0-1.5-0.7-1.5-1.5v-82.1
+      c0-0.8,0.7-1.5,1.5-1.5h53.5c0.8,0,1.5,0.7,1.5,1.5v82.1C1083,525.1,1082.3,525.8,1081.5,525.8z"/>
+   <radialGradient id="SVGID_2_" cx="1054.7556" cy="534.3206" r="5.6067" gradientUnits="userSpaceOnUse">
+      <stop  offset="0" style="stop-color:#000000"/>
+      <stop  offset="0.2375" style="stop-color:#030303"/>
+      <stop  offset="0.4133" style="stop-color:#0C0C0C"/>
+      <stop  offset="0.569" style="stop-color:#1C1C1C"/>
+      <stop  offset="0.7133" style="stop-color:#333333"/>
+      <stop  offset="0.8496" style="stop-color:#505050"/>
+      <stop  offset="0.9782" style="stop-color:#747474"/>
+      <stop  offset="1" style="stop-color:#7A7A7A"/>
+   </radialGradient>
+   <path fill="url(#SVGID_2_)" stroke="#565656" stroke-miterlimit="10" d="M1054.8,539.9L1054.8,539.9c-3.1,0-5.6-2.5-5.6-5.6l0,0
+      c0-3.1,2.5-5.6,5.6-5.6l0,0c3.1,0,5.6,2.5,5.6,5.6l0,0C1060.4,537.4,1057.8,539.9,1054.8,539.9z"/>
+   <rect x="1030.9" y="444" fill="none" width="52.3" height="76.1"/>
+   <text transform="matrix(1 0 0 1 1030.9103 449.4799)"><tspan x="0" y="0" font-family="'MyriadPro-Regular'" font-size="7.6892">sample help </tspan><tspan x="0" y="9.2" font-family="'MyriadPro-Regular'" font-size="7.6892">text sample </tspan><tspan x="0" y="18.5" font-family="'MyriadPro-Regular'" font-size="7.6892">help text </tspan><tspan x="0" y="27.7" font-family="'MyriadPro-Regular'" font-size="7.6892">sample help </tspan><tspan x="0" y="36.9" font-family="'MyriadPro-Regular'" font-size="7.6892">text sample </tspan><tspan x="0" y="46.1" font-family="'MyriadPro-Regular'" font-size="7.6892">help text </tspan><tspan x="0" y="55.4" font-family="'MyriadPro-Regular'" font-size="7.6892">sample help </tspan><tspan x="0" y="64.6" font-family="'MyriadPro-Regular'" font-size="7.6892">text sample </tspan></text>
+   <g>
+
+         <image overflow="visible" opacity="0.75" width="518" height="361" xlink:href="data:image/png;base64,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" transform="matrix(1 0 0 1 391 57)">
+      </image>
+      <g>
+
+            <image overflow="visible" opacity="0.75" width="490" height="335" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAeoAAAFPCAYAAACCvI1nAAAACXBIWXMAAAsSAAALEgHS3X78AAAA
+GXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAABB39JREFUeNrsvd2SJMW17+nL3SMi
+P7u6gGqQTIw0sr2xOWD7Shdzc8y2HuDc8grzGsBrnFfgdh6gt9nYmJ0LXW2DY8aWybYGHQko6Oqi
+KiszI8J9zX8t94iMrK6GBgGiu90h2yO/IiOzIvzn/+Xrw5jSSiuttNJKK6200korrbTSSivtuzcq
+P0Fppf2jrz0+6r7/no4uZy4/cWmlvRjNl5+gtNJ+CiDzN6JTnvrggw++18T5PX6P6Uk20/EWFYCX
+VlpR1KWVVq6np0IZEH7/gFb996O3P7x1/b07bp1//PDw3L/m/t8Orzx7+/eTT/jwaC/vfPxufu4D
+/Vc/9733+MkjLfAurbQC6tJKe+Gvn1tQHoF8F4zfTQAGeH+Pe3/9ZJ2e+1169uJP87uvx3dy/9Hd
+B3H62206gj+k+79864ofZrAnoH94J8SfAPgB3gXcpZVWQF1aaS8GmN8fzdXvTaB8APJbExgPIH5j
+9Wf0/2yuPv8Lmd/8xmzO/0a/wuObi5rMLw/73l58def1OT999XAEfzVmedryX7C5PPsFm//8T7N+
+/Vd4/j/MZ9e/5hHkGeKfAOK3AZ7gndV3AXdppRVQl1bacw3niWIewHz+8dkRlC9OByDXNIXx6bym
+BOCKdrNHtL6qyLxmzP7K0yuvoL/2+nxbXaG//y2H9djU3VqPqln1/OgR+nXP5ktjrtYdz3av8Py0
+0+cvti1PIf7ZdZsAfpGU+AHe5zwF95HiLtAurbQC6tJK+9ldG8zHcH4PcP5Q4AzFfPaQFMxZKYtK
+vvp8Tptlk9QxoLytK1pfeto1F7SvPC0B4rZyNL+51r7zjmY76W+oR79crUy/25JZGtPv7Tdem76J
+bDboZ3PeXF+jD1z1C95pH7juAm8XK+03AHnT9Tzbn/LVSc/ztuPlNqvwzZ7Xr29Z1PegvAXcZ+dJ
+cb/zLqD9gaxzfzCBdlnbLq20AurSSvsZqOdk1k7KeaqaRTFff/Znen2dwCxKWVTyeiZQduT311aB
+jNvmq62dKZQtNQDzDgSunaUe923f2tBaqnA/uD3J9mw2M33XUnQtPnv2lMPcGRtq9lXNu93OuDqy
+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
+lF8EGABklz789jrEhQAAAABJRU5ErkJggg==" transform="matrix(1 0 0 1 405 70)">
+         </image>
+         <g>
+            <path fill="#F0F1F2" d="M872.2,193.7c0-33.9-36.1-61.5-80.6-61.5c-14.4,0-27.9,2.9-39.6,7.9c1.7-3.4,2.6-7.2,2.6-11.1
+               c0-16-15.2-28.9-34-28.9c-9.1,0-17.3,3-23.4,8C681,90,657.8,78.6,632.1,78.6c-23.7,0-45.3,9.7-61.3,25.5
+               c-10.6-3.9-22.2-6-34.4-6c-48,0-86.8,32.9-86.8,73.4c0,7.8,1.4,15.3,4.1,22.4c-24.5,12-40.3,31.1-40.3,52.7
+               c0,19.4,12.9,36.9,33.3,48.9c-6.4,6.6-10.1,14.5-10.1,23c0,23.3,28,42.2,62.6,42.2c20.3,0,38.4-6.5,49.8-16.6
+               c15.8,11.5,35.7,18.4,57.3,18.4c20.7,0,39.7-6.3,55.2-16.9c3.3,21.1,24.6,37.4,50.4,37.4c25.7,0,46.9-16.1,50.4-37
+               c49.6-6.5,87-35,87-69.3c0-11.6-4.3-22.6-12-32.3C858.4,233.3,872.2,214.7,872.2,193.7z"/>
+         </g>
+      </g>
+   </g>
+   <rect x="525.6" y="205.9" fill="none" width="234.4" height="96.9"/>
+   <text transform="matrix(1 0 0 1 525.5938 241.437)" font-family="'MyriadPro-Regular'" font-size="50">Help API</text>
+   <line fill="none" stroke="#5E5E5D" stroke-width="3" stroke-miterlimit="10" x1="585.2" y1="360.2" x2="554.8" y2="605.7"/>
+   <path id="SVGID_x5F_3_x5F_" fill="none" d="M271,410.2l134.7-113.7"/>
+   <text>   <textPath  xlink:href="#SVGID_x5F_3_x5F_" startOffset="18.213%">
+<tspan  font-family="'ArialMT'" font-size="18">pulling from API</tspan>   </textPath>
+</text>
+   <path id="SVGID_x5F_4_x5F_" fill="none" d="M554.1,542.3l23-175"/>
+   <text>   <textPath  xlink:href="#SVGID_x5F_4_x5F_" startOffset="0.22%">
+<tspan  font-family="'ArialMT'" font-size="18">pulling from API</tspan>   </textPath>
+</text>
+   <path id="SVGID_x5F_5_x5F_" fill="none" d="M870.3,307.5l144.5,101.4"/>
+   <text>   <textPath  xlink:href="#SVGID_x5F_5_x5F_" startOffset="0.22%">
+<tspan  font-family="'ArialMT'" font-size="18">pulling from API</tspan>   </textPath>
+</text>
+   <path id="SVGID_x5F_6_x5F_" fill="none" d="M781.2,394.3l88.7,152.6"/>
+   <text>   <textPath  xlink:href="#SVGID_x5F_6_x5F_" startOffset="0.22%">
+<tspan  font-family="'ArialMT'" font-size="18">pulling from API</tspan>   </textPath>
+</text>
+   <polygon points="263.5,398.9 270.5,405.9 277.6,412.9 268,415.5 258.4,418.1 261,408.5    "/>
+   <polygon points="556.4,557.7 550.2,565.5 543.9,573.2 540.4,563.9 536.8,554.6 546.6,556.2    "/>
+   <polygon points="864.2,506.2 864.1,516.2 864,526.1 855.4,521 846.9,515.9 855.5,511.1    "/>
+   <polygon points="979.7,389.2 985.5,381.1 991.2,373 995.3,382 999.5,391 989.6,390.1    "/>
+   <rect x="149.7" y="645.1" fill="none" width="136" height="33"/>
+   <text transform="matrix(1 0 0 1 149.7164 663.7129)" font-family="'ArialMT'" font-size="26">website #1</text>
+   <rect x="488.4" y="837.1" fill="none" width="136" height="33"/>
+   <text transform="matrix(1 0 0 1 488.429 855.7129)" font-family="'ArialMT'" font-size="26">website #2</text>
+   <rect x="982.4" y="556.7" fill="none" width="136" height="33"/>
+   <text transform="matrix(1 0 0 1 982.4254 575.2835)" font-family="'ArialMT'" font-size="26">website #4</text>
+   <rect x="868.7" y="804.1" fill="none" width="136" height="33"/>
+   <text transform="matrix(1 0 0 1 868.7164 822.7129)" font-family="'ArialMT'" font-size="26">website #3</text>
+</g>
+</svg>
diff --git a/images/illustratoroptions.png b/images/illustratoroptions.png
new file mode 100644
index 0000000000000000000000000000000000000000..d043971ddb8d505172d681cd476661d188f2619d
Binary files /dev/null and b/images/illustratoroptions.png differ
diff --git a/images/itermexample.png b/images/itermexample.png
new file mode 100644
index 0000000000000000000000000000000000000000..e412af02a2661e95ded0084b458b59bd31f2245b
Binary files /dev/null and b/images/itermexample.png differ
diff --git a/images/jekyll.png b/images/jekyll.png
new file mode 100644
index 0000000000000000000000000000000000000000..ebaf27d0e452a804976eb35a12251222153df15f
Binary files /dev/null and b/images/jekyll.png differ
diff --git a/images/killalljekyll.png b/images/killalljekyll.png
new file mode 100644
index 0000000000000000000000000000000000000000..aa8adaa2a6ff3b09f20fee4d0757e423a38c6103
Binary files /dev/null and b/images/killalljekyll.png differ
diff --git a/images/liningup.png b/images/liningup.png
new file mode 100644
index 0000000000000000000000000000000000000000..ede4dc07c55ab33b1da6bdef9ef3137c23b77e7c
Binary files /dev/null and b/images/liningup.png differ
diff --git a/images/workflowarrow.png b/images/workflowarrow.png
new file mode 100644
index 0000000000000000000000000000000000000000..91a3e816183d8ec1c986cd042623e34845bef599
Binary files /dev/null and b/images/workflowarrow.png differ
diff --git a/index.html b/index.html
deleted file mode 100644
index 83d9398518bdf1519b7b8fbbb3fa3e305a8554ef..0000000000000000000000000000000000000000
--- a/index.html
+++ /dev/null
@@ -1,23 +0,0 @@
----
-layout: default
----
-
-<div class="home">
-
-  <h1 class="page-heading">Posts</h1>
-
-  <ul class="post-list">
-    {% for post in site.posts %}
-      <li>
-        <span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
-
-        <h2>
-          <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
-        </h2>
-      </li>
-    {% endfor %}
-  </ul>
-
-  <p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
-
-</div>
diff --git a/index.md b/index.md
new file mode 100644
index 0000000000000000000000000000000000000000..ad09628c29b26f08b47c4606cc0dc165d229231a
--- /dev/null
+++ b/index.md
@@ -0,0 +1,410 @@
+---
+title: "Getting started with the Documentation Theme for Jekyll"
+keywords: sample homepage
+tags: [getting_started]
+sidebar: mydoc_sidebar
+permalink: index.html
+summary: These brief instructions will help you get started quickly with the theme. The other topics in this help provide additional information and detail about working with other aspects of this theme and Jekyll.
+---
+
+{% include note.html content="If you're cloning this theme, you're probably writing documentation of some kind. I have a blog on technical writing here called <a alt='technical writing blog' href='http://idratherbewriting.com'>I'd Rather Be Writing</a>. If you'd like to stay updated with the latest trends, best practices, and other methods for writing documentation, consider <a href='https://tinyletter.com/tomjoht'>subscribing</a>. I also have a site on <a href='http://idratherbewriting.com/learnapidoc'>writing API documentation</a>." %}
+
+## Build the Theme
+
+Follow these instructions to build the theme.
+
+### 1. Download the theme
+
+First download or clone the theme from the [Github repo](https://github.com/tomjoht/documentation-theme-jekyll). Most likely you won't be pulling in updates once you start customizing the theme, so downloading the theme (instead of cloning it) probably makes the most sense. In Github, click the **Clone or download** button, and then click **Download ZIP**.
+
+### 2. Install Jekyll
+
+If you've never installed or run a Jekyll site locally on your computer, follow these instructions to install Jekyll:
+
+* [Install Jekyll on Mac][mydoc_install_jekyll_on_mac]
+* [Install Jekyll on Windows][mydoc_install_jekyll_on_windows]
+
+### 3. Install Bundler
+
+In case you haven't installed Bundler, install it:
+
+```
+gem install bundler
+```
+
+You'll want [Bundler](http://bundler.io/) to make sure all the Ruby gems needed work well with your project. Bundler sorts out dependencies and installs missing gems or matches up gems with the right versions based on gem dependencies.
+
+### 4. Option 1: Build the Theme (*without* the github-pages gem) {#option1}
+
+Use this option if you're not planning to publish your Jekyll site using [Github Pages](https://pages.github.com/).
+
+Bundler's Gemfile specifies how project dependencies are managed. Although this project includes a Gemfile, this theme doesn't have any dependencies beyond core Jekyll. The Gemfile is used to list gems needed for publishing on Github Pages. **If you're not planning to have Github Pages build your Jekyll project, delete these two files from the theme's root directory:**
+
+* Gemfile
+* Gemfile.lock
+
+If you've never run Jekyll on your computer (you can check with `jekyll --version`), you may need to install the jekyll gem:
+
+```
+gem install jekyll
+```
+
+Now run jekyll serve (first change directories (`cd`) to where you downloaded the project):
+
+```
+jekyll serve
+```
+
+### 4. Option 2: Build the Theme (*with* the github-pages gem) {#option2}
+
+If you *are* in fact publishing on Github Pages, leave the Gemfile and Gemfile.lock files in the theme.The Gemfile tells Jekyll to use the github-pages gem. **However, note that you cannot use the normal `jekyll serve` command with this gem due to dependency conflicts between the latest version of Jekyll and Github Pages** (which are noted [briefly here](https://help.github.com/articles/setting-up-your-github-pages-site-locally-with-jekyll/)).
+
+You need Bundler to resolve these dependency conflicts. Use Bundler to install all the needed Ruby gems:
+
+```
+bundle update
+```
+
+Then *always* use this command to build Jekyll:
+
+```
+bundle exec jekyll serve
+```
+
+If you want to shorten this long command, you can put this code in a file such as jekyll.sh (on a Mac) and then simply type `. jekyll.sh` to build Jekyll.
+
+## Running the site in Docker
+
+You can also use Docker to directly build and run the site on your local machine. Just clone the repo and run the following from your working dir:
+```
+docker-compose build --no-cache && docker-compose up
+```
+The site should now be running at [http://localhost:4000/](http://localhost:4000/).
+
+This is perhaps the easiest way to see how your site would actually look.
+
+## Configure the sidebar
+
+There are several products in this theme. Each product uses a different sidebar. This is the essence of what makes this theme unique -- different sidebars for different product documentation. The idea is that when users are reading documentation for a specific product, the sidebar navigation should be specific to that product. (You can read more of my thoughts on why multiple sidebars are important in this [blog post](http://idratherbewriting.com/2016/03/23/release-of-documentation-theme-for-jekyll-50/).)
+
+The top navigation usually remains the same, because it allows users to navigate across products. But the sidebar navigation adapts to the product.
+
+In each page's frontmatter, you must specify the sidebar you want that page to use. Here's an example of the page frontmatter showing the sidebar property:
+
+<pre>
+---
+title: Alerts
+tags: [formatting]
+keywords: notes, tips, cautions, warnings, admonitions
+last_updated: July 3, 2016
+summary: "You can insert notes, tips, warnings, and important alerts in your content. These notes are stored as shortcodes made available through the linksrefs.hmtl include."
+<span class="red">sidebar: mydoc_sidebar</span>
+permalink: mydoc_alerts
+---
+</pre>
+
+The `sidebar: mydoc_sidebar` refers to the \_data/sidebars/mydoc_sidebar.yml file.
+
+Note that your sidebar can only have 2 levels (expand the **Tag archives** option to see an example of the second level). Given that each product has its own sidebar, this depth should be sufficient (it's really like 3 levels). Deeper nesting goes against usability recommendations.
+
+You can optionally turn off the sidebar on any page (e.g. landing pages). To turn off the sidebar for a page, you should set the page frontmatter tag as `hide_sidebar: true`.
+
+If you don't declare a sidebar, the `home_sidebar` file gets used as the default because this is the default specified in the config file:
+
+```yaml
+-
+  scope:
+    path: ""
+    type: "pages"
+  values:
+    layout: "page"
+    comments: true
+    search: true
+    sidebar: home_sidebar
+    topnav: topnav
+```
+
+If you want to set different sidebar defaults based on different folders for your pages, specify your defaults like this:
+
+```
+-
+  scope:
+    path: "pages/mydoc"
+    type: "pages"
+  values:
+    layout: "page"
+    comments: true
+    search: true
+    sidebar: mydoc_sidebar
+    topnav: topnav
+```
+
+This would load the `mydoc_sidebar` for each file in **pages/mydoc**. You could set different defaults for different path scopes.
+
+For more detail on the sidebar, see [Sidebar navigation][mydoc_sidebar_navigation].
+
+## Top navigation
+
+The top navigation works just like the sidebar. You can specify which topnav data file should load by adding a `topnav` property in your page, like this:
+
+```yaml
+topnav: topnav
+```
+
+Here the topnav refers to the \_data/topnav.yml file.
+
+Because most topnav options will be the same, the \_config.yml file specifies the topnav file as a default:
+
+```yaml
+-
+  scope:
+    path: ""
+    type: "pages"
+  values:
+    layout: "page"
+    comments: true
+    search: true
+    sidebar: home_sidebar
+    topnav: topnav
+```
+
+## Sidebar syntax
+
+The sidebar data file uses a specific YAML syntax that you must follow. Follow the sample pattern shown in the theme, specically looking at mydoc_sidebar.yml as an example: Here's a code sample showing all levels:
+
+```yaml
+entries:
+- title: sidebar
+  product: Jekyll Doc Theme
+  version: 6.0
+  folders:
+  - title: Overview
+    output: web, pdf
+    folderitems:
+
+    - title: Get started
+      url: /index.html
+      output: web, pdf
+      type: homepage
+
+    - title: Introduction
+      url: /mydoc_introduction.html
+      output: web, pdf
+
+  - title: Release Notes
+    output: web, pdf
+    folderitems:
+
+    - title: 6.0 Release notes
+      url: /mydoc_release_notes_60.html
+      output: web, pdf
+
+    - title: 5.0 Release notes
+      url: /mydoc_release_notes_50.html
+      output: web, pdf
+
+  - title: Tag archives
+    output: web
+    folderitems:
+
+    - title: Tag archives overview
+      url: /mydoc_tag_archives_overview.html
+      output: web
+
+      subfolders:
+      - title: Tag archive pages
+        output: web
+        subfolderitems:
+
+        - title: Formatting pages
+          url: /tag_formatting.html
+          output: web
+
+        - title: Navigation pages
+          url: /tag_navigation.html
+          output: web
+
+        - title: Content types pages
+          url: /tag_content_types.html
+          output: web
+```
+
+Each `folder` or `subfolder` must contain a `title` and `output` property. Each `folderitem` or `subfolderitem` must contain a `title`, `url`, and `output` property.
+
+The two outputs available are `web` and `pdf`. (Even if you aren't publishing PDF, you still need to specify `output: web`).
+
+The YAML syntax depends on exact spacing, so make sure you follow the pattern shown in the sample sidebars. See my [YAML tutorial](mydoc_yaml_tutorial) for more details about how YAML works.
+
+{% include note.html content="If you have just one character of spacing off, Jekyll won't build due to the YAML syntax error. You'll see an error message in your console that says \"Error ... did not find expected key while parsing a block mapping at line 22 column 5. Error: Run jekyll build --trace for more information.\" If you encounter this, it usually refers to incorrect indentation or spacing in the YAML file. See the example mydoc_sidebar.yml file to see where your formatting went wrong." %}
+
+Each level must have at least one topic before the next level starts. You can't have a second level that contains multiple third levels without having at least one standalone topic in the second level. If you need a hierarchy that has a folder that contains other folders and no loose topics, use a blank `-` item like this:
+
+```yaml
+entries:
+- title: sidebar
+  product: Jekyll Doc Theme
+  version: 6.0
+  folders:
+  - title: Overview
+    output: web, pdf
+    folderitems:
+
+    -
+
+  - title: Release Notes
+    output: web, pdf
+    folderitems:
+
+    - title: 6.0 Release notes
+      url: /mydoc_release_notes_60.html
+      output: web, pdf
+
+    - title: 5.0 Release notes
+      url: /mydoc_release_notes_50.html
+      output: web, pdf
+
+  - title: Installation
+    output: web, pdf
+    folderitems:
+
+    - title: About Ruby, Gems, Bundler, etc.
+      url: /mydoc_about_ruby_gems_etc.html
+      output: web, pdf
+
+    - title: Install Jekyll on Mac
+      url: /mydoc_install_jekyll_on_mac.html
+      output: web, pdf
+
+    - title: Install Jekyll on Windows
+      url: /mydoc_install_jekyll_on_windows.html
+      output: web, pdf
+```
+
+To accommodate the title page and table of contents in PDF outputs, each product sidebar must list these pages before any other:
+
+```yaml
+- title:
+  output: pdf
+  type: frontmatter
+  folderitems:
+  - title:
+    url: /titlepage
+    output: pdf
+    type: frontmatter
+  - title:
+    url: /tocpage
+    output: pdf
+    type: frontmatter
+```
+
+Leave the output as `output: pdf` for these frontmatter pages so that they don't appear in the web output.
+
+For more detail on the sidebar, see [Sidebar navigation][mydoc_sidebar_navigation] and [YAML tutorial][mydoc_yaml_tutorial].
+
+## Relative links and offline viewing
+
+This theme uses relative links throughout so that you can view the site offline and not worry about which server or directory you're hosting it. It's common with tech docs to push content to an internal server for review prior to pushing the content to an external server for publication. Because of the need for seamless transferrence from one host to another, the site has to use relative links.
+
+To view pages locally on your machine (without the Jekyll preview server), they need to have the `.html` extension. The `permalink` property in the page's frontmatter (without surrounding slashes) is what pushes the files into the root directory when the site builds.
+
+## Page frontmatter
+
+When you write pages, include these same frontmatter properties with each page:
+
+```yaml
+---
+title: "Some title"
+tags: [sample1, sample2]
+keywords: keyword1, keyword2, keyword3
+last_updated: Month day, year
+summary: "optional summary here"
+sidebar: sidebarname
+permalink: filename.html
+---
+```
+
+(You will customize the values for each of these properties, of course.)
+
+For titles, surrounding the title in quotes is optional, but if you have a colon in the title, you must surround the title with quotation marks. If you have a quotation mark inside the title, escape it first with a backlash `\`.
+
+Values for `keywords` get populated into the metadata of the page for SEO.
+
+Values for `tags` must be defined in your \_data/tags.yml list. You also need a corresponding tag file inside the tags folder that follows the same pattern as the other tag files shown in the tags folder. (Jekyll won't auto-create these tag files.)
+
+If you don't want the mini-TOC to show on a page (such as for the homepage or landing pages), add `toc: false` in the frontmatter.
+
+The `permalink` value should be the same as your filename and include the ".html" file extension.
+
+For more detail, see [Pages][mydoc_pages].
+
+## Where to store your documentation topics
+
+You can store your files for each product inside subfolders following the pattern shown in the theme. For example, product1, product2, etc, can be stored in their own subfolders inside the \_pages directory. Inside \_pages, you can store your topics inside sub-subfolders or sub-sub-folders to your heart's content. When Jekyll builds your site, it will pull the topics into the root directory and use the permalink for the URL.
+
+Note that product1, product2, and mydoc are all just sample content to demonstrate how to add multiple products into the theme. You can freely delete that content.
+
+For more information, see [Pages][mydoc_pages] and [Posts][mydoc_posts].
+
+## Configure the top navigation
+
+The top navigation bar's menu items are set through the \_data/topnav.yml file. Use the top navigation bar to provide links for navigating from one product to another, or to navigate to external resources.
+
+For external URLs, use `external_url` in the item property, as shown in the example topnav.yml file. For internal links, use `url` the same was you do in the sidebar data files.
+
+Note that the topnav has two sections: `topnav` and `topnav_dropdowns`. The topnav section contains single links, while the `topnav_dropdowns` section contains dropdown menus. The two sections are independent of each other.
+
+## Generating PDF
+
+If you want to generate PDF, you'll need a license for [Prince XML](http://www.princexml.com/). You will also need to [install Prince](http://www.princexml.com/doc/installing/).  You can generate PDFs by product (but not for every product on the site combined together into one massive PDF). Prince will work even without a license, but it will imprint a small Prince image on the first page, and you're supposed to buy the license to use it.
+
+If you're on Windows, install [Git Bash client](https://git-for-windows.github.io/) rather than using the default Windows command prompt.
+
+Open up the css/printstyles.css file and customize the email address (`youremail@domain.com`) that is listed there. This email address appears in the bottom left footer of the PDF output. You'll also need to create a PDF configuration file following the examples shown in the pdfconfigs folder, and also customize some build scripts following the same pattern shown in the root: pdf-product1.sh
+
+See the section on [Generating PDFs][mydoc_generating_pdfs] for more details about setting the theme up for this output.
+
+## Blogs / News
+
+For blog posts, create your markdown files in the \_posts folder following the sample formats. Post file names always begin with the date (YYYY-MM-DD-title).
+
+The news/news.html file displays the posts, and the news_archive.html file shows a yearly history of posts. In documentation, you might use the news to highlight product features outside of your documentation, or to provide release notes and other updates.
+
+See [Posts][mydoc_posts] for more information.
+
+## Markdown
+
+This theme uses [kramdown markdown](http://kramdown.gettalong.org/). kramdown is similar to Github-flavored Markdown, except that when you have text that intercepts list items, the spacing of the intercepting text must align with the spacing of the first character after the space of a numbered list item. Basically, with your list item numbering, use two spaces after the dot in the number, like this:
+
+```
+1.  First item
+2.  Second item
+3.  Third item
+```
+
+When you want to insert paragraphs, notes, code snippets, or other matter in between the list items, use four spaces to indent. The four spaces will line up with the first letter of the list item (the <b>F</b>irst or <b>S</b>econd or <b>T</b>hird).
+
+```
+1.  First item
+
+    ```
+    alert("hello");
+    ```
+
+2.  Second item
+
+    Some pig!
+
+3.  Third item
+```
+
+See the topics under "Formatting" in the sidebar for more information.
+
+## Automated links
+
+If you want to use an automated system for managing links, see [Automated Links][mydoc_hyperlinks.html#automatedlinks]. This approach automatically creates a list of Markdown references to simplify linking.
+
+## Other instructions
+
+The content here is just a getting started guide only. For other details in working with the theme, see the various sections in the sidebar.
+
+{% include links.html %}
diff --git a/js/customscripts.js b/js/customscripts.js
new file mode 100644
index 0000000000000000000000000000000000000000..27701a35d6bcb950e53a9608a1ba177f74f1ae8d
--- /dev/null
+++ b/js/customscripts.js
@@ -0,0 +1,54 @@
+$('#mysidebar').height($(".nav").height());
+
+
+$( document ).ready(function() {
+
+    //this script says, if the height of the viewport is greater than 800px, then insert affix class, which makes the nav bar float in a fixed
+    // position as your scroll. if you have a lot of nav items, this height may not work for you.
+    var h = $(window).height();
+    //console.log (h);
+    if (h > 800) {
+        $( "#mysidebar" ).attr("class", "nav affix");
+    }
+    // activate tooltips. although this is a bootstrap js function, it must be activated this way in your theme.
+    $('[data-toggle="tooltip"]').tooltip({
+        placement : 'top'
+    });
+
+    /**
+     * AnchorJS
+     */
+    anchors.add('h2,h3,h4,h5');
+
+});
+
+// needed for nav tabs on pages. See Formatting > Nav tabs for more details.
+// script from http://stackoverflow.com/questions/10523433/how-do-i-keep-the-current-tab-active-with-twitter-bootstrap-after-a-page-reload
+$(function() {
+    var json, tabsState;
+    $('a[data-toggle="pill"], a[data-toggle="tab"]').on('shown.bs.tab', function(e) {
+        var href, json, parentId, tabsState;
+
+        tabsState = localStorage.getItem("tabs-state");
+        json = JSON.parse(tabsState || "{}");
+        parentId = $(e.target).parents("ul.nav.nav-pills, ul.nav.nav-tabs").attr("id");
+        href = $(e.target).attr('href');
+        json[parentId] = href;
+
+        return localStorage.setItem("tabs-state", JSON.stringify(json));
+    });
+
+    tabsState = localStorage.getItem("tabs-state");
+    json = JSON.parse(tabsState || "{}");
+
+    $.each(json, function(containerId, href) {
+        return $("#" + containerId + " a[href=" + href + "]").tab('show');
+    });
+
+    $("ul.nav.nav-pills, ul.nav.nav-tabs").each(function() {
+        var $this = $(this);
+        if (!json[$this.attr("id")]) {
+            return $this.find("a[data-toggle=tab]:first, a[data-toggle=pill]:first").tab("show");
+        }
+    });
+});
diff --git a/js/jekyll-search.js b/js/jekyll-search.js
new file mode 100644
index 0000000000000000000000000000000000000000..d884a244e4aa0e342626627baaa77780c69c4eae
--- /dev/null
+++ b/js/jekyll-search.js
@@ -0,0 +1 @@
+!function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a="function"==typeof require&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}for(var i="function"==typeof require&&require,o=0;o<r.length;o++)s(r[o]);return s}({1:[function(require,module){module.exports=function(){function receivedResponse(xhr){return 200==xhr.status&&4==xhr.readyState}function handleResponse(xhr,callback){xhr.onreadystatechange=function(){if(receivedResponse(xhr))try{callback(null,JSON.parse(xhr.responseText))}catch(err){callback(err,null)}}}var self=this;self.load=function(location,callback){var xhr=window.XMLHttpRequest?new XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP");xhr.open("GET",location,!0),handleResponse(xhr,callback),xhr.send()}}},{}],2:[function(require,module){function FuzzySearchStrategy(){function createFuzzyRegExpFromString(string){return new RegExp(string.split("").join(".*?"),"gi")}var self=this;self.matches=function(string,crit){return"string"!=typeof string?!1:(string=string.trim(),!!string.match(createFuzzyRegExpFromString(crit)))}}module.exports=new FuzzySearchStrategy},{}],3:[function(require,module){function LiteralSearchStrategy(){function doMatch(string,crit){return string.toLowerCase().indexOf(crit.toLowerCase())>=0}var self=this;self.matches=function(string,crit){return"string"!=typeof string?!1:(string=string.trim(),doMatch(string,crit))}}module.exports=new LiteralSearchStrategy},{}],4:[function(require,module){module.exports=function(){function findMatches(store,crit,strategy){for(var data=store.get(),i=0;i<data.length&&matches.length<limit;i++)findMatchesInObject(data[i],crit,strategy);return matches}function findMatchesInObject(obj,crit,strategy){for(var key in obj)if(strategy.matches(obj[key],crit)){matches.push(obj);break}}function getSearchStrategy(){return fuzzy?fuzzySearchStrategy:literalSearchStrategy}var self=this,matches=[],fuzzy=!1,limit=10,fuzzySearchStrategy=require("./SearchStrategies/fuzzy"),literalSearchStrategy=require("./SearchStrategies/literal");self.setFuzzy=function(_fuzzy){fuzzy=!!_fuzzy},self.setLimit=function(_limit){limit=parseInt(_limit,10)||limit},self.search=function(data,crit){return crit?(matches.length=0,findMatches(data,crit,getSearchStrategy())):[]}}},{"./SearchStrategies/fuzzy":2,"./SearchStrategies/literal":3}],5:[function(require,module){module.exports=function(_store){function isObject(obj){return!!obj&&"[object Object]"==Object.prototype.toString.call(obj)}function isArray(obj){return!!obj&&"[object Array]"==Object.prototype.toString.call(obj)}function addObject(data){return store.push(data),data}function addArray(data){for(var added=[],i=0;i<data.length;i++)isObject(data[i])&&added.push(addObject(data[i]));return added}var self=this,store=[];isArray(_store)&&addArray(_store),self.clear=function(){return store.length=0,store},self.get=function(){return store},self.put=function(data){return isObject(data)?addObject(data):isArray(data)?addArray(data):void 0}}},{}],6:[function(require,module){module.exports=function(){var self=this,templatePattern=/\{(.*?)\}/g;self.setTemplatePattern=function(newTemplatePattern){templatePattern=newTemplatePattern},self.render=function(t,data){return t.replace(templatePattern,function(match,prop){return data[prop]||match})}}},{}],7:[function(require){!function(window){"use strict";function SimpleJekyllSearch(){function initWithJSON(){store.put(opt.dataSource),registerInput()}function initWithURL(url){jsonLoader.load(url,function(err,json){err?throwError("failed to get JSON ("+url+")"):(store.put(json),registerInput())})}function throwError(message){throw new Error("SimpleJekyllSearch --- "+message)}function validateOptions(_opt){for(var i=0;i<requiredOptions.length;i++){var req=requiredOptions[i];_opt[req]||throwError("You must specify a "+req)}}function assignOptions(_opt){for(var option in opt)opt[option]=_opt[option]||opt[option]}function isJSON(json){try{return json instanceof Object&&JSON.parse(JSON.stringify(json))}catch(e){return!1}}function emptyResultsContainer(){opt.resultsContainer.innerHTML=""}function appendToResultsContainer(text){opt.resultsContainer.innerHTML+=text}function registerInput(){opt.searchInput.addEventListener("keyup",function(e){return 0==e.target.value.length?void emptyResultsContainer():void render(searcher.search(store,e.target.value))})}function render(results){if(emptyResultsContainer(),0==results.length)return appendToResultsContainer(opt.noResultsText);for(var i=0;i<results.length;i++)appendToResultsContainer(templater.render(opt.searchResultTemplate,results[i]))}var self=this,requiredOptions=["searchInput","resultsContainer","dataSource"],opt={searchInput:null,resultsContainer:null,dataSource:[],searchResultTemplate:'<li><a href="{url}" title="{desc}">{title}</a></li>',noResultsText:"No results found",limit:10,fuzzy:!1};self.init=function(_opt){validateOptions(_opt),assignOptions(_opt),isJSON(opt.dataSource)?initWithJSON(opt.dataSource):initWithURL(opt.dataSource)}}var Searcher=require("./Searcher"),Templater=require("./Templater"),Store=require("./Store"),JSONLoader=require("./JSONLoader"),searcher=new Searcher,templater=new Templater,store=new Store,jsonLoader=new JSONLoader;window.SimpleJekyllSearch=new SimpleJekyllSearch}(window,document)},{"./JSONLoader":1,"./Searcher":4,"./Store":5,"./Templater":6}]},{},[7]);
diff --git a/js/jquery.ba-throttle-debounce.min.js b/js/jquery.ba-throttle-debounce.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..07205508eb6265b9557b53e018cd1f81cc84388b
--- /dev/null
+++ b/js/jquery.ba-throttle-debounce.min.js
@@ -0,0 +1,9 @@
+/*
+ * jQuery throttle / debounce - v1.1 - 3/7/2010
+ * http://benalman.com/projects/jquery-throttle-debounce-plugin/
+ * 
+ * Copyright (c) 2010 "Cowboy" Ben Alman
+ * Dual licensed under the MIT and GPL licenses.
+ * http://benalman.com/about/license/
+ */
+(function(b,c){var $=b.jQuery||b.Cowboy||(b.Cowboy={}),a;$.throttle=a=function(e,f,j,i){var h,d=0;if(typeof f!=="boolean"){i=j;j=f;f=c}function g(){var o=this,m=+new Date()-d,n=arguments;function l(){d=+new Date();j.apply(o,n)}function k(){h=c}if(i&&!h){l()}h&&clearTimeout(h);if(i===c&&m>e){l()}else{if(f!==true){h=setTimeout(i?k:l,i===c?e-m:e)}}}if($.guid){g.guid=j.guid=j.guid||$.guid++}return g};$.debounce=function(d,e,f){return f===c?a(d,e,false):a(d,f,e!==false)}})(this);
\ No newline at end of file
diff --git a/js/jquery.navgoco.min.js b/js/jquery.navgoco.min.js
new file mode 100755
index 0000000000000000000000000000000000000000..4ba44753323370cf0cd4f1dc79eb61a99d0379f6
--- /dev/null
+++ b/js/jquery.navgoco.min.js
@@ -0,0 +1,8 @@
+/*
+ * jQuery Navgoco Menus Plugin v0.2.1 (2014-04-11)
+ * https://github.com/tefra/navgoco
+ *
+ * Copyright (c) 2014 Chris T (@tefra)
+ * BSD - https://github.com/tefra/navgoco/blob/master/LICENSE-BSD
+ */
+!function(a){"use strict";var b=function(b,c,d){return this.el=b,this.$el=a(b),this.options=c,this.uuid=this.$el.attr("id")?this.$el.attr("id"):d,this.state={},this.init(),this};b.prototype={init:function(){var b=this;b._load(),b.$el.find("ul").each(function(c){var d=a(this);d.attr("data-index",c),b.options.save&&b.state.hasOwnProperty(c)?(d.parent().addClass(b.options.openClass),d.show()):d.parent().hasClass(b.options.openClass)?(d.show(),b.state[c]=1):d.hide()});var c=a("<span></span>").prepend(b.options.caretHtml),d=b.$el.find("li > a");b._trigger(c,!1),b._trigger(d,!0),b.$el.find("li:has(ul) > a").prepend(c)},_trigger:function(b,c){var d=this;b.on("click",function(b){b.stopPropagation();var e=c?a(this).next():a(this).parent().next(),f=!1;if(c){var g=a(this).attr("href");f=void 0===g||""===g||"#"===g}if(e=e.length>0?e:!1,d.options.onClickBefore.call(this,b,e),!c||e&&f)b.preventDefault(),d._toggle(e,e.is(":hidden")),d._save();else if(d.options.accordion){var h=d.state=d._parents(a(this));d.$el.find("ul").filter(":visible").each(function(){var b=a(this),c=b.attr("data-index");h.hasOwnProperty(c)||d._toggle(b,!1)}),d._save()}d.options.onClickAfter.call(this,b,e)})},_toggle:function(b,c){var d=this,e=b.attr("data-index"),f=b.parent();if(d.options.onToggleBefore.call(this,b,c),c){if(f.addClass(d.options.openClass),b.slideDown(d.options.slide),d.state[e]=1,d.options.accordion){var g=d.state=d._parents(b);g[e]=d.state[e]=1,d.$el.find("ul").filter(":visible").each(function(){var b=a(this),c=b.attr("data-index");g.hasOwnProperty(c)||d._toggle(b,!1)})}}else f.removeClass(d.options.openClass),b.slideUp(d.options.slide),d.state[e]=0;d.options.onToggleAfter.call(this,b,c)},_parents:function(b,c){var d={},e=b.parent(),f=e.parents("ul");return f.each(function(){var b=a(this),e=b.attr("data-index");return e?void(d[e]=c?b:1):!1}),d},_save:function(){if(this.options.save){var b={};for(var d in this.state)1===this.state[d]&&(b[d]=1);c[this.uuid]=this.state=b,a.cookie(this.options.cookie.name,JSON.stringify(c),this.options.cookie)}},_load:function(){if(this.options.save){if(null===c){var b=a.cookie(this.options.cookie.name);c=b?JSON.parse(b):{}}this.state=c.hasOwnProperty(this.uuid)?c[this.uuid]:{}}},toggle:function(b){var c=this,d=arguments.length;if(1>=d)c.$el.find("ul").each(function(){var d=a(this);c._toggle(d,b)});else{var e,f={},g=Array.prototype.slice.call(arguments,1);d--;for(var h=0;d>h;h++){e=g[h];var i=c.$el.find('ul[data-index="'+e+'"]').first();if(i&&(f[e]=i,b)){var j=c._parents(i,!0);for(var k in j)f.hasOwnProperty(k)||(f[k]=j[k])}}for(e in f)c._toggle(f[e],b)}c._save()},destroy:function(){a.removeData(this.$el),this.$el.find("li:has(ul) > a").unbind("click"),this.$el.find("li:has(ul) > a > span").unbind("click")}},a.fn.navgoco=function(c){if("string"==typeof c&&"_"!==c.charAt(0)&&"init"!==c)var d=!0,e=Array.prototype.slice.call(arguments,1);else c=a.extend({},a.fn.navgoco.defaults,c||{}),a.cookie||(c.save=!1);return this.each(function(f){var g=a(this),h=g.data("navgoco");h||(h=new b(this,d?a.fn.navgoco.defaults:c,f),g.data("navgoco",h)),d&&h[c].apply(h,e)})};var c=null;a.fn.navgoco.defaults={caretHtml:"",accordion:!1,openClass:"open",save:!0,cookie:{name:"navgoco",expires:!1,path:"/"},slide:{duration:400,easing:"swing"},onClickBefore:a.noop,onClickAfter:a.noop,onToggleBefore:a.noop,onToggleAfter:a.noop}}(jQuery);
\ No newline at end of file
diff --git a/js/jquery.shuffle.min.js b/js/jquery.shuffle.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..d1031271996269eedfb2a17c333a06deeed6a568
--- /dev/null
+++ b/js/jquery.shuffle.min.js
@@ -0,0 +1,1588 @@
+/*!
+ * Shuffle.js by @Vestride
+ * Categorize, sort, and filter a responsive grid of items.
+ * Dependencies: jQuery 1.9+, Modernizr 2.6.2+
+ * @license MIT license
+ * @version 3.0.0
+ */
+
+/* Modernizr 2.6.2 (Custom Build) | MIT & BSD
+ * Build: http://modernizr.com/download/#-csstransforms-csstransforms3d-csstransitions-cssclasses-prefixed-teststyles-testprop-testallprops-prefixes-domprefixes
+ */
+window.Modernizr=function(a,b,c){function z(a){j.cssText=a}function A(a,b){return z(m.join(a+";")+(b||""))}function B(a,b){return typeof a===b}function C(a,b){return!!~(""+a).indexOf(b)}function D(a,b){for(var d in a){var e=a[d];if(!C(e,"-")&&j[e]!==c)return b=="pfx"?e:!0}return!1}function E(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:B(f,"function")?f.bind(d||b):f}return!1}function F(a,b,c){var d=a.charAt(0).toUpperCase()+a.slice(1),e=(a+" "+o.join(d+" ")+d).split(" ");return B(b,"string")||B(b,"undefined")?D(e,b):(e=(a+" "+p.join(d+" ")+d).split(" "),E(e,b,c))}var d="2.6.2",e={},f=!0,g=b.documentElement,h="modernizr",i=b.createElement(h),j=i.style,k,l={}.toString,m=" -webkit- -moz- -o- -ms- ".split(" "),n="Webkit Moz O ms",o=n.split(" "),p=n.toLowerCase().split(" "),q={},r={},s={},t=[],u=t.slice,v,w=function(a,c,d,e){var f,i,j,k,l=b.createElement("div"),m=b.body,n=m||b.createElement("body");if(parseInt(d,10))while(d--)j=b.createElement("div"),j.id=e?e[d]:h+(d+1),l.appendChild(j);return f=["&#173;",'<style id="s',h,'">',a,"</style>"].join(""),l.id=h,(m?l:n).innerHTML+=f,n.appendChild(l),m||(n.style.background="",n.style.overflow="hidden",k=g.style.overflow,g.style.overflow="hidden",g.appendChild(n)),i=c(l,a),m?l.parentNode.removeChild(l):(n.parentNode.removeChild(n),g.style.overflow=k),!!i},x={}.hasOwnProperty,y;!B(x,"undefined")&&!B(x.call,"undefined")?y=function(a,b){return x.call(a,b)}:y=function(a,b){return b in a&&B(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=u.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(u.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(u.call(arguments)))};return e}),q.csstransforms=function(){return!!F("transform")},q.csstransforms3d=function(){var a=!!F("perspective");return a&&"webkitPerspective"in g.style&&w("@media (transform-3d),(-webkit-transform-3d){#modernizr{left:9px;position:absolute;height:3px;}}",function(b,c){a=b.offsetLeft===9&&b.offsetHeight===3}),a},q.csstransitions=function(){return F("transition")};for(var G in q)y(q,G)&&(v=G.toLowerCase(),e[v]=q[G](),t.push((e[v]?"":"no-")+v));return e.addTest=function(a,b){if(typeof a=="object")for(var d in a)y(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return e;b=typeof b=="function"?b():b,typeof f!="undefined"&&f&&(g.className+=" "+(b?"":"no-")+a),e[a]=b}return e},z(""),i=k=null,e._version=d,e._prefixes=m,e._domPrefixes=p,e._cssomPrefixes=o,e.testProp=function(a){return D([a])},e.testAllProps=F,e.testStyles=w,e.prefixed=function(a,b,c){return b?F(a,b,c):F(a,"pfx")},g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+t.join(" "):""),e}(this,this.document);
+
+(function (factory) {
+  if (typeof define === 'function' && define.amd) {
+    define(['jquery', 'modernizr'], factory);
+  } else {
+    window.Shuffle = factory(window.jQuery, window.Modernizr);
+  }
+})(function($, Modernizr, undefined) {
+
+'use strict';
+
+
+// Validate Modernizr exists.
+// Shuffle requires `csstransitions`, `csstransforms`, `csstransforms3d`,
+// and `prefixed` to exist on the Modernizr object.
+if (typeof Modernizr !== 'object') {
+  throw new Error('Shuffle.js requires Modernizr.\n' +
+      'http://vestride.github.io/Shuffle/#dependencies');
+}
+
+
+/**
+ * Returns css prefixed properties like `-webkit-transition` or `box-sizing`
+ * from `transition` or `boxSizing`, respectively.
+ * @param {(string|boolean)} prop Property to be prefixed.
+ * @return {string} The prefixed css property.
+ */
+function dashify( prop ) {
+  if (!prop) {
+    return '';
+  }
+
+  // Replace upper case with dash-lowercase,
+  // then fix ms- prefixes because they're not capitalized.
+  return prop.replace(/([A-Z])/g, function( str, m1 ) {
+    return '-' + m1.toLowerCase();
+  }).replace(/^ms-/,'-ms-');
+}
+
+// Constant, prefixed variables.
+var TRANSITION = Modernizr.prefixed('transition');
+var TRANSITION_DELAY = Modernizr.prefixed('transitionDelay');
+var TRANSITION_DURATION = Modernizr.prefixed('transitionDuration');
+
+// Note(glen): Stock Android 4.1.x browser will fail here because it wrongly
+// says it supports non-prefixed transitions.
+// https://github.com/Modernizr/Modernizr/issues/897
+var TRANSITIONEND = {
+  'WebkitTransition' : 'webkitTransitionEnd',
+  'transition' : 'transitionend'
+}[ TRANSITION ];
+
+var TRANSFORM = Modernizr.prefixed('transform');
+var CSS_TRANSFORM = dashify(TRANSFORM);
+
+// Constants
+var CAN_TRANSITION_TRANSFORMS = Modernizr.csstransforms && Modernizr.csstransitions;
+var HAS_TRANSFORMS_3D = Modernizr.csstransforms3d;
+var SHUFFLE = 'shuffle';
+var COLUMN_THRESHOLD = 0.3;
+
+// Configurable. You can change these constants to fit your application.
+// The default scale and concealed scale, however, have to be different values.
+var ALL_ITEMS = 'all';
+var FILTER_ATTRIBUTE_KEY = 'groups';
+var DEFAULT_SCALE = 1;
+var CONCEALED_SCALE = 0.001;
+
+
+// Underscore's throttle function.
+function throttle(func, wait, options) {
+  var context, args, result;
+  var timeout = null;
+  var previous = 0;
+  options = options || {};
+  var later = function() {
+    previous = options.leading === false ? 0 : $.now();
+    timeout = null;
+    result = func.apply(context, args);
+    context = args = null;
+  };
+  return function() {
+    var now = $.now();
+    if (!previous && options.leading === false) {
+      previous = now;
+    }
+    var remaining = wait - (now - previous);
+    context = this;
+    args = arguments;
+    if (remaining <= 0 || remaining > wait) {
+      clearTimeout(timeout);
+      timeout = null;
+      previous = now;
+      result = func.apply(context, args);
+      context = args = null;
+    } else if (!timeout && options.trailing !== false) {
+      timeout = setTimeout(later, remaining);
+    }
+    return result;
+  };
+}
+
+function each(obj, iterator, context) {
+  for (var i = 0, length = obj.length; i < length; i++) {
+    if (iterator.call(context, obj[i], i, obj) === {}) {
+      return;
+    }
+  }
+}
+
+function defer(fn, context, wait) {
+  return setTimeout( $.proxy( fn, context ), wait );
+}
+
+function arrayMax( array ) {
+  return Math.max.apply( Math, array );
+}
+
+function arrayMin( array ) {
+  return Math.min.apply( Math, array );
+}
+
+
+/**
+ * Always returns a numeric value, given a value.
+ * @param {*} value Possibly numeric value.
+ * @return {number} `value` or zero if `value` isn't numeric.
+ * @private
+ */
+function getNumber(value) {
+  return $.isNumeric(value) ? value : 0;
+}
+
+
+/**
+ * Represents a coordinate pair.
+ * @param {number} [x=0] X.
+ * @param {number} [y=0] Y.
+ */
+var Point = function(x, y) {
+  this.x = getNumber( x );
+  this.y = getNumber( y );
+};
+
+
+/**
+ * Whether two points are equal.
+ * @param {Point} a Point A.
+ * @param {Point} b Point B.
+ * @return {boolean}
+ */
+Point.equals = function(a, b) {
+  return a.x === b.x && a.y === b.y;
+};
+
+
+// Used for unique instance variables
+var id = 0;
+var $window = $( window );
+
+
+/**
+ * Categorize, sort, and filter a responsive grid of items.
+ *
+ * @param {Element} element An element which is the parent container for the grid items.
+ * @param {Object} [options=Shuffle.options] Options object.
+ * @constructor
+ */
+var Shuffle = function( element, options ) {
+  options = options || {};
+  $.extend( this, Shuffle.options, options, Shuffle.settings );
+
+  this.$el = $(element);
+  this.element = element;
+  this.unique = 'shuffle_' + id++;
+
+  this._fire( Shuffle.EventType.LOADING );
+  this._init();
+
+  // Dispatch the done event asynchronously so that people can bind to it after
+  // Shuffle has been initialized.
+  defer(function() {
+    this.initialized = true;
+    this._fire( Shuffle.EventType.DONE );
+  }, this, 16);
+};
+
+
+/**
+ * Events the container element emits with the .shuffle namespace.
+ * For example, "done.shuffle".
+ * @enum {string}
+ */
+Shuffle.EventType = {
+  LOADING: 'loading',
+  DONE: 'done',
+  LAYOUT: 'layout',
+  REMOVED: 'removed'
+};
+
+
+/** @enum {string} */
+Shuffle.ClassName = {
+  BASE: SHUFFLE,
+  SHUFFLE_ITEM: 'shuffle-item',
+  FILTERED: 'filtered',
+  CONCEALED: 'concealed'
+};
+
+
+// Overrideable options
+Shuffle.options = {
+  group: ALL_ITEMS, // Initial filter group.
+  speed: 250, // Transition/animation speed (milliseconds).
+  easing: 'ease-out', // CSS easing function to use.
+  itemSelector: '', // e.g. '.picture-item'.
+  sizer: null, // Sizer element. Use an element to determine the size of columns and gutters.
+  gutterWidth: 0, // A static number or function that tells the plugin how wide the gutters between columns are (in pixels).
+  columnWidth: 0, // A static number or function that returns a number which tells the plugin how wide the columns are (in pixels).
+  delimeter: null, // If your group is not json, and is comma delimeted, you could set delimeter to ','.
+  buffer: 0, // Useful for percentage based heights when they might not always be exactly the same (in pixels).
+  initialSort: null, // Shuffle can be initialized with a sort object. It is the same object given to the sort method.
+  throttle: throttle, // By default, shuffle will throttle resize events. This can be changed or removed.
+  throttleTime: 300, // How often shuffle can be called on resize (in milliseconds).
+  sequentialFadeDelay: 150, // Delay between each item that fades in when adding items.
+  supported: CAN_TRANSITION_TRANSFORMS // Whether to use transforms or absolute positioning.
+};
+
+
+// Not overrideable
+Shuffle.settings = {
+  useSizer: false,
+  itemCss : { // default CSS for each item
+    position: 'absolute',
+    top: 0,
+    left: 0,
+    visibility: 'visible'
+  },
+  revealAppendedDelay: 300,
+  lastSort: {},
+  lastFilter: ALL_ITEMS,
+  enabled: true,
+  destroyed: false,
+  initialized: false,
+  _animations: [],
+  styleQueue: []
+};
+
+
+// Expose for testing.
+Shuffle.Point = Point;
+
+
+/**
+ * Static methods.
+ */
+
+/**
+ * If the browser has 3d transforms available, build a string with those,
+ * otherwise use 2d transforms.
+ * @param {Point} point X and Y positions.
+ * @param {number} scale Scale amount.
+ * @return {string} A normalized string which can be used with the transform style.
+ * @private
+ */
+Shuffle._getItemTransformString = function(point, scale) {
+  if ( HAS_TRANSFORMS_3D ) {
+    return 'translate3d(' + point.x + 'px, ' + point.y + 'px, 0) scale3d(' + scale + ', ' + scale + ', 1)';
+  } else {
+    return 'translate(' + point.x + 'px, ' + point.y + 'px) scale(' + scale + ')';
+  }
+};
+
+
+/**
+ * Retrieve the computed style for an element, parsed as a float. This should
+ * not be used for width or height values because jQuery mangles them and they
+ * are not precise enough.
+ * @param {Element} element Element to get style for.
+ * @param {string} style Style property.
+ * @return {number} The parsed computed value or zero if that fails because IE
+ *     will return 'auto' when the element doesn't have margins instead of
+ *     the computed style.
+ * @private
+ */
+Shuffle._getNumberStyle = function( element, style ) {
+  return Shuffle._getFloat( $( element ).css( style )  );
+};
+
+
+/**
+ * Parse a string as an integer.
+ * @param {string} value String integer.
+ * @return {number} The string as an integer or zero.
+ * @private
+ */
+Shuffle._getInt = function(value) {
+  return getNumber( parseInt( value, 10 ) );
+};
+
+/**
+ * Parse a string as an float.
+ * @param {string} value String float.
+ * @return {number} The string as an float or zero.
+ * @private
+ */
+Shuffle._getFloat = function(value) {
+  return getNumber( parseFloat( value ) );
+};
+
+
+/**
+ * Returns the outer width of an element, optionally including its margins.
+ * The `offsetWidth` property must be used because having a scale transform
+ * on the element affects the bounding box. Sadly, Firefox doesn't return an
+ * integer value for offsetWidth (yet).
+ * @param {Element} element The element.
+ * @param {boolean} [includeMargins] Whether to include margins. Default is false.
+ * @return {number} The width.
+ */
+Shuffle._getOuterWidth = function( element, includeMargins ) {
+  var width = element.offsetWidth;
+
+  // Use jQuery here because it uses getComputedStyle internally and is
+  // cross-browser. Using the style property of the element will only work
+  // if there are inline styles.
+  if ( includeMargins ) {
+    var marginLeft = Shuffle._getNumberStyle( element, 'marginLeft');
+    var marginRight = Shuffle._getNumberStyle( element, 'marginRight');
+    width += marginLeft + marginRight;
+  }
+
+  return width;
+};
+
+
+/**
+ * Returns the outer height of an element, optionally including its margins.
+ * @param {Element} element The element.
+ * @param {boolean} [includeMargins] Whether to include margins. Default is false.
+ * @return {number} The height.
+ */
+Shuffle._getOuterHeight = function( element, includeMargins ) {
+  var height = element.offsetHeight;
+
+  if ( includeMargins ) {
+    var marginTop = Shuffle._getNumberStyle( element, 'marginTop');
+    var marginBottom = Shuffle._getNumberStyle( element, 'marginBottom');
+    height += marginTop + marginBottom;
+  }
+
+  return height;
+};
+
+
+/**
+ * Change a property or execute a function which will not have a transition
+ * @param {Element} element DOM element that won't be transitioned
+ * @param {Function} callback A function which will be called while transition
+ *     is set to 0ms.
+ * @param {Object} [context] Optional context for the callback function.
+ * @private
+ */
+Shuffle._skipTransition = function( element, callback, context ) {
+  var duration = element.style[ TRANSITION_DURATION ];
+
+  // Set the duration to zero so it happens immediately
+  element.style[ TRANSITION_DURATION ] = '0ms'; // ms needed for firefox!
+
+  callback.call( context );
+
+  // Force reflow
+  var reflow = element.offsetWidth;
+  // Avoid jshint warnings: unused variables and expressions.
+  reflow = null;
+
+  // Put the duration back
+  element.style[ TRANSITION_DURATION ] = duration;
+};
+
+
+/**
+ * Instance methods.
+ */
+
+Shuffle.prototype._init = function() {
+  this.$items = this._getItems();
+
+  this.sizer = this._getElementOption( this.sizer );
+
+  if ( this.sizer ) {
+    this.useSizer = true;
+  }
+
+  // Add class and invalidate styles
+  this.$el.addClass( Shuffle.ClassName.BASE );
+
+  // Set initial css for each item
+  this._initItems();
+
+  // Bind resize events
+  // http://stackoverflow.com/questions/1852751/window-resize-event-firing-in-internet-explorer
+  $window.on('resize.' + SHUFFLE + '.' + this.unique, this._getResizeFunction());
+
+  // Get container css all in one request. Causes reflow
+  var containerCSS = this.$el.css(['position', 'overflow']);
+  var containerWidth = Shuffle._getOuterWidth( this.element );
+
+  // Add styles to the container if it doesn't have them.
+  this._validateStyles( containerCSS );
+
+  // We already got the container's width above, no need to cause another reflow getting it again...
+  // Calculate the number of columns there will be
+  this._setColumns( containerWidth );
+
+  // Kick off!
+  this.shuffle( this.group, this.initialSort );
+
+  // The shuffle items haven't had transitions set on them yet
+  // so the user doesn't see the first layout. Set them now that the first layout is done.
+  if ( this.supported ) {
+    defer(function() {
+      this._setTransitions();
+      this.element.style[ TRANSITION ] = 'height ' + this.speed + 'ms ' + this.easing;
+    }, this);
+  }
+};
+
+
+/**
+ * Returns a throttled and proxied function for the resize handler.
+ * @return {Function}
+ * @private
+ */
+Shuffle.prototype._getResizeFunction = function() {
+  var resizeFunction = $.proxy( this._onResize, this );
+  return this.throttle ?
+      this.throttle( resizeFunction, this.throttleTime ) :
+      resizeFunction;
+};
+
+
+/**
+ * Retrieve an element from an option.
+ * @param {string|jQuery|Element} option The option to check.
+ * @return {?Element} The plain element or null.
+ * @private
+ */
+Shuffle.prototype._getElementOption = function( option ) {
+  // If column width is a string, treat is as a selector and search for the
+  // sizer element within the outermost container
+  if ( typeof option === 'string' ) {
+    return this.$el.find( option )[0] || null;
+
+  // Check for an element
+  } else if ( option && option.nodeType && option.nodeType === 1 ) {
+    return option;
+
+  // Check for jQuery object
+  } else if ( option && option.jquery ) {
+    return option[0];
+  }
+
+  return null;
+};
+
+
+/**
+ * Ensures the shuffle container has the css styles it needs applied to it.
+ * @param {Object} styles Key value pairs for position and overflow.
+ * @private
+ */
+Shuffle.prototype._validateStyles = function(styles) {
+  // Position cannot be static.
+  if ( styles.position === 'static' ) {
+    this.element.style.position = 'relative';
+  }
+
+  // Overflow has to be hidden
+  if ( styles.overflow !== 'hidden' ) {
+    this.element.style.overflow = 'hidden';
+  }
+};
+
+
+/**
+ * Filter the elements by a category.
+ * @param {string} [category] Category to filter by. If it's given, the last
+ *     category will be used to filter the items.
+ * @param {ArrayLike} [$collection] Optionally filter a collection. Defaults to
+ *     all the items.
+ * @return {jQuery} Filtered items.
+ * @private
+ */
+Shuffle.prototype._filter = function( category, $collection ) {
+  category = category || this.lastFilter;
+  $collection = $collection || this.$items;
+
+  var set = this._getFilteredSets( category, $collection );
+
+  // Individually add/remove concealed/filtered classes
+  this._toggleFilterClasses( set.filtered, set.concealed );
+
+  // Save the last filter in case elements are appended.
+  this.lastFilter = category;
+
+  // This is saved mainly because providing a filter function (like searching)
+  // will overwrite the `lastFilter` property every time its called.
+  if ( typeof category === 'string' ) {
+    this.group = category;
+  }
+
+  return set.filtered;
+};
+
+
+/**
+ * Returns an object containing the filtered and concealed elements.
+ * @param {string|Function} category Category or function to filter by.
+ * @param {ArrayLike.<Element>} $items A collection of items to filter.
+ * @return {!{filtered: jQuery, concealed: jQuery}}
+ * @private
+ */
+Shuffle.prototype._getFilteredSets = function( category, $items ) {
+  var $filtered = $();
+  var $concealed = $();
+
+  // category === 'all', add filtered class to everything
+  if ( category === ALL_ITEMS ) {
+    $filtered = $items;
+
+  // Loop through each item and use provided function to determine
+  // whether to hide it or not.
+  } else {
+    each($items, function( el ) {
+      var $item = $(el);
+      if ( this._doesPassFilter( category, $item ) ) {
+        $filtered = $filtered.add( $item );
+      } else {
+        $concealed = $concealed.add( $item );
+      }
+    }, this);
+  }
+
+  return {
+    filtered: $filtered,
+    concealed: $concealed
+  };
+};
+
+
+/**
+ * Test an item to see if it passes a category.
+ * @param {string|Function} category Category or function to filter by.
+ * @param {jQuery} $item A single item, wrapped with jQuery.
+ * @return {boolean} Whether it passes the category/filter.
+ * @private
+ */
+Shuffle.prototype._doesPassFilter = function( category, $item ) {
+  if ( $.isFunction( category ) ) {
+    return category.call( $item[0], $item, this );
+
+  // Check each element's data-groups attribute against the given category.
+  } else {
+    var groups = $item.data( FILTER_ATTRIBUTE_KEY );
+    var keys = this.delimeter && !$.isArray( groups ) ?
+        groups.split( this.delimeter ) :
+        groups;
+    return $.inArray(category, keys) > -1;
+  }
+};
+
+
+/**
+ * Toggles the filtered and concealed class names.
+ * @param {jQuery} $filtered Filtered set.
+ * @param {jQuery} $concealed Concealed set.
+ * @private
+ */
+Shuffle.prototype._toggleFilterClasses = function( $filtered, $concealed ) {
+  $filtered
+    .removeClass( Shuffle.ClassName.CONCEALED )
+    .addClass( Shuffle.ClassName.FILTERED );
+  $concealed
+    .removeClass( Shuffle.ClassName.FILTERED )
+    .addClass( Shuffle.ClassName.CONCEALED );
+};
+
+
+/**
+ * Set the initial css for each item
+ * @param {jQuery} [$items] Optionally specifiy at set to initialize
+ */
+Shuffle.prototype._initItems = function( $items ) {
+  $items = $items || this.$items;
+  $items.addClass([
+    Shuffle.ClassName.SHUFFLE_ITEM,
+    Shuffle.ClassName.FILTERED
+  ].join(' '));
+  $items.css( this.itemCss ).data('point', new Point()).data('scale', DEFAULT_SCALE);
+};
+
+
+/**
+ * Updates the filtered item count.
+ * @private
+ */
+Shuffle.prototype._updateItemCount = function() {
+  this.visibleItems = this._getFilteredItems().length;
+};
+
+
+/**
+ * Sets css transform transition on a an element.
+ * @param {Element} element Element to set transition on.
+ * @private
+ */
+Shuffle.prototype._setTransition = function( element ) {
+  element.style[ TRANSITION ] = CSS_TRANSFORM + ' ' + this.speed + 'ms ' +
+    this.easing + ', opacity ' + this.speed + 'ms ' + this.easing;
+};
+
+
+/**
+ * Sets css transform transition on a group of elements.
+ * @param {ArrayLike.<Element>} $items Elements to set transitions on.
+ * @private
+ */
+Shuffle.prototype._setTransitions = function( $items ) {
+  $items = $items || this.$items;
+  each($items, function( el ) {
+    this._setTransition( el );
+  }, this);
+};
+
+
+/**
+ * Sets a transition delay on a collection of elements, making each delay
+ * greater than the last.
+ * @param {ArrayLike.<Element>} $collection Array to iterate over.
+ */
+Shuffle.prototype._setSequentialDelay = function( $collection ) {
+  if ( !this.supported ) {
+    return;
+  }
+
+  // $collection can be an array of dom elements or jquery object
+  each($collection, function( el, i ) {
+    // This works because the transition-property: transform, opacity;
+    el.style[ TRANSITION_DELAY ] = '0ms,' + ((i + 1) * this.sequentialFadeDelay) + 'ms';
+  }, this);
+};
+
+
+Shuffle.prototype._getItems = function() {
+  return this.$el.children( this.itemSelector );
+};
+
+
+Shuffle.prototype._getFilteredItems = function() {
+  return this.$items.filter('.' + Shuffle.ClassName.FILTERED);
+};
+
+
+Shuffle.prototype._getConcealedItems = function() {
+  return this.$items.filter('.' + Shuffle.ClassName.CONCEALED);
+};
+
+
+/**
+ * Returns the column size, based on column width and sizer options.
+ * @param {number} containerWidth Size of the parent container.
+ * @param {number} gutterSize Size of the gutters.
+ * @return {number}
+ * @private
+ */
+Shuffle.prototype._getColumnSize = function( containerWidth, gutterSize ) {
+  var size;
+
+  // If the columnWidth property is a function, then the grid is fluid
+  if ( $.isFunction( this.columnWidth ) ) {
+    size = this.columnWidth(containerWidth);
+
+  // columnWidth option isn't a function, are they using a sizing element?
+  } else if ( this.useSizer ) {
+    size = Shuffle._getOuterWidth(this.sizer);
+
+  // if not, how about the explicitly set option?
+  } else if ( this.columnWidth ) {
+    size = this.columnWidth;
+
+  // or use the size of the first item
+  } else if ( this.$items.length > 0 ) {
+    size = Shuffle._getOuterWidth(this.$items[0], true);
+
+  // if there's no items, use size of container
+  } else {
+    size = containerWidth;
+  }
+
+  // Don't let them set a column width of zero.
+  if ( size === 0 ) {
+    size = containerWidth;
+  }
+
+  return size + gutterSize;
+};
+
+
+/**
+ * Returns the gutter size, based on gutter width and sizer options.
+ * @param {number} containerWidth Size of the parent container.
+ * @return {number}
+ * @private
+ */
+Shuffle.prototype._getGutterSize = function( containerWidth ) {
+  var size;
+  if ( $.isFunction( this.gutterWidth ) ) {
+    size = this.gutterWidth(containerWidth);
+  } else if ( this.useSizer ) {
+    size = Shuffle._getNumberStyle(this.sizer, 'marginLeft');
+  } else {
+    size = this.gutterWidth;
+  }
+
+  return size;
+};
+
+
+/**
+ * Calculate the number of columns to be used. Gets css if using sizer element.
+ * @param {number} [theContainerWidth] Optionally specify a container width if it's already available.
+ */
+Shuffle.prototype._setColumns = function( theContainerWidth ) {
+  var containerWidth = theContainerWidth || Shuffle._getOuterWidth( this.element );
+  var gutter = this._getGutterSize( containerWidth );
+  var columnWidth = this._getColumnSize( containerWidth, gutter );
+  var calculatedColumns = (containerWidth + gutter) / columnWidth;
+
+  // Widths given from getComputedStyle are not precise enough...
+  if ( Math.abs(Math.round(calculatedColumns) - calculatedColumns) < COLUMN_THRESHOLD ) {
+    // e.g. calculatedColumns = 11.998876
+    calculatedColumns = Math.round( calculatedColumns );
+  }
+
+  this.cols = Math.max( Math.floor(calculatedColumns), 1 );
+  this.containerWidth = containerWidth;
+  this.colWidth = columnWidth;
+};
+
+/**
+ * Adjust the height of the grid
+ */
+Shuffle.prototype._setContainerSize = function() {
+  this.$el.css( 'height', this._getContainerSize() );
+};
+
+
+/**
+ * Based on the column heights, it returns the biggest one.
+ * @return {number}
+ * @private
+ */
+Shuffle.prototype._getContainerSize = function() {
+  return arrayMax( this.positions );
+};
+
+
+/**
+ * Fire events with .shuffle namespace
+ */
+Shuffle.prototype._fire = function( name, args ) {
+  this.$el.trigger( name + '.' + SHUFFLE, args && args.length ? args : [ this ] );
+};
+
+
+/**
+ * Zeros out the y columns array, which is used to determine item placement.
+ * @private
+ */
+Shuffle.prototype._resetCols = function() {
+  var i = this.cols;
+  this.positions = [];
+  while (i--) {
+    this.positions.push( 0 );
+  }
+};
+
+
+/**
+ * Loops through each item that should be shown and calculates the x, y position.
+ * @param {Array.<Element>} items Array of items that will be shown/layed out in order in their array.
+ *     Because jQuery collection are always ordered in DOM order, we can't pass a jq collection.
+ * @param {boolean} [isOnlyPosition=false] If true this will position the items with zero opacity.
+ */
+Shuffle.prototype._layout = function( items, isOnlyPosition ) {
+  each(items, function( item ) {
+    this._layoutItem( item, !!isOnlyPosition );
+  }, this);
+
+  // `_layout` always happens after `_shrink`, so it's safe to process the style
+  // queue here with styles from the shrink method.
+  this._processStyleQueue();
+
+  // Adjust the height of the container.
+  this._setContainerSize();
+};
+
+
+/**
+ * Calculates the position of the item and pushes it onto the style queue.
+ * @param {Element} item Element which is being positioned.
+ * @param {boolean} isOnlyPosition Whether to position the item, but with zero
+ *     opacity so that it can fade in later.
+ * @private
+ */
+Shuffle.prototype._layoutItem = function( item, isOnlyPosition ) {
+  var $item = $(item);
+  var itemData = $item.data();
+  var currPos = itemData.point;
+  var currScale = itemData.scale;
+  var itemSize = {
+    width: Shuffle._getOuterWidth( item, true ),
+    height: Shuffle._getOuterHeight( item, true )
+  };
+  var pos = this._getItemPosition( itemSize );
+
+  // If the item will not change its position, do not add it to the render
+  // queue. Transitions don't fire when setting a property to the same value.
+  if ( Point.equals(currPos, pos) && currScale === DEFAULT_SCALE ) {
+    return;
+  }
+
+  // Save data for shrink
+  itemData.point = pos;
+  itemData.scale = DEFAULT_SCALE;
+
+  this.styleQueue.push({
+    $item: $item,
+    point: pos,
+    scale: DEFAULT_SCALE,
+    opacity: isOnlyPosition ? 0 : 1,
+    skipTransition: isOnlyPosition,
+    callfront: function() {
+      if ( !isOnlyPosition ) {
+        $item.css( 'visibility', 'visible' );
+      }
+    },
+    callback: function() {
+      if ( isOnlyPosition ) {
+        $item.css( 'visibility', 'hidden' );
+      }
+    }
+  });
+};
+
+
+/**
+ * Determine the location of the next item, based on its size.
+ * @param {{width: number, height: number}} itemSize Object with width and height.
+ * @return {Point}
+ * @private
+ */
+Shuffle.prototype._getItemPosition = function( itemSize ) {
+  var columnSpan = this._getColumnSpan( itemSize.width, this.colWidth, this.cols );
+
+  var setY = this._getColumnSet( columnSpan, this.cols );
+
+  // Finds the index of the smallest number in the set.
+  var shortColumnIndex = this._getShortColumn( setY, this.buffer );
+
+  // Position the item
+  var point = new Point(
+    Math.round( this.colWidth * shortColumnIndex ),
+    Math.round( setY[shortColumnIndex] ));
+
+  // Update the columns array with the new values for each column.
+  // e.g. before the update the columns could be [250, 0, 0, 0] for an item
+  // which spans 2 columns. After it would be [250, itemHeight, itemHeight, 0].
+  var setHeight = setY[shortColumnIndex] + itemSize.height;
+  var setSpan = this.cols + 1 - setY.length;
+  for ( var i = 0; i < setSpan; i++ ) {
+    this.positions[ shortColumnIndex + i ] = setHeight;
+  }
+
+  return point;
+};
+
+
+/**
+ * Determine the number of columns an items spans.
+ * @param {number} itemWidth Width of the item.
+ * @param {number} columnWidth Width of the column (includes gutter).
+ * @param {number} columns Total number of columns
+ * @return {number}
+ * @private
+ */
+Shuffle.prototype._getColumnSpan = function( itemWidth, columnWidth, columns ) {
+  var columnSpan = itemWidth / columnWidth;
+
+  // If the difference between the rounded column span number and the
+  // calculated column span number is really small, round the number to
+  // make it fit.
+  if ( Math.abs(Math.round( columnSpan ) - columnSpan ) < COLUMN_THRESHOLD ) {
+    // e.g. columnSpan = 4.0089945390298745
+    columnSpan = Math.round( columnSpan );
+  }
+
+  // Ensure the column span is not more than the amount of columns in the whole layout.
+  return Math.min( Math.ceil( columnSpan ), columns );
+};
+
+
+/**
+ * Retrieves the column set to use for placement.
+ * @param {number} columnSpan The number of columns this current item spans.
+ * @param {number} columns The total columns in the grid.
+ * @return {Array.<number>} An array of numbers represeting the column set.
+ * @private
+ */
+Shuffle.prototype._getColumnSet = function( columnSpan, columns ) {
+  // The item spans only one column.
+  if ( columnSpan === 1 ) {
+    return this.positions;
+
+  // The item spans more than one column, figure out how many different
+  // places it could fit horizontally.
+  // The group count is the number of places within the positions this block
+  // could fit, ignoring the current positions of items.
+  // Imagine a 2 column brick as the second item in a 4 column grid with
+  // 10px height each. Find the places it would fit:
+  // [10, 0, 0, 0]
+  //  |   |  |
+  //  *   *  *
+  //
+  // Then take the places which fit and get the bigger of the two:
+  // max([10, 0]), max([0, 0]), max([0, 0]) = [10, 0, 0]
+  //
+  // Next, find the first smallest number (the short column).
+  // [10, 0, 0]
+  //      |
+  //      *
+  //
+  // And that's where it should be placed!
+  } else {
+    var groupCount = columns + 1 - columnSpan;
+    var groupY = [];
+
+    // For how many possible positions for this item there are.
+    for ( var i = 0; i < groupCount; i++ ) {
+      // Find the bigger value for each place it could fit.
+      groupY[i] = arrayMax( this.positions.slice( i, i + columnSpan ) );
+    }
+
+    return groupY;
+  }
+};
+
+
+/**
+ * Find index of short column, the first from the left where this item will go.
+ *
+ * @param {Array.<number>} positions The array to search for the smallest number.
+ * @param {number} buffer Optional buffer which is very useful when the height
+ *     is a percentage of the width.
+ * @return {number} Index of the short column.
+ * @private
+ */
+Shuffle.prototype._getShortColumn = function( positions, buffer ) {
+  var minPosition = arrayMin( positions );
+  for (var i = 0, len = positions.length; i < len; i++) {
+    if ( positions[i] >= minPosition - buffer && positions[i] <= minPosition + buffer ) {
+      return i;
+    }
+  }
+  return 0;
+};
+
+
+/**
+ * Hides the elements that don't match our filter.
+ * @param {jQuery} $collection jQuery collection to shrink.
+ * @private
+ */
+Shuffle.prototype._shrink = function( $collection ) {
+  var $concealed = $collection || this._getConcealedItems();
+
+  each($concealed, function( item ) {
+    var $item = $(item);
+    var itemData = $item.data();
+
+    // Continuing would add a transitionend event listener to the element, but
+    // that listener would not execute because the transform and opacity would
+    // stay the same.
+    if ( itemData.scale === CONCEALED_SCALE ) {
+      return;
+    }
+
+    itemData.scale = CONCEALED_SCALE;
+
+    this.styleQueue.push({
+      $item: $item,
+      point: itemData.point,
+      scale : CONCEALED_SCALE,
+      opacity: 0,
+      callback: function() {
+        $item.css( 'visibility', 'hidden' );
+      }
+    });
+  }, this);
+};
+
+
+/**
+ * Resize handler.
+ * @private
+ */
+Shuffle.prototype._onResize = function() {
+  // If shuffle is disabled, destroyed, don't do anything
+  if ( !this.enabled || this.destroyed || this.isTransitioning ) {
+    return;
+  }
+
+  // Will need to check height in the future if it's layed out horizontaly
+  var containerWidth = Shuffle._getOuterWidth( this.element );
+
+  // containerWidth hasn't changed, don't do anything
+  if ( containerWidth === this.containerWidth ) {
+    return;
+  }
+
+  this.update();
+};
+
+
+/**
+ * Returns styles for either jQuery animate or transition.
+ * @param {Object} opts Transition options.
+ * @return {!Object} Transforms for transitions, left/top for animate.
+ * @private
+ */
+Shuffle.prototype._getStylesForTransition = function( opts ) {
+  var styles = {
+    opacity: opts.opacity
+  };
+
+  if ( this.supported ) {
+    styles[ TRANSFORM ] = Shuffle._getItemTransformString( opts.point, opts.scale );
+  } else {
+    styles.left = opts.point.x;
+    styles.top = opts.point.y;
+  }
+
+  return styles;
+};
+
+
+/**
+ * Transitions an item in the grid
+ *
+ * @param {Object} opts options.
+ * @param {jQuery} opts.$item jQuery object representing the current item.
+ * @param {Point} opts.point A point object with the x and y coordinates.
+ * @param {number} opts.scale Amount to scale the item.
+ * @param {number} opts.opacity Opacity of the item.
+ * @param {Function} opts.callback Complete function for the animation.
+ * @param {Function} opts.callfront Function to call before transitioning.
+ * @private
+ */
+Shuffle.prototype._transition = function( opts ) {
+  var styles = this._getStylesForTransition( opts );
+  this._startItemAnimation( opts.$item, styles, opts.callfront || $.noop, opts.callback || $.noop );
+};
+
+
+Shuffle.prototype._startItemAnimation = function( $item, styles, callfront, callback ) {
+  // Transition end handler removes its listener.
+  function handleTransitionEnd( evt ) {
+    // Make sure this event handler has not bubbled up from a child.
+    if ( evt.target === evt.currentTarget ) {
+      $( evt.target ).off( TRANSITIONEND, handleTransitionEnd );
+      callback();
+    }
+  }
+
+  callfront();
+
+  // Transitions are not set until shuffle has loaded to avoid the initial transition.
+  if ( !this.initialized ) {
+    $item.css( styles );
+    callback();
+    return;
+  }
+
+  // Use CSS Transforms if we have them
+  if ( this.supported ) {
+    $item.css( styles );
+    $item.on( TRANSITIONEND, handleTransitionEnd );
+
+  // Use jQuery to animate left/top
+  } else {
+    // Save the deferred object which jQuery returns.
+    var anim = $item.stop( true ).animate( styles, this.speed, 'swing', callback );
+    // Push the animation to the list of pending animations.
+    this._animations.push( anim.promise() );
+  }
+};
+
+
+/**
+ * Execute the styles gathered in the style queue. This applies styles to elements,
+ * triggering transitions.
+ * @param {boolean} noLayout Whether to trigger a layout event.
+ * @private
+ */
+Shuffle.prototype._processStyleQueue = function( noLayout ) {
+  var $transitions = $();
+
+  // Iterate over the queue and keep track of ones that use transitions.
+  each(this.styleQueue, function( transitionObj ) {
+    if ( transitionObj.skipTransition ) {
+      this._styleImmediately( transitionObj );
+    } else {
+      $transitions = $transitions.add( transitionObj.$item );
+      this._transition( transitionObj );
+    }
+  }, this);
+
+
+  if ( $transitions.length > 0 && this.initialized ) {
+    // Set flag that shuffle is currently in motion.
+    this.isTransitioning = true;
+
+    if ( this.supported ) {
+      this._whenCollectionDone( $transitions, TRANSITIONEND, this._movementFinished );
+
+    // The _transition function appends a promise to the animations array.
+    // When they're all complete, do things.
+    } else {
+      this._whenAnimationsDone( this._movementFinished );
+    }
+
+  // A call to layout happened, but none of the newly filtered items will
+  // change position. Asynchronously fire the callback here.
+  } else if ( !noLayout ) {
+    defer( this._layoutEnd, this );
+  }
+
+  // Remove everything in the style queue
+  this.styleQueue.length = 0;
+};
+
+
+/**
+ * Apply styles without a transition.
+ * @param {Object} opts Transitions options object.
+ * @private
+ */
+Shuffle.prototype._styleImmediately = function( opts ) {
+  Shuffle._skipTransition(opts.$item[0], function() {
+    opts.$item.css( this._getStylesForTransition( opts ) );
+  }, this);
+};
+
+Shuffle.prototype._movementFinished = function() {
+  this.isTransitioning = false;
+  this._layoutEnd();
+};
+
+Shuffle.prototype._layoutEnd = function() {
+  this._fire( Shuffle.EventType.LAYOUT );
+};
+
+Shuffle.prototype._addItems = function( $newItems, addToEnd, isSequential ) {
+  // Add classes and set initial positions.
+  this._initItems( $newItems );
+
+  // Add transition to each item.
+  this._setTransitions( $newItems );
+
+  // Update the list of
+  this.$items = this._getItems();
+
+  // Shrink all items (without transitions).
+  this._shrink( $newItems );
+  each(this.styleQueue, function( transitionObj ) {
+    transitionObj.skipTransition = true;
+  });
+
+  // Apply shrink positions, but do not cause a layout event.
+  this._processStyleQueue( true );
+
+  if ( addToEnd ) {
+    this._addItemsToEnd( $newItems, isSequential );
+  } else {
+    this.shuffle( this.lastFilter );
+  }
+};
+
+
+Shuffle.prototype._addItemsToEnd = function( $newItems, isSequential ) {
+  // Get ones that passed the current filter
+  var $passed = this._filter( null, $newItems );
+  var passed = $passed.get();
+
+  // How many filtered elements?
+  this._updateItemCount();
+
+  this._layout( passed, true );
+
+  if ( isSequential && this.supported ) {
+    this._setSequentialDelay( passed );
+  }
+
+  this._revealAppended( passed );
+};
+
+
+/**
+ * Triggers appended elements to fade in.
+ * @param {ArrayLike.<Element>} $newFilteredItems Collection of elements.
+ * @private
+ */
+Shuffle.prototype._revealAppended = function( newFilteredItems ) {
+  defer(function() {
+    each(newFilteredItems, function( el ) {
+      var $item = $( el );
+      this._transition({
+        $item: $item,
+        opacity: 1,
+        point: $item.data('point'),
+        scale: DEFAULT_SCALE
+      });
+    }, this);
+
+    this._whenCollectionDone($(newFilteredItems), TRANSITIONEND, function() {
+      $(newFilteredItems).css( TRANSITION_DELAY, '0ms' );
+      this._movementFinished();
+    });
+  }, this, this.revealAppendedDelay);
+};
+
+
+/**
+ * Execute a function when an event has been triggered for every item in a collection.
+ * @param {jQuery} $collection Collection of elements.
+ * @param {string} eventName Event to listen for.
+ * @param {Function} callback Callback to execute when they're done.
+ * @private
+ */
+Shuffle.prototype._whenCollectionDone = function( $collection, eventName, callback ) {
+  var done = 0;
+  var items = $collection.length;
+  var self = this;
+
+  function handleEventName( evt ) {
+    if ( evt.target === evt.currentTarget ) {
+      $( evt.target ).off( eventName, handleEventName );
+      done++;
+
+      // Execute callback if all items have emitted the correct event.
+      if ( done === items ) {
+        callback.call( self );
+      }
+    }
+  }
+
+  // Bind the event to all items.
+  $collection.on( eventName, handleEventName );
+};
+
+
+/**
+ * Execute a callback after jQuery `animate` for a collection has finished.
+ * @param {Function} callback Callback to execute when they're done.
+ * @private
+ */
+Shuffle.prototype._whenAnimationsDone = function( callback ) {
+  $.when.apply( null, this._animations ).always( $.proxy( function() {
+    this._animations.length = 0;
+    callback.call( this );
+  }, this ));
+};
+
+
+/**
+ * Public Methods
+ */
+
+/**
+ * The magic. This is what makes the plugin 'shuffle'
+ * @param {string|Function} [category] Category to filter by. Can be a function
+ * @param {Object} [sortObj] A sort object which can sort the filtered set
+ */
+Shuffle.prototype.shuffle = function( category, sortObj ) {
+  if ( !this.enabled || this.isTransitioning ) {
+    return;
+  }
+
+  if ( !category ) {
+    category = ALL_ITEMS;
+  }
+
+  this._filter( category );
+
+  // How many filtered elements?
+  this._updateItemCount();
+
+  // Shrink each concealed item
+  this._shrink();
+
+  // Update transforms on .filtered elements so they will animate to their new positions
+  this.sort( sortObj );
+};
+
+
+/**
+ * Gets the .filtered elements, sorts them, and passes them to layout.
+ * @param {Object} opts the options object for the sorted plugin
+ */
+Shuffle.prototype.sort = function( opts ) {
+  if ( this.enabled && !this.isTransitioning ) {
+    this._resetCols();
+
+    var sortOptions = opts || this.lastSort;
+    var items = this._getFilteredItems().sorted( sortOptions );
+
+    this._layout( items );
+
+    this.lastSort = sortOptions;
+  }
+};
+
+
+/**
+ * Reposition everything.
+ * @param {boolean} isOnlyLayout If true, column and gutter widths won't be
+ *     recalculated.
+ */
+Shuffle.prototype.update = function( isOnlyLayout ) {
+  if ( this.enabled && !this.isTransitioning ) {
+
+    if ( !isOnlyLayout ) {
+      // Get updated colCount
+      this._setColumns();
+    }
+
+    // Layout items
+    this.sort();
+  }
+};
+
+
+/**
+ * Use this instead of `update()` if you don't need the columns and gutters updated
+ * Maybe an image inside `shuffle` loaded (and now has a height), which means calculations
+ * could be off.
+ */
+Shuffle.prototype.layout = function() {
+  this.update( true );
+};
+
+
+/**
+ * New items have been appended to shuffle. Fade them in sequentially
+ * @param {jQuery} $newItems jQuery collection of new items
+ * @param {boolean} [addToEnd=false] If true, new items will be added to the end / bottom
+ *     of the items. If not true, items will be mixed in with the current sort order.
+ * @param {boolean} [isSequential=true] If false, new items won't sequentially fade in
+ */
+Shuffle.prototype.appended = function( $newItems, addToEnd, isSequential ) {
+  this._addItems( $newItems, addToEnd === true, isSequential !== false );
+};
+
+
+/**
+ * Disables shuffle from updating dimensions and layout on resize
+ */
+Shuffle.prototype.disable = function() {
+  this.enabled = false;
+};
+
+
+/**
+ * Enables shuffle again
+ * @param {boolean} [isUpdateLayout=true] if undefined, shuffle will update columns and gutters
+ */
+Shuffle.prototype.enable = function( isUpdateLayout ) {
+  this.enabled = true;
+  if ( isUpdateLayout !== false ) {
+    this.update();
+  }
+};
+
+
+/**
+ * Remove 1 or more shuffle items
+ * @param {jQuery} $collection A jQuery object containing one or more element in shuffle
+ * @return {Shuffle} The shuffle object
+ */
+Shuffle.prototype.remove = function( $collection ) {
+
+  // If this isn't a jquery object, exit
+  if ( !$collection.length || !$collection.jquery ) {
+    return;
+  }
+
+  function handleRemoved() {
+    // Remove the collection in the callback
+    $collection.remove();
+
+    // Update things now that elements have been removed.
+    this.$items = this._getItems();
+    this._updateItemCount();
+
+    this._fire( Shuffle.EventType.REMOVED, [ $collection, this ] );
+
+    // Let it get garbage collected
+    $collection = null;
+  }
+
+  // Hide collection first.
+  this._toggleFilterClasses( $(), $collection );
+  this._shrink( $collection );
+
+  this.sort();
+
+  this.$el.one( Shuffle.EventType.LAYOUT + '.' + SHUFFLE, $.proxy( handleRemoved, this ) );
+};
+
+
+/**
+ * Destroys shuffle, removes events, styles, and classes
+ */
+Shuffle.prototype.destroy = function() {
+  // If there is more than one shuffle instance on the page,
+  // removing the resize handler from the window would remove them
+  // all. This is why a unique value is needed.
+  $window.off('.' + this.unique);
+
+  // Reset container styles
+  this.$el
+      .removeClass( SHUFFLE )
+      .removeAttr('style')
+      .removeData( SHUFFLE );
+
+  // Reset individual item styles
+  this.$items
+      .removeAttr('style')
+      .removeData('point')
+      .removeData('scale')
+      .removeClass([
+        Shuffle.ClassName.CONCEALED,
+        Shuffle.ClassName.FILTERED,
+        Shuffle.ClassName.SHUFFLE_ITEM
+      ].join(' '));
+
+  // Null DOM references
+  this.$items = null;
+  this.$el = null;
+  this.sizer = null;
+  this.element = null;
+
+  // Set a flag so if a debounced resize has been triggered,
+  // it can first check if it is actually destroyed and not doing anything
+  this.destroyed = true;
+};
+
+
+// Plugin definition
+$.fn.shuffle = function( opts ) {
+  var args = Array.prototype.slice.call( arguments, 1 );
+  return this.each(function() {
+    var $this = $( this );
+    var shuffle = $this.data( SHUFFLE );
+
+    // If we don't have a stored shuffle, make a new one and save it
+    if ( !shuffle ) {
+      shuffle = new Shuffle( this, opts );
+      $this.data( SHUFFLE, shuffle );
+    } else if ( typeof opts === 'string' && shuffle[ opts ] ) {
+      shuffle[ opts ].apply( shuffle, args );
+    }
+  });
+};
+
+
+// http://stackoverflow.com/a/962890/373422
+function randomize( array ) {
+  var tmp, current;
+  var top = array.length;
+
+  if ( !top ) {
+    return array;
+  }
+
+  while ( --top ) {
+    current = Math.floor( Math.random() * (top + 1) );
+    tmp = array[ current ];
+    array[ current ] = array[ top ];
+    array[ top ] = tmp;
+  }
+
+  return array;
+}
+
+
+// You can return `undefined` from the `by` function to revert to DOM order
+// This plugin does NOT return a jQuery object. It returns a plain array because
+// jQuery sorts everything in DOM order.
+$.fn.sorted = function(options) {
+  var opts = $.extend({}, $.fn.sorted.defaults, options);
+  var arr = this.get();
+  var revert = false;
+
+  if ( !arr.length ) {
+    return [];
+  }
+
+  if ( opts.randomize ) {
+    return randomize( arr );
+  }
+
+  // Sort the elements by the opts.by function.
+  // If we don't have opts.by, default to DOM order
+  if ( $.isFunction( opts.by ) ) {
+    arr.sort(function(a, b) {
+
+      // Exit early if we already know we want to revert
+      if ( revert ) {
+        return 0;
+      }
+
+      var valA = opts.by($(a));
+      var valB = opts.by($(b));
+
+      // If both values are undefined, use the DOM order
+      if ( valA === undefined && valB === undefined ) {
+        revert = true;
+        return 0;
+      }
+
+      if ( valA < valB || valA === 'sortFirst' || valB === 'sortLast' ) {
+        return -1;
+      }
+
+      if ( valA > valB || valA === 'sortLast' || valB === 'sortFirst' ) {
+        return 1;
+      }
+
+      return 0;
+    });
+  }
+
+  // Revert to the original array if necessary
+  if ( revert ) {
+    return this.get();
+  }
+
+  if ( opts.reverse ) {
+    arr.reverse();
+  }
+
+  return arr;
+};
+
+
+$.fn.sorted.defaults = {
+  reverse: false, // Use array.reverse() to reverse the results
+  by: null, // Sorting function
+  randomize: false // If true, this will skip the sorting and return a randomized order in the array
+};
+
+return Shuffle;
+
+});
\ No newline at end of file
diff --git a/js/toc.js b/js/toc.js
new file mode 100644
index 0000000000000000000000000000000000000000..a54d172efc6ffeb64156a6018fd059e501327a3b
--- /dev/null
+++ b/js/toc.js
@@ -0,0 +1,82 @@
+// https://github.com/ghiculescu/jekyll-table-of-contents
+(function($){
+  $.fn.toc = function(options) {
+    var defaults = {
+      noBackToTopLinks: false,
+      title: '',
+      minimumHeaders: 3,
+      headers: 'h1, h2, h3, h4',
+      listType: 'ol', // values: [ol|ul]
+      showEffect: 'show', // values: [show|slideDown|fadeIn|none]
+      showSpeed: 'slow' // set to 0 to deactivate effect
+    },
+    settings = $.extend(defaults, options);
+
+    var headers = $(settings.headers).filter(function() {
+      // get all headers with an ID
+      var previousSiblingName = $(this).prev().attr( "name" );
+      if (!this.id && previousSiblingName) {
+        this.id = $(this).attr( "id", previousSiblingName.replace(/\./g, "-") );
+      }
+      return this.id;
+    }), output = $(this);
+    if (!headers.length || headers.length < settings.minimumHeaders || !output.length) {
+      return;
+    }
+
+    if (0 === settings.showSpeed) {
+      settings.showEffect = 'none';
+    }
+
+    var render = {
+      show: function() { output.hide().html(html).show(settings.showSpeed); },
+      slideDown: function() { output.hide().html(html).slideDown(settings.showSpeed); },
+      fadeIn: function() { output.hide().html(html).fadeIn(settings.showSpeed); },
+      none: function() { output.html(html); }
+    };
+
+    var get_level = function(ele) { return parseInt(ele.nodeName.replace("H", ""), 10); }
+    var highest_level = headers.map(function(_, ele) { return get_level(ele); }).get().sort()[0];
+    var return_to_top = '<i class="icon-arrow-up back-to-top"> </i>';
+
+    var level = get_level(headers[0]),
+      this_level,
+      html = settings.title + " <"+settings.listType+">";
+    headers.on('click', function() {
+      if (!settings.noBackToTopLinks) {
+        window.location.hash = this.id;
+      }
+    })
+    .addClass('clickable-header')
+    .each(function(_, header) {
+      this_level = get_level(header);
+      if (!settings.noBackToTopLinks && this_level === highest_level) {
+        $(header).addClass('top-level-header').after(return_to_top);
+      }
+      if (this_level === level) // same level as before; same indenting
+        html += "<li><a href='#" + header.id + "'>" + header.innerHTML + "</a>";
+      else if (this_level <= level){ // higher level than before; end parent ol
+        for(i = this_level; i < level; i++) {
+          html += "</li></"+settings.listType+">"
+        }
+        html += "<li><a href='#" + header.id + "'>" + header.innerHTML + "</a>";
+      }
+      else if (this_level > level) { // lower level than before; expand the previous to contain a ol
+        for(i = this_level; i > level; i--) {
+          html += "<"+settings.listType+"><li>"
+        }
+        html += "<a href='#" + header.id + "'>" + header.innerHTML + "</a>";
+      }
+      level = this_level; // update for the next one
+    });
+    html += "</"+settings.listType+">";
+    if (!settings.noBackToTopLinks) {
+      $(document).on('click', '.back-to-top', function() {
+        $(window).scrollTop(0);
+        window.location.hash = '';
+      });
+    }
+
+    render[settings.showEffect]();
+  };
+})(jQuery);
\ No newline at end of file
diff --git a/licenses/LICENSE b/licenses/LICENSE
new file mode 100644
index 0000000000000000000000000000000000000000..e04b3d02e32f76000dd95f56ca68316d1e5f148f
--- /dev/null
+++ b/licenses/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2016 Tom Johnson
+
+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/licenses/LICENSE-BSD-NAVGOCO.txt b/licenses/LICENSE-BSD-NAVGOCO.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7fdefc390326f80bf5059b61b165b24d3e500f44
--- /dev/null
+++ b/licenses/LICENSE-BSD-NAVGOCO.txt
@@ -0,0 +1,27 @@
+/* This license pertains to the Navgoco jQuery component used for the sidebar. */
+
+Copyright (c) 2013, Christodoulos Tsoulloftas, http://www.komposta.net
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+   * Redistributions of source code must retain the above copyright notice,
+      this list of conditions and the following disclaimer.
+   * Redistributions in binary form must reproduce the above copyright notice,
+      this list of conditions and the following disclaimer in the documentation
+      and/or other materials provided with the distribution.
+   * Neither the name of the <Christodoulos Tsoulloftas> nor the names of its
+      contributors may be used to endorse or promote products derived from this
+      software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/pages/mydoc/mydoc_about.md b/pages/mydoc/mydoc_about.md
new file mode 100644
index 0000000000000000000000000000000000000000..88a87d5830a7fc75612956021d9f1f578fbfc229
--- /dev/null
+++ b/pages/mydoc/mydoc_about.md
@@ -0,0 +1,22 @@
+---
+title: About the theme's author
+keywords: documentation theme, jekyll, technical writers, help authoring tools, hat replacements
+last_updated: July 3, 2016
+tags: [getting_started]
+summary: "I have used this theme for projects that I've worked on as a professional technical writer."
+sidebar: mydoc_sidebar
+permalink: mydoc_about.html
+folder: mydoc
+---
+
+My name is Tom Johnson, and I'm a technical writer, blogger, and podcaster based in San Jose, California. For more details, see my [technical writing blog](http://idratherbewriting.com) and my [course on API documentation](http://idratherbewriting.com/learnapidoc/).  See [my blog's about page](http://idratherbewriting.com/aboutme/) for more details about me.
+
+I have used this theme and variations of it for various documentation projects. This theme has undergone several major iterations, and now it's fairly stable and full of all the features that I need. You are welcome to use it for your documentation projects for free.
+
+I think this theme does pretty much everything that you can do with something like OxygenXML, but without the constraints of structured authoring. Everything is completely open and changeable, so if you start tinkering around with the theme's files, you can break things. But it's completely empowering as well!
+
+With a completely open architecture and code base, you can modify the code to make it do exactly what you want, without having to jump through all kinds of confusing or proprietary code.
+
+If there's a feature you need but it isn't available here, let me know and I might add it. Alternatively, if you fork the theme, I would love to see your modifications and enhancements. Thanks for using Jekyll.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_about_ruby_gems_bundler.md b/pages/mydoc/mydoc_about_ruby_gems_bundler.md
new file mode 100644
index 0000000000000000000000000000000000000000..b03bc2465ffba2c2fe121b9c0efb64170fc5ddbc
--- /dev/null
+++ b/pages/mydoc/mydoc_about_ruby_gems_bundler.md
@@ -0,0 +1,254 @@
+---
+title: About Ruby, Gems, Bundler, and other prerequisites
+tags: [getting_started, troubleshooting]
+keywords:
+summary: "Ruby is a programming language you must have on your computer in order to build Jekyll locally. Ruby has various gems (or plugins) that provide various functionality. Each Jekyll project usually requires certain gems."
+sidebar: mydoc_sidebar
+permalink: mydoc_about_ruby_gems_etc.html
+folder: mydoc
+---
+
+## About Ruby
+
+Jekyll runs on Ruby, a programming language. You have to have Ruby on your computer in order to run Ruby-based programs like Jekyll. Ruby is installed on the Mac by default, but you must add it to Windows.
+
+## About Ruby Gems
+
+Ruby has a number of plugins referred to as "gems." Just because you have Ruby doesn't mean you have all the necessary Ruby gems that your program needs to run. Gems provide additional functionality for Ruby programs. There are thousands of [Rubygems](https://rubygems.org/) available for you to use.
+
+Some gems depend on other gems for functionality. For example, the Jekyll gem might depend on 20 other gems that must also be installed.
+
+Each gem has a version associated with it, and not all gem versions are compatible with each other.
+
+## Rubygem package managers
+
+[Bundler](http://bundler.io/) is a gem package manager for Ruby, which means it goes out and gets all the gems you need for your Ruby programs. If you tell Bundler you need the [jekyll gem](https://rubygems.org/gems/jekyll), it will retrieve all the dependencies on the jekyll gem as well -- automatically.
+
+Not only does Bundler retrieve the right gem dependencies, but it's smart enough to retrieve the right versions of each gem. For example, if you get the [github-pages](https://rubygems.org/gems/github-pages) gem, it will retrieve all of these other gems:
+
+```
+github-pages-health-check = 1.1.0
+jekyll = 3.0.3
+jekyll-coffeescript = 1.0.1
+jekyll-feed = 0.4.0
+jekyll-gist = 1.4.0
+jekyll-github-metadata = 1.9.0
+jekyll-mentions = 1.1.2
+jekyll-paginate = 1.1.0
+jekyll-redirect-from = 0.10.0
+jekyll-sass-converter = 1.3.0
+jekyll-seo-tag = 1.3.2
+jekyll-sitemap = 0.10.0
+jekyll-textile-converter = 0.1.0
+jemoji = 0.6.2
+kramdown = 1.10.0
+liquid = 3.0.6
+mercenary ~> 0.3
+rdiscount = 2.1.8
+redcarpet = 3.3.3
+RedCloth = 4.2.9
+rouge = 1.10.1
+terminal-table ~> 1.
+```
+
+See how Bundler retrieved version 3.0.3 of the jekyll gem, even though (as of this writing) the latest version of the jekyll gem is 3.1.2? That's because github-pages is only compatible up to jekyll 3.0.3. Bundler handles all of this dependency and version compatibility for you.
+
+ Trying to keep track of which gems and versions are appropriate for your project can be a nightmare. This is the problem Bundler solves. As explained on [Bundler.io](http://bundler.io/):
+
+> Bundler provides a consistent environment for Ruby projects by tracking and installing the exact gems and versions that are needed.
+>
+> Bundler is an exit from dependency hell, and ensures that the gems you need are present in development, staging, and production. Starting work on a project is as simple as bundle install.
+
+## Gemfiles
+
+Bundler looks in a project's "Gemfile" (no file extension) to see which gems are required by the project. The Gemfile lists the source and then any gems, like this:
+
+```
+source "https://rubygems.org"
+
+gem 'github-pages'
+gem 'jekyll'
+```
+
+The source indicates the site where Bundler will retrieve the gems: [https://rubygems.org](https://rubygems.org).
+
+The gems it retrieves are listed separately on each line.
+
+Here no versions are specified. Sometimes gemfiles will specify the versions like this:
+
+```
+gem 'kramdown', '1.0'
+```
+
+This means Bundler should get version 1.0 of the kramdown gem.
+
+To specify a subset of versions, the Gemfile looks like this:
+
+```
+gem 'jekyll', '~> 2.3'
+```
+The `~>` sign means greater than or equal to the *last digit before the last period in the number*.
+
+Here it will get any gem equal to 2.3 but less than 3.0.
+
+If it adds another digit, the scope is affected:
+
+```
+gem `jekyll`, `~>2.3.1'
+```
+
+This means to get any gem equal to 2.3.1 but less than 2.4.
+
+If it looks like this:
+
+```
+gem 'jekyll', '~> 3.0', '>= 3.0.3'
+```
+
+This will get any Jekyll gem between versions 3.0 and up to 3.0.3.
+
+See this [Stack Overflow post](http://stackoverflow.com/questions/5170547/what-does-tilde-greater-than-mean-in-ruby-gem-dependencies) for more details.
+
+## Gemfile.lock
+
+After Bundler retrieves and installs the gems, it makes a detailed list of all the gems and versions it has installed for your project. The snapshot of all gems + versions installed is stored in your Gemfile.lock file, which might look like this:
+
+```
+GEM
+  remote: https://rubygems.org/
+  specs:
+    RedCloth (4.2.9)
+    activesupport (4.2.5.1)
+      i18n (~> 0.7)
+      json (~> 1.7, >= 1.7.7)
+      minitest (~> 5.1)
+      thread_safe (~> 0.3, >= 0.3.4)
+      tzinfo (~> 1.1)
+    addressable (2.3.8)
+    coffee-script (2.4.1)
+      coffee-script-source
+      execjs
+    coffee-script-source (1.10.0)
+    colorator (0.1)
+    ethon (0.8.1)
+      ffi (>= 1.3.0)
+    execjs (2.6.0)
+    faraday (0.9.2)
+      multipart-post (>= 1.2, < 3)
+    ffi (1.9.10)
+    gemoji (2.1.0)
+    github-pages (52)
+      RedCloth (= 4.2.9)
+      github-pages-health-check (= 1.0.1)
+      jekyll (= 3.0.3)
+      jekyll-coffeescript (= 1.0.1)
+      jekyll-feed (= 0.4.0)
+      jekyll-gist (= 1.4.0)
+      jekyll-mentions (= 1.0.1)
+      jekyll-paginate (= 1.1.0)
+      jekyll-redirect-from (= 0.9.1)
+      jekyll-sass-converter (= 1.3.0)
+      jekyll-seo-tag (= 1.3.1)
+      jekyll-sitemap (= 0.10.0)
+      jekyll-textile-converter (= 0.1.0)
+      jemoji (= 0.5.1)
+      kramdown (= 1.9.0)
+      liquid (= 3.0.6)
+      mercenary (~> 0.3)
+      rdiscount (= 2.1.8)
+      redcarpet (= 3.3.3)
+      rouge (= 1.10.1)
+      terminal-table (~> 1.4)
+    github-pages-health-check (1.0.1)
+      addressable (~> 2.3)
+      net-dns (~> 0.8)
+      octokit (~> 4.0)
+      public_suffix (~> 1.4)
+      typhoeus (~> 0.7)
+    html-pipeline (2.3.0)
+      activesupport (>= 2, < 5)
+      nokogiri (>= 1.4)
+    i18n (0.7.0)
+    jekyll (3.0.3)
+      colorator (~> 0.1)
+      jekyll-sass-converter (~> 1.0)
+      jekyll-watch (~> 1.1)
+      kramdown (~> 1.3)
+      liquid (~> 3.0)
+      mercenary (~> 0.3.3)
+      rouge (~> 1.7)
+      safe_yaml (~> 1.0)
+    jekyll-coffeescript (1.0.1)
+      coffee-script (~> 2.2)
+    jekyll-feed (0.4.0)
+    jekyll-gist (1.4.0)
+      octokit (~> 4.2)
+    jekyll-mentions (1.0.1)
+      html-pipeline (~> 2.3)
+      jekyll (~> 3.0)
+    jekyll-paginate (1.1.0)
+    jekyll-redirect-from (0.9.1)
+      jekyll (>= 2.0)
+    jekyll-sass-converter (1.3.0)
+      sass (~> 3.2)
+    jekyll-seo-tag (1.3.1)
+      jekyll (~> 3.0)
+    jekyll-sitemap (0.10.0)
+    jekyll-textile-converter (0.1.0)
+      RedCloth (~> 4.0)
+    jekyll-watch (1.3.1)
+      listen (~> 3.0)
+    jemoji (0.5.1)
+      gemoji (~> 2.0)
+      html-pipeline (~> 2.2)
+      jekyll (>= 2.0)
+    json (1.8.3)
+    kramdown (1.9.0)
+    liquid (3.0.6)
+    listen (3.0.6)
+      rb-fsevent (>= 0.9.3)
+      rb-inotify (>= 0.9.7)
+    mercenary (0.3.5)
+    mini_portile2 (2.0.0)
+    minitest (5.8.4)
+    multipart-post (2.0.0)
+    net-dns (0.8.0)
+    nokogiri (1.6.7.2)
+      mini_portile2 (~> 2.0.0.rc2)
+    octokit (4.2.0)
+      sawyer (~> 0.6.0, >= 0.5.3)
+    public_suffix (1.5.3)
+    rb-fsevent (0.9.7)
+    rb-inotify (0.9.7)
+      ffi (>= 0.5.0)
+    rdiscount (2.1.8)
+    redcarpet (3.3.3)
+    rouge (1.10.1)
+    safe_yaml (1.0.4)
+    sass (3.4.21)
+    sawyer (0.6.0)
+      addressable (~> 2.3.5)
+      faraday (~> 0.8, < 0.10)
+    terminal-table (1.5.2)
+    thread_safe (0.3.5)
+    typhoeus (0.8.0)
+      ethon (>= 0.8.0)
+    tzinfo (1.2.2)
+      thread_safe (~> 0.1)
+
+PLATFORMS
+  ruby
+
+DEPENDENCIES
+  github-pages
+  jekyll
+
+BUNDLED WITH
+   1.11.2
+```
+
+You can always delete the Gemlock file and run Bundle install again to get the latest versions. You can also run `bundle update`, which will ignore the Gemlock file to get the latest versions of each gem.
+
+To learn more about Bundler, see [Bundler's Purpose and Rationale](http://bundler.io/rationale.html).
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_adding_tooltips.md b/pages/mydoc/mydoc_adding_tooltips.md
new file mode 100644
index 0000000000000000000000000000000000000000..52a673c197b01bcebd1c451a2a9c5cb3220dc0e3
--- /dev/null
+++ b/pages/mydoc/mydoc_adding_tooltips.md
@@ -0,0 +1,27 @@
+---
+title: Tooltips
+tags: [formatting]
+keywords: popovers, tooltips, user interface text, glossaries, definitions
+last_updated: July 3, 2016
+summary: "You can add tooltips to any word, such as an acronym or specialized term. Tooltips work well for glossary definitions, because you don't have to keep repeating the definition, nor do you assume the reader already knows the word's meaning."
+sidebar: mydoc_sidebar
+permalink: mydoc_adding_tooltips.html
+folder: mydoc
+---
+
+## Creating tooltips
+Because this theme is built on Bootstrap, you can simply use a specific attribute on an element to insert a tooltip.
+
+Suppose you have a glossary.yml file inside your \_data folder. You could pull in that glossary definition like this:
+
+{% raw %}
+```html
+<a href="#" data-toggle="tooltip" data-original-title="{{site.data.glossary.jekyll_platform}}">Jekyll</a> is my favorite tool for building websites.
+```
+{% endraw %}
+
+This renders to the following:
+
+<a href="#" data-toggle="tooltip" data-original-title="{{site.data.glossary.jekyll_platform}}">Jekyll</a> is my favorite tool for building websites.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_alerts.md b/pages/mydoc/mydoc_alerts.md
new file mode 100644
index 0000000000000000000000000000000000000000..da1c3f932841c58ce0c84da4d2e7e81a38fe9dfd
--- /dev/null
+++ b/pages/mydoc/mydoc_alerts.md
@@ -0,0 +1,211 @@
+---
+title: Alerts
+tags: [formatting]
+keywords: notes, tips, cautions, warnings, admonitions
+last_updated: July 3, 2016
+summary: "You can insert notes, tips, warnings, and important alerts in your content. These notes make use of Bootstrap styling and are available through data references such as site.data.alerts.note."
+sidebar: mydoc_sidebar
+permalink: mydoc_alerts.html
+folder: mydoc
+---
+
+## About alerts
+
+Alerts are little warnings, info, or other messages that you have called out in special formatting. In order to use these alerts or callouts, reference the appropriate value stored in the alerts.yml file as described in the following sections.
+
+## Alerts
+
+Similar to [inserting images][mydoc_images], you insert alerts through various includes that have been developed. These includes provide templates through which you pass parameters to easily populate the right HTML code.
+
+```
+{%raw%}{% include note.html content="This is my note. All the content I type here is treated as a single paragraph." %}{% endraw%}
+```
+
+Here's the result:
+
+{% include note.html content="This is my note. All the content I type here is treated as a single paragraph." %}
+
+With alerts, there's just one include property:
+
+| Property | description |
+|-------|--------|
+| content | The content for the alert. |
+
+## Using block level tags inside the alerts {#blockleveltags}
+
+If you need multiple paragraphs, enter `<br/><br/>` tags. This is because block level tags aren't allowed here, as Kramdown is processing the content as Markdown despite the fact that the content is surrounded by HTML tags. Here's an example with a break:
+
+```
+{%raw%}{% include note.html content="This is my note. All the content I type here is treated as a single paragraph. <br/><br/> Now I'm typing on a  new line." %}{% endraw%}
+```
+
+Here's the result:
+
+{% include note.html content="This is my note. All the content I type here is treated as a single paragraph. <br/><br/> Now I'm typing on a new line." %}
+
+The include uses `markdown="span"` as an attribute, which means kramdown will process the entire `content` as a span. You can't use block elements such as `p` or `div` or `pre`. If you need these elements, you can either manually surround the content with the HTML from the include, or you can use these tags:
+
+```
+{% raw %}{{site.data.alerts.note}}
+<p>This is my note.</p>
+<pre>
+def foo(x):<br>
+&nbsp;&nbsp;&nbsp;&nbsp;return x+1
+</pre>
+{{site.data.alerts.end}}{% endraw %}
+```
+
+**Result:**
+
+{{site.data.alerts.note}}
+<p>This is my note.</p>
+<pre>
+def foo(x):<br>
+&nbsp;&nbsp;&nbsp;&nbsp;return x+1
+</pre>
+{{site.data.alerts.end}}
+
+The same Bootstrap code from the alert is stored in yaml files inside the \_data folder. (This was how I previously implemented this code, but since this method was prone to error and didn't trigger any build warnings or failures when incorrectly coded, I changed the approach to use includes instead.)
+
+## Types of alerts available
+
+There are four types of alerts you can leverage:
+
+* note.html
+* tip.html
+* warning.html
+* important.html
+
+They function the same except they have a different color, icon, and alert word. You include the different types by selecting the include template you want. Here are samples of each alert:
+
+{% include note.html content="This is my note." %}
+
+{% include tip.html content="This is my tip." %}
+
+{% include warning.html content="This is my warning." %}
+
+{% include important.html content="This is my important info." %}
+
+These alerts leverage includes stored in the \_include folder. The `content` option is a parameter that you pass to the include. In the include, the parameter is passed like this:
+
+```
+{% raw %}<div markdown="span" class="alert alert-info" role="alert"><i class="fa fa-info-circle"></i> <b>Note:</b> {{include.content}}{% endraw %}</div>
+```
+
+The content in `content="This is my note."` gets inserted into the `{% raw %}{{include.content}}}{% endraw %}` part of the template. You can follow this same pattern to build additional includes. See this [Jekyll screencast on includes](http://jekyll.tips/jekyll-casts/includes/) or [this screencast](https://www.youtube.com/watch?v=TJcn_PJ2100) for more information.
+
+## Callouts
+
+There's another type of callout available called callouts. This format is typically used for longer callout that spans more than one or two paragraphs, but really it's just a stylistic preference whether to use an alert or callout.
+
+Here's the syntax for a callout:
+
+```
+{% raw %}{% include callout.html content="This is my callout. It has a border on the left whose color you define by passing a type parameter. I typically use this style of callout when I have more information that I want to share, often spanning multiple paragraphs. " type="primary" %} {% endraw %}
+```
+
+Here's the result:
+
+{% include callout.html content="This is my callout. It has a border on the left whose color you define by passing a type parameter. I typically use this style of callout when I have more information that I want to share, often spanning multiple paragraphs." type="primary" %}
+
+The available properties for callouts are as follows:
+
+| Property | description |
+|-------|--------|
+| content | The content for the callout. |
+| type | The style for the callout. Options are `danger`, `default`, `primary`, `success`, `info`, and `warning`.|
+
+The types just define the color of the left border. Each of these callout types get inserted as a class name in the callout template. These class names correspond with styles in Bootstrap. These classes are common Bootstrap class names whose style attributes differ depending on your Bootstrap theme and style definitions.
+
+Here's an example of each different type of callout:
+
+{% include callout.html content="This is my **danger** type callout. It has a border on the left whose color you define by passing a type parameter." type="danger" %}
+
+{% include callout.html content="This is my **default** type callout. It has a border on the left whose color you define by passing a type parameter." type="default" %}
+
+{% include callout.html content="This is my **primary** type callout. It has a border on the left whose color you define by passing a type parameter." type="primary" %}
+
+{% include callout.html content="This is my **success** type callout. It has a border on the left whose color you define by passing a type parameter." type="success" %}
+
+{% include callout.html content="This is my **info** type callout. It has a border on the left whose color you define by passing a type parameter." type="info" %}
+
+{% include callout.html content="This is my **warning** type callout. It has a border on the left whose color you define by passing a type parameter." type="warning" %}
+
+Now that in contrast to alerts, callouts don't include the alert word (note, tip, warning, or important). You have to manually include it inside `content` if you want it.
+
+To include paragraph breaks, use `<br/><br/>` inside the callout:
+
+```
+{% raw %}{% include callout.html content="**Important information**: This is my callout. It has a border on the left whose color you define by passing a type parameter. I typically use this style of callout when I have more information that I want to share, often spanning multiple paragraphs. <br/><br/>Here I am starting a new paragraph, because I have lots of information to share. You may wonder why I'm using line breaks instead of paragraph tags. This is because Kramdown processes the Markdown here as a span rather than a div (for whatever reason). Be grateful that you can be using Markdown at all inside of HTML. That's usually not allowed in Markdown syntax, but it's allowed here." type="primary" %} {% endraw %}
+```
+
+Here's the result:
+
+{% include callout.html content="**Important information**: This is my callout. It has a border on the left whose color you define by passing a type parameter. I typically use this style of callout when I have more information that I want to share, often spanning multiple paragraphs. <br/><br/>Here I am starting a new paragraph, because I have lots of information to share. You may wonder why I'm using line breaks instead of paragraph tags. This is because Kramdown processes the Markdown here as a span rather than a div (for whatever reason). Be grateful that you can be using Markdown at all inside of HTML. That's usually not allowed in Markdown syntax, but it's allowed here." type="primary" %}
+
+## Use Liquid variables inside parameters with includes
+
+Suppose you have a product name or some other property that you're storing as a variable in your configuration file (\_config.yml), and you want to use this variable in the `content` parameter for your alert or callout. You will get an error if you use Liquid syntax inside a include parameter. For example, this syntax will produce an error:
+
+```
+{%raw%}{% include note.html content="The {{site.company}} is pleased to announce an upcoming release." %}{%endraw%}
+```
+
+The error will say something like this:
+
+```
+Liquid Exception: Invalid syntax for include tag. File contains invalid characters or sequences: ... Valid syntax: {%raw%}{% include file.ext param='value' param2='value' %}{%endraw%}
+```
+
+To use variables in your include parameters, you must use the "variable parameter" approach. First you use a `capture` tag to capture some content. Then you reference this captured tag in your include. Here's an example.
+
+In my site configuration file (\_congfig.yml), I have a property called `company_name`.
+
+```yaml
+company_name: Your company
+```
+
+I want to use this variable in my note include.
+
+First, before the note I capture the content for my note's include like this:
+
+```liquid
+{%raw%}{% capture company_note %}The {{site.company_name}} company is pleased to announce an upcoming release.{% endcapture %}{%endraw%}
+```
+
+Now reference the `company_note` in your `include` parameter like this:
+
+```
+{%raw%}{% include note.html content=company_note}{%endraw%}
+```
+
+Here's the result:
+
+{% capture company_note %}The {{site.company_name}} is pleased to announce an upcoming release.{% endcapture %}
+{% include note.html content=company_note %}
+
+Note the omission of quotation marks with variable parameters.
+
+Also note that instead of storing the variable in your site's configuration file, you could also put the variable in your page's frontmatter. Then instead of using `{%raw%}{{site.company_name}}{%endraw%}` you would use `{%raw%}{{page.company_name}}{%endraw%}`.
+
+## Markdown inside of callouts and alerts
+
+You can use Markdown inside of callouts and alerts, even though this content actually gets inserted inside of HTML in the include. This is one of the advantages of kramdown Markdown. The include template has an attribute of `markdown="span"` that allows for the processor to parse Markdown inside of HTML.
+
+## Validity checking
+
+If you have some of the syntax wrong with an alert or callout, you'll see an error when Jekyll tries to build your site. The error may look like this:
+
+```
+{% raw %}Liquid Exception: Invalid syntax for include tag: content="This is my **info** type callout. It has a border on the left whose color you define by passing a type parameter. type="info" Valid syntax: {% include file.ext param='value' param2='value' %} in mydoc/mydoc_alerts.md {% endraw %}
+```
+
+These errors are a good thing, because it lets you know there's an error in your syntax. Without the errors, you may not realize that you coded something incorrectly until you see the lack of alert or callout styling in your output.
+
+In this case, the quotation marks aren't set correctly. I forgot the closing quotation mark for the content parameter include.
+
+## Blast a warning to users on every page
+
+If you want to blast a warning to users on every page, add the alert or callout to the \_layouts/page.html page right below the frontmatter. Every page using the page layout (all, by default) will show this message.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_atom_text_editor.md b/pages/mydoc/mydoc_atom_text_editor.md
new file mode 100644
index 0000000000000000000000000000000000000000..6547b99d8c08fbc18727c609aacf62e3b0bdc063
--- /dev/null
+++ b/pages/mydoc/mydoc_atom_text_editor.md
@@ -0,0 +1,35 @@
+---
+title: Atom Text Editor
+keywords: atom, text editor,
+last_updated: March 20, 2016
+summary: "Atom is a free text editor that is a favorite tool of many writers because it is free. This page provides some tips for using Atom."
+sidebar: mydoc_sidebar
+permalink: mydoc_atom_text_editor.html
+folder: mydoc
+---
+
+If you haven't downloaded [Atom](https://atom.io/), download and install it. Use this as your editor when working with Jekyll. The syntax highlighting is probably the best among the available editors, as it was designed with Jekyll-authoring in mind. However, if you prefer Sublime Text, WebStorm, or some other editor, you can also use that.
+
+Customize the invisibles and tab spacing in Atom:
+
+1.  Go to **Atom > Preferences**.
+2.  On the **Settings** tab, keep the default options but also select the following:
+    * **Show Invisibles**
+    * **Soft Wrap**
+    * For the **Tab Length**, type **4**.
+    * For the **Tab Type**, select **soft**.
+
+Turn off auto-complete:
+
+1.  Go to **Atom > Preferences**.
+2.  Click the **Packages** tab.
+3.  Search for **autocomplete-plus**.
+4.  Disable the autocomplete package.
+
+### Atom Shortcuts
+
+* **Cmd + T**: Find file
+* **Cmd + Shift + F**: Find across project
+* **Cmd + Alt + S**: Save all
+
+(For Windows, replace "Cmd" with "Ctrl".)
diff --git a/pages/mydoc/mydoc_build_arguments.md b/pages/mydoc/mydoc_build_arguments.md
new file mode 100644
index 0000000000000000000000000000000000000000..6b5593b9bca1cc45372cb26b666b55b09fa7d361
--- /dev/null
+++ b/pages/mydoc/mydoc_build_arguments.md
@@ -0,0 +1,68 @@
+---
+title: Build arguments
+tags: [publishing]
+keywords: building, serving, serve, build
+last_updated: July 3, 2016
+summary: "You use various build arguments with your Jekyll project. You can also create shell scripts to act as shortcuts for long build commands. You can store the commands in iTerm as profiles as well."
+sidebar: mydoc_sidebar
+permalink: mydoc_build_arguments.html
+folder: mydoc
+---
+
+## How to build Jekyll sites
+
+The normal way to build the Jekyll site is through the build command:
+
+```
+jekyll build
+```
+
+To build the site and view it in a live server so that Jekyll rebuilds that site each time you make a change, use the `serve` command:
+
+```
+jekyll serve
+```
+
+By default, the \_config.yml in the root directory will be used, Jekyll will scan the current directory for files, and the folder `_site` will be used as the output. You can customize these build commands like this:
+
+```
+jekyll serve --config configs/myspecialconfig.yml --destination ../doc_outputs
+```
+
+Here the `configs/myspecialconfig.yml` file is used instead of `_config.yml`. The destination directory is `../doc_outputs`, which would be one level up from your current directory.
+
+## Shortcuts for the build arguments
+
+If you have a long build argument and don't want to enter it every time in Jekyll, noting all your configuration details, you can create a shell script and then just run the script. Simply put the build argument into a text file and save it with the .sh extension (for Mac) or .bat extension (for Windows). Then run it like this:
+
+```
+. myscript.sh
+```
+
+My preference is to add the scripts to profiles in iTerm. See [iTerm Profiles][mydoc_iterm_profiles] for more details.
+
+## Stop a server
+
+When you're done with the preview server, press **Ctrl+C** to exit out of it. If you exit iTerm or Terminal without shutting down the server, the next time you build your site, or if you build multiple sites with the same port, you may get a server-already-in-use message.
+
+You can kill the server process using these commands:
+
+```
+ps aux | grep jekyll
+```
+
+Find the PID (for example, it  looks like "22298").
+
+Then type `kill -9 22298` where "22298" is the PID.
+
+To kill all Jekyll instances, use this:
+
+```
+kill -9 $(ps aux | grep '[j]ekyll' | awk '{print $2}')
+```
+
+I recommend creating a profile in iTerm that stores this command. Here's what the iTerm settings look like:
+
+{% include image.html file="killalljekyll.png" caption="iTerm profile settings to kill all Jekyll" %}
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_build_scripts.md b/pages/mydoc/mydoc_build_scripts.md
new file mode 100644
index 0000000000000000000000000000000000000000..aa1f564efa134ce56e2c950952015fa6a3e2da6c
--- /dev/null
+++ b/pages/mydoc/mydoc_build_scripts.md
@@ -0,0 +1,197 @@
+---
+title: 10. Configure the build scripts
+tags:
+  - publishing
+keywords: "build scripts, generating outputs, building, publishing"
+last_updated: "November 30, 2016"
+summary: "You need to customize the build scripts. These script automate the publishing of your PDFs and web outputs through shell scripts on the command line."
+series: "Getting Started"
+weight: 10
+sidebar: mydoc_sidebar
+permalink: mydoc_build_scripts.html
+folder: mydoc
+---
+
+{% include custom/getting_started_series.html %}
+
+## About the build scripts
+
+The mydoc project has 5 build scripts and a script that runs them all. These scripts will require a bit of detail to configure. Every team member who is publishing on the project should set up their folder structure in the way described here.
+
+## Get Set Up
+
+Your command-line terminal opens up to your user name (for example, `Users/tjohnson`). I like to put all of my projects from repositories into a subfolder under my username called "projects." This makes it easy to get to the projects from the command line. You can vary from the project organization I describe here, but following the pattern I outline will make configuration easier.
+
+To set up your projects:
+
+1. Set up your Jekyll theme in a folder called "docs." All of the source files for every project the team is working on should live in this directory. Most likely you already either downloaded or cloned the jekyll-documentation-theme. Just rename the folder to "docs" and move it into the projects folder as shown here.
+2. In the same root directory where the docs folder is, create another directory parallel to docs called doc_outputs. 
+
+   Thus, your folder structure should be something like this:
+
+   ```
+   projects
+   - docs
+   - doc_outputs
+   ```
+
+   The docs folder contains the source of all your files, while the doc_outputs contains the site outputs.
+
+## Configure the Build Scripts
+
+For the mydocs project, you'll see a series of build scripts for each project. There are 5 build scripts, described in the following sections. Note that you really only need to run the last one, e.g., mydoc_all.sh, because it runs all of the build scripts. But you have to make sure each script is correctly configured so that they all build successfully.
+
+{% include tip.html content="In the descriptions of the build scripts, \"mydoc\" is used as the sample project. Substitute in whatever your real project name is." %}
+
+### mydoc_1_multiserve_pdf.sh
+
+Here's what this script looks like:
+
+```
+echo 'Killing all Jekyll instances'
+kill -9 $(ps aux | grep '[j]ekyll' | awk '{print $2}')
+clear
+
+
+echo "Building PDF-friendly HTML site for Mydoc Writers ..."
+jekyll serve --detach --config configs/mydoc/config_writers.yml,configs/mydoc/config_writers_pdf.yml
+echo "done"
+
+echo "Building PDF-friendly HTML site for Mydoc Designers ..."
+jekyll serve --detach --config configs/mydoc/config_designers.yml,configs/mydoc/config_designers_pdf.yml
+echo "done"
+
+echo "All done serving up the PDF-friendly sites. Now let's generate the PDF files from these sites."
+echo "Now run . mydoc_2_multibuild_pdf.sh"
+```
+
+After killing all existing Jekyll instances that may be running, this script serves up a PDF friendly version of the docs (in HTML format) at the destination specified in the configuration file.
+
+Each of your configuration files needs to have a destination like this: `../doc_outputs/mydoc/adtruth-java`. That is, the project should build in the doc_outputs folder, in a subfolder that matches the project name.
+
+The purpose of this script is to make a version of the HTML output that is friendly to the Prince XML PDF generator. This version of the output strips out the sidebar, topnav, and other components to just render a bare-bones HTML representation of the content.
+
+Customize the script with your own PDF configuration file names.
+
+### mydoc_2_multibuild_pdf.sh
+
+Here's what this script looks like:
+
+```
+# Doc Writers
+echo "Building the Mydoc Writers PDF ..."
+prince --javascript --input-list=../doc_outputs/mydoc/writers-pdf/prince-file-list.txt -o mydoc/files/mydoc_writers_pdf.pdf;
+echo "done"
+
+# Doc Designers
+echo "Building Mydoc Designers PDF ..."
+prince --javascript --input-list=../doc_outputs/mydoc/designers-pdf/prince-file-list.txt -o mydoc/files/mydoc_designers_pdf.pdf;
+echo "done"
+
+echo "All done building the PDFs!"
+echo "Now build the web outputs: . mydoc_3_multibuild_web.sh"
+```
+
+This script builds the PDF output using the Prince command. The script reads the location of the prince-file-list.txt file in the PDF friendly output folder (as defined in the previous script) and builds a PDF.
+
+The Prince build command takes an input parameter (`--input-list=`) that lists where all the pages are (prince-file-list.txt), and then combines all the pages into a PDF, including cross-references and other details. The Prince build command also specifies the output folder (`-o`).
+
+The prince-file-list.txt file (which simply contains a list of URLs to HTML pages) is generated by iterating through the table of contents (mydoc_sidebar.yml) and creating a list of URLs. You can open up prince-file-list.txt in the doc output to ensure that it has a list of absolute URLs (not relative) in order for Prince to build the PDF.
+
+This is one way the configuration file for the PDF-friendly output differs from the HTML output. (If the PDF isn't building, it's because the prince-file-list.txt in the output is empty or it contains relative URLs.)
+
+The Prince build script puts the output PDF into the mydoc/mydoc/files directory. Now you can reference the PDF file in your HTML site. For example, on the homepage you can allow people to download a PDF of the content at files/adtruth_dotnet_pdf.pdf.
+
+### mydoc_3_multibuild_web.sh
+
+Here's what this script looks like:
+
+```
+kill -9 $(ps aux | grep '[j]ekyll' | awk '{print $2}')
+clear
+
+echo "Building Mydoc Writers website..."
+jekyll build --config configs/doc/config_writers.yml
+# jekyll serve --config configs/doc/config_writers.yml
+echo "done"
+
+echo "Building Mydoc Designers website..."
+jekyll build --config configs/doc/config_designers.yml
+# jekyll serve --config configs/doc/config_designers.yml
+echo "done"
+
+echo "All finished building all the web outputs!!!"
+echo "Now push the builds to the server with . mydoc_4_publish.sh"
+```
+
+After killing all Jekyll instances, this script builds an HTML version of the projects and puts the output into the doc_outputs folder. This is the version of the content that users will mainly navigate. Since the sites are built with relative links, you can browse to the folder on your local machine, double-click the index.html file, and see the site.
+
+The `#` part below the `jekyll build` commands contains a serve command that is there for mere convenience in case you want to serve up just one site among many that you're building. For example, if you don't want to build everything &mdash; just one site &mdash; you might just use the serve command instead. (Anything after # in a YAML file comments out the content.)
+
+### mydoc_4_publish.sh
+
+Here's what this script looks like:
+
+```
+echo "remove previous directory and any subdirectories without a warning prompt"
+ssh yourusername@yourdomain.com 'rm -rf /var/www/html/yourpublishingdirectory'
+
+echo "push new content into the remote directory"
+scp -r -vrC ../mydoc_outputs/doc-writers yourusername@yourdomain:/var/www/html/yourpublishingdirectory
+
+echo "All done pushing doc outputs to the server"
+
+```
+
+This script assumes you're publishing content onto a Linux server.
+
+Change `yourusername` to your own user name.
+
+This script first removes the project folder on /var/www/html/yourpublishingdirectory site and then transfers the content from doc_outputs over to the appropriate folder in /var/www/html/yourpublishingdirectory.
+
+Note that the delete part of the script (`rm -rf`) works really well. It annihilates a folder in a heartbeat and doesn't give you any warning prompts, so make sure you have it set up correctly.
+
+Also, in case you haven't set up the SSH publishing without a password, see [Getting around the password prompts in SCP][mydoc_no_password_prompts_scp]. Otherwise the script will stop and ping you to enter your password for each directory it transfers.
+
+### (Optional) Push to repositories
+
+This script isn't included in the theme, but you might optionally decide to push the built sites into another github repository. For example, if you're using Cloud Cannon to deploy your sites, you can have Cloud Cannon read files from a specific Github repository.
+
+Here's what this script looks like:
+
+```
+cd doc_outputs/mydoc/designers
+git add --all
+git commit -m "publishing latest version of docs"
+git push
+echo "All done pushing to Github"
+echo "Here's the link to download the guides..."
+cd ../../docs
+```
+
+This final script simply makes a commit into a Github repo for one of your outputs.
+
+The doc_outputs/mydoc/designers contains the site output from mydoc, so when you push content from this folder into Github, you're actually pushing the HTML site output into Github, not the mydoc source files.
+
+Your delivery team can also grab the site output from these repos. After downloading it, the person unzips the folder and sees the website folders inside.
+
+### mydoc_all.sh
+
+Here's what this script looks like:
+
+```
+. deviceinsight_1_multiserve_pdf.sh; . deviceinsight_2_multibuild_pdf.sh; . deviceinsight_3_multibuild_web.sh; . deviceinsight_4_publish.sh;
+```
+
+This script simply runs the other scripts. To sequence the commands, you just separate them with semicolons. (If you added the optional script, be sure to include it here.)
+
+After you've configured all the scripts, you can run them all by running `. mydoc_all.sh`. You might want to run this script at lunchtime, since it may take about 10 to 20 minutes to completely build the scripts. But note that since everything is now automated, you don't have to do anything at all after executing the script. After the script finishes, everything is published and in the right location.
+
+
+## Test out the scripts
+
+After setting up and customizing the build scripts, run a few tests to make sure everything is generating correctly. Getting this part right is somewhat difficult and may likely require you to tinker around with the scripts a while before it works flawlessly.
+
+{% include custom/getting_started_series_next.html %}
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_code_samples.md b/pages/mydoc/mydoc_code_samples.md
new file mode 100644
index 0000000000000000000000000000000000000000..fb6fef333df431d5f34ebe155671bf4846fb161c
--- /dev/null
+++ b/pages/mydoc/mydoc_code_samples.md
@@ -0,0 +1,27 @@
+---
+title: Code samples
+tags: [formatting]
+keywords: dcode samples syntax highlighting
+last_updated: July 3, 2016
+datatable: true
+summary: "You can use fenced code blocks with the language specified after the first set of backtick fences."
+sidebar: mydoc_sidebar
+permalink: mydoc_code_samples.html
+folder: mydoc
+---
+
+## Code Samples
+
+Use fenced code blocks with the language specified, like this:
+
+    ```js
+    console.log('hello');
+    ````
+
+**Result:**
+
+```js
+console.log('hello');
+```
+
+For the list of supported languages you can use (similar to `js` for JavaScript), see [Supported languages](https://github.com/jneen/rouge/wiki/list-of-supported-languages-and-lexers).
diff --git a/pages/mydoc/mydoc_collections.md b/pages/mydoc/mydoc_collections.md
new file mode 100644
index 0000000000000000000000000000000000000000..f1c408904bdab33905162b6b3a5fc3693563311a
--- /dev/null
+++ b/pages/mydoc/mydoc_collections.md
@@ -0,0 +1,40 @@
+---
+title:  Collections
+tags: [content_types]
+keywords: groups, api, structure
+last_updated: July 3, 2016
+summary: "Collections are useful if you want to loop through a special folder of pages that you make available in a content API. You could also use collections if you have a set of articles that you want to treat differently from the other content, with a different layout or format."
+sidebar: mydoc_sidebar
+permalink: mydoc_collections.html
+folder: mydoc
+---
+
+## What are collections
+Collections are custom content types different from pages and posts. You might create a collection if you want to treat a specific set of articles in a unique way, such as with a custom layout or listing. For more detail on collections, see [Ben Balter's explanation of collections here](https://ben.balter.com/2015/02/20/jekyll-collections/).
+
+## Create a collection
+To create a collection, add the following in your configuration file:
+
+```
+collections:
+  tooltips:
+    output: true
+```
+
+In this example, "tooltips"" is the name of the collection.
+
+## Interacting with collections
+
+You can interact with collections by using the `site.collectionname` namespace, where `collectionname` is what you've configured. In this case, if I wanted to loop through all tooltips, I would use `site.tooltips` instead of `site.pages` or `site.posts`.
+
+See [Collections in the Jekyll documentation](http://jekyllrb.com/docs/collections/) for more information.
+
+## How to use collections
+
+I haven't found a huge use for collections in normal documentation. However, I did find a use for collections in generating a tooltip file that would be used for delivering tooltips to a user interface from text files in the documentation. See [Help APIs and UI tooltips][mydoc_help_api] for details.
+
+## Video tutorial on collections
+
+See this [video tutorial on Jekyll.tips](http://jekyll.tips/jekyll-casts/introduction-to-collections/) for more details on collections.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_commenting_on_files.md b/pages/mydoc/mydoc_commenting_on_files.md
new file mode 100644
index 0000000000000000000000000000000000000000..80de542b4e11eafd80b3cc79996f337b4ca8e2cb
--- /dev/null
+++ b/pages/mydoc/mydoc_commenting_on_files.md
@@ -0,0 +1,68 @@
+---
+title: Commenting on files
+tags:
+  - navigation
+keywords: "annotations, comments, feedback"
+last_updated: "November 30, 2016"
+summary: "You can add a button to your pages that allows people to add comments."
+sidebar: mydoc_sidebar
+permalink: mydoc_commenting_on_files.html
+folder: mydoc
+---
+
+## About the review process
+
+If you're using the doc as code approach, you might also consider using the same techniques for reviewing the doc as people use in reviewing code. This approach will involve using Github to edit the files.
+
+There's an Edit me button on each page on this theme. This button allows collaborators to edit the content on Github.
+
+Here's the code for that button on the page.html layout for GitHub:
+
+
+```
+{% raw %}{% if site.github_editme_path %}
+
+<a target="_blank" href="https://github.com/{{site.github_editme_path}}/{{page.folder}}{{page.url | append: ".md"}}{% endif %}" class="btn btn-default githubEditButton" role="button"><i class="fa fa-github fa-lg"></i> Edit me</a>
+
+{% endif %}{% endraw %}
+```
+
+and here for GitLab:
+
+
+```
+{% raw %}{% if site.gitlab_editme_path %}
+
+<a target="_blank" href="https://github.com/{{site.gitlab_editme_path}}/{{page.folder}}{{page.url | append: ".md"}}{% endif %}" class="btn btn-default githubEditButton" role="button"><i class="fa fa-gitlab fa-lg"></i> Edit me</a>
+
+{% endif %}{% endraw %}
+```
+
+In your configuration file, edit the value for `github_editme_path` (or for Gitlab: `gitlab_editme_path`). For example, you might create a branch called "reviews" on your Github repo. Then you would add something like this in your configuration file for the 'github_editme_path': tomjoht/documentation-theme-jekyll/edit/reviews. Here "tomjoht" is my github account name. The repo name is "documentation-theme-jekyll". The "reviews" name is the branch.
+
+To suppress this button, comment out the `github_editme_path` in the \_config.yml file.
+
+## Add reviewers as collaborators
+
+If you want people to collaborate on your project so that their edits get committed to a branch on your project, you need to add them as collaborators. For your Github repo, click **Settings** and add the collaborators on the Collaborators tab using their Github usernames.
+
+If you don't want to allow anyone to commit to your Github branch, don't add the reviewers as collaborators. When someone makes an edit, Github will fork the theme. The person's edit then will appear as a pull request to your repo. You can then choose to merge the change indicated in the pull or not.
+
+{% include note.html content="When you process pull requests, you have to accept everything or nothing. You can't pick and choose which changes you'll merge. Therefore you'll probably want to edit the branch you're planning to merge or ask the contributor to make some changes to the fork before processing the pull request." %}
+
+
+## Workflow
+
+Users will make edits in your "reviews" branch (or whatever you want to call it). You can then commit those edits as you make updates.
+
+When you're finished making all updates in the branch, you can merge the branch into the master.
+
+Note that if you're making updates online, those updates will be out of sync with any local edits.
+
+{% include warning.html content="Don't make edits both online using Github's browser-based interface AND offline on your local machine using your local tools. When you try to push from your local, you'll likely get a merge conflict error. Instead, make sure you do a pull and update on your local after making any edits online." %}
+
+## Prose.io
+
+ Prose.io is an overlay on Github that would allow people to make comments in an easier interface. If you simply go to [prose.io](http://prose.io), it asks to authorize your Github account, and so it will read files directly from Github but in the Prose.io interface.
+
+ {% include links.html %}
diff --git a/pages/mydoc/mydoc_content_reuse.md b/pages/mydoc/mydoc_content_reuse.md
new file mode 100644
index 0000000000000000000000000000000000000000..dbecd1991094c62221aa3883b5b5ef1056784b79
--- /dev/null
+++ b/pages/mydoc/mydoc_content_reuse.md
@@ -0,0 +1,58 @@
+---
+title: Content reuse
+tags: [single_sourcing]
+keywords: includes, conref, dita, transclusion, transclude, inclusion, reference
+last_updated: July 3, 2016
+summary: "You can reuse chunks of content by storing these files in the includes folder. You then choose to include the file where you need it. This works similar to conref in DITA, except that you can include the file in any content type."
+sidebar: mydoc_sidebar
+permalink: mydoc_content_reuse.html
+folder: mydoc
+---
+
+## About content reuse
+You can embed content from one file inside another using includes. Put the file containing content you want to reuse (e.g., mypage.html) inside the \_includes/custom folder and then use a tag like this:
+
+{% raw %}
+```
+{% include custom/mypage.html %}
+```
+{% endraw %}
+
+With content in your \_includes folder, you don't add any frontmatter to these pages because they will be included on other pages already containing frontmatter.
+
+Also, when you include a file, all of the file's contents get included. You can't specify that you only want a specific part of the file included. However, you can use parameters with includes.
+
+{% unless site.output == "pdf" %}
+See the following Jekyll cast for more info about using parameters with includes:
+
+<iframe width="640" height="480" src="https://www.youtube.com/embed/kzpGqdEMbIs" frameborder="0" allowfullscreen></iframe>
+{% endunless %}
+
+## Page-level variables
+
+You can also create custom variables in your frontmatter like this:
+
+{% raw %}
+```yaml
+---
+title: Page-level variables
+permalink: page_level_variables/
+thing1: Joe
+thing2: Dave
+---
+```
+{% endraw %}
+
+You can then access the values in those custom variables using the `page` namespace, like this:
+
+{% raw %}
+```
+thing1: {{page.thing1}}
+thing2: {{page.thing2}}
+```
+{% endraw %}
+
+
+I use includes all the time. Most of the includes in the \_includes directory are pulled into the theme layouts. For those includes that change, I put them inside custom and then inside a specific project folder.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_excluding_files.md b/pages/mydoc/mydoc_excluding_files.md
new file mode 100644
index 0000000000000000000000000000000000000000..7ca77d32bcb0b8937507c9744d5028285a086a98
--- /dev/null
+++ b/pages/mydoc/mydoc_excluding_files.md
@@ -0,0 +1,86 @@
+---
+title: Excluding files
+tags: [single_sourcing]
+last_updated: July 3, 2016
+keywords: exclusion, separating outputs, removing files from outputs
+summary: "By default, all the files in your Jekyll project are included in the output (this differs from DITA projects, which don't include files unless noted on the map). If you're single sourcing, you'll need to exclude the files that shouldn't be included in the output. The sidebar doesn't control inclusion or exclusion."
+sidebar: mydoc_sidebar
+permalink: mydoc_exluding_files.html
+folder: mydoc
+---
+
+
+## About exclusion
+By default, all files in your project are included in your output (regardless of whether they're listed in the sidebar_doc.yml file or not). To exclude files, note them in the `exclude` section in the configuration file. Here's a sample:
+
+```
+
+exclude:
+  - mydoc_writers_*
+  - bower_components
+  - Gemfile
+```
+
+If you have different outputs for your site, you'll want to customize the exclude sections in your various configuration files.
+
+## Exclude strategies
+Here's the process I recommend. Put all files in the root directory of your project. Suppose one project's name is alpha and the other is beta. Then name each file as follows:
+
+* alpha_sample.html
+* beta_sample.html
+
+In your exclude list for your beta project, specify it as follows:
+
+```
+exclude:
+- alpha_*
+```
+
+In your exclude list for your alpha project, specify it as follows:
+
+```
+exclude:
+- beta_*
+```
+
+If you have more sophisticated exclusion, add another level to your file names. For example, if you have different programming languages you want to filter by, add this:
+
+* alpha_java_sample.html
+* alpha_cpp_sample.html
+
+Then you exclude files for your Alpha C++ project as follows:
+
+```
+exclude:
+
+- alpha_java_*
+- beta_*
+```
+
+And you exclude files for your Alpha Java project as follows:
+
+```
+exclude:
+
+- alpha_cpp_*
+- alpha_beta_*
+```
+
+When you exclude folders, include the trailing slash at the end of the folder name:
+
+```
+exclude:
+- images/alpha/
+```
+
+There isn't a way to automatically exclude anything. By default, everything is included unless you explicitly list it under the exclude section.
+
+## Excluding draft content
+
+If you're working on a draft, put it inside the \_drafts folder or add `published: false` in the frontmatter. The \_drafts folder is excluded by default, so you don't have to specify it in your exclude list.
+
+## Limitations
+
+What if a file should appear in two projects but not the third? This can get tricky. For some files, rather than using a wildcard, you may need to manually specify the entire filename that you're excluding instead of excluding it by way of a wildcard pattern.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_faq.md b/pages/mydoc/mydoc_faq.md
new file mode 100644
index 0000000000000000000000000000000000000000..6877b11da1d60a522a2e6a54a7030cf5fbca094a
--- /dev/null
+++ b/pages/mydoc/mydoc_faq.md
@@ -0,0 +1,136 @@
+---
+title: FAQ layout
+permalink: mydoc_faq_layout.html
+sidebar: mydoc_sidebar
+tags: [special_layouts]
+keywords: frequently asked questions, FAQ, question and answer, collapsible sections, expand, collapse
+last_updated: November 30, 2015
+summary: "You can use an accordion-layout that takes advantage of Bootstrap styling. This is useful for an FAQ page."
+toc: false
+folder: mydoc
+---
+
+<p>If you want to use an FAQ format, use the syntax shown on the faq.html page. Rather than including code samples here (which are bulky with a lot of nested <code>div</code> tags), just look at the source in the mydoc_faq.html theme file.</p>
+
+<div class="panel-group" id="accordion">
+                    <div class="panel panel-default">
+                        <div class="panel-heading">
+                            <h4 class="panel-title">
+                                <a class="noCrossRef accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseOne">Lorem ipsum dolor sit amet, consectetur adipiscing elit?</a>
+                            </h4>
+                        </div>
+                        <div id="collapseOne" class="panel-collapse collapse noCrossRef">
+                            <div class="panel-body">
+                                Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
+                            </div>
+                        </div>
+                    </div>
+                    <!-- /.panel -->
+                    <div class="panel panel-default">
+                        <div class="panel-heading">
+                            <h4 class="panel-title">
+                                <a class="noCrossRef accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo">Curabitur eget leo at velit imperdiet varius. In eu ipsum vitae velit congue iaculis vitae at risus?</a>
+                            </h4>
+                        </div>
+                        <div id="collapseTwo" class="panel-collapse collapse noCrossRef">
+                            <div class="panel-body">
+                                Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
+                            </div>
+                        </div>
+                    </div>
+                    <!-- /.panel -->
+                    <div class="panel panel-default">
+                        <div class="panel-heading">
+                            <h4 class="panel-title">
+                                <a class="noCrossRef accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseThree">Aenean consequat lorem ut felis ullamcorper?</a>
+                            </h4>
+                        </div>
+                        <div id="collapseThree" class="panel-collapse collapse noCrossRef">
+                            <div class="panel-body">
+                                Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
+                            </div>
+                        </div>
+                    </div>
+                    <!-- /.panel -->
+                    <div class="panel panel-default">
+                        <div class="panel-heading">
+                            <h4 class="panel-title">
+                                <a class="noCrossRef accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseFour">Lorem ipsum dolor sit amet, consectetur adipiscing elit?</a>
+                            </h4>
+                        </div>
+                        <div id="collapseFour" class="panel-collapse collapse">
+                            <div class="panel-body">
+                                Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
+                            </div>
+                        </div>
+                    </div>
+                    <!-- /.panel -->
+                    <div class="panel panel-default">
+                        <div class="panel-heading">
+                            <h4 class="panel-title">
+                                <a class="noCrossRef accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseFive">Curabitur eget leo at velit imperdiet varius. In eu ipsum vitae velit congue iaculis vitae at risus?</a>
+                            </h4>
+                        </div>
+                        <div id="collapseFive" class="panel-collapse collapse">
+                            <div class="panel-body">
+                                Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
+                            </div>
+                        </div>
+                    </div>
+                    <!-- /.panel -->
+                    <div class="panel panel-default">
+                        <div class="panel-heading">
+                            <h4 class="panel-title">
+                                <a class="noCrossRef accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseSix">Aenean consequat lorem ut felis ullamcorper?</a>
+                            </h4>
+                        </div>
+                        <div id="collapseSix" class="panel-collapse collapse">
+                            <div class="panel-body">
+                                Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
+                            </div>
+                        </div>
+                    </div>
+                    <!-- /.panel -->
+                    <div class="panel panel-default">
+                        <div class="panel-heading">
+                            <h4 class="panel-title">
+                                <a class="noCrossRef accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseSeven">Lorem ipsum dolor sit amet, consectetur adipiscing elit?</a>
+                            </h4>
+                        </div>
+                        <div id="collapseSeven" class="panel-collapse collapse">
+                            <div class="panel-body">
+                                Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
+                            </div>
+                        </div>
+                    </div>
+                    <!-- /.panel -->
+                    <div class="panel panel-default">
+                        <div class="panel-heading">
+                            <h4 class="panel-title">
+                                <a class="noCrossRef accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseEight">Curabitur eget leo at velit imperdiet varius. In eu ipsum vitae velit congue iaculis vitae at risus?</a>
+                            </h4>
+                        </div>
+                        <div id="collapseEight" class="panel-collapse collapse">
+                            <div class="panel-body">
+                                Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
+                            </div>
+                        </div>
+                    </div>
+                    <!-- /.panel -->
+                    <div class="panel panel-default">
+                        <div class="panel-heading">
+                            <h4 class="panel-title">
+                                <a class="noCrossRef accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseNine">Aenean consequat lorem ut felis ullamcorper?</a>
+                            </h4>
+                        </div>
+                        <div id="collapseNine" class="panel-collapse collapse">
+                            <div class="panel-body">
+                                Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
+                            </div>
+                        </div>
+                    </div>
+                    <!-- /.panel -->
+</div>
+<!-- /.panel-group -->
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_generating_pdfs.md b/pages/mydoc/mydoc_generating_pdfs.md
new file mode 100644
index 0000000000000000000000000000000000000000..576c17070f8be7a9837d22542e53f2ea74b05cb6
--- /dev/null
+++ b/pages/mydoc/mydoc_generating_pdfs.md
@@ -0,0 +1,429 @@
+---
+title: Generating PDFs
+permalink: mydoc_generating_pdfs.html
+tags: [publishing, single_sourcing, content_types]
+keywords: PDF, prince, prince XML, ant, xsl fo
+last_updated: July 3, 2016
+summary: "You can generate a PDF from your Jekyll project. You do this by creating a web version of your project that is printer friendly. You then use utility called Prince to iterate through the pages and create a PDF from them. It works quite well and gives you complete control to customize the PDF output through CSS, including page directives and dynamic tags from Prince."
+sidebar: mydoc_sidebar
+folder: mydoc
+---
+
+
+## PDF overview
+This process for creating a PDF relies on Prince XML to transform the HTML content into PDF. Prince costs about $500 per license. That might seem like a lot, but if you're creating a PDF, you're probably working for a company that sells a product, so you likely have access to some resources. There's also a free license that prints a small "P" watermark on your title page, so if you're fine with that, great.
+
+The basic approach is to generate a list of all web pages that need to be added to the PDF, and then add leverage Prince to package them up into a PDF. Once you set it up, building a pdf is just a matter of running a couple of commands. Also, creating a PDF this way gives you a lot more control and customization capabilities than with other methods for creating PDFs. If you know CSS, you can entirely customize the output.
+
+## Demo
+
+You can see an example of the finished product here:
+
+<a target="\_blank" class="noCrossRef" href="{{ "pdf/mydoc.pdf"}}"><button type="button" class="btn btn-default" aria-label="Left Align"><span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span> PDF Download</button></a>
+
+To generate the PDF, browse to the theme's directory in your terminal and run this script:
+
+```bash
+. pdf-mydoc.sh
+```
+
+This builds a PDF for the documentation in the theme. Look in the **pdf** folder for the output, and see the "last generated date" to confirm that you generated the PDF.
+
+To build a PDF for the other sample projects, run these commands:
+
+```bash
+. pdf-product1.sh
+```
+
+or
+
+```bash
+. pdf-product2.sh
+```
+
+You can see the details of the script in these files in the theme's root directory. For example, open pdf-mydoc.sh. It contains the following:
+
+```bash
+# Note that .sh scripts work only on Mac. If you're on Windows, install Git Bash and use that as your client.
+
+echo 'Kill all Jekyll instances'
+kill -9 $(ps aux | grep '[j]ekyll' | awk '{print $2}')
+clear
+
+echo "Building PDF-friendly HTML site for Mydoc ...";
+bundle exec jekyll serve --detach --config _config.yml,pdfconfigs/config_mydoc_pdf.yml;
+echo "done";
+
+echo "Building the PDF ...";
+prince --javascript --input-list=_site/pdfconfigs/prince-list.txt -o pdf/mydoc.pdf;
+
+echo "Done. Look in the pdf directory to see if it printed successfully."
+```
+
+After stopping all Jekyll instances, we build Jekyll using a special configuration file that specifies a unique stylesheet. The build contains a file (prince-list.txt) that contains a list of all pages to be included in the PDF. We feed this list into a Prince command to build the PDF.
+
+The following sections explain more about the setup.
+
+## 1. Set up Prince
+
+Download and install [Prince](http://www.princexml.com/doc/installing/).
+
+You can install a fully functional trial version. The only difference is that the title page will have a small Prince PDF watermark.
+
+## 2. Create a new configuration file for each of your PDF targets
+
+The PDF configuration file will build on the settings in the regular configuration file but will some additional fields. Here's the configuration file for the mydoc product within this theme. This configuration file is located in the pdfconfigs folder.
+
+```yaml
+destination: _site/
+url: "http://127.0.0.1:4010"
+baseurl: "/mydoc-pdf"
+port: 4010
+output: pdf
+product: mydoc
+print_title: Jekyll theme for documentation — mydoc product
+print_subtitle: version 5.0
+output: pdf
+defaults:
+  -
+    scope:
+      path: ""
+      type: "pages"
+    values:
+      layout: "page_print"
+      comments: true
+      search: true
+
+pdf_sidebar: mydoc_sidebar
+```
+
+{% include note.html content="Although you're creating a PDF, you must still build an HTML web target before running Prince. Prince will pull from the HTML files and from the file-list for the TOC." %}
+
+Note that the default page layout specified by this configuration file is `page_print`. This layout strips out all the sections that shouldn't appear in the print PDF, such as the sidebar and top navigation bar.
+
+Also note that there's a `output: pdf` property in case you want to make some of your content unique to PDF output. For example, you could add conditional logic that checks whether `site.output` is `pdf` or `web`. If it's `pdf`, then include information only for the PDF, and so on. If you're using nav tabs, you'll definitely want to create an alternative experience in the PDF.
+
+In the configuration file, customize the values for the `print_title` and `print_subtitle` that you want. These will appear on the title page of the PDF.
+
+We will access this configure file in the PDF generation script.
+
+## 3. Make sure your sidebar data file has titlepage.html and tocpage.html entries
+
+There are two template pages in the root directory that are critical to the PDF:
+
+* titlepage.html
+* tocpage.html
+
+These pages should appear in your sidebar YML file (in this product, mydoc_sidebar.yml):
+
+```yaml
+- title:
+  output: pdf
+  type: frontmatter
+  folderitems:
+  - title:
+    url: /titlepage.html
+    output: pdf
+    type: frontmatter
+  - title:
+    url: /tocpage.html
+    output: pdf
+    type: frontmatter
+```
+
+Leave these pages here in your sidebar. (The `output: pdf` property means they won't appear in your online TOC because the conditional logic of the sidebar.html checks whether `web` is equal to `pdf` or not before including the item in the web version of the content.)
+
+The code in the tocpage.html is mostly identical to that of the sidebar.html page. This is essential for Prince to create the page numbers correctly with cross references.
+
+There's another file (in the root directory of the theme) that is critical to the PDF generation process: prince-list.txt. This file simply iterates through the items in your sidebar and creates a list of links. Prince will consume the list of links from prince-list.txt and create a running PDF that contains all of the pages listed, with appropriate cross references and styling for them all.
+
+{% include note.html content="If you have any files that you do not want to appear in the PDF, add <code>output: web</code> (rather than <code>output: pdf</code>) in the list of attributes in your sidebar. The prince-list.txt file that loops through the mydoc_sidebar.yml file to grab the URLs of each page that should appear in the PDF will skip over any items that do not list <code>output: pdf</code> in the item attributes. For example, you might not want your tag archives to appear in the PDF, but you probably will want to list them in the online help navigation." %}
+
+## 4. Customize your headers and footers
+
+Open up the css/printstyles.css file and customize what you want for the headers and footers. At the very least, customize the email address (`youremail@domain.com`) that appears in the bottom left.
+
+Exactly how the print styling works here is pretty nifty. You don't need to understand the rest of the content in this section unless you want to customize your PDFs to look different from what I've configured. But I'm adding this information here in case you want to understand how to customize the look and feel of the PDF output.
+
+This style creates a page reference for a link:
+
+{% raw %}
+```css
+a[href]::after {
+    content: " (page " target-counter(attr(href), page) ")"
+}
+```
+
+You don't want cross references for any link that doesn't reference another page, so this style specifies that the content after should be blank:
+
+```css
+a[href*="mailto"]::after, a[data-toggle="tooltip"]::after, a[href].noCrossRef::after {
+    content: "";
+}
+```
+{% endraw %}
+
+{% include tip.html content="If you have a link to a file download, or some other link that shouldn't have a cross reference (such as link used in JavaScript for navtabs or collapsible sections, for example, add `noCrossRef` as a class to the link to avoid having it say \"page 0\" in the cross reference." %}
+
+This style specifies that after links to web resources, the URL should be inserted instead of the page number:
+
+```css
+a[href^="http:"]::after, a[href^="https:"]::after {
+    content: " (" attr(href) ")";
+}
+```
+
+This style sets the page margins:
+
+```css
+@page {
+    margin: 60pt 90pt 60pt 90pt;
+    font-family: sans-serif;
+    font-style:none;
+    color: gray;
+
+}
+```
+
+To set a specific style property for a particular page, you have to name the page. This allows Prince to identify the page.
+
+First you add frontmatter to the page that specifies the type. For the titlepage.html, here's the frontmatter:
+
+```yaml
+---
+type: title
+---
+```
+
+For the tocpage, here's the frontmatter:
+
+```yaml
+---
+type: frontmatter
+---
+```
+
+For the index.html page, we have this type tag (among others):
+
+```yaml
+---
+type: first_page
+---
+```
+
+The default_print.html layout will change the class of the `body` element based on the type value in the page's frontmatter:
+
+{% raw %}
+```liquid
+<body class="{% if page.type == "title"%}title{% elsif page.type == "frontmatter" %}frontmatter{% elsif page.type == "first_page" %}first_page{% endif %} print">
+```
+{% endraw %}
+
+Now in the css/printstyles.css file, you can assign a page name based on a specific class:
+
+```css
+body.title { page: title }
+```
+
+This means that for content inside of `body class="title"`, we can style this page in our stylesheet using `@page title`.
+
+Here's how that title page is styled:
+
+```css
+@page title {
+    @top-left {
+        content: " ";
+    }
+    @top-right {
+        content: " "
+    }
+    @bottom-right {
+        content: " ";
+    }
+    @bottom-left {
+        content: " ";
+    }
+}
+```
+
+As you can see, we don't have any header or footer content, because it's the title page.
+
+For the tocpage.html, which has the `type: frontmatter`, this is specified in the stylesheet:
+
+```css
+body.frontmatter { page: frontmatter }
+body.frontmatter {counter-reset: page 1}
+
+
+@page frontmatter {
+    @top-left {
+        content: prince-script(guideName);
+    }
+    @top-right {
+        content: prince-script(datestamp);
+    }
+    @bottom-right {
+        content: counter(page, lower-roman);
+    }
+    @bottom-left {
+        content: "youremail@domain.com";   }
+}
+```
+
+With `counter(page, lower-roman)`, we reset the page count to 1 so that the title page doesn't start the count. Then we also add some header and footer info. The page numbers start counting in lower-roman numerals.
+
+Finally, for the first page (which doesn't have a specific name), we restart the counting to 1 again and this time use regular numbers.
+
+```css
+body.first_page {counter-reset: page 1}
+
+h1 { string-set: doctitle content() }
+
+@page {
+    @top-left {
+        content: string(doctitle);
+        font-size: 11px;
+        font-style: italic;
+    }
+    @top-right {
+        content: prince-script(datestamp);
+        font-size: 11px;
+    }
+
+    @bottom-right {
+        content: "Page " counter(page);
+        font-size: 11px;
+    }
+    @bottom-left {
+        content: prince-script(guideName);
+        font-size: 11px;
+    }
+}
+```
+
+You'll see some other items in there such as `prince-script`. This means we're using JavaScript to run some functions to dynamically generate that content. These JavaScript functions are located in the \_includes/head_print.html:
+
+```js
+<script>
+    Prince.addScriptFunc("datestamp", function() {
+        return "PDF last generated: {{ site.time | date: '%B %d, %Y' }}";
+    });
+</script>
+
+<script>
+    Prince.addScriptFunc("guideName", function() {
+        return "{{site.print_title}} User Guide";
+    });
+</script>
+```
+
+There are a couple of Prince functions that are default functions from Prince. This gets the heading title of the page:
+
+```js
+        content: string(doctitle);
+```
+
+This gets the current page:
+
+```js
+        content: "Page " counter(page);
+```
+
+Because the theme uses JavaScript in the CSS, you have to add the `--javascript` tag in the Prince command (detailed later on this page).
+
+## 5. Customize and run the PDF script
+
+Duplicate the pdf-mydoc.sh file in the root directory and customize it for your specific configuration files.
+
+```
+echo 'Killing all Jekyll instances'
+kill -9 $(ps aux | grep '[j]ekyll' | awk '{print $2}')
+clear
+
+echo "Building PDF-friendly HTML site for Mydoc ...";
+jekyll serve --detach --config _config.yml,pdfconfigs/config_mydoc_pdf.yml;
+echo "done";
+
+echo "Building the PDF ...";
+prince --javascript --input-list=_site/pdfconfigs/prince-list.txt -o pdf/mydoc.pdf;
+echo "done";
+```
+
+Note that the first part kills all Jekyll instances. This way you won't try to serve Jekyll at a port that is already occupied.
+
+The `jekyll serve` command serves up the HTML-friendly PDF configurations for our two projects. This web version is where Prince will go to get its content.
+
+The prince script issues a command to the Prince utility. JavaScript is enabled (`--javascript`), and we tell it exactly where to find the list of files (`--input-list`) &mdash; just point to the prince-list.txt file. Then we tell it where and what to output (`-o`).
+
+Make sure that the path to the prince-list.txt is correct. For the output directory, I like to output the PDF file into my project's source (into the files folder). Then when I build the web output, the PDF is included and something I can refer to.
+
+{% include note.html content="You might not want to include the PDF in your project files, since you're likely committing the PDF to Github and as a result saving the changes from one PDF version to another with each save." %}
+
+## 6. Add conditions for your new builds in the PDF config file
+
+In the PDF configuration file, there's a section that looks like this:
+
+```
+{% raw %}{% if site.product == "mydoc" %}
+pdf_sidebar: product2_sidebar
+{% endif %}
+```
+
+Point to the sidebar you want here.
+
+What this does is allow the prince-list.txt and toc.html files to iterate through the right sidebar.  Otherwise, you would need to create a unique prince-list.txt and toc.html file for each separate PDF output you have.
+
+## 7. Add a download button for the PDF
+
+You can add a download button for your PDF using some Bootstrap button code:
+
+```html
+<a target="_blank" class="noCrossRef" href="/pdf/mydoc.pdf"><button type="button" class="btn btn-default" aria-label="Left Align"><span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span> PDF Download</button></a>
+```
+
+Here's what that looks like:
+
+<a target="\_blank" class="noCrossRef" href={{ "pdf/mydoc.pdf"}}"><button type="button" class="btn btn-default" aria-label="Left Align"><span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span> PDF Download</button></a>
+
+## JavaScript conflicts
+
+If you have JavaScript on any of your pages, Prince will note errors in Terminal like this:
+
+```
+error: TypeError: value is not an object
+```
+
+However, the PDF will still build.
+
+You need to conditionalize out any JavaScript from your PDF web output before building your PDFs. Make sure that the PDF configuration files have the `output: pdf` property.
+
+Then surround the JavaScript with conditional tags like this:
+
+```
+{% raw %}{% unless site.output == "pdf" %}
+javascript content here ...
+{% endunless %}{% endraw %}
+```
+
+For more detail about using `unless` in conditional logic, see [Conditional logic][mydoc_conditional_logic]. What this code means is "run this code unless this value is the case."
+
+## Overriding Bootstrap Print Styles
+
+The theme relies on Bootstrap's CSS for styling. However, for print media, Bootstrap applies the following style:
+
+```
+@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}
+```
+This is minified, but basically the `*` (asterisk) means select all, and applied the color #000 (black). As a result, the Bootstrap style strips out all color from the PDF (for Bootstrap elements).
+
+This is problematic for code snippets that have syntax highlighting. I decided to remove this de-coloring from the print output. I commented out the Bootstrap style:
+
+```
+@media print{*,:after,:before{/*color:#000!important;*/text-shadow:none!important;/*background:0 0!important*/;-webkit-box-shadow:none!important;box-shadow:none!important}
+```
+
+If you update Bootrap, make sure you make this edit. (Sorry, admittedly I couldn't figure out how to simply overwrite the `*` selector with a later style.)
+
+I did, however, remove the color from the alerts and lighten the background shading for `pre` elements. The printstyles.css has this setting.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_git_collaboration.md b/pages/mydoc/mydoc_git_collaboration.md
new file mode 100644
index 0000000000000000000000000000000000000000..ae0e511b4cb1f0d0b755f699354fac241c86b6b5
--- /dev/null
+++ b/pages/mydoc/mydoc_git_collaboration.md
@@ -0,0 +1,185 @@
+---
+title: Git notes and tips
+summary: "If you're interacting with your team using Git, the notes and tips will help you collaborate efficiently."
+tags: collaboration
+keywords: git, github, collaboration, interaction, file sharing, push
+published: false
+sidebar: mydoc_sidebar
+permalink: mydoc_git_collaboration.html
+folder: mydoc
+---
+
+
+hg fetch does a pull and update at the same time
+you're prompted about any conflicts
+you fix them. then you do this:
+
+
+hg pull -u (i think this is pull and then update)
+
+$ hg [COMMAND] [ARGUMENTS]
+
+hg init
+hg add
+hg log
+hg diff
+hg revert
+hg remove
+hg update
+You have seen that it is possible to switch revision using hg update.
+clone
+
+commit
+
+The first feature of the diff command is to show the differences between the last revision of a file (the state at the last commit command) and the current version. It can also show the differences between any two specified revisions. For example, on apache2.conf, the diff command can be used as follows:
+$ hg diff -r 1 -r 2 apache2.conf
+
+To print each line of a file with the revision at which the line was created (and with the --user option, we come to know who committed this revision), type:
+$ hg annotate [FILE] or $ hg blame [FILE]
+
+To search for a pattern in version controlled files, use hg grep; it will search this pattern in every version of the file and it will print the first one in which it appears, such as hg annotate. For example:
+$ hg grep new apache2.conf
+
+You can also print the content of a file at a given revision even without changing the current working directory using hg cat -r REVISION.
+
+Whenever changes have been committed but not yet pushed, the outgoing command lists all the changesets that are present in the current repository but not yet found in the destination (the ones that are candidates to be pushed), whereas the incoming command shows you the changesets that are found in the source repository but have not been pulled yet. So here, if you use the outgoing command, you will see
+
+push
+pull
+fetch
+merge
+resolve --mark
+
+As you can see, you have added John's change to your repository because hg log is listing it. But it is not yet present in your working copy; you need to update the working directory to the tip revision, which is the default of the update command, when no revision is passed as argument:
+
+You can now see John's change in the working directory. If some files had been modified, either committed or not, the modifications would have been seamlessly merged with that of John's. If there was a conflict, Mercurial would have told us.
+
+hg pull --update or -u: This option combines both the pull and the update commands, not only pulling new changesets into the local repository, but also updating the working directory to the head of these new changes.
+
+| annotate, blame | show changeset information by line for each file |
+| diff | diff repository (or selected files) |
+| forget {filename} | forget the specified files on the next commit |
+
+
+hg fetch. This extension acts as a combination of hg pull -u, hg merge and hg commit. It begins by pulling changes from another repository into the current repository. If it finds that the changes added a new head to the repository, it updates to the new head, begins a merge, then (if the merge succeeded) commits the result of the merge with an automatically-generated commit message. If no new heads were added, it updates the working directory to the new tip changeset.
+
+
+
+i like
+
+hg fetch does a pull and update at the same time
+you're prompted about any conflicts
+you fix them. then you do this: hg resolve --mark
+
+
+hg pull -u (i think this is pull and then update)
+
+$ hg [COMMAND] [ARGUMENTS]
+
+hg init
+hg add
+hg log
+hg diff
+hg revert
+hg remove
+hg update
+You have seen that it is possible to switch revision using hg update.
+clone
+addremove, which allows you to automatically add all new files and remove (from version control) files that have been deleted.
+log
+commit
+
+The first feature of the diff command is to show the differences between the last revision of a file (the state at the last commit command) and the current version. It can also show the differences between any two specified revisions. For example, on apache2.conf, the diff command can be used as follows:
+$ hg diff -r 1 -r 2 apache2.conf
+
+To print each line of a file with the revision at which the line was created (and with the --user option, we come to know who committed this revision), type:
+$ hg annotate [FILE] or $ hg blame [FILE]
+
+To search for a pattern in version controlled files, use hg grep; it will search this pattern in every version of the file and it will print the first one in which it appears, such as hg annotate. For example:
+$ hg grep new apache2.conf
+
+You can also print the content of a file at a given revision even without changing the current working directory using hg cat -r REVISION.
+
+Whenever changes have been committed but not yet pushed, the outgoing command lists all the changesets that are present in the current repository but not yet found in the destination (the ones that are candidates to be pushed), whereas the incoming command shows you the changesets that are found in the source repository but have not been pulled yet. So here, if you use the outgoing command, you will see
+
+push
+pull
+fetch
+merge
+resolve --mark
+
+As you can see, you have added John's change to your repository because hg log is listing it. But it is not yet present in your working copy; you need to update the working directory to the tip revision, which is the default of the update command, when no revision is passed as argument:
+
+You can now see John's change in the working directory. If some files had been modified, either committed or not, the modifications would have been seamlessly merged with that of John's. If there was a conflict, Mercurial would have told us.
+
+hg pull --update or -u: This option combines both the pull and the update commands, not only pulling new changesets into the local repository, but also updating the working directory to the head of these new changes.
+
+Bookmarks are tags that move forward automatically to subsequent changes, leaving no mark on the changesets that previously had that bookmark pointing toward them. Named branches, on the other hand, are indelible marks that are part of a changeset. Multiple heads can be on the same branch, but only one head at a time can be pointed to by the same bookmark. Named branches are pushed/pulled from repo to repo, and bookmarks don't travel.
+
+The default branch name in Mercurial is “default”.
+
+The slowest, safest way to create a branch with Mercurial is to make a new clone of the repository. this is really fascinating -- a clone is merely a branch.
+
+Discarding a branch you don’t want any more is very easy with cloned branches. It’s as simple as rm -rf test-project-feature-branch. There’s no need to mess around with editing repository history, you just delete the damn thing.
+
+The next way to branch is to use a bookmark. For example:
+
+$ cd ~/src/test-project
+$ hg bookmark main
+$ hg bookmark feature
+Now you’ve got two bookmarks (essentially a tag) for your two branches at the current changeset.
+
+To switch to one of these branches you can use hg update feature to update to the tip changeset of that branch and mark yourself as working on that branch. When you commit, it will move the bookmark to the newly created changeset.
+
+
+## Git
+HEAD is a reference to the last commit in the current checked out branch.
+
+This is a good tutorial: https://www.digitalocean.com/community/tutorials/how-to-use-git-branches.
+
+
+## Branching
+
+| Commands | Description |
+|------|-------|
+| List all branches | `git branch a` (the * indicates the branch you're on) |
+| Create new branch | `git -b branchname` or `git branch branchname` |
+| Checkout a branch | `git checkout branchname` |
+| Create new branch and checkout at the same time| `git checkout -b branchname` |
+| Merge into current branch | First go into the branch you want to merge changes into. Then do `git merge branchname`. For example, to merge branch b into branch master, first checkout branch master: `git checkout a`. Now merge b into master: `git merge b`.|
+
+git lg
+
+git checkout master
+git merge search | git merge --no-ff search
+
+the latter (--no-ff) keeps the additional information that these commits were made on a branch.
+then type a commit message (:wq)
+git branch -d search
+
+git add . (works same as add --all)
+git commit am "my commit message" (this performs both adding and commit message at same time)
+
+with merge conflicts:
+
+git status (shows you all the files that can't be added due to merge conflicts)
+fix the conflicts
+then git add . (tells git you fixed the conflicts)
+then git status
+git commit
+
+From the interface, you can also create a pull request to merge all of the changes from a specific branch into another branch.
+
+
+
+## General commands
+
+| Commands | Description |
+|------|-------|
+| start tracking files | `git add` |
+| see what has changed since last commit | `git diff` |
+| commit changes | `git commit` |
+| | |
+
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_glossary.md b/pages/mydoc/mydoc_glossary.md
new file mode 100644
index 0000000000000000000000000000000000000000..264fed782da9d9062eff949bc385b7efa0fa235a
--- /dev/null
+++ b/pages/mydoc/mydoc_glossary.md
@@ -0,0 +1,111 @@
+---
+title: Glossary layout
+tags: [formatting, special_layouts]
+keywords: definitions, glossaries, terms, style guide
+last_updated: July 3, 2016
+summary: "Your glossary page can take advantage of definitions stored in a data file. This gives you the ability to reuse the same definition in multiple places. Additionally, you can use Bootstrap classes to arrange your definition list horizontally."
+sidebar: mydoc_sidebar
+permalink: mydoc_glossary.html
+toc: false
+folder: mydoc
+---
+
+
+You can create a glossary for your content. First create your glossary items in a data file such as glossary.yml.
+
+Then create a page and use definition list formatting, like this:
+
+fractious
+: {{site.data.glossary.fractious}}
+
+gratuitous
+: {{site.data.glossary.gratuitous}}
+
+haughty
+: {{site.data.glossary.haughty}}
+
+gratuitous
+: {{site.data.glossary.gratuitous}}
+
+impertinent
+: {{site.data.glossary.intrepid}}
+
+Here's the code:
+
+```
+{% raw %}fractious
+: {{site.data.glossary.fractious}}
+
+gratuitous
+: {{site.data.glossary.gratuitous}}
+
+haughty
+: {{site.data.glossary.haughty}}
+
+gratuitous
+: {{site.data.glossary.gratuitous}}
+
+impertinent
+: {{site.data.glossary.intrepid}}{% endraw %}
+```
+
+The glossary works well as a link in the top navigation bar.
+
+## Horizontally styled definiton lists
+
+You can also change the definition list (`dl`) class to `dl-horizontal`. This is a Bootstrap specific class. If you do, the styling looks like this:
+
+<dl class="dl-horizontal">
+
+<dt id="fractious">fractious</dt>
+<dd>{{site.data.glossary.fractious}}</dd>
+
+<dt id="gratuitous">gratuitous</dt>
+<dd>{{site.data.glossary.gratuitous}}</dd>
+
+<dt id="haughty">haughty</dt>
+<dd>{{site.data.glossary.haughty}}</dd>
+
+<dt id="benchmark_id">gratuitous</dt>
+<dd>{{site.data.glossary.gratuitous}}</dd>
+
+<dt id="impertinent">impertinent</dt>
+<dd>{{site.data.glossary.impertinent}}</dd>
+
+<dt id="intrepid">intrepid</dt>
+<dd>{{site.data.glossary.intrepid}}</dd>
+
+</dl>
+
+For this type of list, you must use HTML. The list would then look like this:
+
+```html
+{% raw %}<dl class="dl-horizontal">
+
+<dt id="fractious">fractious</dt>
+<dd>{{site.data.glossary.fractious}}</dd>
+
+<dt id="gratuitous">gratuitous</dt>
+<dd>{{site.data.glossary.gratuitous}}</dd>
+
+<dt id="haughty">haughty</dt>
+<dd>{{site.data.glossary.haughty}}</dd>
+
+<dt id="benchmark_id">gratuitous</dt>
+<dd>{{site.data.glossary.gratuitous}}</dd>
+
+<dt id="impertinent">impertinent</dt>
+<dd>{{site.data.glossary.impertinent}}</dd>
+
+<dt id="intrepid">intrepid</dt>
+<dd>{{site.data.glossary.intrepid}}</dd>
+
+</dl>{% endraw %}
+```
+
+If you squish your screen small enough, at a certain breakpoint this style reverts to the regular `dl` class.
+
+Although I like the side-by-side view for shorter definitions, I found it problematic with longer definitions.
+
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_help_api.md b/pages/mydoc/mydoc_help_api.md
new file mode 100644
index 0000000000000000000000000000000000000000..b8acc958791496748f7e2449870f4d219325cda1
--- /dev/null
+++ b/pages/mydoc/mydoc_help_api.md
@@ -0,0 +1,363 @@
+---
+title: Help APIs and UI tooltips
+tags: [publishing, single_sourcing, content_types]
+last_updated: July 3, 2016
+keywords: API, content API, UI text, inline help, context-sensitive help, popovers, tooltips
+summary: "You can loop through files and generate a JSON file that developers can consume like a help API. Developers can pull in values from the JSON into interface elements, styling them as popovers for user interface text, for example. The beauty of this method is that the UI text remains in the help system (or at least in a single JSON file delivered to the dev team) and isn't hard-coded into the UI."
+sidebar: mydoc_sidebar
+permalink: mydoc_help_api.html
+folder: mydoc
+---
+
+## Full code demo of content API
+
+You can create a help API that developers can use to pull in content.
+
+For the full code demo, see the notes in the [Tooltips file](tooltips.html).
+
+In this demo, the popovers pull in and display content from the information in a <a target="_blank" href="tooltips.json">tooltips.json</a> file located in the same directory.
+
+Instead of placing the JSON source in the same directory, you could also host the JSON file on another site.
+
+Additionally, instead of tooltip popovers, you could also print content directly to the page. Basically, whatever you can stuff into a JSON file, developers can integrate it onto a page.
+
+## Diagram overview
+
+Here's a diagram showing the basic idea of the help API:
+
+<img src="images/helpapi.svg" style="width: 650px;"/>
+
+Is this really an API? Well, sort of. The help content is pushed out into a JSON file that other websites and applications can easily consume. The endpoints don't deliver different data based on parameters added to a URL. But the overall concept is similar to an API: you have a client requesting resources from a server.
+
+Note that in this scenario, the help is openly accessible on the web. If you have a private system, it's more complicated.
+
+To deliver help this way using Jekyll, follow the steps in each of the sections below.
+
+## 1. Create a "collection" for the help content
+
+A collection is another content type that extends Jekyll beyond the use of pages and posts. Call the collection "tooltips."
+
+Add the following information to your configuration file to declare your collection:
+
+```
+collections:
+  tooltips:
+    output: false
+```
+
+In your Jekyll project's root directory, create a new folder called "_tooltips" and put every page that you want to be part of that tooltips collection inside that folder.
+
+In Jekyll, folders that begin with an underscore ("_") aren't included in the output. However, in the collection information that you add to your configuration file, if you change `output` to `true`, the tooltips folder will appear in the output, and each page inside tooltips will be generated. You most likely don't want this for tooltips (you just want the JSON file), so make the `output` setting `false`.
+
+## 2. Create tooltip definitions in a YAML file
+
+Inside the \_data folder, create a YAML file called something like definitions.yml. Add the definitions for each of your tooltips here like this:
+
+```yaml
+basketball: "Basketball is a sport involving two teams of five players each competing to put a ball through a small circular rim 10 feet above the ground. Basketball requires players to be in top physical condition, since they spend most of the game running back and forth along a 94-foot-long floor."
+```
+
+The definition of basketball is stored this data file so that you can re-use it in other parts of the help as well. You'll likely want the definition to appear not only in the tooltip in the UI, but also in the regular documentation as well.
+
+## 3. Create pages in your collection
+
+Create pages inside your new tooltips collection (that is, inside the \_tooltips folder). Each page needs to have a unique `id` in the frontmatter as well as a `product`. Then reference the definition you created in the definitions.yml file.
+
+Here's an example:
+
+```yaml
+{% raw %}
+---
+doc_id: basketball
+product: mydoc
+---
+
+{{site.data.definitions.basketball}}{% endraw %}
+```
+
+(Note: Avoid using `id`, as it seems to generate out as `/tooltips/basketball` instead of just `basketball.)
+
+You need to create a separate file for each tooltip you want to deliver.  
+
+The product attribute is required in the frontmatter to distinguish the tooltips produced here from the tooltips for other products in the same \_tooltips folder. When creating the JSON file, Jekyll will iterate through all the pages inside \_tooltips, regardless of any subfolders included here.
+
+## 4. Create a JSON file that loops through your collection pages
+
+Now it's time to create a JSON file with Liquid code that iterates through our tooltip collection and grabs the information from each tooltip file.
+
+Inside your project's pages directory (e.g., mydoc), add a file called "tooltips.json." (You can use whatever name you want.) Add the following to your JSON file:
+
+{% raw %}
+```liquid
+---
+layout: null
+search: exclude
+---
+
+{
+"entries":
+[
+{% for page in site.tooltips %}
+{
+"doc_id": "{{ page.doc_id }}",
+"body": "{{ page.content | strip_newlines | replace: '\', '\\\\' | replace: '"', '\\"' }}"
+} {% unless forloop.last %},{% endunless %}
+{% endfor %}
+]
+}
+
+```
+{% endraw %}
+
+This code will loop through all pages in the tooltips collection and insert the `id` and `body` into key-value pairs for the JSON code. Here's an example of what that looks like after it's processed by Jekyll in the site build:
+
+```json
+{
+  "entries": [
+    {
+      "doc_id": "baseball",
+      "body": "{{site.data.definitions.baseball}}"
+    },
+    {
+      "doc_id": "basketball",
+      "body": "{{site.data.definitions.basketball}}"
+    },
+    {
+      "doc_id": "football",
+      "body": "{{site.data.definitions.football}}"
+    },
+    {
+      "doc_id": "soccer",
+      "body": "{{site.data.definitions.soccer}}"
+    }
+  ]
+}
+```
+
+You can also view the same JSON file here: <a target="_blank" href="tooltips.json">tooltips.json</a>.
+
+You can add different fields depending on how you want the JSON to be structured. Here we just have to fields: `doc_id` and `body`. And the JSON is looking just in the tooltips collection that we created.
+
+{% include tip.html content="Check out [Google's style guide](https://google-styleguide.googlecode.com/svn/trunk/jsoncstyleguide.xml) for JSON. These best practices can help you keep your JSON file valid." %}
+
+Note that you can create different JSON files that specialize in different content. For example, suppose you have some getting started information. You could put that into a different JSON file. Using the same structure, you might add an `if` tag that checks whether the page has frontmatter that says `type: getting_started` or something. Or you could put the content into separate collection entirely (different from tooltips).
+
+By chunking up your JSON files, you can provide a quicker lookup. (I'm not sure how big the JSON file can be before you experience any latency with the jQuery lookup.)
+
+## 5. Build your site and look for the JSON file
+
+When you build your site, Jekyll will iterate through every page in your _tooltips folder and put the page id and body into this format. In the output, look for the JSON file in the tooltips.json file. You'll see that Jekyll has populated it with content. This is because of the triple hyphen lines in the JSON file &mdash; this instructs Jekyll to process the file.
+
+## 6. Allow CORS access to your help if stored on a remote server
+
+You can simply deliver the JSON file to devs to add to the project. But if you have the option, it's best to keep the JSON file stored in your own help system. Assuming you have the ability to update your content on the fly, this will give you completely control over the tooltips without being tied to a specific release window.
+
+When people make calls to your site *from other domains*, you must allow them access to get the content. To do this, you have to enable something called CORS (cross origin resource sharing) within the server where your help resides.
+
+In other words, people are going to be executing calls to reach into your site and grab your content. Just like the door on your house, you have to unlock it so people can get in. Enabling CORS is unlocking it.
+
+How you enable CORS depends on the type of server.
+
+If your server setup allows htaccess files to override general server permissions, create an .htaccess file and add the following:
+
+```
+Header set Access-Control-Allow-Origin "*"
+```
+
+Store this in the same directory as your project. This is what I've done in a directory on my web host (bluehost.com). Inside http://idratherassets.com/wp-content/apidemos/, I uploaded a file called ".htaccess" with the preceding code.
+
+After I uploaded it, I renamed it to .htaccess, right-clicked the file and set the permissions to 774.
+
+To test whether your server permissions are set correctly, open a terminal and run the following curl command pointing to your tooltips.json file:
+
+```
+curl -I http://idratherassets.com/wp-content/apidemos/tooltips.json
+```
+
+The `-I` command tells cURL to return the request header only.
+
+If the server permissions are set correctly, you should see the following line somewhere in the response:
+
+```xml
+Access-Control-Allow-Origin: *
+```
+
+If you don't see this response, CORS isn't allowed for the file.
+
+If you have an AWS S3 bucket, you can supposedly add a CORS configuration to the bucket permissions. Log into AWS S3 and click your bucket. On the right, in the Permissions section, click **Add CORS Configuration**. In that space, add the following policy:
+
+```xml
+<CORSConfiguration>
+ <CORSRule>
+   <AllowedOrigin>*</AllowedOrigin>
+   <AllowedMethod>GET</AllowedMethod>
+ </CORSRule>
+</CORSConfiguration>
+```
+
+(Although this should work, in my experiment it doesn't. And I'm not sure why...)
+
+In other server setups, you may need to edit one of your Apache configuration files. See [Enable CORS](http://enable-cors.org/server.html) or search online for ways to allow CORS for your server.
+
+If you don't have CORS enabled, users will see a CORS error/warning message in the console of the page making the request.
+
+{% include tip.html content="If enabling CORS is problematic, you could always just send developers the tooltips.json file and ask them to place it on their own server." %}
+
+## 7. Explain how developers can access the help
+
+Developers can access the help using the `.get` method from jQuery, among other methods. Here's an example of how to get tooltips for basketball, baseball, football, and soccer:
+
+```js
+{% raw %}var url = "tooltips.json";
+
+         $.get( url, function( data ) {
+
+          /* Bootstrap popover text is defined inside a data-content attribute inside an element. That's
+          why I'm using attr here. If you just want to insert content on the page, use append and remove the data-content argument from the parentheses.*/
+
+             $.each(data.entries, function(i, page) {
+                 if (page.doc_id == "basketball") {
+                     $( "#basketball" ).attr( "data-content", page.body );
+                 }
+
+                 if (page.doc_id == "baseball") {
+                     $( "#baseball" ).attr( "data-content", page.body );
+                 }
+                 if (page.doc_id == "football") {
+                     $( "#football" ).attr( "data-content", page.body );
+                 }
+
+                 if (page.doc_id == "soccer") {
+                     $( "#soccer" ).attr( "data-content", page.body );
+                 }
+
+
+                 });
+             });{% endraw %}
+```
+
+View the <a target="_blank" href="tooltips.html" class="noCrossRef">tooltip demo</a> for a demonstration. See the source code for full code details.
+
+The `url` in the demo is relative, but you could equally point it to an absolute path on a remote host assuming CORS is enabled on the host.
+
+The `each` method looks through all the JSON content to find the item whose `page.id` is equal to `basketball`. It then looks for an element on the page named `#basketball` and adds a `data-content` attribute to that element.
+
+{% include warning.html content="Make sure your JSON file is valid. Otherwise, this method won't work. I use the [JSON Formatter extension for Chrome](https://chrome.google.com/webstore/detail/json-formatter/bcjindcccaagfpapjjmafapmmgkkhgoa?hl=en). When I go to the tooltips.json page in my browser, the JSON content &mdash; if valid &mdash; is nicely formatted (and includes some color coding). If the file isn't valid, it's not formatted and there isn't any color. You can also check the JSON formatting using [JSON Formatter and Validator](http://jsonformatter.curiousconcept.com/). If your JSON file isn't valid, identify the problem area using the validator and troubleshoot the file causing issues. It's usually due to some code that isn't escaping correctly." %}
+
+Why `data-content`? Well, in this case, I'm using [Bootstrap popovers](http://getbootstrap.com/javascript/#popovers) to display the tooltip content. The `data-content` attribute is how Bootstrap injects popovers.
+
+Here's the section on the page where the popover is inserted:
+
+```
+<p>Basketball <span class="glyphicon glyphicon-info-sign" id="basketball" data-toggle="popover"></span></p>
+```
+
+Notice that I just have `id="basketball"` added to this popover element. Developers merely need to add a unique ID to each tooltip they want to pull in the help content. Either you tell developers the unique ID they should add, or ask them what IDs they added (or just tell them to use an ID that matches the field's name).
+
+In order to use jQuery and Bootstrap, you'll need to add the appropriate references in the head tags of your page:
+
+```js
+<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
+<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
+<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
+
+<script type="text/javascript">
+$(document).ready(function(){
+    $('[data-toggle="popover"]').popover({
+        placement : 'right',
+        trigger: 'hover',
+        html: true
+    });
+</script>
+```
+
+Again, see the <a class="noCrossRef" href="tooltips.html">Tooltip Demo</a> for a demo of the full code.
+
+Note that even though you reference a Bootstrap JS script, Bootstrap's popovers require you to initialize them using the above code as well &mdash; they aren't turned on by default.
+
+View the source code of the <a target="_blank" href="tooltips.html" class="noCrossRef">tooltip demo</a> for the full comments.
+
+## 8. Create easy links to embed the help in your help site
+
+You might also want to insert the same content into different parts of your help site. For example, if you have tooltips providing definitions for fields, you'll probably want to create a page in your help that lists those same definitions.
+
+You could use the same method developers use to pull help content into their applications. But it will probably be easier to simply use Jekyll's tags for doing it.
+
+Here's how you would reuse the content:
+
+
+```html
+{% raw %}<h2>Reuse Demo</h2>
+
+
+<table>
+<thead>
+<tr>
+<th>Sport</th>
+<th>Comments</th>
+</tr>
+</thead>
+<tbody>
+
+<tr>
+<td>Basketball</td>
+<td>{{site.data.definitions.basketball}}</td>
+</tr>
+
+<tr>
+<td>Baseball</td>
+<td>{{site.data.definitions.baseball}}</td>
+</tr>
+
+<tr>
+<td>Football</td>
+<td>{{site.data.definitions.football}}</td>
+</tr>
+
+<tr>
+<td>Soccer</td>
+<td>{{site.data.definitions.soccer}}</td>
+</tr>
+</tbody>
+</table>{% endraw %}
+```
+
+And here's the code:
+
+<h2>Reuse Demo</h2>
+
+
+<table>
+<thead>
+<tr>
+<th>Sport</th>
+<th>Comments</th>
+</tr>
+</thead>
+<tbody>
+
+<tr>
+<td>Basketball</td>
+<td>{{site.data.definitions.basketball}}</td>
+</tr>
+
+<tr>
+<td>Baseball</td>
+<td>{{site.data.definitions.baseball}}</td>
+</tr>
+
+<tr>
+<td>Football</td>
+<td>{{site.data.definitions.football}}</td>
+</tr>
+
+<tr>
+<td>Soccer</td>
+<td>{{site.data.definitions.soccer}}</td>
+</tr>
+</tbody>
+</table>
+
+Now you have both documentation and UI tooltips generated from the same definitions file.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_hyperlinks.md b/pages/mydoc/mydoc_hyperlinks.md
new file mode 100644
index 0000000000000000000000000000000000000000..85558726c7b6a81d7923b42b83e481637ca86d7a
--- /dev/null
+++ b/pages/mydoc/mydoc_hyperlinks.md
@@ -0,0 +1,99 @@
+---
+title: Links
+audience: writer, designer
+tags: [formatting, navigation]
+keywords: links, hyperlinks, cross references, related links, relationship tables
+summary: "When creating links, you can use standard HTML or Markdown formatting. However, you can also implement an automated approach to linking that makes linking much less error-prone (meaning less chances of broken links in your output) and requiring less effort."
+last_updated: July 3, 2016
+sidebar: mydoc_sidebar
+permalink: mydoc_hyperlinks.html
+folder: mydoc
+---
+
+## Create an external link
+
+When linking to an external site, use Markdown formatting because it's simplest:
+
+```
+[Google](http://google.com)
+```
+
+## Linking to internal pages
+
+When linking to internal pages, you can manually link to the pages like this:
+
+```
+[Icons](mydoc_icons.html)
+```
+
+However, if you change the file name, you'll have to update all of your links. It's much easier to use Automated links, as described in the next section.
+
+## Automated links {#automatedlinks}
+
+This method for automated links creates a master list of all links in a Markdown reference format based on entries in your sidebar table of contents.
+
+With this Automated links method, make sure all your pages are referenced in a sidebar or topnav data file (inside \_data > sidebars). If they're not in a sidebar or top nav (such as links to headings on a page), list them in the `other.yml` file (which is in the \_data/sidebars folder).
+
+The links.html file (in \_includes) will iterate through all your sidebars and create a list of reference-style markdown links based on the `url` properties in the sidebar items. 
+
+{% include note.html content="For the automated links method to work, each of your pages must have a `permalink` property in the frontmatter. The `permalink` property must match the file name. For example, if the file name is `somefile.html`, your permalink property would be `somefile.html`. See [Pages][mydoc_pages] for more details." %}
+
+To implement managed links:
+
+1.  In your \_config.yml file, list each sidebar in the `sidebars` property &mdash; including the other.yml file too:
+    
+    ```yaml
+    sidebars:
+    - home_sidebar
+    - mydoc_sidebar
+    - product1_sidebar
+    - product2_sidebar
+    - other
+    ```
+    
+2.  At the bottom of each topic where you plan to include links, include the links.html file:
+
+    ```
+    {% raw %}{% include links.html %}{% endraw %}
+    ```
+    
+3.  To link to a topic, use reference-style Markdown links, with the referent using the file name (without the file extension). For example:
+
+    ```
+    See the [Icon][mydoc_icons] file.
+    ```
+
+    Here's the result:
+
+    See the [Icon][mydoc_icons] file.
+
+    If the link doesn't render, check to make sure the page is correctly listed in the sidebar.
+
+## Automated links to headings on pages {#bookmarklinks}
+
+If you're linking to the specific heading from another page, first give the heading an ID:
+
+```
+## Some heading {#someheading}
+```
+
+Then add a property into the other.yml file in your \_data/sidebars folder:
+
+```yaml
+    - title: Some link bookmark
+      url: /mydoc_pages.html#someIdTag
+```
+
+And reference it like this:
+
+```
+This is [Some link][mydoc_pages.html#someIdTag].
+```
+
+**Result:**
+
+This is [Some link][mydoc_pages.html#someIdTag].
+
+It's a little strange having the `.html#` in a reference like this, but it works.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_icons.md b/pages/mydoc/mydoc_icons.md
new file mode 100644
index 0000000000000000000000000000000000000000..791351b384457051455b2ac4882e3e021540a541
--- /dev/null
+++ b/pages/mydoc/mydoc_icons.md
@@ -0,0 +1,242 @@
+---
+title: Icons
+tags: [formatting]
+keywords: font icons, buttons, images, vectors, font awesome, glyphicons
+last_updated: July 16, 2016
+summary: "You can integrate font icons through the Font Awesome and Glyphical Halflings libraries. These libraries allow you to embed icons through their libraries delivered as a link reference. You don't need any image libraries downloaded in your project."
+sidebar: mydoc_sidebar
+permalink: mydoc_icons.html
+folder: mydoc
+---
+
+## Font icon options
+The theme has two font icon sets integrated: Font Awesome and Glyphicons Halflings. The latter is part of Bootstrap, while the former is independent. Font icons allow you to insert icons drawn as vectors from a CDN (so you don't have any local images on your own site).
+
+## External icons
+
+When you link to an external site, like [Jekyll](http://jekyllrb.com), an icon appears after the link. If you want to remove this icon, comment out this style in css/customstyles.css.
+
+```css
+/* this part adds an icon after external links, using FontAwesome*/
+a[href^="http://"]:after, a[href^="https://"]:after {
+    content: "\f08e";
+    font-family: FontAwesome;
+    font-weight: normal;
+    font-style: normal;
+    display: inline-block;
+    text-decoration: none;
+    padding-left: 3px;
+}
+```
+
+## See Font Awesome icons available
+
+Go to the [Font Awesome library](http://fortawesome.github.io/Font-Awesome/icons/) to see the available icons.
+
+The Font Awesome icons allow you to adjust their size by simply adding `fa-2x`, `fa-3x` and so forth as a class to the icon to adjust their size to two times or three times the original size. As vector icons, they scale crisply at any size.
+
+Here's an example of how to scale up a camera icon:
+
+```html
+<i class="fa fa-camera-retro"></i> normal size (1x)
+<i class="fa fa-camera-retro fa-lg"></i> fa-lg
+<i class="fa fa-camera-retro fa-2x"></i> fa-2x
+<i class="fa fa-camera-retro fa-3x"></i> fa-3x
+<i class="fa fa-camera-retro fa-4x"></i> fa-4x
+<i class="fa fa-camera-retro fa-5x"></i> fa-5x
+```
+
+Here's what they render to:
+
+<i class="fa fa-camera-retro"></i> 1x
+<i class="fa fa-camera-retro fa-lg"></i> fa-lg
+<i class="fa fa-camera-retro fa-2x"></i> fa-2x
+<i class="fa fa-camera-retro fa-3x"></i> fa-3x
+<i class="fa fa-camera-retro fa-4x"></i> fa-4x
+<i class="fa fa-camera-retro fa-5x"></i> fa-5x
+
+With Font Awesome, you always use the `i` tag with the appropriate class. You also implement `fa` as a base class first. You can use font awesome icons inside other elements. Here I'm using a Font Awesome class inside a Bootstrap alert:
+
+```html
+<div class="alert alert-danger" role="alert"><i class="fa fa-exclamation-circle"></i> <b>Warning: </b>This is a special warning message.
+```
+
+Here's the result:
+
+<div class="alert alert-danger" role="alert"><i class="fa fa-exclamation-circle fa-lg"></i> This is a special warning message.</div>
+
+The notes, tips, warnings, etc., are pre-coded with Font Awesome and stored in the alerts.yml file. That file includes the following:
+
+{% raw %}
+```yaml
+tip: '<div class="alert alert-success" role="alert"><i class="fa fa-check-square-o"></i> <b>Tip: </b>'
+note: '<div class="alert alert-info" role="alert"><i class="fa fa-info-circle"></i> <b>Note: </b>'
+important: '<div class="alert alert-warning" role="alert"><i class="fa fa-warning"></i> <b>Important: </b>'
+warning: '<div class="alert alert-danger" role="alert"><i class="fa fa-exclamation-circle"></i> <b>Warning: </b>'
+end: '</div>'
+
+callout_danger: '<div class="bs-callout bs-callout-danger">'
+callout_default: '<div class="bs-callout bs-callout-default">'
+callout_primary: '<div class="bs-callout bs-callout-primary">'
+callout_success: '<div class="bs-callout bs-callout-success">'
+callout_info: '<div class="bs-callout bs-callout-info">'
+callout_warning: '<div class="bs-callout bs-callout-warning">'
+
+hr_faded: '<hr class="faded"/>'
+hr_shaded: '<hr class="shaded"/>'
+```
+{% endraw %}
+
+This means you can insert a tip, note, warning, or important alert simply by using these tags.
+
+
+```liquid
+{% raw %}{% include note.html content="Add your note here." %}{% endraw %}
+```
+
+
+```liquid
+{% raw %}{% include tip.html content="Add your tip here." %}{% endraw %}
+```
+
+
+```liquid
+{% raw %}{% include important.html content="Add your important info here." %}{% endraw %}
+```
+
+
+{% raw %}
+```liquid
+{% include warning.html content="Add your warning here." %}
+```
+{% endraw %}
+
+Here's the result:
+
+{% include note.html content="Add your note here." %}
+
+{% include tip.html content="Here's my tip." %}
+
+{% include important.html content="This information is very important." %}
+
+{% include warning.html content="If you overlook this, you may die." %}
+
+The color scheme is the default colors from Bootstrap. You can modify the icons or colors as needed.
+
+## Creating your own combinations
+
+You can innovate with your own combinations. Here's a similar approach with a file download icon:
+
+```html
+<div class="alert alert-success" role="alert"><i class="fa fa-download fa-lg"></i> This is a special tip about some file to download....</div>
+```
+
+And the result:
+
+<div class="alert alert-success" role="alert"><i class="fa fa-download fa-lg"></i> This is a special tip about some file to download....</div>
+
+
+Grab the right class name from the [Font Awesome library](http://fortawesome.github.io/Font-Awesome/icons/) and then implement it by following the pattern shown previously.
+
+If you want to make your fonts even larger than the 5x style, add a custom style to your stylesheet like this:
+
+```css
+.fa-10x{font-size:1700%;}
+```
+
+Then any element with the attribute `fa-10x` will be enlarged 1700%.
+
+## Glyphicon icons available
+
+Glyphicons work similarly to Font Awesome. Go to the [Glyphicons library](http://getbootstrap.com/components/#glyphicons) to see the icons available.
+
+Although the Glyphicon Halflings library doesn't provide the scalable classes like Font Awesome, there's a [StackOverflow trick](http://stackoverflow.com/questions/24960201/how-do-i-make-glyphicons-bigger-change-size)  to make the icons behave in a similar way. This theme's stylesheet (customstyles.css) includes the following to the stylesheet:
+
+```css
+.gi-2x{font-size: 2em;}
+.gi-3x{font-size: 3em;}
+.gi-4x{font-size: 4em;}
+.gi-5x{font-size: 5em;}
+```
+
+Now you just add `gi-5x` or whatever to change the size of the font icon:
+
+```html
+<span class="glyphicon glyphicon-globe gi-5x"></span>
+```
+
+And here's the result:
+
+<span class="glyphicon glyphicon-globe gi-5x"></span>
+
+Glypicons use the `span` element instead of `i` to attach their classes.
+
+Here's another example:
+
+```html
+<span class="glyphicon glyphicon-download"></span>
+```
+
+<span class="glyphicon glyphicon-download"></span>
+
+And magnified:
+
+```html
+<span class="glyphicon glyphicon-download gi-3x"></span>
+```
+
+<span class="glyphicon glyphicon-download gi-3x"></span>
+
+You can also put glyphicons inside other elements:
+
+```html
+<div class="alert alert-danger" role="alert">
+  <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
+  <b>Error:</b> Enter a valid email address
+</div>
+```
+
+<div class="alert alert-danger" role="alert">
+  <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
+  <b>Error:</b> Enter a valid email address
+</div>
+
+## Callouts
+
+The previously shown alerts might be fine for short messages, but with longer notes, the solid color takes up a bit of space. In this theme, you also have the option of using callouts, which are pretty common in Bootstrap's documentation but surprisingly not offered as an explicit element. Their styles have been copied into this theme, in a way similar to the alerts:
+
+```html
+<div class="bs-callout bs-callout-info">
+ This is a special info message. This is a special info message. This is a special info message. This is a special info message. This is a special info message. This is a special info message. This is a special info message. This is a special info message. This is a special info message. </div>
+```
+
+<div class="alert alert-info" role="alert"><span class="glyphicon glyphicon-question-sign"></span> This is a special info message. This is a special info message. This is a special info message. This is a special info message. This is a special info message. This is a special info message. This is a special info message. This is a special info message. This is a special info message. </div>
+
+And here's the shortcode:
+
+{% raw %}
+```
+{{site.data.alerts.callout_info}This is a special callout information message.{{site.data.alerts.end}}
+{% endraw %}
+```
+
+Here's the result:
+
+{{site.data.alerts.callout_info}}This is a special callout information message.{{site.data.alerts.end}}
+
+You can use any of the following:
+{% raw %}
+```
+{{site.data.alerts.callout_default}}
+{{site.data.alerts.callout_primary}}
+{{site.data.alerts.callout_success}}
+{{site.data.alerts.callout_info}}
+{{site.data.alerts.callout_warning}}
+```
+{% endraw %}
+
+The only difference is the color of the left bar.
+
+Callouts are explained in a bit more detail in [Alerts][mydoc_alerts].
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_images.md b/pages/mydoc/mydoc_images.md
new file mode 100644
index 0000000000000000000000000000000000000000..57780f3674ac65ac79dbb1f28fa9185d0382f84c
--- /dev/null
+++ b/pages/mydoc/mydoc_images.md
@@ -0,0 +1,99 @@
+---
+title: Images
+tags: [formatting]
+keywords: images, screenshots, vectors, svg, markdown syntax
+last_updated: July 3, 2016
+summary: "Store images in the images folder and use the image.html include to insert images. This include has several options, including figcaptions, that extract the content from the formatting."
+sidebar: mydoc_sidebar
+permalink: mydoc_images.html
+folder: mydoc
+---
+
+## Image Include Template
+
+Instead of using Markdown or HTML syntax directly in your page for images, the syntax for images has been extracted out into an image include that allows you to pass the parameters you need. Include the image.html like this:
+
+```liquid
+{% raw %}
+{% include image.html file="jekyll.png" url="http://jekyllrb.com" alt="Jekyll" caption="This is a sample caption" %}
+{% endraw %}
+```
+
+The available include properties are as follows:
+
+| Property | description |
+|-------|--------|
+| file | The name of the file. Store it in the /images folder. If you want to organize your images in subfolders, reference the subfolder path here, like this: `mysubfolder/jekyllrb.png` |
+| url | Whether to link the image to a URL |
+| alt | Alternative image text for accessibility and SEO |
+| caption | A caption for the image |
+| max-width | a maximum width for the image (in pixels). Just specify the number, not px.|
+
+The properties of the include get populated into the image.html template.
+
+Here's the result:
+
+{% include image.html file="jekyll.png" url="http://jekyllrb.com" alt="Jekyll" caption="This is a sample caption" %}
+
+
+
+## Inline image includes
+
+For inline images, such as with a button that you want to appear inline with text, use the inline_image.html include, like this:
+
+```liquid
+Click the **Android SDK Manager** button {%raw%}{% include inline_image.html
+file="androidsdkmanagericon.png" alt="SDK button" %}{%endraw%}
+```
+
+Click the **Android SDK Manager** button {% include inline_image.html file="androidsdkmanagericon.png" alt="SDK button" %}
+
+The inline_image.html include properties are as follows:
+
+| Property | description |
+|-------|--------|
+| file | The name of the file |
+| type | The type of file (png, svg, and so on) |
+| alt | Alternative image text for accessibility and SEO |
+
+## SVG Images
+
+You can also embed SVG graphics. If you use SVG, you need to use the HTML syntax so that you can define a width/container for the graphic. Here's a sample embed:
+
+```liquid
+{% raw %}{% include image.html file="helpapi.svg" url="http://idratherbewriting.com/documentation-theme-jekyll/mydoc_help_api/" alt="Building a Help API" caption="A help API provides a JSON file at a web URL with content that can be pulled into different targets" max-width="600" %}{% endraw %}
+```
+
+Here's the result:
+
+
+{% include image.html file="helpapi.svg" url="http://idratherbewriting.com/documentation-theme-jekyll/mydoc_help_api/" alt="Building a Help API" caption="A help API provides a JSON file at a web URL with content that can be pulled into different targets" max-width="600" %}
+
+The stylesheet even handles SVG display in IE 9 and earlier through the following style (based on this [gist](https://gist.github.com/larrybotha/7881691)):
+
+```css
+/*
+ * Let's target IE to respect aspect ratios and sizes for img tags containing SVG files
+ *
+ * [1] IE9
+ * [2] IE10+
+ */
+/* 1 */
+.ie9 img[src$=".svg"] {
+    width: 100%;
+}
+/* 2 */
+@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
+    img[src$=".svg"] {
+        width: 100%;
+    }
+}
+```
+
+Also, if you're working with SVG graphics, note that Firefox does not support SVG fonts. In Illustrator, when you do a Save As with your AI file and choose SVG, to preserve your fonts, in the Font section, select "Convert to outline" as the Type (don't choose SVG in the Font section).
+
+Also, remove the check box for "Use textpath element for text on a path". And select "Embed" rather than "Link." The following screenshot shows the settings I use. Your graphics will look great in Firefox.
+
+{% include image.html file="illustratoroptions.png" caption="Essential options for SVG with Illustrator" %}
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_install_jekyll_on_mac.md b/pages/mydoc/mydoc_install_jekyll_on_mac.md
new file mode 100644
index 0000000000000000000000000000000000000000..eadc3badeee1ca0f2ec7e431c3eb5892399801c2
--- /dev/null
+++ b/pages/mydoc/mydoc_install_jekyll_on_mac.md
@@ -0,0 +1,157 @@
+---
+title: Install Jekyll on Mac
+tags: [getting_started, troubleshooting]
+keywords:
+summary: "Installation of Jekyll on Mac is usually less problematic than on Windows. However, you may run into permissions issues with Ruby that you must overcome. You should also use Bundler to be sure that you have all the required gems and other utilities on your computer to make the project run. "
+sidebar: mydoc_sidebar
+permalink: mydoc_install_jekyll_on_mac.html
+folder: mydoc
+---
+
+## Ruby and RubyGems
+
+Ruby and [RubyGems](https://rubygems.org/pages/download) are usually installed by default on Macs. Open your Terminal and type `which ruby` and  `which gem` to confirm that you have Ruby and Rubygems. You should get a response indicating the location of Ruby and Rubygems.
+
+If you get responses that look like this:
+
+```
+/usr/local/bin/ruby
+```
+
+and
+
+```
+/usr/local/bin/gem
+```
+
+Great! Skip down to the [Bundler](#bundler) section.
+
+However, if your location is something like `/Users/MacBookPro/.rvm/rubies/ruby-2.2.1/bin/gem`, which points to your system location of Rubygems, you will likely run into permissions errors when trying to get a gem. A sample permissions error (triggered when you try to install the jekyll gem such as `gem install jekyll`) might look like this for Rubygems:
+
+```
+ >ERROR:  While executing gem ... (Gem::FilePermissionError)
+  You don't have write permissions for the /Library/Ruby/Gems/2.0.0 directory.
+```  
+
+Instead of changing the write permissions on your operating system's version of Ruby and Rubygems (which could pose security issues), you can install another instance of Ruby (one that is writable) to get around this.
+
+## Install Homebrew
+
+Homebrew is a package manager for the Mac, and you can use it to install an alternative instance of Ruby code. To install Homebrew, run this command:
+
+```
+/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
+```
+
+If you already had Homebrew installed on your computer, be sure to update it:
+
+```
+brew update
+```
+
+## Install Ruby through Homebrew
+
+Now use Homebrew to install Ruby:
+
+```
+brew install ruby
+```
+
+Log out of terminal, and then then log back in.
+
+When you type `which ruby` and `which gem`, you should get responses like this:
+
+```
+/usr/local/bin/ruby
+```
+
+And this:
+
+```
+/usr/local/bin/gem
+```
+
+Now Ruby and Rubygems are installed under your username, so these directories are writeable.
+
+Note that if you don't see these paths, try restarting your computer or try installing rbenv, which is a Ruby version management tool. If you still have issues getting a writeable version of Ruby, you need to resolve them before installing Bundler.
+
+<h2 id="bundler">Install the Jekyll gem</h2>
+
+At this point you should have a writeable version of Ruby and Rubygem on your machine.
+
+Now use `gem` to install Jekyll:
+
+```
+gem install jekyll
+```
+
+You can now use Jekyll to create new Jekyll sites following the quick-start instructions on [Jekyllrb.com](http://jekyllrb.com).
+
+## Installing dependencies through Bundler
+
+Some Jekyll themes will require certain Ruby gem dependencies. These dependencies are stored in something called a Gemfile, which is packaged with the Jekyll theme. You can install these dependencies through Bundler. (Although you don't need to install Bundler for this Documentation theme, it's a good idea to do so.)
+
+[Bundler](http://bundler.io/) is a package manager for RubyGems. You can use it to get all the gems (or Ruby plugins) that you need for your Jekyll project.
+
+You install Bundler by using the gem command with RubyGems:
+
+```
+gem install bundler
+```
+
+If you're prompted to switch to superuser mode (`sudo`) to get the correct permissions to install Bundler in that directory, avoid doing this. All other applications that need to use Bundler will likely not have the needed permissions to run.
+
+Bundler goes out and retreives all the gems that are specified in a Jekyll project's Gemfile. If you have a gem that depends on other gems to work, Bundler will go out and retrieve all of the dependencies as well. (To learn more about Bundler, see [About Ruby Gems][mydoc_about_ruby_gems_etc].
+
+The vanilla Jekyll site you create through `jekyll new my-awesome-site` doesn't have a Gemfile, but many other themes (including the Documentation theme for Jekyll) do have a Gemfile.
+
+## Serve the Jekyll Documentation theme
+
+1. Browse to the directory where you downloaded the Documentation theme for Jekyll.
+2. Type `jekyll serve`
+3. Go to the preview address in the browser. (Make sure you include the `/` at the end.)
+
+## Resolve "No Github API authentication" errors {#githuberror}
+
+After making an edit, Jekyll auto-rebuilds the site. If you have the Gemfile in the theme with the github-pages gem, you may see the following error:
+
+```
+GitHub Metadata: No GitHub API authentication could be found. Some fields may be missing or have incorrect data.
+```
+
+If you see this error, you will need to take some additional steps to resolve it. (Note that this error only appears if you have the github-pages gem in your gemfile.) The resolution involves adding a Github token and a cert file.
+
+{% include note.html content="These instructions apply to Mac OS X, but they're highly similar to Windows. These instructions are adapted from a post on [Knight Codes](http://knightcodes.com/miscellaneous/2016/09/13/fix-github-metadata-error.html). If you're on Windows, see the Knight Codes post for details instead of following along below." %}
+
+To resolve the "No Github API authentication" error:
+
+1.  Follow Github's instructions to [create a personal access token](https://help.github.com/articles/creating-an-access-token-for-command-line-use/).
+2.  Open the **.bash_profile** file in your user directory:
+
+    ```
+    open ~/.bash_profile
+    ```
+
+    The file will open in your default terminal editor. If you don't have a .bash_profile file, you can just create a file with this name. Note that files that begin with `.` are hidden, so if you're looking in your user directory for the file, use `ls -a` to see hidden files.
+
+3.  In your **.bash_profile** file, reference your token as a system variable like this:
+
+    ```
+    export JEKYLL_GITHUB_TOKEN=abc123abc123abc123abc123abc123abc123abc123abc123
+    ```
+
+    Replace `abc123...` with your own token that you generated in step 1.
+
+4.  Go to **[https://curl.haxx.se/ca/cacert.pem][https://curl.haxx.se/ca/cacert.pem]. Right-click the page, select **Save as**, and save the file on your computer (save it somewhere safe, where you won't delete it). Name the file **cacert**.
+5.  Open your **.bash_profile** file again and add this line, replacing `Users/johndoe/projects/` with the path to your cacert.pem file:
+
+    ```
+    export SSL_CERT_FILE=/Users/johndoe/projects/cacert.pem
+    ```
+
+6.  Close and restart your terminal.
+
+Browse to your jekyll project and run `bundle exec jekyll serve`. Make an edit to a file and observe that no Github API errors appear when Jekyll rebuilds the project.
+
+{% include links.html %}
+
diff --git a/pages/mydoc/mydoc_install_jekyll_on_windows.md b/pages/mydoc/mydoc_install_jekyll_on_windows.md
new file mode 100644
index 0000000000000000000000000000000000000000..8beef1ebe41e661945dba761617a2fc58ea9169e
--- /dev/null
+++ b/pages/mydoc/mydoc_install_jekyll_on_windows.md
@@ -0,0 +1,107 @@
+---
+title: Install Jekyll on Windows
+permalink: mydoc_install_jekyll_on_windows.html
+keywords: jekyll on windows, pc, ruby, ruby dev kit
+sidebar: mydoc_sidebar
+folder: mydoc
+---
+
+{% include tip.html content="For a better terminal emulator on Windows, use [Git Bash](https://git-for-windows.github.io/). Git Bash gives you Linux-like control on Windows." %}
+
+## Install Ruby
+
+First you must install Ruby because Jekyll is a Ruby-based program and needs Ruby to run.
+
+1. Go to [RubyInstaller for Windows](http://rubyinstaller.org/downloads/).
+2. Under **RubyInstallers**, download and install one of the Ruby installers (usually one of the first two options).
+3. Double-click the downloaded file and proceed through the wizard to install it.
+
+## Install Ruby Development Kit
+
+Some extensions Jekyll uses require you to natively build the code using the Ruby Development Kit.
+
+1. Go to [RubyInstaller for Windows](http://rubyinstaller.org/downloads/).
+2. Under the **Development Kit** section near the bottom, download one of the **For use with Ruby 2.0 and above...** options (either the 32-bit or 64-bit version).
+3. Move your downloaded file onto your **C** drive in a folder called something like **RubyDevKit**.
+4. Extract the compressed folder's contents into the folder.
+5. Browse to the **RubyDevKit** location on your C drive using your Command Line Prompt.
+
+   To see the contents of your current directory, type <code>dir</code>. To move into a directory, type <code>cd foldername</code>, where "foldername" is the name of the folder you want to enter. To move up a directory, type <code>cd ../</code> one or more times depending on how many levels you want to move up. To move into your user's directory, type <code>/users</code>. The <code>/</code> at the beginning of the path automatically starts you at the root.
+
+6. Type `ruby dk.rb init`
+7. Type `ruby dk.rb install`
+
+If you get stuck, see the [official instructions for installing Ruby Dev Kit](https://github.com/oneclick/rubyinstaller/wiki/Development-Kit).
+
+<h2 id="bundler">Install the Jekyll gem</h2>
+
+At this point you should have Ruby and Rubygem on your machine.
+
+Now use `gem` to install Jekyll:
+
+```
+gem install jekyll
+```
+
+You can now use Jekyll to create new Jekyll sites following the quick-start instructions on [Jekyllrb.com](http://jekyllrb.com).
+
+## Installing dependencies through Bundler
+
+Some Jekyll themes will require certain Ruby gem dependencies. These dependencies are stored in something called a Gemfile, which is packaged with the Jekyll theme. You can install these dependencies through Bundler. (Although you don't need to install Bundler for this Documentation theme, it's a good idea to do so.)
+
+[Bundler](http://bundler.io/) is a package manager for RubyGems. You can use it to get all the gems (or Ruby plugins) that you need for your Jekyll project.
+
+You install Bundler by using the gem command with RubyGems:
+
+
+## Install Bundler
+
+1. Install Bundler: `gem install bundler`
+2. Initialize Bundler: `bundle init`
+
+   This will create a new Gemfile.
+
+3. Open the Gemfile in a text editor.
+
+   Typically you can open files from the Command Prompt by just typing the filename, but because Gemfile doesn't have a file extension, no program will automatically open it. You may need to use your File Explorer and browse to the directory, and then open the Gemfile in a text editor such as Notepad.
+
+4. Remove the existing contents. Then paste in the following:
+
+   ```
+   source "https://rubygems.org"
+
+   gem 'wdm'
+   gem 'jekyll'
+   ```
+   The [wdm gem](https://rubygems.org/gems/wdm/versions/0.1.1) allows for the polling of the directory and rebuilding of the Jekyll site when you make changes. This gem is needed for Windows users, not Mac users.
+
+6. Save and close the file.
+7. Type `bundle install`.
+
+   Bundle retrieves all the needed gems and gem dependencies and downloads them to your computer. At this time, Bundle also takes a snapshot of all the gems used in your project and creates a Gemfile.lock file to store this information.
+
+## Git Clients for Windows
+
+Although you can use the default command prompt with Windows, it's recommended that you use [Git Bash](https://git-for-windows.github.io/) instead. The Git Bash client will allow you to run shell scripts and execute other Unix commands. 
+
+## Serve the Jekyll Documentation theme
+
+1. Browse to the directory where you downloaded the Documentation theme for Jekyll.
+2. Type `jekyll serve`
+3. Go to the preview address in the browser. (Make sure you include the `/` at the end.)
+
+   Unfortunately, the Command Prompt doesn't allow you to easily copy and paste the URL, so you'll have to type it manually.
+
+## Resolving Github Metadata errors {#githuberror}
+
+After making an edit, Jekyll auto-rebuilds the site. If you have the Gemfile in the theme with the github-pages gem, you may see the following error:
+
+```
+GitHub Metadata: No GitHub API authentication could be found. Some fields may be missing or have incorrect data.
+```
+
+If so, you will need to take some additional steps to resolve it. (Note that this error only appears if you have the github-pages gem in your gemfile.) The resolution involves adding a Github token and a cert file.
+
+See this post on [Knight Codes](http://knightcodes.com/miscellaneous/2016/09/13/fix-github-metadata-error.html) for instructions on how to fix the error. You basically generate a personal token on Github and set it as a system variable. You also download a certification file and set it as a system variable. This resolves the issue.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_installing_bundler.md b/pages/mydoc/mydoc_installing_bundler.md
new file mode 100644
index 0000000000000000000000000000000000000000..d3818ac89065f5e8c6081c4b7f8f9a7841388373
--- /dev/null
+++ b/pages/mydoc/mydoc_installing_bundler.md
@@ -0,0 +1,43 @@
+---
+title: Installing Bundler
+published: false
+sidebar: mydoc_sidebar
+permalink: mydoc_installing_bundler.html
+folder: mydoc
+---
+
+If you get permissions errors when trying to install Bundler, follow these steps:
+
+if you get a permissions error when trying to install bundler, then do this:
+Install Brew:
+/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
+Install rbenv, a Ruby Version Mgmt Tool:
+brew install rbenv
+
+Initialize rbenv:
+rbenv init
+
+Log out of terminal or iTerm, and then back in
+Install bundler:
+gem install bundler
+Now you can use Bundler to get any project dependencies you need. Usually you would add a gemfile to your project and then use Bundler to install the gems and all the dependencies you need.
+Create a gemfile:
+bundle init
+
+Open the gemfile:
+open gemfile
+
+Paste in the gems you want bundler to get for you:
+source 'https://rubygems.org'
+gem 'github-pages'
+gem 'pygments.rb'
+gem 'redcarpet'
+gem 'jekyll'
+
+Run Bundler:
+bundle install
+Execute Bundler against your project:
+bundle exec jekyll serve
+(Instead of jekyll serve, run one of the other build commands.)
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_introduction.md b/pages/mydoc/mydoc_introduction.md
new file mode 100644
index 0000000000000000000000000000000000000000..a94409530fc8beb15803ff88abb577566755222c
--- /dev/null
+++ b/pages/mydoc/mydoc_introduction.md
@@ -0,0 +1,30 @@
+---
+title: Introduction
+sidebar: mydoc_sidebar
+permalink: mydoc_introduction.html
+folder: mydoc
+---
+
+## Overview
+
+This site provides documentation, training, and other notes for the Jekyll Documentation theme. There's a lot of information about how to do a variety of things here, and it's not all unique to this theme. But by and large, understanding how to do things in Jekyll depends on how your theme is coded. As a result, these additional details are provided.
+
+The instructions here are geared towards technical writers working on documentation. You may have a team of one or more technical writers working on documentation for multiple projects. You can use this same theme to author all of your documentation for each of your products. The theme is built to accommodate documentation for multiple products on the same site.
+
+## Survey of features
+
+Some of the more prominent features of this theme include the following:
+
+* Bootstrap framework
+* [Navgoco multi-level sidebar](http://www.komposta.net/article/navgoco) for table of contents
+* Ability to specify different sidebars for different products
+* Top navigation bar with drop-down menus
+* Notes, tips, and warning information notes
+* Tags for alternative navigation
+* Advanced landing page layouts from the [Modern Business theme](http://startbootstrap.com/template-overviews/modern-business/).
+
+## Getting started
+
+To get started, see [Getting Started][index].
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_iterm_profiles.md b/pages/mydoc/mydoc_iterm_profiles.md
new file mode 100644
index 0000000000000000000000000000000000000000..5116d30e0ba06d46dff9e6fa1618bf2a734647c9
--- /dev/null
+++ b/pages/mydoc/mydoc_iterm_profiles.md
@@ -0,0 +1,43 @@
+---
+title: iTerm profiles
+tags: [publishing]
+keywords: iterm, terminal, build shortcuts, mac
+last_updated: July 3, 2016
+summary: "You can set up profiles in iTerm to facilitate the build process with just a few clicks. This can make it a lot easier to quickly build multiple outputs."
+sidebar: mydoc_sidebar
+permalink: mydoc_iterm_profiles.html
+folder: mydoc
+---
+
+## About iTerm profiles
+
+When you're working with tech docs, a lot of times you have builds that push files onto different servers, or that build the content for different environments. It can be a hassle to type out these commands each time. Instead, it's easier to configure iTerm with profiles that initiate the scripts.
+
+## Set up profiles
+
+1. Open iTerm and go to **Profiles > Open Profiles.**
+2. Click **Edit Profiles**.
+3. Click the + button in the lower-left corner to create a new profile.
+4. In the **Name** field, type a name describing the output, such as `Doc theme -- designers`.
+5. In the **Send text at start** field, type the command for the build script, such as this:
+
+   ```
+   JEKYLL_ENV=production jekyll serve
+   ```
+    Leave the Login shell option selected.
+
+6. In the Working Directory section, select **Directory** and enter the directory for your project, such as **/Users/tjohnson/projects/documentation-theme-jekyll**.
+7. Close the profiles panel.
+
+Here's an example:
+
+{% include image.html file="itermexample.png" caption="iTerm profile example" %}
+
+## Launching a profile
+
+1. In iTerm, make sure the Toolbar is shown. Go to **View > Toggle Toolbar**.
+2. Click the **New** button and select your profile.
+
+{% include tip.html content="When you're done with the session, make sure to click <b>Ctrl+C</b>." %}
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_kb_layout.md b/pages/mydoc/mydoc_kb_layout.md
new file mode 100644
index 0000000000000000000000000000000000000000..38a2c4fe0bf7351fbe75eaf0a266e4a6f12f035c
--- /dev/null
+++ b/pages/mydoc/mydoc_kb_layout.md
@@ -0,0 +1,115 @@
+---
+title: Knowledge-base layout
+tags: [special_layouts]
+keywords: knowledge base, support portal, grid, doc portal
+last_updated: July 3, 2016
+summary: "This shows a sample layout for a knowledge base. Each square could link to a tag archive page. In this example, font icons from Font Awesome are used for the graphics, and the layout is pulled from the Modern Business theme. ."
+sidebar: mydoc_sidebar
+permalink: mydoc_kb_layout.html
+toc: false
+folder: mydoc
+---
+
+Here's the sample knowledge-base style layout:
+
+<div class="row">
+         <div class="col-lg-12">
+             <h2 class="page-header">Knowledge Base Categories</h2>
+         </div>
+         <div class="col-md-3 col-sm-6">
+             <div class="panel panel-default text-center">
+                 <div class="panel-heading">
+                     <span class="fa-stack fa-5x">
+                           <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                           <i class="fa fa-tree fa-stack-1x fa-inverse"></i>
+                     </span>
+                 </div>
+                 <div class="panel-body">
+                     <h4>Getting started</h4>
+                     <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
+                     <a href="tag_getting_started.html" class="btn btn-primary">Learn More</a>
+                 </div>
+             </div>
+         </div>
+         <div class="col-md-3 col-sm-6">
+             <div class="panel panel-default text-center">
+                 <div class="panel-heading">
+                     <span class="fa-stack fa-5x">
+                           <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                           <i class="fa fa-car fa-stack-1x fa-inverse"></i>
+                     </span>
+                 </div>
+                 <div class="panel-body">
+                     <h4>Navigation</h4>
+                     <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
+                     <a href="tag_navigation.html" class="btn btn-primary">Learn More</a>
+                 </div>
+             </div>
+         </div>
+         <div class="col-md-3 col-sm-6">
+             <div class="panel panel-default text-center">
+                 <div class="panel-heading">
+                     <span class="fa-stack fa-5x">
+                           <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                           <i class="fa fa-support fa-stack-1x fa-inverse"></i>
+                     </span>
+                 </div>
+                 <div class="panel-body">
+                     <h4>Single sourcing</h4>
+                     <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
+                     <a href="tag_single_sourcing.html" class="btn btn-primary">Learn More</a>
+                 </div>
+             </div>
+         </div>
+         <div class="col-md-3 col-sm-6">
+             <div class="panel panel-default text-center">
+                 <div class="panel-heading">
+                     <span class="fa-stack fa-5x">
+                           <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                           <i class="fa fa-database fa-stack-1x fa-inverse"></i>
+                     </span>
+                 </div>
+                 <div class="panel-body">
+                     <h4>Formatting</h4>
+                     <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
+                     <a href="tag_formatting.html" class="btn btn-primary">Learn More</a>
+                 </div>
+             </div>
+         </div>
+</div>
+
+
+## Generating a list of all pages with a certain tag
+
+If you don't want to link to a tag archive index, but instead want to list all pages that have a certain tag, you could use this code:
+
+```html
+{% raw %}Getting started pages:
+<ul>
+{% assign sorted_pages = site.pages | sort: 'title' %}
+{% for page in sorted_pages %}
+{% for tag in page.tags %}
+{% if tag == "getting_started" %}
+<li><a href="{{ page.url | remove: "/" }}">{{page.title}}</a></li>
+{% endif %}
+{% endfor %}
+{% endfor %}
+</ul>{% endraw %}
+```
+
+Here's the result:
+
+Getting started pages:
+
+<ul>
+{% assign sorted_pages = site.pages | sort: 'title' %}
+{% for page in sorted_pages %}
+{% for tag in page.tags %}
+{% if tag == "getting_started" %}
+<li><a href="{{ page.url | remove: "/"}}">{{page.title}}</a></li>
+{% endif %}
+{% endfor %}
+{% endfor %}
+</ul>
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_labels.md b/pages/mydoc/mydoc_labels.md
new file mode 100644
index 0000000000000000000000000000000000000000..20fd68f50f4e84322d2174ebfa0a8989f1eaea10
--- /dev/null
+++ b/pages/mydoc/mydoc_labels.md
@@ -0,0 +1,33 @@
+---
+title: Labels
+tags: [formatting]
+keywords: labels, buttons, bootstrap, api methods
+last_updated: July 3, 2016
+summary: "Labels are just a simple Bootstrap component that you can include in your pages as needed. They represent one of many Bootstrap options you can include in your theme."
+sidebar: mydoc_sidebar
+permalink: mydoc_labels.html
+folder: mydoc
+---
+
+## About labels
+Labels might come in handy for adding button-like tags next to elements, such as POST, DELETE, UPDATE methods for endpoints. You can use any classes from Bootstrap in your content.
+
+```html
+<span class="label label-default">Default</span>
+<span class="label label-primary">Primary</span>
+<span class="label label-success">Success</span>
+<span class="label label-info">Info</span>
+<span class="label label-warning">Warning</span>
+<span class="label label-danger">Danger</span>
+```
+
+<span class="label label-default">Default</span>
+<span class="label label-primary">Primary</span>
+<span class="label label-success">Success</span>
+<span class="label label-info">Info</span>
+<span class="label label-warning">Warning</span>
+<span class="label label-danger">Danger</span>
+
+You can have a label appear within a heading simply by including the span tag in the heading. However, you can't mix Markdown syntax with HTML, so you'd have to hard-code the heading ID for the auto-TOC to work.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_lists.md b/pages/mydoc/mydoc_lists.md
new file mode 100644
index 0000000000000000000000000000000000000000..0e3181c629d29ed5ca2d0671939b1f2289e8f8ba
--- /dev/null
+++ b/pages/mydoc/mydoc_lists.md
@@ -0,0 +1,133 @@
+---
+title: Lists
+keywords: bulleted lists, numbered lists
+tags: [formatting]
+summary: "This page shows how to create both bulleted and numbered lists"
+sidebar: mydoc_sidebar
+permalink: mydoc_lists.html
+---
+
+## Bulleted Lists
+
+This is a bulleted list:
+
+```
+*  first item
+*  second item
+*  third item
+```
+
+**Result:**
+
+*  first item
+*  second item
+*  third item
+
+
+## Numbered list
+
+This is a simple numbered list:
+
+```
+1.  First item.
+1.  Second item.
+1.  Third item.
+```
+
+**Result:**
+
+1.  First item.
+1.  Second item.
+1.  Third item.
+
+You can use whatever numbers you want &mdash; when the Markdown filter processes the content, it will assign the correct numbers to the list items.
+
+## Complex Lists
+
+Here's a more complex list:
+
+```
+1.  Sample first item.
+
+    * sub-bullet one
+    * sub-bullet two
+
+2.  Continuing the list
+
+    1. sub-list numbered one
+    2. sub-list numbered two
+
+3.  Another list item.
+```
+
+**Result:**
+
+1.  Sample first item.
+
+    * sub-bullet one
+    * sub-bullet two
+
+2.  Continuing the list
+
+    1. sub-list numbered one
+    2. sub-list numbered two
+
+3.  Another list item.
+
+## Another Complex List
+
+Here's a list with some intercepting text:
+
+```
+1.  Sample first item.
+
+    This is a result statement that talks about something....
+
+2.  Continuing the list
+
+    {% include note.html content="Remember to do this. If you have \"quotes\", you must escape them." %}
+
+    Here's a list in here:
+
+    * first item
+    * second item
+
+3.  Another list item.
+
+    ```js
+    function alert("hello");
+    ```
+
+4.  Another item.
+```
+
+**Result:**
+
+1.  Sample first item.
+
+    This is a result statement that talks about something....
+
+2.  Continuing the list
+
+    {% include note.html content="Remember to do this. If you have \"quotes\", you must escape them." %}
+
+    Here's a list in here:
+
+    * first item
+    * second item
+
+3.  Another list item.
+
+    ```js
+    function alert("hello");
+    ```
+
+4.  Another item.
+
+### Key Principle to Remember with Lists
+
+The key principle is to line up the first character after the dot following the number:
+
+{% include image.html file="liningup.png" caption="Lining up the left edge ensures the list stays in tact." %}
+
+For the sake of simplicity, use two spaces after the dot for numbers 1 through 9. Use one space for numbers 10 and up. If any part of your list doesn't align symmetrically on this left edge, the list will not render correctly. Also note that this is characteristic of kramdown-flavored Markdown and may not yield the same results in other Markdown flavors.
diff --git a/pages/mydoc/mydoc_navtabs.md b/pages/mydoc/mydoc_navtabs.md
new file mode 100644
index 0000000000000000000000000000000000000000..d3fbe8351c3fd13a087b04bdfb0aadb310b43ff6
--- /dev/null
+++ b/pages/mydoc/mydoc_navtabs.md
@@ -0,0 +1,114 @@
+---
+title:  Navtabs
+tags: [formatting]
+keywords: navigation tabs, hide sections, tabbers, interface tabs
+last_updated: July 3, 2016
+summary: "Navtabs provide a tab-based navagation directly in your content, allowing users to click from tab to tab to see different panels of content. Navtabs are especially helpful for showing code samples for different programming languages. The only downside to using navtabs is that you must use HTML instead of Markdown."
+sidebar: mydoc_sidebar
+permalink: mydoc_navtabs.html
+folder: mydoc
+---
+
+
+## Common uses
+
+Navtabs are particularly useful for scenarios where you want to show a variety of options, such as code samples for Java, .NET, or PHP, on the same page.
+
+While you could resort to single-source publishing to provide different outputs for each unique programming language or role, you could also use navtabs to allow users to select the content you want.
+
+Navtabs are better for SEO since you avoid duplicate content and drive users to the same page.
+
+## Navtabs demo
+
+The following is a demo of a navtab. Refresh your page to see the tab you selected remain active.
+
+<ul id="profileTabs" class="nav nav-tabs">
+    <li class="active"><a class="noCrossRef" href="#profile" data-toggle="tab">Profile</a></li>
+    <li><a class="noCrossRef" href="#about" data-toggle="tab">About</a></li>
+    <li><a class="noCrossRef" href="#match" data-toggle="tab">Match</a></li>
+</ul>
+  <div class="tab-content">
+<div role="tabpanel" class="tab-pane active" id="profile" markdown="1">
+## Profile
+
+Praesent sit amet fermentum leo. Aliquam feugiat, 
+
+1.  nibh in u ltrices mattis
+2.  felis ipsum venenatis metus, vel vehicula libero mauris a enim. Sed placerat est ac lectus vestibulum tempor. 
+    * Quisque ut condimentum massa. 
+    * ut condimentum massa. 
+
+> Proin venenatis leo id urna cursus blandit. Vivamus sit amet hendrerit metus.
+</div>
+
+<div role="tabpanel" class="tab-pane" id="about">
+    <h2>About</h2>
+    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vel sollicitudin felis. Sed eu arcu sed ipsum semper luctus eu a tortor. Suspendisse id leo eu metus laoreet varius. Mauris consequat accumsan ex, a iaculis metus fermentum a. Praesent sit amet fermentum leo. Aliquam feugiat, nibh in u ltrices mattis, felis ipsum venenatis metus, vel vehicula libero mauris a enim. Sed placerat est ac lectus vestibulum tempor. Quisque ut condimentum massa. Proin venenatis leo id urna cursus blandit. Vivamus sit amet hendrerit metus.about</p></div>
+
+<div role="tabpanel" class="tab-pane" id="match">
+    <h2>Match</h2>
+    <p>Vel vehicula libero mauris a enim. Sed placerat est ac lectus vestibulum tempor. Quisque ut condimentum massa. Proin venenatis leo id urna cursus blandit. Vivamus sit amet hendrerit metus.</p>
+</div>
+</div>
+
+## Code
+
+Here's the code for the above (with the filler text abbreviated):
+
+```html
+<ul id="profileTabs" class="nav nav-tabs">
+    <li class="active"><a href="#profile" data-toggle="tab">Profile</a></li>
+    <li><a href="#about" data-toggle="tab">About</a></li>
+    <li><a href="#match" data-toggle="tab">Match</a></li>
+</ul>
+  <div class="tab-content">
+<div role="tabpanel" class="tab-pane active" id="profile">
+    <h2>Profile</h2>
+<p>Praesent sit amet fermentum leo....</p>
+</div>
+
+<div role="tabpanel" class="tab-pane" id="about">
+    <h2>About</h2>
+    <p>Lorem ipsum ...</p></div>
+
+<div role="tabpanel" class="tab-pane" id="match">
+    <h2>Match</h2>
+    <p>Vel vehicula ....</p>
+</div>
+</div>
+```
+
+## Design constraints
+
+Bootstrap automatically clears any floats after the navtab. Make sure you aren't trying to float any element to the right of your navtabs, or there will be some awkward space in your layout.
+
+## Appearance in the mini-TOC
+
+If you put a heading in the navtab content, that heading will appear in the mini-TOC as long as the heading tag has an ID. If you don't want the headings for each navtab section to appear in the mini-TOC, omit the ID attribute from the heading tag. Without this ID attribute in the heading, the mini-TOC won't insert the heading title into the mini-TOC.
+
+## Must use HTML
+
+You must use HTML within the navtab content because each navtab section is surrounded with HTML, and you can't use Markdown inside of HTML.
+
+## Match up ID tags
+
+Each tab's `href` attribute must match the `id` attribute of the tab content's `div` section. So if your tab has `href="#acme"`, then you add `acme` as the ID attribute in `<div role="tabpanel" class="tab-pane" id="acme">`.
+
+## Set an active tab
+One of the tabs needs to be set as active, depending on what tab you want to be open by default (usually the first one).
+
+```html
+<div role="tabpanel" class="tab-pane active" id="acme">
+```
+
+## Sets a cookie
+
+The navtabs are part of Bootstrap, but this theme sets a cookie to remember the last tab's state. The js/customscripts.js file has a long chunk of JavaScript that sets the cookie. The JavaScript comes from [this StackOverflow thread](http://stackoverflow.com/questions/10523433/how-do-i-keep-the-current-tab-active-with-twitter-bootstrap-after-a-page-reload).
+
+By setting a cookie, if the user refreshes the page, the active tab is the tab the user last selected (rather than defaulting to the default active tab).
+
+## Functionality to implement
+
+One piece of functionality I'd like to implement is the ability to set site-wide nav tab options. For example, if the user always chooses PHP instead of Java in the code samples, it would be great to set this option site-wide by default. However, this functionality isn't yet coded.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_pages.md b/pages/mydoc/mydoc_pages.md
new file mode 100644
index 0000000000000000000000000000000000000000..138d83df3bb229524b2ac24541c0f39f7ec1ff15
--- /dev/null
+++ b/pages/mydoc/mydoc_pages.md
@@ -0,0 +1,183 @@
+---
+title: Pages
+tags: [getting_started, formatting, content_types]
+keywords: pages, authoring, exclusion, frontmatter
+last_updated: July 16, 2016
+summary: "This theme primarily uses pages. You need to make sure your pages have the appropriate frontmatter. One frontmatter tag your users might find helpful is the summary tag. This functions similar in purpose to the shortdesc element in DITA."
+sidebar: mydoc_sidebar
+permalink: mydoc_pages.html
+folder: mydoc
+---
+
+## Where to author content
+Use a text editor such as Sublime Text, WebStorm, IntelliJ, or Atom to create pages. Atom is recommended because it's created by Github, which is driving some of the Jekyll development through Github Pages.
+
+## Where to save pages
+
+You can store your pages in any folder structures you want, with any level of folder nesting. The site output will pull all of those pages out of their folders and put them into the root directory. Check out the \_site folder, which is where Jekyll is generated, to see the difference between your project's structure and the resulting site output.
+
+The listing of all pages in the root directory (which happens when you add a permalink property to the pages) is what allows the relative linking and offline viewing of the site to work.
+
+## Frontmatter
+
+Make sure each page has frontmatter at the top like this:
+
+
+```yaml
+---
+title: Alerts
+tags: [formatting]
+keywords: notes, tips, cautions, warnings, admonitions
+last_updated: July 3, 2016
+summary: "You can insert notes, tips, warnings, and important alerts in your content."
+sidebar: mydoc_sidebar
+permalink: mydoc_alerts.html
+---
+```
+
+Frontmatter is always formatted with three hyphens at the top and bottom. Your frontmatter must have a `title` and `permalink` value. All the other values are optional.
+
+Note that you cannot use variables in frontmatter.
+
+The following table describes each of the frontmatter that you can use with this theme:
+
+| Frontmatter | Required? | Description |
+|-------------|-------------|-------------|
+| **title** | Required | The title for the page |
+| **tags** | Optional | Tags for the page. Make all tags single words, with underscores if needed (rather than spaces). Separate them with commas. Enclose the whole list within brackets. Also, note that tags must be added to \_data/tags_doc.yml to be allowed entrance into the page. This prevents tags from becoming somewhat random and unstructured. You must create a tag page for each one of your tags following the pattern shown in the tags folder. (Tag pages aren't automatically created.)  |
+| **keywords** | Optional | Synonyms and other keywords for the page. This information gets stuffed into the page's metadata to increase SEO. The user won't see the keywords, but if you search for one of the keywords, it will be picked up by the search engine.  |
+| **last_updated**  | Optional | The date the page was last updated. This information could helpful for readers trying to evaluate how current and authoritative information is. If included, the last_updated date appears in the footer of the page in small font.|
+| **sidebar** | Required | Refers to the sidebar data file for this page. Don't include the ".yml" file extension for the sidebar &mdash; just provide the file name. If no sidebar is specified, this value will inherit the `default` property set in your \_config.yml file for the page's frontmatter. |
+| **summary** | Optional | A 1-2 word sentence summarizing the content on the page. This gets formatted into the summary section in the page layout. Adding summaries is a key way to make your content more scannable by users (check out [Jakob Nielsen's site](http://www.nngroup.com/articles/corporate-blogs-front-page-structure/) for a great example of page summaries.) The only drawback with summaries is that you can't use variables in them. |
+| **permalink**| Required | The permalink *must* match the filename in order for automated links to work. Additionally, you must include the ".html" in the filename. Do not put forward slashes around the permalink (this makes Jekyll put the file inside a folder in the output). When Jekyll builds the site, it will put the page into the root directory rather than leaving it in a subdirectory or putting it inside a folder and naming the file index.html. Having all files flattened in the root directory is essential for relative linking to work and for all paths to JS and CSS files to be valid. |
+| **datatable** | Optional | 'true'. If you add `datatable: true` in the frontmatter, scripts for the [jQuery Datatables plugin](https://www.datatables.net/) get included on the page. You can see the scripts that conditionally appear by looking in the \_layouts/default.html page. |
+| **toc** | Optional | If you specify `toc: false` in the frontmatter, the page won't have the table of contents that appears below the title. The toc refers to the list of jump links below the page title, not the sidebar navigation. You probably want to hide the TOC on the homepage and product landing pages.|
+
+## Colons in page titles
+
+If you want to use a colon in your page title, you must enclose the title's value in quotation marks.
+
+## Page names and excluding files from outputs
+
+By default, everything in your project is included in the output. You can exclude all files that don't belong to that project by specifying the file name, the folder name, or by using wildcards in your configuration file:
+
+```yaml
+exclude:
+
+- filename.md
+- subfolder_name/
+- mydoc_*
+- gitignore
+```
+
+Wildcards will exclude every match after the `*`.
+
+## Saving pages as drafts
+
+If you add `published: false` in the frontmatter, your page won't be published. You can also move draft pages into the \_drafts folder to exclude them from the build. With posts, you can also keep them as drafts by omitting the date in the title.
+
+## Markdown or HTML format
+
+Pages can be either Markdown or HTML format (specified through either an .md or .html file extension).
+
+If you use Markdown, you can also include HTML formatting where needed. But if your format is HTML, you must add a `markdown="1"` attribute to the element in order to use Markdown inside that HTML element:
+
+```
+<div markdown="1">This is a [link](http://exmaple.com).</div>
+```
+
+For your Markdown files, note that a space or two indent will set text off as code or blocks, so avoid spacing indents unless intentional.
+
+If you have a lot of HTML, as long as the top and bottom tags of the HTML are flush left in a Markdown file, all the tags inside those bookend HTML tags will render as HTML, regardless of their indentation. (This can be especially useful for tables.)
+
+
+## Page names
+
+I recommend prefixing your page names with the product, such as "mydoc_pages" instead of just "pages." This way if you have other products that also have topics with generic names such as "pages," there won't be naming conflicts.
+
+Additionally, consider adding the product name in parentheses after the title, such as "Pages (Mydoc)" so that users can clearly navigate different topics for each product.
+
+## Kramdown Markdown
+
+Kramdown is the Markdown flavor used in the theme. This mostly aligns with Github-flavored Markdown, but with some differences in the indentation allowed within lists. Basically, Kramdown requires you to line up the indent between list items with the first starting character after the space in your list item numbering. See this [blog post on Kramdown and Rouge](http://idratherbewriting.com/2016/02/21/bug-with-kramdown-and-rouge-with-github-pages/) for more details.
+
+You can use standard Multimarkdown syntax for tables. You can also use fenced code blocks with lexers specifying the type of code. The configuration file shows the Markdown processor and extension:
+
+```yaml
+highlighter: rouge
+markdown: kramdown
+kramdown:
+ input: GFM
+ auto_ids: true
+ hard_wrap: false
+ syntax_highlighter: rouge
+```
+
+## Automatic mini-TOCs
+
+By default, a TOC appears at the top of your pages and posts. If you don't want the TOC to appear for a specific page, such as for a landing page or other homepage, add `toc: false` in the frontmatter of the page.
+
+The mini-TOC requires you to use the `##` Markdown syntax for headings. If you use `<h2>` elements, you must add an ID attribute for the heading element in order for it to appear in the mini-TOC (for example, `<h2 id="mysampleid">Heading</h2>`.
+
+## Headings
+
+Use pound signs before the heading title to designate the level. Note that kramdown requires headings to have one space before and after the heading. Without this space above and below, the heading won't render into HTML.
+
+```
+## Second-level heading
+```
+
+**Result:**
+
+## Second-level heading
+
+-----
+
+```
+### Third-level heading
+```
+**Result:**
+
+### Third-level heading
+
+------
+
+```
+#### Fourth-level heading
+```
+
+**Result:**
+
+#### Fourth-level heading
+
+## Headings with ID Tags {#someIdTag}
+
+If you want to use a specific ID tag with your heading, add it like this:
+
+```
+## Headings with ID Tags {#someIdTag}
+```
+
+Then you can reference it with a link like this on the same page:
+
+```
+[Some link](#someIdTag)
+```
+
+**Result:**
+
+[Some link](#someIdTag)
+
+For details about linking to headings on different pages, see [Automated links to headings on pages][mydoc_hyperlinks.html#bookmarklinks].
+
+## Specify a particular page layout
+
+The configuration file sets the default layout for pages as the "page" layout.
+
+You can create other layouts inside the layouts folder. If you create a new layout, you can specify that your page use your new layout by adding `layout: mylayout.html` in the page's frontmatter. Whatever layout you specify in the frontmatter of a page will override the layout default set in the configuration file.
+
+## Comments
+
+Disqus, a commenting system, is integrated into the theme. In the configuration file, specify the Disqus code for the universal code, and Disqus will appear. If you don't add a Disqus value, the Disqus form isn't included.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_posts.md b/pages/mydoc/mydoc_posts.md
new file mode 100644
index 0000000000000000000000000000000000000000..835e18c12cbb3b492b98ba471bf0b70ba4a5008d
--- /dev/null
+++ b/pages/mydoc/mydoc_posts.md
@@ -0,0 +1,47 @@
+---
+title: Posts
+tags: [getting_started, formatting, content_types]
+keywords: posts, blog, news, authoring, exclusion, frontmatter
+last_updated: Feb 25, 2016
+summary: "You can use posts when you want to create blogs or news type of content."
+sidebar: mydoc_sidebar
+permalink: mydoc_posts.html
+folder: mydoc
+---
+
+## About posts
+
+Posts are typically used for blogs or other news information because they contain a date and are sorted in reverse chronological order.
+
+You create a post by adding a file in the \_posts folder that is named yyyy-mm-dddd-permalink.md, which might be 2016-02-25-my-latest-updates.md. You can use any number of subfolders here that you want.
+
+Posts use the post.html layout in the \_layouts folder when you are viewing the post.
+
+The news.html file in the root directory shows a reverse chronological listing of the 10 latest posts
+
+## Allowed frontmatter
+
+The frontmatter you can use with posts is as follows:
+
+```yaml
+---
+title: My sample post
+tags: content_types
+keywords: pages, authoring, exclusion, frontmatter
+sidebar: mydoc_sidebar
+permalink: mydoc_pages.html
+summary: "This is some summary frontmatter for my sample post."
+---
+```
+
+| Frontmatter | Required? | Description |
+|-------------|-------------|-------------|
+| **title** | Required | The title for the page |
+| **tags** | Optional | Tags for the page. Make all tags single words, with underscores if needed. Separate them with commas. Enclose the whole list within brackets. Also, note that tags must be added to \_data/tags_doc.yml to be allowed entrance into the page. This prevents tags from becoming somewhat random and unstructured. You must create a tag page for each one of your tags following the sample pattern in the tabs folder. (Tag pages aren't automatically created.)  |
+| **keywords** | Optional | Synonyms and other keywords for the page. This information gets stuffed into the page's metadata to increase SEO. The user won't see the keywords, but if you search for one of the keywords, it will be picked up by the search engine.  |
+| **sidebar** | Required | Refers to the sidebar data file for this page. Don't include the ".yml" file extension for the sidebar &mdash; just provide the file name. If no sidebar is specified, this value will inherit the `default` property set in your \_config.yml file for the page's frontmatter. |
+| **permalink**| Required | This theme uses permalinks to facilitate the linking. You specify the permalink want for the page, and the \_site output will put the page into the root directory when you publish. Follow the same convention here as you do with page permalinks -- list the file name followed by the .html extension. |
+| **summary** | Optional | A 1-2 word sentence summarizing the content on the page. This gets formatted into the summary section in the page layout. Adding summaries is a key way to make your content more scannable by users (check out [Jakob Nielsen's site](http://www.nngroup.com/articles/corporate-blogs-front-page-structure/) for a great example of page summaries.) The only drawback with summaries is that you can't use variables in them. |
+
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_publishing_github_pages.md b/pages/mydoc/mydoc_publishing_github_pages.md
new file mode 100644
index 0000000000000000000000000000000000000000..119f9851bdffd743d7fa74ec165fa8b7c5336aab
--- /dev/null
+++ b/pages/mydoc/mydoc_publishing_github_pages.md
@@ -0,0 +1,74 @@
+---
+title: Publishing on Github Pages
+sidebar: mydoc_sidebar
+permalink: mydoc_publishing_github_pages.html
+summary: "You can publish your project on Github Pages, which is a free web hosting service provided by Github. All you need is to put your content into a Github repo branch called gh-pages and make this your default branch in your repo. With a Jekyll site, you just commit your entire project into the gh-pages branch and Github Pages will build the site for you."
+folder: mydoc
+---
+
+## Set up your Github repo
+
+1. Make sure you have Git installed. You can download and install [Git for Windows here](https://git-scm.com/download/win) and [Git for Mac here](https://git-scm.com/download/mac). If you're on a Mac, chances are you might already have git installed. You can check by opening up a terminal and typing `which git`.{{end}}
+1. Go to [Github.com](http://github.com) and sign up for an account.
+2. Click the **+** button in the upper-right corner and select **New repository**.
+3. Name the repository something like **mydoctheme**.
+4. Type a description..
+5. Select the **Initialize this repository with a README** check box.
+6. Add a license if desired.
+7. Leave the other options at the defaults and click **Create repository**.
+8. Click the **Settings** button.
+9. Go to your repository's home page, and click the branch drop-down menu.
+10. Create a new branch called **gh-pages**.  
+11. Click **Settings** and change the default branch to **gh-pages**.
+11. Go back to your repository's homepage. With the gh-pages branch selected, copy the **https clone url**:
+12. Open a terminal, browse to a convenient location for your project, and type `git clone https://github.com/tomjoht/myreponame.git`, replacing the `https://github.com/tomjoht/myreponame.git` with your repository's https clone URL that you copied.
+13. Move the jekyll theme files into this new folder that you just created in the previous step.
+14. Open the \_config.yml file and add the following:
+
+   ```
+   url: tomjoht.github.io
+   baseurl: /myreponame
+   ```
+
+   Change the url to your github account name, and the baseurl to your repo name.
+
+## Install Bundler
+
+Bundler is a package manager for Ruby that will install all dependencies you might need to build your site locally. I recommend installing Bundler through homebrew. (Sorry, these instructions apply to Mac only.)
+
+1. Install [homebrew](http://brew.sh/):
+
+   ```
+   /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
+   ```
+2. Install Bundler:
+
+   ```
+   gem install bundler
+   ```
+
+
+## Add the github pages gem
+
+1. In terminal, browse to your Jekyll project directory.
+2. Type `bundle init`. This creates a Gemfile and Gemfile.lock in your project.
+3. Type `open gemfile`. This opens the gemfile in your default text editor.
+4. Add the following in the gemfile (replacing the existing contents):
+
+   ```
+   source 'https://rubygems.org'
+   gem 'github-pages'
+   ```
+
+5. Run `bundle install`.
+14. Add the new jekyll files to git: `git add --all`.
+15. Commit the files: `git commit -m "committing my jekyll theme"`.
+16. Push the files up to your github repo: `git push`.
+
+Github Pages will now automatically build your site. Wait a minute or two, and then visit tomjoht.github.io/yourreponame, replacing this path with your github account and branch.
+
+## Customize your URL
+
+You can also customize your Github URL. More instructions on this later....
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_push_build_to_server.md b/pages/mydoc/mydoc_push_build_to_server.md
new file mode 100644
index 0000000000000000000000000000000000000000..0b563ad20514a04a99153d3b208ee10ba0eea16c
--- /dev/null
+++ b/pages/mydoc/mydoc_push_build_to_server.md
@@ -0,0 +1,35 @@
+---
+title: Pushing builds to server
+tags: [publishing]
+keywords: AWS, Amazon, command line, pushing build
+last_updated: July 3, 2016
+summary: "You can push your build to AWS using commands from the command line. By including your copy commands in commands, you can package all of the build and deploy process into executable scripts."
+sidebar: mydoc_sidebar
+permalink: mydoc_push_build_to_server.html
+folder: mydoc
+---
+
+
+## Pushing to AWS S3
+
+If you have the AWS Command Line Interface installed and are pushing your builds to AWS, the following commands show how you can build and push to an AWS location from the command line:
+
+```
+aws s3 cp ~/users/tjohnson/projects/mydocproject/ s3://[aws path]docpath/mydocproject --recursive
+
+aws s3 cp ~/users/tjohnson/projects/anotherdocproject2/ s3://[aws path]docpath/anotherdocproject --recursive
+```
+
+The first path in the argument is the local location; the second path is the destination.
+
+## Pushing to a regular server
+
+If you're pushing to a regular server that you can ssh into, you can use `scp` commands to push your build. Here's an example:
+
+```
+scp -r /users/tjohnson/projects/mydocproject/ name@domain:/var/www/html/mydocproject
+```
+
+Similar to the above, the first path is the local location; the second path is the destination.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_release_notes_50.md b/pages/mydoc/mydoc_release_notes_50.md
new file mode 100644
index 0000000000000000000000000000000000000000..0d8b856c54229ba1dc49cb639976e2cf6da48849
--- /dev/null
+++ b/pages/mydoc/mydoc_release_notes_50.md
@@ -0,0 +1,48 @@
+---
+title: Release notes 5.0
+tags: [getting_started]
+keywords: release notes, announcements, what's new, new features
+last_updated: July 3, 2016
+summary: "Version 5.0 of the Documentation theme for Jekyll changes some fundamental ways the theme works to provide product-specific sidebars, intended to accommodate a site where multiple products are grouped together on the same site rather than generated out as separate outputs."
+sidebar: mydoc_sidebar
+permalink: mydoc_release_notes_50.html
+folder: mydoc
+---
+
+## Unique sidebars for each product
+
+In previous versions of the theme, I built the theme to generate different outputs for different scenarios based on various filtering attributes that might include product, version, platform, and audience variants.
+
+However, this model results in siloed outputs and lots of separate file directories to manage. Instead of having 30 separate sites for your content (or however many variants you might have been producing), in this version of the theme I've moved towards a strategy of having one site with multiple products.
+
+For each product, you can associate a unique sidebar with each of the product's pages. This allows you to have all your documentation on one site, but with separate navigation that is tailored to a view of that product.
+
+You can still output to both web and PDF. And if you really need multiple site outputs, you can still do so by using multiple configuration files that trigger different builds. But my conclusion after using the multiple site output model for some years is that it's a bad practice for tech comm.
+
+## Permalinks
+
+With this theme, since you'll be publishing to one site, I've implement permalinks instead of relative links. Using permalinks means the way you store pages is much more flexible. You can store topics in folders and subfolders, etc., to any degree. But note that with permalinks you can't view the content offline (outside of Jekyll's preview server) nor on a separate site other than the one specified in the configuration file. Permalinks are how Jekyll was designed to work, and the sites just work better that way.
+
+## Kramdown and Rouge
+
+I also switched from redcarpet and Pygments to Kramdown and Rouge to align with the current direction of Jekyll 3.0. Kramdown is a Markdown filter (it's slightly different from Github-flavored Markdown). Rouge is a syntax highlighter. Pygments had some dependencies on Python, which made it more cumbersome for Windows users.
+
+## Blog feature
+
+I included a blog feature with this version of the theme. You can write posts and view them through the News link. There's also an archive for blog posts that sorts posts by year.
+
+Additionally, the tagging system works across both the blog and pages, so your tags allow users to move laterally across the site based on topics they're interested in. When you view a tag archive, the sidebar shows a list of tags.
+
+## Updated documentation
+
+I updated the documentation for  the theme. The switch from the multi-site outputs to the single-site with multiple sidebars required updating a lot of different parts of the documentation and code.
+
+## Fixed errors
+
+Previously I had some errors with the HTML that showed up in w3c HTML validator analyses. This caused some small problems in certain browsers or systems less tolerant of the errors. I fixed all of the errors.
+
+## Accessing the old theme
+
+If you want to access the old theme, you can still find it [here](https://github.com/tomjoht/jekylldoctheme-separate-outputs).
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_release_notes_60.md b/pages/mydoc/mydoc_release_notes_60.md
new file mode 100644
index 0000000000000000000000000000000000000000..37220bb45dba301f4b7fb75514a5530bd1fa3e88
--- /dev/null
+++ b/pages/mydoc/mydoc_release_notes_60.md
@@ -0,0 +1,40 @@
+---
+title: Release notes 6.0
+tags: [getting_started]
+keywords: release notes, announcements, what's new, new features
+last_updated: July 16, 2016
+summary: "Version 6.0 of the Documentation theme for Jekyll, released July 4, 2016, implements relative links so you can view the files offline or on any server without configuring urls and baseurls. Additionally, you can store pages in subdirectories. Templates for alerts and images are available."
+sidebar: mydoc_sidebar
+permalink: mydoc_release_notes_60.html
+folder: mydoc
+---
+
+## Relative links
+
+You can now view the site offline rather than solely through the Jekyll preview server or deployed on a web server. The linking approach in both the sidebar and with inline links uses relative linking throughout.
+
+## Subfolders for pages
+
+You can creates folders and subfolders for your pages, similar to how you can store posts in folders and subfolders. When Jekyll builds the site, all pages get pushed into the root directory as single html files (rather than being pushed inside folders, or remaining in subfolders). See [Pages][mydoc_pages] for more details.
+
+## Alerts templates
+
+You can use include templates for notes, tips, and warnings. These include templates make it easier to insert notes. If you make an error, you're immediately made aware since the site won't build. See [Alerts][mydoc_alerts] for more details.
+
+## Image templates
+
+Similar to alerts, images also have include templates. You can insert both regular images and inline images, such as images that are a button or icon. See [Images][mydoc_images] for more details.
+
+## Automated links using Markdown formatting
+
+Instead of using YAML references to handle links, I've switched to a Markdown reference style approach. A links.html file iterates through the sidebar files and formats the content in the Markdown reference. You then just use Markdown syntax for the links. See [Links][mydoc_hyperlinks] for more details.
+
+## Workflow maps
+
+If you want to display a workflow map for a process, you can do so by adding some properties in your frontmatter. The workflow map helps guide users through a process. Both simple and complex workflow maps are available. For more details, see [Workflow maps][mydoc_workflow_maps].
+
+## Upgrading
+
+If you want to upgrade from an earlier version of the theme, I recommend that you download the new theme and copy of your Markdown files into the new theme. You'll then need to make adjustments to your page frontmatter, to the sidebar table of contents, links, image references, and alert references. In short, there's no easy upgrade path. But all of this won't take too long if you don't have mountains of content.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_search_configuration.md b/pages/mydoc/mydoc_search_configuration.md
new file mode 100644
index 0000000000000000000000000000000000000000..b56b346934dba3ed363ce74b7894160dc7ddfc06
--- /dev/null
+++ b/pages/mydoc/mydoc_search_configuration.md
@@ -0,0 +1,120 @@
+---
+title: Search configuration
+tags: [publishing, navigation]
+keywords: search, json, configuration, findability
+last_updated: July 3, 2016
+summary: "The search feature uses JavaScript to look for keyword matches in a JSON file. The results show instant matches, but it doesn't provide a search results page like Google. Also, sometimes invalid formatting can break the JSON file."
+sidebar: mydoc_sidebar
+permalink: mydoc_search_configuration.html
+folder: mydoc
+---
+
+## About search
+The search is configured through the search.json file in the root directory. The search is a simple search that looks at content in pages. It looks at titles, summaries, keywords, and tags.
+
+However, the search doesn't work like google &mdash; you can't hit return and see a list of results on the search results page, with the keywords in bold. Instead, this search shows a list of page titles that contain keyword matches. It's fast, but simple.
+
+## Excluding pages from search
+
+By default, every page is included in the search. Depending on the type of content you're including, you may find that some pages will break the JSON formatting. If that happens, then the search will no longer work.
+
+If you want to exclude a page from search add `search: exclude` in the page's frontmatter.
+
+## Troubleshooting search
+
+You should exclude any files from search that you don't want appearing in the search results. For example, if you have a tooltips.json file or prince-list.txt, don't include it, as the formatting will break the JSON format.
+
+If any formatting in the search.json file is invalid (in the build), search won't work. You'll know that search isn't working if no results appear when you start typing in the search box.
+
+If this happens, point your browser to your build's search.json file at http://localhost:4000/search.json (or your public github pages site), copy the entire search.json page as it's output on the browser, and then use a [JSON validator](http://jsonlint.com/) to validate the output by pasting what you copied into the validator. Look for the line causing trouble.  It will be highlighted. Edit the file that's causing the problem to either exclude it from the search or fix the syntax so that it doesn't invalidate the JSON. (Note that tabs in the body will invalidate JSON, as will certain characters in the file's front matter.  For example, the summary: cannot have " quotes in it.
+
+The search.json file already tries to strip out content that would otherwise make the JSON invalid.
+
+## Including the body field in search
+
+I've found that including the `body` field in the search creates too many problems, and so I've removed `body` from the search. You can see the results of including the `body` by adding this along with the other fields in search.json:
+
+{% raw %}
+```json
+      "body": "{{ page.content | strip_html | strip_newlines | replace: '\', '\\\\' | replace: '"', '\\"' | replace: '	', '    '  }}",
+```
+{% endraw %}
+
+Note that the last replace, `| replace: '^t', '    ' `, looks for any tab character and replaces it with four spaces. (Tab characters invalidate JSON.) If you run into other problematic formatting, you can use regex expressions to find and replace the content. See [Regular Expressions](http://www.ultraedit.com/support/tutorials_power_tips/ultraedit/regular_expressions.html) for details on finding and replacing code.
+
+It's possible that the formatting may not account for all the scenarios that would invalidate the JSON. (Sometimes it's an extra comma after the last item that makes it invalid.)
+
+Note that including the body in the search creates other problems as well. The search results show the most immediate matches in the JSON file. If several topics have matches for the keyword in the body, these matches might appear before other files that have matches in the title, summary, or keywords. This is because this simple search does not provide any weighting mechanisms for the content.
+
+## Customizing search results
+
+At some point, you may want to customize the search results more. Here's a little more detail that will be helpful. The search.json file retrieves various page values:
+
+```json
+{% raw %}---
+title: search
+layout: none
+search: exclude
+---
+
+[
+{% for page in site.pages %}
+{% unless page.search == "exclude" %}
+{
+"title": "{{ page.title | escape }}",
+"tags": "{{ page.tags }}",
+"keywords": "{{page.keywords}}",
+"url": "{{ page.url | remove: "/"}}",
+"summary": "{{page.summary | strip }}"
+},
+{% endunless %}
+{% endfor %}
+
+{% for post in site.posts %}
+
+{
+"title": "{{ post.title | escape }}",
+"tags": "{{ post.tags }}",
+"keywords": "{{post.keywords}}",
+"url": "{{ post.url }}",
+"summary": "{{post.summary | strip }}"
+}
+{% unless forloop.last %},{% endunless %}
+{% endfor %}
+
+]
+{% endraw %}
+```
+
+The \_includes/topnav.html file then makes use of these values:
+
+```html
+<li>
+    <!--start search-->
+    <div id="search-demo-container">
+        <input type="text" id="search-input" placeholder="{{site.data.strings.search_placeholder_text}}">
+        <ul id="results-container"></ul>
+    </div>
+    <script src="{{ "js/jekyll-search.js" }}" type="text/javascript"></script>
+    <script type="text/javascript">
+            SimpleJekyllSearch.init({
+                searchInput: document.getElementById('search-input'),
+                resultsContainer: document.getElementById('results-container'),
+                dataSource: '{{ "search.json" }}',
+                searchResultTemplate: '<li><a href="{url}" title="{{page.title | replace: "'", "\"}}">{title}</a></li>',
+    noResultsText: '{{site.data.strings.search_no_results_text}}',
+            limit: 10,
+            fuzzy: true,
+    })
+    </script>
+    <!--end search-->
+</li>
+```
+
+Where you see `{url}` and `{title}`, the search is retrieving the values for these as specified in the search.json file.
+
+## More robust search
+
+Overall, the built-in search only works for small documentation projects. If you have more robust search needs, consider integrating [Google Custom Search](https://cse.google.com/cse/), [Algolia](http://algolia.com), or [Swifttype](http://swiftype.com).
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_series.md b/pages/mydoc/mydoc_series.md
new file mode 100644
index 0000000000000000000000000000000000000000..7319be4c0a8d8a4c372a6cf4c4dc76a2c1936fe3
--- /dev/null
+++ b/pages/mydoc/mydoc_series.md
@@ -0,0 +1,110 @@
+---
+title: Series
+tags: [content_types]
+keywords: series, connected articles, tutorials, hello world
+last_updated: July 3, 2016
+summary: "You can automatically link together topics belonging to the same series. This helps users know the context within a particular process."
+sidebar: mydoc_sidebar
+permalink: mydoc_series.html
+folder: mydoc
+---
+
+## Using series for pages
+
+You create a series by looking for all pages within a tag namespace that contain certain frontmatter. Here's a <a href="mydoc_seriesdemo1.html">demo</a>.
+
+## 1. Create the series button
+
+First create an include that contains your series button:
+
+{% raw %}
+```html
+<div class="seriesContext">
+    <div class="btn-group">
+        <button type="button" data-toggle="dropdown" class="btn btn-primary dropdown-toggle">Series Demo <span class="caret"></span></button>
+        <ol class="dropdown-menu">
+            {% assign pages = site.pages | sort:"weight"  %}
+            {% for p in pages %}
+            {% if p.series == "ACME series" %}
+            {% if p.url == page.url %}
+            <li class="active"> → {{p.weight}}. {{p.title}}</li>
+            {% else %}
+            <li>
+                <a href="{{p.url | remove: "/"}}">{{p.weight}}. {{p.title}}</a>
+            </li>
+            {% endif %}
+            {% endif %}
+            {% endfor %}
+        </ol>
+    </div>
+</div>
+```
+{% endraw %}
+
+Change "ACME series" to the name of your series.
+
+Save this in your \_includes/custom folder as something like series\_acme.html.
+
+{% include warning.html content="With pages, there isn't a universal namespace created from tags or categories like there is with Jekyll posts. As a result, you have to loop through all pages. If you have a lot of pages in your site (e.g., 1,000+), then this looping will create a slow build time. If this is the case, you will need to rethink the approach to looping here." %}
+
+## 2. Create the "next" include
+
+Now create another include for the Next button at the bottom of the page. Copy the following code, changing the series name to your series'name:
+
+{% raw %}
+```html
+<p>{% assign series_pages = site.tags.series_acme %}
+    {% for p in pages %}
+    {% if p.series == "ACME series" %}
+    {% assign nextTopic = page.weight | plus: "1"  %}
+    {% if p.weight == nextTopic  %}
+    <a href="{{p.url}}"><button type="button" class="btn btn-primary">Next: {{p.weight}}  {{p.title}}</button></a>
+    {% endif %}
+    {% endif %}
+    {% endfor %}
+</p>
+```
+{% endraw %}
+
+Change "acme" to the name of your series.
+
+Save this in your \_includes/custom/mydoc folder as series\_acme\_next.html.
+
+## 3. Add the correct frontmatter to each of your series pages
+
+Now add the following frontmatter to each page in the series:
+
+```json
+series: "ACME series"
+weight: 1.0
+```
+
+With weights, Jekyll will treat 10 as coming after 1. If you have more than 10 items, consider changing `plus: "1.0"` to `plus: "0.1"`.
+
+Additionally, if your page names are prefaced with numbers, such as "1. Download the code," then the {% raw %}`{{p.weight}}`{% endraw %} will create a duplicate number. In that case, just remove the {% raw %}`{{p.weight}}`{% endraw %} from both code samples here.
+
+## 4. Add links to the series button and next button on each page.
+
+On each series page, add a link to the series button at the top and a link to the next button at the bottom.
+
+{% raw %}
+```liquid
+<!-- your frontmatter goes here -->
+
+{% include custom/series_acme.html %}
+
+<!-- your page content goes here ... -->
+
+{% include custom/series_acme_next.html %}
+```
+{% endraw %}
+
+## Changing the series drop-down color
+
+The Bootstrap menu uses the `primary` class for styling. If you change this class in your theme, the Bootstrap menu should automatically change color as well. You can also just use another Bootstrap class in your button code. Instead of `btn-primary`, use `btn-info` or `btn-warning`. See [Labels][mydoc_labels] for more Bootstrap button classes.
+
+## Using a collection with your series
+
+Instead of copying and pasting the button includes on each of your series, you could also create a collection and define a layout for the collection that has the include code. For more information on creating collections, see [Collections][mydoc_collections] for more details.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_seriesdemo1.md b/pages/mydoc/mydoc_seriesdemo1.md
new file mode 100644
index 0000000000000000000000000000000000000000..5a4ec168c6b26f24bf1560a915ebb5bab70666e6
--- /dev/null
+++ b/pages/mydoc/mydoc_seriesdemo1.md
@@ -0,0 +1,22 @@
+---
+title:  Series demo 1
+summary: "This is the first post in the series."
+series: "ACME series"
+weight: 1
+last_updated: July 3, 2016
+sidebar: mydoc_sidebar
+permalink: mydoc_seriesdemo1.html
+folder: mydoc
+---
+
+{% include custom/series_acme_next.html %}
+
+This is the first post in the series.
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vel sollicitudin felis. Sed eu arcu sed ipsum semper luctus eu a tortor. Suspendisse id leo eu metus laoreet varius. Mauris consequat accumsan ex, a iaculis metus fermentum a. Praesent sit amet fermentum leo. Aliquam feugiat, nibh in ultrices mattis, felis ipsum venenatis metus, vel vehicula libero mauris a enim. Sed placerat est ac lectus vestibulum tempor. Quisque ut condimentum massa. Proin venenatis leo id urna cursus blandit. Vivamus sit amet hendrerit metus.
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vel sollicitudin felis. Sed eu arcu sed ipsum semper luctus eu a tortor. Suspendisse id leo eu metus laoreet varius. Mauris consequat accumsan ex, a iaculis metus fermentum a. Praesent sit amet fermentum leo. Aliquam feugiat, nibh in ultrices mattis, felis ipsum venenatis metus, vel vehicula libero mauris a enim. Sed placerat est ac lectus vestibulum tempor. Quisque ut condimentum massa. Proin venenatis leo id urna cursus blandit. Vivamus sit amet hendrerit metus.
+
+
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_seriesdemo2.md b/pages/mydoc/mydoc_seriesdemo2.md
new file mode 100644
index 0000000000000000000000000000000000000000..048e735499965f507073b21601daed31562e4ee6
--- /dev/null
+++ b/pages/mydoc/mydoc_seriesdemo2.md
@@ -0,0 +1,24 @@
+---
+title:  Series demo 2
+summary: "This is the second post in the series."
+series: "ACME series"
+weight: 2
+last_updated: July 3, 2016
+sidebar: mydoc_sidebar
+permalink: mydoc_seriesdemo2.html
+folder: mydoc
+---
+
+
+{% include custom/series_acme_next.html %}
+
+This is the second post in the series.
+
+Aliquam feugiat, nibh in ultrices mattis, felis ipsum venenatis metus, vel vehicula libero mauris a enim. Sed placerat est ac lectus vestibulum tempor. Quisque ut condimentum massa. Proin venenatis leo id urna cursus blandit. Vivamus sit amet hendrerit metus.
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vel sollicitudin felis. Sed eu arcu sed ipsum semper luctus eu a tortor. Suspendisse id leo eu metus laoreet varius. Mauris consequat accumsan ex, a iaculis metus fermentum a. Praesent sit amet fermentum leo. Aliquam feugiat, nibh in ultrices mattis, felis ipsum venenatis metus, vel vehicula libero mauris a enim. Sed placerat est ac lectus vestibulum tempor. Quisque ut condimentum massa. Proin venenatis leo id urna cursus blandit. Vivamus sit amet hendrerit metus.
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vel sollicitudin felis. Sed eu arcu sed ipsum semper luctus eu a tortor. Suspendisse id leo eu metus laoreet varius. Mauris consequat accumsan ex, a iaculis metus fermentum a. Praesent sit amet fermentum leo.
+
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_seriesdemo3.md b/pages/mydoc/mydoc_seriesdemo3.md
new file mode 100644
index 0000000000000000000000000000000000000000..dcf2ddbc09f251bf2a16f67d4bec1ece07dfbcd9
--- /dev/null
+++ b/pages/mydoc/mydoc_seriesdemo3.md
@@ -0,0 +1,24 @@
+---
+title:  Series demo 3
+last_updated: May 17, 2016
+summary: "This is the third post in the series."
+series: "ACME series"
+weight: 3
+last_updated: July 3, 2016
+sidebar: mydoc_sidebar
+permalink: mydoc_seriesdemo3.html
+folder: mydoc
+---
+
+{% include custom/series_acme_next.html %}
+
+This is the third post in the series.
+
+Mauris consequat accumsan ex, a iaculis metus fermentum a. Praesent sit amet fermentum leo. Aliquam feugiat, nibh in ultrices mattis, felis ipsum venenatis metus, vel vehicula libero mauris a enim. Sed placerat est ac lectus vestibulum tempor. Quisque ut condimentum massa. Proin venenatis leo id urna cursus blandit. Vivamus sit amet hendrerit metus.
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vel sollicitudin felis. Sed eu arcu sed ipsum semper luctus eu a tortor. Suspendisse id leo eu metus laoreet varius.
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vel sollicitudin felis. Sed eu arcu sed ipsum semper luctus eu a tortor. Suspendisse id leo eu metus laoreet varius. Mauris consequat accumsan ex, a iaculis metus fermentum a. Praesent sit amet fermentum leo. Aliquam feugiat, nibh in ultrices mattis, felis ipsum venenatis metus, vel vehicula libero mauris a enim. Sed placerat est ac lectus vestibulum tempor. Quisque ut condimentum massa. Proin venenatis leo id urna cursus blandit. Vivamus sit amet hendrerit metus.
+
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_seriesdemo4.md b/pages/mydoc/mydoc_seriesdemo4.md
new file mode 100644
index 0000000000000000000000000000000000000000..57ea639a8ed2e47b0e19bb38539a1ae00540eacb
--- /dev/null
+++ b/pages/mydoc/mydoc_seriesdemo4.md
@@ -0,0 +1,26 @@
+---
+title:  Series demo 4
+summary: "This is the fourth post in the series."
+series: "ACME series"
+weight: 4
+last_updated: July 3, 2016
+sidebar: mydoc_sidebar
+permalink: mydoc_seriesdemo4.html
+folder: mydoc
+---
+
+
+{% include custom/series_acme_next.html %}
+
+This is the fourth post in the series.
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vel sollicitudin felis. Sed eu arcu sed ipsum semper luctus eu a tortor. Suspendisse id leo eu metus laoreet varius. Mauris consequat accumsan ex, a iaculis metus fermentum a. Praesent sit amet fermentum leo. Aliquam feugiat, nibh in ultrices mattis, felis ipsum venenatis metus, vel vehicula libero mauris a enim. Sed placerat est ac lectus vestibulum tempor. Quisque ut condimentum massa. Proin venenatis leo id urna cursus blandit. Vivamus sit amet hendrerit metus.
+
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vel sollicitudin felis. Sed eu arcu sed ipsum semper luctus eu a tortor. Suspendisse id leo eu metus laoreet varius. Mauris consequat accumsan ex, a iaculis metus fermentum a. Praesent sit amet fermentum leo. Aliquam feugiat, nibh in ultrices mattis, felis ipsum venenatis metus, vel vehicula libero mauris a enim. Sed placerat est ac lectus vestibulum tempor. Quisque ut condimentum massa. Proin venenatis leo id urna cursus blandit. Vivamus sit amet hendrerit metus.
+
+Mauris consequat accumsan ex, a iaculis metus fermentum a. Praesent sit amet fermentum leo. Aliquam feugiat, nibh in ultrices mattis, felis ipsum venenatis metus, vel vehicula libero mauris a enim. Sed placerat est ac lectus vestibulum tempor. Quisque ut condimentum massa. Proin venenatis leo id urna cursus blandit. Vivamus sit amet hendrerit metus.
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam vel sollicitudin felis. Sed eu arcu sed ipsum semper luctus eu a tortor. Suspendisse id leo eu metus laoreet varius.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_shuffle.html b/pages/mydoc/mydoc_shuffle.html
new file mode 100644
index 0000000000000000000000000000000000000000..3987037467f80aba69bc30bc0989c10fc39fca0b
--- /dev/null
+++ b/pages/mydoc/mydoc_shuffle.html
@@ -0,0 +1,167 @@
+---
+title: Shuffle layout
+tags: [special_layouts]
+last_updated: November 30, 2015
+keywords: shuffle, card layout, dynamic grid, doc portal, support portal
+summary: "This layout shows an example of a knowledge-base style navigation system, where there is no hierarchy, just groups of pages that have certain tags."
+permalink: mydoc_shuffle.html
+sidebar: mydoc_sidebar
+folder: mydoc
+---
+
+
+
+{% if site.output == "pdf" %}
+{{site.data.alerts.note}} The content on this page doesn't display well on PDF, but I included it anyway so you could see the problems this layout poses if you're including it in PDF.  {{site.data.alerts.end}}
+{% endif %}
+
+{% unless site.output == "pdf" %}
+<script src="js/jquery.shuffle.min.js"></script>
+<script src="js/jquery.ba-throttle-debounce.min.js"></script>
+{% endunless %}
+
+      <div class="filter-options">
+      <button class="btn btn-primary" data-group="all">All</button>
+      <button class="btn btn-primary" data-group="getting_started">Getting Started</button>
+      <button class="btn btn-primary" data-group="formatting">Formatting</button>
+      <button class="btn btn-primary" data-group="publishing">Publishing</button>
+      <button class="btn btn-primary" data-group="content-types">Content types</button>
+          <button class="btn btn-primary" data-group="single_sourcing">Single Sourcing</button>
+      <button class="btn btn-primary" data-group="special_layouts">Special Layouts</button>
+    </div>      
+
+<div id="grid" class="row">
+
+
+    <div class="col-xs-6 col-sm-4 col-md-4" data-groups='["getting_started"]'>
+
+               <div class="panel panel-default">
+               <div class="panel-heading">Getting started</div>
+               <div class="panel-body">
+                  If you're getting started with Jekyll, see the links in this section. It will take you from the beginning level to comfortable. 
+                  <ul>
+                {% for page in site.pages %}
+                {% for tag in page.tags %}
+                {% if tag == "getting_started" %}
+                  <li><a href="{{page.url | remove: '/'}}">{{page.title}}</a></li>
+                {% endif %}
+                {% endfor %}
+                {% endfor %} 
+                  </ul>
+               </div>
+            </div>
+    
+    </div>
+   
+
+    <div class="col-xs-6 col-sm-4 col-md-4" data-groups='["content-types"]'>
+
+        <div class="panel panel-default">
+            <div class="panel-heading">Content types</div>
+            <div class="panel-body">
+                This section lists different content types and how to work with them.
+                <ul>
+                    {% for page in site.pages %}
+                    {% for tag in page.tags %}
+                    {% if tag == "content-types" %}
+                    <li><a href="{{page.url | remove: '/'}}">{{page.title}}</a></li>
+                    {% endif %}
+                    {% endfor %}
+                    {% endfor %}
+                </ul>
+            </div>
+        </div>
+        
+    </div>
+
+
+
+    <div class="col-xs-6 col-sm-4 col-md-4" data-groups='["formatting"]'>
+
+                <div class="panel panel-default">
+               <div class="panel-heading">Formatting</div>
+               <div class="panel-body">
+                  These topics get into formatting syntax, such as images and tables, that you'll use on each of your pages: 
+                  <ul>
+                {% for page in site.pages %}
+                {% for tag in page.tags %}
+                {% if tag == "formatting" %}
+                  <li><a href="{{page.url | remove: '/'}}">{{page.title}}</a></li>
+                {% endif %}
+                {% endfor %}
+                {% endfor %}
+                  </ul>
+               </div>
+            </div>
+
+    </div>
+
+    <div class="col-xs-6 col-sm-4 col-md-4" data-groups='["single_sourcing"]'>
+         
+      <div class="panel panel-default">
+               <div class="panel-heading">Single Sourcing</div>
+               <div class="panel-body">These topics cover strategies for single_sourcing. Single sourcing refers to strategies for re-using the same source in different outputs for different audiences or purposes.
+               <ul>
+                {% for page in site.pages %}
+                {% for tag in page.tags %}
+                {% if tag == "single_sourcing" %}
+                  <li><a href="{{page.url | remove: '/'}}">{{page.title}}</a></li>
+                {% endif %}
+                {% endfor %}
+                {% endfor %} 
+               </ul>
+            </div>
+         </div>
+
+    </div>
+
+       <div class="col-xs-6 col-sm-4 col-md-4" data-groups='["publishing"]'>
+
+           <div class="panel panel-default">
+               <div class="panel-heading">Publishing</div>
+               <div class="panel-body">When you're building, publishing, and deploying your Jekyll site, you might find these topics helpful.
+                   <ul>
+                {% for page in site.pages %}
+                {% for tag in page.tags %}
+                {% if tag == "publishing" %}
+                  <li><a href="{{page.url | remove: '/'}}">{{page.title}}</a></li>
+                {% endif %}
+                {% endfor %}
+                {% endfor %}
+                   </ul>
+               </div>
+            </div>
+
+    </div>
+
+        <div class="col-xs-6 col-sm-4 col-md-4" data-groups='["special_layouts"]'>
+
+             <div class="panel panel-default">
+               <div class="panel-heading">Special Layouts</div>
+               <div class="panel-body">
+                  These pages highlight special layouts outside of the conventional page and TOC hierarchy.
+                  <ul>
+                {% for page in site.pages %}
+                {% for tag in page.tags %}
+                {% if tag == "special_layouts" %}
+                     <li><a href="{{page.url | remove: '/'}}">{{page.title}}</a></li>
+                {% endif %}
+                {% endfor %}
+                {% endfor %} 
+                  </ul>
+               </div>
+            </div>
+
+    </div>
+          <!-- sizer -->
+      <div class="col-xs-6 col-sm-4 col-md-1 shuffle_sizer"></div>          
+
+
+    </div><!-- /#grid -->
+
+{% unless site.output == "pdf" %}
+{% include initialize_shuffle.html %}
+{% endunless %}
+
+{{site.data.alerts.note}} This was mostly an experiment to see if I could break away from the hierarchical TOC and provide a different way of arranging the content. However, this layout is somewhat problematic because it doesn't allow you to browse other navigation options on the side while viewing a topic.{{site.data.alerts.end}}
+
diff --git a/pages/mydoc/mydoc_sidebar_navigation.md b/pages/mydoc/mydoc_sidebar_navigation.md
new file mode 100644
index 0000000000000000000000000000000000000000..a03b03d212a0a58ab5364dc1bda8832d80d9d70c
--- /dev/null
+++ b/pages/mydoc/mydoc_sidebar_navigation.md
@@ -0,0 +1,83 @@
+---
+title: Sidebar Navigation
+tags: [getting_started]
+last_updated: July 3, 2016
+keywords: sidebar, accordion, yaml, iteration, for loop, navigation, attributes, conditional filtering
+summary: "The sidebar navigation uses a jQuery component called Navgoco. The sidebar is a somewhat complex part of the theme that remembers your current page, highlights the active item, stays in a fixed position on the page, and more. This page explains a bit about how the sidebar was put together."
+sidebar: mydoc_sidebar
+permalink: mydoc_sidebar_navigation.html
+folder: mydoc
+---
+
+## Navgoco foundation
+
+The sidebar uses the [Navgoco jQuery plugin](https://github.com/tefra/navgoco) as its basis. Why not use Bootstrap? Navgoco provides a few features that I couldn't find in Bootstrap:
+
+* Navgoco sets a cookie to remember the user's position in the sidebar. If you refresh the page, the cookie allows the plugin to remember the state.
+* Navgoco inserts an `active` class based on the navigation option that's open. This is essential for keeping the accordion open.
+* Navgoco includes the expand and collapse features of a sidebar.
+
+In short, the sidebar has some complex logic here. I've integrated Navgoco's features with the sidebar.html and sidebar data files to build the sidebar. It's probably the most impressive part of this theme. (Other themes usually aren't focused on creating hierarchies of pages, but this kind of hierarchy is important in a documentation site.)
+
+## Accordion sidebar feature
+
+The sidebar.html file (inside the \_includes folder) contains the `.navgoco` method called on the `#mysidebar` element.
+
+There are some options to set within the `.navgoco` method. The only noteworthy option is `accordion`. This option makes it so when you expand a section, the other sections collapse. It's a way of keeping your navigation controls condensed.
+
+The value for `accordion` is a Boolean (`true` or `false`). By default, the `accordion` option is set as `true`. If you don't want the accordion, set it to `false`. Note that there's also a block of code near the bottom of sidebar.html that is commented out. Uncomment out that section to have the Collapse all and Expand All buttons appear.
+
+There's a danger with setting the accordion to `false`. If you click Expand All and the sidebar expands beyond the dimensions of the browser, users will be stuck. When that happens, it's hard to collapse it. As a best practice, leave the sidebar's accordion option set to `true`.
+
+## Fixed position sidebar
+
+The sidebar has one other feature &mdash; this one from Bootstrap. If the user's viewport is tall enough, the sidebar remains fixed on the page. This allows the user to scroll down the page and still keep the sidebar in view.
+
+In the customsscripts.js file in the js folder, there's a function that adds an `affix` class if the height of the browser window is greater than 800 pixels. If the browser's height is less than 800 pixels, the `nav affix` class does not get inserted. As a result, the sidebar can slide up and down as the user scrolls up and down the page.
+
+Depending on your content, you may need to adjust `800` pixel number. If your sidebar is so long that having it in a fixed position makes it so the bottom of the sidebar gets cut off, increase the `800` pixel number here to a higher number.
+
+## Opening sidebar links into external pages
+
+In the attributes for each sidebar item, if you use `external_url` instead of `url`, the theme will insert the link into an `a href` element that opens in a blank target.
+
+For example, the sidebar.html file contains the following code:
+
+{% raw %}
+```liquid
+{% if folderitem.external_url %}
+    <li><a href="{{folderitem.external_url}}" target="_blank">{{folderitem.title}}</a></li>```
+{% endraw %}
+
+You can see that the `external_url` is a condition that applies a different formatting. Although this feature is available, I recommend putting any external navigation links in the top navigation bar instead of the side navigation bar.
+
+## Sidebar item highlighting
+
+The sidebar.html file inserts an `active` class into the sidebar element when the `url` attribute in the sidebar data file matches the page URL.
+
+For example, the sidebar.html file contains the following code:
+
+{% raw %}
+```liquid
+{% elsif page.url == folderitem.url %}
+   <li class="active"><a href="{{folderitem.url | remove: "/"}}">{{folderitem.title}}</a></li>
+```
+{% endraw %}
+
+If the `page.url` matches the `subfolderitem.url`, then an `active` class gets applied. If not, the `active` class does not get applied.
+
+The `page.url` in Jekyll is a site-wide variable. If you insert {% raw %}`{{page.url}}`{% endraw %} on a page, it will render as follows: {{page.url}}. The `url` attribute in the sidebar item must match the page URL in order to get the `active` class applied.
+
+This is why the `url` value in the sidebar data file looks something like this:
+
+```yaml
+    - title: Understanding how the sidebar works
+      permalink: mydoc_understand_sidebar.html
+      output: web, pdf
+```
+
+Note that the url does not include the project folder where the file is stored. This is because the site uses permalinks, which pulls the topics out of subfolders and places them into the root directory when the site builds.
+
+Now the page.url and the item.url can match and the `active` class can get applied. With the `active` class applied, the sidebar section remains open.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_special_layouts.md b/pages/mydoc/mydoc_special_layouts.md
new file mode 100644
index 0000000000000000000000000000000000000000..fd0352373ab853f239433c64731fb022db936566
--- /dev/null
+++ b/pages/mydoc/mydoc_special_layouts.md
@@ -0,0 +1,27 @@
+---
+title: Special layouts overview
+tags: [special_layouts]
+keywords: layouts, information design, presentation
+last_updated: July 3, 2016
+summary: "This theme has a few special layouts. Special layouts include the JS files they need directly in the page. The JavaScript for each special layout does not load by default for every page in the site."
+sidebar: mydoc_sidebar
+permalink: mydoc_special_layouts.html
+folder: mydoc
+---
+
+
+{% include note.html content="By \"layout,\" I'm not referring to the layouts in \_layouts in the project files. I'm referring to special ways of presenting information on the same \"page\" layout." %}
+
+## FAQ layout
+
+See {{site.data.mydoc_urls.mydoc_faq.link}} for an example of the FAQ format, which follows an accordion, collapse/expand format. This code is from Bootstrap.
+
+## Knowledgebase layout
+
+See {{site.data.mydoc_urls.mydoc_kb_layout.link}} for a possible layout for knowledge base articles. This layout looks for pages containing specific tags.
+
+## Shuffle layout
+
+If you want a dynamic card layout that allows you to filter the cards, see {{site.data.mydoc_urls.mydoc_shuffle.link}}. This uses the Shuffle JS library.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_support.md b/pages/mydoc/mydoc_support.md
new file mode 100644
index 0000000000000000000000000000000000000000..b3d97a1a6c30813b7d2f170f935c4a9fe1690691
--- /dev/null
+++ b/pages/mydoc/mydoc_support.md
@@ -0,0 +1,12 @@
+---
+title: Support
+tags: [getting_started, troubleshooting]
+keywords: questions, troubleshooting, contact, support
+last_updated: July 3, 2016
+summary: "Contact me for any support issues."
+sidebar: mydoc_sidebar
+permalink: mydoc_support.html
+folder: mydoc
+topnav: topnav
+---
+
diff --git a/pages/mydoc/mydoc_supported_features.md b/pages/mydoc/mydoc_supported_features.md
new file mode 100644
index 0000000000000000000000000000000000000000..619ed02666abb7694343f46562e758a7b0f4830a
--- /dev/null
+++ b/pages/mydoc/mydoc_supported_features.md
@@ -0,0 +1,55 @@
+---
+title: Supported features
+tags:
+  - getting_started
+keywords: "features, capabilities, scalability, multichannel output, dita, hats, comparison, benefits"
+last_updated: "July 16, 2016"
+summary: "If you're not sure whether Jekyll and this theme will support your requirements, this list provides a semi-comprehensive overview of available features."
+published: true
+sidebar: mydoc_sidebar
+permalink: mydoc_supported_features.html
+folder: mydoc
+---
+
+Before you get into exploring Jekyll as a potential platform for help content, you may be wondering if it supports some basic features needed to fulfill your tech doc requirements. The following table shows what is supported in Jekyll and this theme.
+
+## Supported features
+
+Features | Supported | Notes
+--------|-----------|-----------
+Content re-use | Yes | Supports re-use through Liquid. You can re-use variables, snippets of code, entire pages, and more. In DITA speak, this includes conref and keyref. See [Content reuse][mydoc_content_reuse] for more details.|
+Markdown | Yes | You can author content using Markdown syntax, specifically [kramdown](https://kramdown.gettalong.org/). This is a wiki-like syntax for HTML that you can probably pick up in 10 minutes. Where Markdown falls short, you can use HTML. Where HTML falls short, you use Liquid, which is a scripting that allows you to incorporate more advanced logic.|
+Responsive design | Yes | Uses [Bootstrap framework](http://getbootstrap.com/) for responsive design.
+Translation | Yes | To translate content, send the generated HTML to your translation group. You can translate the Markdown source if your translator accepts the format, but usually Markdown is problematic. Note that this theme isn't structured well to accommodate translation projects.|
+Collaboration |  Yes | You collaborate with Jekyll projects the same way that developers collaborate with software projects. (You don't need a CMS.) Because you're working with text file formats, you can use any version control software (Git, Mercurial, Perforce, Bitbucket, etc.) as a CMS for your files.|
+Scalability | Yes | Your site can scale to any size. It's up to you to determine how you will design the information architecture for your pages. You can choose what you display at first, second, third, fourth, and more levels, etc. Note that when your project has thousands of pages, the build time will be longer (maybe 1 minute per thousand pages?). It really depends on how many for loops you have iterating through the pages. I recommend that you use [smaller repos](http://idratherbewriting.com/2017/05/26/big-repos-versus-small-repos/) in your content architecture. |
+Lightweight architecture | Yes | You don't need a LAMP stack (Linux, Apache, MySQL, PHP) architecture to get your site running. All of the building is done on your own machine, and you then push the static HTML files onto a server.|
+Skinnability | Yes | You can skin your Jekyll site to look identical to pretty much any other site online. If you have a UX team, they can really skin and design the site using all the tools familiar to the modern designer -- JavaScript, HTML5, CSS, jQuery, and more. Jekyll is built on the modern web development stack rather than the XML stack (XSLT, XPath, XQuery). See [this tutorial](http://jekyllrb.com/tutorials/convert-site-to-jekyll/) for details on how to create your own Jekyll theme. |
+Support | Yes | The community for your Jekyll site isn't so much other tech writers (as is the case with DITA) but rather the wider web development community. [Jekyll Talk](http://talk.jekyllrb.com) is a great resource. So is [Stack Overflow](https://stackoverflow.com/questions/tagged/jekyll). See the [Getting Help](http://jekyllrb.com/help/) section of Jekyll. |
+Blogging features | Yes | There is a simple blogging feature. This appears as [news](news.html) and is intended to promote news that applies across products.|
+Versioning | Yes | Jekyll doesn't version your files. You upload your files to a version control system such as Github. Your files are versioned there.
+PC platform | Yes | Jekyll runs on Windows. Although the experience working on the command line is better on a Mac, Windows also works, especially now that Jekyll 3.0 dropped dependencies on Python, which wasn't available by default on Windows.
+jQuery plugins | Yes | You can use any jQuery plugins you and other JavaScript, CMS, or templating tools. However, note that if you use Ruby plugins, you can't directly host the source files on Github Pages because Github Pages doesn't allow Ruby plugins. Instead, you can just push your output to any web server. If you're not planning to use Github Pages, there are no restrictions on any plugins of any sort. Jekyll makes it super easy to integrate every kind of plugin imaginable. This theme doesn't actually use any plugins, so you can publish on Github if you want.
+Bootstrap integration | Yes | This theme is built on [Bootstrap](http://getbootstrap.com/). If you don't know what Bootstrap is, basically this means there are hundreds of pre-built components, styles, and other elements that you can simply drop into your site. For example, the responsive quality of the site comes about from the Bootstrap code base.
+Fast-loading pages| Yes | This is one of the Jekyll's strengths. Because the files are static, they loading extremely fast, approximately 0.5 seconds per page. You can't beat this for performance. (A typically database-driven site like WordPress averages about 2.5 + seconds loading time per page.) Because the pages are all static, it means they are also extremely secure. You won't get hacked like you might with a WordPress site.
+Themes | Yes | You can have different themes for different outputs. If you know CSS, theming both the web and print outputs is pretty easy.
+Open source | Yes | This theme is entirely open source. Every piece of code is open, viewable, and editable. Note that this openness comes at a price &mdash; it's easy to make changes that break the theme or otherwise cause errors.
+Offline viewing | Yes | This theme uses relative linking throughout, so you can view the content offline and on any webserver without configuring urls and baseurls in your configuration file.
+
+
+## Features not available
+
+The following features are not available.
+
+Features | Supported | Notes
+--------|-----------|-----------
+CMS interface | No | Unlike with WordPress, you don't log into an interface and navigate to your files. You work with text files and preview the site dynamically in your browser. Don't worry -- this is part of the simplicy that makes Jekyll awesome. I recommend using WebStorm as your text editor.
+WYSIWYG interface | No | I use WebStorm to author content, because I like working in text file formats. But you can use any Markdown editor you want (e.g., Lightpaper for Mac, Marked) to author your content.
+Different outputs | No | This theme provides a single website output that contains documentation for multiple products. Unlike previous iterations of the theme, it's not intended to support different outputs from the same content. However, you can easily set things up to do this by simply creating multiple configuration files and running different builds for each configuration file.
+Robust search | No | The search feature is a simplistic JSON search. For more robust search, you should integrate Swiftype or Algolia. However, those services aren't currently integrated into the theme.
+Standardized templates | No | You can create pages with any structure you want. The theme does not enforce topic types such as a task or concept as the DITA specification does.
+Integration with Swagger | No | You can link to a SwaggerUI output, but there is no built-in integration of SwaggerUI into this documentation theme.
+Templates for endpoints | No | Although static site generators work well with API documentation, there aren't any built-in templates specific to endpoints in this theme. You could construct your own, though.
+eBook output | No | There isn't an eBook output for the content.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_syntax_highlighting.md b/pages/mydoc/mydoc_syntax_highlighting.md
new file mode 100644
index 0000000000000000000000000000000000000000..1b3cdd630b79672bfed2a18e842ccb634258b5e2
--- /dev/null
+++ b/pages/mydoc/mydoc_syntax_highlighting.md
@@ -0,0 +1,111 @@
+---
+title: Syntax highlighting
+tags: [formatting]
+keywords: rouge, pygments, prettify, color coding,
+last_updated: July 3, 2016
+summary: "You can apply syntax highlighting to your code. This theme uses pygments and applies color coding based on the lexer you specify."
+sidebar: mydoc_sidebar
+permalink: mydoc_syntax_highlighting.html
+folder: mydoc
+---
+
+## About syntax highlighting
+For syntax highlighting, use fenced code blocks optionally followed by the language syntax you want:
+
+<pre>
+```java
+import java.util.Scanner;
+
+public class ScannerAndKeyboard
+{
+
+	public static void main(String[] args)
+	{	Scanner s = new Scanner(System.in);
+		System.out.print( "Enter your name: "  );
+		String name = s.nextLine();
+		System.out.println( "Hello " + name + "!" );
+	}
+}
+```
+</pre>
+
+This looks as follows:
+
+```java
+import java.util.Scanner;
+
+public class ScannerAndKeyboard
+{
+
+	public static void main(String[] args)
+	{	Scanner s = new Scanner(System.in);
+		System.out.print( "Enter your name: "  );
+		String name = s.nextLine();
+		System.out.println( "Hello " + name + "!" );
+	}
+}
+```
+
+Fenced code blocks require a blank line before and after.
+
+If you're using an HTML file, you can also use the `highlight` command with Liquid markup.
+
+<pre>
+{% raw %}{% highlight java %}
+import java.util.Scanner;
+
+public class ScannerAndKeyboard
+{
+
+	public static void main(String[] args)
+	{	Scanner s = new Scanner(System.in);
+		System.out.print( "Enter your name: "  );
+		String name = s.nextLine();
+		System.out.println( "Hello " + name + "!" );
+	}
+}
+{% endhighlight %}{% endraw %}
+</pre> 
+
+Result: 
+
+{% highlight java %}
+import java.util.Scanner;
+
+public class ScannerAndKeyboard
+{
+
+	public static void main(String[] args)
+	{	Scanner s = new Scanner(System.in);
+		System.out.print( "Enter your name: "  );
+		String name = s.nextLine();
+		System.out.println( "Hello " + name + "!" );
+	}
+}
+{% endhighlight %}
+
+The theme has syntax highlighting specified in the configuration file as follows:
+
+```
+highlighter: rouge
+```
+
+The syntax highlighting is done via the css/syntax.css file.
+
+## Available lexers
+
+The keywords you must add to specify the highlighting (in the previous example, `ruby`) are called "lexers." You can search for "lexers." Here are some common ones I use:
+
+* js
+* html
+* yaml
+* css
+* json
+* php
+* java
+* cpp
+* dotnet
+* xml
+* http
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_tables.md b/pages/mydoc/mydoc_tables.md
new file mode 100644
index 0000000000000000000000000000000000000000..952a0784b86f22c33fdd996744398fb79e8a4187
--- /dev/null
+++ b/pages/mydoc/mydoc_tables.md
@@ -0,0 +1,141 @@
+---
+title: Tables
+tags: [formatting]
+keywords: datatables, tables, grids, markdown, multimarkdown, jquery plugins
+last_updated: July 16, 2016
+datatable: true
+summary: "You can format tables using either multimarkdown syntax or HTML. You can also use jQuery datatables (a plugin) if you need more robust tables."
+sidebar: mydoc_sidebar
+permalink: mydoc_tables.html
+folder: mydoc
+---
+
+## Multimarkdown Tables
+
+You can use Multimarkdown syntax for tables. The following shows a sample:
+
+```
+| Priority apples | Second priority | Third priority |
+|-------|--------|---------|
+| ambrosia | gala | red delicious |
+| pink lady | jazz | macintosh |
+| honeycrisp | granny smith | fuji |
+```
+
+**Result:**
+
+| Priority apples | Second priority | Third priority |
+|-------|--------|---------|
+| ambrosia | gala | red delicious |
+| pink lady | jazz | macintosh |
+| honeycrisp | granny smith | fuji |
+
+{% include note.html content="You can't use block level tags (paragraphs or lists) inside Markdown tables, so if you need separate paragraphs inside a cell, use `<br/><br/>`." %}
+
+## HTML Tables {#htmltables}
+
+If you need a more sophisticated table syntax, use HTML syntax for the table. Although you're using HTML, you can use Markdown inside the table cells by adding `markdown="span"` as an attribute for the `td` tag, as shown in the following table. You can also control the column widths.
+
+```html
+<table>
+<colgroup>
+<col width="30%" />
+<col width="70%" />
+</colgroup>
+<thead>
+<tr class="header">
+<th>Field</th>
+<th>Description</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td markdown="span">First column **fields**</td>
+<td markdown="span">Some descriptive text. This is a markdown link to [Google](http://google.com). Or see [some link][mydoc_tags].</td>
+</tr>
+<tr>
+<td markdown="span">Second column **fields**</td>
+<td markdown="span">Some more descriptive text.
+</td>
+</tr>
+</tbody>
+</table>
+```
+
+**Result:**
+<table>
+<colgroup>
+<col width="30%" />
+<col width="70%" />
+</colgroup>
+<thead>
+<tr class="header">
+<th>Field</th>
+<th>Description</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td markdown="span">First column **fields**</td>
+<td markdown="span">Some descriptive text. This is a markdown link to [Google](http://google.com). Or see [some link][mydoc_tags].</td>
+</tr>
+<tr>
+<td markdown="span">Second column **fields**</td>
+<td markdown="span">Some more descriptive text.
+</td>
+</tr>
+</tbody>
+</table>
+
+## jQuery DataTables
+
+You also have the option of using a [jQuery DataTable](https://www.datatables.net/), which gives you some additional capabilities. To use a jQuery DataTable in a page, include `datatable: true` in a page's frontmatter. This tells the default layout to load the necessary CSS and javascript bits and to include a `$(document).ready()` function that initializes the DataTables library.
+
+You can change the options used to initialize the DataTables library by editing the call to `$('table.display').DataTable()` in the default layout.  The available options for Datatables are described in the [DataTable documentation](https://www.datatables.net/manual/options), which is excellent.
+
+You also must add a class of `display` to your tables.  You can change the class, but then you'll need to change the trigger defined in the `$(document).ready()` function in the default layout from `table.display` to the class you prefer.
+
+You can also add page-specific triggers (by copying the `<script></script>` block from the default layout into the page) and classes, which lets you use different options on different tables.
+
+If you use an HTML table, adding `class="display"` to the `<table>` tag is sufficient.
+
+Markdown, however, doesn't allow you to add classes to tables, so you'll need to use a trick: add `<div class="datatable-begin"></div>` before the table and `<div class="datatable-end"></div>` after the table.  The default layout includes a jQuery snippet that automagically adds the `display` class to any table it finds between those two markers.  So you can start with this (we've trimmed the descriptions for display):
+
+```markdown
+<div class="datatable-begin"></div>
+
+Food    | Description                           | Category | Sample type
+------- | ------------------------------------- | -------- | -----------
+Apples  | A small, somewhat round ...           | Fruit    | Fuji
+Bananas | A long and curved, often-yellow ...   | Fruit    | Snow
+Kiwis   | A small, hairy-skinned sweet ...      | Fruit    | Golden
+Oranges | A spherical, orange-colored sweet ... | Fruit    | Navel
+
+<div class="datatable-end"></div>
+```
+
+and get this:
+
+<div class="datatable-begin"></div>
+
+Food    | Description                                                                                       | Category | Sample type
+------- | ------------------------------------------------------------------------------------------------- | -------- | -----------
+Apples  | A small, somewhat round and often red-colored, crispy fruit grown on trees.                       | Fruit    | Fuji
+Bananas | A long and curved, often-yellow, sweet and soft fruit that grows in bunches in tropical climates. | Fruit    | Snow
+Kiwis   | A small, hairy-skinned sweet fruit with green-colored insides and seeds.                          | Fruit    | Golden
+Oranges | A spherical, orange-colored sweet fruit commonly grown in Florida and California.                 | Fruit    | Navel
+
+<div class="datatable-end"></div>
+
+
+Notice a few features:
+
+* You can keyword search the table. When you type a word, the table filters to match your word.
+* You can sort the column order.
+* You can page the results so that you show only a certain number of values on the first page and then require users to click next to see more entries.
+
+Read more of the [DataTable documentation](https://www.datatables.net/manual/options) to get a sense of the options you can configure. You should probably only use DataTables when you have long, massive tables full of information.
+
+{% include note.html content=" Try to keep the columns to 3 or 4 columns only. If you add 5+ columns, your table may create horizontal scrolling with the theme. Additionally, keep the column heading titles short." %}
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_tag_archives_overview.md b/pages/mydoc/mydoc_tag_archives_overview.md
new file mode 100644
index 0000000000000000000000000000000000000000..37c0841dbcf39f6a98228b5b44deb4ad9c3b8009
--- /dev/null
+++ b/pages/mydoc/mydoc_tag_archives_overview.md
@@ -0,0 +1,18 @@
+---
+title: Tag archives overview
+keywords: archives, tagging
+last_updated: July 3, 2016
+tags: [navigation]
+summary: "This is an overview to the tag archives section. Really the only reason this section is listed explicitly in the TOC here is to demonstrate how to add a third-level to the navigation."
+sidebar: mydoc_sidebar
+permalink: mydoc_tag_archives_overview.html
+folder: mydoc
+---
+
+## Reasons for tags
+
+Tags provide alternate groupings for your content. In the documentation for this theme, there are a number of equally plausible ways I could have grouped the content. The folder names and items I chose for each item could have been grouped in other ways with good reason.
+
+Tags allow you to go beyond the traditional hierarchical classification and provide other groupings. For example, the same item can belong to two different groups. You can also introduce other dimensions not used in your table of contents, such as platform-specific tags or audience-specific tags.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_tags.md b/pages/mydoc/mydoc_tags.md
new file mode 100644
index 0000000000000000000000000000000000000000..0d809aefcd63306de874e441a26b35a5d365ac63
--- /dev/null
+++ b/pages/mydoc/mydoc_tags.md
@@ -0,0 +1,186 @@
+---
+title: Tags
+audience: writer, designer
+tags: [navigation]
+last_updated: July 16, 2016
+keywords: tags, navigation, buttons, links, association
+summary: "Tags provide another means of navigation for your content. Unlike the table of contents, tags can show the content in a variety of arrangements and groupings. Implementing tags in this Jekyll theme is somewhat of a manual process."
+sidebar: mydoc_sidebar
+permalink: mydoc_tags.html
+folder: mydoc
+---
+
+## Add a tag to a page
+You can add tags to pages by adding `tags` in the frontmatter with values inside brackets, like this:
+
+```
+---
+title: 5.0 Release Notes
+permalink: release_notes_5_0.html
+tags: [formatting, single_sourcing]
+---
+```
+
+## Tags overview
+
+{% include note.html content=" With posts, tags have a namespace that you can access with <code>posts.tags.tagname</code>, where <code>tagname</code> is the name of the tag. You can then list all posts in that tag namespace. But pages don't off this same tag namespace, so you could actually use another key instead of <code>tags</code>. Nevertheless, I'm using the same <code>tags</code> approach for posts as with pages." %}
+
+
+To prevent tags from getting out of control and inconsistent, first make sure the tag appears in the \_data/tags.yml file. If it's not there, the tag you add to a page won't be read. I added this check just to make sure I'm using the same tags consistently and not adding new tags that don't have tag archive pages.
+
+
+{% include note.html content="In contrast to WordPress, with Jekyll to get tags on pages you have to build out the functionality for tags so that clicking a tag name shows you all pages with that tag. Tags in Jekyll are much more manual." %}
+
+Additionally, you must create a tag archive page similar to the other pages named tag_{tagname}.html folder. This theme doesn't auto-create tag archive pages.
+
+For simplicity, make all your tags single words (connect them with hyphens if necessary).
+
+## Setting up tags
+
+Tags have a few components.
+
+1. In the \_data/tags.yml file, add the tag names you want to allow. For example:
+
+   ```json
+   allowed-tags:
+     - getting_started
+     - overview
+     - formatting
+     - publishing
+     - single_sourcing
+     - special_layouts
+     - content types
+   ```
+
+3. Create a tag archive file for each tag in your tags_doc.yml list. Name the file following the same pattern in the tags folder, like this: tag_collaboration.html.
+
+   Each tag archive file needs only this:
+
+   {% raw %}
+   ```liquid
+---
+title: "Collaboration pages"
+tagName: collaboration
+search: exclude
+permalink: tag_collaboration.html
+sidebar: mydoc_sidebar
+---
+{% include taglogic.html %}
+   ```
+    {% endraw %}
+
+   {% include note.html content="In the \_includes/mydoc folder, there's a taglogic.html file. This file (included in each tag archive file) has common logic for getting the tags and listing out the pages containing the tag in a table with summaries or truncated excerpts. You don't have to do anything with the file &mdash; just leave it there because the tag archive pages reference it." %}
+
+4. Change the title, tagName, and permalink values to be specific to the tag name you just created.
+
+   By default, the \_layouts/page.html file will look for any tags on a page and insert them at the bottom of the page using this code:
+
+
+```liquid
+{% raw %}<div class="tags">
+{% if page.tags != null %}
+<b>Tags: </b>
+{% assign projectTags = site.data.tags.allowed-tags %}
+{% for tag in page.tags %}
+{% if projectTags contains tag %}
+<a href="{{ "tag_" | append: tag | append: ".html" }}" class="btn btn-default navbar-btn cursorNorm" role="button">{{page.tagName}}{{tag}}</a>
+{% endif %}
+{% endfor %}
+{% endif %}
+</div>{% endraw %}
+```
+
+
+Because this code appears on the \_layouts/page.html file by default, you don't need to do anything in your page to get the tags to appear. However, if you want to alter the placement or change the button color, you can do so within the \_includes/taglogic.html file.
+
+You can change the button color by changing the class on the button from `btn-info` to one of the other button classes bootstrap provides. See [Labels][mydoc_labels] for more options on button class names.
+
+## Retrieving pages for a specific tag
+
+If you want to retrieve pages outside of a particular tag_archive page, you could use this code:
+
+{% raw %}
+```liquid
+Getting started pages:
+<ul>
+{% for page in site.pages %}
+{% for tag in page.tags %}
+{% if tag == "getting_started" %}
+<li><a href="{{page.url | remove: "/" }}">{{page.title}}</a></li>
+{% endif %}
+{% endfor %}
+{% endfor %}
+</ul>
+```
+{% endraw %}
+
+Here's how that code renders:
+
+Getting started pages:
+<ul>
+{% for page in site.pages %}
+{% for tag in page.tags %}
+{% if tag == "getting_started" %}
+<li><a href="{{page.url | remove: "/" }}">{{page.title}}</a></li>
+{% endif %}
+{% endfor %}
+{% endfor %}
+</ul>
+
+If you want to sort the pages alphabetically, you have to apply a `sort` filter:
+
+```liquid
+{% raw %}
+Getting started pages:
+<ul>
+{% assign sorted_pages = site.pages | sort: 'title' %}
+{% for page in sorted_pages %}
+{% for tag in page.tags %}
+{% if tag == "getting_started" %}
+<li><a href="{{page.url | remove: "/" }}">{{page.title}}</a></li>
+{% endif %}
+{% endfor %}
+{% endfor %}
+</ul>
+{% endraw %}
+```
+
+Here's how that code renders:
+
+Getting started pages:
+<ul>
+{% assign sorted_pages = site.pages | sort: 'title' %}
+{% for page in sorted_pages %}
+{% for tag in page.tags %}
+{% if tag == "getting_started" %}
+<li><a href="{{page.url | remove: "/"}}">{{page.title}}</a></li>
+{% endif %}
+{% endfor %}
+{% endfor %}
+</ul>
+
+## Efficiency
+Although the tag approach here uses `for` loops, these are somewhat inefficient on a large site. Most of my tech doc projects don't have hundreds of pages (like my blog does). If your project does have hundreds of pages, this `for` loop approach with tags is going to slow down your build times.
+
+Without the ability to access pages inside a universal namespace with the page type, there aren't many workarounds here for faster looping.
+
+With posts (instead of pages), since you can access just the posts inside `posts.tag.tagname`, you can be a lot more efficient with the looping.
+
+Still, if the build times are getting long (e.g., 1 or 2 minutes per build), look into reducing the number of `for` loops on your site.
+
+## Empty tags?
+
+If your page shows "tags:" at the bottom without any value, it could mean a couple of things:
+
+* You're using a tag that isn't specified in your allowed tags list in your tags.yml file.
+* You have an empty `tags: []` property in your frontmatter.
+
+If you don't want tags to appear at all on your page, remove the tags property from your frontmatter.
+
+## Remembering the right tags
+
+Since you may have many tags and find it difficult to remember what tags are allowed, I recommend creating a template that prepopulates all your frontmatter with all possible tags. Then just remove the tags that don't apply.
+
+See [WebStorm Text Editor][mydoc_webstorm_text_editor] for tips on creating file templates in WebStorm.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_themes.md b/pages/mydoc/mydoc_themes.md
new file mode 100644
index 0000000000000000000000000000000000000000..7ee7470090c7bdf839844cdd752c34ca415cdb57
--- /dev/null
+++ b/pages/mydoc/mydoc_themes.md
@@ -0,0 +1,28 @@
+---
+title: Themes
+tags: [publishing]
+keywords: themes, styles, colors, css
+last_updated: July 3, 2016
+summary: "You can choose between two different themes (one green, the other blue) for your projects. The theme CSS is stored in the CSS folder and configured in the configuration file for each project."
+sidebar: mydoc_sidebar
+permalink: mydoc_themes.html
+folder: mydoc
+---
+
+{% include note.html content="The [gem-based theme](https://jekyllrb.com/docs/themes/) approach is not yet integrated into this theme." %}
+
+## Theme options
+You can choose a green or blue theme, or you can create your own. In the css folder, there are two theme files: theme-blue.css and theme-green.css. These files have the most common CSS elements extracted in their own CSS file. Just change the hex colors to the ones you want.
+
+In the \_includes/head.html file, specify the theme file you want the output to use &mdash; for example, `theme_file: theme-green.css`. See this line:
+
+```html
+<link rel="stylesheet" href="css/theme-green.css" />
+```
+
+## Theme differences
+The differences between the themes is fairly minimal. The main navigation bar, sidebar, buttons, and heading colors change color. That's about it.
+
+In a more sophisticated theming approach, you could use Sass files to generate rules based on options set in a data file, but I kept things simple here.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_troubleshooting.md b/pages/mydoc/mydoc_troubleshooting.md
new file mode 100644
index 0000000000000000000000000000000000000000..1a4c3c04858071dae7300573df71ff8d9690d466
--- /dev/null
+++ b/pages/mydoc/mydoc_troubleshooting.md
@@ -0,0 +1,81 @@
+---
+title: Troubleshooting
+tags: [troubleshooting]
+keywords: trouble, problems, support, error messages, problems, failure, error, #fail
+last_updated: July 3, 2016
+summary: "This page lists common errors and the steps needed to troubleshoot them."
+sidebar: mydoc_sidebar
+permalink: mydoc_troubleshooting.html
+folder: mydoc
+---
+
+## Issues building the site
+
+### Address already in use
+
+When you try to build the site, you get this error in iTerm:
+
+```
+jekyll 2.5.3 | Error:  Address already in use - bind(2)
+```
+This happens if a server is already in use. To fix this, edit your config file and change the port to a unique number.
+
+If the previous server wasn't shut down properly, you can kill the server process using these commands:
+
+`ps aux | grep jekyll`
+
+Find the PID (for example, it  looks like "22298").
+
+Then type `kill -9 22298` where "22298" is the PID.
+
+Alternatively, type the following to stop all Jekyll servers:
+
+```
+kill -9 $(ps aux | grep '[j]ekyll' | awk '{print $2}')
+```
+
+### shell file not executable
+
+If you run into permissions errors trying to run a shell script file (such as mydoc_multibuild_web.sh), you may need to change the file permissions to make the sh file executable. Browse to the directory containing the shell script and run the following:
+
+```
+chmod +x build_writer.sh
+```
+
+## shell file not runnable
+
+If you're using a PC, rename your shell files with a .bat extension.
+
+### "page 0" cross references in the PDF
+
+If you see "page 0" cross-references in the PDF, the URL doesn't exist. Check to make sure you actually included this page in the build.
+
+If it's not a page but rather a file, you need to add a `noCrossRef` class to the file so that your print stylesheet excludes the counter from it. Add `class="noCrossRef"` as an attribute to the link. In the css/printstyles.css file, there is a style that should remove the counter from anchor elements with this class.
+
+### The PDF is blank
+
+Check the prince-list.txt file in the output to see if it contains links. If not, you have something wrong with the logic in the prince-list.txt file. Check the conditions.html file in your \_includes to see if the audience specified in your configuration file aligns with the buildAudience in the conditions.html file
+
+### Sidebar not appearing
+
+If you build your site but the sidebar doesn't appear, check the following:
+
+Look in your PDF config file and make sure you have a sidebar property, such as this:
+
+```
+pdf_sidebar: product2_sidebar
+```
+
+Make sure each TOC item has an output property that specifies web or pdf.
+
+Understanding how the theme works can be helpful in troubleshooting. The \_includes/sidebar.html file loops through the values in the \_data/sidebar.yml file. There are `if` statements that check whether the conditions (as specified in the conditions.html file) are met. If the sidebar.yml item doesn't have the right output, then it won't get displayed in the sidebar. It would instead get skipped.
+
+### Sidebar isn't collapsed
+
+If the sidebar levels aren't collapsed, usually your JavaScript is broken somewhere. Open the JavaScript Console and look to see where the problem is. If one script breaks, then other scripts will break too, so troubleshooting it is a little tricky.
+
+### Search isn't working
+
+If the search isn't working, check the JSON validity in the search.json file in your output folder. Usually something is invalid. Identify the problematic line, fix the file, or put `search: exclude` in the frontmatter of the file to exclude it from search.
+
+{% include links.html %}
diff --git a/pages/mydoc/mydoc_webstorm_text_editor.md b/pages/mydoc/mydoc_webstorm_text_editor.md
new file mode 100644
index 0000000000000000000000000000000000000000..734fb0ebf0cfcf898628bb5382249e740bdad1a5
--- /dev/null
+++ b/pages/mydoc/mydoc_webstorm_text_editor.md
@@ -0,0 +1,90 @@
+---
+title: WebStorm Text Editor
+keywords: webstorm, sublime, markdown, atom, gnome, notepad ++, textpad, bbedit
+last_updated: March 20, 2016
+summary: "You can use a variety of text editors when working with a Jekyll project. WebStorm from IntelliJ offers a lot of project-specific features, such as find and replace, that make it ideal for working with tech comm projects."
+sidebar: mydoc_sidebar
+permalink: mydoc_webstorm_text_editor.html
+folder: mydoc
+---
+
+## About text editors and WebStorm
+There are a variety of text editors available, but I like WebStorm the best because it groups files into projects, which makes it easy to find all instances of a text string, to do find and replace operations across the project, and more.
+
+If you decide to use WebStorm, here are a few tips on configuring the editor.
+
+## Remove unnecessary plugins
+
+By default, WebStorm comes packaged with a lot more functionality than you probably need. You can lighten the editor by removing some of the plugins. Go to **WebStorm > Preferences > Plugins** and clear the check boxes of plugins you don't need.
+
+## Set default tab indent to 3 spaces instead of 4
+
+You can set the way the tab works, and whether it uses spaces or a tab character. For details, see [Code Style. JavaScript](https://www.jetbrains.com/help/webstorm/2016.1/code-style-javascript.html?origin=old_help#d658997e132) in WebStorm's help.
+
+On a Mac, go to **WebStorm > Preferences > Editor > Code Style > Other File Types**. Don't select the "Use tab character" check box. Set **4** for the **Tab size** and **Indent** check boxes.
+
+On Windows, go to **File > Settings > Editor > Code Style > Other File Types** to access the same menu.
+
+## Add the Markdown Support plugin
+
+Since you'll be writing in Markdown, having color coding and other support for Markdown is important. Install the Markdown Support plugin by going to **WebStorm > Preferences > Plugins** and clicking **Install JetBrains Plugin**. Search for **Markdown Support**. You can also implement the Markdown Navigator plugin.
+
+## Enable Soft Wraps (word wrapping)
+
+Most likely you'll want to enable soft wraps, which wraps lines rather than extending them out forever and requiring you to scroll horizontally to see the text. To enable softwrapping, go to **WebStorm > Preferences > Editor > General** and see the Soft Wraps section. Select the **Use soft wraps in editor** check box.
+
+## Exclude a directory
+
+When you're searching for content, you don't want to edit any file that appears in the \_site directory. You can exclude a directory from Webstorm by right-clicking the directory and choosing **Mark Directory As** and then selecting **Excluded**.
+
+## Set tabs to 4 spaces
+
+You can set the default number of spaces a tab sets, including whether Webstorm uses a tab character or spaces. You want spaces, and you want to set this to default number of spaces to ```4```. Note that this is due to the way Kramdown handles the continuation 
+of lists.
+
+To set the indentation, see the "Tabs and Indents" topic in this [Code Style. Javascript](https://www.jetbrains.com/help/webstorm/2016.1/code-style-javascript.html?origin=old_help#d658997e132) topic in Webstorm's help.
+
+## Shortcuts
+
+It can help to learn a few key shortcuts:
+
+|Command | Shortcuts |
+|-------|--------|
+| Shift + Shift | Allows you to find a file by searching for its name. |
+| Shift + Command + F | Find in whole project. (WebStorm uses the term "Find in path".) |
+| Shift + Command + R | Replace in whole project. (Again, WebStorm calls it "Replace in path.") |
+| Command + F | Find on page |
+| Shift + R | Replace on page |
+| Right-click > Add to Favorites | Allows you to add files to a Favorites section, which expands below the list of files in the project pane. |
+| Shift + tab | Applies outdenting (opposite of tabbing) |
+| Shift + Function + F6 | Rename a file |
+| Command + Delete | Delete a file |
+| Command + 2 | Show Favorites pane |
+| Shift + Option + F | Add to Favorites |
+
+{{site.data.alerts.tip}} If these shortcut keys aren't working for you, make sure you have the "Max OS X 10.5+" keymap selected. Go to <b>WebStorm > Preferences > Keymap</b> and select it there. {{site.data.alerts.end}}
+
+## Finding files
+
+When I want to find a file, I browse to the file in the preview site and copy the page name in the URL. Then in Webstorm I press **Shift** twice and paste in the file name. The search feature automatically highlights the file I want, and I press **Enter**.
+
+## Identifying changed files
+
+When you have the Git and Github integration, changed files appear in blue. This lets you know what needs to be committed to your repository.
+
+## Creating file templates
+
+Rather than insert the frontmatter by hand each time, it's much faster to simply create a Jekyll template. To create a Jekyll template in WebStorm:
+
+1. Right-click a file in the list of project files, and select **New > Edit File Templates**.
+
+   If you don't see the Edit File Templates option, you may need to create a file template first. Go to **File > Default Settings > Editor > File and Code Templates**. Create a new file template with an md extension, and then close and restart WebStorm. Then repeat this step and you will see the File Templates option appear in the right context menu.
+
+2. In the upper-left corner of the dialog box that appears, click the **+** button to create a new template.
+3. Name it something like Jekyll page. Insert the frontmatter you want, and save it.
+
+   To use the Jekyll template, when you create a new file in your WebStorm project, you can select your Jekyll file template.
+
+## Disable pair quotes
+
+By default, each time you type `'`, WebStorm will pair the quote (creating two quotes). You can disable this by going to **WebStorm > Preferences > Editor > Smartkeys**. Clear the **Insert pair quotes** check box.
diff --git a/pages/mydoc/mydoc_workflow_maps.md b/pages/mydoc/mydoc_workflow_maps.md
new file mode 100644
index 0000000000000000000000000000000000000000..6d9a979ed94865842701948aa5b5b60adaf60c1c
--- /dev/null
+++ b/pages/mydoc/mydoc_workflow_maps.md
@@ -0,0 +1,142 @@
+---
+title: Workflow maps
+tags: [formatting]
+keywords: release notes, announcements, what's new, new features
+last_updated: July 16, 2016
+summary: "Version 6.0 of the Documentation theme for Jekyll reverts back to relative links so you can view the files offline. Additionally, you can store pages in subdirectories. Templates for alerts and images are available."
+sidebar: mydoc_sidebar
+permalink: mydoc_workflow_maps.html
+folder: mydoc
+---
+
+## Workflow maps overview
+
+You can implement workflow maps at the top of your pages. This is helpful if you're describing a process that involves multiple topics. See the following demos:
+
+*  [Simple workflow maps][p2_sample1]
+*  [Complex workflow maps][p2_sample6]
+
+
+## Simple workflow maps
+
+1.  Create an include at \_includes/custom/usermap.html, where usermap.html contains the workflow and links you want. See the usermap.html as an example. It should look something like this:
+
+    ```xml  
+    <div id="userMap">
+    <div class="content"><a href="p2_sample1.html"><div class="box box1">Connect to ADB</div></a></div>
+    <div class="arrow">→</div>
+    <div class="content"><a href="p2_sample2.html"><div class="box box2">Download and Build the Starter Kit</div></a></div>
+    <div class="arrow">→</div>
+    <div class="content"><a href="p2_sample3.html"><div class="box box3">Take a Tour</div></a></div>
+    <div class="arrow">→</div>
+    <div class="content"><a href="p2_sample4.html"><div class="box box4">Load Your Widgets</div></a></div>
+    <div class="arrow">→</div>
+    <div class="content"><a href="p2_sample5.html"><div class="box box5">Query for Something</div></a></div>
+    <div class="clearfix"></div>
+    </div>
+    ```
+    
+    You can have only 5 possible workflow squares across. Also, the links must be manually coded HTML like those shown, not automated Markdown links. (This is because the boxes are linked.)
+    
+2.  Where you want the user maps to appear, add the sidebar properties shown in red below:
+
+    <pre>
+    ---
+    title: Sample 1 Topic
+    keywords: sample
+    summary: "This is just a sample topic..."
+    sidebar: product2_sidebar
+    permalink: p2_sample1
+    folder: product2
+    <span class="red">simple_map</span>: true
+    <span class="red">map_name</span>: usermap
+    <span class="red">box_number</span>: 1
+    ---
+    </pre>
+    
+    In the page.html layout, the following code gets activated when `simple_map` equals `true`:
+    
+    ```
+    {% raw %}{% if page.simple_map == true %}
+    
+    <script>
+        $(document).ready ( function(){
+            $('.box{{page.box_number}}').addClass('active');
+        });
+    </script>
+    
+    {% include custom/{{page.map_name}}.html %}
+    
+    {% endif %}{% endraw %}
+    ```
+    
+    The script adds an `active` class to the box number, which automatically makes the active workflow box become highlighted based on the page you're viewing. 
+    
+    The `map_name` gets used as the name of the included file.
+
+## Complex workflow maps
+
+The simpler user workflow allows for 5 workflow steps. If you have a more complex workflow, with multiple possible steps, branching, and more, consider using a complex workflow map. This map uses modals to show a list of instructions and links for each step.
+
+1.  Create an include at \_includes/custom/usermapcomplex.html, where usermapcomplex.html contains the workflow and links you want. See the usermapcomplex.html as an example. The code in that file simply implements Bootstrap modals to create the pop-up boxes. Add your custom content inside the modal body:
+
+    ```
+    <div class="modal-body">
+    <p>This is just dummy text ... Your first steps should be to get started. You will need to do the following:</p>
+    
+        <ul>
+            <li><a href="p2_sample6.html">Sample 6</a></li>
+            <li><a href="p2_sample7.html">Sample 7</a></li>
+            <li><a href="p2_sample8.html">Sample 8</a></li>
+        </ul>
+        <p>If you run into any of these setup issues, you must solve them before you can continue on.</p>
+    
+              </div>
+     ```
+     
+     The existing usermapcomplex.html file just has 3 workflow square modals. If you need more, duplicate the modal code. In the duplicated code, make sure you make the following values in red unique (but the same within the same modal):
+     
+     <pre>
+     <button type="button" class="btn btn-default btn-lg modalButton3" data-toggle="modal" data-target="<span class="red">#myModal3</span>">Publish your app</button>
+           <!-- Modal -->
+           <div class="modal fade" id="<span class="red">myModal3</span>" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
+     </pre>
+
+2.  For each topic where you want the modal to appear, insert the following properties in your frontmatter:
+
+    <pre>
+    ---
+    title: Sample 6 Topic
+    keywords: sample
+    summary: "This is just a sample topic..."
+    sidebar: product2_sidebar
+    permalink: p2_sample6
+    <span class="red">complex_map: true</span>
+    <span class="red">map_name: usermapcomplex</span>
+    <span class="red">box_number: 1</span>
+    toc: false
+    folder: product2
+    ---
+    </pre>
+
+    When your frontmatter contains `complex_map` equal to `true`, the following code gets activated in the page layout.html file:
+    
+    ```
+    In the page.html layout, the following code gets activated when `map` equals `true`:
+        
+     ```
+        {% raw %}{% if page.complex_map == true %}
+        
+        <script>
+            $(document).ready ( function(){
+                $('.modalButton{{page.box_number}}').addClass('active');
+            });
+        </script>
+        
+        {% include custom/{{page.map_name}}.html %}
+        
+        {% endif %}{% endraw %}
+        ```
+     ```
+     
+{% include links.html %}
\ No newline at end of file
diff --git a/pages/mydoc/mydoc_yaml_tutorial.md b/pages/mydoc/mydoc_yaml_tutorial.md
new file mode 100644
index 0000000000000000000000000000000000000000..62ecc770583bd07593a26b49cc35712c3cae8e6b
--- /dev/null
+++ b/pages/mydoc/mydoc_yaml_tutorial.md
@@ -0,0 +1,426 @@
+---
+title: YAML tutorial in the context of Jekyll
+tags: [formatting]
+keywords: search
+summary: "YAML is a format that relies on white spacing to separate out the various elements of content. Jekyll lets you use Liquid with YAML as a way to parse through the data. Storing items for your table of contents is one of the most common uses of YAML with Jekyll."
+sidebar: mydoc_sidebar
+permalink: mydoc_yaml_tutorial.html
+folder: mydoc
+---
+
+<style>
+.result {
+background-color: #f0f0f0;
+border: 1px solid #dedede;
+padding: 10px;
+margin-top: 10px;
+margin-bottom: 10px;
+}
+</style>
+
+## Overview
+One of the most interesting features of Jekyll is the ability to separate out data elements from formatting elements using a combination of YAML and Liquid. This setup is most common when you're trying to create a table of contents.
+
+Not many Jekyll themes actually have a robust table of contents, which is critical when you are creating any kind of documentation or reference material that has a lot of pages.
+
+Here's the basic approach in creating a table of contents. You store your data items in a YAML file using YAML syntax. (I'll go over more about YAML syntax in a later section.) You then create your HTML structure in another file, such as sidebar.html. You might leverage one of the many different table of content frameworks (such as [Navgoco](https://github.com/tefra/navgoco)) that have been created for this HTML structure.
+
+Then, using Liquid syntax for loops and conditions, you access all of those values from the data file and splice them into HTML formatting. This will become more clear as we go through some examples.
+
+## YAML overview
+
+Rather than just jump into YAML at the most advanced level, I'm going to start from ground zero with an introduction to YAML and how you access basic values in your data files using Jekyll.
+
+Note that you don't actually have to use Jekyll when using YAML. YAML is used in a lot of other systems and is a format completely independent of Jekyll. However, because Jekyll uses Liquid, it gives you a lot of power to parse through your YAML data and make use of it.
+
+YAML itself doesn't do anything on its own &mdash; it's just a way of storing your data in a specific structure that other utilities can parse.
+
+## YAML basics
+You can read about YAML from a lot of different sources. Here are some basic characteristics of YAML:
+
+* YAML ("YAML Ain't Markup Language") doesn't use markup tags. This means you won't see any kind of angle brackets. It uses white space as a way to form the structure. This makes YAML much more human readable.
+*  Because YAML does use white space for the structure, YAML is extremely picky about the exactness of spaces. If you have just one extra space somewhere, it can cause the whole file to be invalid.
+* For each new level in YAML, you indent two spaces. Each level provides a different access point for the content. You use dot notation to access each new level.
+* Because tabs are not universally implemented the same way in editors, a tab might not equate to two spaces. In general, it's best to manually type two spaces to create a new level in YAML.
+* YAML has several types of elements. The most common are mappings and lists. A mapping is simply a key-value pair. A list is a sequence of items. List start with hyphens.
+* Items at each level can have various properties. You can create conditions based on the properties.
+* You can use "for" loops to iterate through a list.
+
+I realize a lot of this vague and general; however, it will become a lot more clear as we go through some concrete examples.
+
+In the \_data/mydoc folder, there's a file called samplelist.yml. All of these examples come from that file.
+
+## Example 1: Simple mapping
+
+**YAML:**
+
+```yaml
+name:
+  husband: Tom
+  wife: Shannon
+```
+
+**Markdown + Liquid:**
+
+```liquid
+{% raw %}<p>Husband's name: {{site.data.samplelist.name.husband}}</p>
+<p>Wife's name: {{site.data.samplelist.name.wife}}</p>{% endraw %}
+```
+
+Notice that in order to access the data file, you use `site.data.samplelist`. `mydoc` is the folder, and `samplelist` is the name of the YAML file.
+
+**Result:**
+
+<div class="result">
+<p>Husband's name: {{site.data.samplelist.name.husband}}</p>
+<p>Wife's name: {{site.data.samplelist.name.wife}}</p>
+</div>
+
+## Example 2: Line breaks
+
+**YAML:**
+
+```yaml
+feedback: >
+  This is my feedback to you.
+  Even if I include linebreaks here,
+  all of the linebreaks will be removed when the value is inserted.
+
+block: |
+    This pipe does something a little different.
+    It preserves the breaks.
+    This is really helpful for code samples,
+    since you can format the code samples with
+       the appropriate
+```
+
+**Markdown:**
+
+```liquid
+{% raw %}<p><b>Feedback</b></p>
+<p>{{site.data.samplelist.feedback}}</p>
+
+<p><b>Block</b></p>
+<p>{{site.data.samplelist.block}}</p>{% endraw %}
+```
+
+**Result:**
+
+<div class="result">
+<p><b>Feedback</b></p>
+<p>{{site.data.samplelist.feedback}}</p>
+
+<p><b>Block</b></p>
+<p>{{site.data.samplelist.block}}</p>
+</div>
+
+The right angle bracket `>` allows you to put the value on the next lines (which must be indented). Even if you create a line break, the output will remove all of those line breaks, creating one paragraph.
+
+The pipe `|` functions like the angle bracket in that it allows you to put the values for the mapping on the next lines (which again must be indented). However, the pipe does preserve all of the line breaks that you use. This makes the pipe method ideal for storing code samples.
+
+## Example 3: Simple list
+
+**YAML**:
+
+```yaml
+bikes:
+  - title: mountain bikes
+  - title: road bikes
+  - title: hybrid bikes
+```
+
+**Markdown + Liquid:**
+
+
+```liquid
+{% raw %}<ul>
+{% for item in site.data.samplelist.bikes %}
+<li>{{item.title}}</li>
+{% endfor %}
+</ul>{% endraw %}
+```
+
+**Result:**
+
+<div class="result">
+<ul>
+{% for item in site.data.samplelist.bikes %}
+<li>{{item.title}}</li>
+{% endfor %}
+</ul>
+</div>
+
+Here we use a "for" loop to get each item in the bikes list. By using `.title` we only get the `title` property from each list item.
+
+## Example 4: List items
+
+**YAML:**
+
+```yaml
+salesteams:
+- title: Regions
+ subfolderitems:
+   - location: US
+   - location: Spain
+   - location: France
+```
+
+**Markdown + Liquid:**
+
+{% raw %}
+```
+{% for item in site.data.samplelist.salesteams %}
+<h3>{{item.title}}</h3>
+<ul>
+{% for entry in item.subitems %}
+<li>{{entry.location}}</li>
+{% endfor %}
+</ul>
+{% endfor %}
+```
+{% endraw %}
+
+**Result:**
+
+<div class="result">
+{% for item in site.data.samplelist.salesteams %}
+<h3>{{item.title}}</h3>
+<ul>
+{% for entry in item.subfolderitems %}
+<li>{{entry.location}}</li>
+{% endfor %}
+</ul>
+{% endfor %}
+</div>
+
+Hopefully you can start to see how to wrap more complex formatting around the YAML content. When you use a "for" loop, you choose the variable of what to call the list items. The variable you choose to use becomes how you access the properties of each list item. In this case, I decided to use the variable `item`. In order to get each property of the list item, I used `item.subitems`.
+
+Each list item starts with the hyphen `–`.  You cannot directly access the list item by referring to a mapping. You only loop through the list items. If you wanted to access the list item, you would have to use something like `[1]`, which is how you access the position in an array. You cannot access a list item like you can access a mapping key.
+
+## Example 5: Table of contents
+
+**YAML:**
+
+```yaml
+toc:
+  - title: Group 1
+    subfolderitems:
+      - page: Thing 1
+      - page: Thing 2
+      - page: Thing 3
+  - title: Group 2
+    subfolderitems:
+      - page: Piece 1
+      - page: Piece 2
+      - page: Piece 3
+  - title: Group 3
+    subfolderitems:
+      - page: Widget 1
+      - page: Widget 2 it's
+      - page: Widget 3
+```
+
+**Markdown + Liquid:**
+
+{% raw %}
+```liquid
+{% for item in site.data.samplelist.toc %}
+<h3>{{item.title}}</h3>
+<ul>
+{% for entry in item.subfolderitems %}
+<li>{{entry.page}}</li>
+{% endfor %}
+</ul>
+{% endfor %}
+```
+{% endraw %}
+
+**Result:**
+
+<div class="result">
+{% for item in site.data.samplelist.toc %}
+<h3>{{item.title}}</h3>
+<ul>
+{% for entry in item.subfolderitems %}
+<li>{{entry.page}}</li>
+{% endfor %}
+</ul>
+{% endfor %}
+</div>
+
+This example is similar to the previous one, but it's more developed as a real table of contents.
+
+## Example 6: Variables
+
+**YAML:**
+
+```yaml
+something: &hello Greetings earthling!
+myref: *hello
+```
+
+**Markdown:**
+
+{% raw %}
+```liquid
+{{ site.data.samplelist.myref }}
+```
+{% endraw %}
+
+**Result:**
+
+<div class="result">
+{{ site.data.samplelist.myref }}
+</div>
+
+This example is notably different. Here I'm showing how to reuse content in YAML file. If you have the same value that you want to repeat in other mappings, you can create a variable using the `&` symbol. Then when you want to refer to that variable's value, you use an asterisk `*` followed by the name of the variable.
+
+In this case the variable is `&hello` and its value is `Greetings earthling!` In order to reuse that same value, you just type `*hello`.
+
+I don't use variables much, but that's not to say they couldn't be highly useful. For example, let's say you put name of the product in parentheses after each title (because you have various products that you're providing documentation for in the same site). You could create a variable for that product name so that if you change how you're referring to it, you wouldn't have to change all instances of it in your YAML file.
+
+## Example 7: Positions in lists
+
+**YAML:**
+
+```yaml
+about:
+ - zero
+ - one
+ - two
+ - three
+```
+
+**Markdown:**
+
+```
+{% raw %}{{ site.data.samplelist.about[0] }}{% endraw %}
+```
+
+**Result:**
+<div class="result">
+{{ site.data.samplelist.about[0] }}
+</div>
+
+You can see that I'm accessing one of the items in the list using `[0]`. This refers to the position in the array where a list item is. Like most programming languages, you start counting at zero, not one.
+
+I wanted to include this example because it points to the challenge in getting a value from a specific list item. You can't just call out a specific item in a list like you can with a mapping. This is why you usually iterate through the list items using a "for" loop.
+
+## Example 8: Properties from list items at specific positions
+
+**YAML:**
+
+```yaml
+numbercolors:
+ - zero:
+   properties: red
+ - one:
+   properties: yellow
+ - two:
+   properties: green
+ - three:
+   properties: blue
+```
+
+**Markdown + Liquid:**
+
+{% raw %}
+```liquid
+{{ site.data.samplelist.numbercolors[0].properties }}
+```
+{% endraw %}
+
+**Result:**
+<div class="result">
+{{ site.data.samplelist.numbercolors[0].properties }}
+</div>
+
+This example is similar as before; however, in this case were getting a specific property from the list item in the zero position.
+
+## Example 9: Conditions
+
+**YAML:**
+
+```yaml
+mypages:
+- section1: Section 1
+  audience: developers
+  product: acme
+  url: facebook.com
+- section2: Section 2
+  audience: writers
+  product: acme
+  url: google.com
+- section3: Section 3
+  audience: developers
+  product: acme
+  url: amazon.com
+- section4: Section 4
+  audience: writers
+  product: gizmo
+  url: apple.com
+- section5: Section 5
+  audience: writers
+  product: acme
+  url: microsoft.com
+```
+
+**Markdown + Liquid:**
+
+
+```liquid
+{% raw %}<ul>
+{% for sec in site.data.samplelist.mypages %}
+{% if sec.audience == "writers" %}
+<li>{{sec.url}}</li>
+{% endif %}
+{% endfor %}
+</ul>
+{% endraw %}
+```
+
+
+**Result:**
+<div class="result">
+<ul>
+{% for sec in site.data.samplelist.mypages %}
+{% if sec.audience == "writers" %}
+<li>{{sec.url}}</li>
+{% endif %}
+{% endfor %}
+</ul>
+</div>
+
+This example shows how you can use conditions in order to selectively get the YAML content. In your table of contents, you might have a lot of different pages. However, you might only want to get the pages for a particular audience. Conditions lets you get only the items that meet those audience attributes.
+
+Now let's adjust the condition just a little. Let's add a second condition so that the `audience` property has to be `writers` and the `product` property has to be gizmo. This is how you would write it:
+
+
+```liquid
+{% raw %}<ul>
+{% for sec in site.data.samplelist.mypages %}
+{% if sec.audience == "writers" and sec.product == "gizmo" %}
+<li>{{sec.url}}</li>
+{% endif %}
+{% endfor %}
+</ul>{% endraw %}
+```
+
+
+And here is the result:
+
+<div class="result">
+<ul>
+{% for sec in site.data.samplelist.mypages %}
+{% if sec.audience == "writers" and sec.product == "gizmo" %}
+<li>{{sec.url}}</li>
+{% endif %}
+{% endfor %}
+</ul>
+</div>
+
+## More resources
+
+For more examples and explanations, see this helpful post on tournemille.com: [How to create data-driven navigation in Jekyll](http://www.tournemille.com/blog/How-to-create-data-driven-navigation-in-Jekyll).
+
+{% include links.html %}
diff --git a/pages/news/news.html b/pages/news/news.html
new file mode 100644
index 0000000000000000000000000000000000000000..f3a7021d2f33d642c4e738f044f6547b720bc31f
--- /dev/null
+++ b/pages/news/news.html
@@ -0,0 +1,32 @@
+---
+title: News
+sidebar: home_sidebar
+keywords: news, blog, updates, release notes, announcements
+permalink: news.html
+toc: false
+folder: news
+---
+<div class="home">
+
+    <div class="post-list">
+        {% for post in site.posts limit:10 %}
+
+
+    <h2><a class="post-link" href="{{ post.url | remove: "/" }}">{{ post.title }}</a></h2>
+        <span class="post-meta">{{ post.date | date: "%b %-d, %Y" }} /
+            {% for tag in post.tags %}
+
+                <a href="{{ "tag_" | append: tag | append: ".html"}}">{{tag}}</a>{% unless forloop.last %}, {% endunless%}
+
+                {% endfor %}</span>
+        <p>{% if page.summary %} {{ page.summary | strip_html | strip_newlines | truncate: 160 }} {% else %} {{ post.content | truncatewords: 50 | strip_html }} {% endif %}</p>
+
+        {% endfor %}
+
+        <p><a href="feed.xml" class="btn btn-primary navbar-btn cursorNorm" role="button">RSS Subscribe{{tag}}</a></p>
+
+<hr />
+        <p>See more posts from the <a href="news_archive.html">News Archive</a>. </p>
+
+    </div>
+</div>
diff --git a/pages/news/news_archive.html b/pages/news/news_archive.html
new file mode 100644
index 0000000000000000000000000000000000000000..1e8eb0c9d953f3dbea777a35344c8d81adccc7dd
--- /dev/null
+++ b/pages/news/news_archive.html
@@ -0,0 +1,35 @@
+---
+title: News
+sidebar: mydoc_sidebar
+keywords: news, blog, updates, release notes, announcements
+permalink: news_archive.html
+toc: false
+folder: news
+---
+
+<div class="home">
+
+    <div class="post-list">
+
+
+    <section id="archive">
+        <h3>This year's posts</h3>
+        {%for post in site.posts %}
+        {% unless post.next %}
+        <ul class="this">
+            {% else %}
+            {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
+            {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
+            {% if year != nyear %}
+        </ul>
+        <h3>{{ post.date | date: '%Y' }}</h3>
+        <ul class="past">
+            {% endif %}
+            {% endunless %}
+            <li><time>{{ post.date | date:"%d %b" }}</time><a href="{{ post.url | remove: "/"}}">{{ post.title }}</a></li>
+            {% endfor %}
+        </ul>
+    </section>
+    <hr/>
+    </div>
+</div>
diff --git a/pages/product1/p1_landing_page.html b/pages/product1/p1_landing_page.html
new file mode 100644
index 0000000000000000000000000000000000000000..2f3d44a4e302012ac1f7020c9bef228883720fdb
--- /dev/null
+++ b/pages/product1/p1_landing_page.html
@@ -0,0 +1,239 @@
+---
+title: Product 1
+keywords: mydoc
+sidebar: product1_sidebar
+toc: false
+permalink: p1_landing_page.html
+folder: product1
+---
+<div class="row">
+        <div class="col-lg-12">
+            <h2 class="page-header">Services Panels</h2>
+        </div>
+        <div class="col-md-3 col-sm-6">
+            <div class="panel panel-default text-center">
+                <div class="panel-heading">
+                    <span class="fa-stack fa-5x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-tree fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="panel-body">
+                    <h4>Service One</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
+                    <a href="#" class="btn btn-primary">Learn More</a>
+                </div>
+            </div>
+        </div>
+        <div class="col-md-3 col-sm-6">
+            <div class="panel panel-default text-center">
+                <div class="panel-heading">
+                    <span class="fa-stack fa-5x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-car fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="panel-body">
+                    <h4>Service Two</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
+                    <a href="#" class="btn btn-primary">Learn More</a>
+                </div>
+            </div>
+        </div>
+        <div class="col-md-3 col-sm-6">
+            <div class="panel panel-default text-center">
+                <div class="panel-heading">
+                    <span class="fa-stack fa-5x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-support fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="panel-body">
+                    <h4>Service Three</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
+                    <a href="#" class="btn btn-primary">Learn More</a>
+                </div>
+            </div>
+        </div>
+        <div class="col-md-3 col-sm-6">
+            <div class="panel panel-default text-center">
+                <div class="panel-heading">
+                    <span class="fa-stack fa-5x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-database fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="panel-body">
+                    <h4>Service Four</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
+                    <a href="#" class="btn btn-primary">Learn More</a>
+                </div>
+            </div>
+        </div>
+    </div>
+
+    <!-- Service Tabs -->
+    <div class="row">
+        <div class="col-lg-12">
+            <h2 class="page-header">Service Tabs</h2>
+        </div>
+        <div class="col-lg-12">
+
+            <ul id="myTab" class="nav nav-tabs nav-justified">
+                <li class="active"><a href="#service-one" data-toggle="tab"><i class="fa fa-tree"></i> Service One</a>
+                </li>
+                <li class=""><a href="#service-two" data-toggle="tab"><i class="fa fa-car"></i> Service Two</a>
+                </li>
+                <li class=""><a href="#service-three" data-toggle="tab"><i class="fa fa-support"></i> Service Three</a>
+                </li>
+                <li class=""><a href="#service-four" data-toggle="tab"><i class="fa fa-database"></i> Service Four</a>
+                </li>
+            </ul>
+
+            <div id="myTabContent" class="tab-content">
+                <div class="tab-pane fade active in" id="service-one">
+                    <h4>Service One</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae repudiandae fugiat illo cupiditate excepturi esse officiis consectetur, laudantium qui voluptatem. Ad necessitatibus velit, accusantium expedita debitis impedit rerum totam id. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus quibusdam recusandae illum, nesciunt, architecto, saepe facere, voluptas eum incidunt dolores magni itaque autem neque velit in. At quia quaerat asperiores.</p>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae repudiandae fugiat illo cupiditate excepturi esse officiis consectetur, laudantium qui voluptatem. Ad necessitatibus velit, accusantium expedita debitis impedit rerum totam id. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus quibusdam recusandae illum, nesciunt, architecto, saepe facere, voluptas eum incidunt dolores magni itaque autem neque velit in. At quia quaerat asperiores.</p>
+                </div>
+                <div class="tab-pane fade" id="service-two">
+                    <h4>Service Two</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae repudiandae fugiat illo cupiditate excepturi esse officiis consectetur, laudantium qui voluptatem. Ad necessitatibus velit, accusantium expedita debitis impedit rerum totam id. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus quibusdam recusandae illum, nesciunt, architecto, saepe facere, voluptas eum incidunt dolores magni itaque autem neque velit in. At quia quaerat asperiores.</p>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae repudiandae fugiat illo cupiditate excepturi esse officiis consectetur, laudantium qui voluptatem. Ad necessitatibus velit, accusantium expedita debitis impedit rerum totam id. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus quibusdam recusandae illum, nesciunt, architecto, saepe facere, voluptas eum incidunt dolores magni itaque autem neque velit in. At quia quaerat asperiores.</p>
+                </div>
+                <div class="tab-pane fade" id="service-three">
+                    <h4>Service Three</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae repudiandae fugiat illo cupiditate excepturi esse officiis consectetur, laudantium qui voluptatem. Ad necessitatibus velit, accusantium expedita debitis impedit rerum totam id. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus quibusdam recusandae illum, nesciunt, architecto, saepe facere, voluptas eum incidunt dolores magni itaque autem neque velit in. At quia quaerat asperiores.</p>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae repudiandae fugiat illo cupiditate excepturi esse officiis consectetur, laudantium qui voluptatem. Ad necessitatibus velit, accusantium expedita debitis impedit rerum totam id. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus quibusdam recusandae illum, nesciunt, architecto, saepe facere, voluptas eum incidunt dolores magni itaque autem neque velit in. At quia quaerat asperiores.</p>
+                </div>
+                <div class="tab-pane fade" id="service-four">
+                    <h4>Service Four</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae repudiandae fugiat illo cupiditate excepturi esse officiis consectetur, laudantium qui voluptatem. Ad necessitatibus velit, accusantium expedita debitis impedit rerum totam id. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus quibusdam recusandae illum, nesciunt, architecto, saepe facere, voluptas eum incidunt dolores magni itaque autem neque velit in. At quia quaerat asperiores.</p>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae repudiandae fugiat illo cupiditate excepturi esse officiis consectetur, laudantium qui voluptatem. Ad necessitatibus velit, accusantium expedita debitis impedit rerum totam id. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus quibusdam recusandae illum, nesciunt, architecto, saepe facere, voluptas eum incidunt dolores magni itaque autem neque velit in. At quia quaerat asperiores.</p>
+                </div>
+            </div>
+
+        </div>
+    </div>
+
+    <!-- Service List -->
+    <!-- The circle icons use Font Awesome's stacked icon classes. For more information, visit http://fontawesome.io/examples/ -->
+    <div class="row">
+        <div class="col-lg-12">
+            <h2 class="page-header">Service List</h2>
+        </div>
+        <div class="col-md-4">
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-tree fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service One</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-car fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service Two</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-support fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service Three</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+        </div>
+        <div class="col-md-4">
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-database fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service Four</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-bomb fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service Five</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-bank fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service Six</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+        </div>
+        <div class="col-md-4">
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-paper-plane fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service Seven</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-space-shuttle fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service Eight</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-recycle fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service Nine</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+        </div>
+    </div>
diff --git a/pages/product1/p1_sample1.md b/pages/product1/p1_sample1.md
new file mode 100644
index 0000000000000000000000000000000000000000..4a51231a415ea79af0cb9604786fbb5548f4ee87
--- /dev/null
+++ b/pages/product1/p1_sample1.md
@@ -0,0 +1,25 @@
+---
+title: Sample 1 Topic (Product 1)
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product1_sidebar
+permalink: p1_sample1.html
+folder: product1
+---
+
+## Sample Content
+
+"Lorem Ipsum" is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product1/p1_sample2.md b/pages/product1/p1_sample2.md
new file mode 100644
index 0000000000000000000000000000000000000000..c1aee47fadd1351d6a8474aea85d52a40da64d19
--- /dev/null
+++ b/pages/product1/p1_sample2.md
@@ -0,0 +1,25 @@
+---
+title: Sample 2 Topic (Product 1)
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product1_sidebar
+permalink: p1_sample2.html
+folder: product1
+---
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product1/p1_sample3.md b/pages/product1/p1_sample3.md
new file mode 100644
index 0000000000000000000000000000000000000000..29eb813bfb716c6a2ed27c64622c7b00fc491ed3
--- /dev/null
+++ b/pages/product1/p1_sample3.md
@@ -0,0 +1,25 @@
+---
+title: Sample 3 Topic (Product 1)
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product1_sidebar
+permalink: p1_sample3.html
+folder: product1
+---
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product1/p1_sample4.md b/pages/product1/p1_sample4.md
new file mode 100644
index 0000000000000000000000000000000000000000..91c290d067e8137716708f3d5cd3d912dc16d883
--- /dev/null
+++ b/pages/product1/p1_sample4.md
@@ -0,0 +1,25 @@
+---
+title: Sample 4 Topic (Product 1)
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product1_sidebar
+permalink: p1_sample4.html
+folder: product1
+---
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product1/p1_sample5.md b/pages/product1/p1_sample5.md
new file mode 100644
index 0000000000000000000000000000000000000000..39d70c98db4be3dc69c9933c5f4a81ac318ccd04
--- /dev/null
+++ b/pages/product1/p1_sample5.md
@@ -0,0 +1,25 @@
+---
+title: Sample 5 Topic (Product 1)
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product1_sidebar
+permalink: p1_sample5.html
+folder: product1
+---
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product1/p1_sample6.md b/pages/product1/p1_sample6.md
new file mode 100644
index 0000000000000000000000000000000000000000..48ec049508fb5fda96a8e8d7b7458eadd033dd2d
--- /dev/null
+++ b/pages/product1/p1_sample6.md
@@ -0,0 +1,25 @@
+---
+title: Sample 6 Topic (Product 1)
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product1_sidebar
+permalink: p1_sample6.html
+folder: product1
+---
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product1/p1_sample7.md b/pages/product1/p1_sample7.md
new file mode 100644
index 0000000000000000000000000000000000000000..c7469039495a02f29e7f2842f37190da4d6c480f
--- /dev/null
+++ b/pages/product1/p1_sample7.md
@@ -0,0 +1,25 @@
+---
+title: Sample 7 Topic (Product 1)
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product1_sidebar
+permalink: p1_sample7.html
+folder: product1
+---
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product2/p2_landing_page.html b/pages/product2/p2_landing_page.html
new file mode 100644
index 0000000000000000000000000000000000000000..64b5d3bf6496ee8b017f5a56f21163024bb8b830
--- /dev/null
+++ b/pages/product2/p2_landing_page.html
@@ -0,0 +1,239 @@
+---
+title: Product 2
+keywords: mydoc
+sidebar: product2_sidebar
+toc: false
+permalink: p2_landing_page.html
+folder: product2
+---
+<div class="row">
+        <div class="col-lg-12">
+            <h2 class="page-header">Services Panels</h2>
+        </div>
+        <div class="col-md-3 col-sm-6">
+            <div class="panel panel-default text-center">
+                <div class="panel-heading">
+                    <span class="fa-stack fa-5x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-tree fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="panel-body">
+                    <h4>Service One</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
+                    <a href="#" class="btn btn-primary">Learn More</a>
+                </div>
+            </div>
+        </div>
+        <div class="col-md-3 col-sm-6">
+            <div class="panel panel-default text-center">
+                <div class="panel-heading">
+                    <span class="fa-stack fa-5x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-car fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="panel-body">
+                    <h4>Service Two</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
+                    <a href="#" class="btn btn-primary">Learn More</a>
+                </div>
+            </div>
+        </div>
+        <div class="col-md-3 col-sm-6">
+            <div class="panel panel-default text-center">
+                <div class="panel-heading">
+                    <span class="fa-stack fa-5x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-support fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="panel-body">
+                    <h4>Service Three</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
+                    <a href="#" class="btn btn-primary">Learn More</a>
+                </div>
+            </div>
+        </div>
+        <div class="col-md-3 col-sm-6">
+            <div class="panel panel-default text-center">
+                <div class="panel-heading">
+                    <span class="fa-stack fa-5x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-database fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="panel-body">
+                    <h4>Service Four</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
+                    <a href="#" class="btn btn-primary">Learn More</a>
+                </div>
+            </div>
+        </div>
+    </div>
+
+    <!-- Service Tabs -->
+    <div class="row">
+        <div class="col-lg-12">
+            <h2 class="page-header">Service Tabs</h2>
+        </div>
+        <div class="col-lg-12">
+
+            <ul id="myTab" class="nav nav-tabs nav-justified">
+                <li class="active"><a href="#service-one" data-toggle="tab"><i class="fa fa-tree"></i> Service One</a>
+                </li>
+                <li class=""><a href="#service-two" data-toggle="tab"><i class="fa fa-car"></i> Service Two</a>
+                </li>
+                <li class=""><a href="#service-three" data-toggle="tab"><i class="fa fa-support"></i> Service Three</a>
+                </li>
+                <li class=""><a href="#service-four" data-toggle="tab"><i class="fa fa-database"></i> Service Four</a>
+                </li>
+            </ul>
+
+            <div id="myTabContent" class="tab-content">
+                <div class="tab-pane fade active in" id="service-one">
+                    <h4>Service One</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae repudiandae fugiat illo cupiditate excepturi esse officiis consectetur, laudantium qui voluptatem. Ad necessitatibus velit, accusantium expedita debitis impedit rerum totam id. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus quibusdam recusandae illum, nesciunt, architecto, saepe facere, voluptas eum incidunt dolores magni itaque autem neque velit in. At quia quaerat asperiores.</p>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae repudiandae fugiat illo cupiditate excepturi esse officiis consectetur, laudantium qui voluptatem. Ad necessitatibus velit, accusantium expedita debitis impedit rerum totam id. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus quibusdam recusandae illum, nesciunt, architecto, saepe facere, voluptas eum incidunt dolores magni itaque autem neque velit in. At quia quaerat asperiores.</p>
+                </div>
+                <div class="tab-pane fade" id="service-two">
+                    <h4>Service Two</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae repudiandae fugiat illo cupiditate excepturi esse officiis consectetur, laudantium qui voluptatem. Ad necessitatibus velit, accusantium expedita debitis impedit rerum totam id. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus quibusdam recusandae illum, nesciunt, architecto, saepe facere, voluptas eum incidunt dolores magni itaque autem neque velit in. At quia quaerat asperiores.</p>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae repudiandae fugiat illo cupiditate excepturi esse officiis consectetur, laudantium qui voluptatem. Ad necessitatibus velit, accusantium expedita debitis impedit rerum totam id. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus quibusdam recusandae illum, nesciunt, architecto, saepe facere, voluptas eum incidunt dolores magni itaque autem neque velit in. At quia quaerat asperiores.</p>
+                </div>
+                <div class="tab-pane fade" id="service-three">
+                    <h4>Service Three</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae repudiandae fugiat illo cupiditate excepturi esse officiis consectetur, laudantium qui voluptatem. Ad necessitatibus velit, accusantium expedita debitis impedit rerum totam id. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus quibusdam recusandae illum, nesciunt, architecto, saepe facere, voluptas eum incidunt dolores magni itaque autem neque velit in. At quia quaerat asperiores.</p>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae repudiandae fugiat illo cupiditate excepturi esse officiis consectetur, laudantium qui voluptatem. Ad necessitatibus velit, accusantium expedita debitis impedit rerum totam id. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus quibusdam recusandae illum, nesciunt, architecto, saepe facere, voluptas eum incidunt dolores magni itaque autem neque velit in. At quia quaerat asperiores.</p>
+                </div>
+                <div class="tab-pane fade" id="service-four">
+                    <h4>Service Four</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae repudiandae fugiat illo cupiditate excepturi esse officiis consectetur, laudantium qui voluptatem. Ad necessitatibus velit, accusantium expedita debitis impedit rerum totam id. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus quibusdam recusandae illum, nesciunt, architecto, saepe facere, voluptas eum incidunt dolores magni itaque autem neque velit in. At quia quaerat asperiores.</p>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae repudiandae fugiat illo cupiditate excepturi esse officiis consectetur, laudantium qui voluptatem. Ad necessitatibus velit, accusantium expedita debitis impedit rerum totam id. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus quibusdam recusandae illum, nesciunt, architecto, saepe facere, voluptas eum incidunt dolores magni itaque autem neque velit in. At quia quaerat asperiores.</p>
+                </div>
+            </div>
+
+        </div>
+    </div>
+
+    <!-- Service List -->
+    <!-- The circle icons use Font Awesome's stacked icon classes. For more information, visit http://fontawesome.io/examples/ -->
+    <div class="row">
+        <div class="col-lg-12">
+            <h2 class="page-header">Service List</h2>
+        </div>
+        <div class="col-md-4">
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-tree fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service One</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-car fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service Two</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-support fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service Three</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+        </div>
+        <div class="col-md-4">
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-database fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service Four</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-bomb fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service Five</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-bank fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service Six</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+        </div>
+        <div class="col-md-4">
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-paper-plane fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service Seven</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-space-shuttle fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service Eight</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+            <div class="media">
+                <div class="pull-left">
+                    <span class="fa-stack fa-2x">
+                          <i class="fa fa-circle fa-stack-2x text-primary"></i>
+                          <i class="fa fa-recycle fa-stack-1x fa-inverse"></i>
+                    </span>
+                </div>
+                <div class="media-body">
+                    <h4 class="media-heading">Service Nine</h4>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo itaque ipsum sit harum.</p>
+                </div>
+            </div>
+        </div>
+    </div>
diff --git a/pages/product2/p2_sample1.md b/pages/product2/p2_sample1.md
new file mode 100644
index 0000000000000000000000000000000000000000..96a7dec93a66a86a2fd083aadf3b0efca3f6617f
--- /dev/null
+++ b/pages/product2/p2_sample1.md
@@ -0,0 +1,29 @@
+---
+title: Sample 1 Topic
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product2_sidebar
+permalink: p2_sample1.html
+simple_map: true
+map_name: usermap
+box_number: 1
+folder: product2
+---
+
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product2/p2_sample10.md b/pages/product2/p2_sample10.md
new file mode 100644
index 0000000000000000000000000000000000000000..dd710c8a31c0d138e122aed9e187db89ee5278c5
--- /dev/null
+++ b/pages/product2/p2_sample10.md
@@ -0,0 +1,29 @@
+---
+title: Sample 10 Topic
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product2_sidebar
+permalink: p2_sample10.html
+complex_map: true
+map_name: usermapcomplex
+box_number: 2
+toc: false
+folder: product2
+---
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product2/p2_sample11.md b/pages/product2/p2_sample11.md
new file mode 100644
index 0000000000000000000000000000000000000000..24a6b24fc07b5f46b032f63b93bbd541c9a892a8
--- /dev/null
+++ b/pages/product2/p2_sample11.md
@@ -0,0 +1,29 @@
+---
+title: Sample 11 Topic
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product2_sidebar
+permalink: p2_sample11.html
+complex_map: true
+map_name: usermapcomplex
+box_number: 2
+toc: false
+folder: product2
+---
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product2/p2_sample12.md b/pages/product2/p2_sample12.md
new file mode 100644
index 0000000000000000000000000000000000000000..7bf34527b991689192a94c3fc50d6b7ce6341095
--- /dev/null
+++ b/pages/product2/p2_sample12.md
@@ -0,0 +1,29 @@
+---
+title: Sample 12 Topic
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product2_sidebar
+permalink: p2_sample12.html
+complex_map: true
+map_name: usermapcomplex
+box_number: 3
+toc: false
+folder: product2
+---
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product2/p2_sample13.md b/pages/product2/p2_sample13.md
new file mode 100644
index 0000000000000000000000000000000000000000..722de76ff898229c2025998eda55cdfc0d54bcc8
--- /dev/null
+++ b/pages/product2/p2_sample13.md
@@ -0,0 +1,30 @@
+---
+title: Sample 13 Topic
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product2_sidebar
+permalink: p2_sample13.html
+complex_map: true
+map_name: usermapcomplex
+box_number: 3
+toc: false
+folder: product2
+---
+
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product2/p2_sample14.md b/pages/product2/p2_sample14.md
new file mode 100644
index 0000000000000000000000000000000000000000..443d68afc17da8be826cec2190a8548e395422f7
--- /dev/null
+++ b/pages/product2/p2_sample14.md
@@ -0,0 +1,30 @@
+---
+title: Sample 14 Topic
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product2_sidebar
+permalink: p2_sample14.html
+complex_map: true
+map_name: usermapcomplex
+box_number: 3
+toc: false
+folder: product2
+---
+
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product2/p2_sample2.md b/pages/product2/p2_sample2.md
new file mode 100644
index 0000000000000000000000000000000000000000..4c8fd9e7a9a4c0f04478a933405da2a15a44a8bc
--- /dev/null
+++ b/pages/product2/p2_sample2.md
@@ -0,0 +1,30 @@
+---
+title: Sample 2 Topic
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product2_sidebar
+permalink: p2_sample2.html
+simple_map: true
+map_name: usermap
+box_number: 2
+folder: product2
+---
+
+
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product2/p2_sample3.md b/pages/product2/p2_sample3.md
new file mode 100644
index 0000000000000000000000000000000000000000..b8c6a87ae0cf8e37e9ab0a6d87d3556d0ada93c1
--- /dev/null
+++ b/pages/product2/p2_sample3.md
@@ -0,0 +1,28 @@
+---
+title: Sample 3 Topic
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product2_sidebar
+permalink: p2_sample3.html
+simple_map: true
+map_name: usermap
+box_number: 3
+folder: product2
+---
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product2/p2_sample4.md b/pages/product2/p2_sample4.md
new file mode 100644
index 0000000000000000000000000000000000000000..1046aed24d01ea429a9fb1436fb693bcb9739ac4
--- /dev/null
+++ b/pages/product2/p2_sample4.md
@@ -0,0 +1,28 @@
+---
+title: Sample 4 Topic
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product2_sidebar
+permalink: p2_sample4.html
+simple_map: true
+map_name: usermap
+box_number: 4
+folder: product2
+---
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product2/p2_sample5.md b/pages/product2/p2_sample5.md
new file mode 100644
index 0000000000000000000000000000000000000000..03dbb9f96a7b4322e0e3b9ebeddfa2153cc6cde7
--- /dev/null
+++ b/pages/product2/p2_sample5.md
@@ -0,0 +1,28 @@
+---
+title: Sample 5 Topic
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product2_sidebar
+permalink: p2_sample5.html
+simple_map: true
+map_name: usermap
+box_number: 5
+folder: product2
+---
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product2/p2_sample6.md b/pages/product2/p2_sample6.md
new file mode 100644
index 0000000000000000000000000000000000000000..f426e330b8ddf24b04a0062ed1fbb0d5fd2a6a84
--- /dev/null
+++ b/pages/product2/p2_sample6.md
@@ -0,0 +1,30 @@
+---
+title: Sample 6 Topic
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product2_sidebar
+permalink: p2_sample6.html
+simple_map: true
+map_name: usermapcomplex
+box_number: 1
+toc: false
+folder: product2
+---
+
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product2/p2_sample7.md b/pages/product2/p2_sample7.md
new file mode 100644
index 0000000000000000000000000000000000000000..22f774cf29a28dd77109c801ecc482110cdc8d82
--- /dev/null
+++ b/pages/product2/p2_sample7.md
@@ -0,0 +1,30 @@
+---
+title: Sample 7 Topic
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product2_sidebar
+permalink: p2_sample7.html
+complex_map: true
+map_name: usermapcomplex
+box_number: 1
+toc: false
+folder: product2
+---
+
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product2/p2_sample8.md b/pages/product2/p2_sample8.md
new file mode 100644
index 0000000000000000000000000000000000000000..2bcd538457a0b28903f81ed87938de89f780bc05
--- /dev/null
+++ b/pages/product2/p2_sample8.md
@@ -0,0 +1,30 @@
+---
+title: Sample 8 Topic
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product2_sidebar
+permalink: p2_sample8.html
+complex_map: true
+map_name: usermapcomplex
+box_number: 1
+toc: false
+folder: product2
+---
+
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pages/product2/p2_sample9.md b/pages/product2/p2_sample9.md
new file mode 100644
index 0000000000000000000000000000000000000000..d161e7e5edf99849b40648df32fcc6d3545eb4b8
--- /dev/null
+++ b/pages/product2/p2_sample9.md
@@ -0,0 +1,31 @@
+---
+title: Sample 9 Topic
+keywords: sample
+summary: "This is just a sample topic..."
+sidebar: product2_sidebar
+permalink: p2_sample9.html
+complex_map: true
+map_name: usermapcomplex
+box_number: 2
+toc: false
+folder: product2
+---
+
+
+
+## Sample Content
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
+
+It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
+
+
+## More sample content
+
+Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
+
+The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
+
+There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
+
+{% include links.html %}
diff --git a/pdf-all.sh b/pdf-all.sh
new file mode 100644
index 0000000000000000000000000000000000000000..131177030173f2f3aebd163db42ddd5dd9ede67e
--- /dev/null
+++ b/pdf-all.sh
@@ -0,0 +1 @@
+. pdf-mydoc.sh; . pdf-product1.sh; .  pdf-product2.sh;
\ No newline at end of file
diff --git a/pdf-mydoc.sh b/pdf-mydoc.sh
new file mode 100644
index 0000000000000000000000000000000000000000..6b682ae1fe045deb8d3ef06bdf0234d3b0712c57
--- /dev/null
+++ b/pdf-mydoc.sh
@@ -0,0 +1,14 @@
+# Note that .sh scripts work only on Mac. If you're on Windows, install Git Bash and use that as your client.
+
+echo 'Kill all Jekyll instances'
+kill -9 $(ps aux | grep '[j]ekyll' | awk '{print $2}')
+clear
+
+echo "Building PDF-friendly HTML site for Mydoc ...";
+bundle exec jekyll serve --detach --config _config.yml,pdfconfigs/config_mydoc_pdf.yml;
+echo "done";
+
+echo "Building the PDF ...";
+prince --javascript --input-list=_site/pdfconfigs/prince-list.txt -o pdf/mydoc.pdf;
+
+echo "Done. Look in the pdf directory to see if it printed successfully."
diff --git a/pdf-product1.sh b/pdf-product1.sh
new file mode 100644
index 0000000000000000000000000000000000000000..ae5c674e907355d9104213d239946d0228f4cc62
--- /dev/null
+++ b/pdf-product1.sh
@@ -0,0 +1,11 @@
+echo 'Killing all Jekyll instances'
+kill -9 $(ps aux | grep '[j]ekyll' | awk '{print $2}')
+clear
+
+echo "Building PDF-friendly HTML site for Product1 ...";
+bundle exec jekyll serve --detach --config _config.yml,pdfconfigs/config_product1_pdf.yml;
+echo "done";
+
+echo "Building the PDF ...";
+prince --javascript --input-list=_site/pdfconfigs/prince-list.txt -o pdf/product1.pdf;
+echo "done";
diff --git a/pdf-product2.sh b/pdf-product2.sh
new file mode 100644
index 0000000000000000000000000000000000000000..2bdbc73d131ab5a885fabb2f9746526e1169c5a0
--- /dev/null
+++ b/pdf-product2.sh
@@ -0,0 +1,11 @@
+echo 'Killing all Jekyll instances'
+kill -9 $(ps aux | grep '[j]ekyll' | awk '{print $2}')
+clear
+
+echo "Building PDF-friendly HTML site for Product2 ...";
+bundle exec jekyll serve --detach --config _config.yml,pdfconfigs/config_product2_pdf.yml;
+echo "done";
+
+echo "Building the PDF ...";
+prince --javascript --input-list=_site/pdfconfigs/prince-list.txt -o pdf/product2.pdf;
+echo "done";
diff --git a/pdf/mydoc.pdf b/pdf/mydoc.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..7169d6133f91b515998b7f161c66b27a6177d61e
--- /dev/null
+++ b/pdf/mydoc.pdf
@@ -0,0 +1,16246 @@
+%PDF-1.4
+%����
+
+1 0 obj
+<</Type /Catalog
+/Pages 2 0 R
+/Outlines 193 0 R>>
+endobj
+
+194 0 obj
+<</Title ()
+/Parent 193 0 R
+/Dest [3 0 R /XYZ 0 762 0]
+/Next 195 0 R>>
+endobj
+
+195 0 obj
+<</Title ()
+/Parent 193 0 R
+/Dest [5 0 R /XYZ 0 762 0]
+/Prev 194 0 R
+/Next 196 0 R>>
+endobj
+
+196 0 obj
+<</Title (Table of Contents)
+/Parent 193 0 R
+/Dest [5 0 R /XYZ 0 702 0]
+/Prev 195 0 R
+/Next 197 0 R>>
+endobj
+
+258 0 obj
+<</Title (1. Download the theme)
+/Parent 244 0 R
+/Dest [7 0 R /XYZ 0 474 0]
+/Next 259 0 R>>
+endobj
+
+259 0 obj
+<</Title (2. Install Jekyll)
+/Parent 244 0 R
+/Dest [7 0 R /XYZ 0 372 0]
+/Prev 258 0 R
+/Next 260 0 R>>
+endobj
+
+260 0 obj
+<</Title (3. Install Bundler)
+/Parent 244 0 R
+/Dest [7 0 R /XYZ 0 256 0]
+/Prev 259 0 R
+/Next 261 0 R>>
+endobj
+
+261 0 obj
+<</Title (4. Option 1: Build the Theme \(without the github-pages gem\))
+/Parent 244 0 R
+/Dest [8 0 R /XYZ 0 732 0]
+/Prev 260 0 R
+/Next 262 0 R>>
+endobj
+
+262 0 obj
+<</Title (4. Option 2: Build the Theme \(with the github-pages gem\))
+/Parent 244 0 R
+/Dest [8 0 R /XYZ 0 323 0]
+/Prev 261 0 R>>
+endobj
+
+244 0 obj
+<</Title (Build the Theme)
+/Parent 197 0 R
+/Dest [7 0 R /XYZ 0 541 0]
+/Next 245 0 R
+/First 258 0 R
+/Last 262 0 R
+/Count 5>>
+endobj
+
+245 0 obj
+<</Title (Running the site in Docker)
+/Parent 197 0 R
+/Dest [9 0 R /XYZ 0 676 0]
+/Prev 244 0 R
+/Next 246 0 R>>
+endobj
+
+246 0 obj
+<</Title (Configure the sidebar)
+/Parent 197 0 R
+/Dest [9 0 R /XYZ 0 490 0]
+/Prev 245 0 R
+/Next 247 0 R>>
+endobj
+
+247 0 obj
+<</Title (Top navigation)
+/Parent 197 0 R
+/Dest [11 0 R /XYZ 0 732 0]
+/Prev 246 0 R
+/Next 248 0 R>>
+endobj
+
+248 0 obj
+<</Title (Sidebar syntax)
+/Parent 197 0 R
+/Dest [11 0 R /XYZ 0 346 0]
+/Prev 247 0 R
+/Next 249 0 R>>
+endobj
+
+249 0 obj
+<</Title (Relative links and offline viewing)
+/Parent 197 0 R
+/Dest [15 0 R /XYZ 0 485 0]
+/Prev 248 0 R
+/Next 250 0 R>>
+endobj
+
+250 0 obj
+<</Title (Page frontmatter)
+/Parent 197 0 R
+/Dest [15 0 R /XYZ 0 291 0]
+/Prev 249 0 R
+/Next 251 0 R>>
+endobj
+
+251 0 obj
+<</Title (Where to store your documentation topics)
+/Parent 197 0 R
+/Dest [16 0 R /XYZ 0 355 0]
+/Prev 250 0 R
+/Next 252 0 R>>
+endobj
+
+252 0 obj
+<</Title (Configure the top navigation)
+/Parent 197 0 R
+/Dest [17 0 R /XYZ 0 732 0]
+/Prev 251 0 R
+/Next 253 0 R>>
+endobj
+
+253 0 obj
+<</Title (Generating PDF)
+/Parent 197 0 R
+/Dest [17 0 R /XYZ 0 530 0]
+/Prev 252 0 R
+/Next 254 0 R>>
+endobj
+
+254 0 obj
+<</Title (Blogs / News)
+/Parent 197 0 R
+/Dest [17 0 R /XYZ 0 231 0]
+/Prev 253 0 R
+/Next 255 0 R>>
+endobj
+
+255 0 obj
+<</Title (Markdown)
+/Parent 197 0 R
+/Dest [18 0 R /XYZ 0 672 0]
+/Prev 254 0 R
+/Next 256 0 R>>
+endobj
+
+256 0 obj
+<</Title (Automated links)
+/Parent 197 0 R
+/Dest [18 0 R /XYZ 0 184 0]
+/Prev 255 0 R
+/Next 257 0 R>>
+endobj
+
+257 0 obj
+<</Title (Other instructions)
+/Parent 197 0 R
+/Dest [19 0 R /XYZ 0 732 0]
+/Prev 256 0 R>>
+endobj
+
+197 0 obj
+<</Title (Getting started with the Documentation Theme for Jekyll)
+/Parent 193 0 R
+/Dest [7 0 R /XYZ 0 762 0]
+/Prev 196 0 R
+/Next 198 0 R
+/First 244 0 R
+/Last 257 0 R
+/Count 14>>
+endobj
+
+263 0 obj
+<</Title (Overview)
+/Parent 198 0 R
+/Dest [20 0 R /XYZ 0 716 0]
+/Next 264 0 R>>
+endobj
+
+264 0 obj
+<</Title (Survey of features)
+/Parent 198 0 R
+/Dest [20 0 R /XYZ 0 507 0]
+/Prev 263 0 R
+/Next 265 0 R>>
+endobj
+
+265 0 obj
+<</Title (Getting started)
+/Parent 198 0 R
+/Dest [20 0 R /XYZ 0 283 0]
+/Prev 264 0 R>>
+endobj
+
+198 0 obj
+<</Title (Introduction)
+/Parent 193 0 R
+/Dest [20 0 R /XYZ 0 762 0]
+/Prev 197 0 R
+/Next 199 0 R
+/First 263 0 R
+/Last 265 0 R
+/Count 3>>
+endobj
+
+266 0 obj
+<</Title (Supported features)
+/Parent 199 0 R
+/Dest [21 0 R /XYZ 0 575 0]
+/Next 267 0 R>>
+endobj
+
+267 0 obj
+<</Title (Features not available)
+/Parent 199 0 R
+/Dest [24 0 R /XYZ 0 352 0]
+/Prev 266 0 R>>
+endobj
+
+199 0 obj
+<</Title (Supported features)
+/Parent 193 0 R
+/Dest [21 0 R /XYZ 0 762 0]
+/Prev 198 0 R
+/Next 200 0 R
+/First 266 0 R
+/Last 267 0 R
+/Count 2>>
+endobj
+
+200 0 obj
+<</Title (About the theme's author)
+/Parent 193 0 R
+/Dest [26 0 R /XYZ 0 762 0]
+/Prev 199 0 R
+/Next 201 0 R>>
+endobj
+
+201 0 obj
+<</Title (Support)
+/Parent 193 0 R
+/Dest [27 0 R /XYZ 0 762 0]
+/Prev 200 0 R
+/Next 202 0 R>>
+endobj
+
+268 0 obj
+<</Title (Relative links)
+/Parent 202 0 R
+/Dest [28 0 R /XYZ 0 608 0]
+/Next 269 0 R>>
+endobj
+
+269 0 obj
+<</Title (Subfolders for pages)
+/Parent 202 0 R
+/Dest [28 0 R /XYZ 0 511 0]
+/Prev 268 0 R
+/Next 270 0 R>>
+endobj
+
+270 0 obj
+<</Title (Alerts templates)
+/Parent 202 0 R
+/Dest [28 0 R /XYZ 0 400 0]
+/Prev 269 0 R
+/Next 271 0 R>>
+endobj
+
+271 0 obj
+<</Title (Image templates)
+/Parent 202 0 R
+/Dest [28 0 R /XYZ 0 303 0]
+/Prev 270 0 R
+/Next 272 0 R>>
+endobj
+
+272 0 obj
+<</Title (Automated links using Markdown formatting)
+/Parent 202 0 R
+/Dest [28 0 R /XYZ 0 206 0]
+/Prev 271 0 R
+/Next 273 0 R>>
+endobj
+
+273 0 obj
+<</Title (Workflow maps)
+/Parent 202 0 R
+/Dest [29 0 R /XYZ 0 732 0]
+/Prev 272 0 R
+/Next 274 0 R>>
+endobj
+
+274 0 obj
+<</Title (Upgrading)
+/Parent 202 0 R
+/Dest [29 0 R /XYZ 0 620 0]
+/Prev 273 0 R>>
+endobj
+
+202 0 obj
+<</Title (Release notes 6.0)
+/Parent 193 0 R
+/Dest [28 0 R /XYZ 0 762 0]
+/Prev 201 0 R
+/Next 203 0 R
+/First 268 0 R
+/Last 274 0 R
+/Count 7>>
+endobj
+
+275 0 obj
+<</Title (Unique sidebars for each product)
+/Parent 203 0 R
+/Dest [30 0 R /XYZ 0 608 0]
+/Next 276 0 R>>
+endobj
+
+276 0 obj
+<</Title (Permalinks)
+/Parent 203 0 R
+/Dest [30 0 R /XYZ 0 324 0]
+/Prev 275 0 R
+/Next 277 0 R>>
+endobj
+
+277 0 obj
+<</Title (Kramdown and Rouge)
+/Parent 203 0 R
+/Dest [31 0 R /XYZ 0 732 0]
+/Prev 276 0 R
+/Next 278 0 R>>
+endobj
+
+278 0 obj
+<</Title (Blog feature)
+/Parent 203 0 R
+/Dest [31 0 R /XYZ 0 605 0]
+/Prev 277 0 R
+/Next 279 0 R>>
+endobj
+
+279 0 obj
+<</Title (Updated documentation)
+/Parent 203 0 R
+/Dest [31 0 R /XYZ 0 456 0]
+/Prev 278 0 R
+/Next 280 0 R>>
+endobj
+
+280 0 obj
+<</Title (Fixed errors)
+/Parent 203 0 R
+/Dest [31 0 R /XYZ 0 359 0]
+/Prev 279 0 R
+/Next 281 0 R>>
+endobj
+
+281 0 obj
+<</Title (Accessing the old theme)
+/Parent 203 0 R
+/Dest [31 0 R /XYZ 0 262 0]
+/Prev 280 0 R>>
+endobj
+
+203 0 obj
+<</Title (Release notes 5.0)
+/Parent 193 0 R
+/Dest [30 0 R /XYZ 0 762 0]
+/Prev 202 0 R
+/Next 204 0 R
+/First 275 0 R
+/Last 281 0 R
+/Count 7>>
+endobj
+
+282 0 obj
+<</Title (About Ruby)
+/Parent 204 0 R
+/Dest [32 0 R /XYZ 0 602 0]
+/Next 283 0 R>>
+endobj
+
+283 0 obj
+<</Title (About Ruby Gems)
+/Parent 204 0 R
+/Dest [32 0 R /XYZ 0 505 0]
+/Prev 282 0 R
+/Next 284 0 R>>
+endobj
+
+284 0 obj
+<</Title (Rubygem package managers)
+/Parent 204 0 R
+/Dest [32 0 R /XYZ 0 319 0]
+/Prev 283 0 R
+/Next 285 0 R>>
+endobj
+
+285 0 obj
+<</Title (Gemfiles)
+/Parent 204 0 R
+/Dest [34 0 R /XYZ 0 732 0]
+/Prev 284 0 R
+/Next 286 0 R>>
+endobj
+
+286 0 obj
+<</Title (Gemfile.lock)
+/Parent 204 0 R
+/Dest [35 0 R /XYZ 0 669 0]
+/Prev 285 0 R>>
+endobj
+
+204 0 obj
+<</Title (About Ruby, Gems, Bundler, and other prerequisites)
+/Parent 193 0 R
+/Dest [32 0 R /XYZ 0 762 0]
+/Prev 203 0 R
+/Next 205 0 R
+/First 282 0 R
+/Last 286 0 R
+/Count 5>>
+endobj
+
+287 0 obj
+<</Title (Ruby and RubyGems)
+/Parent 205 0 R
+/Dest [39 0 R /XYZ 0 608 0]
+/Next 288 0 R>>
+endobj
+
+288 0 obj
+<</Title (Install Homebrew)
+/Parent 205 0 R
+/Dest [40 0 R /XYZ 0 732 0]
+/Prev 287 0 R
+/Next 289 0 R>>
+endobj
+
+289 0 obj
+<</Title (Install Ruby through Homebrew)
+/Parent 205 0 R
+/Dest [40 0 R /XYZ 0 494 0]
+/Prev 288 0 R
+/Next 290 0 R>>
+endobj
+
+290 0 obj
+<</Title (Install the Jekyll gem)
+/Parent 205 0 R
+/Dest [41 0 R /XYZ 0 732 0]
+/Prev 289 0 R
+/Next 291 0 R>>
+endobj
+
+291 0 obj
+<</Title (Installing dependencies through Bundler)
+/Parent 205 0 R
+/Dest [41 0 R /XYZ 0 531 0]
+/Prev 290 0 R
+/Next 292 0 R>>
+endobj
+
+292 0 obj
+<</Title (Serve the Jekyll Documentation theme)
+/Parent 205 0 R
+/Dest [42 0 R /XYZ 0 732 0]
+/Prev 291 0 R
+/Next 293 0 R>>
+endobj
+
+293 0 obj
+<</Title <FEFF005200650073006F006C007600650020201C004E006F00200047006900740068007500620020004100500049002000610075007400680065006E007400690063006100740069006F006E201D0020006500720072006F00720073>
+/Parent 205 0 R
+/Dest [42 0 R /XYZ 0 590 0]
+/Prev 292 0 R>>
+endobj
+
+205 0 obj
+<</Title (Install Jekyll on Mac)
+/Parent 193 0 R
+/Dest [39 0 R /XYZ 0 762 0]
+/Prev 204 0 R
+/Next 206 0 R
+/First 287 0 R
+/Last 293 0 R
+/Count 7>>
+endobj
+
+294 0 obj
+<</Title (Install Ruby)
+/Parent 206 0 R
+/Dest [44 0 R /XYZ 0 655 0]
+/Next 295 0 R>>
+endobj
+
+295 0 obj
+<</Title (Install Ruby Development Kit)
+/Parent 206 0 R
+/Dest [44 0 R /XYZ 0 475 0]
+/Prev 294 0 R
+/Next 296 0 R>>
+endobj
+
+296 0 obj
+<</Title (Install the Jekyll gem)
+/Parent 206 0 R
+/Dest [45 0 R /XYZ 0 717 0]
+/Prev 295 0 R
+/Next 297 0 R>>
+endobj
+
+297 0 obj
+<</Title (Installing dependencies through Bundler)
+/Parent 206 0 R
+/Dest [45 0 R /XYZ 0 531 0]
+/Prev 296 0 R
+/Next 298 0 R>>
+endobj
+
+298 0 obj
+<</Title (Install Bundler)
+/Parent 206 0 R
+/Dest [45 0 R /XYZ 0 344 0]
+/Prev 297 0 R
+/Next 299 0 R>>
+endobj
+
+299 0 obj
+<</Title (Git Clients for Windows)
+/Parent 206 0 R
+/Dest [46 0 R /XYZ 0 507 0]
+/Prev 298 0 R
+/Next 300 0 R>>
+endobj
+
+300 0 obj
+<</Title (Serve the Jekyll Documentation theme)
+/Parent 206 0 R
+/Dest [46 0 R /XYZ 0 410 0]
+/Prev 299 0 R
+/Next 301 0 R>>
+endobj
+
+301 0 obj
+<</Title (Resolving Github Metadata errors)
+/Parent 206 0 R
+/Dest [46 0 R /XYZ 0 231 0]
+/Prev 300 0 R>>
+endobj
+
+206 0 obj
+<</Title (Install Jekyll on Windows)
+/Parent 193 0 R
+/Dest [44 0 R /XYZ 0 762 0]
+/Prev 205 0 R
+/Next 207 0 R
+/First 294 0 R
+/Last 301 0 R
+/Count 8>>
+endobj
+
+302 0 obj
+<</Title (Where to author content)
+/Parent 207 0 R
+/Dest [48 0 R /XYZ 0 625 0]
+/Next 303 0 R>>
+endobj
+
+303 0 obj
+<</Title (Where to save pages)
+/Parent 207 0 R
+/Dest [48 0 R /XYZ 0 528 0]
+/Prev 302 0 R
+/Next 304 0 R>>
+endobj
+
+304 0 obj
+<</Title (Frontmatter)
+/Parent 207 0 R
+/Dest [48 0 R /XYZ 0 349 0]
+/Prev 303 0 R
+/Next 305 0 R>>
+endobj
+
+305 0 obj
+<</Title (Colons in page titles)
+/Parent 207 0 R
+/Dest [50 0 R /XYZ 0 202 0]
+/Prev 304 0 R
+/Next 306 0 R>>
+endobj
+
+306 0 obj
+<</Title (Page names and excluding files from outputs)
+/Parent 207 0 R
+/Dest [51 0 R /XYZ 0 732 0]
+/Prev 305 0 R
+/Next 307 0 R>>
+endobj
+
+307 0 obj
+<</Title (Saving pages as drafts)
+/Parent 207 0 R
+/Dest [51 0 R /XYZ 0 483 0]
+/Prev 306 0 R
+/Next 308 0 R>>
+endobj
+
+308 0 obj
+<</Title (Markdown or HTML format)
+/Parent 207 0 R
+/Dest [51 0 R /XYZ 0 372 0]
+/Prev 307 0 R
+/Next 309 0 R>>
+endobj
+
+309 0 obj
+<</Title (Page names)
+/Parent 207 0 R
+/Dest [52 0 R /XYZ 0 694 0]
+/Prev 308 0 R
+/Next 310 0 R>>
+endobj
+
+310 0 obj
+<</Title (Kramdown Markdown)
+/Parent 207 0 R
+/Dest [52 0 R /XYZ 0 530 0]
+/Prev 309 0 R
+/Next 311 0 R>>
+endobj
+
+311 0 obj
+<</Title (Automatic mini-TOCs)
+/Parent 207 0 R
+/Dest [52 0 R /XYZ 0 208 0]
+/Prev 310 0 R
+/Next 312 0 R>>
+endobj
+
+312 0 obj
+<</Title (Headings)
+/Parent 207 0 R
+/Dest [53 0 R /XYZ 0 694 0]
+/Prev 311 0 R
+/Next 313 0 R>>
+endobj
+
+318 0 obj
+<</Title (Fourth-level heading)
+/Parent 317 0 R
+/Dest [53 0 R /XYZ 0 219 0]>>
+endobj
+
+317 0 obj
+<</Title (Third-level heading)
+/Parent 313 0 R
+/Dest [53 0 R /XYZ 0 362 0]
+/First 318 0 R
+/Last 318 0 R
+/Count 1>>
+endobj
+
+313 0 obj
+<</Title (Second-level heading)
+/Parent 207 0 R
+/Dest [53 0 R /XYZ 0 515 0]
+/Prev 312 0 R
+/Next 314 0 R
+/First 317 0 R
+/Last 317 0 R
+/Count 1>>
+endobj
+
+314 0 obj
+<</Title (Headings with ID Tags)
+/Parent 207 0 R
+/Dest [53 0 R /XYZ 0 185 0]
+/Prev 313 0 R
+/Next 315 0 R>>
+endobj
+
+315 0 obj
+<</Title (Specify a particular page layout)
+/Parent 207 0 R
+/Dest [54 0 R /XYZ 0 549 0]
+/Prev 314 0 R
+/Next 316 0 R>>
+endobj
+
+316 0 obj
+<</Title (Comments)
+/Parent 207 0 R
+/Dest [54 0 R /XYZ 0 415 0]
+/Prev 315 0 R>>
+endobj
+
+207 0 obj
+<</Title (Pages)
+/Parent 193 0 R
+/Dest [48 0 R /XYZ 0 762 0]
+/Prev 206 0 R
+/Next 208 0 R
+/First 302 0 R
+/Last 316 0 R
+/Count 15>>
+endobj
+
+319 0 obj
+<</Title (About posts)
+/Parent 208 0 R
+/Dest [55 0 R /XYZ 0 660 0]
+/Next 320 0 R>>
+endobj
+
+320 0 obj
+<</Title (Allowed frontmatter)
+/Parent 208 0 R
+/Dest [55 0 R /XYZ 0 450 0]
+/Prev 319 0 R>>
+endobj
+
+208 0 obj
+<</Title (Posts)
+/Parent 193 0 R
+/Dest [55 0 R /XYZ 0 762 0]
+/Prev 207 0 R
+/Next 209 0 R
+/First 319 0 R
+/Last 320 0 R
+/Count 2>>
+endobj
+
+321 0 obj
+<</Title (Bulleted Lists)
+/Parent 209 0 R
+/Dest [57 0 R /XYZ 0 660 0]
+/Next 322 0 R>>
+endobj
+
+322 0 obj
+<</Title (Numbered list)
+/Parent 209 0 R
+/Dest [57 0 R /XYZ 0 415 0]
+/Prev 321 0 R
+/Next 323 0 R>>
+endobj
+
+323 0 obj
+<</Title (Complex Lists)
+/Parent 209 0 R
+/Dest [58 0 R /XYZ 0 732 0]
+/Prev 322 0 R
+/Next 324 0 R>>
+endobj
+
+325 0 obj
+<</Title (Key Principle to Remember with Lists)
+/Parent 324 0 R
+/Dest [60 0 R /XYZ 0 732 0]>>
+endobj
+
+324 0 obj
+<</Title (Another Complex List)
+/Parent 209 0 R
+/Dest [58 0 R /XYZ 0 286 0]
+/Prev 323 0 R
+/First 325 0 R
+/Last 325 0 R
+/Count 1>>
+endobj
+
+209 0 obj
+<</Title (Lists)
+/Parent 193 0 R
+/Dest [57 0 R /XYZ 0 762 0]
+/Prev 208 0 R
+/Next 210 0 R
+/First 321 0 R
+/Last 324 0 R
+/Count 4>>
+endobj
+
+326 0 obj
+<</Title (About Liquid and conditional statements)
+/Parent 210 0 R
+/Dest [61 0 R /XYZ 0 625 0]
+/Next 327 0 R>>
+endobj
+
+327 0 obj
+<</Title (Where to store filtering values)
+/Parent 210 0 R
+/Dest [61 0 R /XYZ 0 234 0]
+/Prev 326 0 R
+/Next 328 0 R>>
+endobj
+
+328 0 obj
+<</Title (Conditional logic based on config file value)
+/Parent 210 0 R
+/Dest [62 0 R /XYZ 0 732 0]
+/Prev 327 0 R
+/Next 329 0 R>>
+endobj
+
+329 0 obj
+<</Title (Or operator)
+/Parent 210 0 R
+/Dest [63 0 R /XYZ 0 732 0]
+/Prev 328 0 R
+/Next 330 0 R>>
+endobj
+
+330 0 obj
+<</Title (Unless operator)
+/Parent 210 0 R
+/Dest [63 0 R /XYZ 0 379 0]
+/Prev 329 0 R
+/Next 331 0 R>>
+endobj
+
+331 0 obj
+<</Title (Storing conditions in the _data folder)
+/Parent 210 0 R
+/Dest [63 0 R /XYZ 0 149 0]
+/Prev 330 0 R
+/Next 332 0 R>>
+endobj
+
+332 0 obj
+<</Title (Specifying the location for _data)
+/Parent 210 0 R
+/Dest [64 0 R /XYZ 0 592 0]
+/Prev 331 0 R
+/Next 333 0 R>>
+endobj
+
+333 0 obj
+<</Title (Conditions versus includes)
+/Parent 210 0 R
+/Dest [64 0 R /XYZ 0 249 0]
+/Prev 332 0 R>>
+endobj
+
+210 0 obj
+<</Title (Conditional logic)
+/Parent 193 0 R
+/Dest [61 0 R /XYZ 0 762 0]
+/Prev 209 0 R
+/Next 211 0 R
+/First 326 0 R
+/Last 333 0 R
+/Count 8>>
+endobj
+
+334 0 obj
+<</Title (About content reuse)
+/Parent 211 0 R
+/Dest [66 0 R /XYZ 0 625 0]
+/Next 335 0 R>>
+endobj
+
+335 0 obj
+<</Title (Page-level variables)
+/Parent 211 0 R
+/Dest [66 0 R /XYZ 0 364 0]
+/Prev 334 0 R>>
+endobj
+
+211 0 obj
+<</Title (Content reuse)
+/Parent 193 0 R
+/Dest [66 0 R /XYZ 0 762 0]
+/Prev 210 0 R
+/Next 212 0 R
+/First 334 0 R
+/Last 335 0 R
+/Count 2>>
+endobj
+
+336 0 obj
+<</Title (What are collections)
+/Parent 212 0 R
+/Dest [68 0 R /XYZ 0 625 0]
+/Next 337 0 R>>
+endobj
+
+337 0 obj
+<</Title (Create a collection)
+/Parent 212 0 R
+/Dest [68 0 R /XYZ 0 513 0]
+/Prev 336 0 R
+/Next 338 0 R>>
+endobj
+
+338 0 obj
+<</Title (Interacting with collections)
+/Parent 212 0 R
+/Dest [68 0 R /XYZ 0 337 0]
+/Prev 337 0 R
+/Next 339 0 R>>
+endobj
+
+339 0 obj
+<</Title (How to use collections)
+/Parent 212 0 R
+/Dest [68 0 R /XYZ 0 202 0]
+/Prev 338 0 R
+/Next 340 0 R>>
+endobj
+
+340 0 obj
+<</Title (Video tutorial on collections)
+/Parent 212 0 R
+/Dest [69 0 R /XYZ 0 732 0]
+/Prev 339 0 R>>
+endobj
+
+212 0 obj
+<</Title (Collections)
+/Parent 193 0 R
+/Dest [68 0 R /XYZ 0 762 0]
+/Prev 211 0 R
+/Next 213 0 R
+/First 336 0 R
+/Last 340 0 R
+/Count 5>>
+endobj
+
+341 0 obj
+<</Title (About text editors and WebStorm)
+/Parent 213 0 R
+/Dest [70 0 R /XYZ 0 625 0]
+/Next 342 0 R>>
+endobj
+
+342 0 obj
+<</Title (Remove unnecessary plugins)
+/Parent 213 0 R
+/Dest [70 0 R /XYZ 0 506 0]
+/Prev 341 0 R
+/Next 343 0 R>>
+endobj
+
+343 0 obj
+<</Title (Set default tab indent to 3 spaces instead of 4)
+/Parent 213 0 R
+/Dest [70 0 R /XYZ 0 394 0]
+/Prev 342 0 R
+/Next 344 0 R>>
+endobj
+
+344 0 obj
+<</Title (Add the Markdown Support plugin)
+/Parent 213 0 R
+/Dest [70 0 R /XYZ 0 222 0]
+/Prev 343 0 R
+/Next 345 0 R>>
+endobj
+
+345 0 obj
+<</Title (Enable Soft Wraps \(word wrapping\))
+/Parent 213 0 R
+/Dest [71 0 R /XYZ 0 732 0]
+/Prev 344 0 R
+/Next 346 0 R>>
+endobj
+
+346 0 obj
+<</Title (Exclude a directory)
+/Parent 213 0 R
+/Dest [71 0 R /XYZ 0 620 0]
+/Prev 345 0 R
+/Next 347 0 R>>
+endobj
+
+347 0 obj
+<</Title (Set tabs to 4 spaces)
+/Parent 213 0 R
+/Dest [71 0 R /XYZ 0 523 0]
+/Prev 346 0 R
+/Next 348 0 R>>
+endobj
+
+348 0 obj
+<</Title (Shortcuts)
+/Parent 213 0 R
+/Dest [71 0 R /XYZ 0 374 0]
+/Prev 347 0 R
+/Next 349 0 R>>
+endobj
+
+349 0 obj
+<</Title (Finding files)
+/Parent 213 0 R
+/Dest [72 0 R /XYZ 0 415 0]
+/Prev 348 0 R
+/Next 350 0 R>>
+endobj
+
+350 0 obj
+<</Title (Identifying changed files)
+/Parent 213 0 R
+/Dest [72 0 R /XYZ 0 318 0]
+/Prev 349 0 R
+/Next 351 0 R>>
+endobj
+
+351 0 obj
+<</Title (Creating file templates)
+/Parent 213 0 R
+/Dest [72 0 R /XYZ 0 236 0]
+/Prev 350 0 R
+/Next 352 0 R>>
+endobj
+
+352 0 obj
+<</Title (Disable pair quotes)
+/Parent 213 0 R
+/Dest [73 0 R /XYZ 0 567 0]
+/Prev 351 0 R>>
+endobj
+
+213 0 obj
+<</Title (WebStorm Text Editor)
+/Parent 193 0 R
+/Dest [70 0 R /XYZ 0 762 0]
+/Prev 212 0 R
+/Next 214 0 R
+/First 341 0 R
+/Last 352 0 R
+/Count 12>>
+endobj
+
+353 0 obj
+<</Title (Atom Shortcuts)
+/Parent 214 0 R
+/Dest [74 0 R /XYZ 0 289 0]>>
+endobj
+
+214 0 obj
+<</Title (Atom Text Editor)
+/Parent 193 0 R
+/Dest [74 0 R /XYZ 0 762 0]
+/Prev 213 0 R
+/Next 215 0 R
+/First 353 0 R
+/Last 353 0 R
+/Count 1>>
+endobj
+
+354 0 obj
+<</Title (Navgoco foundation)
+/Parent 215 0 R
+/Dest [75 0 R /XYZ 0 608 0]
+/Next 355 0 R>>
+endobj
+
+355 0 obj
+<</Title (Accordion sidebar feature)
+/Parent 215 0 R
+/Dest [75 0 R /XYZ 0 346 0]
+/Prev 354 0 R
+/Next 356 0 R>>
+endobj
+
+356 0 obj
+<</Title (Fixed position sidebar)
+/Parent 215 0 R
+/Dest [76 0 R /XYZ 0 694 0]
+/Prev 355 0 R
+/Next 357 0 R>>
+endobj
+
+357 0 obj
+<</Title (Opening sidebar links into external pages)
+/Parent 215 0 R
+/Dest [76 0 R /XYZ 0 463 0]
+/Prev 356 0 R>>
+endobj
+
+215 0 obj
+<</Title (Sidebar Navigation)
+/Parent 193 0 R
+/Dest [75 0 R /XYZ 0 762 0]
+/Prev 214 0 R
+/Next 216 0 R
+/First 354 0 R
+/Last 357 0 R
+/Count 4>>
+endobj
+
+358 0 obj
+<</Title (Overview)
+/Parent 216 0 R
+/Dest [78 0 R /XYZ 0 625 0]
+/Next 359 0 R>>
+endobj
+
+359 0 obj
+<</Title (YAML overview)
+/Parent 216 0 R
+/Dest [78 0 R /XYZ 0 341 0]
+/Prev 358 0 R
+/Next 360 0 R>>
+endobj
+
+360 0 obj
+<</Title (YAML basics)
+/Parent 216 0 R
+/Dest [79 0 R /XYZ 0 732 0]
+/Prev 359 0 R
+/Next 361 0 R>>
+endobj
+
+361 0 obj
+<</Title (Example 1: Simple mapping)
+/Parent 216 0 R
+/Dest [79 0 R /XYZ 0 253 0]
+/Prev 360 0 R
+/Next 362 0 R>>
+endobj
+
+362 0 obj
+<</Title (Example 2: Line breaks)
+/Parent 216 0 R
+/Dest [80 0 R /XYZ 0 537 0]
+/Prev 361 0 R
+/Next 363 0 R>>
+endobj
+
+363 0 obj
+<</Title (Example 3: Simple list)
+/Parent 216 0 R
+/Dest [81 0 R /XYZ 0 483 0]
+/Prev 362 0 R
+/Next 364 0 R>>
+endobj
+
+371 0 obj
+<</Title (Regions)
+/Parent 364 0 R
+/Dest [82 0 R /XYZ 0 196 0]>>
+endobj
+
+364 0 obj
+<</Title (Example 4: List items)
+/Parent 216 0 R
+/Dest [82 0 R /XYZ 0 648 0]
+/Prev 363 0 R
+/Next 365 0 R
+/First 371 0 R
+/Last 371 0 R
+/Count 1>>
+endobj
+
+372 0 obj
+<</Title (Group 1)
+/Parent 365 0 R
+/Dest [84 0 R /XYZ 0 686 0]
+/Next 373 0 R>>
+endobj
+
+373 0 obj
+<</Title (Group 2)
+/Parent 365 0 R
+/Dest [84 0 R /XYZ 0 592 0]
+/Prev 372 0 R
+/Next 374 0 R>>
+endobj
+
+374 0 obj
+<</Title (Group 3)
+/Parent 365 0 R
+/Dest [84 0 R /XYZ 0 498 0]
+/Prev 373 0 R>>
+endobj
+
+365 0 obj
+<</Title (Example 5: Table of contents)
+/Parent 216 0 R
+/Dest [83 0 R /XYZ 0 597 0]
+/Prev 364 0 R
+/Next 366 0 R
+/First 372 0 R
+/Last 374 0 R
+/Count 3>>
+endobj
+
+366 0 obj
+<</Title (Example 6: Variables)
+/Parent 216 0 R
+/Dest [84 0 R /XYZ 0 388 0]
+/Prev 365 0 R
+/Next 367 0 R>>
+endobj
+
+367 0 obj
+<</Title (Example 7: Positions in lists)
+/Parent 216 0 R
+/Dest [85 0 R /XYZ 0 559 0]
+/Prev 366 0 R
+/Next 368 0 R>>
+endobj
+
+368 0 obj
+<</Title (Example 8: Properties from list items at specific positions)
+/Parent 216 0 R
+/Dest [86 0 R /XYZ 0 732 0]
+/Prev 367 0 R
+/Next 369 0 R>>
+endobj
+
+369 0 obj
+<</Title (Example 9: Conditions)
+/Parent 216 0 R
+/Dest [86 0 R /XYZ 0 291 0]
+/Prev 368 0 R
+/Next 370 0 R>>
+endobj
+
+370 0 obj
+<</Title (More resources)
+/Parent 216 0 R
+/Dest [88 0 R /XYZ 0 422 0]
+/Prev 369 0 R>>
+endobj
+
+216 0 obj
+<</Title (YAML tutorial in the context of Jekyll)
+/Parent 193 0 R
+/Dest [78 0 R /XYZ 0 762 0]
+/Prev 215 0 R
+/Next 217 0 R
+/First 358 0 R
+/Last 370 0 R
+/Count 13>>
+endobj
+
+375 0 obj
+<</Title (Add a tag to a page)
+/Parent 217 0 R
+/Dest [89 0 R /XYZ 0 625 0]
+/Next 376 0 R>>
+endobj
+
+376 0 obj
+<</Title (Tags overview)
+/Parent 217 0 R
+/Dest [89 0 R /XYZ 0 428 0]
+/Prev 375 0 R
+/Next 377 0 R>>
+endobj
+
+377 0 obj
+<</Title (Setting up tags)
+/Parent 217 0 R
+/Dest [90 0 R /XYZ 0 724 0]
+/Prev 376 0 R
+/Next 378 0 R>>
+endobj
+
+378 0 obj
+<</Title (Retrieving pages for a specific tag)
+/Parent 217 0 R
+/Dest [91 0 R /XYZ 0 340 0]
+/Prev 377 0 R
+/Next 379 0 R>>
+endobj
+
+379 0 obj
+<</Title (Efficiency)
+/Parent 217 0 R
+/Dest [93 0 R /XYZ 0 254 0]
+/Prev 378 0 R
+/Next 380 0 R>>
+endobj
+
+380 0 obj
+<</Title (Empty tags?)
+/Parent 217 0 R
+/Dest [94 0 R /XYZ 0 687 0]
+/Prev 379 0 R
+/Next 381 0 R>>
+endobj
+
+381 0 obj
+<</Title (Remembering the right tags)
+/Parent 217 0 R
+/Dest [94 0 R /XYZ 0 508 0]
+/Prev 380 0 R>>
+endobj
+
+217 0 obj
+<</Title (Tags)
+/Parent 193 0 R
+/Dest [89 0 R /XYZ 0 762 0]
+/Prev 216 0 R
+/Next 218 0 R
+/First 375 0 R
+/Last 381 0 R
+/Count 7>>
+endobj
+
+382 0 obj
+<</Title (Using series for pages)
+/Parent 218 0 R
+/Dest [95 0 R /XYZ 0 642 0]
+/Next 383 0 R>>
+endobj
+
+383 0 obj
+<</Title (1. Create the series button)
+/Parent 218 0 R
+/Dest [95 0 R /XYZ 0 561 0]
+/Prev 382 0 R
+/Next 384 0 R>>
+endobj
+
+384 0 obj
+<</Title <FEFF0032002E002000430072006500610074006500200074006800650020201C006E006500780074201D00200069006E0063006C007500640065>
+/Parent 218 0 R
+/Dest [96 0 R /XYZ 0 655 0]
+/Prev 383 0 R
+/Next 385 0 R>>
+endobj
+
+385 0 obj
+<</Title (3. Add the correct frontmatter to each of your series pages)
+/Parent 218 0 R
+/Dest [96 0 R /XYZ 0 330 0]
+/Prev 384 0 R
+/Next 386 0 R>>
+endobj
+
+386 0 obj
+<</Title (4. Add links to the series button and next button on each page.)
+/Parent 218 0 R
+/Dest [97 0 R /XYZ 0 709 0]
+/Prev 385 0 R
+/Next 387 0 R>>
+endobj
+
+387 0 obj
+<</Title (Changing the series drop-down color)
+/Parent 218 0 R
+/Dest [97 0 R /XYZ 0 463 0]
+/Prev 386 0 R
+/Next 388 0 R>>
+endobj
+
+388 0 obj
+<</Title (Using a collection with your series)
+/Parent 218 0 R
+/Dest [97 0 R /XYZ 0 336 0]
+/Prev 387 0 R>>
+endobj
+
+218 0 obj
+<</Title (Series)
+/Parent 193 0 R
+/Dest [95 0 R /XYZ 0 762 0]
+/Prev 217 0 R
+/Next 219 0 R
+/First 382 0 R
+/Last 388 0 R
+/Count 7>>
+endobj
+
+389 0 obj
+<</Title (Creating tooltips)
+/Parent 219 0 R
+/Dest [98 0 R /XYZ 0 625 0]>>
+endobj
+
+219 0 obj
+<</Title (Tooltips)
+/Parent 193 0 R
+/Dest [98 0 R /XYZ 0 762 0]
+/Prev 218 0 R
+/Next 220 0 R
+/First 389 0 R
+/Last 389 0 R
+/Count 1>>
+endobj
+
+390 0 obj
+<</Title (About alerts)
+/Parent 220 0 R
+/Dest [99 0 R /XYZ 0 642 0]
+/Next 391 0 R>>
+endobj
+
+391 0 obj
+<</Title (Alerts)
+/Parent 220 0 R
+/Dest [99 0 R /XYZ 0 531 0]
+/Prev 390 0 R
+/Next 392 0 R>>
+endobj
+
+392 0 obj
+<</Title (Using block level tags inside the alerts)
+/Parent 220 0 R
+/Dest [100 0 R /XYZ 0 732 0]
+/Prev 391 0 R
+/Next 393 0 R>>
+endobj
+
+393 0 obj
+<</Title (Types of alerts available)
+/Parent 220 0 R
+/Dest [101 0 R /XYZ 0 568 0]
+/Prev 392 0 R
+/Next 394 0 R>>
+endobj
+
+394 0 obj
+<</Title (Callouts)
+/Parent 220 0 R
+/Dest [102 0 R /XYZ 0 618 0]
+/Prev 393 0 R
+/Next 395 0 R>>
+endobj
+
+395 0 obj
+<</Title (Use Liquid variables inside parameters with includes)
+/Parent 220 0 R
+/Dest [104 0 R /XYZ 0 319 0]
+/Prev 394 0 R
+/Next 396 0 R>>
+endobj
+
+396 0 obj
+<</Title (Markdown inside of callouts and alerts)
+/Parent 220 0 R
+/Dest [106 0 R /XYZ 0 732 0]
+/Prev 395 0 R
+/Next 397 0 R>>
+endobj
+
+397 0 obj
+<</Title (Validity checking)
+/Parent 220 0 R
+/Dest [106 0 R /XYZ 0 605 0]
+/Prev 396 0 R
+/Next 398 0 R>>
+endobj
+
+398 0 obj
+<</Title (Blast a warning to users on every page)
+/Parent 220 0 R
+/Dest [106 0 R /XYZ 0 318 0]
+/Prev 397 0 R>>
+endobj
+
+220 0 obj
+<</Title (Alerts)
+/Parent 193 0 R
+/Dest [99 0 R /XYZ 0 762 0]
+/Prev 219 0 R
+/Next 221 0 R
+/First 390 0 R
+/Last 398 0 R
+/Count 9>>
+endobj
+
+399 0 obj
+<</Title (Font icon options)
+/Parent 221 0 R
+/Dest [107 0 R /XYZ 0 625 0]
+/Next 400 0 R>>
+endobj
+
+400 0 obj
+<</Title (External icons)
+/Parent 221 0 R
+/Dest [107 0 R /XYZ 0 513 0]
+/Prev 399 0 R
+/Next 401 0 R>>
+endobj
+
+401 0 obj
+<</Title (See Font Awesome icons available)
+/Parent 221 0 R
+/Dest [107 0 R /XYZ 0 233 0]
+/Prev 400 0 R
+/Next 402 0 R>>
+endobj
+
+402 0 obj
+<</Title (Creating your own combinations)
+/Parent 221 0 R
+/Dest [110 0 R /XYZ 0 631 0]
+/Prev 401 0 R
+/Next 403 0 R>>
+endobj
+
+403 0 obj
+<</Title (Glyphicon icons available)
+/Parent 221 0 R
+/Dest [110 0 R /XYZ 0 236 0]
+/Prev 402 0 R
+/Next 404 0 R>>
+endobj
+
+404 0 obj
+<</Title (Callouts)
+/Parent 221 0 R
+/Dest [112 0 R /XYZ 0 715 0]
+/Prev 403 0 R>>
+endobj
+
+221 0 obj
+<</Title (Icons)
+/Parent 193 0 R
+/Dest [107 0 R /XYZ 0 762 0]
+/Prev 220 0 R
+/Next 222 0 R
+/First 399 0 R
+/Last 404 0 R
+/Count 6>>
+endobj
+
+405 0 obj
+<</Title (Image Include Template)
+/Parent 222 0 R
+/Dest [114 0 R /XYZ 0 642 0]
+/Next 406 0 R>>
+endobj
+
+406 0 obj
+<</Title (Inline image includes)
+/Parent 222 0 R
+/Dest [115 0 R /XYZ 0 718 0]
+/Prev 405 0 R
+/Next 407 0 R>>
+endobj
+
+407 0 obj
+<</Title (SVG Images)
+/Parent 222 0 R
+/Dest [115 0 R /XYZ 0 370 0]
+/Prev 406 0 R>>
+endobj
+
+222 0 obj
+<</Title (Images)
+/Parent 193 0 R
+/Dest [114 0 R /XYZ 0 762 0]
+/Prev 221 0 R
+/Next 223 0 R
+/First 405 0 R
+/Last 407 0 R
+/Count 3>>
+endobj
+
+408 0 obj
+<</Title (Code Samples)
+/Parent 223 0 R
+/Dest [119 0 R /XYZ 0 660 0]>>
+endobj
+
+223 0 obj
+<</Title (Code samples)
+/Parent 193 0 R
+/Dest [119 0 R /XYZ 0 762 0]
+/Prev 222 0 R
+/Next 224 0 R
+/First 408 0 R
+/Last 408 0 R
+/Count 1>>
+endobj
+
+409 0 obj
+<</Title (About labels)
+/Parent 224 0 R
+/Dest [120 0 R /XYZ 0 642 0]>>
+endobj
+
+224 0 obj
+<</Title (Labels)
+/Parent 193 0 R
+/Dest [120 0 R /XYZ 0 762 0]
+/Prev 223 0 R
+/Next 225 0 R
+/First 409 0 R
+/Last 409 0 R
+/Count 1>>
+endobj
+
+410 0 obj
+<</Title (Create an external link)
+/Parent 225 0 R
+/Dest [121 0 R /XYZ 0 608 0]
+/Next 411 0 R>>
+endobj
+
+411 0 obj
+<</Title (Linking to internal pages)
+/Parent 225 0 R
+/Dest [121 0 R /XYZ 0 482 0]
+/Prev 410 0 R
+/Next 412 0 R>>
+endobj
+
+412 0 obj
+<</Title (Automated links)
+/Parent 225 0 R
+/Dest [121 0 R /XYZ 0 318 0]
+/Prev 411 0 R
+/Next 413 0 R>>
+endobj
+
+413 0 obj
+<</Title (Automated links to headings on pages)
+/Parent 225 0 R
+/Dest [122 0 R /XYZ 0 189 0]
+/Prev 412 0 R>>
+endobj
+
+225 0 obj
+<</Title (Links)
+/Parent 193 0 R
+/Dest [121 0 R /XYZ 0 762 0]
+/Prev 224 0 R
+/Next 226 0 R
+/First 410 0 R
+/Last 413 0 R
+/Count 4>>
+endobj
+
+414 0 obj
+<</Title (Common uses)
+/Parent 226 0 R
+/Dest [124 0 R /XYZ 0 608 0]
+/Next 415 0 R>>
+endobj
+
+415 0 obj
+<</Title (Navtabs demo)
+/Parent 226 0 R
+/Dest [124 0 R /XYZ 0 436 0]
+/Prev 414 0 R
+/Next 416 0 R>>
+endobj
+
+416 0 obj
+<</Title (Profile)
+/Parent 226 0 R
+/Dest [124 0 R /XYZ 0 305 0]
+/Prev 415 0 R
+/Next 417 0 R>>
+endobj
+
+417 0 obj
+<</Title (Code)
+/Parent 226 0 R
+/Dest [125 0 R /XYZ 0 670 0]
+/Prev 416 0 R
+/Next 418 0 R>>
+endobj
+
+418 0 obj
+<</Title (Design constraints)
+/Parent 226 0 R
+/Dest [125 0 R /XYZ 0 265 0]
+/Prev 417 0 R
+/Next 419 0 R>>
+endobj
+
+419 0 obj
+<</Title (Appearance in the mini-TOC)
+/Parent 226 0 R
+/Dest [126 0 R /XYZ 0 732 0]
+/Prev 418 0 R
+/Next 420 0 R>>
+endobj
+
+420 0 obj
+<</Title (Must use HTML)
+/Parent 226 0 R
+/Dest [126 0 R /XYZ 0 605 0]
+/Prev 419 0 R
+/Next 421 0 R>>
+endobj
+
+421 0 obj
+<</Title (Match up ID tags)
+/Parent 226 0 R
+/Dest [126 0 R /XYZ 0 523 0]
+/Prev 420 0 R
+/Next 422 0 R>>
+endobj
+
+422 0 obj
+<</Title (Set an active tab)
+/Parent 226 0 R
+/Dest [126 0 R /XYZ 0 427 0]
+/Prev 421 0 R
+/Next 423 0 R>>
+endobj
+
+423 0 obj
+<</Title (Sets a cookie)
+/Parent 226 0 R
+/Dest [126 0 R /XYZ 0 285 0]
+/Prev 422 0 R
+/Next 424 0 R>>
+endobj
+
+424 0 obj
+<</Title (Functionality to implement)
+/Parent 226 0 R
+/Dest [127 0 R /XYZ 0 732 0]
+/Prev 423 0 R>>
+endobj
+
+226 0 obj
+<</Title (Navtabs)
+/Parent 193 0 R
+/Dest [124 0 R /XYZ 0 762 0]
+/Prev 225 0 R
+/Next 227 0 R
+/First 414 0 R
+/Last 424 0 R
+/Count 11>>
+endobj
+
+425 0 obj
+<</Title (Multimarkdown Tables)
+/Parent 227 0 R
+/Dest [128 0 R /XYZ 0 642 0]
+/Next 426 0 R>>
+endobj
+
+426 0 obj
+<</Title (HTML Tables)
+/Parent 227 0 R
+/Dest [128 0 R /XYZ 0 249 0]
+/Prev 425 0 R
+/Next 427 0 R>>
+endobj
+
+427 0 obj
+<</Title (jQuery DataTables)
+/Parent 227 0 R
+/Dest [129 0 R /XYZ 0 227 0]
+/Prev 426 0 R>>
+endobj
+
+227 0 obj
+<</Title (Tables)
+/Parent 193 0 R
+/Dest [128 0 R /XYZ 0 762 0]
+/Prev 226 0 R
+/Next 228 0 R
+/First 425 0 R
+/Last 427 0 R
+/Count 3>>
+endobj
+
+428 0 obj
+<</Title (About syntax highlighting)
+/Parent 228 0 R
+/Dest [132 0 R /XYZ 0 642 0]
+/Next 429 0 R>>
+endobj
+
+429 0 obj
+<</Title (Available lexers)
+/Parent 228 0 R
+/Dest [134 0 R /XYZ 0 732 0]
+/Prev 428 0 R>>
+endobj
+
+228 0 obj
+<</Title (Syntax highlighting)
+/Parent 193 0 R
+/Dest [132 0 R /XYZ 0 762 0]
+/Prev 227 0 R
+/Next 229 0 R
+/First 428 0 R
+/Last 429 0 R
+/Count 2>>
+endobj
+
+430 0 obj
+<</Title (Workflow maps overview)
+/Parent 229 0 R
+/Dest [135 0 R /XYZ 0 625 0]
+/Next 431 0 R>>
+endobj
+
+431 0 obj
+<</Title (Simple workflow maps)
+/Parent 229 0 R
+/Dest [135 0 R /XYZ 0 483 0]
+/Prev 430 0 R
+/Next 432 0 R>>
+endobj
+
+432 0 obj
+<</Title (Complex workflow maps)
+/Parent 229 0 R
+/Dest [137 0 R /XYZ 0 732 0]
+/Prev 431 0 R>>
+endobj
+
+229 0 obj
+<</Title (Workflow maps)
+/Parent 193 0 R
+/Dest [135 0 R /XYZ 0 762 0]
+/Prev 228 0 R
+/Next 230 0 R
+/First 430 0 R
+/Last 432 0 R
+/Count 3>>
+endobj
+
+433 0 obj
+<</Title (About the review process)
+/Parent 230 0 R
+/Dest [139 0 R /XYZ 0 660 0]
+/Next 434 0 R>>
+endobj
+
+434 0 obj
+<</Title (Add reviewers as collaborators)
+/Parent 230 0 R
+/Dest [140 0 R /XYZ 0 672 0]
+/Prev 433 0 R
+/Next 435 0 R>>
+endobj
+
+435 0 obj
+<</Title (Workflow)
+/Parent 230 0 R
+/Dest [140 0 R /XYZ 0 386 0]
+/Prev 434 0 R
+/Next 436 0 R>>
+endobj
+
+436 0 obj
+<</Title (Prose.io)
+/Parent 230 0 R
+/Dest [141 0 R /XYZ 0 732 0]
+/Prev 435 0 R>>
+endobj
+
+230 0 obj
+<</Title (Commenting on files)
+/Parent 193 0 R
+/Dest [139 0 R /XYZ 0 762 0]
+/Prev 229 0 R
+/Next 231 0 R
+/First 433 0 R
+/Last 436 0 R
+/Count 4>>
+endobj
+
+437 0 obj
+<</Title (How to build Jekyll sites)
+/Parent 231 0 R
+/Dest [142 0 R /XYZ 0 642 0]
+/Next 438 0 R>>
+endobj
+
+438 0 obj
+<</Title (Shortcuts for the build arguments)
+/Parent 231 0 R
+/Dest [142 0 R /XYZ 0 240 0]
+/Prev 437 0 R
+/Next 439 0 R>>
+endobj
+
+439 0 obj
+<</Title (Stop a server)
+/Parent 231 0 R
+/Dest [143 0 R /XYZ 0 676 0]
+/Prev 438 0 R>>
+endobj
+
+231 0 obj
+<</Title (Build arguments)
+/Parent 193 0 R
+/Dest [142 0 R /XYZ 0 762 0]
+/Prev 230 0 R
+/Next 232 0 R
+/First 437 0 R
+/Last 439 0 R
+/Count 3>>
+endobj
+
+440 0 obj
+<</Title (Theme options)
+/Parent 232 0 R
+/Dest [145 0 R /XYZ 0 581 0]
+/Next 441 0 R>>
+endobj
+
+441 0 obj
+<</Title (Theme differences)
+/Parent 232 0 R
+/Dest [145 0 R /XYZ 0 372 0]
+/Prev 440 0 R>>
+endobj
+
+232 0 obj
+<</Title (Themes)
+/Parent 193 0 R
+/Dest [145 0 R /XYZ 0 762 0]
+/Prev 231 0 R
+/Next 233 0 R
+/First 440 0 R
+/Last 441 0 R
+/Count 2>>
+endobj
+
+442 0 obj
+<</Title (PDF overview)
+/Parent 233 0 R
+/Dest [146 0 R /XYZ 0 591 0]
+/Next 443 0 R>>
+endobj
+
+443 0 obj
+<</Title (Demo)
+/Parent 233 0 R
+/Dest [146 0 R /XYZ 0 337 0]
+/Prev 442 0 R
+/Next 444 0 R>>
+endobj
+
+444 0 obj
+<</Title (1. Set up Prince)
+/Parent 233 0 R
+/Dest [146 0 R /XYZ 0 229 0]
+/Prev 443 0 R
+/Next 445 0 R>>
+endobj
+
+445 0 obj
+<</Title (2. Create a new configuration file for each of your PDF targets)
+/Parent 233 0 R
+/Dest [147 0 R /XYZ 0 732 0]
+/Prev 444 0 R
+/Next 446 0 R>>
+endobj
+
+446 0 obj
+<</Title (3. Make sure your sidebar data file has titlepage.html and tocpage.html entries)
+/Parent 233 0 R
+/Dest [148 0 R /XYZ 0 642 0]
+/Prev 445 0 R
+/Next 447 0 R>>
+endobj
+
+447 0 obj
+<</Title (4. Customize your headers and footers)
+/Parent 233 0 R
+/Dest [149 0 R /XYZ 0 543 0]
+/Prev 446 0 R
+/Next 448 0 R>>
+endobj
+
+448 0 obj
+<</Title (5. Customize and run the PDF script)
+/Parent 233 0 R
+/Dest [154 0 R /XYZ 0 594 0]
+/Prev 447 0 R
+/Next 449 0 R>>
+endobj
+
+449 0 obj
+<</Title (6. Add conditions for your new builds in the PDF config file)
+/Parent 233 0 R
+/Dest [155 0 R /XYZ 0 685 0]
+/Prev 448 0 R
+/Next 450 0 R>>
+endobj
+
+450 0 obj
+<</Title (7. Add a download button for the PDF)
+/Parent 233 0 R
+/Dest [155 0 R /XYZ 0 434 0]
+/Prev 449 0 R
+/Next 451 0 R>>
+endobj
+
+451 0 obj
+<</Title (JavaScript conflicts)
+/Parent 233 0 R
+/Dest [155 0 R /XYZ 0 188 0]
+/Prev 450 0 R
+/Next 452 0 R>>
+endobj
+
+452 0 obj
+<</Title (Overriding Bootstrap Print Styles)
+/Parent 233 0 R
+/Dest [156 0 R /XYZ 0 491 0]
+/Prev 451 0 R>>
+endobj
+
+233 0 obj
+<</Title (Generating PDFs)
+/Parent 193 0 R
+/Dest [146 0 R /XYZ 0 762 0]
+/Prev 232 0 R
+/Next 234 0 R
+/First 442 0 R
+/Last 452 0 R
+/Count 11>>
+endobj
+
+453 0 obj
+<</Title (Full code demo of content API)
+/Parent 234 0 R
+/Dest [158 0 R /XYZ 0 574 0]
+/Next 454 0 R>>
+endobj
+
+454 0 obj
+<</Title (Diagram overview)
+/Parent 234 0 R
+/Dest [158 0 R /XYZ 0 357 0]
+/Prev 453 0 R
+/Next 455 0 R>>
+endobj
+
+455 0 obj
+<</Title <FEFF0031002E0020004300720065006100740065002000610020201C0063006F006C006C0065006300740069006F006E201D00200066006F00720020007400680065002000680065006C007000200063006F006E00740065006E0074>
+/Parent 234 0 R
+/Dest [159 0 R /XYZ 0 310 0]
+/Prev 454 0 R
+/Next 456 0 R>>
+endobj
+
+456 0 obj
+<</Title (2. Create tooltip definitions in a YAML file)
+/Parent 234 0 R
+/Dest [160 0 R /XYZ 0 627 0]
+/Prev 455 0 R
+/Next 457 0 R>>
+endobj
+
+457 0 obj
+<</Title (3. Create pages in your collection)
+/Parent 234 0 R
+/Dest [160 0 R /XYZ 0 377 0]
+/Prev 456 0 R
+/Next 458 0 R>>
+endobj
+
+458 0 obj
+<</Title (4. Create a JSON file that loops through your collection pages)
+/Parent 234 0 R
+/Dest [161 0 R /XYZ 0 672 0]
+/Prev 457 0 R
+/Next 459 0 R>>
+endobj
+
+459 0 obj
+<</Title (5. Build your site and look for the JSON file)
+/Parent 234 0 R
+/Dest [163 0 R /XYZ 0 612 0]
+/Prev 458 0 R
+/Next 460 0 R>>
+endobj
+
+460 0 obj
+<</Title (6. Allow CORS access to your help if stored on a remote server)
+/Parent 234 0 R
+/Dest [163 0 R /XYZ 0 485 0]
+/Prev 459 0 R
+/Next 461 0 R>>
+endobj
+
+461 0 obj
+<</Title (7. Explain how developers can access the help)
+/Parent 234 0 R
+/Dest [165 0 R /XYZ 0 700 0]
+/Prev 460 0 R
+/Next 462 0 R>>
+endobj
+
+462 0 obj
+<</Title (8. Create easy links to embed the help in your help site)
+/Parent 234 0 R
+/Dest [167 0 R /XYZ 0 435 0]
+/Prev 461 0 R
+/Next 463 0 R>>
+endobj
+
+463 0 obj
+<</Title (Reuse Demo)
+/Parent 234 0 R
+/Dest [168 0 R /XYZ 0 208 0]
+/Prev 462 0 R>>
+endobj
+
+234 0 obj
+<</Title (Help APIs and UI tooltips)
+/Parent 193 0 R
+/Dest [158 0 R /XYZ 0 762 0]
+/Prev 233 0 R
+/Next 235 0 R
+/First 453 0 R
+/Last 463 0 R
+/Count 11>>
+endobj
+
+464 0 obj
+<</Title (About search)
+/Parent 235 0 R
+/Dest [170 0 R /XYZ 0 625 0]
+/Next 465 0 R>>
+endobj
+
+465 0 obj
+<</Title (Excluding pages from search)
+/Parent 235 0 R
+/Dest [170 0 R /XYZ 0 461 0]
+/Prev 464 0 R
+/Next 466 0 R>>
+endobj
+
+466 0 obj
+<</Title (Troubleshooting search)
+/Parent 235 0 R
+/Dest [170 0 R /XYZ 0 327 0]
+/Prev 465 0 R
+/Next 467 0 R>>
+endobj
+
+467 0 obj
+<</Title (Including the body field in search)
+/Parent 235 0 R
+/Dest [171 0 R /XYZ 0 724 0]
+/Prev 466 0 R
+/Next 468 0 R>>
+endobj
+
+468 0 obj
+<</Title (Customizing search results)
+/Parent 235 0 R
+/Dest [171 0 R /XYZ 0 323 0]
+/Prev 467 0 R
+/Next 469 0 R>>
+endobj
+
+469 0 obj
+<</Title (More robust search)
+/Parent 235 0 R
+/Dest [173 0 R /XYZ 0 342 0]
+/Prev 468 0 R>>
+endobj
+
+235 0 obj
+<</Title (Search configuration)
+/Parent 193 0 R
+/Dest [170 0 R /XYZ 0 762 0]
+/Prev 234 0 R
+/Next 236 0 R
+/First 464 0 R
+/Last 469 0 R
+/Count 6>>
+endobj
+
+470 0 obj
+<</Title (About iTerm profiles)
+/Parent 236 0 R
+/Dest [174 0 R /XYZ 0 642 0]
+/Next 471 0 R>>
+endobj
+
+471 0 obj
+<</Title (Set up profiles)
+/Parent 236 0 R
+/Dest [174 0 R /XYZ 0 531 0]
+/Prev 470 0 R
+/Next 472 0 R>>
+endobj
+
+472 0 obj
+<</Title (Launching a profile)
+/Parent 236 0 R
+/Dest [175 0 R /XYZ 0 404 0]
+/Prev 471 0 R>>
+endobj
+
+236 0 obj
+<</Title (iTerm profiles)
+/Parent 193 0 R
+/Dest [174 0 R /XYZ 0 762 0]
+/Prev 235 0 R
+/Next 237 0 R
+/First 470 0 R
+/Last 472 0 R
+/Count 3>>
+endobj
+
+473 0 obj
+<</Title (Pushing to AWS S3)
+/Parent 237 0 R
+/Dest [176 0 R /XYZ 0 625 0]
+/Next 474 0 R>>
+endobj
+
+474 0 obj
+<</Title (Pushing to a regular server)
+/Parent 237 0 R
+/Dest [176 0 R /XYZ 0 376 0]
+/Prev 473 0 R>>
+endobj
+
+237 0 obj
+<</Title (Pushing builds to server)
+/Parent 193 0 R
+/Dest [176 0 R /XYZ 0 762 0]
+/Prev 236 0 R
+/Next 238 0 R
+/First 473 0 R
+/Last 474 0 R
+/Count 2>>
+endobj
+
+475 0 obj
+<</Title (Set up your Github repo)
+/Parent 238 0 R
+/Dest [177 0 R /XYZ 0 591 0]
+/Next 476 0 R>>
+endobj
+
+476 0 obj
+<</Title (Install Bundler)
+/Parent 238 0 R
+/Dest [178 0 R /XYZ 0 621 0]
+/Prev 475 0 R
+/Next 477 0 R>>
+endobj
+
+477 0 obj
+<</Title (Add the github pages gem)
+/Parent 238 0 R
+/Dest [178 0 R /XYZ 0 346 0]
+/Prev 476 0 R
+/Next 478 0 R>>
+endobj
+
+478 0 obj
+<</Title (Customize your URL)
+/Parent 238 0 R
+/Dest [179 0 R /XYZ 0 642 0]
+/Prev 477 0 R>>
+endobj
+
+238 0 obj
+<</Title (Publishing on Github Pages)
+/Parent 193 0 R
+/Dest [177 0 R /XYZ 0 762 0]
+/Prev 237 0 R
+/Next 239 0 R
+/First 475 0 R
+/Last 478 0 R
+/Count 4>>
+endobj
+
+481 0 obj
+<</Title (Getting started)
+/Parent 479 0 R
+/Dest [180 0 R /XYZ 0 358 0]
+/Next 482 0 R>>
+endobj
+
+482 0 obj
+<</Title (Navigation)
+/Parent 479 0 R
+/Dest [180 0 R /XYZ 0 124 0]
+/Prev 481 0 R
+/Next 483 0 R>>
+endobj
+
+483 0 obj
+<</Title (Single sourcing)
+/Parent 479 0 R
+/Dest [181 0 R /XYZ 0 527 0]
+/Prev 482 0 R
+/Next 484 0 R>>
+endobj
+
+484 0 obj
+<</Title (Formatting)
+/Parent 479 0 R
+/Dest [181 0 R /XYZ 0 293 0]
+/Prev 483 0 R>>
+endobj
+
+479 0 obj
+<</Title (Knowledge Base Categories)
+/Parent 239 0 R
+/Dest [180 0 R /XYZ 0 543 0]
+/Next 480 0 R
+/First 481 0 R
+/Last 484 0 R
+/Count 4>>
+endobj
+
+480 0 obj
+<</Title (Generating a list of all pages with a certain tag)
+/Parent 239 0 R
+/Dest [181 0 R /XYZ 0 229 0]
+/Prev 479 0 R>>
+endobj
+
+239 0 obj
+<</Title (Knowledge-base layout)
+/Parent 193 0 R
+/Dest [180 0 R /XYZ 0 762 0]
+/Prev 238 0 R
+/Next 240 0 R
+/First 479 0 R
+/Last 480 0 R
+/Count 2>>
+endobj
+
+485 0 obj
+<</Title (Horizontally styled definiton lists)
+/Parent 240 0 R
+/Dest [184 0 R /XYZ 0 510 0]>>
+endobj
+
+240 0 obj
+<</Title (Glossary layout)
+/Parent 193 0 R
+/Dest [183 0 R /XYZ 0 762 0]
+/Prev 239 0 R
+/Next 241 0 R
+/First 485 0 R
+/Last 485 0 R
+/Count 1>>
+endobj
+
+486 0 obj
+<</Title (Lorem ipsum dolor sit amet, consectetur adipiscing elit?)
+/Parent 241 0 R
+/Dest [186 0 R /XYZ 0 569 0]
+/Next 487 0 R>>
+endobj
+
+487 0 obj
+<</Title (Curabitur eget leo at velit imperdiet varius. In eu ipsum vitae velit congue iaculis vitae at risus?)
+/Parent 241 0 R
+/Dest [186 0 R /XYZ 0 537 0]
+/Prev 486 0 R
+/Next 488 0 R>>
+endobj
+
+488 0 obj
+<</Title (Aenean consequat lorem ut felis ullamcorper?)
+/Parent 241 0 R
+/Dest [186 0 R /XYZ 0 494 0]
+/Prev 487 0 R
+/Next 489 0 R>>
+endobj
+
+489 0 obj
+<</Title (Lorem ipsum dolor sit amet, consectetur adipiscing elit?)
+/Parent 241 0 R
+/Dest [186 0 R /XYZ 0 462 0]
+/Prev 488 0 R
+/Next 490 0 R>>
+endobj
+
+490 0 obj
+<</Title (Curabitur eget leo at velit imperdiet varius. In eu ipsum vitae velit congue iaculis vitae at risus?)
+/Parent 241 0 R
+/Dest [186 0 R /XYZ 0 430 0]
+/Prev 489 0 R
+/Next 491 0 R>>
+endobj
+
+491 0 obj
+<</Title (Aenean consequat lorem ut felis ullamcorper?)
+/Parent 241 0 R
+/Dest [186 0 R /XYZ 0 386 0]
+/Prev 490 0 R
+/Next 492 0 R>>
+endobj
+
+492 0 obj
+<</Title (Lorem ipsum dolor sit amet, consectetur adipiscing elit?)
+/Parent 241 0 R
+/Dest [186 0 R /XYZ 0 355 0]
+/Prev 491 0 R
+/Next 493 0 R>>
+endobj
+
+493 0 obj
+<</Title (Curabitur eget leo at velit imperdiet varius. In eu ipsum vitae velit congue iaculis vitae at risus?)
+/Parent 241 0 R
+/Dest [186 0 R /XYZ 0 323 0]
+/Prev 492 0 R
+/Next 494 0 R>>
+endobj
+
+494 0 obj
+<</Title (Aenean consequat lorem ut felis ullamcorper?)
+/Parent 241 0 R
+/Dest [186 0 R /XYZ 0 279 0]
+/Prev 493 0 R>>
+endobj
+
+241 0 obj
+<</Title (FAQ layout)
+/Parent 193 0 R
+/Dest [186 0 R /XYZ 0 762 0]
+/Prev 240 0 R
+/Next 242 0 R
+/First 486 0 R
+/Last 494 0 R
+/Count 9>>
+endobj
+
+242 0 obj
+<</Title (Shuffle layout)
+/Parent 193 0 R
+/Dest [187 0 R /XYZ 0 762 0]
+/Prev 241 0 R
+/Next 243 0 R>>
+endobj
+
+497 0 obj
+<</Title (Address already in use)
+/Parent 495 0 R
+/Dest [190 0 R /XYZ 0 615 0]
+/Next 498 0 R>>
+endobj
+
+498 0 obj
+<</Title (shell file not executable)
+/Parent 495 0 R
+/Dest [190 0 R /XYZ 0 274 0]
+/Prev 497 0 R>>
+endobj
+
+495 0 obj
+<</Title (Issues building the site)
+/Parent 243 0 R
+/Dest [190 0 R /XYZ 0 660 0]
+/Next 496 0 R
+/First 497 0 R
+/Last 498 0 R
+/Count 2>>
+endobj
+
+499 0 obj
+<</Title <FEFF201C007000610067006500200030201D002000630072006F007300730020007200650066006500720065006E00630065007300200069006E00200074006800650020005000440046>
+/Parent 496 0 R
+/Dest [191 0 R /XYZ 0 665 0]
+/Next 500 0 R>>
+endobj
+
+500 0 obj
+<</Title (The PDF is blank)
+/Parent 496 0 R
+/Dest [191 0 R /XYZ 0 511 0]
+/Prev 499 0 R
+/Next 501 0 R>>
+endobj
+
+501 0 obj
+<</Title (Sidebar not appearing)
+/Parent 496 0 R
+/Dest [191 0 R /XYZ 0 410 0]
+/Prev 500 0 R
+/Next 502 0 R>>
+endobj
+
+502 0 obj
+<</Title <FEFF0053006900640065006200610072002000690073006E2019007400200063006F006C006C00610070007300650064>
+/Parent 496 0 R
+/Dest [192 0 R /XYZ 0 732 0]
+/Prev 501 0 R
+/Next 503 0 R>>
+endobj
+
+503 0 obj
+<</Title <FEFF005300650061007200630068002000690073006E2019007400200077006F0072006B0069006E0067>
+/Parent 496 0 R
+/Dest [192 0 R /XYZ 0 630 0]
+/Prev 502 0 R>>
+endobj
+
+496 0 obj
+<</Title (shell file not runnable)
+/Parent 243 0 R
+/Dest [191 0 R /XYZ 0 732 0]
+/Prev 495 0 R
+/First 499 0 R
+/Last 503 0 R
+/Count 5>>
+endobj
+
+243 0 obj
+<</Title (Troubleshooting)
+/Parent 193 0 R
+/Dest [190 0 R /XYZ 0 762 0]
+/Prev 242 0 R
+/First 495 0 R
+/Last 496 0 R
+/Count 2>>
+endobj
+
+193 0 obj
+<</Type /Outlines
+/First 194 0 R
+/Last 243 0 R>>
+endobj
+
+2 0 obj
+<</Type /Pages
+/Kids [3 0 R 4 0 R 5 0 R 6 0 R 7 0 R 8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R 37 0 R 38 0 R 39 0 R 40 0 R 41 0 R 42 0 R 43 0 R 44 0 R 45 0 R 46 0 R 47 0 R 48 0 R 49 0 R 50 0 R 51 0 R 52 0 R 53 0 R 54 0 R 55 0 R 56 0 R 57 0 R 58 0 R 59 0 R 60 0 R 61 0 R 62 0 R 63 0 R 64 0 R 65 0 R 66 0 R 67 0 R 68 0 R 69 0 R 70 0 R 71 0 R 72 0 R 73 0 R 74 0 R 75 0 R 76 0 R 77 0 R 78 0 R 79 0 R 80 0 R 81 0 R 82 0 R 83 0 R 84 0 R 85 0 R 86 0 R 87 0 R 88 0 R 89 0 R 90 0 R 91 0 R 92 0 R 93 0 R 94 0 R 95 0 R 96 0 R 97 0 R 98 0 R 99 0 R 100 0 R 101 0 R 102 0 R 103 0 R 104 0 R 105 0 R 106 0 R 107 0 R 108 0 R 109 0 R 110 0 R 111 0 R 112 0 R 113 0 R 114 0 R 115 0 R 116 0 R 117 0 R 118 0 R 119 0 R 120 0 R 121 0 R 122 0 R 123 0 R 124 0 R 125 0 R 126 0 R 127 0 R 128 0 R 129 0 R 130 0 R 131 0 R 132 0 R 133 0 R 134 0 R 135 0 R 136 0 R 137 0 R 138 0 R 139 0 R 140 0 R 141 0 R 142 0 R 143 0 R 144 0 R 145 0 R 146 0 R 147 0 R 148 0 R 149 0 R 150 0 R 151 0 R 152 0 R 153 0 R 154 0 R 155 0 R 156 0 R 157 0 R 158 0 R 159 0 R 160 0 R 161 0 R 162 0 R 163 0 R 164 0 R 165 0 R 166 0 R 167 0 R 168 0 R 169 0 R 170 0 R 171 0 R 172 0 R 173 0 R 174 0 R 175 0 R 176 0 R 177 0 R 178 0 R 179 0 R 180 0 R 181 0 R 182 0 R 183 0 R 184 0 R 185 0 R 186 0 R 187 0 R 188 0 R 189 0 R 190 0 R 191 0 R 192 0 R]
+/Count 190>>
+endobj
+
+504 0 obj
+<</Length 505 0 R
+/Filter /FlateDecode>>
+stream
+x�m�MN�0��s�Y�=c;6KT�@l�r����i�M�zLn�#�M��f���{3�(!Ӈk�2+;T�4� b��%Ha3�	�KC:7�+� Afxf>L'@���m	�
+��V�T�#�q
��I�XVc�uZ�-�Y������r���q�l�{
M�U/�|���1�f�gu[훰��[��l����	��z_u�>)��#9�^�5*?��⮟g�<�0����Lm	�zx4����Ӟ���a��
.B�����T�q��t��/'�k��0x��	��`���Aᢅg�C
+endstream
+endobj
+
+505 0 obj
+295
+endobj
+
+506 0 obj
+<</Length 507 0 R
+/Filter /FlateDecode
+/N 3>>
+stream
+x��Vy<�k~���}�͐�طF�0Ⱦ��N�13�`̠�&�p"I�9:tZ��"-ڎҦ������"�����}���]����{���~��~�x/��c����H��ƈ��f��E��؜�4���LJso��������wa-�n_���Վ��?B�����<P�6=�](�dž���>�
+7���(A��1�iL�1��>��H�;�%(׋MJ���T��^��?�x�i�)�bzI:��Y"i.Yz:'M(�y(��$���Y�/��Z��z��X���0-���d6'���a'K��ې~�9�w�Y�����0sN�H7, Y@*@�#���8��	�@ Q`5���� �- ��T�Z��A8��Yp\7����	����!�CT��@Z�>d
+YB,�	�B�P�CH�@[�B����F�W�t��A��!hz}���a
��^�`W��W��p:�΃w�p=|n�/�7��~O"�!#J�6�DX�;�D#q�و �H=҂t"=�=D��F>cp��ab0>�0��و)�Ta�b�0�1�0C�	�w,��5��c}���xl6[�=�=���}��~��pJ8C�-��Kĭ����Zq]�>�0n�ǫ�M��@</���+����w�#�O2A�`I�"D�\B9��p�p�0J�&�����@"���XLl voG��$y�!ɑJJ$m!U�ZHWH���d2Y�lG^N�7�+�����C���	ŝ��"���tQS�S�T�5�*��6R/Q�Q?��d�d|e�2�d�e�d�ʼ�%��˺ʮ�]'[.{R���k9�����[n�\���~�Iy���|�|�|�|��u�1�����W!O��%�aBӥ��8�����G7�����_��	E�Ŋ�يՊ�%J�����R�R��	��J_h,p]�[�sA˂���Ք]�y�ʭ����0T<U�Tv���<UŨ��.W�R=�zE��]�A��V�vB�:�n���^���-�I
M
o�4�J�K�5�4]45�4�k�kѴ���ZeZ�^2��dF�2cB[]�G[�]�ݫ=�c����Ӫ�T���ҍ�-��֝������k�{�O�g�'����џ204�0�n�n0f�l�k�ΰ�pЈj�l�nTot�g�2N2�o|�6�6I0�6�m
+�ژ�M���-�.�[(XX���Ia�23���!3%��f�f�fo�-�^�{QϢ������
�
+~���,M,9�Ֆ���V^V��:��.6]�[|`�#k�u��v�n�o6�6B��q[=���~��*b]��ڹ�m�;k����^d��o�C�C����%�%
K�uَu�'�S��A'���3۹�������˨��k��1�7n�nB��nS���ܻ<o��^O�0�*�g^:^�^�^���뽻|�>�>�}�}5|9���~�~�.�S�C����/5Y*\����	\��L��=��	|d���r�����_[����Bք4�|u-3
+�u�ˆ�o����(��D.��y3J5�����>=��s��#+�W�|��pU���UW'�>�Fv
{��lLDLS�Wv ��=�[;�q����p˸�<G^)o4�1�4n,�1~O�x�sBy�k�;���6�'�6q*)0�H�LrDrk
+!%&�@A�$������ڗf���&I�Oߛ>!�΀2Vet�����H�M<��Y��)+<�d�|� ��Z��;׎��Z��z�z����-9C\7�m�6�n�ޤ�)o��f��G���$m�=�<�4��ֈ��yy��yokΗ���ow�^�����w���ʝ��7
+���q�n�d�S�O3��v��(��J�v�}�T�t]��=me����{��^���vi�x��biEG�^eI�ת���nխ5�5;k��s��=�r��V�����A��Gu�um���p�2�ho����s�a�Å���
>z�Ѷ��I���n7�[y��/�t�0[�Z�Z�����/����	��'Y'[N韪9M;]���m�hOh�tDu���;����y�7�ߎ��>[}N�\�y����3�]��J�z}1��p���K���_^~�����kW��^�q��p���������`�h�is����ӿ[�~�צ�����;vw:������|��=�{W��޿�`ك��a���<�>{�����'����O垖?SV����ɹ!��[�C�s�_����ב���Z��c�cgǽ��\�r�Uګ�����U���ͩ�]��591�V�v�]�{��G>,��=4��c��驂O*��~f}���et:�+�k�7�o����Τ����M�P[˜�%�8�8YĐ���T������L�����|Jl%����P~2���{���Y@����!J�B��y-���$��d��g5��P�s`��xB���j8���ģ�p�"~���0�kL����|��Y�������VȏO1|"�P��v�N��:Bi��B_���ainn@F���l)��zg�33�
����xff�nf�:d��.��
+?��
+endstream
+endobj
+
+507 0 obj
+2577
+endobj
+
+3 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 504 0 R
+/Resources <</Font <</F1 508 0 R
+/F2 509 0 R
+/F3 510 0 R>>
+/XObject <</I1 511 0 R>>
+/ProcSet [/PDF /Text /ImageC]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+512 0 obj
+<</Length 513 0 R
+/Filter /FlateDecode>>
+stream
+x�uRM��0��+�V�4K��Vj�{�ң���
+{ܱ�l~R�eǐnr�"$�|��{�Q�<p���
u���k{M���?W���V�6�4�z*��֪k�z[}�y�����X��B[7G�E�!u�(�'�@^
�9�:����iʐ��CVJ��y�5�>A���ї%n���;��1!��U�B5g�r!��0;����^_`@��b������
K.�#���&r�Y��]�~pD��^Fa���G��K�̋u�q�LE�{!7�v���tQ��g4�)8Sx<�Iֳ�<����d���Iי˒"�w)�4>������X�=������R0:a�u`�#�Y(��&@?�u�#Fx��_����p'Q9k��
+ra<�qrΒ0m*V����u��Y�'��k�G
+endstream
+endobj
+
+513 0 obj
+396
+endobj
+
+4 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 512 0 R
+/Resources <</Font <</F4 514 0 R>>
+/ProcSet [/PDF /Text]>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+515 0 obj
+<</Length 516 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n�6}�W�1-U��}���)v���Ţ���x��R S��3�GYvD��Ţ@"dg�sFù(4�a�����/u�
+�7��G�f����,f=�[�g\�.�0A�͌R�ɽ�a��4'���+IvX��.Ųr��'?7�w��}G�~Ysa{2�N�fT�j؉ʇ��N�=���t_�
(;��4�ܘ�N;�v��|�z�-�Τb��E6�
+�	�2kU��{'7�o�u��eS�`
`%��h���%���J+G�]����/�ܻ�w����`bLbr2#BT�2�!�e�y�?��o�H���MJ�:S9K̦�2a�(�^e���d�{5Q�*7�ȢczLm,��b����\�s�C�}EE�%�H~SYN��ujo����S��Yȉ	L��j��oY��ЈSXp�,Â㦆�UUE�ҟ�$�9J$6���[>]�k��]�7]��\{I�_�d���,����)|43�V�G��1�W��\���/VQ������4}�А��P*�&�SY��/Q�cj�J,��9��03m�Ģ~�/re����5ͨ�
+	��bg�H�����@�"�|��6;˅4)D��Z�P�!MIQ�\��we�P"EM���P�!Q�v���g�M���EE�fS��nm����h�ˬ���#"L���E�K/3EO"�Ԉ�B�]fh(���~J��Y��U)v2��Ն����
+�'���M�%B�i�/�Q
ޯ���*C6
+G���7�R/V���U~]jHK�ź2��+���rs�A�'qn�E��]�vˢ%5��ɹ�8
uXHI�u�6B���G|�QB/��8����߾�:6�v�P0��l�j���j�S%FȢؠe9����P�!Q���T�r��ҡ�W�Z�P�!MK�#O��e;�W���O4�4���9C���i�4;?��f��:�o!G���G��m�CQS&7di�c=�3�f�44�l��B��2�+ԪUf�/�!I���y����h	������ɘ<�aJ���C/�nV���}}#����!�wz��ε亃B<�k�-T�>������'W���n�#y�Vn��
���}\>Rg�yNj��kݶ(���
\�l�l	�*M#����gn*
+endstream
+endobj
+
+516 0 obj
+1134
+endobj
+
+5 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 515 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [517 0 R 518 0 R 519 0 R 520 0 R 521 0 R 522 0 R 523 0 R 524 0 R 525 0 R 526 0 R 527 0 R 528 0 R 529 0 R 530 0 R 531 0 R 532 0 R 533 0 R 534 0 R 535 0 R 536 0 R 537 0 R 538 0 R 539 0 R 540 0 R 541 0 R]>>
+endobj
+
+517 0 obj
+<</Type /Annot
+/Rect [112.5000 626.6143 499.5000 643.1143]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [7 0 R /XYZ 0 732 0]>>
+endobj
+
+518 0 obj
+<</Type /Annot
+/Rect [112.5000 608.6143 499.5000 625.1143]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [20 0 R /XYZ 0 732 0]>>
+endobj
+
+519 0 obj
+<</Type /Annot
+/Rect [112.5000 590.6143 499.5000 607.1143]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [21 0 R /XYZ 0 732 0]>>
+endobj
+
+520 0 obj
+<</Type /Annot
+/Rect [112.5000 572.6143 499.5000 589.1143]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [26 0 R /XYZ 0 732 0]>>
+endobj
+
+521 0 obj
+<</Type /Annot
+/Rect [112.5000 554.6143 499.5000 571.1143]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [27 0 R /XYZ 0 732 0]>>
+endobj
+
+522 0 obj
+<</Type /Annot
+/Rect [112.5000 509.8286 499.5000 526.3286]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [28 0 R /XYZ 0 732 0]>>
+endobj
+
+523 0 obj
+<</Type /Annot
+/Rect [112.5000 491.8286 499.5000 508.3286]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [30 0 R /XYZ 0 732 0]>>
+endobj
+
+524 0 obj
+<</Type /Annot
+/Rect [112.5000 447.0429 499.5000 463.5429]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [32 0 R /XYZ 0 732 0]>>
+endobj
+
+525 0 obj
+<</Type /Annot
+/Rect [112.5000 429.0429 499.5000 445.5429]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [39 0 R /XYZ 0 732 0]>>
+endobj
+
+526 0 obj
+<</Type /Annot
+/Rect [112.5000 411.0429 499.5000 427.5429]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [44 0 R /XYZ 0 732 0]>>
+endobj
+
+527 0 obj
+<</Type /Annot
+/Rect [112.5000 366.2571 499.5000 382.7571]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [48 0 R /XYZ 0 732 0]>>
+endobj
+
+528 0 obj
+<</Type /Annot
+/Rect [112.5000 348.2571 499.5000 364.7571]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [55 0 R /XYZ 0 732 0]>>
+endobj
+
+529 0 obj
+<</Type /Annot
+/Rect [112.5000 330.2571 499.5000 346.7571]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [57 0 R /XYZ 0 732 0]>>
+endobj
+
+530 0 obj
+<</Type /Annot
+/Rect [112.5000 312.2571 499.5000 328.7571]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [61 0 R /XYZ 0 732 0]>>
+endobj
+
+531 0 obj
+<</Type /Annot
+/Rect [112.5000 294.2571 499.5000 310.7571]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [66 0 R /XYZ 0 732 0]>>
+endobj
+
+532 0 obj
+<</Type /Annot
+/Rect [112.5000 276.2571 499.5000 292.7571]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [68 0 R /XYZ 0 732 0]>>
+endobj
+
+533 0 obj
+<</Type /Annot
+/Rect [112.5000 258.2571 499.5000 274.7571]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [70 0 R /XYZ 0 732 0]>>
+endobj
+
+534 0 obj
+<</Type /Annot
+/Rect [112.5000 240.2571 499.5000 256.7571]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [74 0 R /XYZ 0 732 0]>>
+endobj
+
+535 0 obj
+<</Type /Annot
+/Rect [112.5000 195.4714 499.5000 211.9714]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [75 0 R /XYZ 0 732 0]>>
+endobj
+
+536 0 obj
+<</Type /Annot
+/Rect [112.5000 177.4714 499.5000 193.9714]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [78 0 R /XYZ 0 732 0]>>
+endobj
+
+537 0 obj
+<</Type /Annot
+/Rect [112.5000 159.4714 499.5000 175.9714]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [89 0 R /XYZ 0 732 0]>>
+endobj
+
+538 0 obj
+<</Type /Annot
+/Rect [112.5000 141.4714 499.5000 157.9714]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [95 0 R /XYZ 0 732 0]>>
+endobj
+
+539 0 obj
+<</Type /Annot
+/Rect [112.5000 96.6857 499.5000 113.1857]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [98 0 R /XYZ 0 732 0]>>
+endobj
+
+540 0 obj
+<</Type /Annot
+/Rect [112.5000 78.6857 499.5000 95.1857]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [99 0 R /XYZ 0 732 0]>>
+endobj
+
+541 0 obj
+<</Type /Annot
+/Rect [112.5000 60.6857 499.5000 77.1857]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [107 0 R /XYZ 0 732 0]>>
+endobj
+
+545 0 obj
+<</Length 546 0 R
+/Filter /FlateDecode>>
+stream
+x�͘�n�6��~
+.ӢU5����K���(\�]�m��DC��~̾QG��,��l0l�H�7�!G�$Ń�&Y��%ߜ��	u�њ������$M������rAf��{N����rr�X�+�}CfM~��� 0�k?�.���X�J&�-�.Ɖ=�g�'[�����5��b���8][�"�)5?k~����J���:����<�(��n�<��ii��6���.T���������~׊$4��$�k����Y>��T��V�8��(����Oۦ��&�r���ӗ�ʍɐ]� �8]?@u�SdN_�i��ee_I�o��+Y�@}a����L�8f@�0�J(O�~�������~ɛ��G���Ki^�h�x�H�ud��d��4cMېe�7M1u��p��ES�&�)�X=(��l:̫�[}pJV�-D��q(����js��v��~�5j,�/��h'q-Ϛ�����i��
+x��z�CV���4��w0�|�Q�#��7��Z��$����I��T�a��\0��G�[[���RRl�� �z��ѝn|k9i�L�.�da�e�Ƈj��j�]�-J���l����rfښlZ�֠�O�@~I�wY]c���˜��u��Ǖ�Ú%�i_L�>UPX�4�"��T�5��.�q?����_s2
ޢ)���^�u����_& �2����ice^�*�ڡ�N,�q,e�#��}�L�2����.�ՃH ��ź �/��h�3�g�Ce�.o�����U<�_
+�}R��,FJ3}���#)�u,�^�
V�>�(��7�Q���*R��uۓ��kt��)ΈZ3��Yk��{mm��yJ	� #�F�q�v�oe��<�v�>��P�OX%�Xvx]�D'T�1�۪"�8���mIa����xC�!�ό�@1,z�7H�0��q��K��2��r��/�fד�~ 6ŏ�Y�z���;BS�u�NW���nM���O�ů&Y��	�\�S�Gſ�I��
+endstream
+endobj
+
+546 0 obj
+993
+endobj
+
+6 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 545 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [547 0 R 548 0 R 549 0 R 550 0 R 551 0 R 552 0 R 553 0 R 554 0 R 555 0 R 556 0 R 557 0 R 558 0 R 559 0 R 560 0 R 561 0 R 562 0 R 563 0 R 564 0 R 565 0 R 566 0 R 567 0 R 568 0 R]>>
+endobj
+
+547 0 obj
+<</Type /Annot
+/Rect [112.5000 715.5000 499.5000 732.0000]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [114 0 R /XYZ 0 732 0]>>
+endobj
+
+548 0 obj
+<</Type /Annot
+/Rect [112.5000 697.5000 499.5000 714.0000]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [119 0 R /XYZ 0 732 0]>>
+endobj
+
+549 0 obj
+<</Type /Annot
+/Rect [112.5000 679.5000 499.5000 696.0000]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [120 0 R /XYZ 0 732 0]>>
+endobj
+
+550 0 obj
+<</Type /Annot
+/Rect [112.5000 661.5000 499.5000 678.0000]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [121 0 R /XYZ 0 732 0]>>
+endobj
+
+551 0 obj
+<</Type /Annot
+/Rect [112.5000 643.5000 499.5000 660.0000]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [124 0 R /XYZ 0 732 0]>>
+endobj
+
+552 0 obj
+<</Type /Annot
+/Rect [112.5000 625.5000 499.5000 642.0000]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [128 0 R /XYZ 0 732 0]>>
+endobj
+
+553 0 obj
+<</Type /Annot
+/Rect [112.5000 607.5000 499.5000 624.0000]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [132 0 R /XYZ 0 732 0]>>
+endobj
+
+554 0 obj
+<</Type /Annot
+/Rect [112.5000 589.5000 499.5000 606.0000]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [135 0 R /XYZ 0 732 0]>>
+endobj
+
+555 0 obj
+<</Type /Annot
+/Rect [112.5000 544.7143 499.5000 561.2143]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [139 0 R /XYZ 0 732 0]>>
+endobj
+
+556 0 obj
+<</Type /Annot
+/Rect [112.5000 499.9286 499.5000 516.4286]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [142 0 R /XYZ 0 732 0]>>
+endobj
+
+557 0 obj
+<</Type /Annot
+/Rect [112.5000 481.9286 499.5000 498.4286]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [145 0 R /XYZ 0 732 0]>>
+endobj
+
+558 0 obj
+<</Type /Annot
+/Rect [112.5000 463.9286 499.5000 480.4286]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [146 0 R /XYZ 0 732 0]>>
+endobj
+
+559 0 obj
+<</Type /Annot
+/Rect [112.5000 445.9286 499.5000 462.4286]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [158 0 R /XYZ 0 732 0]>>
+endobj
+
+560 0 obj
+<</Type /Annot
+/Rect [112.5000 427.9286 499.5000 444.4286]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [170 0 R /XYZ 0 732 0]>>
+endobj
+
+561 0 obj
+<</Type /Annot
+/Rect [112.5000 409.9286 499.5000 426.4286]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [174 0 R /XYZ 0 732 0]>>
+endobj
+
+562 0 obj
+<</Type /Annot
+/Rect [112.5000 391.9286 499.5000 408.4286]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [176 0 R /XYZ 0 732 0]>>
+endobj
+
+563 0 obj
+<</Type /Annot
+/Rect [112.5000 373.9286 499.5000 390.4286]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [177 0 R /XYZ 0 732 0]>>
+endobj
+
+564 0 obj
+<</Type /Annot
+/Rect [112.5000 329.1429 499.5000 345.6429]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [180 0 R /XYZ 0 732 0]>>
+endobj
+
+565 0 obj
+<</Type /Annot
+/Rect [112.5000 311.1429 499.5000 327.6429]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [183 0 R /XYZ 0 732 0]>>
+endobj
+
+566 0 obj
+<</Type /Annot
+/Rect [112.5000 293.1429 499.5000 309.6429]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [186 0 R /XYZ 0 732 0]>>
+endobj
+
+567 0 obj
+<</Type /Annot
+/Rect [112.5000 275.1429 499.5000 291.6429]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [187 0 R /XYZ 0 732 0]>>
+endobj
+
+568 0 obj
+<</Type /Annot
+/Rect [112.5000 230.3571 499.5000 246.8571]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [190 0 R /XYZ 0 732 0]>>
+endobj
+
+569 0 obj
+<</Length 570 0 R
+/Filter /FlateDecode>>
+stream
+x��Xˎ�6��+�t��*>$QA �t�H��S-f#K���,9z�1��~P��R�D��df�,b瘼��s//C=�n���p��
@4|��j�|�{1���X���4
+I�[Qʼ@/d�Q*B½(����@��z��q��q���`��E�J�'���WQ�5��D.���h:����	�1h[c��Ɩ�h��@J2Y��_5�`�t5�j�b5ed�)kk}Bl�j�s/u���{:{z'��Y9� �� R#��ᜱ�16`:�ȋs0�e4�>!.cs�r�"���֑w.3Ȃ1�i�lF����'d�7j���)e�]��r�#��0�����������ę{�Q:	�Q�j}D�G�戍��;��lY��>G�9��0�4�,��<b�0G̡l�>!6����4g�q�ҝ16b!4ѩ�u�>]2f�cs�z����;�Ø�\�,���n0���[�%cY0f0��Gl��Z����.�W��籾�C_�#�L�n������:[�p6���j�V�m^�H�&u�2r��=i�������6i�|F�?�~���&����`u}�WE�UM~V��E�l𱜙�`v�A��1�0d9��[w8$��ף���>1ۇ�E6u��$/���Rx�����Uq$�UGv�S����mq�z#d8&E&���V'��"�פ��y��~ʛ�˱���L�$�rAR�u�K�'b� /A��M�2#�j�� ɦ�Zr��[}@&��m�U�6���~M\�1�jXD�r8�]���U�����Uidm-��1G�0��V�ǡ�}��9��L����X�R�jV�a�a2_n�M�Z�_3R䷐jEn�:��H ��jZ3AI��1e���}A���~V������a�nʜ���[���<M
+r�s�O6E�{A�!�����"���\/ �sߣ"�G���G�E<�UE$�|؞�3{�e�����Ee�[��}^��^UEQ��!��YS���I�f^d����{VA��gJ=��SYT�c���9
+�[�����Y8ڴ�J5�"ۺ:诏8]�G�0^�x���m0�sq����b�G�WL���7��T�_[h��e�%�����B_�Y�B�U�*c�4o�vM[���1Q���~9�+t��)�Y��U����ϸoo��v�I6����*�j�A�ը��]�$=;؆��}�%��\��6�ej���1��З���\���mu��e�c�����a�"���w�<�ch{(�'��'B�Z3�!����a�|���>���)�:L��Q��w�`�4y�HQ�?� ��
eR�]���é���t���,�Y��a�����1M6��ݝs�t���J����n��d�pz7��R;�j����A~�K�q�������"�o�	yx�B{|R�eWf�����z�9I���2��N�f5Ij0w1�w��Κ!4'���
+|�WIL�~dу��..1HD�u����x%^��~��k��/�/�cN�ѹ���hNI�>������,�`��1��z�^7C�t5�\8�M�c���t}hP�*�	̭�tlzr�%w��$���~�`�Y���k=�b
+��Q��*�MX���rțFwk���9:E!��8�h�ܙ�p_�}K�GS�H!��Ū��y��6�?\#]y<���
+����?��)����㹗�����)�O;U�Wg���Q�:l@'�(96m�,-���m�Hf�"��"}3f�����vx�8vE������ӈ�l�fW
+endstream
+endobj
+
+570 0 obj
+1764
+endobj
+
+7 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 569 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [571 0 R 572 0 R 573 0 R 574 0 R 575 0 R]>>
+endobj
+
+571 0 obj
+<</Type /Annot
+/Rect [124.5000 531.3986 330.1455 543.6311]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://idratherbewriting.com/)>>>>
+endobj
+
+572 0 obj
+<</Type /Annot
+/Rect [318.0690 396.0986 376.1370 408.3311]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://github.com/tomjoht/documentation-theme-jekyll)>>>>
+endobj
+
+573 0 obj
+<</Type /Annot
+/Rect [152.5000 256.9488 293.8930 269.1813]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [39 0 R /XYZ 0 732 0]>>
+endobj
+
+574 0 obj
+<</Type /Annot
+/Rect [152.5000 234.4488 316.8250 246.6813]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [44 0 R /XYZ 0 732 0]>>
+endobj
+
+575 0 obj
+<</Type /Annot
+/Rect [167.3310 95.7202 206.1420 107.9527]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://bundler.io/)>>>>
+endobj
+
+578 0 obj
+<</Length 579 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n�H��+ji<��G���33�����h�Y*YJ(Ґ�����Y��\�Uu��QϬ�@���[���OY&)���2�?e�O����Ç�[l���R%�H�D����{U&Y^d�	j���bϱ<�:�BJ��R�RRZ/3 ��)�	V+i3����hg���<c:*��8Y�"j�nF<�ZD[=V-�G�^{�Q^זHK���������Ie��,O�̈����j�X�L�0�2Or�F^�#�a�y�3�4)ᔈ��wi��uȄ�#ƼG�^{�Ǜ��8�����\Lk
2R�S�4�V�10���T0= �怱�X��="��uTӉΤ��܌6x��0�c�
�b����'{���#����yӚ���F���a��>}B�,$g��Ƙ�8c�I�[Ӛ�γ)c2a��XZ,z��3doߧ5�(t�/f5
+[b�8.����*壟�a,��e�Bt�1Q��Ҵw��%~�B����`��b1�H֠82�o1��v���#�f�:<�ɿ<s5 #��er�B>�a\y�s5`�ZhLd��#��s5@,�=��#�{wGaV�,&rkJ��2G²���`������-
+B��w�ŕIĿ��]S�Z�;���h�N�m�މ��kq�y��QƖSuz��y�n�SˏaeP%��YAW>����O�Gw�nʹ@�$�2f)���귣�ٻ�hz_vqnN�N�M+��e]��G�6���P�[��A��}9W�8�Z'NGH�n�
+��c(�`��8��ĀO���x�-6��J�ͺeL"�b"��*�e�z�w�z]�÷�����]�H�6�b׊�[�6;����b��;f��g�j��=�z��U'pp�W�&^�+X'�mEo�����v��:�I�7�h�PZ7�Xk�v������u�`���{p�>��h�h	�(w�ttkz���3E�Q�έ�z��\���ݵi>0(L@�{���+�L'����_ݪQ4������gM�UNۙ�Х$�ց��`�Z�{G�����(6�f��pG<"��4��=�1yO���������b�)Pv�U2Q��4w�����\
�4����^nV�HbДT��˜K&���3���}uq8՞C�pG��?�Z���
+��e-V[��"���0�O��J*��ʮ�&���(4�DF�$�,��²�r�ʒ���22�2��Q�-M�*��0IX8�1�Ǣ��"KG��ex�ȋ��1i�������pW�^�ebl�����hS�ܼ5oS�~L?���{+�Y�����CO������z���6"�j`�a�g(b�Z�G�n�^*�����c�E��,��/(�ڦV��|0���u�h�˹v}C��b~�jՔ]}l��iJ��}x����X���0��!���]J��ģ�m������d�$�25g�?ч(�����f���pl�g��}a�;T���R�� �H#M4-]{��IY�RhLv�jB�^J����jA{��"bՂ�ae4ôQ^�k�Ht,/����eIVH+�v$a'm�t[=]��p2x�G��.+��?�8ťQs��{9�)D��͐w�<�U�\�n̜+�:3A�����g�Y+��$f�yT��w�}���#�fEE��̏�f�g�決��f~�����&�3�2XO
+D@l�����,R;�Z:�QO�¤�#cCw��,1!�<a݈��dԲ��f�K�^i�ط������'�#b����?b�t��Rȧ=Ta���h:���y���f�@��Qج3� ]�l�0k�t�ͨ��~Y]�X�t?�Ŵ����0��Vnd:����x�eu&�]Uˈ��d({e�0�^;H
�b���af(�؊cT�RTΠ�� �h�GV�h�ǪE��c�k��!��u�����C���)+�W�}ͥ��KN�����B�2�ߋk�!�*5��M�'G�v�3&�zS�V-�D��s}�W�֡�"�T����.�^�M%z����M�Ɇ?1������v���I��h�zi���2J�_=`�TgA�b�eU`,������,�D
+/�;����e�=�cS}������/�?g���+M��2��=ſO�2:��d��H��ka���Qha���S�U�&ƾ�)@Ͻ�`��֨�Yj�G&U�z^�G���������0>�AZ�����z��6U��h���?�u�3Q�_w��O�m�i��"̧���i��v�5���*�_�n�-r�Mn��-�~�E!�]�ȧ�k�����ϯ�$�̙No8��k���%X�Y��?�
~}BCD�ħ�n�S��R#Ŕ��x���8.�
+endstream
+endobj
+
+579 0 obj
+2296
+endobj
+
+8 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 578 0 R
+/Resources <</Font <</F2 509 0 R
+/F3 510 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [580 0 R 581 0 R 582 0 R]>>
+endobj
+
+580 0 obj
+<</Type /Annot
+/Rect [437.4960 654.3075 469.0065 666.5400]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://pages.github.com/)>>>>
+endobj
+
+581 0 obj
+<</Type /Annot
+/Rect [112.5000 639.3075 144.1080 651.5400]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://pages.github.com/)>>>>
+endobj
+
+582 0 obj
+<</Type /Annot
+/Rect [227.4225 185.1496 281.5845 197.3821]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://help.github.com/articles/setting-up-your-github-pages-site-locally-with-jekyll/)>>>>
+endobj
+
+584 0 obj
+<</Length 585 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n����+j��b=Xd�`[�d0�E���,MK�"R��/'��O�-֋n�3�wcR�}Թb��{^T|�V�O%���rj�?-�\d��i�Ȥ����*+LY|s��}�`�g�.8�s��J����g�,TU��v��,'����z��qy��1�]�ɬ(�b�݇}�H���zl��y,I�cO��6�4���u|����=zR���bJP~���|�)ɘC&sEi2C�(̈́="i�<�f,`*㦢�xvD��4c�d�a�1��bԞ=A�z�}���j!3Y��w�Zk>�ۧX�aT���)�τpB�K�� ��� <ryLc��S��E�Œ>x$Is�a,I�cO��s�Q�߳���;�X��L�RŲ�:�����p���X����3�'H�1���F�x˚���4c�d�aIY,F���ު��ToB�YA,��������Z[1����C��,�[��j{D���
+��ʘTn�D�r�V��Lp�I�<�H�C!^O�yި��Y���N2�*+KU����j�)�L2尤:j,�'H�)�����Ikk�j�)��rPR�
+�z�L�u��	'1�3	w��aSj�W�O�F'׋kŵTwJ�%y��.�T9�����~�sM�p���3{�eq�Hv�ea{�+\��G[�#����;�K}�б~ӝ����Ͷg���̚n�����XS��<�?7ݪe���z�kYn6��?�9�Mp�����n���媣��Z7_>0��-L���q�†�c���L�>T��CcT���L��fҮ
+Is!��,ϱ�H^dU�b�S����C��4��$7��W�`�(ʳGDE.��0n���cg�sڞ�>x\�W��+D�Q���+*��h�Ю��.���IC�T^���� �"�]��4 A��b���{:ow+��(�)���NZq��Ө��H3&�D;[�����e�|mOf|�{�y����N����عo��j{j�2�'�·h�F��PBM�c���lm6W�����O�~`
ꮵT���M���n�](���ۏ&.��+!p�sj�7��E9�\�Z*\5~�oKu��Ւ�	n�Zݱ�9���wjI��Nt:38�.8�皒�� ��%�ѧ����{j)���ar�V�ý�@��r��i=1t����O��l�~��p�ӜBH�X���^�^�2((�Z#�;��M}����u�mq����6ٶe�d���y�a��p�wծ뾾_	
+c��s3�p�����ur\�O��E��1�.�T�o��ڞ���[����
+���f�m��r�#�K�޾ڮ�x���1�@YV�~H�M\߷��f�M=����}b����[�۷�z�i֘��^�Ǽ㫮9��ö;d���z�.\hF!:����zM��ITZr
��m�]oo�cza�P��}��2@	�G�n֤Jb��:��ַ3r����M�����	K��۟w���kc&�5����Ձ�'�?P�
+�(1�&LO��Q�s��d����g_>�:�9���P�1��������a�\_�ۏHuSS����h���rT�{~6#�us��>�K�n��4{���>���K�5Q$q�x@o�������4þ��4�k{�'�f^&���gE���P�Љ������[R��zO:����Ē�@��đ<Fh����؃���̨��'��?���o@=t�e������o�7v1:�}��fo��=����}zPVJa�qu+�0H1����%1��M[;���a1�����9_b����f��Y�;����59bpL`�.	��g������jt�T0(�4���X��	��`7�s&pŸ��̒��zr�i����p�T\��1u�OC���/�7b���ظEp{1w�$fݣ�@��\�݀C�AG�]M�l��,�eA��u'��[�hy!w�*����7ZwG�,�{��Ĭ{�͕�5��Fᰡ���/v +`�.J�b��u��概#��u��_nI�c�p��n ���ߤ���t�c<�VJ���
+b�]�r���������OWBy��]\�kɇc��7cWG����S�Ffe��%�M'�eE����`��rT�r|��~h��ZR?�x�]��v�������G�\Д_K��%�bT�ʊI���|`����=`e���l�6��	]Q��dN�0��j4���d�A�g�������p�=%��
*C�	��Ԧ�?�?qo�
+endstream
+endobj
+
+585 0 obj
+2239
+endobj
+
+9 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 584 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F11 588 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [586 0 R 587 0 R]>>
+endobj
+
+586 0 obj
+<</Type /Annot
+/Rect [274.3155 491.0266 377.3130 503.2591]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4000/)>>>>
+endobj
+
+587 0 obj
+<</Type /Annot
+/Rect [191.2815 326.7766 237.8730 339.0091]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://idratherbewriting.com/2016/03/23/release-of-documentation-theme-for-jekyll-50/)>>>>
+endobj
+
+589 0 obj
+<</Length 590 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n��}���Gm�����4��^k�HQ,`P3=c�Prv��̃�'�H��c�g/�騫��TuUu�(8���Mŧ���S+9v���7��l����_��E)�a��i�0����˕Fʢ4\�C��B�R2!T�&�L��0a͌l7�*/��+�)3LWՅ��IW<P�m���2ΰ�=�m��vm�X��E,�l֞!*�'�x�x���[�#Ii.��V���@��eŗ��Ȃ�#/ma��0��.�gH�،-��,�������\26#�f��=�X�:jϐe��p�#�B��[�^>׊�B��C���ZnRf*��U���d<G,�̈��
+�3�']3&��<�2S��R�����hCD2�#�ef�2�f�		6<y��d�����rޔ&�k�e8�1�OƘ�'������gH�،-|r�t�\��N^26"��Xv�#���r�oo�r�"�DI�(J7�͇Ϛ	>�7���ͽ�n���D�������SV�=	P��X*w��0�&k�.!o�V	e�5�nd	{�����Jg�,��*h��tL��J�����B"�,i�*�"�0"z��uО!UЕa� y#𡸙�{-�R13��{#4�G+��g��G.�GCȵ�z�׿���c/K*�z6�'����
�=�eW��������8<��/���}��I��M�~�oZ_��*�*�D�U�����=v��7`��Ⱥc���믞������ٗ+��C}ܑ��j�0�8�T��\�v}��������L�(��K�%5���tGP��O�?�������C�Y������գ_��'q������=���y;�۞5CϺo�@���-MF�p��l��{��w�v�n��y�o��? �~�Ѷ���ͯ���P����bG����uzҖ*󲾫�c?�s_�6m3<B��;�Y����Sy*�ݝ�(�Ԏ�
�~�ϔ͙����#{��<���+X� S	]��F��=Q�㞗��݉գ���~����q���;�z��@)ԿX �|^���<���.�v��^�iU�@��&,�L􈡨���Rg�ĩ�W��3DF]�q����a��q,iwbZ�lH֩"����%����A׋2���@�r*��ŐJ%�6�(�Vc�?׽<���l���m?�Ϯ;�>�(n���2�p^����!������#���0�yƸZ4�J��UҚ�fF���J*���)O��6���gO���)�Hg�	�5i7մ*�d`�5`���Q���A{�Ƞ륬I{�y]�̚k��Y��)��R\�[f
+�<v�Q�ϽߡV�ud����V�HgU��okȱ��7Y�?�m�o��9�@C�7w�v�.׌�V�=���4�D�mp�Z88���	?�1'�cPU��\���>��&�QJ��2��k��(�D-�u##��O����f�P�R�b3W����C�m	n/Ey�@}�hN|z�ˮ��p{���؞�-��K�ѕ\�	W�%D�6��:�b:`^�R��)
%?Pq5�y�r�7&�����d�H���2ru�HG.�:&+�EM��I��Jw�$0���ǢR�I�J�����e�/�|��c.EW�b��WE5W:��"�\?���\�uQ�N-6|�2���P�c�/�^�s����/�^9I�t3;;��D?��B�m)��
�;��vW:�<�|�q����F�]���na���W�nkj��Ӛ}���I38]�ֺ��&p5N���F�8]�㭆��j/�HWM��^���4��"{ނ�M���PǢ���TdO7v����$zS��nq�f)͕U!\8<YM~�`����PQ��=a&=��П/���v��
+1++/
+bh�Y@��א���3���4LV����(����Z=���m�C�]�{�؏1
�&��B
+zM˰����P�^3��V�X3#�q˪��	�x��I�e�teX�'�$]��8H�kZ�p.K]��]�iU�! t�
���GQ2z�'�]/��i�<N˱�mogn|���F�����3����)�,��K����XܦG��m�"TV�o]��)%�\��Q��įR	�Փ�O�CM/I����?�8��}��;�=e���J|���j��w���/��/���4�,T�sn"��ks7�*外�'WK�/#�̊/�ޭRÁ�tK��ʱS�o�-
+�P�o��M����O~����>
�m��F�_w��4���{�#���>���)}�,�|���w���3k�~����O56��]��?����{��6��6j��6&�fKv��Ƭ�O�����3�����ތ�
I��DvV���
+endstream
+endobj
+
+590 0 obj
+2308
+endobj
+
+10 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 589 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [591 0 R]>>
+endobj
+
+591 0 obj
+<</Type /Annot
+/Rect [278.9775 78.1128 412.9680 90.3453]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [75 0 R /XYZ 0 732 0]>>
+endobj
+
+592 0 obj
+<</Length 593 0 R
+/Filter /FlateDecode>>
+stream
+x��XMo�8��W�],I�C,�M�t��
+���S���G#[�,7럹��?;�%8�so{���y3�8C��)�d5����)3�>��l��sA��SK3�%�r�K���t�fڿߦ��ZiF8�h.�C�_Ź�kRΤ��,��Q &���'���r��S�Q��$Ȏib��3��z�!6H�DD�����o�O�^���j�b�
+)�>��!��(��bsYjb.K3bO�D���C�Sf��'��,�)�T��9�BF�a�Ȟ �z��Q�,�\����R�e�L�Z��smS�Pk�*S渏*��
+�K*1�/dO=p٘���)�����yb�$:#�T&b�f�=AL�z���w�zX�#�3T�L}-�*3V, #���5b؝Ȟ �b)�������.˾��2R,`I_#�Y#{����z%�I;�J������w
+�7�|9��7{�+~lVE�iv�������ӈ�$AÄ����{�uE�ylڇ�~<t��<�kXr�,�����ks$e�#�}Un�'�ޔk��dQtE�@�1����us��n��?�b���V�ԽVNx(mI��	)�R�Ɯj�K������T�2��W	i⚀�3g��2���f�%��e\��18.��ʓ\�\9���d`Ưb�pa�.�-1kd�a�k(-�3	Br�8<2����W�Co�,�T*_!7�V~���p�����Y>��پm�U۝�fGNͱ%�bU����9�p_��Z����f%ʺ|T6k.
�]��N8�����\k~��p�����#-喛s��V���B�ղj�W~sm�ֿ��mM\�s}���r�>����8*�m��q�w~ ���&����-�D�lv��
+}�&�T���C���GoYHAղ8�]�����pʙ���!��pA1��8��H�M.�np�������T��d�p'�6T�>�zSy�.�>�,����J�I���)Ks�p�X)�3K^NE�u��Ӻ�TR�W���>�J��I+���,),�#3'e����*s4�'�Z�� �+����?BAy�2%�:D9R�˔�S'�N��t�$*:�.�J��8ܗ	��r}S]��L~�B9�e�ody����q�������K��LFu8=\�g ;�(�wb}du�.cR#��E���T�8�QTc.������]Xa�G�R�[�e7�8i�a�0�Ly�CuS�ו�e�ӱ��Q��t���W�������g�fOM�a��[���ꮷp;����?���,:7ᐭ���M]7����ϧnQ7����:ރ�}�uU�s����MM�x���]�;.��>���<��sG��ES~����Ë�Yob��
+&����;⦐�\be��ǂ��{00�Տ���j}�?F�g�z15	?�8-?W]�]�v�f�n�guӔ�m���>�.G�%�W��N��&̍�/&�����H��vU[��w�*��}�Bż!�q�p��a���WޱW��d1��_/5��vq,;���?A��WZ�$Ĉ������
+endstream
+endobj
+
+593 0 obj
+1543
+endobj
+
+11 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 592 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+594 0 obj
+<</Length 595 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n�6��)t��J��X,
+$��@O{p M���I
+�A���7�P)�b[d�c�:�����!-kA�����of�D��������+)�ֽ\�FXY�Ɔ��V�|�7,xJdJ�FQI���K�m��a�(�Y�33َdM-��(C�f�'I���ev�j������d4 nV�� ڭ�3A4kT<	0�y��u3��Qˍ����G*��@�qA�4^"�?%�%,R�̻gk�UD���2�$��(K#D�VF�����C�Y�FA�Q�#5:D�ߠxp~]nWc^R
+�cO�J[������V��v���Un�y{���
+�4�E�J˟����vP
+#o���̴|���ڸ�!�4�4��f�N�Hd�x̠�����1����K�������RŻ�$�
+�6ZY���A�\S[�Pj8jy�>��Y�`������!i{)�B4$���o�+k�B����ū󾤸B_Ԋ��E릦T�C�������-Nq��Q5b-�(��T�����hQ�)�a
+��xp�'�.���>���V+�{��?n9�E;G�YNI#��)Tk���t�Xd�45�ʔ�=%�q>�hjZ�8��!l��v̺<>h��n]�C8T�Ɍ��M3��g�� ��և���Xc�
+>�g��֗1�C}K��ш
�{�zvQd9
�:V�%>R2T�� h��s�G�-G:˩�P\֧�ǘ�Q��J}��}�j��Ħ1'd3
�9�Bss"��D
+7�<�UirK�LƇ��H�f�
+*f~V�>�Z�!�<�X� 1b�er���A��K�4tg��86��̠�ݙa�N�A����Ub���5��
�K��~v�f��
+����O��ɄQާ�x�Fa�Ut��O��5�a�j���/M�3�P,`H�D9�L�Չ�/�7���D�&�P����VRJ|�J)"t��C�U)ͪR�����Y˸Ƞ�\d�2.r��O��lm㐟��t}!4����\��E$��p�e��)��c�K^
�:&�fvL�);EU��P�"�]P�tj��mQ��&yd��U�/t8�"{͉W��.��ǻ$`r�.�L�Y���21�)6P����#Hn���/�6��
+�7��}�Z5��c�
+$L�Fv�b��ZŠ�Y��1�ڮ��X~����hs��97��m=/Mlj]ȁ@d�Ɍ��z<|n�y�1z����+��2T�/�`Rh>+���4���1ڳ�i��I,�&#t=ώ�e�������C���u.�п\y��q#�!����.�_��*B-�G�Λ��|iL����2���B͐GHޛ7}1o5ݯ�s��s�j�/��w�O_������z=\��m����:<tU�r���=��/����{ꪻ�}�K�Ƿ��i7Em��hf��t�����]�����_�F?Umw�=���i���!m�36j�4l�m-�e�]=}#I�������P��J���=�v�^�ѯ��L�����jª����g
+endstream
+endobj
+
+595 0 obj
+1486
+endobj
+
+12 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 594 0 R
+/Resources <</Font <</F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+596 0 obj
+<</Length 597 0 R
+/Filter /FlateDecode>>
+stream
+x��Zmo����_��C�r���P i�C�^qmS(h��t�H����O췾��Og�ݙ�N���|1�ggg晗]�2���|U�󓋟F�����Ww_]I�2;��<<	]�Y@J�)�sI��Y`�0�gκyQaL@TRc�LDVW�tGXX�ɠ1S�G�	I6]sJ�4�KVF��'ڀ��
+mE��B���%��I�&-ϊ��_����a�-"�0�I�@����G,bYD,b�K�����_h'�G,b��!��FEX�;��"�E�""=B�F�9η��
�7c���㘛�Dv��i/�d|�-G��b�5��!�tELC�M�+�o��Q�oZ�ڀ�b,�C�Q;!��V��_������bv.��ॷˈ���,b�*,�bXs��!,bi��!�C�
+E���v��,"1V���ר�!�|{�RN��|���VҾ�Z|\_��C)��֏wW_�7����8��R�
+?zP�U�#E_[e<�}k�BE�\�@�2�r�|��-��O>���)�I�/U7��5����yo~�K(p��|����������|���+����e>$��Ks���l?�����ݑ1��RجT�a��Q�&�{���[e0�������x��؛�d�R�9[��RN�/˷���m��e��X�t�6���\Ze��	����ΘLe/�:.�¬[,����'�����r/�j�._�{|�s�/=�{i�آ������g��gZ��M�ڼ���㝅���ii]9y���YaK���fa0iM8;ع�)f)id���zN� z�SB2l��,��bIW��jU��M�s���	�^�Y�lH�B[��#\�^�vB|�E3ȇC#ԕ�>tn�x�^��0�LI�@���4�
+9In�#�8Kn�?Kmi2h�zA-a)��C_J��E�V��Jϩ��n{�)+�T����0��a1��=D60j�VF-z�Ԣ�H-!�SK{=I��*�9�U8k�ܟ%xwF��ڱڶ�z�l

���s��GTU䌲p�2H��)��8�:��%ô�I*i'�&��fX���'��"�l%��#\�^�vB.&���4�g�v�)w��]?�,8V*���b�u���2ȬQ�Y\^rf��3�t�����v�Xҕ0b�a1��=�C60f�V�,z�̢��,!�3K{=ݡ���F�_�g���ݾ���L\4�i��ح	S�[�˦-t��邅H�*ӥ.��d9���Jo�T�NHN�Jq#&� N�]�q�!!�2��>�J���.�ָ�ח⩔�ywr {hFRG�^>��Xk��b�	%�GYjFT��R����!Ɯb�^3L�<IE�A�	#�I �(��Q��2��#��F�	��b��i�>����"��Y�_8�
Hs�8���hwI�upH2H���RJN��C1��a�(����F�3,�B�ud�N����D�Q;!�N{�!��`&/�&���cfP��W�0�J.�)��jr��E��(��n.%�L^&���!9�J�ʰyҞ�!�h+�=B^�k䕐�yŽ����+��N��-hY!�M�a)��g��&m�e�Wp���-x�I�r�0��$��B�"�x%,�ڑW��x%[�W�W�ר���y�����g�[4��ǭW��j�ɸ����C'�ø?����Tۦ�mjQ��s����L^
�)?����gV��f)e]���j7v�&aa�Zp�3Ly���vB4�J���8��I9
qԮ�,E6$$�Г�	k��#\�^�vBl��\~������=���d��O��/�d��{U�8��q׹̌v���$����mk^pV��P�a.FQ*i'D�����q'���X%[�U�W�ר���Ye{=ɪ���99��çY�ħ�/u+�w�;��m��p�l�Ͷ�,�{����f���f��iD[�k1vb�׫��㳍�/��b:��
+7E�t@d,g�2��\8�$
+N�RS��,��#�l�˱x�Q0�*j�>�3ڐЅ�&t�G��F����F�{1z�
+�.�gEA>�B�^��NLJ��o�������X���]�kE�c�!]�d�k1tbW��b8����w]�tb
�j�=�[As�z�t����h�v{J�v]�V����ֵ�=�:����!�/)�nr}�|rc<�]���.<Y��v)��z_}�E��ի�.h���p��bׁ��nG�p�_Ǣ[����㇮�����
���!��WW�DT86�h0I����5P��:�w$	���U�h�ZT͟��~Ùu�l�/Z����&�����p���Z�6U%T���Ku�w����Gh�]h鷇m��C�7E�d��^C�����������'P8@U��]=!š���>��
+n�T�ɭr��z��ߛIѿ�z�m7��m����d�ar_?��Ͷ	����J�6���~?���F�.�5[�4�U�v����6}#�rh�s���{�h��p����]��O����3��v���ɸ���v��P5ͣ�뻺ˆ܂P߃��!�a�&�vr3�|�����ͽ-pMu�z��u��G�}�㮙����zn���=sh���z�S�Cߵ����yћ4\#mZ�ڊ��R7bz�3�n5T����v%n��`|[�8�%�X��0%�XU!���S
1�*ܴ� �QKH���i�3�q��2t�G�A<l���E�/sJ��'���G��]W
9�F3"��3�*���}կ6��u�
+nPa֭��Yf4n꘏�O[�q�.�PC��!Z�w��P4U{��>�q���̗P2;���2�6u��z3K��6{��Hx��T)CXx�`e����C�J�	��+aN�/&�Ib*�����|�"��&[��&�p%z��	�I׳gxڋ�;:����as@�4G+�a;�;�l�l�,��a�/d{�R��Ɖb|A�7�\�S�Az�b�2�}�:�5�)n7w�y����������.p�M���u����U����U�k�r��d8����8�F�d���?s���[���m�����1�&|�f!�����+���4|�
+endstream
+endobj
+
+597 0 obj
+3061
+endobj
+
+13 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 596 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [598 0 R]>>
+endobj
+
+598 0 obj
+<</Type /Annot
+/Rect [296.1030 481.3837 400.5360 493.6162]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/mydoc_yaml_tutorial)>>>>
+endobj
+
+599 0 obj
+<</Length 600 0 R
+/Filter /FlateDecode>>
+stream
+x��W�n�H���̌Z�z�z�Z#A-ͪ�8��G`4�g�ͽ.�\&-��D
+��s�9u����2�<\��/(���8����'<�Bf�p+}x`�`�gF΄P� ��Bwϴ�j�\`;�\&�"b��{�t��ń�7����Lq�Xd΄�����&Qk�v��(b�udO�qmBz.��z��G#��L��ГI��"��Jk�Ab-F.mf�"b���{$M���E/��|Zv��Bk�Ab-F���"]G���l�-'ۖ�<S��Y|�:��r=�c�Z�ϓ/��Q#XPZ�ٟl�}2_On��6���s.���SPb�wK$�j�yJ�������K'�c��V�DD ���H8�;�o
+�}��(����4�P<ot��H�����˸"h�ZSOÇ����L����E[�uJ���(����f���g���x��Q	���v�%ҥ�n�Ɔ�.y>�:�] ��)��k�[dE�s4@��h=0��ºǩFY6Fu�Sך44�{;�8fG����?�W��iC�Q�<6��M(U�S�\`�|�g0-aM���$���0wW��ػ����"���w���J{������!����F�������$(��EtK�*e�~1!�=4��ermI�����&��1:�$��X�J�g��3���ei�CY�_��U[���*���d*]���l~/O�i���h�K�ŀ
��P�/�wX?gT�zR'G�]Q�d��/
+e�
9�z|�K|S݄�J$�()u=��h�+�6�S�û
0��/7ˊ�U��W�.Y���m�+�k�R��fu��3[U��<�'�=�o��U���\�>��Xm~�"�}x=V��f���|*�l>�l���y
+�N�|��T��U�?'��Z���Y�ۺ�>�2̅�=������ᅝ��X�k�϶�4��juޣ���V�ܔ��aI�W��m�K�)��e�\T�iJaW����P1��g���r�Tqm~b�%ل�.md|�I[�d=P�/ۿ!º��>!��3�����s����	�{�?YU4
+endstream
+endobj
+
+600 0 obj
+1060
+endobj
+
+14 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 599 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+601 0 obj
+<</Length 602 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n�6��S�hF��� �8��,�@�q�EV�n%j�!��ۏ��y���D�R�{� ��Y_���8a4����&ß��S
+>z�C�6��l�T�W%-e�fD=`�Sc�]����&�����FJDF=�)fD��+3�!E����	�6 ׈)��K�T����6$�[Vn�G�b��#�{�-�f����wi�P��e�<>q�1>�~�"6"���z��F����z�>!q�Fl��A�S����o���E�z#6z��u`��y��<@���xBXE4��F	��|{o�l}x�|J�#l����L��"()�tN�Iq����R�(��Q�.e��%�R�HM/*o��uw��u��
+��Z(4i�AS2|p�@������Nr)/��(j��cx����(H�]J�gkp3�R%�V~����K8s��Qkm:��gٓ�I�F�UO��S#�\~�ɤB3�w<r^�Ihj)�N�i��R��ꤤLr5�� |~��g��,9o�L4�|�w�^����ٍ}�	{ޅ	UK�g=l�a�g
+Ͼ0�^�R>��7.L��X�����qa��P�	��7��7=�|c���WCe�C����e�;���)]�=����[�3��Jw���҅e���#�Q�3��Jw&zA醽�j��� 	K6���\�őn�H}�ǎd��ȕ�P�� +-��Ԣ]<1TX�Eq�R�2��"LS�����3d��Nq����7*�j�'�L�T��:��<������_.����L�|��&<\�V�W�(H����5mf�$�`���!���8O��I���W��$l�bǬs�c�~3��u�9oyn��g]�r�^\K�~�:��D�u�����y��D���ppYC��/�W�4]������C�u���uYQ�z�h��{ʚ�u�z�Zo��!�>���9�/	��/�K�uQ���������������JH�1z�CVmϰQ
+���B�����i5Hi:�]�Y���6]���u󙅗N
+<����z�;$���j6T�"��Wѿ\	a��Q՟-�8����8�p�E��j���nk�^����J�;rl�(���n��ǗTY(�S}$yV����\�g���#�	WUݑ׺iN${B��]���/p7�N�E�r��	u}����mN������kK�z��
+~-��\�[U�N^_m�������@��\��w�/M��������;4��A
@wG�U�*�r`w��+���TyQ(�qy�����s��P�}��vU��\뚬j�]Ӹ*���.����xᆇT��>�t���."����z���
���,O�K Q�_�|�5�x���̢��?Oe	�b:���7贪6����X���{3�Y	��!�Žg����7!�뭂���)f�?3"0���Rj;a0�`0�DD�Ɵ�'�ۀ\��d�9�1��a�Sͳsk�S����`k��M�(`���ņy��f��(+�����z[����L�4��y�kR���xx?��d���I�0��H
++J8�τ$ÆB�e%�$x�j�"L�f8�����a!�i�!U��(���(���I�{=�O�9;�S\�>ɸw�B�0<���^ڵd�T�D�f�M}pMw�{v�����������b�c#��b{nˬ�e���P{�a�����<�N����צ�W{8�Q��&���US}:�}{�sX��\�?�������`X"���
�‰�ڠ]}_��N��q��ͳ����s���'���݋~��ѿŦ�á��"��)1�ߌ�?����m�5��a.C�n����a��:��h	�a&�["<
���B����|{O �yq�k2P��ܺ���'n>@���8��\ƫqu��������	����w�W�V�#�/<��֔ψ����tlx=(���̋��!��
+endstream
+endobj
+
+602 0 obj
+1931
+endobj
+
+15 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 601 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [603 0 R 604 0 R 605 0 R]>>
+endobj
+
+603 0 obj
+<</Type /Annot
+/Rect [278.9775 479.2409 412.9680 491.4734]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [75 0 R /XYZ 0 732 0]>>
+endobj
+
+604 0 obj
+<</Type /Annot
+/Rect [436.5090 479.2409 465.1005 491.4734]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [78 0 R /XYZ 0 732 0]>>
+endobj
+
+605 0 obj
+<</Type /Annot
+/Rect [112.5000 464.2409 191.2605 476.4734]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [78 0 R /XYZ 0 732 0]>>
+endobj
+
+606 0 obj
+<</Length 607 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n��}�W���\����`Y�"�"k$�,����k�P!9�U�2	�r��i*�96�=�u��S�2OR�age:}��O%�r��3g��9�\$��WC�(E�d�O��	Os�<��r:��0�&�� �eR(E��ùvg,�9Se��`E�I��TY.���@�J��"hbL$Bf%��}���lμ�k�|D�rf�G�t�v�4HL����6{$)�2cCLB	ʏR§���Yd�1�Q�y��
+�Q��L{@�Yl�1�	�:��X���I����,c��و<���#d^o�7(9�?Tr��q:/�d7۳o�KVN��ܟ�K?��߱���>�L�c�)��G)�P��
+R�N���J�T[�
+��R�_��Y��N:���e<Q�R4���,G��#R�+u9�#�Y�ʗ\O��/tR�BX%�Zi�ף����,z�q���,O��'h��?��#��ŚW"E�iJF,�^�`RPa�Kљ��2�RK9y����<)�2EU���ŕN�x!��:b��j/G��(�J��+�zU���e�'���樰+-�^T�U��[�D��Rk8)�P���B}����bӹ����*&��жX˥�$%:_�7Wױ܉�RL��s��WA��(d��H@`6�)e�0D^���q��$�W

!.Kk����_�����r�L��&��\��E��Dع�%LI��C�U�F�]�eO��PI�(�3�
+�@M���I��~�r923t��c��!������<�|���t�1c�o����S�4ls�v_�ðag��Us4=�o;f�͎����=v�����n�cכ��͛���eY ���k��!���u����g�����0[��}��P5��8���=��]��a�6큎Cvծ����b�#Do;2�T��tE6پ�>�	��̦�z�`J�p���&ظ`��T�r`�u?F���6����9�iR�F�`�Q�[(JHj��a��2�
+���'�قI-�����tJj��Xds&Q*MU�`��ua2���t9,�	S�.���ł�TM���.�à�G�%}�^{@r�+��y+)(Os���������M�r�|��XQt�伱��2QX2\'���w�׮�S�
+N+?r1]}��$����m��̏�x���l�(��2��;ZD�֝��#D]C\�t]&AW����ө��C���:�
��B�N{�h��kW��3ή��=N���	K=�Bx0{l�M5�-hahGR؛��VCe��=Vfd�?�~�v�������SG&���ƌ���q�ȓB:`��I+U����t�iH�uy��V��tj�]�ө��C��qX\;^�G��D�J�Vt����//�O��Z��kf�Sw�m�}}��&Q�~���f���y߰������e���j��h<mڮ3�ck�o��y4�0�`���l
&���s�>��}��j�Xտ4����-u�T��]���wl-a��0����<��_V����3��~x%/���e��N����:S�Շ����Z�<a��Ԁ����N5->tx����Uh�؜,#Fo�)�t��}s����k�)0�ʒ�!��a�}�2���:ug��]Y�\|���ћ�d��SN{@�;�"t�0��N�,�;<2͜�W�A��(H�������푭�;�����GE+?^������B׼Wm�w�a؏m�J�2���&�̋�-ER
+<�dx;`�Y��7!�}�vgf��qU#�.�Aaľ�T�������3޶��m�=�x{:����f��}D^�G���t����y��g -@�*M��O�.�fKL��2R9q�a���8��j�舾���}��/�o�����9��k�v4T��Ƴ�7�1�`�~�o���	7����O�p��P����Oݞ�̩Ԍ�C{�Q�a��%����"z�
+J>֘s��I]���!cFR(�1��vsܛ�}�
�c���|	Pv)_�T������%�q�=n7L���4�z;B�{��ϵKx�8��rg�&at��j�H�Jk��O�as1���]�Z
��2D|N�"�����q��mݙ
�>�}<}9}1=���Y�&������6��0-��A��1�;Suï=ۀsq�	�կ'3�b���ݱn���z@�a�
��fʴ��.�]�!�e������(�G����>|���n�[y��blǍ���
��g�6���
+^�4�fc,
+�D�jFg�����C?t�_�&�x�����jReMF��E�Z�3�y�4fXO���r��z�G���> w���O�-��[h����"QY�8�ڒ\aJ�z.�+9�-b:���짶b�$�\.��ni��Qg�T�	��t�-h���O#.KK�+��#����U?��@ �/����f�zC�0V��\q�<�*[X�c+���YS�r��Pnˮ�����\����N�ȽF�Ճ�dN���������=�o"���4`˙b*ƅ;�q��,
+endstream
+endobj
+
+607 0 obj
+2483
+endobj
+
+16 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 606 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [608 0 R 609 0 R 610 0 R]>>
+endobj
+
+608 0 obj
+<</Type /Annot
+/Rect [208.7640 333.5266 284.6055 345.7591]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [48 0 R /XYZ 0 732 0]>>
+endobj
+
+609 0 obj
+<</Type /Annot
+/Rect [236.1900 116.7766 312.0315 129.0091]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [48 0 R /XYZ 0 732 0]>>
+endobj
+
+610 0 obj
+<</Type /Annot
+/Rect [335.5725 116.7766 408.6945 129.0091]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [55 0 R /XYZ 0 732 0]>>
+endobj
+
+611 0 obj
+<</Length 612 0 R
+/Filter /FlateDecode>>
+stream
+x��Y[o�F~ׯ�Gg�0�/��@��.�6�u�[�@AS#��8T\�_�!�g��\�P�j ��y�\�|�2���E��25?e�Spf���0���o��w�4��=��D�5i"�p�^����J��n��z�w�f{w�?����l�������Pf	BE��<eF� 458
+��Fy�����Uw$ͨ��T�R���q��������섍�iߒMӪ$2#h��k�����G�����i֊�M�Y�M?�5ݖl�~O�N���s�Eu48{Uu=h�I?ɷ�P=Q��j�����P+�h�,yR8q� �������59j嶥I�g��>dV�a�bdeA*XJ�1ƒ�,R�O�T""�*Ƥ[c�z��γ����De��2s���� �b�#4�dy��P�/]��U���,g��@��(�t^��N��gG^���^IყҞ�{
+�뒔����\f���T���
�����e�K��ɛ�I�M�ń@�0��I�����1^$P^�߫����?���j:ˬ��Ϣ��ʊ\Yd�Z���sΓ�SDJ��s�֔�\R8���Z�x"(�0.�[�$��[:DXf���Ҭ
+68dy[��G~���KH�\jE��KԺL$.�$�Ev�{N$d����<yN�����'�ʏ�ڈ�K�ě%KD���ݮ]�ޑ�{(�5�_����e!+�\D�d��yL�	�"S$�rD�Y��e�X��3Me0��L��F�[e��ـ�<�f��0^$�a���[�
�W�V�a9t9,x��Gg�:YO�0�+��9Ϙ�?b��b�m�LJ&�3s�U�����Y�6`��3�eG�i���
+�qH�2���Y�8�0ybWY�	��0ۀ���]��
!������g���3'�ͳct=/��F0�(�;�R�w�.�;:���N�݅B¢�Ȗ���j:�e0g�����]Ӫ�0]d+��pn�3(`��o
+��D$s9�ܚ�G�h�4`uh�����]e�G���-��t�E��
�J�luV�Â�Nz��g3(���R�-��L�A���Qc�Y�4��oz"ହLׇ�[���o�H�
QU�#�h��n.��!H�$+��C�U�s5�xs�����ٲ���L]����FA�F�B�����mK:�֤���U����M&�j�xXXR�}n�����t�"���Ӓł�	+`���Iȯha�T�^��`h������蒍JrJ��~��X�2c뒝�B���>cg]u�S�����l�WǑ��l�ݩ/j8-�C#���ތ�fp(Y������*�N��t=�WZ7_&��/�9��~������`T��]���_4���f���g�'p�U��M3���^�YD.B����������3Py�D9���bq�C�Q'���9��������>�L�	�����p�o+�#u�@*/Q�3,�R�70H0�v��,��V��؎ξE��/��ǣF��E���r<L�j�_MA��	'g�}��	
+��z����qB��Rm��^6*��r�T�P��i�S˩?FX�t0�A�ሔf��[c�R�פ��Tly�0ƥ[e�GHd9,��Ji&ހ8η^z*ͪ`�C�U��a�*x�൓!���T�t�Q]���\�+?o�����bw���Ko���o��ʋ}����V5�S����p����Hu8�j�߹�2��C?I�6X&�7`�DfBM#P��q��_mG ��zPXu�����qk��h��\��m�?�����7rXo�N|�k����)t�3�,�,���
+�pl�5���F}�|�#��D�p$�ь���D�M렉�-�eQq��2���G�e2�F�!�g��I\BX!�H�g�ﯰM*���Ś
+�6�u�;����$���ei5��}�QY�5p�P!Qֈĵ���TF���#�۶b�"?�Y=�v&���8��k�"�	Gh[������j�<������o�JK�9������'Ym������Geҡ±���	��m�``zZt�+|�������˱[#��m���?rY&�
�uF ��ϳ&nС,'^�M_a�M��M!�x�S}>�z9��HdgZ�XV��݈�~MnT��pn��&,�y$��ij��b2zK�3�$� ~���A��c��C!J����3��,�n��o�:�
+endstream
+endobj
+
+612 0 obj
+2191
+endobj
+
+17 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 611 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [613 0 R 614 0 R 615 0 R 616 0 R]>>
+endobj
+
+613 0 obj
+<</Type /Annot
+/Rect [362.9670 442.3837 419.2815 454.6162]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://www.princexml.com/)>>>>
+endobj
+
+614 0 obj
+<</Type /Annot
+/Rect [151.0140 427.3837 212.9565 439.6162]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://www.princexml.com/doc/installing/)>>>>
+endobj
+
+615 0 obj
+<</Type /Annot
+/Rect [247.2570 359.8837 317.9565 372.1162]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://git-for-windows.github.io/)>>>>
+endobj
+
+616 0 obj
+<</Type /Annot
+/Rect [202.9365 224.8837 335.3730 237.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [146 0 R /XYZ 0 732 0]>>
+endobj
+
+617 0 obj
+<</Length 618 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n�F}�W�R��d��8H���/�5�Y�"��}f���\.ڍ��$�-�������Vq�}��o�h���Z��?��XX.1��!����`"���t��X
+ B�87��L�$+��abL8���̺���V<$w	�>�(�r�]�.�$+�����ae�u�[�!-���8���R��&s�F1������?��	c=f�qhL8�dN�{��X�MsX�)���޺ɒ�)c=2a��c}FsY;�2�72�����A@Ƕ&2±љ�5�QI.��d>�@���$�\��xv�W�s��{H0ڊ��.���$��ce�<]�xv�W��8�{H8�z�������ڝ0�0�I ���&o�2c�"3�,����\w:��1�c�&a�Ft�k@���Ȅ����a.kg�C��v������i�%��n���#t�v�ZoS�J}n^�8m���\�]�suiPǪi�
R��~5��:I�G��4iun^�ퟫ�[��?��Z��Vu~AiִU}Aվ�������T�UmV�t�N��i�N�v�Q[��!�͓%�2^�jwJZ�ת=պAթm��6��~=�Y��>h=�Z�Z��jAX�z	Vf�Nǝ
�(.����Z{2����t
g�؂�'Û�*9��Jݭ�ꠑ w�&��2�t;'3�{���j��>�<Qg<�T����F�*�>]���~U�î:�K���&���O�ifK�Ц�oa,��UDbbv�P����g"��f@�L#��4Y��ʖʇ�MO�?�s��-��hh c���D[�K�����{�������V�F�A9t�Z]@/�^h�*��âC�E�nĝ%��'0���Jt�$|��W�g5�$��U�H��Ox��{iC��*OŽj�0�VM��<�l:߶��^�t��R9s،Bc���a�m����#Y��7���F<8��*0Fq7ԡ�߂�m@B%L�P	|���럖L��GBF��[�:e�@������:�S�4��:��a76ޟRv�1V\V���PfgU��z���u��p��ZS�-;�6(�`�5ev<j3�a t�
��a8+�N��<�^����uw~�ݛ��̆�������G�,�A���?�BYrʠO)���X������<���zZ�TJR>����N�����8�*�)L��!T����V>���DF3����I��ԑ���7u��`���Ȧ�Ҭ�ݽ�K��%����q8�˜"�8�4���ޛ��b�]s�a���3�wY��{|��7�Ȼ%u�8fB>�eȋ�"�Dxa;/΁�ya�r����!��n�c��;����'�����Ӄ=öA[��A'��}k�vs#�3�J������
�P`+.��puj+�a��yv�e:��Y|�O��$�D�o.��p�*���d��5ߴh��b!������e��9b�x�p.o\DXک�(��{�:�橒tȩ�#QRke�n��H��P�p���]\7�L`m9���bIr�
+5��I01&l�j����m�5��
/n}��i3�mO�g�p�s��$!�3/�����-��{Х���A7:��.��@��г9NCgq�9�wG�d�G���~��}8AxvyL0�,��dϘb�}��
+endstream
+endobj
+
+618 0 obj
+1674
+endobj
+
+18 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 617 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [619 0 R 620 0 R 621 0 R 622 0 R]>>
+endobj
+
+619 0 obj
+<</Type /Annot
+/Rect [133.5000 650.8837 206.6220 663.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [55 0 R /XYZ 0 732 0]>>
+endobj
+
+620 0 obj
+<</Type /Annot
+/Rect [192.0585 584.1337 296.4105 596.3662]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://kramdown.gettalong.org/)>>>>
+endobj
+
+621 0 obj
+<</Type /Annot
+/Rect [414.5535 95.7840 493.9230 108.0165]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [121 0 R /XYZ 0 318 0]>>
+endobj
+
+622 0 obj
+<</Type /Annot
+/Rect [112.5000 80.7840 161.9025 93.0165]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [121 0 R /XYZ 0 318 0]>>
+endobj
+
+623 0 obj
+<</Length 624 0 R
+/Filter /FlateDecode>>
+stream
+x�]�Mn�0���b�i����.�4��i��.L���m嘽Q��$$H�a�|�1��tA䡯��Gbldca0�>oE�(·�K�7!�c*�*xY%�?Rl�٧ۡ�Yg��)��'(��{�Q���Pqʢ,}@;�Rw;EP��u �F�TW�u�8���U�����`�
賋
+�T�%7p��@/7�Z���
w�s�x.�W�{K�>����t��aw!�PLw�%9�Q���),�Hƈ�W��.����A
��l)�NM3Q���-�8}Pɦ*��
+I���C#I��Xb�MK�9��g�ŸȮę�k9;���A{��]ѹ×%�z8�	7�9i�߁7�F��.���6�V
+endstream
+endobj
+
+624 0 obj
+362
+endobj
+
+19 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 623 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+625 0 obj
+<</Length 626 0 R
+/Filter /FlateDecode>>
+stream
+x��Vˎ�6��+��)&�ޒ���4A4
0�@6�D�L$�%)��~P����%M4�tc[�<�>�e�����b�oi�Ga� �(����xX/�E�"ߋR?�G��1��"B/鎬2/^>�����
+���.��6Fɲ-���ZY��v�Q��~ I��	��#WG�O��2�D��e~��b
+|����B���Aɣ(��Rm�ìgwd�hvwĚ���sE�40�JE�I����00����q�k�ܣ5��7M�*iHnI4���
����^��H��#S��3g��!Х��iM߹.x�9���������ޛ�mΝu��ۦ�J<�g��B\��E�g�J~�M�	aY��l�c%���G�6��2w��泌�(JV���Y�Du-f��Ĺ^�P�x��r���a�8�����7��7���I�_���T_%M�w`���e�S�%[�ٙ��.@���^6��S������>��Sq���|��Ή�5�j�@���5AYk�8h�e��`W��i9+�6����ͻ�~(����G���bE!�Z��z;Ž�ܔ���{7e&�/Y���S���Nm93-Z����й$��'	o�d=�
+
wk� �+�{}�JtgQ�e�0ZU�.x7�V�{y���V���.�[$�g�)
�h��#�_��Yz�f��/����v+�W��ɏ츓�tuz[�#�P��o��Kf��'q���\����1ț�uK�T�-�7��U��>�Bl�T��R���^:�_�l�>
+�s6Џ-��@
;��kg��I�=�Jޖ��z��g�_�����\Wq�n+@��v��n�͑���p%�X���%�UP����!�Y����M,��#k
+n�U����v?�7�-Fˎ��l����"L��^R
֢Ƅ�~ �5N/��g�oN��^��|���p�y���M�	p�
+_��H�1s��#�$!�=AI&�W����)�r/X=se�y�#��f��ᮂ4���f,A&G7�,Yy��VCr�2e��gq��h6>���=F$��
+��|G�����0�����ś0�".�;���N%&��_��xrQ�S�CY���)��c�O6�Az1���5�
+endstream
+endobj
+
+626 0 obj
+1108
+endobj
+
+20 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 625 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [627 0 R 628 0 R 629 0 R]>>
+endobj
+
+627 0 obj
+<</Type /Annot
+/Rect [152.5000 374.2837 285.6220 386.5162]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://www.komposta.net/article/navgoco)>>>>
+endobj
+
+628 0 obj
+<</Type /Annot
+/Rect [345.0490 261.7837 461.4760 274.0162]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://startbootstrap.com/template-overviews/modern-business/)>>>>
+endobj
+
+629 0 obj
+<</Type /Annot
+/Rect [203.5140 195.0337 315.9165 207.2662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [7 0 R /XYZ 0 732 0]>>
+endobj
+
+630 0 obj
+<</Length 631 0 R
+/Filter /FlateDecode>>
+stream
+x��XM��6��W̭�bW��ܚ�iS$Eи(�•h��$��d�?�����AQZ.��=z���f8
+�|��]���w�i!��h������2���QY��W@����EC<M� JB� "^�xx��8+<L��D^��̣�IG�������C/"O�h�x1��h{Y���@�đ� H/�-������n&�0��Ή)
<b'��Mb7'^Ǚ�&�$^�^�D|�Z�jf�f�ĵt<C#j���f����%g8�[�f��42Y���
+���na�5�����`ZkkLTk�w�fcΪژ��ipu���-,~<!l�la��-akmO����
+��f�"��,MBk���n1w�t%��Ow^96�&�RHc���t�
+2�zb?ů8��e�fX�b���26��aw��o�v��g]�r��_v?�G�ȧ�:5�͓����E��
UU������<���s�깷�����C-;P��'ޝx���,��t'���W��(K;�!�^$�Nr�ƍi����^��lݩ������Qp��C.���'^+q��A)�lH!/��~y�va�d�%7:z+!�x�,g���;r��u-�+~�(2�#�@ԝ��)e+��D�nd�[���d>U~���
��?�k{+��id�U�����>d�0(��?2%r�?�9/�7H�З<�Q��'g�d��]!�աx�?�t�,�U��)�I^���j&�)E�u�3admpp��H�0[I��6�ʚʄD�X&d��.�0�13eb��@N���ܒӊ�Q:]�v��h��L(
+���O�Q�<V2Ώ�"c�����i�eal�|���Iϰ����z���z?g���Φua�Ў��V�h��X��,�=�
+�rj�Q���q�Q�]�����^������<u
Q�e�VW�Ϣ��3�a�9_��`��k�v��]���c9��z@�$�D�ӛ�����+B��_���nz�P�|`�d�Bv�U�3v	p�t
+{��s!���3��g<���<���\����
c��Vw��
Go�������YY޾�XHF�5ȹe�fF���<?7iu��>���*��g>�vr,�����Ȇ�m�/�G4�
���ot{$��ZL*Q��6<�oZ�x@E�n��xw�N0�b�kX3���O�tV��^4��a�Ǿ/�Ө��[�t�Šw��5�H�}�&e��L,��oX�G������y)�"w���0�v���F>
+Lh,����i��3�_���6]�mM�9ɲM�WRv�kY4)����t)��E���6Zk��\GX�[��-����|���
+G!�ٱ�I�“�M�|�x���S����!]h��
�ia�pċ�Y.�%�;��ҕ6�z�Z%@�Y��S���?=�1��c��^�[�R�X(��C֞^�B���r�Fk��q���>�CJW�S��r�H`��鹒Š�% ����n3O/���$Q� ����;�;z	��&a�Hl���@�p�7nx	�yΫG|à�=:�$�̉&�n7G�tu�����u��?P��H�{-P9��m��b��������f����?�]�7
+endstream
+endobj
+
+631 0 obj
+1600
+endobj
+
+21 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 630 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [632 0 R 633 0 R 634 0 R]>>
+endobj
+
+632 0 obj
+<</Type /Annot
+/Rect [313.9800 406.7412 426.7815 418.9737]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [66 0 R /XYZ 0 732 0]>>
+endobj
+
+633 0 obj
+<</Type /Annot
+/Rect [313.1925 348.9912 365.0340 361.2237]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://kramdown.gettalong.org/)>>>>
+endobj
+
+634 0 obj
+<</Type /Annot
+/Rect [285.1995 246.2412 386.6115 258.4737]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://getbootstrap.com/)>>>>
+endobj
+
+635 0 obj
+<</Length 636 0 R
+/Filter /FlateDecode>>
+stream
+x��X�r�6��+�t:*����Nͣc��H�qf��)HdL��~e���� )P���K_�{p�?d��\�->����K����q�
��;�ZO\�I"�%r�ȍ��9~4m���q��d�N�=��#�Ş�燱��{f�:YG&��u��[&�远Q�G
+g���p�p9���IM��es=ٍ��v���n�|8:��p~��'��p<�]p�:�N|�eg��-�Pa-�iK�P��7j�V,�f*=���9��֌�S�?��3R�n`Nkf$N��1��f�z�����)���6�����f`�5��0��čg]:��>���	�11����J�j��ԧ�yѳLkv�6p����͡~��r;9[����E���J@ I�l��⧷>�C�XoWo�]������u�d᠑ƾ�U���V��a�G頒���\��\�?#������	�3B�yU��RY�����|�y�i�3���'TF�,�o��XUd��/,��ȂAkfEK�ځaL%ٰ'V�=k�st���@[;Zdp�;����7I�6���7+��y�r�	;Vh0;��[�},��&"�WI�e�Ȗ�5�bI�*�!� }�m��	'D*p�F������J�$7�ͻ��Ւܲ�G+�g���-ɫR>t�#��:'�̊�b��ąc�XAQ�;Y6 �r��U)�����^(����-J$S�I��ɉ
+�(�d� �	��բ���V�89An�dm]6���o:�(�
�鋯lt�T��=�Qd���U�ⵧ;ċ|2����
+�M)�ʛ��i2#��Y�`��c'�X"V�|�_���R="t����:��5c]������EY�N�� |����#�ЕՆȲf:��˛km�afp�����Aj:�C7�эv����o����V�d��=�6}�kU3*=�{�罠OH6��Jk��� ��X-�vE�!�@'�u
W:�
+x����<|wB�3��mQ�t8{���*݁�1�Ϣ��rȢ��H���*�m�@������o���lMd[�π/����\l�_��!i�a�F9|]��{�li3��W�!�o��T�B��Q���k�1����!/Q˨���U1�B�f��zL~hPdv��`J
�W+�j�}'tU�Բ����͵�\+\lD�������5�f�ph\HͿ(���B��6�‰DZ����1���I�AQ���
+x�	r�2)����Wz��9�M������V@�����/�{�:�l��h�*��+?6D?5(vB��0�-��J�-�VڪC�՚oX��v	���_�7�DWy[����%y�Z-ɗ�k��f��;V���7��5��U�"5(��83A��7��t/B&�^���C��]z��^/��-L�=�����8J�W�{�2�e��
+.B̊��j�
+e�生F�m�
+�@�j��%�{Fr�oj�!�Cm�W/
Os�0���mfw��f6kD^]8]�>�fӕB���}Y����*Y�C�nC�|b�,�$�S1L�o>�_BT:k�x�Ar*�%w^q�8�����p�5���WO�0��J5��T2!��!&+��~��$t� W}��ta��|#.ۊld�_!�s�?T��G��9�;�����[��f���%F�~�ō��<OR���?�(s�L� c��P��J��߶A�I�g��	p��-�����5�����
�Y�����%�]/10GNh���lվ_6<�T��oR����M���nR�C��a��}d3�[L������@g�
+endstream
+endobj
+
+636 0 obj
+1789
+endobj
+
+22 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 635 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [637 0 R 638 0 R 639 0 R 640 0 R 641 0 R 642 0 R]>>
+endobj
+
+637 0 obj
+<</Type /Annot
+/Rect [258.5610 445.7587 324.0105 457.9912]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://idratherbewriting.com/2017/05/26/big-repos-versus-small-repos/)>>>>
+endobj
+
+638 0 obj
+<</Type /Annot
+/Rect [322.7370 225.2587 376.9095 237.4912]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://jekyllrb.com/tutorials/convert-site-to-jekyll/)>>>>
+endobj
+
+639 0 obj
+<</Type /Annot
+/Rect [258.5610 137.5087 309.6255 149.7412]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://talk.jekyllrb.com/)>>>>
+endobj
+
+640 0 obj
+<</Type /Annot
+/Rect [431.7405 137.5087 487.9470 149.7412]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://stackoverflow.com/questions/tagged/jekyll)>>>>
+endobj
+
+641 0 obj
+<</Type /Annot
+/Rect [258.5610 122.5087 280.2360 134.7412]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://stackoverflow.com/questions/tagged/jekyll)>>>>
+endobj
+
+642 0 obj
+<</Type /Annot
+/Rect [324.7770 122.5087 386.1420 134.7412]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://jekyllrb.com/help/)>>>>
+endobj
+
+643 0 obj
+<</Length 644 0 R
+/Filter /FlateDecode>>
+stream
+x��X˒�6��+�N��s���cWٵ���\�DB�$��e}f�����46��H54=3Mh��?8mr��N�qN�l�������i�� ���zYB_/I���� ��<��&/��$�./L/
,�0N�<��U���Y���]楘a$�����ɛ,��g���#?�{� ��;��y�U���$��W������|��I��hT/���K�kwS�n���x[����涏�Y��8�,Y�c��	�1�-L�0���[b���1瘅Iw+�Vl�I%حx���iJeaZ1��be~��y�,p�san��&�U'�|V�lhbP�þ��s3w�[�],]��'o�p�s)D�/��`�� �#CY��/7?އ������3�w\=����/� �'����}��Vv��VfH�0����^���+B�.�8	GB�ЋZ�N�8ل̺�7���������"�p^��ϼ�P)`����9&0����L�ۖ��
h�cK��LS���&ėJ�<�K�,�%�,Z��kى���K�(����L�t�Jh.J^���v��r9��$KN��L��u�Q���J@�Zy�z����ğ�S��Қ�٩OU��y��u
��J|��eD���;8V5W|�=�m-Y9���8�rXF�0WH�;Y��*�P}q��u����s!&�}��ׄJ�S�95K�b�,��Khk���k\�-r�m�3���B��J��J�\��Og��k˻����	������f�he!������0L�5��)�w��:�b��DX�$��W-/*V�W�26�x'\hы<�N�ȖP�^Լ���G[�����D
+,b6t�ª����xd}�m!]�w��
����wW,jz�LN�[r%���|������	�&�`��-h6��&�)�`6�������Z����>lAv��AmJ������~����8jz��>cM����H����E�(Y=wF��[�,�zR�|B,�8����I
�-�#J�e��`SbG�l����7����X�G�m�Σw�^��\H\]hQn���(ޡ����>���o1Vnpf���џ���JwU�Ѻ	����G'djq�t�Wo[h�#�Xi�St�L]�%��Ns����"I�utl��D���
����34n��bgjY�~0�yJL��͵j���a��bWWX�[�M}}aB;�!ě�yϾ�R�جE5�f�-{��ⲉ�6�ȹ�6xw_
��?�1Q���5�9�����x�d�a0,���}�Gz\�;,ٰ`��b���#5�	��k�[ǟ{Qv�TCou�����Z|u����1��5M�qU�5ʊkG���i�j:�<-j�
+�鐣C�Jc�ߣ���øҔ"AU}q�|X���N���8X$���r@��#�
+�'����<��K���$��ZC����J��Q��W�vc[��������>�"�-�+��xxu5C7=q��Hʟ�/xs�
+��-�~�Y�3'�VΈ�
i�wa+=�n�3��+F�k/�������E�s�M�F���e����ǷJ
+endstream
+endobj
+
+644 0 obj
+1571
+endobj
+
+23 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 643 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [645 0 R 646 0 R]>>
+endobj
+
+645 0 obj
+<</Type /Annot
+/Rect [272.3685 668.5087 337.6995 680.7412]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/news.html)>>>>
+endobj
+
+646 0 obj
+<</Type /Annot
+/Rect [361.4610 287.5087 410.1840 299.7412]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://getbootstrap.com/)>>>>
+endobj
+
+647 0 obj
+<</Length 648 0 R
+/Filter /FlateDecode>>
+stream
+x��Xێ�6}�W�q�zU����I����
��y�%�fW
���l�?R5�r�.�w4<<<s�h� �rؔ��-?����|���f��&�,�aA� 5�<�A��/i��aJh��-��"���eI�F��h
+xY��h�e\�+�0(�,��4
bX�DI1<YQp�������5�w�A��.�[;�i�¿��s;/à�O�r��I�xP/��Kk�1d����cE� ����q6����A��Yd���fR�AF��ȶČ���1'ƜTŘ��`��y�-{*�lX�8�D�Şmܭ��|���lh��+a�m!���q�����;;�����cv�1(3	j&�����m͓��#�i:��$b���w��ƮcX�T+
+��u��������+\$C�,y�
�鎇�l��Sb�2g�4yVm�6��Z�;l�E4y�1��g���>�c�~��s?9�B���&�.�(�,y��Xo~zG!������;��Y��y�{��(��ND��Χ�T��ȓ��x+bϿ�^��]ʊ4ȓ���%!���F�ZtLʭ�C����~�x���Gz��x=�_�q"�D9��?ݚ�{Oz�xw��> �y��=7Ͻ���^4�'Lq�`ZT[��FƳ�`[�����%�t�L˓�_E˴Y���W��{r�-�Y�Iź�� �^�q���{�|�������/D�N�b
lT3�v�����y1)"��I#�8�$U��T�pebE�N�5��!?��#G��=ߤ�-����Y'��KK�����b"4i9��!8��^������"YA	
�_����59��׃7xҊ�Q���G¼�b9+g�|����V�.}���n/T��g� ���=���F����l�X�št<�5T��{��S'���Ã-���t'A�+��y�K"�'%��
��ٓ�Z�g�ͫT�����O�#�<����Z�� ���6+���e�F���W��9	^��⅄�;�J��`l�E�+�5|k�!����fac�')�h�܀u&�*i��4a ��Fߠ�����^��k$tud�)g�?�)Ξl E �\]E��	E���JI�{��4H�ؿ��-ڈr�����{u�L1^ ���1��afj�y\L��l_:*y>!'�t/�uK̜��]\�z�g"-;�����X�!�=W�b����
+p{q8+C�����n��'K�ʡ�Q���͂ŭ'e���-�X8��0b��$���IH��Ib��0�e�#���A'jy5G�O�{/6X$Գ���W�$��sQ<N�h݋s�0�c����hX�8���"����6l��&��x	c�������.��m㵽�y0�$�|��tx��Ā��fӱcq`��Ib�͎K�%���^ļ��_5-����ՔC�[��q���ȋ�!�;%�PPyk	d�y�C�8!���ӈ؋�Ԉ���L0O�'M��DZ��+����zrˁ��_��,F?�݃�a��~�Ϊ`n��%����,O� ��rȯ�C��ri�	�y/BI��1����H�,�>�z��3y^���D�-�V�#̉�RN�w�4C������ �Z�7���Q�����#D��v5������,.�`4�ۿ��
+endstream
+endobj
+
+648 0 obj
+1651
+endobj
+
+24 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 647 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+649 0 obj
+<</Length 650 0 R
+/Filter /FlateDecode>>
+stream
+x��XMs�6��W��t�? ���ԙ6�T�d2�DB*�А��_����?��M}�f�x���vr��C��<>e��$���������$��"���B��|H�(�!�y@S{ Z� 3f�%A��Mi1��~4aALٵc�,K1�$��aDq<�劂u�(\9Z��r���b����������#[?��S������O`�w#p���'y~U��G��l,L��]�Z�m��n>���p������,���Nds0͡ގ0�
aڢ#Lds1i:�1�dØ4	VW<���4�_]�6�i%�0����y�*�ֆ0i���'�����ʧ�a�IQs�L3g�Ls�[��^m�p{>b�)�6�����_ٜ$�0O'_�����/��fM�=���ɀ�c06���GJ�p���-��]#�7d����M����F������-J�I��8���G��0�W��U�$���!����������=�B{�N�Z4;^s���(;.O�k�"�k��ъ�NTC
+aj�$[Qp��D*y^@����D�D���d%���n���Eu��u��/^�Q��7�R]j"J	$��^k��N�`I~���>�hL /^b�bI�(��A7\{��[�}��(r�
���>�&�u?wګ4�F���� [��$ȹQϲ-ᤅ�C�/b�J-#�n\��b��\�-)Uѝ�>\KU�D�SWiy��HeW@��h+D�smDijT]K�M��D�����%�Ҡ��^�q����4�j�^$%ξ�-�5�d��`)��r��Tf򛺈g�,�*oe�BZa�im��1bם
�R��l�<��h`˜V�y��;�����c3z�[�����@���v�*۾N�/d����F�^�'+ZS����]��nY:���7�nͯn�e��n�D����V˂|X��q����a�hT����o2���TW��L�=d�+�$E����/gh���W{UI��#�5�gY�h�1�P��]c�	j�<zJj�����Tڵ���8;�:�9����Tr��{�za��c��R���{��E���
L
SDȷ�!fFz@6ӵ���0!D
"/���PSozc���H��h�ɰ�
+q��hR��'�Yr'���8�i3]c(y��	Z�c%��>����j}�{��C���dNh���d���������q�������P�~鷰��|u3�g�QҲ_3�l㻢Et�(��^���zf���O̺<+��mןQ�徂����;7�_�{Q�ͧ�x�j���3�?=y!1Gg/�Z�#�t�M���g����njn�߿��" �8�X��ő�N���M�<�G ��_+��w��x����)Z�+��["w�D�e3�y���+���L���<�)�_K� ��|x�gd5P6�w�-a�\�$1��;M�]0���T��(Q�BD!N[x���n1�9q��"�}���0@���Gݿ����=G>ú"�;xD"�$��UY�;��`�Mn����A
+endstream
+endobj
+
+650 0 obj
+1538
+endobj
+
+25 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 649 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+651 0 obj
+<</Length 652 0 R
+/Filter /FlateDecode>>
+stream
+x��V�n�6}�WL�6-V�˾e��"�. .�>��Hb,�E���܇�O��/��	`HP�9gΜ�g�A�Ƚ�-9>�08~H�/�/��A��3���&���,v�Ⱦ����F,���m_|Z-l�0�;/�G��u�<eQ�{�*�>��#��Z�ݯ�`�4h~��Q�gX�,�����،��� Ib�f^2�.������q��"������j�#4|�0�Xя|�R�Z�`a�'n��-�+���J�Hg�Qƒ0M-��*�{�$o�`�HQ��^��]��ջ��g������[�� 9�$�+��W��^�%pY��k�
�֭�k�bmUY�Os8#{��nͭ0B�3���~� y��H�Ni�
m����UjN���h�I��d�4�ƻ&.d��)�K��f?e7�S�]Լ{=?�YP����t����O�P�b�Pn��s��ga���3xF|� �MI􆽓�:��Ж�8���$�ovW7�+�
+�@:d�+cj�����$��‰ԃ�@�^���k�M7������=�D]+�d�jrP�_����/՞��|�=@o��u4g�I��ж6N;�*�f�x K��8)�ǶPD�(��)�9hț�6/��_i��E�M��h+ 7�:���n5s�n(�*�z�O̠�./�i�'��[��Y�d�?�j��|��f
9Ɔ8����7�i\��}(�p�q��/:b֖QN�۶h�
+��(]e���m5i)�K�꫉���J��*c����u1�v�h�,tRi��;}e�3�D�:SMxa�U�#fo���4�O
+��e��Mv�h��N�1UU"��|!ԩRT��ޥ��,�7�s�7ΗTq��Cp���\�幊���'
+^�nK $bݸF�YڲΡ��$7rA5�6�x�n�����dj�����S�9����(��W|G��u�ݰ��&ll�3:Q7f2����t��-�I͸��,OƢn�\���{5�%�j�ޞ�����Й��,hx}�J�r�v�l�Jt��q�|�����2��a�#8K��&L:
���Z�+�5��X~��H�֨!Ȗx~:�yb��w_qsG��fu=�~Ѕ��XO�4௞B�>�r:t�"ɂ����Ot�A�����"�
+endstream
+endobj
+
+652 0 obj
+1157
+endobj
+
+26 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 651 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [653 0 R 654 0 R 655 0 R]>>
+endobj
+
+653 0 obj
+<</Type /Annot
+/Rect [373.6875 600.8840 475.8765 613.1165]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://idratherbewriting.com/)>>>>
+endobj
+
+654 0 obj
+<</Type /Annot
+/Rect [129.6255 585.8840 271.3260 598.1165]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://idratherbewriting.com/learnapidoc/)>>>>
+endobj
+
+655 0 obj
+<</Type /Annot
+/Rect [298.1640 585.8840 402.7260 598.1165]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://idratherbewriting.com/aboutme/)>>>>
+endobj
+
+656 0 obj
+<</Length 657 0 R
+/Filter /FlateDecode>>
+stream
+x��S�n�0��+���7Ŝ�6M����U=�-+�D���3�G�v$������� ����M.�3�$�r�69|L0�Ts��t�c`DI�eBEbz/	��`H����z�'_�d�gzDJ�� SʷZ!�	��H>?�d������tr>|��%���tӱB��R
+�R,g<B���1~�[���T�k�ྐྵ6�<@c��<�v�n�U���CIt���%&��_���؉��uo`����/;��\8Z�Ԁp4�ájO}�6��G�ue�������_�k^�1|)G.���V3$�[(��QOnZ0u��CU.��ޚ`�}��y�x�±jc��߯�vi������*8?@4�ޜJ*c�
+�n���S(�aZ��ƕ��F2�P���B�5���j�W����zq�6��>N����b�V�g!T]wO�u��ќe+�����*��h����wEW�W���X���h��?��e�g-�
+endstream
+endobj
+
+657 0 obj
+497
+endobj
+
+27 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 656 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [658 0 R 659 0 R 660 0 R]>>
+endobj
+
+658 0 obj
+<</Type /Annot
+/Rect [112.5000 618.0269 205.5195 630.2594]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (mailto:tomjoht@gmail.com)>>>>
+endobj
+
+659 0 obj
+<</Type /Annot
+/Rect [275.1450 618.0269 456.7740 630.2594]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://github.com/tomjoht/jekyll-doc/issues)>>>>
+endobj
+
+660 0 obj
+<</Type /Annot
+/Rect [112.5000 603.0269 185.3310 615.2594]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://github.com/tomjoht/jekyll-doc/issues)>>>>
+endobj
+
+661 0 obj
+<</Length 662 0 R
+/Filter /FlateDecode>>
+stream
+x��WM��6��W�Q)V���ܶHSl��Aw�"�^h����D������a�O��$[��n���i���{�Q�ly�?%��G�_H�Z.6?-B����ʳM�����v[�G$Li
+Iq��d,����/����df�H2�'�I������c`���,��e%E+�QF����<~_�����P(�M'IL�,L<�NH]]}|@3N��_��sJݖ���Am��$|P뮖����+�����I>�jyna�g$���Z���O]u��d	e����m1w��H��湅V�Qu�
���`M��(&���Ȧ�0cj�A	��*�#�R�H
���Tg`��M��t�l��U�{
+X�w���B9�b��
+�YUu\�N�Fi	{�EJ�ڭ�R�5���%�(1Ra	Ŭ͙�Q,̩3!*������@p�"�J�*I&��x�1��'$�4�E㉶Β<�a���`#��pH��-̷>�FFv�-���.i\��Q�D��N�n�s{�l`��=~���|��惞@d���JQG�Z8�UO.fx磲���^+��Y&V��z�
+��fu� �O�V*x؅��ص�B��P��6'��$M�9y�VUx�܍r��g1I��̬���摭�ک!Tnom���QZȗ�rڋz6Mhm0��W�q��7F௝l�W]Y�(�%���4s��n����_6���Jn�䥒�3u� <�j\IK܈cU1k5;���di�e-��b�k�����������/�����<�㩉��G'4K.v=6U(��wsq{��z���D�`ioK5�2^)w�.���ݔiD#��O�[�i\W]!O�N���-��{�ou�f�u7�tl�;�g���[�g<f�Q)�֑~��"p�q�w��7��Ү��b�ʺ�E�8�q�dv
+6��#�f���T�y5��Y.4A*�xj�3q����_z��%���k^�.�L/�S®��{ۼ�(FSB�T��Sy�q9��
+��x���Ae=ͮh��j�Ð��m�����6,4�,*Ʒg���K��g���c��6���R�ιI�S��)
��	�{���S?�0���@q�Uc���M���E��BlG�������S^�5��HQ�Aԃ���i�H-�n��g!MUߩ�p��rh���m�����g�����!�I����'cc�R"�+,��0e��se��O�>E�#�jö�دcG������߻ָ�y+��,�����߮��~VjߪQ�p��)����(�8�'�F��WJ�yح�ȷ�ٿ
osi��Oa�^��4"Yʓ������>B%0�[�8����A�e����2���a.a�Ġ�{N�L��U�������*���?�T�o�t*�WE���Fyl'��ö�
+ Z
+endstream
+endobj
+
+662 0 obj
+1400
+endobj
+
+28 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 661 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [663 0 R 664 0 R 665 0 R 666 0 R 667 0 R]>>
+endobj
+
+663 0 obj
+<</Type /Annot
+/Rect [301.9095 378.4555 377.7510 390.6880]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [48 0 R /XYZ 0 732 0]>>
+endobj
+
+664 0 obj
+<</Type /Annot
+/Rect [316.6935 281.7055 390.0045 293.9380]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [99 0 R /XYZ 0 732 0]>>
+endobj
+
+665 0 obj
+<</Type /Annot
+/Rect [452.6790 199.9555 486.9090 212.1880]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [114 0 R /XYZ 0 732 0]>>
+endobj
+
+666 0 obj
+<</Type /Annot
+/Rect [112.5000 184.9555 161.9025 197.1880]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [114 0 R /XYZ 0 732 0]>>
+endobj
+
+667 0 obj
+<</Type /Annot
+/Rect [227.4330 73.2055 304.4610 85.4380]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [121 0 R /XYZ 0 732 0]>>
+endobj
+
+668 0 obj
+<</Length 669 0 R
+/Filter /FlateDecode>>
+stream
+x��TMk�@��W��)f�oY=�4%�B(����Y�W�bw�?�����J�-�*� ��fޛ�{�>���E���dxGa0��qQ|X�n����~��>�cQD�M��x��%�b������5o�
l^�7=J�3_P�����(�^w(�TG.-Xye�O��8��Bi
+5Z�ИUW��rF�����Q��?s/��ѡ4�m�*�4ZI[skQ3ؔ8%/Q4�m�#��[j���Y>�2���2�[eK0U�.s�)w�5a2�5}}��[��i�Zi�%�F��h����8��Skx��ܤL�&��
+�_�Q��0����ˆ�����S?�B�E׍�I���x͒l�nO�^�+���ZF,	��jm�N��$�ZT����U���W�@kB��H�ْ[5'K�g���:J�x�I<�`����Qt������BQ�Ζ�ޤ��Ry�Y�?U�&�˖T�����"�_Zc�ok\����~�!�o��c�֣���kGz��zU���X�FI�_u�rA7�2x�`J����j|3 �,m:�9�uk�-i�ZK�W�2�O��u�[�@(���>�>��i�ZI#�,e<��2�Ժ��oהj�0�z�%�fA<��;
+��T��M�7�	Ӑ��(��O���w� ���G��[�?��ޒY��
+�OG��-�q���d?w��j�:Op���E�m��;Ot��w�p��gAf�G�v����Ѩ
+endstream
+endobj
+
+669 0 obj
+730
+endobj
+
+29 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 668 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [670 0 R]>>
+endobj
+
+670 0 obj
+<</Type /Annot
+/Rect [168.5070 599.1337 293.9400 611.3662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [135 0 R /XYZ 0 732 0]>>
+endobj
+
+671 0 obj
+<</Length 672 0 R
+/Filter /FlateDecode>>
+stream
+x��Wˮ�6��+f����#�i��U�޴(�
%�d&�蒔]f�:$%KJ���M�g�̜9�ϧ?h��ޥ�k��B6��xh�;�^1�SE��Kd)�����ǒ"��,� �2Z�<��0���Û���
+�3�szI�0���E��E��s}��]a��?7��o�!S�Ш ��W����ӳN��P	�)t�&^���C
+!��Ǿg��z䱗'���;?P*.D���VTc��f�|A+=B#$����]��H,ν4�2�X���%̾q�������p�7!?�g)���]�(��Ņ����߫V��(�U2�N��C���cU%�^�L#0z�^ng���A�EIh{s��N�K�0R�$B+�x��-R�\M@-�.�]��{/FB��"�1Z��'<1j`T%�0�`>_F������
+x�1N�$�YKA�t�����Q�2d�y��ݔ,�a��q�?$�u�4^�\�\Ԭ��<A9�N��K���B͛�0��L�������RLr���a�M��3��PT�|h�i-y9�9�Nh�y{�$���ښ��By��i&x�K�4�џ�
5���8Th�aۧ2-�b��Eܐ�N�W@�ĎLC���E}ꄓ���
�	m���3ՓXi!9��-N�%&U�gkу�Aid��;���P�/�F�N"w1J�� 
��rv���n�h�r����jN�J�aR����̨��Tፂ������n�p���d��lkå��8�a��g�j���毄�9YbhX���s�q3k.��5��6��v,�WJ�P��Ϧ2����U�i�HK�C�Ɣ��cz���6��Xيۣ����f�bkFz���•��q�o'2��#�Z:��T)�9��m�JA�aiE���;~�7��L%�;H��2�v�E+!L��t�ŭ=P�aTFL�x��Q:�f�&� �h[����Ő���Ե7į�dr+j֐M��6��8/���
�(�3�����-'UQ�J�d��;�5������$LC/L�O��({�����YF��gşf�O'U���PkJ����:�������JeT��T��l�38���$�is�;=�`��`A�lpw��X�(rV��L�)q?V�s��co�4��ˎ�v��Y���+����j�:�z5����������5�qw��b��H�����xM���������g�X;
�)�����S���ڃ�J�폯({bۣ��
+d�۾�k��u��y�ůԃE��2FGӔ;5PQ�ogZ�:��j{;3��n�x��Ө��H����F��=|�I�%�DE���B�����GY��Y�~�?[�'s��QR�{�kx��%%�'�a��0���x���۷Gǿ�X�2�:�A�<n/��{�\�~֬��Ӑ�̏��~�
+endstream
+endobj
+
+672 0 obj
+1412
+endobj
+
+30 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 671 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+673 0 obj
+<</Length 674 0 R
+/Filter /FlateDecode>>
+stream
+x�}VM��6��W��)V���[�tӴMa���"%�K�.I����!��CJ���v�����̼*$�@�ȃ�n=^�8��F�E����n�8�ݞ0�H:��$��[���B�[v�b���
S�h����*�
+v�,~�
P�@�J�$΂h�J �u��4
+�Iآ�J���
+��z�m_5������*��j'��qxa^"E
��PtZ# 0�ya�jA��;���"P�H�����r
_��~7`������
�/�(K�	}p�QF�]JzT���+2F�YM�Z�
j$�D\�Y�`�%S5e`TÁ�oo�
`���֪]��E

e�f�A!��fϵ�5Ǔn&�J�Ѣj��M��/��&1Y��Vz+U%��ӏM��9YG�L$�Bv�Ia?A����#�K�<��
'�ꠠ-����`��Z�����Q���?�6�/�	��}&������n$���ő�K�W8pٚZ���f�2�\c^�=���{!Yg$<���1�M��WCȴ�D[���E�'��Q_��AX5�����@+nV�
z��Y�4��!�V���ז�€%E�:g*�b\���`��$VD�������x�h�c�N�K�[�|M����H���j0��+��m��7Γ�3��Q'�)ll:�����>�`7�9�7��2��\H~\��=j:i�k�U��C7o�8M�=����V�[}�x������4��nRy��A�C�Sxm�ƥY�$����s[�\�(���'�
�q��6Ke��!���(TgЩ�t��������cע�|RЅp��h.�(�L�U�E,)���
7��8�
+ڹv�����V{����-��^��]{�ٖ��k|ˡ�q q�uJb��<����Z��9��G��$��o��O��lp��„ٚl��F����Ի����b��n�+0�'<�n(�����?�"FG��K7����yJ�,Lo߾MUDӏ�,�I���6$J��>q�qB�,�Θ�	�ӵɒ����t����Wfo��8=~�w����h��*���,)�.����g�O�����W�YWX������	n��$Z��
��\8��?-|*
+endstream
+endobj
+
+674 0 obj
+1101
+endobj
+
+31 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 673 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [675 0 R]>>
+endobj
+
+675 0 obj
+<</Type /Annot
+/Rect [373.1100 174.6337 395.9715 186.8662]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://github.com/tomjoht/jekylldoctheme-separate-outputs)>>>>
+endobj
+
+676 0 obj
+<</Length 677 0 R
+/Filter /FlateDecode>>
+stream
+x��Wَ�6}�W�G�pT-�6o
��Z���@^h��9��ə�/���^�Z:�y�A����L����&���d��(��G�6�6���9��3?Q�&�W� �X��Y�I ��X�g^��Ĩo^�7�~�k����d!YH��#y�þ���6�0�������C�$����c���+Ֆ5�w@�:yb���o�쵯�fJ�h��=��g).�db!��l�k�c�$���ĆBΡ|TMC����]F<L�Z���t��P8�]�Ӧ�m5m+E+�NA���}dе�a��[{q��&��k�J�x]_���A����R�Pw��g���<ҞwJ@�u�O����ϰp$���U�[����:�G^���Q���]Kk.��Z�F�(z�
+	J(��S�^�"�O�����Az+�"��&��/&�H� v�fe"�ԟM�G2�M���]��U+4*��n=�A4�!
+�k���s���g7���Xyy����_5`C�l�[��:��Ğp�$ٜ��Z����HU-wH93��%p�����e���D^�?�i�o�A��K#7�)��9`��#��Isd}��c�(����^�r`U¶ل��<>��oˎ������vV�
+��B�
+&����'� �)�b%�w.gQ6��E�=S����nk�cp�z�s��{����;1��ER�M�S�|\a�>����9Mp�%�ڈ�^�@2�F�J�>R^�C�L���B�9��	���k��n�ά5�6�>jsW#�->��is���@5t1�;�E����I.<�dZ83����Z6��;�`Q3����G���*��S��}��=g�Z�I�5�1Ȋ[���Iz�P�u��A���$���a�z��Q:�gZ<�}��?��M����9;�s�d�	�s��5����;x:qL\7�Ѓ��n=�tq+&���A:�;�@�)��y��W-���Қ�֐ά���ϗ�_�z�b�\�$�0���錟�^]L��-��6k�İ(`v�G�Nᳫ<A�,��]�D��S<��e�+�kk\7��BSx:��4��b��K\~ �����NU'��؟�������pu��#�F�H"G�7e!���
+�O^:��9#o�;��&y��xo��a����u�:tǣ?�s/���6d^b��	[�g٘�e��7b�^�k��B�[x�����Y�.���-^ZB��e���w�7���l��҅�1�0�,�����5Tv�jX+�^�4|�-]*�Zh���U��K����2K���
+�Q�[��&
+endstream
+endobj
+
+677 0 obj
+1274
+endobj
+
+32 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 676 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [678 0 R 679 0 R 680 0 R 681 0 R 682 0 R]>>
+endobj
+
+678 0 obj
+<</Type /Annot
+/Rect [176.6865 372.4983 229.3155 384.7308]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://rubygems.org/)>>>>
+endobj
+
+679 0 obj
+<</Type /Annot
+/Rect [112.5000 230.7483 151.3110 242.9808]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://bundler.io/)>>>>
+endobj
+
+680 0 obj
+<</Type /Annot
+/Rect [112.5000 200.7483 161.6220 212.9808]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://rubygems.org/gems/jekyll)>>>>
+endobj
+
+681 0 obj
+<</Type /Annot
+/Rect [438.4410 148.2483 472.0935 160.4808]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://rubygems.org/gems/github-pages)>>>>
+endobj
+
+682 0 obj
+<</Type /Annot
+/Rect [112.5000 133.2483 143.5305 145.4808]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://rubygems.org/gems/github-pages)>>>>
+endobj
+
+683 0 obj
+<</Length 684 0 R
+/Filter /FlateDecode>>
+stream
+x��X�r�F��+�H��
��\��(�rUN�X���+6	0�(���C�'=x.�˹G%
+����3;�%x����Qw�G�d��I�f�?̈́�ܴD)O��L%��@IɅM��+�L��^LE<6qĄP<њ"}!�pMY�t_�v�%\��iz�>E���4ȴ
+v~Lp�F�Q��a��f#�1�������ـ�E䀵%�"�t��߽�����ұ!MRK�G#�PDty���3������#��}�����3�Ƙ�Ʀ�O��E�șcC�wl��c��16�ѽ�e���&���짺�1���WC��݋}ZO�۬^�1o=���<^�0#�*�|�!p�p�\(a޻��}@M�e�!�}��ݖ�1����(����򐲴[��<{���F��(EK�T�(#pk�w�����4b���ڗ��=~�-)�0����	%|�,L����kZ��.NOe"�]L,�5�(⨅���K#=N+��09M�8��� �Ui&�Z�y)��\�њ-�5��$��*Q���/��Ӥ*
�N����;����*G�ܷ�%\�0V�;�~�9"�U�9��'���t$'Q���[�4���6I�u�u��C�6�h���&"��
+k}�j���NT�G*���:��m�P����-��?([�<7S+0n�@y���+���۞5�-`m����X�����Ev�*��������H{�d1�vܱ�<���Y�<��i��ld �܉�^Dp iO���Aiڭ�sP��i"V��軜2�K�ޞ}��N����C�T������(3M�U�oη��驥�f@�8����]���-6�	@h�i*��8���!���?:Ƕ�+�=띫���T�{qk��:/�b�3k��}v_N�۸�
�U��q�e��Y�]��oBb=R��Vy��OoZ�]ָ��}���58�����6k��ٓ[e�ڱM�l�O?��'Փ�9P�bwb�rȚ�i�����r����ی�5��Q�����kW�N�3*O�hȘ���Ğˊ��#.lj�?V'�D�8�U��BT^��jK���b�
o*Dzá*UK�DC�[5���c�UV�Z��"�l�=�8�n�RI����Eu�{q5g�����]�蚲���_9���n�Ϥ�'���yy1<Y�X�$k�����w�n�x�w�>h�} 1/��
+��u^7�h�+^�,�tN��q|:3�[@����_�婫��J�u��i����lՌ���>����6�����sk�桕"��AcN��6�������u��MK���r]� rO�HF+����iy����xq��@�0��@�MV[���.����9��dM�ZV��E�Mn5լ��l�B˩��֋����L$���X�i�Ҵk��%u��<6S7h��$��ܰ���f��e�gDz~i-�#����_ǼΛ���,�)[_�>���5�S�*l��[v�Vn�`��0�߬�9h�vD���
>p�w�b]��T�����f�"Ca؟5���i<\���78�2F�pٿ�2N�
+endstream
+endobj
+
+684 0 obj
+1557
+endobj
+
+33 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 683 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [685 0 R]>>
+endobj
+
+685 0 obj
+<</Type /Annot
+/Rect [112.5000 279.9552 162.5880 292.1877]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://bundler.io/)>>>>
+endobj
+
+686 0 obj
+<</Length 687 0 R
+/Filter /FlateDecode>>
+stream
+x��YMs�F��W�Q�r��{0�T��XJ���.��E)�$��`�������f
��w�"�q����^�@�\�?vX1~r���*>h�j��������՞[m=ӕxɍ3�z�n��D1ϝu�I�yeLB¸JJ[�dd�2�]aG�*.b&�+v���+cֈ��#�t�+<Cvlk@d��Z;��#Ĉd�}BJ
��cM�j|_���KW*{�b�+��>�*!��Q,#3�2����'
+�R�~�N�X�f�L��N�d�ԥ��ed�Xƒb�#İkd��+���TW��9�Z�|�cm�i��N���O�4R���tD�̈c"��Bv���+�����b�{!�dLlk@�Ȍ1&bD��N]�^��W��P=��L1�����)��YAQ� T���X#��Dv��26S1š�9�:u)�\�����5b�5�d�Zy;��s��B�T'�.���1���1��BdF���^�� j�
+��j��H1�E)7��!2#F���,��*\/���z_��d]�b����ԥs�22S,c$ֈM�,�!�el�b���k�7j�XFf�e��1��	2��_c-���x��XK8�K�fƔ&o��1���*,"3bĘ����� b�*�vcG��1�ͩ���#�D�H��	�
+�������֝)����U$��A��\�����5bNd'Q�`T1�,W��)֩K�ed�X�H���.����v
��&�����E�a�[�������~u�C<��c�a�_Ww�@]y�
+	5B[n/��1���4;V�ن=�ͯq���cf���_n�
KY����nο|���u1�O�����c�6�R�
+��
+n��ۥn�=<��1��q��_�ٱ��n��k.�6��y�~���ý������{G�@Ax����z�:�0>bh�[+�x�F-���Ye���R�J�����5��Z)�a�0V��n���v�8*���%*qg��}�ȪES���&��S�Jޛ�����F8��pד|�yWo7}̚�}zl����S}<�Vѷu�=����f�l����o2Aa)7�}�Խ{���<<'&޴�%�*Ȃ�p��|�E�ʊu���=�=�o����O�:>>����,z��q��L"���d�����{��z_�g�lN��Op�CN�(޸d�4^�<�xGM�}��:H�_.x�x$�1�ͭQ�Rk����p`��r�5`~��7ˮ�;v�����{l.��ۗ���g�~h�c�9�O�Ǣ�Z�4�w�Y7�Ԇu��H��(�f��10��׃���#����4�(��^����̲L���OG��p�j�YHFH�~X�d�4�2�.�W���	3<��a�P�%Ď��F��d��(+=a�פ�a=�$<׼��O�B.�L��uH\'��؍WM5��ւv�Wb��>!�pM{���!��w�T��z��sI���l�����nha�UB��L��p��?��G�ۜY�2ش6Ǵ���4�:�M�kZ=�=n��������o�q��Sl�f�y)7J����C����[��9.��4Yz��b&��p#��XJy�d����.=�i׍�h.�ee���'��nS��@��Ø�n�<�}��N�q��o		p�z%����[ߥ|�d���{`[L8��\K�?3A��d��J��T�6��uye��2��o'��P��_�S��(���
+UU6�t�7i��h��|X�����e�5>��6�tT��K���wU�����~t�!�cڃw�؇��ɼ0�߀��'��G�&
+�����g0#�r�2�v��r��~ӧ�����H:<�.۞���.��������J����=�,���
+endstream
+endobj
+
+687 0 obj
+1861
+endobj
+
+34 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 686 0 R
+/Resources <</Font <</F3 510 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [688 0 R]>>
+endobj
+
+688 0 obj
+<</Type /Annot
+/Rect [112.5000 490.1695 213.7440 502.4020]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://rubygems.org/)>>>>
+endobj
+
+689 0 obj
+<</Length 690 0 R
+/Filter /FlateDecode>>
+stream
+x��ϒ�8��<E�ɔVB�T�f2�T�eS���m�`& 2���7�H����{�|4_w���a��"Mǻ�_E̽��Mk����1N�{T���3q����I�������S�Ȅc1I�p�OØ1^�#��+�B-%�YL����}VB
�+hT�
TK-&I"��͹����\kЪh�(hd�}���ut�(I���M�W�/��&4���TR���Ղ�WVļ�TD9�Is]����,�mIl��J;>���jM�++b^s�BGA���e=o;9�G�ScU�0Z�2�]��ՠ�Zw�裐"��T�x���➦��i�3�R��n۲�I��5����i�rO'��L�)�`:�s�;���Uc!;_�/s��5<�f�~��+�s��c
+�_�6���[n+�q����f�נ�0����	R^�,?��Xžj������#�������}�Bݴ
+c�����S��Z	�u�@GTp$h@�����2�j�ӭ���L9��6���5-<���kkl[�������fU�!-��wwPZ���{��7Teg�����[�e��
+6�i�]�Y򡥃ti�^�����K���kwl�d��������fN3��u��8&Z�wwo�2?B]���9a��qr>�pKʗ�S�Ԅ�Z��H������-|�/���wC���z�
+A��@�0�'�^�9~
�v�Lk~�eWZ���X�rU"�*H-����*��;��i3k��hrS?�1O�S���G�&Ǎ�}b-��h�6g�Y��B}Aŝd������K_�A�l����` f!�?{	�
+endstream
+endobj
+
+690 0 obj
+814
+endobj
+
+35 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 689 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [691 0 R]>>
+endobj
+
+691 0 obj
+<</Type /Annot
+/Rect [153.1455 647.4552 250.6725 659.6877]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://stackoverflow.com/questions/5170547/what-does-tilde-greater-than-mean-in-ruby-gem-dependencies)>>>>
+endobj
+
+692 0 obj
+<</Length 693 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n�F��)xL���ٝ��Aɒ��8����V�y̾Q�Y.�K�T��kC9������T+�T_VAuWM�f�����S���ÊH�6ʩn���x�T�	:L:���̨�����L�E�Cd�3Ir���LdG�|M�e�}��+��8"]KTe���L�ܯ2�^t\ecz��<���*�R�����^�5Q�v�^[4k�C�EBݟ
+O%��SI&��	D��}n�>HJO%Y�^dj�XqL†�Ǝ<����H<���E��x��ks��)�4�t*���[S�V?�C:���W��Vo�n_�nE��.``D��Ƌ�{�����V���"n,�x��mH���Vֱ�s��g�b��:h�;h��H��Ìd�r�QBh�a��ֆבK�G ���V�Y��kx�:�=���Yfc	�w�U�GP
>zg� p�5���i
+|#�������_P�t":U˷#UU����.�/�QS��������a���f����J��#m���
/ML�_w���f���5�0#�#C���d=7dS�9����h�0SH��-�KX�:ۇ����c���E2(�ڥ�h̢�,7u�C�%w[kp�@������5�|��W?5���D�Q<�x���Rf�T�w��1v�\�0��gtTˮd�U
rQmH|^��肹�K�� �+���eتb����ױ
�7���
:�Z�	�H��I*���F>��KSQ̓Gt�
Rn��#
+>���Eo�`����M��\�_�\j�<b\(�t�A��tilQ�K<vH0iO��CлЇ����ŴHQ��mf���	���+*�ؕ��]gy
7m�:CGP�(5*Z�R��@�oi��
+�Ŭ�@mpw�U����j_L�	dk̉؃�r&�3dS��1d\]d⫸eH�2���ys}��-'��HR��M\+T��j�}��exmcx�m��-�.���^0�o��9`vPdH*��	���,��|�t=��}!>�ld=��m�|�1��4�
�(�i*��[_a��}a
���C�(��E��[n	N9����h���bC��$0q�Rr�K����.v�T	��Jvn;6���!�;��k%O�����Vi�)��FW��v~j�ry�o��_z�3�w���315�y)�t��g�u��W�����^�ެ?=_�կ�O��
+���H_%E����>���6��ñ=�c�g)���=�����T�yjO�_����s��v f`�w�L������:޽��/�S{�;����m{�>~���*�+0{�ˈo~i��v<V���V��O������>����O����7H@��p�?W����������5����ݗ��?�/��!
+endstream
+endobj
+
+693 0 obj
+1372
+endobj
+
+36 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 692 0 R
+/Resources <</Font <</F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+694 0 obj
+<</Length 695 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n�6��+��-�C_EP��tuQ���JnZ;n{���u��(J1Uw_��x|�̙9PIz��Y��o�}E�ڀk9ֳ�f��21������PV:�0�Щ�\��bZV�X)�t�9�~��i#O3v�Q�W�)�!���Hǁ�ژ�&�]RU0�"awI&]�i�xv��,%Ӆz�Z�>��wKV�)���]�Sf�T�\*�)�9͟2���@�6���1D�q~n��Gr��X�Tҕ���i�)CmJ��\�6�J��t��o���Zܓ�Tk1C��i��y���v��&�А�����Qr�
+�$�`���� 7��gq��l}ϸ	Β�����p�`=t���7UP^5�k�Q��^�w�p�L�)�9�B6�e��m����ɏ�!��HCh�XJg�s�d��#7҉�@N��X*��&j�N�!WF6:���K�=�-@�	A���2J�BC�]tA�� �J��C
+.��F�O餃�
ؕړ���:|�с��H�x_a*3�9g�7�2�6���®�kT�u_F�I\~y�P-�XeR��&�۰�me���I.�DM#uQҋ&�K�f�m�3<>���3�S���g�
+D_��ƍ��	���7+ba�gI�ˇ��/Ros���5���z̧�����{zX�Xj~h�)�/�M�v�j
Y�����<b/
�Z�����C��#���[�sa&m���p�C���HEY�O��R:�:}�^��A���Z����Hͤ.R�P���ѥF���&[��]��&�I��:}84$�=Nf�%`+p�"Ya>��vY���m�-ʼ����?M�v*ݥe���P���T�w���[ѫ�"xR
+s�*#(���1�z����S�T|.�,M�(��-3��R�.;-������N)������T��'6ܿJ�����L<��B~/�<��oo`X[�l��=���GAFp���v����I�/y��苤�<�A�o��`>�ɐm���E��s��2����w��l��4�q*4��L�nB���w�ĥ[�FC�. 
oS�R��q�����jd�o�U�W�����|��?�0����y���on��z�~+���>���@^������(�<��������~��Ӕ�whG�\N��j#v�'�R��LJS��I��z�H���
+R�e�]��%ě_�?>v;A\��x>���t��o�����M�-�!�����$~{'���m��b�{
K΁�=�Դ������
+endstream
+endobj
+
+695 0 obj
+1282
+endobj
+
+37 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 694 0 R
+/Resources <</Font <</F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+696 0 obj
+<</Length 697 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n�6��+�L�@��R�A�ď��E�[q��c�G��.�?=�")ʵ��I����>H[Ub5�{�㝌����v���H)]Y~�RV��^��u�Q��N]�t�w�fdU�Z
+�L�1�Qʦ1Y����XS)��y��#�����y�)1]iS{�ٳ�ن�,F�֌mF٣��E�1��EÌ.���_���^*�0��I�>�aDu�Ed�X��KW9��{��=R*��b��Z�>�]KU�4T,"�"ƊE�2����2̷�'���)G��Z�Ѯ�F<-G?̼�Oϣw�H�J�P����I%�Rr�W-~O���O̜	k$Hc�	��ј��Д&��x �L�2�Q�N����F�@a��:Ԙ�q�NU��:XC��ipG�i�*���5����TG6�L�ilU�ſ1��R�m�>!���!I������X��gN>e�7�k�j&U�ԌcyI��Su�c��]�$X�66���]H>��n��q���螒���4buȧ�V٦�('��pБ25C���z�zoQ9�(����Y|l��;���<�\'��iS
+D�$HOE�\!IZY��tc"´�"7�Ȣ��������	z'8N:$�u
+��g
+��D�HA��o�)��q���L��n��	Ǐ\՜+P� �O���I���&W�u�M�"�0	�zs���U|��E�^
��k�b`yu�qn^�ޕF�Ɍ-j�8L����*f���� ��mRv-�rjuic��
��+*ZS͎�&)f߲o�
+�RO�Fg1ּ�6�J���n9?���Eż�wMm����*�h�U0��-��k��
+E�.�N��8&��6��H=F�I�zf��SNA�c����"��g�5n���$������\]A��f��Z�:�1�;˩}u�-��-�[�z���u��hm:��0��28<A�f���|�U��ľ�UN�C�m�j��s	%;��_�g����|�u�z�vӞZqzi��v��/>������R�;�x�-��O��F�W��N��b՞x�w�VG¤��6�S{<�?��q��+ѯ��
+�}��V����7��a5ҵ�jϴܬ58��C��y������A���$�����X]�
+̐K�"{���+ap��Ļ!ѳ[ݍ�mH�b�ۚ�ͨ�(a�׉�@l��O���!vv܌����Z�H>�R>�r����C��4�bt�"���y�ĭ��__֋�u�,Z�v�� ���Y|���;q�Wb�,�9�W���J��^'���ش��Nlٌ�����p/�m���W�xS����G�������e������!oT�^5��C�j0�J]�T�,v^�}�s-��+��|�x��Hc�h�d>3߳����o�|��0�|��ˡ=�����54/3ۊ��� W�a2C��U�k��G1i���us�_�\��|�.3���~~E���m+����/��vw
+��?����/ϋ��������ԛ�bu����|բ Ӱ���
+endstream
+endobj
+
+697 0 obj
+1517
+endobj
+
+38 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 696 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [698 0 R]>>
+endobj
+
+698 0 obj
+<</Type /Annot
+/Rect [272.1735 116.0266 428.8365 128.2591]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://bundler.io/rationale.html)>>>>
+endobj
+
+699 0 obj
+<</Length 700 0 R
+/Filter /FlateDecode>>
+stream
+x��Y]o��}ׯ��)E��'����8��]�(
+���h�	%�$��~f�zf8_����������8s�;4+(������O����{@��fu��-7�`��(>�%�V��B�eʈ�j��(4�R���p��Xp�Kʋ�FD��/�)J]��_Z\Y����\k˜(*)��*�TX��J���USe�IcN�'$�`m��9�.�d��f$Yi��Y�X֭RF�(��3D[��&U�4g�u��'�:e,`�2a��U�YV|ɘG�y�f�-y��,��zBr��31Y��Y~�u*�R.�Ȃ1�Y�BFKY����Ӳ����ŲRš��)�4,	S(:���G$�9b�0#��g�N��Ŝ@�ch�
+9$�!�C@2�#�	3be�z��`뙲���+ً�]0��(�b��m��T�ۗO�6`YYG,g��!c��/��e*k�Y!�%cY0汬�#���3d���e�8�NW&��҅J��5��lj�c���I�Á�F֨BL1b�0#��gO����Ȅ�l���$a�4S�h�X&̈e�y�		1<[���{%{Q��"&
+��2���ҔK�<�`�cYYG,g��!c�r2�4��mކ�2����u�R��zBN�vq��C�0v|/i����r1ŗ
]�����oW�p��oW���Tw���z�G�'��7o������ٸ����;@YBo��qĘ��~�����Cf��])y��\<磨����hH;��x��G�5�H��s��:�4�z4�U8ZO�����W����cA��?64�[r�dW�pؓv?��v�8"�.�C3��v�?�� �4��o��G?�l�0N���M�k
+�o@�}趤���4���v�@��ss�<!w�C����4�n�tߠO���͖�5����-��0�];�H����Up���:A��i�iWm�y����L��b!	����$�Θ����:vlh��O�sa��4Ke�1�i	����€��?����q�U�Z�[+Ϊ��J-��A}�^;kl#�ms[��+���yJů�d���l_w�����۸.�1�^j�qɠ;�� 4�B�;�.�JԽ�y���*��_�͊+�`!Dº/�RpȞ,yX�'DF[��ń�1h@iA�u*�U)���V�5`�3
+X�:Xϐ2�J}�ƾ�`TK��3�3�b
+�f��S����ep&pI�?��
��T\��Z
+7��s{̫��Z�|�3,�5��*۩ʄ5q�l�u��=�� �&������V��g�߅d=�T�!��k��1����uTPB^���׫�X*)�Ź�m�h��F�����v؝tj�r�ui�.㻣��㮙H�.?>�LjЁ�����ε����LoL��^�@���J��(���֥ac�sv]�%]�N�v\���	�.D�L�D��3��BQ1*��K�ĕ|��)���{Zl��1��B�PcyBp;.�?�A�(���JV��44�������`����[����c�Z�_�I!{���V~��f�P�5 ��͹�M �����C#�v��x��0,�#S�$1$�a21�@ФU�K}N`�e�
+��%��=�qEԃ��"ռJ�I�5�\��P)-�eXiX��|z6ǂ���(�J����N�+x�w
+-V@�Q~	�1�!�Ki`��KF����"D)��_����/G��VU��w� �0������.d
�'L��e�љ�d]�yU�! �,րu/�Q"��.4
��	z���o�r6���E�[˚~K���=y�qKmE�����4a�[���lU���[L�f�g� �0�� ��,����~���)�{2ֻ��9늧��O����4�ww��<8��É��]w�|�/bpG�H�Ǘ*\*��t�
+�0�-�*�I�"^���j^#b��!�R�	�2�Eդg3,zX��{�fm�'_\<W�KŽ\��
+L1�L1���@��ƌ
+�|���KՁ��].Y�����*��Vi��;[�8v�=n�{L^�2h��߹�"���ћ7d��ݟ�&�RU��Sʂ��J�Eޘs���˯g0���Զ��3�ܦc~���+��QõE�r�������Av)?p�\ۇ�fgf�Dw�,%��B�=1>�P���W8-�*��i�B��ԕBR:W���u8�>�[� 쩣q>���@~�����8�7ֵ]������[gh�W�f)SͿ8����PSom_�����0�>��,���Az��t<����S�87�s=����5�{�r����ƍ�=pLL�?��C7o�H�z�f�w�`ι+S�k�|�i��~����5tk��?w
tZ������8�z.��_�r�m�.I5�6|ͫ>��	 �:������qBL{�v���\6�f��pQ{�*e:���:Z\{��i׸
+���î�O�A�_�;�o����D�9���C���9�X`t1ÿ�X�e�-�Y�
+endstream
+endobj
+
+700 0 obj
+2485
+endobj
+
+39 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 699 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [701 0 R 702 0 R]>>
+endobj
+
+701 0 obj
+<</Type /Annot
+/Rect [160.5480 520.2055 215.1195 532.4380]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://rubygems.org/pages/download)>>>>
+endobj
+
+702 0 obj
+<</Type /Annot
+/Rect [226.8450 288.3483 309.8895 300.5808]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [41 0 R /XYZ 0 732 0]>>
+endobj
+
+703 0 obj
+<</Length 704 0 R
+/Filter /FlateDecode>>
+stream
+x��Ko�����}���n.��H6H��AδԶ��H��f����~�T���E����=K��U]��G7=����=lj>���U+��Ko�����FY�����R����.��܉˅����#e���r&���֑��*!L^��v�k{�Z`��2]��	��V��s�-e�r���c����}E�n0"dD�d��m��h��s:������oJs�2WI-�>�����Y(�X��U.�@�t��[(�́P<ꓬ�(�^*��B�Ģb)"d5Z'dYo"�?j�=,Z���ue����
+�GS�0��Ѿ.�i�#?�1��	�)Ld����B��0��s�-e�2ƫR�&���Ȍ�&2"Y�N�Ͷ^h�7�^�^)]�Xf�P�.m�NM@K��P,�Oi��Jsf�P�[(�LW����u�����M�B����F�Q�uB����������a[+�N�펔�JH�Ja*�P�N��&"32R�Ȱ��:!�����s�-e`T֮&�Y|ȄȌ�&2"Y�NH�m���o�R=,݅b�t�U��c�N,Kd�Xb���as�uB�b�QŐy�ʕ�V�UF-Kd�Xb������uB����������?jk��l�����Z�R�ҋ�F�׈����&2,/�^H���4f���÷&�Y|ȄȌ�&2"Y�N�ɶ^h�7�^���B�� &.�+m���R1��+�UR,52lN�^U,3�2�Q�:�
_�Pl"�M��5�u�NȲޞ���uUK�������g�#e�|b�(�)�6�F��$BdFF
+�Z'�[�99�R&*�-��a2!2##���D��"����M�W����P���(m�LM`Jܩ}�b>�62lN�NQ,3�2QYomik���EŇL�b���FV���	Y���-�<>,����\�7���_>�N�}{�y�Kw��e��n���n���t;��k����r6���3���v8��=6�/�C`Ǧ����������^��۱��̶M�Χ�#{vH�4�l�n��i�0t�x��u���{�������P��b0{vņs^������~�;Ir�L��Ws�5���B�?�'a���k�?��@47�'��Tk븾�(�\J�\hk`R�Op����>�?k�p;Y�:~W��P�������B�Z��Y�Y��7:��`Ȉ�QpZ���Z_��7�����@��k�ޯ�n�#d%��O�l�!4�'�ov��œ��c}W
Q��3d��v:!����k�X�	ѵ�} W��� ���!��{Z×���\×��S���??�_���Qڬ	�k�m*sT�{�i5heah���n����R����º��?�֟��B���kڹK�e��GK��j�?��	��?��(ƧǐW�v�0x��ck6����U|����2u�LU������a<N���yM"ۍ���ó�����I��d�Qle�Udj��.�N(V�s>�*>ds}��<F�Y�:['De[e�;�5)`��L��'�UR2���%d<z:*v�h����GkakY=P(?�1�0?��9&,g���
+N3�L^�9�����4�J�G���kZ��"���J�	KY(�s��%��ג�VF�TȫsL�zU��Q�f-�$ڗ3|55�iߟ�{#<���N�=|	ә�:��̨�f%��^Ñ%�{~��M2)���k�^OC�o<��Z�?��3�ʍU�������t��I�<�#܍�@��s����t2�w�c�b�>�\81v�!l�~8����R����o�a�]VG4\*���ڏ1o�������Gv
+!��،��������C��<�Y����)�|m[s��p��W�������I��a8��0����¾�X�[�����&^�N�3���O���#q�$�I�'�5�H��b�~�b?�������n Om���pI�ۙ��r��R�,���W�=|y�p��Ė�1᝶6����ϬmN#�ޅ�K���ǰ
�;H��WLr���th�]�?�+��ߞ��p���ǎO@�����ۑ�*���|�b��U�^�-������R��E
+endstream
+endobj
+
+704 0 obj
+2074
+endobj
+
+40 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 703 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+705 0 obj
+<</Length 706 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n����+j���b��`���ݘ�	���
M�%�)R�(��Y����I����l$�.���{Ͻ��,�dwU��[�>gP�˨���tE)ˤ�S�"+���`UV�����%�_)&3*��PʳR���(���C�+QX��Uu�� <ryLV6�.�@ZHA"�3����*���*F�$e�=A*ϵ7I˳�^�����'���X�D�3�@J��ˌ9d�1��(����R-�$ɘ�Ҍ�̤�L~<�T@�s�"c3�y,F��dYoԷ�)C�������ܺ1�&�iƘ�0yμSҟa>�b���X(����CR�LI@�b�/�X�!��C@�4,)̀%)s�	"=�����}g�B�.2�0�#�����&J'2��J>����/`�9{@�X������yۚ)�b�1�,2氤�3��dYo��(9.�E�*�p9��^��$0:�������4�]G��&��o��Ӈw�������]Tp!����Y:$<������Ԟ�qh���
gr��nK���&5y�I׏�&/z<�CO�'���������	`<:&^D��C���^g��2+����|��\�U��&S����!b���$-2jn�b��
+�B!�����)
+qug��Ux�����jU�q̷�IU�S�="E�����3W��L� �카��W��c�
+�'Cԁ="��%��\ �TH��K��*>S���H�	i+�B
+.n^+��e-����7
�u%l����|A_Y�+%����~N��%��7���+��_?�ԗd&�T�9��}S���e��6��'Mz����D���^�~77��m��gD5Nk�-)
�7&���L�gѹs��7�ͭ�FE�����5�j�3t=�V.��G/�GU�CϾ"<&�>�~���E&��8�w{r{��DB����k8����ԯ-���5i�8�mo�LjN�EF��:�E�|r��Yx^��4
�ޢ$�	�!��A��j�I��N_��}�쉑ɺy�w���vگZ�1�M��sD��FG�}-�y��t��`ky��g�{;��',�Lzͱ�nG+�wCs>�~�M!Z��I;}FZ�n������j�L��H]���{
+9�|�p��8.h���&ȡ��a3��;;�<�fn'����������j\BE+�H��y�<>��õ�sz�I3����7�L�Ӎ�$eƻˋ�����)o����XSi!�U�d�����%��_\�kr��f�Z���d����Aȇ�dK�O�%����G�~$�a�Q�ߚ��h�$����\���	f�+/q=xU3ӉInOq!��4W��l&-�a��4����S�="y�
+�f��3�/�켲��W��c�
+�'Cԁ="�s}k�G[�[\�q�����$_���*0�`�ʔl3�#����.H6��C{:��oE���6ٶ5l��vMꗡ�B�ls���<0�����htyS�]��v���^�2x����gݽa���k�2�q<�y�"���@=��U
����?�m�h�p��}z�Ө�3������ꨛ�����Н���y4�ZFl�%�ȍ��<��Zb����u����ڭ�b4���jc�\���rc��3��~ ���ҁ��G���^���?2f(Ob���fA�����IU��6G3_Xy1��z%�>F��=O�{
+y�{d�N7��:ܲ�6�o�&v�s��żhF�p������=+��a;wgJ/t/�D���l~ūd�	��S�=Ad���vB�`��Zdυ=}�D3��1�f��c1jϞ �E3�R_��%S�=����T��Qb�J*�ĭ��|S�	�&���3��.l-vi�.�VRU�q��ò��2����Z���x�h��֯+��Yh֌��|m�B���-
/�,d���W�p����fAJ�kH���k8���I���x���J9~��H��4A�z=���?�;���#��k�W	�w��3n�E}^����No@��n��F�m֛Ogl�	���тjA������8
+endstream
+endobj
+
+706 0 obj
+2022
+endobj
+
+41 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 705 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [707 0 R 708 0 R 709 0 R]>>
+endobj
+
+707 0 obj
+<</Type /Annot
+/Rect [184.6560 509.4552 246.6195 521.6877]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://jekyllrb.com/)>>>>
+endobj
+
+708 0 obj
+<</Type /Annot
+/Rect [112.5000 360.2052 151.3110 372.4377]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://bundler.io/)>>>>
+endobj
+
+709 0 obj
+<</Type /Annot
+/Rect [112.5000 128.0266 245.3460 140.2591]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [32 0 R /XYZ 0 732 0]>>
+endobj
+
+710 0 obj
+<</Length 711 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n�F}���G%p����,��I�-��LKb<3Ԓ3����Ϟj��*���$�����O]z̋��ݪ)�O�?������n�\q.
+��,�
�u������*>�]��)M�8�E�!�$Ź2Y�TcN�-����d�j������	39��1U4�iX��L6d�J�l�J,�מ!&躧��E=���}j�h��H���B5��C/kB�AY�<2���@^VE�D����L{�dX��aeYR|�vx)�y�<2���(b���%���9�[S�*�Tͤ%�Լ(U�$�I-�^:Ȉ`e�<b�"Y�'$ؐ�MT���9߄i
+#Qq�va�I*��,z����uԞ�`C�֪4���D/2r���kU������@'�=����a>�"s.jOH1��"14G�y�V�T�yd1�e���uԞ!s��Ь��1�¨.�&,��6�	G��.%�9buY�Q�⏑�|��Z�da�XF̈EzE�		6dĤ����A��1��Ɇ� ��ր!�ѣ�e!��3D]'M�s�>1z�z�C�>�ZS||�߼9��CN"�,�#�3jOH�����*J!��dr����,b������3dη�kP5h6�TAɮ7���4M�}}�:���-;�[���i�e������C{��=���/��o��דr��,5��P�L!�RL��rڔ��"[O9_qv1�#�
�n��C?<��{;X��٦�o�vc7Ndfߢzɓzg?����̠�BYS��V�e�s�맇L=��
+:S���0�p���D�]��
q�`>ք4����xd��)��&aە@/B��0[��מ!&�<��+bJ�aI{�'�dC@��hk����Q���A{��AWboES$�Oi��,�ϴW:����JOt�F���FW�\��\s�������u�<�"�go��݇����#k7���#�\��G�`���о�l<z^w����q��12)8O�1ݸ��)�P�U-
+�HB�$���P��h 1�E��왭�F^*hO�L�Vk`��&q#�q'�d I%]�րAW�(��^G�	�A��Ȕ���L�\�M$Aş�M{p'o����/f��2kQ�����7;�[����س7���x���~��#t�����2;�0.��K�
+#�m=�=؁��w����{f7��E�ث�j�7�n��Ocw����1�������v[�)��L�^�M4��G��V�9�zh������S�k��h'���v�?���ۗ�QE�e
+��Z����Q�JUmSK4A..Q��R��'���Z]��\��R4%��q����"�����3W��?GBp�!��C^����$cQ}xij2�(��Q�H�����TQ�L��VA�.iS��d�{O�Cq�R������շ'"����B�@
+�S��q��t,�x��ԌQ�\A�q�(z�ݲ�`Fz;xw*~?��EfHj�0��Nؒ���kl;�����7D?����c��t�&9��<�q�ۿ'�G�%DȼC���@k;�� ����;�'�A�r�w�*�P�c�Æc�v��sR~S�2Ib����
+1�1QnV+Ơʜ.�s������&R�D@����]��~f�x�n���?}@3�����~�vݶ 7+O�3!ly�K��T;li����}8 �n�~�=��͆]�ź��<%�2��v��aၽ�7v�(y�Q'i\�-�
+���$�T#�5ޝ�^�N������ێ�]�nX��G��
+������Ϙv��4M�*,�N��3=����@��Y���D���~���hg�x�)�%~�w=��`�v]�m�k�2]aZ������������|��7p�����`��auM<�O�i��>=�l�@^���'��yWᏘ��eq���r��J���<�����9��xY^����)p��K׈�g����W>S:\_��dOQ
+o�m{ܢf�a���ќ�q��������K��e�����8��5�ߎȶ�o���T����E�:-���k��SO��wp�4}�"��5�A:��B#�ƚ�4�r��uC�������GpW���R���J�SSf�@+�RA{@�	�*@� �4y�vԐ,���I&���	fz�/qYp7*�!�A��n(q�&���2�b�I"���y���im6v������j����=`9͖�Re������?C��f��eT� ��q��U��Q&�*��p#T��+
�h�	4�I&(��Jz<T�x�R�,��J���`"�31@D�F\��#`>�$Ӓ�9��s�K���2Y�(J�pss�`졶>�e�Ŭ��R���_!b\6ͤ˰z��ܵͰEe��KL�2]��+eNtT����Wlۢ��ٽP�6/٥]��
�*��!��t�D5����w���w��f�' v����NY���m�E_j#��ⷸ�0Y��no=
+endstream
+endobj
+
+711 0 obj
+2455
+endobj
+
+42 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 710 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [712 0 R 713 0 R]>>
+endobj
+
+712 0 obj
+<</Type /Annot
+/Rect [393.4680 311.6769 459.7050 323.9094]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://knightcodes.com/miscellaneous/2016/09/13/fix-github-metadata-error.html)>>>>
+endobj
+
+713 0 obj
+<</Type /Annot
+/Rect [298.3450 224.6769 447.0280 236.9094]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://help.github.com/articles/creating-an-access-token-for-command-line-use/)>>>>
+endobj
+
+714 0 obj
+<</Length 715 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n7}���b84�M�˒H��j�6�Ek�Ҍ�sAOOf����y�q'r�#�ƙ�a�aU�z8e�#dž'3~*)F�Z����ZP���Q�$'RUq	5��_ZF�f�lK�Sˌ \Kj�
+�����fD������x4��;c/��"��@Sb�Z�2{3���"��f�#�X�:���\� ���o���za���%�S�D�G�T��b#2Ql�B���(�e5a/�B����%+�DvD)�D����E,(#�X�:��4�x,���Ҝ:�u.kᨩ�9/kUYj��eb*�-�91�魒�	)dNX��	K��3}(SA�>���$V:�3��}�H!sŠ�LX!��^ *r�AY���7��Rw�X�Z�ṬC��M��b#V�u�Rq&�)�X�X�$��Թ����T��(6bEY',G�d�o��H91���pA2R	F�`�ܮ�n�l���~q!�w�����6,MQ����#_������sf1a�w�q��C���4�X,�r�q��VX���޷~�����?����&�/��oɯu���O�ͣ�
��H��_�Vy$���6�'���0��X]�+�@��;�ť��x/�D�����Zy��q�����QLq.���=��sO�n
��ޛo#|;��a�*.՜�?�CS/�����h��X��Ƒ)��7�X��d�,�*\:NSf�����#�G�Y.�'*��:���,�V#{��ĕ0�:��
+\�}&lE2;����>D5�|�j2E�ud/�rMV�)��Ih�z�3�U�M�@3�<Vv����]�}֨?=�M�Ji��˩[�]�ȃ������lv�u |�b7��P�e_,j�}LL>�Ӥy��2nju�<�������W�S��u��o��_-k�_�������̺Tq4S�z�
+J~�<����f�1<9�h=G��eG^��g��G�)83�`�y.�KR�V�ҳ���&��-YS�[��EO���q��Ok4CP�ý�9��~�����n,�n�D0��+��S���J��
+����+W����>[5�c>�P䌫>U/��ߥ�?���H0E����|�����l��W�jTE8�z�"�"���믨�87���Z�R�n-a�ؖ��8А�L�+�l�� xuc��k
+�k`:�������^��*�����ث�r�ʴ�5���s����&���z�T���<�)0\��J��f�ɨM��A����`�}�Ȳ�5b��?�QI�7ʪ+t��J�Sr����P\}��B�i�הK�'\��hp�a?���
+�n0;)#�N?;I���
+R
+��1,i~�Yy��lj;�F
���`�.��4�/�f�B6�=�\q��}_ح?vuۍ��o��]�L�H �~$#�e�C����4��s�?z���怂���񒀻�ɞ1�Ae	��Bۀ��J8mF���jg2�������F�1�k�$^p����3 ���%Ƥ�*��\�5a(�Q�Rԉ�@l�z�����Q�5#Ŵ��҈�����SHB�+��SV)9Wx��>gw��~9F�j��&�U9��I5.$�����~����ۓ���y��#�m�o�2t8��
���0d_��N�fu�>��)xL�2Ӄ��m�kh0n�t���g���e�=ǭ1��X/.Ya0��9�J�OW7���]�A_�+���;A¾$�-U��­/��1���}KV��i�w]�m���d�H(��	��/�J>�6�R �x�7!��y�����
+endstream
+endobj
+
+715 0 obj
+1786
+endobj
+
+43 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 714 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+716 0 obj
+<</Length 717 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�r����W��rIp?�+�H4U��*%��m03M�@Q�fi��?9�@?�c�k�d�������socXF���h:~˧O)�ӗ�ln���L�Tbc<SN���_�)�2�rJY)�E�Q�1�e&d��:_``eƬ��I��DD]*�r�+`"˥�$j��N*��#�M<���h�Ǣ�^{�(��n�^Y��w���ٕ\-=0����G)G+s5�؄�<6a��"+���Y+���I<��c��ui���J������&�z�[�h�מ �|{{���,4���i����ti�hR3J������l����ş�~��g��mC~��}�п"���|w������8.?~�i\d,p9i�y�9UcJ��#
+�����X�D��\/W�t��u}�ͫd�*3%��9[s�v�"[3�#��X7Ձ���P
xc���z�h�:��1e2L <B,Nz��۪�K��j!����3YD������c{"��ӗ7���!���6M��+��xt!5M�Xi�L"RS5 򿪆����3���C��\g�8���w��	_�D'����[_nu���o�Uo��ko��H�fOc�}ꔰ��a��uhIwj�T�XHa��������R��-�=#���"�����4��b7H����4�J��3�VP�тN��[�����M�J!Q��j&�,����s�c���y�_���j���6��7d�3c�k#��ш�����TɍK��%��P�M��ժ�d�2�5�U��D.���`������[��������!+�kO�wN��W���I�Py�»��Y:,T�	B��:_���|6���h��|_O�(uV�����=b���G}q�N{��?��θrF�5��BH����wص{ٺ�
Q^�ZQ�p����W#(�D��W�L�ŕ;[��*w�b�
+�Q;��q�rg"�r�#���,Ӕ���z�'/ˌr�\>ρ��l9�u+�=ٶ�����p��
+9g��\̏����\fytۗmSx���1�q!sWm���߉>!�3���L�@>^h�	��l�i�n��@� �N�38
+j��/��9SO��L�0�Q�+bAoݓ�L���03ձtۻ�_(�%�b��/��FϽi6�v6���w��U3rdgc�ۙc^6�j��Z_Av.��Z��r����:��<r���w_���
W�;��Qc��{7A�hz8�p=�=Zߜ��9kU�o����@!���S�9ʹ�S��9��YQ��ʹ���r�?.�ޑ1�#O�P{<��VM��0l��U{Y�����uKzc&_O~E�v�N]g�i�~���������+pH�+���1ݐ�����p���Z���`%�Y]��Ei=J	̹�̄��'���Õ	J�2�\�&�	�G]+J�	�+`9�[�j��g��n���&Z�h�מ ���Ņ}�E3�%��c�&��b྾�5�������oWZ_ba�zQ�ypl� ��մ�eL��縐jfM`>%L�A�EI�,"G)�s/#}qi�UVȈ������Tx�I{����c�a�����t
+l8�Gv�xV�6�"�E����M�d/y6%�-H)/�����w�J��b-M���4yMН
�e$ܦ:���+�e��i�_��������P�`�r�0xH��=z��L�"+���w���̀+��"�=����#e�KUF\�Q&�,����R^{D"�LFމ�睠]z�	g��w�Ye��hQX��#�l�I�:�;.���b��*˅���g��1���s�-Ro�����ͽi��3�_޵���D���jJ&�X���N�{�s���6^��x?�	��E�7?|���ȸo~�z�����題�)W�h�`"/����<��I�`�=�̷�p�_8+��/XV����<��Ž�&!q)fN�Un�v>��1ڀ�%�F7ba��͹,D#�w��Cy��4�,\bi�$U^*X@"�,F7�	x�,�?C�p�$����`u�nD^0ڄ����*�P�{+��i5^"��n���aF���+�k����w�V?T�0rˤ�k��� e2��x*q�Rq�bΰP�����(mZ�����2���(1QrĊ�i„�C�*"�s=�L��7�z<�,�&�ҍ5^1�d���m�=t�3<���3�����,�8~�e�?T��Pe�
+���B��`�g�(O�.0
0���4'���ʙߪ\�-��"����w��wW05+�/����W�P��5����!�fg�[LW�|m�E������b:2�h�k�}�;ٗR�}�gr|bߤ�O�����Hޟ�}:�I�2�=S���5 /�?iE�
+endstream
+endobj
+
+717 0 obj
+2353
+endobj
+
+44 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 716 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [718 0 R 719 0 R 720 0 R]>>
+endobj
+
+718 0 obj
+<</Type /Annot
+/Rect [384.3390 660.6840 427.0350 672.9165]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://git-for-windows.github.io/)>>>>
+endobj
+
+719 0 obj
+<</Type /Annot
+/Rect [181.6690 529.4340 306.8005 541.6665]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://rubyinstaller.org/downloads/)>>>>
+endobj
+
+720 0 obj
+<</Type /Annot
+/Rect [181.6690 350.0842 306.8005 362.3167]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://rubyinstaller.org/downloads/)>>>>
+endobj
+
+721 0 obj
+<</Length 722 0 R
+/Filter /FlateDecode>>
+stream
+x��X[�۸}���g1UŻL��E[`l]�9�[r%9��������H��'��y�rB��~ah��٭��}��Wp6z�h�����,���R�$cT�iw��ҙ���w��	�*%��$�"���ҟ�r%ru��e�b�D�_�G\��3�c UR����:x�\]=vX�<�ld���s����$s���{��{�&���0�h����Y���c#2�؈Y+���0k���GH�1����,�:����R�{lDf1�1o�ǂ՞=B���v��cc�q�%xJ4K�RF6��q;uB7ϫ�N����ꇍ�J����zs9(Mr�$���S�#UNZ���LQ{S'YΆ`�$`�y��O�)���G���s�g;��PHFC��S�=Bt����r��	�ƥ"��*w*��k��c�d�ǂ՞=Br����T��TH��J��I�,v9�!]��$S�E*uJC4e*R|k�N"��Q<���CpC^�rS����~&��Lv�'].?ߓ����]�8���Se�b𿲉X7��UYR�]ߞ˾j�<7���CU����yo���V�݂�B�D��9u2;�mj�fJ����LIPs�d�m
#1�/�ܙ��@�i����z0U95U������%��q��v�����LK�E��j3+�I\�%�(n�S�B���Ո^5%Q�J*\5�)�Ո��ki�ܝ��&�A�k��s��P�
=��:Oy�����1E�TA#������S�N<�IW��k�h�9Y=�$�\�Vc��qU�B
+.�.�[�E3uu{�9}��`��7q2�	p�"zJ&y�����π�R_u�0s��-�KJ�	\5�]��
+��ek�ސڼx��zc��ph^l%ۊ���*?�V��RjKJ'��YWh�oh3SZ
KI���i���Y�c&`/�����"T����7:�5ykN�ޚ����~�6�ݞ�=�ۃio�!Jx9o���{s�K������!�i���]s�M%�"!���̒�Ʀ���i^����l����|�4�W�L`������'/������s��?�T�~Q
��f;X��hUh�H�[�L���á�[lI �#�l#�6��=JF�6�
ch����|4u_�Dt�ݓ��n!���K���â�,2r��u�ǻoI�@1L���V�H����Beu#��R��fS1낟m1W�u��~�"{�E��R>�GFr:�w���;\.ܴ�kEcm��m>��_�n�E.��]rΝ�'6�Q�G;Cm�M���Y�
����{�L����+��.���kQo^��ID�K���x��R<����"�;�X�όH��\%�C�	;�ô�t�q��S#{����1�[`��5aO^,h��:�
+:x����ǰ�Oy,X��#D{�צx$+���_��v�~�=�Ap�.N�)K��ʖ�$��,�zl��̷'
+@$^-.Q&�CZ��J�w����?3"n
+�T��!�)U<�x����=BX��%`���2�c�N<�D�t�e��c�j�!�s��(AV�y�D	��Eh�c
+3�_k;{��>nVŰ[��v�5>�h���ዉ5;�7ӡ���v�c��_zb���2��:��r��p��$�%�lX���8�;����v�O���]_�#�s֖�.��}:����X^�mc:;ˇ7U1H'���F�=�U;qvmq\��#{��9b�;���ލ�cq�6��0���~9�!��9�(�E�<��n�ĺg�����/��[���[�!ݹ�/
+J#{������Tl3&�ڌX�v|�gsl�O~x���alj��w{e�e��]��i��c�����5�R˙+E2��X�(��_��0yr��ߛ�ca�Fr��xZ	uůc���c��M�"۾!�Mi�O�#��	K��8��LO��xm��l_�/9^����-C�с��3vƈW���g���&�?�?����
+endstream
+endobj
+
+722 0 obj
+1958
+endobj
+
+45 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 721 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [723 0 R 724 0 R 725 0 R]>>
+endobj
+
+723 0 obj
+<</Type /Annot
+/Rect [227.6430 695.8837 441.6570 708.1162]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://github.com/oneclick/rubyinstaller/wiki/Development-Kit)>>>>
+endobj
+
+724 0 obj
+<</Type /Annot
+/Rect [184.6560 509.4552 246.6195 521.6877]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://jekyllrb.com/)>>>>
+endobj
+
+725 0 obj
+<</Type /Annot
+/Rect [112.5000 360.2052 151.3110 372.4377]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://bundler.io/)>>>>
+endobj
+
+726 0 obj
+<</Length 727 0 R
+/Filter /FlateDecode>>
+stream
+x��Yˎܶ��Wp9&��K� �<<F�k�H��&�řV�����|f��{H��Wc8���}�xXU�e���C�.t>*�Sp��?���*Y&Iɥ"\�Y@�L��*���	��EN��Y)�E�6T� �݅���+3j)"&�>c_�������>Ц�J����̨CDvQ׈�Ѣ�%.��	���:-���8���?��]�����`�?Hi:��x�#+�y�Z�2e)"f�T+�I=汕�"�2����g�V�r�1��<�1�1oQĢՑ=A��FC�S|*2�ʂ�R�B���!���E��n�+2!(���i�f)Je��H��%q�]�=A��bP���a��+���6..��<��	��+O��*�e�^�F��esZ���X��LY��������S9�O�!�|�E,�bdO��S!cOHf�E��"���SX{�A�S!�=�
�������!�zɡ�0�Js�P_��^=+��x��ٟ*xNs.
+�$�%�7��%�TB
+.n$��!����ß��q���V_f7�q^�RJ���\�Ak]�-%>i�{-��c�G�9��%p23�.��ղď/������`�ь�����@��a��;�1>\�^P�m�y$��@��!Ǿm����k�f7��3���éi���W[�! "�/��sے����7y�O�P}4d���'3f�aߌVe�GgLmj���MWC���D��h��t�D�V;�f�*.�<'R�L�U2�"^��V}2��]ۏ�y�i�6�Ll.��S���c�]�iUH�������Ϸ�dA�M�P���*
��E�,EKd<��`��R��Ʋ�(���Ky�aW�Ч�q�1��C9Y�%����u
�G�(`�Ձ=AD�Z
+�*sGR!)<��?��d�z���PO���H�k[O����m���R����t�L�1�nN]���44�	����d��BѦIm���M�k�7�i�H����z��2�6	����d��\O��75sE�2U;�dB�b��-�Ā����)��twJ#k�t�ǡ��dN��T��&o���U��>nm$��+i-Q�̬uӡ\���lU��ͧdTBf��j>#�r�����4�m�M��g�K���y��8��v������w������y�N�d��~�Olj|n�}��4ӗU�;���/Q��aC�s5����7�&��ȱ5���M5�7{��M˳M7N��m
7$,G��~�I�]�fS�e�4��ԑqol��
�q�c��ev�S��}y�5�_?o.�L���������ߝ���őK�y���s4ӗ�nf|���f�A�H^wY�Hĵ�W�Zw�f��&}�z���ټͦ��lI,���J�5-�피nZLˬ\5-��,�sD�h���ł�Ѡ'�R'� ��DD���"�ւ	�iE���R�I�VĒ������ E��榕��y�J�M����o5������o�B���Mb�8�O��L���h˱�?��Gs����Ɠ��۵�ڤ��K�$`���0E��`|�QD��Ds��Y
+	2"L-�0^����b�d��A*�/]�V�0�$�g���'��pE]�hQ\���¿uJ�/M@4��B�6��N)���f�����m{:u���+�����wsO�{3v_�U!�����������VhQ������"�~�����xocU

�����Sh�_�!~5c�~��#����yk������a臯8����G�i��d�1K����B�NS�����	�]�2��s�l�m����s�S\c/�;�K�0�,��X��f'�+�{&��w�����Y�C���RgRQ�q�G*�Xi��9ew�av��_���T������2&
+)��W���v��睸��^�:2|��`/�A?����ˀ��¥H�v�.�w�ƯC�L���
vQ�����K���	
E.Nt	p b�y���U�a�N�CI�Q��춂��?c���L.�;���,Ba�g�����ĕJg�*�wwOZd��3R���ܙ�9|@@����p������2�ԫQ�orxb�����{t
����i��Z�B�W���ƒ������@
+endstream
+endobj
+
+727 0 obj
+2134
+endobj
+
+46 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 726 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [728 0 R 729 0 R]>>
+endobj
+
+728 0 obj
+<</Type /Annot
+/Rect [172.9225 628.1695 221.8555 640.4020]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://rubygems.org/gems/wdm/versions/0.1.1)>>>>
+endobj
+
+729 0 obj
+<</Type /Annot
+/Rect [244.3905 403.9195 287.0865 416.1520]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://git-for-windows.github.io/)>>>>
+endobj
+
+730 0 obj
+<</Length 731 0 R
+/Filter /FlateDecode>>
+stream
+x��T͎�0��)�X�b�I���
+��J!����$5M��v��1y#��٦�"z�-�����I�B�A��K�u�� �6��u�B��w����o3����2x{��(ϋ*X}���8��dӀB,�ip���Ee)��J4`v�?5husD�����vn/�Ih�6���|,<�3�0y�Ҫ9��:Ƃ�{q�@�t�~��5Z�������l�=>�x��ݵzi~ֽ���)�A��A��P��P�P%��8
+\�K7,��!�r;m\�2��hʇ�#�&yr	�E�z���.�^�L1r�|%/ު�!S�3��˷����ɇS�߃�C~����$>�m��;�P"5*4��С�C�CT`r�{e�Q� �O�'j���H�%��Y2^��P�'�h1[/+b����N���z�z�W��Pim����,�Y��8,)lO�Y!��$���-D�ǀ�&,_g���m$mg��l��������A�4�P��[�a�E|s<���L�gψ��yA�뛤Ի�E�F_�@{��.�s�%��^�K��ԧ<����E�����o"J�
+endstream
+endobj
+
+731 0 obj
+568
+endobj
+
+47 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 730 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [732 0 R]>>
+endobj
+
+732 0 obj
+<</Type /Annot
+/Rect [191.6595 665.8837 257.8965 678.1162]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://knightcodes.com/miscellaneous/2016/09/13/fix-github-metadata-error.html)>>>>
+endobj
+
+733 0 obj
+<</Length 734 0 R
+/Filter /FlateDecode>>
+stream
+x��X[o�D~ϯ�ǀ*���BHm�E !��h����xҘ:v�KK~&��3�d�n�NV[''��}�̙�p�Nj=�b�{�O%E/�7�Y��^�^,bŠG>���W�O[}�{���I/��9�H+k��C�Q=
+<F1�Q�}ǵ�|��>ި(d��=��؋B?`�K/R
+�;-�u�3H�+3YY�q82�3�$:��eQ��Q�i!b6�@�	��j�s�� :��;>��Ͼ+N4��־��	=gj�Ş�� ���`�T/�0��^�J82�N�;��^�25�B/����X̘��)SVDL�`шwp|L���~E�Aƴ�?�#����$�b��t�͝f�_���������_��?W�;g��_�0-���Z����S{8$���G��p�۩���>�Y�7ÎUY~bmmjv�|<�[ٲ˜�5%;$O��me�(cv
+�L�!EY�ʶ�<�}�l(K�ǪD��1lW�EsH��T���X�<.����yV5;d�����"e{�wm�:LHՒB=f���b�deQ/@���:�:;dyR��`Ƕ:��!��}Y5������hHg����7��T�d��@z�V�P{��X��{SY�I��;ۂ8���饱Bt����~''�"ۄ5毆�4k�n�{���S��g(�=��b���'|{�b? `�g?^1(_7偲�V�r��5_��b��qe����h��MP%�5�Խ;O���ٷW�e�!/�U������3�u]"�rg�y:�9Kͳ�ˣ�D����q��gvM�^`��_(KM=|�X��(%�H.����6)X
�
s��')NlW�)z�n�v�`�դ�^�ez��T�_�I�p���n�*5?�6��+���6��-�$y��I�e�����>]��ϐ��f	0�k�*ˆ�Z�O�ݛ�
@��aS�"8��bi請S�R�?��T�YW�V�7i���O�5���Ř�g�*�D:�ǑkG6��" ���ĨK��h���̈�<�� b����,���{LLSX>l�,IS�,FS��h�C�g�AŇ�4L.���:���)_�QY�<i�gʳx�<��r���eZ���93/=�fh4�|)�������_3��#���������
���~�ZOv���Ŧ<��NV�f��݇�Bx1^]Ę���������w���o���r�a��!���[������n	�B$1��7�(B��tA
+`��8N!�����=9�X{\���Y�)=s0f�s��[L2�+���*2~K>���Rj�}u#��|�[��r@�'��o�EDdO����Pk~��@H���o+aH��z�p�������{�8�V�Q���26��N��	uC:��z�w��P"�A��5B ��R}T�ʠ��l�bq*���Ml�_�M�5�^���1��q�1'x�.4Z���	�P3�:\��Є��+���?7�ݵ.��"#�U;��Q�[WM�//�B*x7\e�Ņ��o�����,��7��������Eg:&
+���	�����3|x���!xd2�pG�&��-��t%E��m�08ϳl�N�p����C*���:����5����/��ܠH�[���#����]�w6�k�n4�ܠ57���
+�==lb����=jB�/"�qm߆=+��$��Ć����a4P�'��ga�a�Y84�W���P�X�É#`Q����@�G��M8��ܱ<�����ۘ�9<�<$�+�x����
c��/_�O;\�r��,��5��N��4�!��FZ���,uO�*�N�x���&5����_
+endstream
+endobj
+
+734 0 obj
+1804
+endobj
+
+48 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 733 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+735 0 obj
+<</Length 736 0 R
+/Filter /FlateDecode>>
+stream
+x��X]�ܶ}�_����e$��
+�N�[�@���>0`h%�bI�J����L���I���M��W��9s�33�6��!O�"rO��)8[��0�C�CDE�fnj&ƞ@(�'�e�<!�p�wq^�̘�_�)g"��c	�q�!?&R�sv�"K���QE3��_0X��1X�0�&�qL�8��w��ߚx��{?��pM�x��8����q�|��S{G���3���c�]��(�;[��=zA;����·K	|��1W�\%˜�m�	6gG�ކ09|�&{Ld�arxH�xz�\Ř�m�ɘpv��m���;��f0A�,J�Xi� "poC�i��zpd[�]%x _<}�DP��%�-�<���X��+�����������_�"�2�;և��������ݗZˑ�)�ky�H�Fk�ɵ�g�ϣ��|����>�hu!�P���Z���C��r����hhl٣�ghP�~�49�ϒ�k�2M�C��H҂�O�2(f� ��3[�l�&"7e�ӢȌ%q^�G��b�`�4�"�ٺ��&KRdcо�׊�Y���H�-N-����<IɆ��k�Z��s]m��W�#��=�f+���H[YY"�$�%n?�\	*��T$�2��0���w���ꋋ�	��B�!���*�C���N�Ͷ�}��"O�>p->^Y���$��r�ٸ`�ׂ�,^�Ͷ)�l��o�>��犔�+���U{e7�oWv������I$�㏠n&�(���\$4KE��
+?��,)y�uv&(�g$�sb��y��4zPݪ��h�3�i�z��4̜3���IU��d�$d���A�v h��!FG`ܨ�S�vx"ڀ�ZN�؞�M�ՙ�Ʈ�-��XFd;r�Z�����m����r�L���l�ڬ�E�nW8��o�s;��[�i���^�<��[���3K�ꝭA�՝�0^pf�e����06�9�����i_L+)7e������5�u��\�1H�=|ǎ���/p��N0�MPS�����m*�����Z�S�FS�
�����0�����2]�JN��� d�~��"M���i����(�0T���7�zV;%7���Z8�
��i,�/RO��'���3����~
+B��+k�:�����W&�s�*z�;c=ٽTW���h"��r�$���$9BW��(��'GZ��0b���f��0�^^�� A
���3��J�P�����ݔj�F���m�93H3k`���n7@�ء�eWk�T�Y]3�͕hW�g�#��LE[Rvp�hR�p�+u[���|M?�	�!���8��y�]�E����ދ8���mPí��6�Zs޵�q?�7�4����]!9y�:'����pW\�@�K]��
"&� ����@蹏~4<�9:Ff�'�zX�sD�Mr��� �d9B
��.u���>|8C�Z��0���.-�6���ne���S;H����WFpWN��|�M��7���1�q�=-�eй���1�ɒzV�������+5w59���̝�\�h�Ǜm<E���@� f�8B_�j����R譳[
��%���\�s�0Q��V�#��]7�i����M�4�qİQ��n����So��a����������To*&,{��풀����b��\�����i�������M��@c�#���vS-��Q�&�������5��A�����˨���"e/�҃�X@v�Ȫ
J��g�:�!�޶]�̾V���ګ��5��,���_��B�DŽ�w	�&�%0��P����/rԷ�ګIjSv��\��i���)�ǯ�������z�6`�1�3sfa;��䮺
����=U�w1�.���?Or��
+VM��J�'h0���:�3��Ҁ���/��ͽT�n�p5�{nJ�L�XLY�p!7�ɟf�#�+��Yʋ�Y\tV��Z���
+endstream
+endobj
+
+736 0 obj
+1955
+endobj
+
+49 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 735 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+737 0 obj
+<</Length 738 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n�6}߯�S8�x��h��u�<4m�(��J�]eu�����/{��tH�(�6#�5�9<3sf82��C�M����3:,��K�7�/6�a(����Y��R�/Ә	DcL�d@�K�<�f��}T0L�t�Qb�5`�c
+���Eɉ�4dk
+�Ƒ�j��a�8qXC�g�H�`qv��'������ˍ���������G}
+x�RPxҒ��(���6�6�6��^H�	<���iͱ2�L��9����3�9�Ӛ�9���t���k��i������/1�5�	��A���X�����1�s��5>�O�-<*r��Z�
+���������;g����������~C�FC�P�Ht�n^�QPy��nsuWWe[����3t�~���ň��Jӫ_�.�u�����xh&��[�$uvj��t�������!�Q���/>f�����o�1*��r��nyNѹ�S���e�Qf�gV�Q{�(�̃-x�pPm��~R{���!k�^�
�U��e����,��^�p�a�����hDF��T]��M��Y� 8Oy�C�/�.��`Փ�EU�D����m��C�ktݠwW�A'G����>��
c1朮�^�c�E?f:�<|jP���'�",8_YC��B�Z��˙8!�Uq��]�)���B��2���V�J�>8;G�����B{P�	,�H~j�=�CSx����"*����2��8���fOT�g��W*�0���2�������2���(\!��_ܱ�)E׸�a�cNõ͒TMr���e�.U�M!@�.��L�ə�D�V��g7F�P�Ǿt���_�M��p���ЇÓ�K�e�7>�E��X�#A�n+TV^���w�Z���4�\5�����L�J���B'����%�ܠ��x�sd�GV��ɀ���r���j��U.Y�{��o]���.�Ӧ�bP��(k�9��b�S[sS'���E)�/i���j�����Z=��y�ɹ�|RP����������+w3uO������6�}�3��g��s�H8�C���|�C�Ѝ��2�e��	�ك?��C���2��m�����	�i����]����En�X��fk�V���^��U~��^��~���z�1��_�O]ۮ�տm��O����V��⮐Q���!\�`�����	��"XQ��G�g���N�y�o8#/"�e�8��{!����I��6a+�N�w��u��y�N��z�n5�&Y��{�s�Ab�cZtʻ}��fF̉72c�K�~D��{����7Ɓ��G�p��$s'F�tҪ���Ue%=���y�Q��њ�ީ.om��}��V�B�x�*��֘�G.��d��]
rmN:�v��#Y
+�0n��_HVP~ˉ�)� �A�Be���']q�:��N��=�]�\�y�z)X��1k�/��H�����	�B
(��=T��v���U�qg����3�����:�w�ifdK��_��{��R�U�!��e	��^���up��-�l&l����!ƅ�7�|h$v�
eu�
+mI�~
�i��0��v�7��q�4�4�>�p�軃��*�J3�:n7�.0���Q�j�5s��\���}�p�k��9
+^���sba܇�����x��9J���!����������4i���'���~��'Hw �G��+�����D�{��k3X~�nu��-�4�F4 ��i�Gīa�2#��}=������}�X���+�_��:����cx�Y��6��5n���2�
+endstream
+endobj
+
+738 0 obj
+1768
+endobj
+
+50 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 737 0 R
+/Resources <</Font <</F2 509 0 R
+/F3 510 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [739 0 R 740 0 R]>>
+endobj
+
+739 0 obj
+<</Type /Annot
+/Rect [339.4425 623.5087 435.6255 635.7412]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://www.nngroup.com/articles/corporate-blogs-front-page-structure/)>>>>
+endobj
+
+740 0 obj
+<</Type /Annot
+/Rect [362.9730 342.9825 480.5550 355.2150]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://www.datatables.net/)>>>>
+endobj
+
+741 0 obj
+<</Length 742 0 R
+/Filter /FlateDecode>>
+stream
+x��X]o�6}���c���H��(7I��(�YX(�W�K�i~f��P"G���v�s$r����̙�y��=m�t���SI��?��f��
�"���J��5���E"W���O�1&��q.�\)��i�YX��F�k��	w"S0`)=B�,��Ɂ&�t�
+�I'7�Bv���fC��K�d\��$�������s;Ev1�D"�p�Q@r��WQ�<���ǜ�&1Na�K��!Q�<��a:QRkF�U�%J,#�E�<�"�="��&���7ʟbʵWKe-�i�EYs��;�c*ɥ�sbr���c���Da&,JL�(�Hz��YV����Ę	Y�k=g���(̄E�IX2/=B� 덲�+z2z�������˚�E@��"F�C������I�#$�X�������%�$���&��	t3{��� =B���}@�IU,RN�4A�S�Pm�~�1(��a����|��Tm��S��o�f�����
���=�v蟇���=���{�t����J'ҤbҡO'��ؾ���ˡ鯙�dϯ��i�O������jw=�;@N��ܻ�`����خ<y�,+�&�f6Br2�jr�?�=���={�M�};�A��+���޿:��V�s����o�T�<�Z���U{v���z��jW���\ݵ�}�4�˾nO���Q��EN�� �)ҋe&KL��)�+��C�?(�i��M&�P򛵣�<Q�B����Ί�I
+��.}H��r�
�K��pg#�Fd��V��Q7J�o��*���b�:R-eR����֌#)��I���`O�7R����oU����M��L��Jd_�2ު�L ��V�f��@s�VI��|�j��E7Tzc�c�����(�HH�4)��`e�(�L�X)`�pC��I.�\a2Qn�����hԴJ�,���n#%B�����Na��W�3�gY��a|�EDQ�Y:�H�ن�@�0�"�h'yM�gDY3��<U$W�C���'��1�
+���q�wo}� ��v��s��N�U~r������ұ�y�sH�)�uC��w��ʪ�\�q�S֥0nja:1�8B�A@�i�YX��Fd��g��5�@k�D�Ȋ��K��l��1�&0>�"�G�t�.en�@��`+a��G���$=BL����t�dz�0u7R�
(�#��y�6�J�do��R�p����{��c�8�`�̵ܴ��9{��;�*Yk�2��*eӵ��~�Sf�D�O�P`��|
-h�=�=N�PDwuz���q�y&��?�����ق��>O"�F����SHU���A���Ƚ���~բ�_�W���cվ����~����w�s���?�Qu��,��X����r5M_5���pn��C؂�ɱZs^�ƒr7r%���Ls�������/_���P9�^����d��I��46y<��!�ZL�	�_������n�a�7�]'sRw�ޱ+?�s��Q�����Nab�u�\��譜V	��ŴFR��D�eH	�б�'�<c�5�i��!�,+`h�����������C�! �L�5`�L�(`��Az��?�Ig]�A]��V�c�*�,�a��w����o��1�B޲>�C��q@}{ޱ�=��ⴚC<J���)NZl�ꑥ�Yc�z�����Mn�m�,V��N�����^*�=(kƿ���k�9�M\3��;���t��@��sW\8F�mz���[����oV���K�=�~�'��x�f����(q�+w�1N��J�r1�����U�v�w�k�U��/�vM��%`��S[W���2�wl8�����_�P�,iy���_���?
+���ZO$�ds��Y�1�=���)�%O�dq˴�������9#�k��0��`�0$����+"亓���q{�
.��K����
+�]����w��P/�P��eX,x��A����B��
+endstream
+endobj
+
+742 0 obj
+1937
+endobj
+
+51 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 741 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+743 0 obj
+<</Length 744 0 R
+/Filter /FlateDecode>>
+stream
+x��Xێ�6}���8�pū� ��ع�	��Xp$�[�Z���qfl�R%J��8��������S�S�b3����Ƚ��)�����]�Վ1N~d�v/"�����ӕ"�4F�1�%TF�mJ�DI�V1��5�$�I6�*�%�)�d�^h$zѕ�L/U(��9^�����%����e��{�eA�&�$�u0hM\>��/����*b^�4�W�$q~O�
"E�F,���i,y C/��@Dl��"�e�3�kG/�ZGl��"6�0b�G^���ɚo7w@9~A��GT󈓻|��W������Տ979�w�R5=i
+����]���z���`Iߜ��sr��}s$��w����Ĵ���m���X�#����j���EO��^��m�<Ԥ(+�U�PwYwe��ڼ��>"�_?�U�����٫��=p.�voڼ��lz�Nn���eSS����Pv$35���v'��`ՙ�-��M�	N���g�ʈ
+�����!���IQ��I���-���v+�y�P�I�H^�׬91h����R	�n��k� ��1⧶ɇ��&ݐ ^[N�Tx���s�d�C]�G�UoM�A�m�z�a�ӏd��9�2�Y����2�&^��we��q���e6����m�l�f�}B������<4��=�VA6�t�Z��EU�ets�dT�K��y��A�\؈����v�9�2���5E�G—=����z�D� ��5&�ͳ���aD����YeMĭͻrozK�(,��.kAd�����|�:�P{�|�gk�c����YZK)mW^S���@*���s�ԃ=Z�(xl��a�r_;�ly-y�����h���)�3�5�zG��9.q�l7#-{Z�`�M8�8z�
+a{Uv@<rc�2s��.����l�o`im�p
+�����N��H���P�-Tnכ�G�fӚ	�д;�ld��G��R�{��z�Y1"	����Ĕ��6ez�i:B(A�Tj��j���$\<�~m���b����:�P��?BfIn{SV��.4�l��_�;���T�p���C՗Ǚ����~,�� 󮱃����I!�-k��o��S�*��{<����`���b���Hv�m�(�C���'+���fO"�oUPP�������������l%NE�?0q0o�OUB	W�)�&S(�o���T���{*.�������T�t��[v�Z�h#�܃�
��K'�[U$o��P�ݗ��TG:U��
+Ԥ��*%_lڭc*��Χ��D�)h�"�J�l����p��8����Ý�?�)��UB�a�u��|!_B�&��A8���`yKí<��~��Bф36n���V܂�\�M�c£˝O��t�U�H�i�X�MR�\,�H?. }c*_n�7�(��4�`�Nڷ����\�G,�K��s�)ȷ�`��>�ع`4�8��$�N����G��rzaRS����|��4ӌ��X~}��Ϗ�/=�r~�9�qS83�C@1�j0����ˠލ��;8J��Z>���<�Y�[:�����ƣ�L���~ꟾ�������q^߂J������S��8�i�$)�x�C���?���#/��E�"�x���\"P��*�ӚI������"�vPG4��E��WMڽd6Ty�)ӣ�I��Bi�U'�[��g��g3gQ���"��x		��,7�8�$��!)�'
	�Ǭ��Y�a����m�Rw��b�Z՚��p[�M�C=�P8��1�����H�_!c�RçS�I�~���a=��bR_�W{n_Ia�p�ɿ!�6�8��\C`q�s6��^��O������3<�nR�я�����o����~��]�WB�8v�P�xy�ɼ�/_R�
+endstream
+endobj
+
+744 0 obj
+1873
+endobj
+
+52 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 743 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [745 0 R]>>
+endobj
+
+745 0 obj
+<</Type /Annot
+/Rect [153.1455 382.3837 322.8495 394.6162]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://idratherbewriting.com/2016/02/21/bug-with-kramdown-and-rouge-with-github-pages/)>>>>
+endobj
+
+746 0 obj
+<</Length 747 0 R
+/Filter /FlateDecode>>
+stream
+x���r�6��z
+,���~�d2��q�N�vZw�醖`�
%�Ǐ�Eߧ$p���/�dc�������*
+������7J�#0񗍟]3c�W*|T\W�3I�5���*m���@%�_V%SS��De�D�_1�ҘH�3��k��Q�tnO� "k%�hK�ZI��S�y
��gy����QbEʢzA\�Z���ʎ��5{��^���~Ɛ��H�#��1J���d���B�f�@�4��K��2[)�B~�:7@��d���B�RD�娓zA��M�z��CP\U�0C���_�q�cW��	!�<aƒ��	kq�=�����%e����ʗ���07H�}DVT>2�_TG�k(*_=ЖLVZ�+��5 )�YQ�Ȋ�E���u�7�f���ޘd,�g�d�qs�����el`�o ��Gu$��%Vf���b,�F���i�"�d,��7��L$����۾op�+&�|�o<8�op�	��}�78�h:�Jfa��	�:�ʍ�07H�}DVT>2�_T/��Z���j�-�ح͕�a�5$R�#���娓zAx�:�_����aoL2��T�w��e!J��d���
+�@�ݏ�)2�X�1d�2���\@۱I�)3�X��r�I� �z{s	%��J�p�N9�\̾��ё_^�N.����u����o����5�%�ݎ��m=���\�5{���
+l�I��)���f���d�A�7��Ͱ`PL2��xe������Q��8&��LPUY�lf-07 U0(�8*��d����Ӄ2�
+�4��L������Zkg9��r�I� .i�2�JH$���xn�gz�d�q�T㾽���Wq_�MJDX���7��ݚl��}��\w����Y�l+��:��iυ�I�'P��R
+��0
+&ǭcBTҺ@�8�	�ƨ��z�QA3�V�S����u��3ᨅ�ʴ���eu�F��-\kb���L��3�O-��Y�Xa�s��pq�8�3��͟�o�ʯ�����ݶ'�bA�5�pN��4W��5ސ��i�Y�n��C��]�ɓ ���f��[_o�̾t�?�!�K��m��c�&�k�f�!hBK6�zihY����1H�8$�2tnfmfڢ��	�O@�Wa��d�dS��rGMa��W�u%n�Uh�
+�r�������p���bw�+3��U�X�Y���k0��p����.�sr���p�wT�7�(&.��N��#=���/�J��締w���>*�9�G�i9S�=(�n���
+�e�s����ja�9����ܾ�v��67�-���I~Ү}ӷ>4�‡1u?~��Ͼ��O���u�r�|�iS����� 	����'�ړ�m=�i5,�����@���29ȓ?�~���1��6
+�W��Q�ʷ���$Ļn�o�Z����r�_~�q�8#�]�#�3���Ly�R0t�&ϡ68�FI �)����W�.~��Q�Ov�W�ݵ��KE*Q9�J�7?�֋o�mK�,����5��c��X%����B�*��~j���`LTI��=��p3������f󜸹�{��x�9��\	E����38b�H%�x쒊��;	o��NbG5���}��n���_A�þ�3��!w�^ሿ�qx�q�tWƫ#���}z��U���n�A��o��0�s�
���'?��4U���P�˘p��4��Px�/��/�Xe��{s�d��ik�����߀.^�s?��+�
n����i�O~���6��j�-��.\�������Bn7�b7�	��|�k���5E)I��O���
+endstream
+endobj
+
+747 0 obj
+1794
+endobj
+
+53 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 746 0 R
+/Resources <</Font <</F2 509 0 R
+/F3 510 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+748 0 obj
+<</Length 749 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n�6��Wp��7� (`�uѮ��EQ eı�h$W�$�g6E����SS��}b�����{xSL�����T�
+����hw�ov�2,�GM�
+�+�0�����<?'XIE�WB8$��T�5��QgXX���H�0�=#��1"}�]�q��(��0��ﲯ�v9���������Fp��z�W=���s�"11��>��!�?*�J���(5֎"a.J�b�H�X�J�&0����!J�׊d�X��b1���#{�����O�*F0�|���P�rT����Z��T��U���2'�H̄��J��2W��t%F���ɉ���>D��9aEb&��,��\)��}�z)uW�%��Dq������P,��J�P>����3�H�X�J�F�!��vqW�\�9Sl���NX�:��:߮� �XH9���+�a��$Gw���[�����{A�PV	�oZ�RRB�Z2���a��x�"$7�^�`���w�����w΃|��A
��0
�8X��{�=zNh_��av��ޢvF���ըk�7��E�C;����ES}�豾�ϟc�
+:�"�ڈ�νׄ��%Rï�f4�j+Yl@	O�V��b�S7�>���p	�v,�T�D����t�A*��$�j�ū'$׫g+���H!���È;�m7���p�[m��=غ��E�=,3/�O�h��b��D2��zu��c=�f�6��g[*���E���A����S�|GЃ�j[&a2�Z���raV�	��s�OJ"(Z�N�������c=�������*�j�����"T��N���C{�m�o�i)��jH�`o�?�>��-��+�kUP��P�����(ưyBm?��]h#t�Ǝ�x�E�ը��š�M�Lf�������Pώ-x����9�kP�q)�	6ZIHA�
.
+�� 
+s���.)L�XJ� Х�v���1qM@��À�Љ3����\h���%-D,{���j�����"��	v!7��%[YQ��Dly��J-n$����1Ŋ3"Q1Z),5��T����:�U�x]DG3�u
+��ZdveY�}�Ⱦ�5b�g�{h���*t"�B���ȕk�I��{�q^���T.�?@��C?Cۛ]��nߦ�ZJ'f�߶U4�ES�����wmס��u��6}#X��*�n�
+6�v�{9�0�O�9Ϊbp�źi��N0Xjpk�rShz�f{�D�k=��������?Zh=�l��?�ӻp/��c���h@8�Ev�[�r����&�[��m��ߖQfr����]�0�ۺ;q���>B�ne��Sc���H�ʿ�h	��UU��o�Nԟ�F%����:ۣW{nn!g����.�?G7vo��!�Xu�����n0�/~�o�@��|-�ar��S�ot|=�Cs���	�8A�����l�͊��$���i�L�
+endstream
+endobj
+
+749 0 obj
+1474
+endobj
+
+54 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 748 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [750 0 R 751 0 R 752 0 R]>>
+endobj
+
+750 0 obj
+<</Type /Annot
+/Rect [112.5000 565.1769 205.2780 577.4094]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [53 0 R /XYZ 0 185 0]>>
+endobj
+
+751 0 obj
+<</Type /Annot
+/Rect [396.0525 542.6769 484.1685 554.9094]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [122 0 R /XYZ 0 189 0]>>
+endobj
+
+752 0 obj
+<</Type /Annot
+/Rect [112.5000 527.6769 254.0925 539.9094]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [122 0 R /XYZ 0 189 0]>>
+endobj
+
+753 0 obj
+<</Length 754 0 R
+/Filter /FlateDecode>>
+stream
+x��X�r�6��+�t:1�'Ad2�ؑݙ�2���CK�ņ����g��z.	R E'���$T.��{�HD��r����V����d��V<r�i-�p<��1kWB��t�Z��Td�dJG�9ۙ��nT��D�
+�Tb��B�H�$�GM�\$
��L#+&���I"{-�^�K6+�♬�,����vn��$r _n@���PGZ�F�#�1�Q�Y����b5"eg�{ I_��JɌ���{%{d)͜�AL�I�GC��D��0�%Ƽ�P��j���x?IBƼl��(��D:��{'܉�3�If�u2b�#e#��{ ����c���m���Cki�t��_Չ��G�XEJR�&zR'���@OI���kjaĝA
+��e0�z��0�@k$2�sy��QTo�V�:-��arny<q��*9s>�B��O�O2����h�Z.�:���Nv
+x������S�KY.$������-1D>��V4�����8�z:�̴��mW?ޢ�`�{X]|������kus�;3\v{��#���t��d�ۡ,���!p@��=���?�ۤ;�3�D��]V�#��iղ�f�&Kی����
���0�Sz��XYKa.��S�����6��h�?2�8����B{���}}h��&>�lP��c����Z�6CZ�&-�#޲�q��.�ѱ�›2m�b��&%v����I�*�?&`�1���m����va�u�"\^a���5��5uU#4���۬��*4��+V_�����Y����#y�Q$���k�PpIڲ|Ϫ�DG|.��r1:r����)E^}���{4G�ٱ2�!v�$�%���\��������a�C?b��C���VGV�{$�������e�zC[.R��S����u\E��,X�������D��OE�'Ϟ�Y(.���zw�t��!���T�z5uݲm�d��n�l��х��R���K/如2b��+����+Q%X�X�3-��bq�Y���b�ryE����az�۝ߋгiWD��f�O�9�+��qe�&��7%��o�ϧк�wX�hBg�U`����Fj��WZ}Z��I�m��D�����?$=(\,p���ʵ�\�n�����\�6�ȷ`�m�����n���uF���j���3(S��Zi,�Y����f��ܻt0�ƀ���2}p��Y��u85��!�(o�樇Q�w)X�Y��m�Wx' �N����k�I���7����G��Ng|�o���+������Pȵ���ῇ��-^&�N"�AS�nɘNh�:$��\�Y��IP�[Ѕ��7ᡛV����Qp@��~�*�����p:5m��0q�_�+D�$n�8W�1�Ϲ���|=��$ּJ�_ Cq�)��Y��-�ۗM��h��j�wd|�v=IAӥ�Ε�6TF�808��7`~˧S`>��F�����	~��Pl�wR�g�`H�.Zḿ���fp|���.���W�Ps��7M�Dg���=d��f�6o�l1	h�N�!?䴘R`ם�݁�;�����]h����N���1K����Q���xfc'6�[��pBz̪��ai����M�Fe��6�9�A?9z��d_�EAٗ=�m�9����׈Yy��=5���i��{����oC���\!C�_�3bP��A݈
+endstream
+endobj
+
+754 0 obj
+1680
+endobj
+
+55 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 753 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+755 0 obj
+<</Length 756 0 R
+/Filter /FlateDecode>>
+stream
+x��Xێ�6}�W�qS$�DQ��h�"٢����@���h[Y�t%*���M��OgHI�n�6�1�9�;7��#�M�o���6	��K/7��6�Y��B3��<��S��(�,%��,]���˹,�	���9�ʲ�;�Ҙ�$��h��1�O��� (�W�s3�����rnap8f<��o8������l���bz9���:��������@LZ�%�{y�ݗt�)d�a���<v4���E��<�I���x�&O'�0���x���d+�$����\df�KZ\��d+LAq�s�y�K�<LO���<�V�2������$��K�/2_��ώ]�,2O?��/��VNaz<C�BvV<Cw�x�8������m�s���r ��QJ����[��l��67��V�����{�yqg1������"�^��y'Yʧ��|.��o����;Qv�,+R���)�B�P�����WֆhC�|��;�';�s��(����Ľ$�m	&C���$'���crj�!��G�Qղ*�ˁ4;���eM�y�0Mu�T�{�K=��(y��VV����`,J�ȶս4p�Y;��AH�1T���ݱj���(1����O�0�c���j]�sע���M��D*�UI�(�X�b��s�ݡȱ��`p�v���|� ��d�gi�1;�݀@
��?�`��2c���M���U/1 "�WD���착"Eu ZI�w��~����H�ۦ�GpݱŌ�
+S�%Y#�򇒷�����K=~���!b4��� ��v5}��/���R�hQ��꿗g��C����e��ݼ9+���`����=�m^U#&D.�/p�%��Vdu@3�v��s�Y�ϐ����"/=���(t �ܛ���$��<O==HW��:��<��M�c;��2�.zH"��H�t�1A��cxj�EA�(}��#ٞ-ʄ-վQ��B�<����V�>���<��==8���H��L�Ƅ�VN��&`���e�BՎ���_؍�v`�j����j6�)�yD�c�8��C3[D%:`�#tu�`��(�&�I���5�~��A�#�rb� �s�7�����#�G�%�����vd��mIJ�S�o8�	��m��g)�60j9������:�p����9x���� 
�0��UZ횽�	^D��M�E�[��-���M`/J�\��m��C	������o	����	�#����٢MꝨ��1Ә'(_4�/�04�P�i�se����Pf����O"�$�U<�nh���q4.��ˌsi����*c�G��TF�g�@��6�ma9Prk��+1(�lT��,�X����!<X�Z�����|��]x����qU��L��8�Fz0��KWf��s�Ps�N��Pn����F}��g$~��	]\KX����i�@����V��.[�j������g㗷Z���c7@�1\Ӳb#�
+������v����;��*|�/�0� ��X8nݶ���`�&C%�[�6L0��|`o���Ǭ_�S���>���ӄӴ���^�{�%?7��8|�W�Y�湍&	���JkU�=�_AΩ���m��X�.���.Z�*W�ⴅ?�x�m���`�|�,�$,.�#�=}�>�߃I�uutu�4b�_����t�����&�k={K�^�<���W:�o!�`��^��&�e%�-,_�xLX��L����Ky����
x��$�[?����5<
+ȯ���0�8�py	/�,)W��1D)���̏0�
+endstream
+endobj
+
+756 0 obj
+1753
+endobj
+
+56 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 755 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [757 0 R]>>
+endobj
+
+757 0 obj
+<</Type /Annot
+/Rect [334.5915 167.5087 430.7745 179.7412]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://www.nngroup.com/articles/corporate-blogs-front-page-structure/)>>>>
+endobj
+
+758 0 obj
+<</Length 759 0 R
+/Filter /FlateDecode>>
+stream
+x��W�n�6}�W��-,�Eч4M��-]��������v �
�A���Q�5"me7�A�3�3���S?��l|2�SI����P=|[1�W��c�!�5�{�8T�㕊�Hj�HE����^�i9W^Ro�!���Km��ڦ�0P+7��3L3ʵ��sI�R�c�z�IȦR�\`-`.Rd����}F�"��0cm�i*�3ٱM��M��"�V�b�d�=C�ĵ7�]��U�7�3��T1O�Q����%�P,a�K)2,vi��KX�b�Z!�>�]yE-/KH�X¢b�#İkdϐ�o��Z@/�z��c-����ˍ),h���)���tD2�ˌ���3D�\	Z�
�9o?�gcb�X"�̈e�Dl�lb�1q�r����F�к�b��������d�JS*��B��e�1<�Ȟ!�b	+C�S)-��u�R�B�	����X#�]#{��~�YW�m@�8�
�9��	U�{(My��z[}w��Hw���Z���C�
Y�]���4g���r`��13f�Ŝ���������;E�V�y��[<Տ����sO��dӅz��8����m���>lsz,�]#�����i:n�ڑʗS��
+��$l�u3�y����ln���؈cw�[�Mĺ
+�T}-ac�N*y����{v�8�J)@4���J������U�(�j�\ݪ՗���
+�ȓ�2q��Rq2��9�#�Пڲo$�(ũ��R��=��%���H3��"7wX�+dyD6���U6	�X|���vMwEvmC�%���d��s7օp[P�U�]�7��6��,�Q8G=cb��sm!̵�ݒ��U�[~v6�K�d�W�SJ��@]۲L����o4���*.�a3���r���y���I�A����X��C>��\��k�e�<d��,b'͸�5[�u<�M} �>��\���.��'/��s}��]8�a�ou�i{|>��� ��;nB߇~q)�����!�wPynږ�}�<�̛cׅ̀�ì�p4򹙞.����e�=����q�.�?y��᭹̱y·�;�ְ�c8�tپ'�abip�����8�2�E��/���M�y8vd{ܜ��~=4���$*�=A��@��ن�F:&N�!U-������
+endstream
+endobj
+
+759 0 obj
+1146
+endobj
+
+57 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 758 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+760 0 obj
+<</Length 761 0 R
+/Filter /FlateDecode>>
+stream
+x���r�0��~
+BV��0�4M�p�@x�4Q[�cwgh������Uv�w:����������2�!W�e��� EL�h\v�<�\P�(E�T����\��j��H-x�K5A�Ҙ�%����1&(��i%j9�5�vDO~ϲ��2�4����XCT6Y�5je;�Z�Y�'J~d]{������޿��3�;5A���{%|�8��cA�]j<"j�K3�'J�X��EMSc��'�}�&;�)#�:�;:�Z�:�e8o���;9�(#�m�j�޴�eu��N��M�n��b����l�S�xp�=g��)�]�~�ɚ��ƑM`��|�0����&\J]g�GYb{��c��3.�\���$����+��F	�0g˷	p���1Ԋ���
�3�I{?��'�Ap
+r�%���?��P
+o'�SRSBu�.�v��w��
�J�
+�C@w�`S�i��S�
+�ĊB<tk�_x�A�@��yR���o��pt�Ch��ij�	z���
+���3�L�����DI$t��Tƴ�pr�f�㍒��絟XrY4����
Rr����\V��ُ4�� b�xyq(Kג�r�@e�k��	��^O� �{31�� 䴮ڢ:�i�]���9FQ�'Y�ī5�,4
�z��\
۱�
+y���$x���B'��I#!'U�4���F8�Z�ɍzD����Ŋ��RӳkW����&�z�HQ��ٸ��;:w;x*|�H�	4�R.���I����7�}ipMУ��/��\c=W�rͺu��d�6�	��숛�y,C�H�}p����OvsY7d[o;W�붨+���P!7M�=lZ�e��w�b��XN��v�>__9����+o�
+endstream
+endobj
+
+761 0 obj
+884
+endobj
+
+58 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 760 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+762 0 obj
+<</Length 763 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n7}�W��
�-/Cr,K�E��.���k[�.�.�A��>�E��gvI.W�M�%�rv�p��IYU��$��dt|�ph&�&J���M�Ut����1�RҫKK�Cg�-0#+g�J��&b$���M6YM(�l��Sd�B�`�s��A�e�)1_i���9�CFV�k�6��Q�
+�"{�ԉ�E�U���z�{j{�X�&�����=*��@��q���L�1���{�T,b�2桵d}"��Ҏ��Ed�X�X��Q�r֙�@.�-Ԓ��l�T�TI2���1[��P6VG�г��6�D�P/cE�e,wMf/�fl�P�o� ��S�o��Z�1$��X�rF	�N�bW�V/�'���z��v�@��Y�Z�'���]��P���X1��3���P,a�b��KE��jc��P���+�2JX�ub/�a��tZgMUVQ-�C���Kgp�SZU�Wۖ�F��}�4uV9�*g��ˌ�����z��A�6��-y߷u�we�1��B�-��^�H�>�\���T����N(�1]���O�Ҧ"*��R+�8cy3{�JE�T*A����F��
��@�T��NP�7�����wh1[L�� �q2��qw?�|D肼{�\�f!�TƘMiN7d�=�¢�쭆(S��B��2����PJj�}.�Z3��!r0W����b���&cJ�����49�d��Η$ͬ�h��lI�n�"��U���u���
A�!)��}o�˱;��Hڥ�|o8`�G3�{�2���(,�e��%�H#JK�j.�'���dJ����6/Iu�Y�<o!���f����O9>Z�j^�Ĩ��K��\I�엙�F�%�n=�$�`	�z�tP5m�H~bR���Ŕ�n3p��𤮌uu�uUCMA��_Yϕם��w���K���Ya5�&�"+���٧+7fj[5ڤت*�:�ᦔuj�T}n[O1-[��(n!>����˨�����H���-}�5iJ�朧LQli�Y��L��F���a��"h1jJ�B�mWKB�nI�C4c��N� W�/��u;J��F�n��|��{H��;�e���peuب�=O%;�����9���pC\=�;��Tv����J�tT�W?.�o6�xX�'�>5�q�b��{Z�.q����c�;���?���x�jƣ��9=�w��Wc�k>��]z`r�ߝֻ3��T#6��)���ty������&�����QdƴYg\�Pu�P�Ҕ��]E*\z;����)�VKW��҉.�}�l_5qڋ�=J�>V���nO�_���3x�=o���o�+gBu^�9��on��ſv�Bɒ�W͡��{�{L�w�	�`�k܌!�PA���VZ�t9.-�I%s��a���86����=�4^8����x
Lnv{�s�9_n.�uJ��|���)Y�ήλ�i�ߕ�߲�����~_.�Kb���2&P�9/$i�4�'\y�����@/��|9���8���3S#���Q������L���={�#̈́�-�D�
2��-�t,|�ǩ��]�����l!6K����5l��/ĬYu���DZ/8S�gƫo���6�v�pt��ՙ�%�^�!�7���yu?A��y}������/����6����
+endstream
+endobj
+
+763 0 obj
+1653
+endobj
+
+59 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 762 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+764 0 obj
+<</Length 765 0 R
+/Filter /FlateDecode>>
+stream
+x�}S�n�0��+��)CQ��Z�)Ҧ@R��J�̚"]������ӕ(��>��R���Ƅ����a�/k���P,+��m�aQRV%�0K+\����vQ3��+IҌ���nR�i���h�E��l���N	���^�?����x�λ7��}\�^,�;�g9�
+:���[D���@���x<o�u�
���؇���t��Q����&*w���,�zz�0tg&v��Ҕ0�A�G���M�d�]Hʜ�*����'�'*s%Z���+\��E�<H
E������:��p|+���d�S��~����|�܎����mv1�A�Uk�n�9�4�@`�Q
gF����u��	<��ũr�'V�l����_\�N_��Į����[Ys�F�<1GWoNv�R�Q��A���V�^��+g�#4c��q�1=�]�yCxYO*������w�⿍
|�v;Uf�=g��Y�ҋk�Xy�S1(?G��%{
m�e8�0^{�U$N�*d#�2d8D��%&EB�"�_�)��<�?���g'��܋��E�7+o�Ѹ8�<�`�q�YlGj�C>S�О{�#���|�j�'�ٜ[�V1ayR]�?s|HY~����fL
+endstream
+endobj
+
+765 0 obj
+623
+endobj
+
+60 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 764 0 R
+/Resources <</Font <</F3 510 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/XObject <</I2 766 0 R>>
+/ProcSet [/PDF /Text /ImageC]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+767 0 obj
+<</Length 768 0 R
+/Filter /FlateDecode>>
+stream
+x��Xێ�D}���7�1�_"��E<�(B��z잝fm����a?����ڷ��!��jW��t��:uu������)�q��l�Љ���a3�*r�(�R��� �{>�0�SyYB�s/͓�^�۹3�x�e^��x��
+/
��A��qI��� �L�r镬�,��$udqQ\�;�l��dA��i�[�Yy���lA���b�$)w�����-M���	ݑ��i�>�`����w��f�\36�
+�M���|��&�1+�b�������Б���
+ݑ8�M2��Y������\�%+�F16y4��'tG�ηo�v�
���<�s<�<�����"��]���U��[�w�oU[I#U�kV�{Y~����}w7�'~H�'�F�&^�#�,RȂpA��o�==w���&���xu�7ճ��L6�Z4�5�W��-E��k�9q�*�
��¢,#{ٖu_	��iÍE�7Lu��}[�'o+֨Nx��$�&z�����u䥬%!k�e{_�Uߕ��t)Z�IcZv9��ĞT�Y'6� �Q�@�Uoν1bN@� B1t�+�<Eg��+)@��V����wQ�"��8����8����O�]/+K���B�
+?�҂���H�)�� '��#��.���N��qapV̱{���R��5SG��ق0�-�����Ns�-'�p��(�����<F�>�g��#�{a���p��}g�n����GY�i��{Rv�Νx������Ԧ����[v���'U"�*�Gr
Dz�;��Bbt��(�Q
+W��2a�;U����T�9�N��a��Ӏ�H+�Zb@��u�e]�TC�2����6������~o)�S�?
:
��V���?��(J�4��;"M^�޽xfQ�(O-rf_�9�	�m����O ߠ�n�
+�����>�GJ�Z!�F�3��*���d���M=�D'=�Zv�@�7��F�MF�\�=�\�{K[T8^mV�4���**���.�Z��Yq�2[�5uJ3%1��n*�m�܀MD]�ZV@�l3�-�n�$�.����a2H�y�e)
��Zȅ?m*L/m�	��k#��X�����6c�NҾ�4��Ӎ��pj\T�~��Ёz=����H�v�JV��B'[o[m�
dΪ�����r�in���;+ʺUO�a|�[6�(���O�*[�h�����,ě������r������1�� �r&j�l�8$�k�N
+lrN&��.�O�����3����[C`Z!*�D���;��Y�|�kmؽ2�l�y�C�_���N@�����F�Z6��y��&���������Re+��)}���QaBo;�{?lh��*���C�G)�t%��*�~ZFY%�4k��am��Y.�h�@�P�*�;nT�m�U����Ys�xf��u���CL7�7��B�@�q���{�詴!r���ةfh�`r������ �ܟ���:���EM���Ft42�U��P$��E�Q��5�y�>p�Q��1nBv>�#TÄ�<N[!5���S9��Y�|�]�P���b��24>le��j���<�I?�
+�NzC�7U��{gy�/�������;�2�ҡ'Z�Űg�'��ۍj�cS��xL�,��p�ܷSaEi��X
�җ;^�~�\h�$��?,>l��N���%�DE1$L��k}��8�P����~������:�����s�R��9��0�a�d�d
+nB܏����~�6�k� �6w�+x`ߣ������X�&��Y�߄|wy
+endstream
+endobj
+
+768 0 obj
+1754
+endobj
+
+61 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 767 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [769 0 R 770 0 R]>>
+endobj
+
+769 0 obj
+<</Type /Annot
+/Rect [383.2005 327.3483 460.9950 339.5808]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/mydoc_navtabs)>>>>
+endobj
+
+770 0 obj
+<</Type /Annot
+/Rect [253.8450 255.2486 366.5865 267.4811]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://docs.shopify.com/themes/liquid-documentation/basics)>>>>
+endobj
+
+771 0 obj
+<</Length 772 0 R
+/Filter /FlateDecode>>
+stream
+x��ZKo���W��
+�I�{ڐH�#HatYq��ڳ;�>���2��T�tW�,g���*В�vW����J���"��'�>��	�msq���t��Wbe����aX�c�C�z����w^
+�LU[�HV)���^�菰��R(�0�t��"+a�փ-�d彳�����!��+a�YDXqY���e=��dU����zwjw�1�B��F�X@jD��+汄�<�0�2TE�V��t�0�%l�1�T%CD�$�h�#�e�{,c�dad5IgȘo*�?��j_Y
YLi]��D��?��FQ��N�ʆ`1�Rê�zF��	c�$��+K/Hց�B�
h9�
�b���!�̈́1b�\��3$fY3i��{gz�P�{,c`��Ɩ�F�S0���y,�OI�������=����G�ޗ�F+U{,!#�%��5ad5IgȘo��ZAq��ʪJ���ymT=�b�4<Q[_�	�r]^��d#a����HzA����6�.n|ᐝ�!�τ1f�|��.�a6��y�L�wG#[I�K^��>�=������0�N��汄�<F�>��U���kBFSϮk��j�ΐ1�>��匍�1@a��������N��}���]\~�6��~�m�h��խ���5K�m�m��[݋�Uۈ_��y#n~��t3���P�+���!?6����XlD����uw(~���p�Xm�����{�~��6��b�o�S�h`ip����c�k�Sw�_�^�]׶����%�7[.�{.(a ����jg���C������}o����^9i?�R��ڪw�9+U�r�?�b4�Z?��j߈ϗ����}iď7���b�����n>���7�fn\��L��KG_��}�ً��0rʤl4�����7��jB�g[�d{.Ww#�4DOh���dE<}���vּ��$L�X�����G׶������PO�
v)G;���ᇑ�pE�-D���t�`���I�/�@59��
����
+�׼�8�cy�7oum
�hd
͍r�^���~D�c%��8
�k��[}�+s=)�;�����g9�;�iw��&@Q�τ�O(о�;��,�h	�掷�E
+�	�G����I:�
h��Ԡ�s3�1PH}���#����AB��1a���<�RG�N��-zF"���D�,�McoYL�EǺ���7��fUo�|��b���r��cOZ�P��!M�t���UZ�6-���*$kZ���

{�5�Z�@lmt̫�t��"+a&:�T/�0SEI��XE:r{A�]N��0���3�eY��	���H��#]�'�Ń�q�TtC�����N�Z�p:�C۲�IJ�b��4���b/������t����=6m�wnw�"'�huM�(䓉4+D�8A�oF���hA.a�{��V�Sм�UY:!Y�E��8�5�B�,����f����&��7�lN�Y�Q�q�$��j�
��T����2�{v�0�?�@�c�.�<���R�eyt5$��[0-m^���D�a݂e��9FE]ҕE�,������Kg���f	�fC?u2���b߬�q~Xl�-��Eۊ{[:�lO�����Kl�`��qĆ��xYP�:�boa�Kk�
j����ـS���a8��UY:!�
#6,ǫH�1-:6]�E���&��7g���u�
sYN����|b�nr5P�B�:9��D
�
+'���'�t�Vp�k��ViU�5	��v54�NR�A��ôWyU�^E�e*�h�偤[9�*:dd��Yd�$�IzAL��!�Y%2���"��
+�VI�jV��j��D߮v�ə�@
�
+����4}�}�5$��n~����Y_��֨�F\C�4.
{��V�����2��M��6Z���~t��Lob��p8�x�El�Kz��?R�u�h+���c�8�'�S�n�?a>�n��A�`Nn��Q��6v����-��i�����,������	�5�$s�qY�����"M��|a���?��i�����ֳ(C�>��M�'̗���Z:����<�f�9���q�Fq(U���8eE�
+�c�$��\Ɂ�4��8O!���Y��䬟�Q�6���Z���`/$�Š�O��	��}����S��������IJ������3�H�K�5>ه���k��J��
��
�Vi������l|����ͦ��d�61�"�	EV�lDL���	.qQ�Ôկ*:dǓ�k�p<��N���$fY/�t�(L�!*�8�n�b`�^�?��,��y|�Yx���װ�B]�*����G%y`�V����[��z�N�!X`IWX��v��$� ���z1�����b>������R�|��h7/ź�eDZfX�>
+ӑ�P
kJ�-�"�X�;�t*�Y�Ҫ,�!낕X3,E�H�+:�X]K��E+Vg�9;����I_��`q�=�ϗ_{|=�;l���Ae{�����^|]�^~L��W�PJf��)h�ǃ�V�`�G�
+
��:lx�cT�0��i��7!��ʘ���s��ҍʕ9�|L�u�>&�e�X��3ĞKv�;���n��+�<)�T������4S�E�C��7�L�����|�OWע]@��o6�v�o�ߋ��Yi�Px��u���*�_%��m~yj[l9��bx}��v,P1�_�~D<n���v/���9����Z�`\�#�?��mW�e�K�?�
+endstream
+endobj
+
+772 0 obj
+2771
+endobj
+
+62 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 771 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+773 0 obj
+<</Length 774 0 R
+/Filter /FlateDecode>>
+stream
+x��Zmo���~�b?*����r��@bY}A����@��>�$ּ������L��ΐ�7�tJ�Z|ң�gg����]�e������;=}J�'�L�t�j�c<S��b*�B"r30,�Z������ƘʘҔ0&�\JD��+�Ә	Y���3�,)<&���G�\c��@c:�؝����W�V�5����"�&���=�F�|܎/�T=���\1���H��H@��K�R�&$Ql��K3Rx�4	{�D�9,V�c:3V�>��1�\��)6`����a�k�!i�1��^S�
+�Oke2�Sfi-��m��YfB`J9���{$��cQ`ż�g���s@�v71�21��ؽ���D2{,
+L�E�M�"׉���ޅ���M��<|��F/�$P��)}"ŴK�x����#$Rl��<��4DZ��Sш��M��Tn�G�^{�I��8�9ep8?��\�q�m��L����Ϊ�G"�=��|xy�1��aP����RӻlpH$�Ǣ��X$��!�q�H�/�]���D1�噵�i�~S:W��c�|*N��1���=B"�+�1�Y�EHk���b2Sl����X�ڱGHo��B�	i���� l%���7�`߄��fu����UW�m���������ga�%�V���0:����@�Ŏ�ٶ]E��S�[W%�[��C]�m�}<<�Mۑu�+�nwEC���^�"����{R��Ԋ�zJ[�ݭ$���0�Jd��ƘʸŊj@�mVz%�tc&��Z�d0�F�|����u�{@D�r�Z2=py�1W�v��Q������a��=�3�מ= �q��09� $�����j�ӯ�%P0Ը�_�kEߜ��NFƺ�n�]���U���.a��#p��Y�p^��o����ޅSٮ�j�GKQ+$z,f<~Cx�U_��>��oh��n�
̨~.�M���W]��Q� ��zw�\�r8x�f`�*c6 J`Tq7*���(�b3!��㘤"`
`(t�	�ܨ�=B����@:�Y��LbTv��Q���W�V�5���Â׎=Br��\�Fk���0f��1�:Ca'
+N�+3n1e��c�`BΧ0͹�7K٠(��
Pr�=��|'n��b1C�������͛��몕ҦSō�C��dˋrpߘ�̹�p@�����K����c�n�izė���U	6)��-�'�H���&�͢F���
:#�0y��|�E�\���K���o�
+��7H
na�1gZ�Z
+��,�	p��̧pt�P�ρ�YT��bj8�r����K��Z�;"3E���1����h��c�Nfm4h�b�K���ez4)l捿�c�aS�P��o����EO���/>�O-�?Tk8���&�R�*����m���{������j��:	�g�U�E�~��h����b=�����a:����3�_T��/������s���zxF��^��N�e�|�Le�
+�su@B��`f'ꀄ닰\
�et�,忤Xn�=����?�tQ�eOv ����|n1�?���,	���N@�������]S���]���^��f��-﹞Zx�W0�Rܫ��0�Q�oSpE�� "�Q��Ә	��R�8+�����*¸�n��!4pM���O
���R���
+���
�����cpuwy�{��#�;��zްV�IIϋ ��tc�-"��sqv��9���7�G<������������4�C�^r�:~��u��(�"�q�d�e���{T��T(�P��;�6EaAi30Ȟu��
���|���/߁�r��b~@�Ϝ�U)��4p[������Pi'q�i35j'#!�Pg�����O��y2�Z�rH_|h\���C�����:�=�C��誢$u%��?CO�WY
������J�ɒG��+h8H���/�q�u7�*���þ����������ũ*���z8o���`u�s�H��=�J�vX�����zl?7p����/�S��e.U��\�]��S8˄��$��jP�\�=nԉ��	<6��5���L;���O_�=`s}˗���p��5�xO�18�]}�=tY=�*��/{���v3�9���lxK
+�hR�ъ��^'F�,���vj_4�Ƿe���|��G@���g�M<�����"f�MHU�&�պ�~����+�)3�3��x����#�Ⱥ��7�����B������-����?�2ILˠ�B��P�UDY7��ܩ�Q
+endstream
+endobj
+
+774 0 obj
+2252
+endobj
+
+63 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 773 0 R
+/Resources <</Font <</F3 510 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [775 0 R]>>
+endobj
+
+775 0 obj
+<</Type /Annot
+/Rect [186.6195 629.1337 337.8645 641.3662]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://docs.shopify.com/themes/liquid-documentation/basics/operators)>>>>
+endobj
+
+776 0 obj
+<</Length 777 0 R
+/Filter /FlateDecode>>
+stream
+x��ZKs���W�QJ�6�~�dUY��RN�
+s�I������.,�g����ݙ�Y`����첈�8��t��==�E��v�
+|�d�O�d\�phV�Z	!+3��W>1�ݴ@UIs���0-���5v��FD&��Dd����``�HA��=#��1+��AWb�и3���tB�+:+a݊<",�,��H\�4^�)?���F��7�X��'�%�ՀxD���"b�E,b襫R�^�{FʈEl1�8�3�[�YD,"��E#="��&���M����*�+/��u
�X��iY� ��SS�)�*�t(�����HX!L�H^�^ "s%̺Ɂ��l%��Y��f>CB�0V��"d��@\�z��D��#��"F�������tf1�$_DL�R��G'�H���#��sY+�q�Ed��eMX�:��\o�e-�bZ��Zz;QmK�W�9��)}Hi4iMHG 	+�Iɋ��f��Y59Е����!���gHHf�
+aV�,��J\O����2z$�Y���J�F��;�w��.F,aT��^ E�VF�0Q�C.k�ۇӈ��I�F�(k²׉�@�z�x
��Qrp�+8s��y���f����t����{����]}�ƽB�*��-�{޴�o���)Bҏ7�Yx����H�>�t���r��=���
+�^WA�0ߪ��2�ߒ1ɡB��W���pf�R���dĢI����g��tyn�(0��\2�����������,��Z���C���`��i�Z�ԕ�Y�V]����	�{n��R�I�Z�7֏�@7�5\��4$��b�5�	��W��"�7U�^NDO��\t���_W�J�������]X��į�ژӭ���W�gLaO:3�r8Y��}&�i��|���l����
+�tb��Ih���	����4O��A�C�����ǻN</�bт��"D�J����C�SZ��e���+ɽ�-��П�-7��S]��y�4�5~6�V�%����e)�z�q����y"L�\*<�b�Y�v�Y���`���8����4���2p�����=;�
����}a���n�vM�aÞ�׿7�f_7�P��}�il]w�v�0��]Ͼ�7�N9�Upրء4�悁
4��>�?\�8��#��� 4~Ga`L�?�Ҡ��&"8AIhm�g'(
Br��P\��3b2W���⃰#a���X��a6W�3$��	.�v��Ğ���4�<�g_#���&Ɠl��EA�$��:ZV��)�<��axdm��ah6լ�)�sɥ0����	�'��=4�����ݡdX�_�(#��aR��gO�!�n����A�;Vw����V�$J)a��a�3���(�T.�-�:䈸i��:���z����e�[�/'m
+�
+qUbψ�\	��
ّ�0
��Mf�jZ�ϐࢳ&��#�I^{Fl�zI���2UsQ�1B]��(Pmv������ģt���)��M�z��m}��u���횊]�7�nV�ݿֵ�v�:b�n�Gh� �ĥ�m�f|6Gq���+c,W��i�>��Ip}AY��0(|+b�V%����+c"	"c��1�ĮAe�*:!���Jp%��N���؈׊+�*Rv".u�ܔ
+mF%�O��,c�+T���E���~T�H����4�?><���e�G%�N�k��wХ�kV�6��a�ڶw�C4
wly��,�-�Ӎ-t�mw}�iƓ���R�d'{��qˢ9�澎'^\*r����o:Ҭ
+G�Ԥ�L=�_å��6�#��.V�����d\n,�#Lj����\��ҕ
�-J�և�p$�C_s�#������J�Ќ���EFˆo�����Ȥ��R\$\�0���˩`�G�� ����i��4k���cb]w�M�?;+�]>��\�xel��Hv��14�����d���b?�������z=���b)��h:���w
81Z����
+*��EA�¿��)��8�sE�nkSI�q.�U�$�k"����N�#a0@��Lj�V%���"���+���y�2;<��U�	Y��Y�3J�v��Ğ��^�QȖ/$2�Q���8��Q��?�;�)	��f�h�|���IP
+�t��D��9��+�߆YW��~GkY`��Y\��3b2W�r�,&!��D�3���g�h'yM�yu�[O�XM/��D+��7��D��آ�zm�ݎ�#<���]��TnIo�u\�g���wk���	��}f�G{����������:��
�k��#\���8��[x�Ͽ+ ���>��R��琛���I���!����n�޵���.M�sj��(L'�9���yS���@�8�p���KF=�F3���=!>�"����l<�G�g���[����_R]~ɠ-��i�����ٝ�xǯ������*���2?��������<
+���i{�ߕ���b]
���0#4�w�Y7����Lr�
+�t$��MTx2ʼno�_1���/�}E����Zb9��A��AHaF�K}�0�Ӳ��x�X�
+endstream
+endobj
+
+777 0 obj
+2547
+endobj
+
+64 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 776 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+778 0 obj
+<</Length 779 0 R
+/Filter /FlateDecode>>
+stream
+x�]��N�0��~�=�
+�$v̱H�z0`�M8q�:�>f߈T�(���f>
�l:h�a?JͿ�b6�,�fM6�0Z2����P.����AAEE9ٶ!�m|��8��!�]������#���.Կ�^���w����e�ϰ��wL �G���>I�_���.!@����	|����n��
+�er����o�	�2v��p*�4�G�"(~�}{DT�
+endstream
+endobj
+
+779 0 obj
+214
+endobj
+
+65 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 778 0 R
+/Resources <</Font <</F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+780 0 obj
+<</Length 781 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n�F��+f�.3�!� �\�}��EQ @AS�ņ"
�����"��3$g8���GA@�p�>�}����C�W	���)3~i�����H�UIL��h�ܯ���3q&5�Q��8ұ���s��r�L���D�fxɓH�X������BLE���0&�XJ��acʭ�l%=�J`qĔ0�$3�"'Yc�e��8�c��KwnN68$[M�:�\M9,�l�>!Άl���i����س;��3�1I�-?x�b��H�s�F䌱�^��H`�Ks&=@�2�0�D�Jˏ�/y|�؈�16b�1��&���	���ӲF��|Y#���˚+��b2��F�԰ʛf���1�^^z��IV�H��y̠�b=%�w�����f��鱀�Qz�$N�7��;{/dϧ�c��1����MŜ1*�2F])���1_�^z����cC)r����^�mVO~�-"`�7h�Ǽ�^z�������N"�缦1:�����i2a��nWoo�c/�ݭ�?�U�WJ���o��?���A����c�m��E/��')���9�0�E��}�l�_��di5h'��X}nI�#�h�݉�]��=��9��2oIQ����c�0�*Zc9�e�q������MD�:�����!�������>orr���*�2�UTy�%E��}ђǺ��mq(ʴ���C�\�z�� ��Y��AQ�Y���E��x��� -�N�����GgQ29�>J�H+�]����]}켬��g�L	��X�>�t��H�;��d��@���p&�j�Ӑck������;2��s�կ������̒��ZV�1�>���>� ��Cz�G��P~z�̰��v��.*�I���L<���C&Y5)��{R��Т=��� �8��(�g�.!�mP�^%TS&��I2�QBr)�7SB1�|%/����kq#��H
�Rn(�Z]~X0]r�<�|)T�ޓ��o�����EO綮�v$�n��C4��v]�'x_�K�I|q�ז����Yj�žy,���B���e���!ˇ/i���:0-Z\ld��ś��/l�������w���A.������睷zh'���ݢF4j��}ȳbw�����Ӑ�)^�o�Ps���1��2�^�|�dC^z�A	����/�g;��g��K�#��c	KJ�%m����ٖ�M?G,�k)�A2���0T���3̽�J�#���Xr\�^a�X(9zm�}w�>����hBa��Z��G���H�a�y	M|��]����6��><�}Xu狞ot,�k�RI)l��QT��=�^�z�a��{y���1���P���B�{_���D�ܜ��W�_��_���3��yCi)�{�_�	��J�^+���o�4l�*{c�Aɰ��˹��
w���p+�l˙��J�[�~�B�̫�q
�
+��fY޶}����ǡ޻��͞t�a\�RW�4J�V�0����Y,�"PD8!q�0F�"H��;u=�B��5#���J��0���Y��Dَ���	^�Ǹ��eyL���$��a�d�C ���0�����k/}B��5�#���lȐ}�:A�ȧ���6T��+��ӂ�o�E���}H3���h��}��jp�2�*M��~�ܝF������^��xuCʴ�p�Wy�#i��\�k��t0f���[N�����	3R����n0Fe�,J����G���������B��G̤�\�אI�օ���K4w��3��
+endstream
+endobj
+
+781 0 obj
+1738
+endobj
+
+66 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 780 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+782 0 obj
+<</Length 783 0 R
+/Filter /FlateDecode>>
+stream
+x��͎�0��y��,hd��F�Eg�h��fQ�($n�!?U�,�����M�{�i������[S����I��,|�Pᡷ��}B)#�kM�a�Vs	�REo7*f��f�xJ2��@)'ZO�1��yO E"Lv�jd�P/�0�F�J��V`����z��!�g�z�{��Hb���It�"��~%sEr�DO��z����d�6���'&��G ў�ii�X ���.Q^"2�R�ԯd�X`��"K1���ԽK*։�J,0�XpYt�d=o�=�#�R±+P�[i�a_&v�����|�LdB�{!)�۔J#�x�;!Ow�U���ϰI���(��h�i/�����rq�&,�t�U�M'��n�`,TmQ�� �kp'�j,�o��;����j_����z[���@��wo����|��<ֵ-Q�u�I'�X��K7�����u˞�)wP���h��	Σ{-�
CU�} ������em(���-�CU���^����=Y(�����W�3E���F�'yߵζovLt���[��njղ��a�`�G��>w�����O��w�R��s;LE��W��2�=��1�]16�Q���\�x��f�(�e\'(p�18�~Ώ2>o��>�B
+endstream
+endobj
+
+783 0 obj
+625
+endobj
+
+67 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 782 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+784 0 obj
+<</Length 785 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n�F��+j��E� @�n'Ϊ�8d�&K2�TH��L��3�Hփ2�V��
X���:��UM��~��ӷd���@:��f��Me,�2��4!�~C)�丞��"!<J��]E��bܾ�V�[�E
+�*#\��?�4�\��>�P�,	�BLD��	��GJ��i�Ү��b#�������$�D��I�e����@`"�X�2�;7�
)6�V���Â���=bm(6OI�,���ޕ�3;�<��Ð�qb�#���˔.#6#��͘�2�R��x�.�H�[D�b�)Q���,��t�YDl�L�f��v�=r�o��S6xf
+B+|$��e]�i"�1y,7����͵�q�پk�ZC�6�W������I��٘��֒DF�BN�2�����t8���ׁ��D��s�O,��I�ir���T�jG^�yΛ�-���H���=�HN��.��u9M�x�]�][��#���!!F���M�OyU�kM�B��4�}��!"�bQў�rU����Fyݷ�j,����?埴1WƆ���Ͱ�
�·UMH.��ڶ�v;��������9����Y�o�s5�����Ρ�;�k�C>D��[�:%%R$6K����_�Ն��B����'9*���O��ũ���`x9"Nދ�݉ü)ɱ�~"�P��sڙpڷ�	�I�z�Sl���֮*^�6&ɩ��<ilz�YU{�������dv�RW�P5����C�(�z@J����E�GJ��㨋�FYJ�҈[ݬ��
������=�������0��ez�mf
+�L�R��Y&$,�׳��k��L2��H��${l�
+�7$/���<��3(0܂�������B��j�(h��\��CÜ�f$�N+t~#����/)��w���o1��� &�g�1�`��:nz�E��J�EfG���;Lj�����'c��v�p�Q�et-N
�Q��ñ�7�C��Cu����T��&?h�滏��<�T�Q��������9�����0$O,��v��=%�||A�6:�U�f�&*3��C���@q��'U*���z��lS�3�6�.�p��U�aZc���M�c��i�"��`�*+=@����`b�e1��!���l\�m�H��Z��x�,潶҃8�V��E����⠛�$�S<�����{|�7EJ��~� �w�^�.|%Axr1AL�Ǽ@�?��R
+�����	&�01��0}'ʀ$�*�vMbic*�x�=VS��T�a����t�p/�b\Z��O$y�8�*o�E ��j1�r���k'�#��t%�R���2���7�G{���ϟ��󺌈�~E�#-0<�5L�|�n�̠�׃i][9o�y6��
�XiA)Ѻ��c���?�I �U5����)Cu�I�,�����������c��8��J�S[i�
4�4�V�+���b�k+=��?�4V��Ҝw޵$0Gp&�$�%Y�:/�&�D�O+��J��'�]�����::��G4��c�N��X`�x^e�{�{Y�]]	���{��\�
��+�������v�=ru]	t]�+Aky�j"_�����ԙ�%�m�E�3+%_P�1K�W�e< *�v�oh���$��If�0&�]e[�G|�p��8�lqw�-Qކ�bgk@���Q�v{�z����(�pl�U�/S���x$m��{E�|�7��W�8V���xA)��t��7�t��!��\
+��Kd�L7�/����8����g����5��)���
c|
+i>�&ߞp����i?>��g���ICc�Y "��'ݙ�ZV�*91ulwը炊�n����&�۞=���Ǚ�s-,��5u���-u]���f1O�&~��n���0v��6��aT�?s��IJ����?��h�������9�@3�1�@��߶�}I ~�j���Pb[j3��-�e��O���5R�g(�愨�!��㣹�T$g;�p燻{R��`�����N��!g�����LkK���|���aʓ�?�����<�>��a��SU���"�<[�`����Χ�
+endstream
+endobj
+
+785 0 obj
+2040
+endobj
+
+68 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 784 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [786 0 R 787 0 R 788 0 R 789 0 R]>>
+endobj
+
+786 0 obj
+<</Type /Annot
+/Rect [461.9715 507.3483 480.6405 519.5808]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://ben.balter.com/2016/02/20/jekyll-collections/)>>>>
+endobj
+
+787 0 obj
+<</Type /Annot
+/Rect [112.5000 492.3483 296.5575 504.5808]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://ben.balter.com/2016/02/20/jekyll-collections/)>>>>
+endobj
+
+788 0 obj
+<</Type /Annot
+/Rect [133.5000 181.3126 319.7415 193.5451]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://jekyllrb.com/docs/collections/)>>>>
+endobj
+
+789 0 obj
+<</Type /Annot
+/Rect [112.5000 69.5626 282.6630 81.7951]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [158 0 R /XYZ 0 732 0]>>
+endobj
+
+790 0 obj
+<</Length 791 0 R
+/Filter /FlateDecode>>
+stream
+x�m��N�0��<�јڿ<�&�6�#̮h�(&����Ų
+��2��̯��1B��]���%S��O=5F���6�(2o�D�J��M^E�kL��|�/u���lWl�5KW۶���=���%T��)T	���H}B�V/?N�M�=O	¤R^��O�#~�!�ޟ��S��'�����B���M�,H��y�Ze��,�H	W����	-H�err�痛�L�;�a�]᰺��ؼb<�N��1�b��%�!	�/6��ʖC��+FE���O`��j(<��0�@g\�1��-��b�����718�x
+endstream
+endobj
+
+791 0 obj
+315
+endobj
+
+69 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 790 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [792 0 R]>>
+endobj
+
+792 0 obj
+<</Type /Annot
+/Rect [153.1455 644.1337 280.2510 656.3662]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://jekyll.tips/jekyll-casts/introduction-to-collections/)>>>>
+endobj
+
+793 0 obj
+<</Length 794 0 R
+/Filter /FlateDecode>>
+stream
+x��Wێ�6}�Ẉ[��.�-�&�m�����D��ʢ!Qٸ���R�,iU#]`W����9gfH�9���"q�O���}��Et�P������/�UI���QH�~��z�a��C�Y����q���ś�����3tb<���cI�x�:��?�乭��n��(�k��#m�M�/�����ݦ�8����:�a���	[c���غ9Eu~50�Ɯ!��>>���j(%5�$A�E�K}&�#m��6�����gU=�垞s} 1t�ȁ�E���A>���N��$SͨOwW�#ݗZE��W;	�
+������L�]����]���g'�n*Y��nRV�./3����\�>MG�$)הgR�S�(�Y?.g~�Y��Z�z���.Ě���yb��B��;������j�bo�Ȯ�j�j�OX�g�i�7v7Y�������-��A�S���}����ƟT@C\�<އ���J5'�{!k�K�z�V�N���_��LX�r}�e�E��T�Pg]:׬���@������I�d%t�J$�V��mR��Vv�QU����qĜ����Ψ�J̤�f��CjE�w�tT	���|ߘ����b�3�̋�7yT�%5e)S�*�S���M�pn�y��9#��h
+��3m���H��^f�2�eiТ]S�TQ�P*�4��b���%`�Bmg*��u������r��g0�T
n5b��5ĵ�2z����C
���o��T��~��J��H+6���Ѓ7r���1tF=i!EecK2}��������GAow���nQ�)
�+:��XK�IZlQL�,�Q�O5���Xk)2��߉���X��Ϥ�,��i|�&Z�U�1�o+S稔��
+�4=�J�ZV���%~���2�ѪLc�r����T3t�%Q�
��P�k}.$���uZ�'=���$�M�˾B��(��4|�8|��C����S�&.�b7��fɶg|�&���;4���3��Y���I�r�q�WM�g��J��������k9f��k)0�,N��3�u�N�9����at;*3��p�2�C���A�u��h_����E�Ϣ�͡/��\��b�1׉��Ǝe^hn����>���s�Rj@�p�c�Q
$�4��h���1��A<�3�j�o{��E�f�Yy���(��vgtq�o���u�YS���	���nN'U�K���	]���Y�E�߿��E'�r��l�
+a�X�
+ ��̼���,��%�����;B�}ه����6Q�,}oM�F�f��=��b�:!fQ��Ѝ�9�773������'�K�۱t�>H��f�>N�!L��Τ�́�n��޸�L�Iu�
+L;�Õ��сB�(r�ۧ�������a��G;Ň��
+I텞�L^�h���"�]�� ��$i�	)f^�1o�E�-��X�����~����G殰~�8©v�1z||{G��}c/Ksl��+z���q�R����
lvIxQo��j0�
32�6C{���x�7��5�`^�op���L�����G��q}��n�gB
+endstream
+endobj
+
+794 0 obj
+1553
+endobj
+
+70 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 793 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [795 0 R]>>
+endobj
+
+795 0 obj
+<</Type /Annot
+/Rect [186.9765 291.2486 296.5680 303.4811]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://www.jetbrains.com/help/webstorm/2016.1/code-style-javascript.html?origin=old_help#d658997e132)>>>>
+endobj
+
+796 0 obj
+<</Length 797 0 R
+/Filter /FlateDecode>>
+stream
+x��Xm��6������0q��1��(p**�m�*!U�Ļ	���I����,��ӱ;ή�(BJv2�̋��Gp���f���-�4
+G_Z�X��0M��8V�2��!NpJ���0�a@qD\��ǘ�3��s��3�0�a�?���dH"��H���	�ճ�sE��I��ϨM�����Քc�j�]P�Od5�R�b��5�FCΎ�\���䧘F�b�j���l�IX:�L+s0	c&v����Q|�����f�\�I6�� w1�����z:2�	�łd�X��i��-,KΊ��F��	�Pg{N:D��8��Q{���}z�)����{�UF!���x#�7ބA��*O�cD�-�֋�&�����}l�]�>-�-�~�f���#���x��á�M�4���’r��Nv=��;Q�Q��5:dM�z���Sn���
+�*/�`Ԉ�Y_��e�81L�#b]/�}/��u�Erߣ�l��Ϛ�����U�!@���)e[�#�>�!F%B���)IpȂX;]�1�B	X�u�Qͭ�\��j}�7�l��zߊ�hE�C��WErxy-�f�LU�`�)�| o&��sT&&o����J6݈^�g7%N1'p�0�)�ѹK��	���a���)�<������x��S��q�A{y~���B�U���� �ch�4���&t鉬�KE,�ʁJ��4�
+�|�'�C�@�#ZW��u�v;�Vu�OL��`��毮��>F��<����֭�"�T�)u{Dm�)��y]�w�ס:sCX���By)e77
)�AL��)	�e�zi��w@U�������W���Z+"�C�a����"�C��4�^{~�n4!8��"s��X��S+OQ��`+?�71��?�Νлb���5��-�7����R�vZ5*gE�C)t5l�=
C�~��,V^fm���K;zx�i=�4=�F���
+���]prL�./&3َ�-<�
+��+��,Ը�i�(�8��:>�<�ɑ�8�B%a���Fg��Тc���$�A��2�ej��$������HcY�i�	=��)#QX&V#,����Y[�I��RM̚}pdP($�1�G�C='_.9�ӳ��/$~桱��ec����֧����P�Q�>dG�[�my��È;����I�P5ݪ�g�R����'7L80+i7T�е5������U�~�?w� �]��cL�?��z�2^�`
R�1t����^}�k�X`u�f_2U�]��I�S�s����;T�z�p7��%���I}��na@����M�;�
+C�w
�^-f-�NQg<u+b.؄�wҁf$���r��O:�x�u�~���y|SV0�������1^>�ky��ع�������|z��5���&� ĩ9�M��c�2I٤�����P]�k��PJo���p�b���T��|���>�Y;���Mb
+5q����Ǽ>xݻ�Į�#ś��MV����p��ԣ��c/���U�o2����U#M/��LW�W*����|�������)�9��x��A�����a$(��X۩�1���5l,�J���� =S����;28�MN<2����ר��B�ѷ�^O�K�=5��P�0�$2��|+�p�S7D�w\!��ִ~�/�A��Q���ח��W�[%�	8�]��PI�f�����
+endstream
+endobj
+
+797 0 obj
+1711
+endobj
+
+71 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 796 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [798 0 R 799 0 R]>>
+endobj
+
+798 0 obj
+<</Type /Annot
+/Rect [408.1485 367.8345 462.7905 380.0670]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://www.jetbrains.com/help/webstorm/2016.1/code-style-javascript.html?origin=old_help#d658997e132)>>>>
+endobj
+
+799 0 obj
+<</Type /Annot
+/Rect [112.5000 352.8345 162.9765 365.0670]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://www.jetbrains.com/help/webstorm/2016.1/code-style-javascript.html?origin=old_help#d658997e132)>>>>
+endobj
+
+800 0 obj
+<</Length 801 0 R
+/Filter /FlateDecode>>
+stream
+x��X͒�6��)8��i6�DQ����L�d3ۿ��Τ�\d�^+�W���1{��%���iz�^lC��B!����7:|�6|i�b��"������!i��818$A�z�'A��À3���b��1!�����MȎ�L"��^@�g�]EHu#|���=��f�p>c��0]�,��1p����T?�d����F:�j�cd�=�&�Y���d.fk��9�ḻF6�$s0hF:���,�$�A:�Ӓ��P�t��٘c�m�I�b���O#�1#~Ƨ%S���,�α�ndv��h,���L�{ӆ���-{��Y-�C�ӊ��Ϗ�/w+N_L>>4�<
�M,I�s��1`�BK	Q�HkEQ2���љL%ԒM���d�!��a4�8a=�����!�s��LF�/L�F���322��A�$Ɉ��Ҭ-�����MMn3fd0�(S��Q��,�Yd16H��ib��lɦc1�[��A�0fd$�X�3��,C�26H��bl���L�ݒ����j�I
�m���6��0�B�t�],_4U�՛�h�q�j��1<���e���5����4��f�h�@�	֞��馸�ɧyY����B��Yh���7$t�}j�B����m��,�c�N�A�e`�-J��?&ԉ\M}���"�!����e�th-�ɝ@e�I�l��������E�͎����vWl%z�d����u���e���܈Z���l�����T����^��a���^��AN�J�ڨ7��*,+B|�	l�dLgh8�ī��I�(�>��V��{X�M1�{��ȶ.���jUZ/~�W��^�ϒ�t2��aC>t��6"���|����G��Z��p��d���=�~�U��X���D]�gvՁ��6�l�ު!�	�
c݋S��V��Itl�{u�M�����{P=��w��P�S��$���o�g�����~�H9��=��F���u�f�����ř'�^�oe�V��m�V@�9�Ko<!8tS�/�{[����Yjs�����B���i��������޹�z���'Z*ᮊzӓ����rQ`6D������5:f�Tgu��D��񺅫I��P����
+qD�,W������dw����9գ��Ի�_�Rq��j��5�V.�Ωi��]�yM�1f�$���3#�y,r��>�	��WE���08�zˀ�Y7�VdRuxv�M��"���v�D�j��&hM�E��<]����u4O�U-EkQ���n�t˼�pBa��D�=w�_�ۓ�|��wb����,}������á���a
��������D�~��j�˃P=Tt�JE��_����.��.��b��[km\U����~�Z�Z�o,M{�2o�QA���h�)�Ê���e&���(	aW�v���te��t����ڦ��s�h
=�h��,*8υ��C�A��j�V�����Z'��2W	�]�gq*K��ޠ�繟�����7����S=�#�%c����g�8W�q��D�,=r��G#Mq�`���0�.ѫ
4��l=CS[�g�FXyJ���aշ�|����e��D1�ڐ�T�����X@c�Р��o�U�n}���Q�,��{j��u�3������*�mН��G�y�^�\Tkh$�^ F����� .���	��j)�4�����o�7�N QE�����C���'<�+1��[�s�jT���R�
+endstream
+endobj
+
+801 0 obj
+1742
+endobj
+
+72 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 800 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R>>
+/ProcSet [/PDF /Text]>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+802 0 obj
+<</Length 803 0 R
+/Filter /FlateDecode>>
+stream
+x�uVK��6��W��i]��DQ,�=$�
��b�uQ�E�([Y=\��㟙C�O�����"y4��7B�Ǎ��-�Q��^:�)~�|�o(a�L���U0JbF��������b�}.��^ o�4�J�>)�����J�^��*ժ���˶�Y�:�A�T���S��w�����7fÔ�(7�����e�k�[�����&����Ol��2{�GU��JëҺl�=�����69|ls�F-ƈF�
+Km��gB#"�/4�G���>��
+K��>!�sPߴjz?C
+cܬ�|&�Um�|�T��N���������3�F���^���5鹖U5�r�L����fHψ�A��z���IC�6�Z5�㆜�(D�P��a�.#��}�g�~A[�O�*���Q�����i���~ÿ�#�� ����λM��7q_9?���T�X&�pѺ]�c�'^�Bk`=L��p<���W�-�`C�m�0����M����y>�GE��U�mԊ�T�Zc m5���e�f�'|6ԧC��x칻o�һQ1���Ք�����3J����x�N�ȹk��L���a+����e���9�:F0�v#6Δ ;�C���4�~,��H���K��L��$ T�͇�n6�@��	t�4>��y�YJ��9�����%t�
��$1&t�	�}�$R&�$Jd�v��%�Ә�BD��B†a䟔�ք>K�k��в�b�2��8�C�хpZ3�Qb�F���&������:b���'a ���)w�l-R&A�����B���d{��wS9��k�t�-"���}`�V_�M7W�<)�����#��P��P�v�npl-�������X>�K�
+թ&S��\��)ID��k�K�M���Тb���%+�M��Ț1~wt�z�k�]҄4�GX�N
+w��l����*���R:���8{N\u�1�{�w��a�P�]��s!R��;�·���U�k8*܆8��񲓩��#�%;`4���v��'������mv�ͭS�߿C}C	���/8Q�0��K��,���P.�_p���hT��齶
+endstream
+endobj
+
+803 0 obj
+1082
+endobj
+
+73 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 802 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+804 0 obj
+<</Length 805 0 R
+/Filter /FlateDecode>>
+stream
+x��W͎�6��)�iV")Qʡ@�ɦ)
+t��%Z�meeѐ�u���5AߧC��%f4@ �43�7?��$��[���+�<9����U�����4�Ry��"�v��cJ�A�
+����/ �I�i:�/~^/�}�[�4��f��rAxG�.?�$@��]\�2��k�����2�}돋7��nQ�IL/�i��E�h�BL
���A�痎�8�$K�\�{z��	�V)0�����Ks�$�u[��u
zٜ]��<#)�"]��J��F��T�5C`�ǟG�Spl�}U�:}@��"�wU�B����²'^�����G�`12|�����w[8���^5�(����,U�YBuy\2�٥,�L��0�	ѡ� �g��H�M	U�Y�'`�����,���7 ��I�<�<�U'��a��T�=����um#��;7F~�}�����X!��Vo�>#��lu�A�'�3(佬jTV���R�T���i�v�*]&/do�XM��CՔ~�'u��%TCF�����U[�ª���=?Kx�6+$pX��PL�"�R]�d�i��JC�X�>a]�&��S
ѩ������nH��莲�xc��@��3�3"�	1m�&�+�V�Q�rL�4������p���!8�)T�X�h��ln�?$ĝg�"�1�����'KI�gbs�+el9z��G����1K�S�8��T[����T���ӛ1ߝ�Ua�������Z����K1j4A�;��� ��+�O�������{�� ��H$�`�
+�y
+3<�5�� R�`�g�J#9
+W7�
ᆓ"�\��a��O�o�ٙ�W�	�9��)-���.�9�\���@�!g��9	��eMN��uO�ظr�ج}��x�h�7��X�^lb�d�����au�:��|���L
'�&��}����l��E��Zl��	���?�=�o�EW���E��w�E��I,r�D[�D�몸�7�<%<����Jk��Lyz_u� qjKV��)fA��Jɶ�ۡ�eqQ�x�s�����8ֽ�B���s�x��G4��a�����{?��p��ϏٸD	�C��e��ș>[zk��t��i�Bc)Xh ��y �%<��W9�R������`[�^�M�b\�2t�ۜ\�0�վ��9�x�Gc�w��An�hu7L����2�˟E�	��D���r\ym��\y�q��u���r"�a����%}��U�Z
+>#��q��|m����,��M˪Hr��0���oS�i����i)���
��X�	���
+�����%��;ըVU��תP�
��4[�b�؜��R<Y�{{�p��[����pװS�
�3��I.{�p�i�m�K�cdp�v
��QD�ؿ���?
+endstream
+endobj
+
+805 0 obj
+1402
+endobj
+
+74 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 804 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [806 0 R]>>
+endobj
+
+806 0 obj
+<</Type /Annot
+/Rect [239.6865 598.7412 267.0315 610.9737]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://atom.io/)>>>>
+endobj
+
+807 0 obj
+<</Length 808 0 R
+/Filter /FlateDecode>>
+stream
+x��Zێ��}�W��80$��^	��:p6dy1p$��5%
+$�>h?(���b�/�Pa�k�x����.�ɒ��veR���>�'@O?t���O�41�R�H��3�X�]eY�H��'��4��
+�y���W�V��
=����Ō@����a�����̮���w��ˎ�\~���P��7���O�Y�9ْ���J�D��T9���ߗ���� +DRHq���=���X?�q�j�S_��d���Tug�n���P�.���ċx�D�(�5-r����MXL_c���]9��M���n`� ��=�_�+�;)̸B��c���ܞ:�>u�w,��=���]��i��P�X=T�{��g����kd"�2�u�T�6�����'�"6�Dyذ}�Ud"#�U_�MY���z`�c{Z4D"$��d�"��y�u��\��4���V��d\�1$|x
+��,�.�2\;9�=����et����<O��S%��/�d
h6#�>���!�3��B���k
+�cs�֋��\&R��jw؟�},��O�vgvhҊ�kۡ����x׽}�~�ñk��.r�S���r8u�}я�S�9|�S
#h���&R$�,�g���rRb&�諁X�����2�c`���[°>�񒰏O�)���E!L?Mk�T����Xw���f��E�E���F����9�:�ۻ�X+�(2�����(B��yLH��k��1��k4C�%Y��R�0NfB�+��$�)Xy2W��I9�����0(��\�I����.��
+:8\^W���[��V{��(ǵ��6�#<L�-2�
+��i?�Z::�DH{���?�Gk�u�h�8
+�/8�Ycݔ�xP�E�����8~�I��/�
�N}{�S��W����u� �u�sU��v����X~<���y��!`��ics�z����n��<"���jV�󹔊x�����n������J_'�v[�
+J��oT�C��p*7lRq��~1m���v�<���h���%I�n��=��fs�x�+��:$���9����~`��z�ȡ�׽-�	�t�O*{�����tf%���aq9�׮OS��;�Ja�������]Cɯ��A�]�3�v�N�L%�Ŭ4�E��ƒm��i#��J>��nᦴ��r�~�c��br�w�w�^W�W�u4�[�$t��}|?�ͦ�>�A��"�g�j-I�4��j�tbԘ�#�$*Ci�Bѩ���d�^!%)2d�`Y�4���|���с�a��G.�Ȋ���cG������a���'�՞= �q����Z3�Βt�A��? EK�^d��R�R&�����f�Y����=ug��)����Б��&��2�Q�!�Je�p2�91��"�E�P9�hi",煓��#$\�91¸uY`��
+:8d�
+�:�Y��v�"n
�h-y5 �x'�̄XK��t�zC5����<(�����X�r�2��*J��m��u},hl�BS�1!�*
+y�&�FL��IF>�~$"����JaK�̄�W�J����	~��D�LR�= i�r�!�����|�3c�����a���'�՞= ��z-b�Z���@
+��c¨K��b��ЌCY���;/PZ���:��5�`וwJ��0m}���@�$��R,�d
+�U�IA��1�炫ˡ�$5�G��\�s�)�և����AN�:9�[�`�c�}k�Dk�"�&��"�hDɏ�%X[\����ܽ/?W4�#k��]u���W#u�I����Pf�Ԏ��H�;rۢ��<S�����(�D���چ<l*̥�Ť�n �B��/es�hy�bJ������B��P1��)RW�$S��~a�M.F��FF)�J9�с�aʄZ���BǮ���N�B-t�*�Bk�ÂՎ=Bnn��Z�jstc�r��\��y܎��ڶ����W�+�I�1&�v�M��)=�M�G+ie���
+����4{��0���g�\ގ�����,��t
��8�V�X
+���k]���`/��]G��Z}�ǯb>��3�F��x��Qy���f���
`�d1s+B��=���Jy���z,rk��[=�w��!r��5r���?����ݭ~��n��-�edžݸ��Oo���6�Syj���F��U]�F��c�����$�G�4��<`H��m*�0ڶIʱ$\�~t�07\xv������U���[��V{���>�����.���L��)9�냋o'���|���;T��;vw��YR8���=�$&U�l�f��\�$�x=��7I9���I�c���&U��t��w����j�����u����ב�םL�=Ǝq����g�����ޏޯ�E���]��]���.���.}fG��2ù�);�#,öZ)���}f�0�@yv�,�W/�;W/ϻ�[��r{{��0�G�q=�'�g̘�U
���
���=6��3���vS�CUڗX��0�{�����^?���j�t#BW`�!a�&�~�jL#�}��/�b�G�~�l����h����@o!�x���B�x�ʋW��_��t�� cwJ�"��-f�5�@uA�c�_�`M�l[����}��o��S_�#N�ZI�x�����W���f~g�?�?����z`�����	�G� �S�0c�_�ջΜ���\�1
+endstream
+endobj
+
+808 0 obj
+2702
+endobj
+
+75 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 807 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [809 0 R]>>
+endobj
+
+809 0 obj
+<</Type /Annot
+/Rect [213.2475 520.2055 322.6500 532.4380]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://github.com/tefra/navgoco)>>>>
+endobj
+
+810 0 obj
+<</Length 811 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n�F��+j���G#�=2���q�5M�$�)R ���gf���SdUݒC�F�%^���{��<I����2]�e�SI��}�f��ͧ�M����E���\�I&R������?�673�?GV�m�����5Ӂ�f��nϦ�aU]�ö�;6��×�Ov�2�4Ç*S����
���<ya�̓�);�X�h�/�gs�.VR*g�z#3��B����T"�4�d��U`'$'.���f����:c�γŊ|����W�Q�3�:�Rz�C�.(<H�4LJL�{�~����L�^"��R�^�i��?]tbDO���=�gV�M��~�~��-�k[���J�Ju ��"��y�f�[G�h�{P�K��h��Y���ǡ�6�ᖝ�{���#8�s���-������)����	Է����C5`���}�V���M؝U��'v�zjjs�ZS}5,���qu�<�#%A��2�� %4�
+��!�ԢX!��D/V�u6�k&i!4a-0�䲈0�������X���#L.�%��/V�G�|��Žaׁ���|�����A㺖���Q_φ��F4*�R�T��ީ�K��w�7�͖���Y4���Ê#D�I�_��!�ҧ3��n�3�t�2n���?�O}?��P�挶�)��o]ʰ����|;����6U�G�����6N��c� �w�6mC��S�7	{�n�>$vXvuќ�{�d��ʶ�7b�E��V�'cN.4���V	��Dz���<N�q�2�i�/���X{��ٷ[[���w箞�7טj�jVuo%��P�E'2�djN�Ӊ(��
+�D���,[�Z��qH�Q%�	�a-0�,E��R{+�N�$.�i|QsrF�L��H�Z,V�G�|��Žaׁ����J�h-
+�DG۳?���R�d�x�p�au[�#k�T9�f�^4)t��y��u@���`8!�ѧڪ$E$I�h[ղ8[3�/	oc�����w���Ap�$!GPq��Bz� 8��R��D�gI��&��[yvB$qyL�E���'�A���"�v��센[p�ZW��%�J�����d���5�m{3�����L���$�T^3Lf놚���v�,�5t4����Os��jE%����]_[S��d/��j�Uy�E>�c[{p@��<	��n2ܴ��zf�1�Vm��4��r]�@a���ˢr�0��:ĩH�E�be�vg���2\r��9VEVF�������0l�;e���a`��Ŋ|��r�Y|��=���;î;!�s��rZKFcDž�y��l�p$���/�=�0֝��f���Q@�h�}dc��~>{�#�W+�f�-�r�G���q�\��	��U��5���H�����;�%�u~4�)�"C8��{	�0' ���6h�D&phw6A�h������ O�sO�&З��g'$ȓ0�aN@Į����I�� O�Q�3�:��nyFk�
y
+�5Br�����dv曋;�!p�}�����r���?�?�W/��� �k�����K�����K~�p���j����<;���]���'s��C�����oY��D�D���^��N=�V�C�JX$_��R��!�9�h�3"�@ o��#D��0-��`a
+gS;]v�ي|��l��c(�aG�]{��<כE�֊�x9J�\�N�P���gm�߭�Z��
+���L��p*۽}T)���pG��7�AC�q6�H0ދ�p��p�G�*����P���0���|�p��n�Q�3�:���pGk]
�+��^��Z/�{y���fy��̊s��%h�@o�b��O��a��<�9�(2���J��N�s� I2J�H;���;!އza<do�t�r5����s��#��z_=�~v�1ڵg��
�4h�(V9Ŧ\e����Ѕ��.s���R �E�i��z�Rt���
+џ�3���.eI/9�m'�^O��8W$���./N�<?���w�}�c�]�o�Nj��S��En�UY���+��ͯ�m��޾�s]D$�ISe/������){��̀#��#�lj3�xQ�2��<��>�<0���<=#o��u��g�Hg�������~{�'��=K���#^��"��/&�ž�ʅ7�?VR
+endstream
+endobj
+
+811 0 obj
+2134
+endobj
+
+76 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 810 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+812 0 obj
+<</Length 813 0 R
+/Filter /FlateDecode>>
+stream
+x��[�n$�}�W��:شym��m@� A`��<�Qk5޹3�]�g�R�K��#��l�����b��V�?ͧ� �O]�4Ze������_ΤT�ſ�`[Th�wI@뮕�ɱ�S!	l*L����h�ԭ7�<����ddyfB7�ր�V"a&�;#E�
+��,Xטk��BC�d'�@��t%l}FV�,�W�/\��4���?��^��He�+ؤ�B�@<"2���XF�Z�Z����n��H���
<F�_�Of�0ug����cC�e�#���B��&��'�J9haӺ���ں�Vڶ�65c���J�$E�R���*1	��"�
+���:��1�*!%'&�I:R���*1	�\��+D���O������c�A�kxY��yX�;/��c�,Zx���$�
+�<����Sm'��e-�l;1�XF�X��	#���B��vq)�r�)�jЪq ��������7�	I�ۇ�m����g׷8V�+�1D�j̇��w<"w
�P����-X^��se΍2�
+�,|���k�l�B�G������m5�@v�0agӴ��Ɯ�+�?�ONa3��䝭U����v�t��|�h��7�J�i� ��F^]
%
C�ua�y�#1<ۯ��u/F��k��p�w�Uw]��#�/~���>6ZH��
P[�L�G����`��:,et޶Ay��B˛�����4����sC |Ra8z^ʪj��t�FONyڙc�NW�t��+)�
&�)��5��t�1�4�Ɓ@i��/1:9X,&F�tC�~BD_�J }
㝕 �+I�s/M����5���?�����lR�dz�D"�G�Ez�DC���Ɖ.� �?�*�r��]6 ��Q>�Ґ�7��	����jR5ٵ��X�2*��^��6�5��Bѫ�>� �81�YT�x*z�҄��+���2�iܤzB��V�Kb�K2�Z$OD��`��I��*�fZ��2��u���K�<	��DǓ�ņ�����xl���:'�jZ4�ѱ��y�/ڊN��H�S�ō�q)b>\ǔ�؃W����/}�3M�G5G)�Vj�>�D\Ah��c��y��Bd�NQ|Z�ȏ�UŅ��ƅ0����ފ��hg!7�
�C��tl�*s�Q��D�i|�3,��O'�	�#��R)��s�Ŗu��Q^L�e�KZ�|1�nlL��!�3r�9�h�B�F�_��Z�A�l�k� L�
+ϏX��ۄ�$�GC_�T�
+=����O3����5�g����6��а�+9�J�[^L5j');��
!��u-��OUi��y��dCk♝���C����>vP�^������>�cVJ�B~(ۥ�D�S<����q~����K����P%D0n4|��r��uH
+?�����{.�W��%LSˏ;jUǤ�����g�4��JT�����P�Yu�wn<�f�s�T/ƌ�a�=ߍ�^6õ閲���LI`)�9�����H9[��,��<�l�?�G�6+0�75f���@�'�H���F��,ϤwXSak�`W��U#a�R��M\�����bLC�z���;��X����Z0�"�h$YM����w ����J���&�\uhp}��N)nNW@	��<�o��c�ge�,紨�\a9x0�-e]��8C�Ն�q�8��
+�T.R��B4s��\a9�^��:p�YW�3[T0���W��8Ws��3l��=Nզ�"?�ȩ�Ęo�����tn�
+ˑ����U���-2w�[��u܍О�
+��X�*�P��WX����w֕���H�����j��q������үFx�^ͧ�x�n��[A#?,��֫��m��owǏ���n$�F[O����끐0M��2��?�d�Fk�g�DN	_a
+�����O\�	ZÄ�W,��W5�P�"]\d�$���� f�����;�����T^���C�1A���DQpz(�r;�PpH���[� ��;�6�H"����LF��FzLư��]�M�*�X�*��7ô�3f����@aW&I�.ҵ`�E�H���q���~���@�?�����g��m�����Y�EsX��~]��͗�~��[��D|�=7�����J0�� *,�K|�UH�=�P2���yY'�Z�~d�t]���b��`�����%��'������.�2;��N&���	1:1�F�a%��W�bm�de��R�������|]A����}�o��a�^�~h��|��-?@6�-��o_V���n�>7붙QZ�{?�a酣gΦ
+S9ް��^��������I��1������0c�"U��U0tM�&�D�&b!g�Pl�����XD#�jbgD��&����8�N_a����F����8����c?�@*T[��:���I���<�M<���a�5���P|��츋�׌v6�VvXFU�
++�B�8IQ��E�+�Up���Ap%��^��H88d���W�������R�
+�
+���+a�U,��jfgdv%��:Y��lc-^L:?�hW&��W��FuU�{�;����۬�
{$�.��r*}�� .����,�˅�K�$c�M¦c}��sk�ꨇ&��\Ƹ�%�RZ�-��EK].�j��e�
+�V����\��;��r5/�I���a�|Y���fTN��E�Z��z��|h�M|\m?5���DW���)_��_}p��gtI*���6���Do\�aW��`0fޝly&�6>E�`�RBz��OJ��eO?�Y_����O��
+j�������w�W�f0;�j�~�p���\�O�/=����X*��Ә�qʫ�v_������_	�Gͳ��b
���#8Y39)}u
�ʙ�E��`���y���j�\?��i����G��p������/�҂�z8��x����T9�MQ��]�\<��VA�ˡy����z��|�s�`�z^��5%l�O���=��Csx�K��qe{?9�b�?<��tݹ��{@����_������e}�W���侂�V!�e��Z���D���,����_�yv�Tk���f�$�����BiŻ(��k��~P
+LF�����1����Ҧ���+Ke�
+���0hL�.ߕ%:
+�\C��$R���Sѳ@pl*�аbo!f��7�L4�뽍J���!�Ե
+F:ҩt�v��]��gu|�Շ�G�����r�!����_*4T'�_���/�_I�.y�4v�`�e21�y2�U	C"Ŋ�]H24y�&�X���Q 2�3��&�SEὗkڵ^k=��J�ݏ����N�p4�,V[(`O��<�ƽ��ogC+aݤy�Ƨ���4�Μ��!�"�;r���9$p5��W7
����~�8��?4W����AUW�#�ۺ���1~�EXK�����-�7��j���?n�ϰe�v��=���	{�0 ��yN��'���
+endstream
+endobj
+
+813 0 obj
+3465
+endobj
+
+77 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 812 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+814 0 obj
+<</Length 815 0 R
+/Filter /FlateDecode>>
+stream
+x��WK��6��W��+Q��Z�iR�iи����msW]�Z���9���)Y��h��~I3�=f��i䰪"�._ӄ�_�-V�V�X���*#xI�"'���cF3w}Q�9Ih����e���W?oW?���<*�%/Yz�*hZ��6��f��>�v�Z����Vi�["{b��Ԫ��%jO~���}E�w�_�>[1����<�E�><#1������� @\��z_zs�+K��^�[(�i�Ja����(� ��k��UĈ�܊0ѵ�K���`�����Do
�u�{KGԤ��E
d0�|��!gi��I�HN+�ĕϱ�3�`yP��G�����o��|F���b�t�X�k���)M2y(׊
r�z� 0x���ߺ���8WV?��7�&i�D�<��	ͳ4�<g�8<� ��&��$�ʴ����]�'�J������^p;h_�(`�K�N��^B�	��L�\]+`鵂�U�V�h*����`�#G�v��Vwm�oF�)��YL̀�F�ᄅ�J���G}5XA_F��Z �Elh�R��,h4���,�x���:���v�m{!G�����
PƳ���u�ZZY�v1%�)��p@�jw�A
�X�荪�t�PC��A޾��4����!�	��c�� :�x��$��dz�~�q#k�O'�8��r�&_���~�_�U:�����e/!�w��l.��7J���?�>E4�B��ѽ�e.�b�(@�"��5�K��ru[Tet�����Z=��M.r��*�J�3�%|��IY6b�5=ڮ�u�p�0Hr3u���;���m1W �kމ����z^�GǗq���c,M��6�G�pP�Z�Q,�iY�On�&GWB��ĕ�ƍe]���E3�p���U6���1*�![�Nƍ ��('t�k��~�8j��}�bY�$�7ަ���̩��p����P�1���H�0����b: �[�5n��@sO�`��w���i�/VT���h\o���mX��$Y�6r�{�'w8���Y���Λ�7U���n���pMg����Y]�{�������\�
�j׷��:�s(��[/��،u-�yZ9��E�|��"F�d^!�KhT�h��(�?�q��p�LG5���K	c�Yׄ��ݏ#s1n�"�<����"N������w�Ch��� ��y���|;n��E�A�c޵�����m��b�,���pr ���GD�vQ�8	��lZ#Z\� ���
+8�H<��{����s��M�a��l�$a�e9�Q�=�n^�^������5��qB�	�G�"�h�T��Ɯ��eSK�����"�F9��C�"�ec�6W����-i9�s���b���v���h��bN��q��Ծ=�|'��!'���/�g����(��-�	�g�N��Hm(
+endstream
+endobj
+
+815 0 obj
+1454
+endobj
+
+78 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 814 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [816 0 R]>>
+endobj
+
+816 0 obj
+<</Type /Annot
+/Rect [212.4495 372.3483 256.8885 384.5808]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://github.com/tefra/navgoco)>>>>
+endobj
+
+817 0 obj
+<</Length 818 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n�F}�W�S��H.o� v��E��P @�&W"c^riE��~P�zf���,S��
�P�����:k�a�U�6����}oDÇV�6߭\�s�G������"'��h��r�	���*[�;�:����N�9I��r�`�$�'�LVB;nZ2�$3��=�dHX�_�Dq�� �����1�Q���q��ruLf����t�Xk'6��?jߊ�9RG��ĉG�pHb�]��"5H&H
2J/r"�Y2�/�X�$R��Fj!�8���6R��RZ0EJ��!�Qt�w4|��uy��<�P,��p_��l���SǷ���o/޼fw�+��	�}�zuklx3��<t��k��k#�6����F?wM��6�i��	V6�5���le�X��m*;����L�o�T�Daq���G�gi.Z�*��B�d��=�r��A�#�����h���A�;���/���boD{���kQo{����=aY#;���$���Jl��m^tK>��?����;v�b���t�v_��G%�@��R��vԱ}^(�)�;&EV2{q`�a�����qT�}��V�@�=��T�>�Y����Qܕ�Y�4NDX�t�q)SAHiG����N<7�_�[\�U++YخH��Ș��Բ���~ˍ>���;��&M�.��Yi�P���\R��Ҕ7ɑ�}���6��w���(�lĵ�1'׀H
+\R-�����u�ҹ�ܡ�R���+R7���y(2�'�-��FE�z�����ҦV��aT�x�Ү%T�Ԕ�9��(��沈�Gh6�i��]�;
+�b}]<ȶ%RT�TA��a�@ǡ�2+T�v��U�}��Ϫb�봙����ۆ��f[Y�V�D�/���A	���`�a']yVJ'�t6EQ•�'���:�DC\����2��ڑ5����d�6U��&�+���v���غq��V�c�΋�*�ut/(\v/ߣ^z�v�hI��IE ���Q�f�Qhe��R��k:�)�*�/T���.�u����M4n��T��
+j��<��h��jn'[U��h�p��d�55����h"��TZ��2��ţ�n�1EE�	��c��i��V�:o�~�����d�be�<�|E��Al{r�X?����t�e�Ii0�(JK)Z��E����^�msVo�`+=���ๅǍ��L(�:dM��Wf��������{�ƭtڲF�P� ,���N.z��8��t�zOR9(E��6����u�dy�{e�2��E�����u�sC��y��X����l�^I�;>Z�)6_�bhr?���%f��~�_�K�?_
+�w��_��Ͽ�5^_�B����H#s�C���6��{�.1������e�|��ã����p�L������)bt`�l�� ��_A'�B2;�m��n}v�G;Ӹ\!ૉ��� q\?I�m�,6��� �6��i���zB׆��!�,�ei1��{g�"��ۗ׬h�`�?c/e*�;٢�3o�F��1|/:Z<3�)�ʬ���&��]�b���d3l�����6Yv9j��db�-^���7r+v�
+endstream
+endobj
+
+818 0 obj
+1584
+endobj
+
+79 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 817 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+819 0 obj
+<</Length 820 0 R
+/Filter /FlateDecode>>
+stream
+x��Z�n�}�W�[���"H�� �
Y-�<���fL��B֟�?�鞾Ԍ��H�^ce갫���TuUüe������d��J�����-����\�:�Z�ZI�Hg�Hk���z�r�D�@1�:fDùl�Rq�*�u^������!�>�)�G�	����i����n��
U{6��!#w�z֌mբ��%��Y���4�s�p|��k�$�{�`��^�( . �Ul豄<��`�m�Vځv��e�z�`�d<�'k���=����<�-�X�:k'Șo^qA����{�jZ�ӧ5j��-Qv�����
lPWr!*z�ҭe�V�܉�y��F	����Q¶>�9���W/�D�`$G
+V�^�DW]>[�z��1Jٚ#��r������H��ϒv����D���+\x�`��R�Za��N
=����F*L�J�(�	B<����
+�j���F(d豄<�0Ra
+V�.�	2����a�4�r"�9z�8����.�*1Qz�U��!n.!f�
+��v���+c��br�[������!n.!f��˒���3�L��ޛ�B݁�
+�[�$�iͽh�z,!�%��u�Jr�!��X�`�2�4�����%dౄ��.X�:k�Ȉo����Q�
+�j�ts�^�������Ż�V�/��w͟�7�yڬ�Ϛ�/�o�*A	�0l�և:5����B��T��F8
*&o��vp'WW��]��U����L����kO�$S���"�2�0WV㫁��al��X������cQ%�����!�ʾi3��A��ز��ku��Vr-�6����3�y�z>͡��� ��6���y���ܙ�RI�E0�Υ��/Z�Nj���@��X
�q%��0,�TH��3��e0&�	��`���G���C�����u�m�9��	�f2���
cOLSc��̶�m��A�G�Z����.2�?�l��pK��)�[�R���jP���?n���yul6�fXw��oVww��#�Y����~���7_�O��c��>FOkt&P,���h9�n*�Az�:&�D��D+A9kU@T�Jb�Mk�+��Vp�Z�����O󪤝 ��ʘ���T�+&Z&B�]�#��z���-�Y3�]T�2V���	"��z[��΋��t�gًF2ܭ*߭�.�����fnF�fJ���W�q��N0�ǥ�q߯�/"A���
+z�fÞa�`�LZ��W�T]C��"E0�ǥjg�_Uϐ�z�1��U$��E{E�ܨ������K��Q-��+��h�G�q��Y~��"��7���[�}�LEM�
+!E�"U
�@��5%����l$�M���Uҫ�*k����2VM���=��������ZT$��E{Ef��u2�sSY`��Ƌ9!߭�f?���c�o�&n�L�4SS�?�ǧ�q<
+Ğ_k�P&�
��קǏ���1Λ��ä
+�s�T����+�|^�v��u�D��bV�B�N�
2��\��z�m�5��̮k>�՗dz�4*�4��H?����ow��T<|�lbN
+�����"�'sӊ�#=�'Gs��[}�sz����&��0;z����x��ꃟ��2PS-�Ӫ���V��up)����gPqԢ�r��+(��A������0�x��d��-'71��R�g����,�8�9�6�h�ꠜ��|�xL�7�����~-���!u�;Ǜ'B`�˾�Q���!ë!��7��Z�d��c�!#0�a�-�s���� �C{��Dq
�����>�я��h�����5C뽮Ћ�>tĪ%�6rE�Xx�+(QQx,æA�wsN�4���tZ�C9�$s;	���&��k����%���`a$(-А_Nn�>�eB��qYR��`�ի����Nm	VM�Z�p#T�EU���[Ɵ6l4=��wtO4�⥗��!���9#O>�'�7��H�hX���T�M�J�#S���ֻ��wɦ���7���F�R��/N�u���Dx+c��
F~%{����lh��N��a�y8�0����#��73�>��"�Y,���[,��^��,R�W����c�7�,Z�Z�~���/^���ux���j�/z�a�b��nfW�,����jl#}�FM��g�،F9�n�`���:4�ǧ���Ym�sO�����c��1�|�nɞ�Ʒ&3��ҽ~^�4���������حϛew�=|��b�7��,љ�/l����8�!L��f��{z�v��q��5�k�i~;��Ow���G����f��*Lq�9��^}�k��9ߣ�
+endstream
+endobj
+
+820 0 obj
+2308
+endobj
+
+80 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 819 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+821 0 obj
+<</Length 822 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�r�6}�W�ѳ�b�bj*U㱕d+�J%އ��-Aה�);�����QHizF��2#縻�}x�TXB��.�~R��Hy����]l�����Á1�H�ˌ&)�����,�d�2F�LSu�ci�ek�*[3�92I6Df>�9��MUY�D(�z�`\S��>��$�J�A&�CDgŘ�6=�Z�&X	,K�T&��D�6��U]e���I2D�e9xd�r�X�*�XDY=B�������ٻ����c��&��@��J#nj�Ȉ�sU�Da�J=�!c��H��u�l�X�Lk1ǘ��cC�>z��������	��7Bj���5:Q�	��p�#a���*����E�X�W�!z�e|YW@c8(�ff(3����E�XDY=B2덶�����1�/���U�e#�<3汨��3D����10�;�m��6f�X�Lk�����#d����5�X���E��[���¹z�Q_���ss���W>�7'p�k�~��f�	����fq��v���ߑ��.��]��2���'F~���&�w�B6}�T�:'���H�!?��*�kK��`N6��Ξ�5�˒T�����nB�_E���,j�WOvM�w81�S^��K�8����u2V�i��n��
�ITp�!�X-YW�&u��ͮ8lI����^l6(��$䇆O�=��%��O%��,_fs�2}W;[7�l�YU ������פ��=������iO��@b�{�xi�b����TOE�X0]�����Pވܰ�*좼w�ǡ�b�kH~ؖ�T��6�͢1]��>�°�.8O)2,���%n��ثE&	�"�w�8WަGV��c���D�FO�����sp�F��X�&��bd�.ug5���
+�z�BE�3T��PkZ^gT�H&$#��C�|���������i�[~;<�pw�;b�9�?�Z=׭����s�b�5���޴�_�߮ ��nV;��v��qM^������p���F�@�y�k�����ܸ�K��!�kf��4�k��j�C/���V���S�=��ݼ�i��X��F���An�Ƴd
+o}��#LcvC��遺�LgŠ�ަG0��N��13�xEM���[����XCU��g�AON�Ct*;�!� V��c�*
+���}@2�KR����D����10���x���9VMQj��Ѷr�lP+@\�EC>���~�I��[ݙ�q�v�{��H��q�\�|_=�'{�����@	v_~:E�9>Wչ������0kø�W�g�TQ�����_uS�\��{���f��ΰw����C����t�{���ɯE�SY�ͻ�g�g�-R���J�?��"x"����u�~tZ���-�n/K1n	^��A�A��KUP���d�����$�v�2�,�0A�+-a�ݷ�'0���Ubǟ�"�o"�t�3�]�����w\��C3v7���'��%��D�(	�r�mn����^Zo���G�-*����o�����^Zg���]����j�r��5YP�g�������������b�~�ض��61��\�1����5hpcY����C��1ۮ��2�:=��*݆�^ٻ���QKP�֟�O��|j$Y�Ba���]J�݈;���GK&9~?�DR�{�D6J���%�}k��B+�[{̮���Pi.��{��:ϰI�����ü�Ǚ~�c�����q�s�N��-����ǯR�~�G�`�4�"=c#��7�
+���P��v
+_3�	M/���[��fԼ�O������������b#��}u>4nQz��V��sK��?�46H���H�}��n�rǃ�$��XHsv;���пkc
ò��_��,�3��ؙjr�����vI�K���	o:���֮����Ϯ!���>}�Cī�`��޶{ֺZ���s�Ò?���j}^5��X��w�:�mQ,Z*5��?�[Kt8�O��?
+endstream
+endobj
+
+822 0 obj
+2016
+endobj
+
+81 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 821 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+823 0 obj
+<</Length 824 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n7}�W�1i�5�wA�;�Z	$�Cym��ŕ�H�A���?��]��ݮ\;�1`H8�9�9����]�<ル������_������""Q�����@:]���Yn�A$+���խ��~���x)��y�╶����WR�J�PKSy�۔���6������ΊH'��,gʛ��*Ҧ����|J@v	�K�*/�c�=��c��r�c��z�3�X!Yd/������d���#�˥<P,cH���⺼I�k��b-���U��B�v�^ �b(�1QIi�>�=d)�P���XP,f���uf/�a���X�֠�5	[�uf|��S����ʔ�TFj�+3дV9��:g��̌�����z.�2�]��!����y�2R蜱�23Vh�D&����z�T/��@���J��\���+�"#�Z�8�˧3�H�X��e�h��s-*��b+�u�r֙�@��6�S�8�Ź&Wq����K^�������	'�s��X�
+�$b����`����K�{~9{��sv����<x꥕�tx��-.ا����4M�ơ�%�I�������j�.OPJU$��/��f_jvw[���r����w����Uݰz��f��ްՖ5�uG�֫ۦb'��[m��*�&k4��y��Ƴ��L	�a�FO�(�M�a�S��K��FDuVJR������i%{u�;���KV��G��J��ɴ\��Rֳ�o���k���3ʞ9���#2q]�2��+I
+}\wz�k�[y4��WJwE��ϵP��J�� W���R�8�����, ���m��m��8����J���y"�A��n��!��Ί�L6>��i��[�8��zL��E��^ ��J6#�]��n�zv�;�>�����X�ޗ3JX�ub/��:(�����*�VNh?bV��~wS�{v��m������%��]N��qpK�
^w�7��}]ln�5S/؛�v�|"ƞ
����Z61���o^�ۅ���A2�(CSՂ*� |��f�H΃`� ���MS⑍
��zI'�m���ڶJ��g�)ѸHG�o'�nEs�"½h�e�1�"|�Z|�*!��ʪS�z$�!}1c��0�
+NwQ���+�cJ��,�!ew���e���@��B�����X��"�S��
+�t'�Űc\���|��}J���rz#sv�j�%�-ٕ�Oˮ�|bv������X.�z��ߒc���K�'�X�
+7��Zс#�_���G9ս�.��/v_��G��?�Ve+�=Dd��z�e��J�+|S�9��A9�t�܉:��64���Z'n�dS�s�Ԯ��TR4�^�@1��}B��;�I������N�2���t��R�hT�4��|Kׅr�y 1<V�)%}bb=�|\n9��z���
+dʸA�����G�%/c;����d,�G��_�2�BE|�>�׷w�fx�:�‘�'k�5�~m����p25P���V���e�=�Fbc8ӏ����S/'����A�����b���	Y=�SZ�������v���r�1n��8�溷g;ɴ~�P�,�R8��kv��b�c�ݶ��6lw�~�?߯�Ś��ʌֲ�Z�N�l���uUo����/^��zYo>�{�Oaµg
+?���u�p65���]�w�z�,l2��m�0�wˆ}���hq�>��V���UͬKf��
+endstream
+endobj
+
+824 0 obj
+1705
+endobj
+
+82 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 823 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+825 0 obj
+<</Length 826 0 R
+/Filter /FlateDecode>>
+stream
+x��Z�n9}�W�1�pxg3Hb{7�`�X�cGj[�Hjo�=�?svh�j^��V���d��U�Sv�S���±�'>��ᇮY��e�����*4��INde�BV�0��+U��cL��,��¹��R��U��& ˅rf�m�(�aʹ�v���E���c�	>$���dCB��dk¶��Q�P̂v�Ȩk��h5�ǟћ=/	B��%�R�������z�#2���^Zj�@�����"�"b	�����'h�^2UF, E��#<JX�:iGH�7�?��2���rZs��ʌӚ;E��
+���R9������dzBP�����D��!*�
+�������JWU�et2�!NF(+(΀�zN��Q;�D�"R	���Z�4��9UF* E���8a)�v��HG*B�
++����0E��# ��J�F�(���(&�,5j��j��
D�
������ۇ��q�}&��#Y�{r��'}KMC����Ȯ��lw���k�]����=���q�"������{q}�@�C�����ᗟAžo�=%�Z7�㶏���俠�d۶oc�m�������_�
i��Ӻ>����۩
��޾���͡'���(����&�ш/
���n����es8�r�X��C���
H��M�\�)��%�}hޒ�d�,7�f��>Ɲu�h�1���#��BIHh�41���r�0��V��IG�<��U�yqM@��FR�Xƀ�FSVUS��UQ{FD�1����+a�W�
��}��Uن���dk�@W�(I&������+煭��@r�9|H��x�4JGUzȒ��j���O�)͐��d�yLR� ��ݪ�<%�~`P ճ�TAe�! ��Y��W�36�an8N���H�C��UR�&"p(�A�o$E���SOX�#�&]	�.pƪp�I�6�ȓ
Y.���.�G�^G�q��%�e�9��͵T,���$}rtNWi:��^�ȝ��E�@�6��H����sl��&Yb�M9�a0�����y�V	�Ú�,0TR˔��0Pk��ð*jψκ"�-�F��֟g�.հ*�Еl��J%��uҞu�c�+Ո-�j��;,9.*�
={��d��e}<��̇I����������|C�
+T�]����{�{P�;3��n�&������0�j����M��a����S��]�u�{j�h��>�������/*0u�~<�a�g��v�
\�08�5�Ŋ����Q N18>���Tª�!��c��<��Y�b��%g[Ybq�(b��!��u�ŠJ����=<��0�m��m��5���$�æߴ{��`뮫���kkT =���;�}rK�)��|m�qIf�>U���lpV`��^��M�;r��0~��`V��:�'1(E�d���>��W���	�P	w��aÄg�a�T���R�͊C�s�H�=��%�3_�t^��1���O�M��cQ��7�JNZ�G?6��%+�<`6|�᷃i�)�JQaPWз�~��0OT�&��֯ ��}f�P&�1XKY
E�7�+�͈,L^R�Eյ�Q�D\!�+����҅j=�JA�W��d���L����Y._���?,1�?,Z�7�e���r¾�?,z�Xb�X��OM��������/D/��Bf^��E��YV�)<V�Wg~�e:�aH�b^M��)D/bN!1�9����������W2���a����3�â���|)9L]��܅�e�a���a�¿3��W�Sa�K3���|,Zd��e5�T�����Z�3_�po���ȜB�"��S�J�~;-�����b���!��C,1�C,:�2�9��<�j���8��E/�K����|���M��Z�����Rw_W�Ӟ�������f�/.��-�/me�.(������u趂U����٤��2/ֿ|��B;Z�>�E��ȏi>�c7J�
��cB8ŏ���;�o��@Ƿ0	��ֿ
�
+�хi)|���p�W
+����������6F"��{J�mf/�b7�lkvi�w[��o����E�R�Ŋ���Ja��9<�3>�X(��]�v.a��%�-�K�Iʹ-(k�jy_��#ʦ���Fϳ�58?=牊՜$����"Q!N/�MT,<���7,sUSa(��N��!/�;E�2V@��Jae�VRW���т�>�”�X��q�W�������8ܮcٜ�����~,42?l��g���0!�xcH5��?>�;v3M}rD��C����nSo��J������[�����\������*3���~��!��Г�f�tu߬ޑ�f��4�bo	tj�tF��Wx��7��ޜ]���U�|�5��>>T�����"W�˞�����]�W�SA�B��}C����f���
+endstream
+endobj
+
+826 0 obj
+2415
+endobj
+
+83 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 825 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+827 0 obj
+<</Length 828 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n7}�W�on��_� �U��0
+%E�m�Yi
i�&��C����Knֲ���0vq4<3s83�L1�t?�$���)8�ݿ�����VP(eXv��c&	C��`ɉ�TfK�&��%�v�z3�?�f2,䀨����3�
+K���,8VDӸ"j�J��1�
Q����(�#H�r&�a5`^U�	kG����q�sLcc�@{Ls�!"��k��ِQ�2�z����������;M�T˅b	3�[����X,H�XDr�"��X�a>K]�gH�X�r�+	��DvȒ�R�)�1�X�(bC֑=C�z����:h�����J5nkj���*/Lj��Z5&5<X���ɜ��0��+�g�"&uH��1	�ɒ�0S�C�dNXV�	�$��3DG�'���z'��J�P,aS#���>ojNJu�H���:a�9{�d�E,W,a
+����>KBK�z�P�Dz�Nؐudϐq����bA%Ϯ4|����؂���:�tk�o0��Q�kF�d0����Q�����w�?����h���j�"���j�D@,��J+,���DA�v�-�b8�bH�����kfJU��[,����r`��q��"0�I&H♘r���_����"���Ď�$�S�XH����-ݴL� z�)�L�2I���)�L/�I�2�2	��:�s���սk�u����8Un�SM
+%{.�ܢ��3M�ˍ�\��G�s�y����z���j�>8��s���a���{�n-Z���Ѧ�9�r�\�<�����yQը�nk7�T��is��Ͷu�v�������3�|�i���=f��W}��}�vk�x?����0?��������o����x�}Yq�Z�ri�E6lp��T\����	%��E�7Sai$d����3[
+e�uaB4�rq���QJ�F�1		�0�H|�]�����k����/J؛�H"�h�9s\��䡬5�)���!�x)�?!ʸ|u�۩"xW�>����y!�������<'6�J{J�p��fD�E��|2�k��\�$�Ɯ��
+[��,�l��q"e�K%���W�'~g���M9fp8�oV����4���k�A�P��`�h�t�e�G�x�I����6O�h�kᴇ�[�ڇ^(&O���?&-�(嶯X�L��uS�[3�E����0�P{h��5Zo�I�
��-��������3�f|+W#_:�usy��jߢ{�u��u�st	�����3�����8c�L'Ƴ�؇�q�١U�<l���u�E���@��iV�e�����a��Oaa�4pN|S�;dH4��%�
+endstream
+endobj
+
+828 0 obj
+1313
+endobj
+
+84 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 827 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+829 0 obj
+<</Length 830 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n�}�W�������aX�V�`0�����ȡ���#p����e�r��oC�,�ϻ7҇�U]U�.�ˋ��[N�*������_����O��B�eU7���Lj]H+��B��B��`��P�+�8�E�!|ZŹk<��P�:�:`u�u�a��3�		g Y6`'�3��\�(=����E<kĺ�hQ�2�y�b��-9�,�)x������c�E��G�'++=��Gf�Yi
+�D���f&=C2�yl汈Ah��?^:�m���r�1��ǼE�VG�2��}*jYayJk�L]}������ʉ)�d��)�ŭJGH��eČX�W��!e�e��d@�c�(�䉘��x��dn�XF̈e.��3�
+��H�?��B�%���G��*�5YY��<2�Dz��XJ� =C2�yl汈�BՆ���*��{�#3�y,K�E���9�U\��'���)�%�~�Қ~-��H��G­
+�.�q������@��7�?_�<�~��xu��
�����w-��C?6��#[�6���Ƃ���×=����p����OC�V�a�2�;�O?���kv����:H�_���f׵��a���m�_[6n[64����t'�c3��uz���)������=�1\�U�氤����W�#�������4�!�"�(݌"iK��&��!�1������>ǐ��H���+2��V	ŧ5Y]��j�JXB�C��UIzBL����[VB�E��V�3D����1:��(�VG�	�A�6��ԥ�#9&|�RO���lNJ�l���ɷ��K�h��в��Vg;�t��}W��m{`��9��i�B[d�ɘ��e��9�8�X3��q7|~�?('���G"�'a�G�fy�)�Y@U`Z�c̭��J�dv�V�UAzBD�0�b�&}��t�=�Y���hQ�����^̟�K?ɟ�E��[����s�l����5�}tu�@u�߸��"s�N���
(��fhg[Qa�/8��(�}���
+R�F'$!rZ%�
k<���Ӛk�0�s�3L�*�
+�R&Y���!^.�Q:*�[��Ȋg
dE���hu��d=K��+��WGUJ����E�,�J�ɘS�9��n������
+��u��T���S��VaM��P�+�v
+�2���0�T������NX
+t��P$�!\�)��)�ɢ�%���yq����
z�H�6�����%WR^�H��;�K$�o���&	>,#h��8���Ԅ��ɍ;i����/�
�����D
+貢�ёD	3�DB���ړH�����/�2a�S�:�PAê =!:�
+�41�	�>�Q�T�
+���xրAV�(�VG�	1/&Q�U?Y-��]-2;�'���Dx6~|`���etG�۟V�Kv{q�����44�a=b?uk�w۲��n�Y6'E��qQk����*pɺ���X"�=���دO+7��7tMضN�l0��Ymٸ�vI��3#~uۮ21^���4C�|9:����4����i�͸�l�q�Eu&�.^5������`��Ac_�H���u����
fQ��\m��]�L�7����G�!Dm����k�v
csX��p�n|�N��	�Gwc��:g��
+��x�RaђX�8X���C�}��3�z��w�a^/p?IE�7��MRŌ�t�7��N!��Ɉ�A���8��[#�c2����Z��FE_JE�cę��<���
+�h	��c燷������VN�>�|�+�>ߪk��r�4$e�K��ߣ,ߪޡa�o�B���U��Z�"�m��1����;T�[�O�zQ]|��Jo�]��O���8�<�|����\���ږ\sepY^��_k�[^k�]��(�T�
�ZQ^'��Y\^a�+>�`lP�VK��g;������ۖ��K�m�&�{{�jGܬW����H†���ӬPO�H�E5q�қ�@)>=�<7�(.�R�4����w��і*ŴJ�*���O��R)�0���0%MX�$��dE�+�������9=kЪx��@V8k� +X�vFOD��7<�znI��0�� ������l�`��ϵ�a�A��E��^�C����Ö���/� \}
+���s������ݱ��kzک�k��E�U�Zj�h{Ǒ��a�ݠ.�ҍ<����q�Y��^~p��N{Xu�u;]�Ãg>�U��݁���V�߮k��ػv���SfT8��6�Ɔ�v���V�5~�h�ѻE���l���|x.���E�ef�e�q�����G�<l���	IǑ��q{�Ow۔�,������i���	鿬�������w�_�F�a�e�b����&��)��IM.�i�1�u�n������?�Ϗ]�锘6j\��t�\��w�  l�k�����]��[����D1�&���A��jRL��O��|
+�7�?�����i��#��T��DV���e��@S�
+endstream
+endobj
+
+830 0 obj
+2493
+endobj
+
+85 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 829 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+831 0 obj
+<</Length 832 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n#7��+xt��Kqs������C���;#��V;�/�G)��&{dG�y�x����XmN����c�� E���Տ�U��攁�DZ�
+p��3�ǒ�9�d3`�1j��sI-@@D+Ź�e:d1�G�1��:����#c�\���SLPL��h=�c��bc��z3�X�Yg=A���Hq7��c��B�밐�t"��؀p
+,g�C2�:,di��`!K�Y�H�X�e�EL �<��Yy7f�AF�5X`��(b1�h=A�z�}�GN���4ء����X���`�HH�8Ca���z�$4G,)̈
��[O5��0iy��:��&k�Œi�"����0#6P�[O��z����w {C馌ELSmm��.g�C2�:,i�
��[O������J;��4H&�됌�K�:b1�h=A��怋��1r�ihk�ۿ�m�j�>Xc�8ҍT�K�������׆!��2[N��*��7*���l�u�y\{b��]U>��.����rC�Ů&E�7;2����/�U������Lg����,�e����uQnw�$�bԐZ���T^��CL\~�x�i7�	�+�QVR'�n�9�ڲ@[p�$\aŀ�
\b��ne����]�D�M�&De��/����JC��*�Dv�7�a@�5�x�ߙҔ��|��
+���`��
+���ȱ�ڠG�>Dx�c���[	b��H(�b�3�BSU���^W
+[ƍ古SX*�'ҙjIg���r(e�6�a�9aN!5UUB�Wj4���Ij��4�IM��$5s��*�p�&�`5�~6Gi��������7Tʱ�q��	���GӚiGk���z-˸��0y��w|�W_����D>=��j�W��ٍw��s`y�cxKM]`Y��C��s��nq֟o�
+B�*�}�r:�Y����-ތS#a����	���߁'9H�Pc�c�d�K�v��(� ���NUP5T�*��$v�7n��R"A܌�m8�X�0�VW*[;█���J�k����i]���]�9�ŶW�L���};�kh��l�P��VE|��b=��|G>�UY���C�����;RlI��'Ͼ����u��'�7�H���;|lwїv�����<��W%�M����X�75�қ�;'��vy��[+�V��6U2���(G�lw�����v�ot=
{�t�4Iꧺ����O~Qnk��&��꿼�׉Oi��π�2����[��#��~�y����/�泯���a��$6�����Z�!��'XdY.�6~[���_�yA��Q.�5�}�������pBh�2�w�{� ��i�w�
+endstream
+endobj
+
+832 0 obj
+1334
+endobj
+
+86 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 831 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+833 0 obj
+<</Length 834 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n7}�W��n��K��,�@��A�>�Q�֎]RYF����:�r���J^���aH����~��ȳ����J�h��ͮ=~7�\P}p�ZxG����d�
+}�i����&5�0¹�N�`��p��h���7�
+l��"ٔ��譥�!���L=��iʼ
+�=�3�,�Q�5�V�4�dC����b�X�i��z=��W�^@�/c�������₅�!Ƣ%c,��,-�!D��Y�,zk��E[�X���]@��J�8���h����X�Q��Y��Ȓ�o��8JRo�muͅ��:�յ4a����)��
+6��Liy�rO�s���L�T_):��6�of`���MSɵm+3�3�,��dC��l��YL넮��7��T�c���B����Q�rƢ%c,ڐ��-�3EG�X�e�%���l�k�XrƢ%c,ڐ��-�:EG�n�y��7Ρ���=�?�e
j��H#/g^q�Q��;~��|,��F�J��Xf���a1��z�kGo�X[u/�J+�������CTDEN��Dy���7
d���6����p'r��V��\IŵPVM��yY����΍�0�_Dx	���+�C�ă2����ay�p�5�R�@R�)����1�0��V0�-��YgA_�t4ゥ��ka�>Pҟ?T(�����'䏡P�\�;d���v@"�u����mo�
+J^t���ڔ�C�R�&ʳ��D�{O�FÁ�Kԁ�u�R]YX]z���u
+'8.������1Tk(����������
+u���	*S7��_��m$�AC��4�����`e�ȠM��5�!�j*�iB�oUm�+�D�,�C��'U�SK��W��z�24��L꤯+#�/SF�\ǰ��P)��ۦ{*C;���+#+C������=i�)#����w��G�M`\�&�!5��@�����$�"�/SEU�����BYӞ�4�A;�0gk*C��T=҄)�����Y��Y�?�^�	(�� Y��W��z�>�D��������P��1@�zPZ�UF��򒂫��ᬶ�3�Շ���b�׆|O�/�|Y.�\�<�K-���\�%��b��i�#���&ֲ�'�z�s} �R�`�`���D>�A�8�f��V�!'�U��N�P����q��j��;������.L����)�fF�ޔ�p��Mm-=��f�Z������j֚j)[�#�u�%˦Cd�4�:�m	ɩga}�L�ݻ���%@��E�&�d��XoN�o�xXڌ�SK����]w�I(�\:J�v�u�e�C�M+���!�/\�l�ӭ��q��3�qƒ`�����'���*���Y�`�n�T�E&�DJ�+���
+X/�E�.T �t���u2�p�O��㖝���E��o���z~Y��
B�4������T����f���ۧUE��uo��4������˗3�$k�폅=���n��}�w���k������؛�!���0��8�
�I���o?�'���v����rC��*2�n���{�}$?W���V�x��`��e�X'S��=��S��v�}�xC&ռZ�^��T~ �q�b6�ocīz��κ"��Yl�/�j����
������|�m/�=��B��
+�U�C��S�q�T'����"ɟ
+endstream
+endobj
+
+834 0 obj
+1662
+endobj
+
+87 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 833 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+835 0 obj
+<</Length 836 0 R
+/Filter /FlateDecode>>
+stream
+x��X�r�8��+pt�2�%��ʎ�Y*���sȑ� �JT�����0�3
.�HQ���*������������~��'g�T�����O3Bh"��/�4����cIaT���1�p,�E�sg�R��V�#�7r���a��G�
+�:�C�͗<´n���}���,f�W��3�Ǣ�u�����m\�p�[>��ޏf�o�A�<�c�[��m�ݶ�2��q�p%��4�\�j�=B���>�Q�zL����EI�0c2�X���uy�G���h�Nh���ٸ��w~�e
;Tay��`�_�1���\݂j:����DRL��r�j��tܮf���B�k���U��B�z,h��С�hQ�Y��
+e;T�K[��@������m��ֶF�ƾ@�_f7�΋`o�����N_mwu�~�9;�,��Ū��z���f�M�6�E)ʋ�I,��ʖ ����VɔEiB���ޖ��b?����<oաUQ��}Z��␧��2����6���އ,嶮{Nyc�Y�j���[Z��m�����J������KHo�`��[�t��P�x�PAʲ��m�>t�K�*��"٪h]�؃ݬ�@nS�>�4�����=�\�ncv-�q3底
+��G�%I0%(i"�WJ�K��"��c
+0"]�bB����V*��#Qk�X�L�J�������TsH$��â˧��=�����my�as�8�3���ޅ��\��0>�3��}Y�mY?B=Un��}�n*$X�#�#�
+0n�'�
+��x�)47̰��f�ʤ��0��:���X�;�:B�����C�;����>�^{��Mwd�$�B̕��	,��sG�z��J���f���*f8�z8O$�1O0�:�0�2!��n|�c0J;�^{@��Xϰ���|_�!"��G���l�#['�7��5�P�D�I�
�eb�3�y04h44�ٷm��f�ga�?�|�JO0�^�j����H��}L����!��%���Z&u"��n�a�D�Z�����뉐m�Nj9��O�>�pyd:%�ˇhW5܌�*�>�D%B��@WS�x�)tc��炰9��7��\��@%�~%��_�ol���Oi����W�i�;��Si鉄^�a�N.�Ջ�D7�-`��#Mr��ҮX������c�
+��Q���9�Hb����߾�%��p����õbW-r�i<f�f���1��Aŵ� i�b����_h���(��K�߅8a�u�J6'��i%�F	
Eu�'��p�Q@�(�j�C���_#D�]�{tw-ƂP��Kg���b���X�`C��ISpە�m��� K6)Ԛg���<��R�hJ��M)o��/��
w�)va�iC��K��i7�����:�{�0�������\�����l����.�nJ��]i�C>�̼s�Ֆ�����%�=��E��-s���%����	D���Ǣl�k��V/�R��0y��a��Sս<����_�y�K�K�K��ZߝTl�_r�/*w���Ρ��m������v�T�2;E��m����M��L���e���ڥ�ٺq�=y�n�z��`"8C��@�ف�iX�5�0cڴHԽ6��|n�A���18}�Ѥ>�E�������k�&r���Ҋˑ-��t=Gy
+	]۝-!��ktmv{gKD�KD1Q���}��Ƌְsgk���e�8l��n3��>�଺<,j�g�9d����
�I5+���-Ҽ�,O.�
+endstream
+endobj
+
+836 0 obj
+1766
+endobj
+
+88 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 835 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [837 0 R]>>
+endobj
+
+837 0 obj
+<</Type /Annot
+/Rect [112.5000 319.3837 329.0445 331.6162]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://www.tournemille.com/blog/How-to-create-data-driven-navigation-in-Jekyll)>>>>
+endobj
+
+838 0 obj
+<</Length 839 0 R
+/Filter /FlateDecode>>
+stream
+x��YMo�F�ϯ�6�2����`E��{�Xƞ�C�0"�
+ɑ �#����������8��r`k�����uUW�“�nS�˧�~URX@�c���n�&�(ê�H�Er��q��\$�Y��Dp�3�茾/��Ȕپ�Μ_�x��k&����	�޺�,�~��OR�4g�ˤP����<sk,RoT��`�"�Y`d(f�������%�.�@�g�yv���#����n�#�X �e��q�C*Ne~U��ԣ�";U�b��r�G)��c�,)f1�R'Z���(u��H1���y�H2]�>�]q
$V�"�b#�lD[�p�r�o�T�o2K�}��Di��|��t���5�1{�=��|�x��IW.��	ԅX��9��c�ZVy<�� �<������V��W��]=���bC�ʥ^���N��b��\�T[�l=y�לg�@1�E�y,OTa�۲�,���b��XP��Q{��9ͷ�jE_V�!V$R�o\��t2��t��s���1�5�=@��a0�!�|�'e��5�8&�j��!�z��ckԎ=@���B�����������^Cks��,u��E"�,T��|�y��	sX���D"�T��JQJ+f�H1���5j� q�]�nh$�%
�yZ�K^��pM�<e����7vξ��\�V��o���ͻۅ��
���,A.��fx"���>�}5���B%��O��he����nV�yߌ�o��Ć{v���]5�Á�#{�ch�;��t��I0pQ��9�	��е
#����!B����ՁM���,�?c�Ug�H�a�*���jl���8�q���'^��e�q8>��ݔ���cg~�o�`���t��N����?����#�������y�W�����p�:�n�)��M�2��y��ܝ9����v�c��ծ����� ��
+U��L���3��8M��$‰ݽ	7��3$hI��K������h�e��.rK��t����	ג�rY���[c�z#i<�
�b0��J��[e�$�\�a��VL�N���2[V�>8�ެ�:�۬9l�ڱH�ֺ�Ԩӄ��S������
+ϭd%�˱�Ʉ�QY�<s����������ݏ����g�s;��S�J�	��O&�<���X�
U���v�.�-Q%L2)�g�D�H�w�ߏ�6锆2I�����VI~�r��7�O\���7�r�N]c���Y	1;q%��o�;,K�t|���	,�����%��<�_�ިȕz{ք2ea}^��e����LP4���k���gc��]g�E��Y3�H�ɘ�L��o���q���&�2���m�����:{�������oگ�K:
!勰ߤ2<[	r^��Q��<�MT`8WL:���R�Hu�8L���'�m�龙���-��u�����
�RvA��Rt))�>��F���w��O��J��'eZ'�����Ex�$s�g�|ѦLa��a�܍��Ij��,�K���g�I�C���if���2A@e��^��]g�n����	��e��svD��~��.1m,�8;��a�{a�i��������T���њ����{����Ѫ�m����t���
�8�!�.��O=�6��'!��G'Iy�E��L1l�Yz�-v�z�hV�{3�.�V-�����_��,As��o1V��0/5��۳]3�s8�n��Ό���M�!�d��l�+���8���\o�M���LCDM5��kد�j��'��K߁�C
+��g��ibHZ4"�lƛl2��1s5��Q_<�,�k؈7mo�KJ���~`�	�`>?o#�9[�W[�@�rҌ"XFVvh��8KE�Ԗ���*c�o�9>��_����=��8ڤPʿ���;���ś�j{X��Zr��0n?��r1��iU��'x�.�0�<eʹK�+�M^`�ݱ�MK�kf�㡦Woյxc�b�q+�$���~�ܬ|0�Xc�5�xa:�q�D�zI�n����T���#�~�O���[���4юO�v�{�4�T�5�xn��aٰ��ۮIC�}i/����\�RF{��ݯ�Z��d?�u4t�fDD��C���LT��q�n��r���p��Sge��۾<rV,Yl�d���ɒ��F���Z&��C<f�!Ӈ��Q��C3���캩�����w$��sNh��ꀒg;�G�%�������`{�g����G�0��e��*2���HD�
+endstream
+endobj
+
+839 0 obj
+2214
+endobj
+
+89 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 838 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+840 0 obj
+<</Length 841 0 R
+/Filter /FlateDecode>>
+stream
+x��YMo�8����3~S��ql/v�Y��J���I�����9��?�J�(�#{3�$�m�&_U=V���8������O6|�J���ru��J��~�Y.�fJ�a��..��+��Âc����MFe�ք�@c̸& ����;��3A��_�'�����"8��ʄ5�E�g�!"�U�5b�U�(b�f�=A�ȵ#�x���C�?���R���LjI�h 9!��Q�X@f���t�#��Q�nƞ �b�)1��H���)87W, 3�F���"���	2�71��T
+�Y-���k���uL1�i����J��͸Ǝ>�#�df�b~E�QW���C��ϭ�23�}�H�sĒ̌ؤ�Ȟ r�z�������ܝ)1�q��T�7w��q��b��B�E,VgdO�D������4�~�k�R��b#�*6bI]G,F��2�|�u�o���rL1����o��a��ш$�E,ɷ�Ŭ��	�&���>s^�4�rP*'�l���&:0�r#����xG�	�#�X�����	�bΔ���V���x��TJ�o�cE��3b��"{�$J,Uj���!���$�)�T��%�9B1ޑx��uu���"AM��Kv�]��E��~w�Z��
k����~��ίٱ�Z��p`��԰�xh�q�p(�S�l[�i�����t�ەG���vlw~ܕU�����ݯ��;rc��M���βm����U�,F��~泵2�$�
F��e��'vz���\�nUN%��E�+����}��6��ʪkS߄28C*a3��b�d��ْ�V���-��
9���v�?��Y���fUq,[қ=t�I��)c8�E#\LF��
+^�v&�5�3<�<�o
4��K!=J7s�Q�&��!i!�;u�?��A�!oo���{���T�,Ց�W��<�� Wh�06��d���-��L��H#��1{^A��ۣ<3���K�%�]��W��1��"ϼ��%�t��`��
+�F�yQ*��K��}c��8/g����j/���xgK��s�Y����h�z��_��.�
N��q��n����Y�M,:ޘd�XH���Z��_��1mg�a֑K˩{��\d�pK�D.��t��cS�������h>��=�pYlv�'�jj�����o�}�e�g4�����LV�$�+�ٴ���躲��Fh@--ۖ�k��J������I$��y��K�ݾ��]w<,*�,n�q���,��,q��������k)�g�}�k���~i�Йu�����I-���J*��J=
+��)���HOj|�\-cXp:���%%m����[�^"�y��ci(ji��=�2?@�#���F0����{Q����z�D2x�:{�/~�-~��M�3;�#_4m罏W����"�t��=*��sg'ZR8�w�s;��~��ǐ�_,��ͽK��O4RjL�sz�z�W��/E'2�/w���1
+��x�غp*ј�.�c��;�??������Ӫ�奆oux�P��z�:y����;��X�/w���s��F5���������8G���-�7�3�ش�YS���ʡ~�o�V�7�Y?�!a�m���n��il�n(����W�[���u�z[tq-�S@�0������}F`}����J⮺b_%�ɛbфJ��/�F��H{:�f2ܩ]s�6�s���mS6���ٿ1jo��n�1po�E"���θ��Vo�|�U���zj;v(�i�
������Ԗ1� ��D1hД� �6DO��C���b��g�ļ�Ʋ�{��u��D%�fe��Ť�'���K�~��e�Q>�Uِ�o�5r�/e���5J_��st�~��+���G�0� �OG����2I������lA���~�jF3��K(%���܎��y���
+endstream
+endobj
+
+841 0 obj
+1893
+endobj
+
+90 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 840 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+842 0 obj
+<</Length 843 0 R
+/Filter /FlateDecode>>
+stream
+x���n��]_1}�c<��5�$�-� HՇ��r(m���K��>�z�^g�K�v_�"ut��9����*a�7�*)z�����j����A9�g�t�C���Np5�4JP��>�)��".�S
+!���\8=$�R�:��s�k�T�̸1��aJ�΂"�1*�0d�>�9�0B��Q�V\����g���^O�4F]�?����CJ��a�&�@�(����.mC�����ZZi�U"���6�@����c#�Q����TB��=�C"��0�Xo����8����r�O9	��$#V��`��o��m�z��ZI����~uw��\��)V7Oi��I����oI�>����KZnɳ��i���ɗ�8�i*�����g�.��ז4}\���$���:�ߏ��d�O�]T�8I�@�~![�K�E���H�Isx��>z�����O��EA���LvU
���RR�$%���,
+3n��_7(gO���<TMS�I�kk9y����U[�>d���,�K�ԲKB�.� *���jŸ��Zn4ל�1���(�9�|�q�%�a�!�:a&D��&n��n�Y x��M�с�"ƏKC�&'�"�j��ǐݐ�6��D]��x�h�h�1��w˒0���(�f����j��p�;�R]��EM����Ό^/�R'm��I����F��L�f��r��ER�����,�mD��w��,D�������;�ԭrJ*(���EA�qID?��E�\3�B�vi�������e*`�2lN� C1K��I�P��a�'4�s����O!�%�#ٜDA��[
ŮD��@��LK�u��$�
�.��F�0�b�0^ �3a�j�r�x��NH�x�-6?HMeN��6�:
�.fk�:��D�>A�[/�,xf����C��.��y"��$�4�'7a(kk����lR���3'��^2�To"�0eCW��7.�F&}ӗX� W�h��?$���9	x1���e�b�v?��P����!�^�[������g����{hbc���f����>Z�&�c"�xe
+:5�H�y�����Ih,N�H/�HB2uB~ޢs���'&0(~H���z9�
+&��+�A���Tq(9{�|��*������[�2�~��v)
`Y��7�^���_Y��a=f0����;���(��נ\+p��E�O�?Rd^"�U���I='~m�Ub$�MVe��D�6]�ݢo��|X!m}f�{t��Q��
Ӵ��mw�8Z1��	7Z�9��B��2|vH�J�2�F��>#����5i�߻^G�P7P
+�w����Y������2��.vRLt��ny��k+�6�x���Ĺ���g��৷4����������Cp��¶*�ۼY���(}Uz�œŶ��g|^"��{���}3�4�kG�%���/�~K�]+�kZ.
+�n2w��E���vP�����!UM����pl07������u<T�k�Z"ڢ,�)/����w�zQ=���/�H�a[��݋=�:��Sw��$+���sWW�A��5�^�X+�6I�
q��(�Qm�&��y�&�3����2v��!x�c�Y��+���iC� a�MZ�1�S�Ѭ�	q�1�q�9|H�{�Y�w��R��ʏ�)R��»��VO�`��K7`�ΣD��`���K���&�RtX�$t`��*�1���gv�Ş�84t�#�yS���J?\�*�Q���Y�䡪�CS��乮��P4�����CwvWC�!�B�:���>�"|o��֚����V�ekQ�ȹ����b����O��x��W5����U�Veh/���F%fZ\�
w�)ҥ���?�M��/X����;�7���;);�֊j���M��m݉� ��%q�&ώEZ��Oi�=�=f�5�c�]r��ɨ�*7�#��y>��5��e�o�*�j߷t
+:��C� s�Gl��*3�dCN��n���S�O��ɭ�9��Y+�[�
x�	;r\��~)��j���l�숃&�| �!��`�o�YC�u��?��a�&�Q���3э����]�
+endstream
+endobj
+
+843 0 obj
+2069
+endobj
+
+91 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 842 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [844 0 R 845 0 R]>>
+endobj
+
+844 0 obj
+<</Type /Annot
+/Rect [417.9250 334.0623 478.0165 346.2948]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [120 0 R /XYZ 0 732 0]>>
+endobj
+
+845 0 obj
+<</Type /Annot
+/Rect [112.5000 319.0623 132.7335 331.2948]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [120 0 R /XYZ 0 732 0]>>
+endobj
+
+846 0 obj
+<</Length 847 0 R
+/Filter /FlateDecode>>
+stream
+x��XKr7���EJ�`|��e�J2MǩJ�e+;oF$$2�G�ҁr�,r�4�@Ҕ��7c���
r��yY��Mw_��3��/���8�\P�����L*CdaZ�j5����:�"�dT+�A\��[�u8W�Og����̶D[A�Ol`m�}��|.�W��
+��
�4֐�=�0�t��r*
+���.{d�}��'�Ѣݏ���^�|�P9c�
k <?���[x�_c�%a���*
5>E��*M�}�Ču���`j���t�}ݦ�k,c��3�Ul��=��z��EɉNr�!�
+��&�$��ы�%��z{?z%H%��o@1��r�Z$���VN@��7?��?Foo�!�F�J>�+>V���c���h�e:r�ZT�(��UX�4�y0��K���5�����bT�6sD"'�
+
+"wR�'�Mj� ���AL�����V�GJ�R�ńc*�Z����9%xP՞SG��YSB�?\y�QBTA���!C�Ӌ	g��/��(l��(Tx��^��`�4j��`s�_'8
+�����#��������qL6GT��#*a��Q�H	=�:�� Tw������G��2�߲�����P��RpF�p����4�#�C[�G��sC���TbY��
+zM�S_���v�z��~��r��wyp�
+*�߳$<QC҄��JrK����8;"��8�W7�X$�n$�7A�md��+i
+S��o�P�|��dH6c{HE�ܯ�,�R�
+�7y�J�͝��39񇊧�Π9��]�=r�rMEw�o��S�>��%��#�^Pځ�u
�c����/�8����+,t�8�.U��r椑?Wu�
+�腰?,�9gx�����Yk�[���ܿ[2�|%����t3s�B[�\�}yy(FC��❫����l벪݌<�.
l+8Z�g`����C�j�>	���v�$2_�뢞#pGƛ�n��uY/6kr;w+G�7�����\F�'��,����ϗ�z�P�VC��WEy}���
���aK�]=�TQB���$�����p�8��8���qw�tE޹�����ֳ���H���
���c��k��.j���f8)�L_Aq���e:�|�F�,��J��rӬP
ةҨ^
�Hi�u��������l�ɼ:P��@�s5�D~�l���L�zu�?J�+�$�[�r��z�Z#��x+��W6SiD�7}
+�<WoId
+P(��&Nn+;[kq���ݕ����xh�e���m�!4���љ&��v������g%>?�z�N�l�ϕ^���;�ޕ��JN���j���t�9���RQQǺ'O��Z��ؐ-�����J��㼼s�b�]
��w��_�w-�O��b��?��Wi��ͬʁ*!���j�3d�,����ĕ�;d��t>�e��)Vc�lK���
+��(_�W�>X̐���9A�lr�8В!�ԭ׀��`����a�PQ�U�������L����8~$S��Z�6�C/��?�C�����b��i��e������is�i�(��k�pM��'=}�����z�Z+bK��:�d�L��,�5ypkW�x^�����N��"�q���	2^twqf�Y2��CVOh��b3�Mk��S��aߊ���j��8��GIQ�n�<�W�
+endstream
+endobj
+
+847 0 obj
+1652
+endobj
+
+92 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 846 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [848 0 R 849 0 R 850 0 R 851 0 R 852 0 R 853 0 R 854 0 R 855 0 R 856 0 R 857 0 R 858 0 R]>>
+endobj
+
+848 0 obj
+<</Type /Annot
+/Rect [152.5000 485.6695 458.0395 497.9020]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [7 0 R /XYZ 0 732 0]>>
+endobj
+
+849 0 obj
+<</Type /Annot
+/Rect [152.5000 463.1695 318.4210 475.4020]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [26 0 R /XYZ 0 732 0]>>
+endobj
+
+850 0 obj
+<</Type /Annot
+/Rect [152.5000 440.6695 445.0195 452.9020]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [32 0 R /XYZ 0 732 0]>>
+endobj
+
+851 0 obj
+<</Type /Annot
+/Rect [152.5000 418.1695 293.8930 430.4020]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [39 0 R /XYZ 0 732 0]>>
+endobj
+
+852 0 obj
+<</Type /Annot
+/Rect [152.5000 395.6695 228.3415 407.9020]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [48 0 R /XYZ 0 732 0]>>
+endobj
+
+853 0 obj
+<</Type /Annot
+/Rect [152.5000 373.1695 225.6220 385.4020]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [55 0 R /XYZ 0 732 0]>>
+endobj
+
+854 0 obj
+<</Type /Annot
+/Rect [152.5000 350.6695 282.8050 362.9020]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [30 0 R /XYZ 0 732 0]>>
+endobj
+
+855 0 obj
+<</Type /Annot
+/Rect [152.5000 328.1695 282.8050 340.4020]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [28 0 R /XYZ 0 732 0]>>
+endobj
+
+856 0 obj
+<</Type /Annot
+/Rect [152.5000 305.6695 288.2335 317.9020]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [75 0 R /XYZ 0 732 0]>>
+endobj
+
+857 0 obj
+<</Type /Annot
+/Rect [152.5000 283.1695 236.9095 295.4020]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [27 0 R /XYZ 0 732 0]>>
+endobj
+
+858 0 obj
+<</Type /Annot
+/Rect [152.5000 260.6695 289.6090 272.9020]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [21 0 R /XYZ 0 732 0]>>
+endobj
+
+859 0 obj
+<</Length 860 0 R
+/Filter /FlateDecode>>
+stream
+x��Y͎���)x�L`p����`챜
���;A.��H���-�����<P(�}���l��):ǀ�q���U�j���.L��$�'g������͟�P,�?�(-ӪW FbM	�j*jz�]$c�B�aXs�$�BĠ�%�ש���Ĺ2n���(08_f�@����T��=�0�j�Y�Y�3�=���דKZ�u�����=gI�4c�b����p�h'!�E�$c^�TX9A�T��Qg�˒��ĆI����m�4c�d��N�2�#
+�u�IR�}x��QO9�a��m�C��K�L��a�xOg�
+���EF�-E�	�Ė\�!��~_|zpg�������{r/�#�YE�C;Ea2)�>Dy�!����Sc�0���t֑7w����!Jv?F�8�y�B`��I<��$Y�ț�n�C�RaB�%�"s�f�@S����}�� �)���7�����I��]��\?X��3��o�����v�\	,'G�I�6B��R����>
+���Mȴ�;���,�s�s*��{��I1_�`c���ٱ1玔s��$��#}}1*��&�E��
+�4�t�tAIPͱbSÓ�*���_���0��ǘ���x�v�C�H�'"[�^ӄH7:�&'�9&@�����GJӊ)6t�J�#Oi��&hLhh�o��)�v����Gٵ��82�q, v?@�}��E1��:N�ɬ�aN��#
+�^�%�gK�n�8��OYZD��rj.鴡�b�R�:�Y�M-.k�����2�n����D���N��`��tJ����v��CZh���+�:1؈�# �N�%��$�	Y�p����ƹt-�Yt)-8������eGH�؛=�Ązo�	Z(��T�ܓ�-]Q��wc
���@߻��Ure=�'�c�4e�ݯ�Il�ّQځNt
�]_��&�@���N����&V'q)����Fb|9���$.	�
���)^y��@N����+����
z�^P���hU�-��bm��x;�k��;��l۶�oQ��uk��9��ԌC[����{����sS�}��c�[�=V��zx|}�>�]�}8�ץ�ߡ|�FU�dk�\CP�:M��&:�g���)��75����\#�K�E[��N�wg�Ԡ��>Uu�ވ�'R�'=���k3[N���h�:���갳�6o�j�\hS��o��kY��vT%l�ׇ��D��2ۉ��{�_����8�0B�L���Hu-��/�j�q[�R-��s���<M,�TM���8J�Z� �@�kI�X�jK�7�+�l�_%3��L�C��s����[���	��1��k��Z�%��k�������bەp��{)���#T�k��X�vx~N�� ���cz�s���k��XzX�	76ouR���Us.R���	Bx�'�P�=Lj��g�\���ͦXv�z�
2�����W�|9l����[�??�U�zB0,-:4c(6
+�|8��!���"ڭ��)x�*��.�)L)����8�.A�{-
+�y/Y���`"�e%�1�e�H� 2��G|�TNF:_A&��ѻ�ֈa��#�AV.ƈ���=�����հ��D.|�L��ϊ��-�|X�O/��D�o�߸����a=�;�v��=7�ξ���[O����No``��k��ۦ0���6h��ZZW+ط����m��?Z����	ֲڮ��m���MY|��'�1�p�XV[�e�����A�ա��'�p�g�̉��!<d�N.G2�6N4����xF�u��.�MCFY	2�6�Hơy���(	\e,p9�y��ޙg䈁.�XY��Q�Q��b.Gg]�e�.,�&�c.��FT
]��T�m��m+�ĶjJx⬫�}O��CQ�Q[�l�g]g�������֞?eѾ:��je��ӻ�70Z�Z��;<���s�����<;ݹ�Ok_�mW�uW���v���T������M߹�ֽɛ�<.C(N�D�3�4=f�A��7Z.����&�@�r�����V\N<��ӗ�%��[��u��GtoWv�(�~�hFT�s�GU�x��6<-�ɓ�?�||�Y�#��ן����a���ı[��6���x��
+endstream
+endobj
+
+860 0 obj
+2127
+endobj
+
+93 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 859 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [861 0 R 862 0 R 863 0 R 864 0 R 865 0 R 866 0 R 867 0 R 868 0 R 869 0 R 870 0 R 871 0 R]>>
+endobj
+
+861 0 obj
+<</Type /Annot
+/Rect [152.5000 457.8123 445.0195 470.0448]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [32 0 R /XYZ 0 732 0]>>
+endobj
+
+862 0 obj
+<</Type /Annot
+/Rect [152.5000 435.3123 318.4210 447.5448]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [26 0 R /XYZ 0 732 0]>>
+endobj
+
+863 0 obj
+<</Type /Annot
+/Rect [152.5000 412.8123 458.0395 425.0448]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [7 0 R /XYZ 0 732 0]>>
+endobj
+
+864 0 obj
+<</Type /Annot
+/Rect [152.5000 390.3123 293.8930 402.5448]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [39 0 R /XYZ 0 732 0]>>
+endobj
+
+865 0 obj
+<</Type /Annot
+/Rect [152.5000 367.8123 228.3415 380.0448]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [48 0 R /XYZ 0 732 0]>>
+endobj
+
+866 0 obj
+<</Type /Annot
+/Rect [152.5000 345.3123 225.6220 357.5448]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [55 0 R /XYZ 0 732 0]>>
+endobj
+
+867 0 obj
+<</Type /Annot
+/Rect [152.5000 322.8123 282.8050 335.0448]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [30 0 R /XYZ 0 732 0]>>
+endobj
+
+868 0 obj
+<</Type /Annot
+/Rect [152.5000 300.3123 282.8050 312.5448]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [28 0 R /XYZ 0 732 0]>>
+endobj
+
+869 0 obj
+<</Type /Annot
+/Rect [152.5000 277.8123 288.2335 290.0448]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [75 0 R /XYZ 0 732 0]>>
+endobj
+
+870 0 obj
+<</Type /Annot
+/Rect [152.5000 255.3123 236.9095 267.5448]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [27 0 R /XYZ 0 732 0]>>
+endobj
+
+871 0 obj
+<</Type /Annot
+/Rect [152.5000 232.8123 289.6090 245.0448]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [21 0 R /XYZ 0 732 0]>>
+endobj
+
+872 0 obj
+<</Length 873 0 R
+/Filter /FlateDecode>>
+stream
+x��W͎�6��)��-��HJZ-��n�������^�2m+я!Q����@i���PE�Q�{��og�r��4"��UF웜�<f�L/�Z�X�mW$bևR	�0IFlw�8Pb��~�~_�#��^��.�^�|�N�A�O7�˦Ppn(��P}�^�>���ʝ���սI K��|�����ta>��f�@b<<%@i��DX+�/�̈́+�~�f�cb虈�c�2YM��<��G�ʑk���B�g'�Z�R�|��V~E�v���q.h��I�������s�%��f�E\������A�<?�?�'�?�x��T�P9���7���E� ���P���ߗE�
/F[F%U۞����X�eGt
+�~�eUm�܏n�CY�@���!G��i�?��*:D��v��.�A��Iu��h�~Dq�v1�L}�N��p���P?#M�Mь	��M�(���$"�昌�L�Z+�Rg3!�B�~�Cr��I���Y9v���0� f�1%��gvɭ���!�5��0�W4{Ϋ��=�8����V4GE�E�
+QJ���j�{h#���V�*1S�`VI\�.�\�3�㺯O�:?���,��9���d9��{�����ۗ�5���AnG�s�u[�������jP�&�v����K"��C���T)3����߆�D)�!͜�<�	-��-�j�/ؚCo�'7���y�7_4�'U��R���:�j_�Y#T%#�#�f�H�#:����h>u,v9��S�c�	�Wʔ��vdž!��Ǒ��=�332�8�"�㙳�l�O���U&�4��g�8+���s9�*�mQ��Q������V>����ru�nE����#�q���>����a%(�#4�⻥Ə	�x�]�\6کk�l�~uJ�wm��\k�-L�2�m
+�֨�%��m�n!?�TޙfEiσŴ��du��2]<�����4�:�V7˯��lyP��je�4w�u��hW�ݹű�ߚ����϶�j3��u���?pB�Js*m6���3#�m���$�t����"C�ֵB�S����o�keGϩS��4��r��K�����Ƌ����m_>W�|l���w��ʎ��:P�yQQ������Q����5=�t��Z`���^=?궫a���p�+�K@�p J��K���x�H�t�Tu����*�/W��'��f��{nn�����/%,�$"����MB�i
+����XʨۤQ
+�ӱ\^1%!ӻ7P�X��jT���n�*�*Y�Fhp��X23�W�(,~���Ю-Ԥ���}����x���g�Կ
�/$�������w�@qf��s�
+endstream
+endobj
+
+873 0 obj
+1360
+endobj
+
+94 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 872 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [874 0 R]>>
+endobj
+
+874 0 obj
+<</Type /Annot
+/Rect [133.5000 367.3837 284.2170 379.6162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [70 0 R /XYZ 0 732 0]>>
+endobj
+
+875 0 obj
+<</Length 876 0 R
+/Filter /FlateDecode>>
+stream
+x��Xێ�6}�W�qS
+����wm�(P @6����k[In�����R�Zm"}l�TΈ<s;3C�%�vfi�K�O)x+0�2��}3���V��)�C0�I��1���s�e$���(�(ɵ�>c��~9c��D��y)�N5�Uد��&��Ȁε��I*���fc�[�J�3i�@��,M�ҁLZ;@?K:��<���Pf�9��轟�
�d=�m�e�Y�Q/b֢�a�7YJq�?z��vr5�X'S���.>���2Uq�ZI�V�4��<�9/M�~��keQ�zY��q�iѝ�09�X+�"��\�Z�zY�u�Hb�]��\��uMS<t�e�`��������J�6�ۻ�������+r��ly۠)�=�y�G�V�I�n�s�x��t8d�ӛ���ѕ�}2��sq"��H�S]�z����'��H]l��>/��q����|_����PMo�L-�qj���T���~%��~W��|�X�dy8��l]��������w��<f%9��rT�`��^�cY��J��	i��GJcA�6�H}����9�I�ʷ�4�AQJ'�7~�p�Fއ�̳:�-�gij(���n����-9"X�c�����A�v�0��~�z�W�t��]�
H`��	�!/�+�Enx��G�;p�KP]�n�C�b�*�@��+��_��K���f�/'ʵ?*��r��S�
�������Ě�l�veU��:��q�?m�T�8���7/�-ZW����8F�DX�6XbC�[�����ߍ�y��m���[��\�S�-#�Tk�lj�=:�EC�A�Y&�]D
+���y�8~kũ�m�*����!,[[���ș��H-y���
�.\�?�i�6�BR�{C�ʅry�ߑS��GAW9�b!�����ЊXO���5�0�0r)�4ߑ-���ޒq���`��* ɑ��K���|�eB��2�>���l�A�*5�:�C*����x"a��C��'ar����5�n(�	��eu
�Tȇ.EњF�.��҈t�L9z,"��\�q��\LP-�w����c)V��,Q��!.M���8b���8K1�"�ÉIU[8�B�p�9q���؂����_a�׿���o]�/�|J�Ý4e.���K�ט�C���Z��݀��
�k�D<������&
�j�O@G�+�EU5�dK�߸aDW�5�o�*ή1� �~dQ��Z]�y�
��:�FTc��ȩ�Ό�/q4���@�-�
+���yB�p�D�E���P�^z\���w��g���E�wʸU�W���si.M��K)�Ӎzfp�)D��;�μ�q�ss'Z�VH�U�G8���V�4|�=1Ѷݛ	��Cegt��X��)KX�t��Ja���[�9wD�LP"]�6L�ԟs.lp�[���`B[:܌�sK9�.��>�@�t�i+��	��7G!�
+6��F�Oy�w?���F� ���S��O�b4��}�1õ�Y8J��g�����܆���b���-��G[��ҕYs��=]o�u�����!KE0ŧo��<��mm�Z �4gJ�ǘwE2~�a�����R����]27�����W�Tc7Uc7ܛ��;��󛟖��/R���8��.��&c��#g�>��]�w����O���z�>Uuq w�~��$�HUr��cK������)[��>쓱�]�Gx�l�D���+M����2a|���&nz�X�}���6?�%���7d����g���o	����HH�x�c��߻�!p�SΦX�����]q$��$�,6�uM>�a��i��\i�'a�s�Q,���aq
+endstream
+endobj
+
+876 0 obj
+1809
+endobj
+
+95 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 875 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [877 0 R]>>
+endobj
+
+877 0 obj
+<</Type /Annot
+/Rect [247.2675 539.4912 314.7615 551.7237]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/mydoc_seriesdemo1.html)>>>>
+endobj
+
+878 0 obj
+<</Length 879 0 R
+/Filter /FlateDecode>>
+stream
+x��Y]��6}����m7`�M1�//v�.z})(���-ݕ����E���H$E*r��s� ���Ù������[96~2�������j����QW08T#n��L2j�a�sI��4��0�#��rf�+(G��)�f�l@.���cL\ST(%Hd7�>��6Dd���F츊E,z�D���^a�������z�X��'��$�@����<�)�1��R�C/m�>!�b�����dz)��H���P1�QĢב=A�x�!����H�$l�,�)SPg��	Gj�Q!W��aڈ)25��Q�1It�X����'$ؐD�4f���b��������6D$�9bIdF,�̳'�	\!�g:S�J�b�f��*%Ĕ���=���'Q���������}BR�<�)1M�Sl�k���b��X���^G����˼�m�RŔ�
+�f�<�9���b�N$�Cl�qu�D�%��^�=A��0�F�)f)�����Ɇ�$2G,	̈%�y�q��BZS�J�b�f�E�3aJk��'A��O�L1�>1�"�3�'H�X�R�"VPV�bJk���\1�d�y,I�M^�����ߺ�?������^�=��4�{� i��i�z��و?=��2��<�k�����������θ��l�C�{�]2���v ���y�~O^�]ս"��j+r��?zR�s}��j��H��Tu/�"��*�jK���D�rץ�nj�q���%��k�CՑ��c�!�p��W?�������Vn��|�_��͙��_aFC�M󲸘�|���ms��I���%{�hJ`�I�<�#�_��;��妢;���W���_�ԨW42]�@�@{��%���c�|8�[�N�`�0�7��U��ü�]�fqE���V@R(ʗ��)7� �����!�T.o���C@h��1�0 %�������w�js<o��8��y7i�v9�~�)�0u�(�3D��,r�}S���
|;��7�4��y��jW�*�~�ß�#l�*�i� �f_�;��/�jGl�n���7���4�y�H�y���B4��H��oG�x�`�����T���b6��v�0.ךl�V�?I����\�\���[���l��|�����;���w鱢�x@��-KLPJ=��,D��iZ��*��S"�i2��v��I��pbf~��X����9wQ0u���#�^�����a,|��ԭ���[�\6���\.����~.����@��*8��ò6vi�0+�l8Kf�+�(
+c,�?>>����\N��v�
���;}�����,�t|
�€J@4?��+\�P�WEN$�W�&!��S0�Z�����H�9$���WY���"i�1��|T���a"�WE�ĸ�Uw�6���fW8�
+l����c*+������� <y'���f�]�R�5�L|�,�.$H���c.qCM~���c"_�|&�tϏ�+�ɢ���`��s�ڣ l����$�Tg��гJf�Ru�����ܜ�߱b�jc��F�Tx%��H|��Э
M�o���:߽ޜ;��O�����������q���l�}:Ҭ���a��$[j_$�����`5m[mzlV��T�=,�U�0�-�%3;.r34�_�~�����FMmɒY�J7�(y+b�6bX8���#
^pj�X�f�HZ^%�)�[~wM�0�J9�z����3�u�lO������⋙e�G�C6U�5_�+�� ��=�x��Tv�nW��34�=��0`Ӝ0�g��XNM��T�0v)H9�q��Ɯ`�MSwL��񆉌:k48�0���P��h�<��װ��;>D��7 |%�^��xd�p�.԰��P3��$tWa�g��`�f�`15p�?t%�L�̎�&vE[v\Mř����h���3���<P��C2��k%�3��
+��E�	q6�i��O�����H�6YrK��"��	���/e�E�U�ʏ��,��&�
+kL:�
+�I6y¦M�X����j�a����i�'����ud���z�����d����bq�'.or^��`�?q��r�^�
)Ɵ�p�O�'-�%V��$�N��aM�eד]UW-���<T���NQ�"p��	g�C��x�O<(f����|���p��{���ٞ�N�*�����Π�B#]F�#�I'°�ʓ�)
+endstream
+endobj
+
+879 0 obj
+2238
+endobj
+
+96 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 878 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+880 0 obj
+<</Length 881 0 R
+/Filter /FlateDecode>>
+stream
+x��Yˎ�F��+j)z�z+�[� �b �E�lh�j)�H����g����I��V�,�
X���S�q��-�d������t��Q(���V����
�_X��!,��KK!I�~J1�q,�C9��֊�mR���3�,ψ�	Ƶ��'�\�G��:Ũu'��8�)W�׀իQ���9���`������������d,`4Ӛ�g9 ����6��_f�(U�8M0���'H�1�M20f�	�&J*�s�$c3s,D�d���'��INQ�I�)zڭ��rD�ş������8ۦ��;tܣ��ҡs�\��8U=*�
+��j_��}>�\N����C��<��G�%�;�����ɬ��",�޴���-vh8T�lw��������ƙVR ���!5�WT��Q@����R2�!'TH(6��V�*o�r�(XM"V�gB�cT{+Ǟ 4rys���%bB�Ȏ���>x�\E_=V�bD�Q{��+*A�C"	l>�`X�|��D"�tƅ��7B��Vθ�IAŽ��Ơ��,'3���>��]U*��r����nՔ��%
I��ŀʢ���/�~��tj�nR���\��
+
+��v
+bp�1j򂝂��6���<Ò��A�1��`�k�D���:((b�S�g��t
+�>�}
(�G��gO}���Z�-
+��L����
+�w�	}j�2��ӹ��PuUz�������'�AC*�r�Iy��D����GC;O}����e��5����]*�i��몀�ќ�S����4#W���A#��Őݡ<-F_��:��ОG�'�KN���4FG����p�V �!(g&�`����l0ŏ�C��0˜p���A�=ۂ(����	ߤA8��<K��%pp�|���DKcMÇ�'�T	����A����q�d�f|>��9h��
�����2��L@lö�����I���9����1��;"Mf����E��Q�����r{��h1F��|�Ȅ)�gK���W��^)*7Öd�/u��_/�憢2���qC��Sޛ��5u���@����I;?9�������y>6������?w0���[�ݫS������m;�CW�ѩj.���Ms �f��3������9Pd�+{�evT��!帍4�UĠ[�/r�`�������cJf;o��>6�������>x�́�W�իQx2D�#"=��s`X+�פ���Q����B-��k�R�V����G��C��]���J�53�{4Z-5*&c�\{IŜ�)_
+�?�����W1��	��Ш^sk�\�u�~j/��3�tĺo��	j��
+cH�%����k���9�L��P�ͧݿ%p?\ &���I�C���i'S.��	�9�K��DEx�xW|6��
+�^p'��Yp�Z���{�����UR*�s�v��\��-I��NΊ،F�Z��#>/�[ޘ�����*���2��c����ϰ���c�����Ψ�-5�ܼ��4f�`!w9,#M�3oC�		c�Ӵ2�a3�'e�[9����$X�L�|e"��y�!�L�5V&Fj�u��!��?�5�̢��Q������D�͜gZ�ء�vS؃2OEJ�P��3Lu�}���&����(���2�<1F��r���M�Pވ�Dv_��C,o�5�7F��≹���q���+���PbSf�<B�,\/r�~��w��e�����)���ŧ�Nۭ4�������6��󻥩�CҨ�3r��Om�x�d$i�����i:iտ~��0��+W�{3����Ui^n���cg���ӫ)$S�����/�Bp�>���eƱ)�������}����e)9fw��ץ�c��^�%a��w����.�qg,��5����E�5��1����.[WF��05��ޘ��2��Mj�d6�t݇H�pp	�]�g>ZI.����I��X��GRk�X��P����Y�o5e&��ՈD�}o$��\afj����T����
+��s�Tz�5�Teeލ"�߁�D%�����_կ/um��Q����<<ت��^�A��]��BD�^��4�\Cm�2%�h��f��q�V
+endstream
+endobj
+
+881 0 obj
+2122
+endobj
+
+97 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 880 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [882 0 R 883 0 R 884 0 R]>>
+endobj
+
+882 0 obj
+<</Type /Annot
+/Rect [343.1069 329.8837 426.3509 342.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [120 0 R /XYZ 0 732 0]>>
+endobj
+
+883 0 obj
+<</Type /Annot
+/Rect [411.2145 218.1337 492.6840 230.3662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [68 0 R /XYZ 0 732 0]>>
+endobj
+
+884 0 obj
+<</Type /Annot
+/Rect [112.5000 203.1337 126.8955 215.3662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [68 0 R /XYZ 0 732 0]>>
+endobj
+
+885 0 obj
+<</Length 886 0 R
+/Filter /FlateDecode>>
+stream
+x��W�n�6}�W�ۦE��*��b�d���}�S�Xt�F�]6p���!%ڒ����ư��g�\4C3B��K��t�J�G@�7�Kv�&�Xn%�*k(^�)4�	c����Q™LA�����Fɰ=a��i���0m,��/�&J(=�;/Lўw?����� FJ��ac*��m"m��J�a*�`���ag������r�QC����ͳ��l��ֈ��٣�MB6����a��I2�0����wr���	�Ī��G"b/m:�؈�"6b�KM���{�g�d��M#1�Ɋ��'��ߖ/#�E��#=�����~F���I|��7������y_@i�2
+�<�m����`�Kn6u]vš�6'���OQJ��F�*�
T �����{��g��nB��$�w���lߟu۬�,ϡE�
d���&���߾@ւ_�m�긇���9ɓ�����M{p�"+��fO ��i_�͕%���˺mQ9�nWTEW�U{On����hF0������u�������_�;`�<��+�g�^܄�*4����em��/��R��L�x��e�k +��^���
�>D�Zػ�Bkd�>!��)��T�4�k𔆯M�{����)���HsJ(p��0D�A���<�E�A]�C]wm�d�������#�M���-d]�O}7�I��'7Ȋ,�DSU�SPT�k:$�!)(Va���5���B"�S]���(��-򰦁��˰~JL�P�u_�p豬��A��k4ؽdݥ҃�xbw7�@H��L�hs�2VH�bMZ;$Ă��������1��t̂�L�BJ�8�0i�������S������J*�Q� ��+�b��M1�+��u/�Uz8�n���T���ǫ��Wi��`��}�M�0N�i�U��}P��}�V�����V�/�]K�e�-b��4a˨h�RL1D�҈̤U�{�����k���.�bQs��37��566�sO�����,��Rܰ4�bT�?0�fm�;0��2�T�D�χвX�p�Hn��
)�����TH�P&��BcSq�6��P×z�����U�T��{LY�ak��!�s|:뱖�3V�"fV�p�Dz���%>1����H��?�.�Y7E�B�
�Է�܏�7���7-�t���r����رR0ù&D!��Ð�,�����$425N�9���}[���Z춮rMֹ�Vn��O8P��N��pF�\�Lj��l&����&=�_"ph��v����㰘�b��i�ڔ�[���ʸ�?U�Dm
+endstream
+endobj
+
+886 0 obj
+1277
+endobj
+
+98 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 885 0 R
+/Resources <</Font <</F2 509 0 R
+/F3 510 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [887 0 R]>>
+endobj
+
+887 0 obj
+<</Type /Annot
+/Rect [112.5000 352.2864 138.3510 364.5714]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [98 0 R /XYZ 0 732 0]>>
+endobj
+
+888 0 obj
+<</Length 889 0 R
+/Filter /FlateDecode>>
+stream
+x��XM��6��W��U��!A��d�I�)�"(����J�U���?����)R�\�i{�l��|3�f�/NR�C�M�NOܽӌ8@��^m�nҤ E���Sx˰�?n0&	��H2&(��b8a�p�}���yyF�e(˅���T`g/,��STGX��3�0Β�R��i�̯q�~C~�U��	f<�hQ\���`�<��@c �
+�>���G���ǪM��c!j�!�s��$�2S�ߩgvv������0�P@�)ʜ-s�B1��(E"(�0�X�$V�c�b3��Cn���7|u��E.��Q�G��g���z�ˀ.�-�K\o)Ohʳ��R�my�<�籸�<�ƳG
\#�'��,�7�hR��z#,�V�>�H�ތE�6cs�3{�p��O�H�7���z�"c�f��^�E�5�6�s��Pl>a�<y,�9�!�b[(6c��Y8�&J�.s�B1�E�u��g���7ʹ��
��Ĥ������x^�I��/�= 8[0sg�k�~�����ƗzC@5^����G*"��P��@B\!F�3�B�� w�yp·X��;Džw.0��������>��Y��{��OkzΛ�ƌ�YaE����sB��"Z@�w��ww7#�6��J�zx�v7������6č���D�=��@����ƺ���YD�s
+]�^}��#������Q�j5\!]v��Y�M��I6T�]�k�h$/]
�<��Ҷlй{�o����I
j2�j�I�>��m��{١A�+�h��^���0hHkB>ʲ���B�Է��RK8G�W�����$��Z%��d�>1n$�aX̑p�$����e��v\"M��0��BdR�j�NxH�	U��EP�l�+����'գZ
�<B<�$���䣂�U�: �K��j��)��o�N�KY������`(Ao0r�����6GS`Ƽ�����,�Y�j��P������K�z�ը �m�BU�~g!9��N	�C�j���}X�Ђ����5G���l��J9��	�z*)��,�S������
+K���Y7��y��%�v:����ڤ:""4�t��ö�u���O�'94a�i�]W�z�qwy���Q�e;����
+Ьf2[���j ���j;u�g�!(������ꮒZ��O%�P�i��<���D���ҪL�*9��um7V[5}y<i�z�ӏp�g(
+�EP&h?��)�*��2��)O1T�K0~�2Jh�_�W�<�Q�7�0L_ї5��6����a�߾�0�M1N�>s˻�x��*73%���0[�ԭ�,�O�|��;KGROؼ�7S@��շ�M��Qf_o)��O9�y����fj`k���?�Ix5���;���&��<���i��m�:f��D��X�X��i',�6���A	���bJ�q~�i��ݩ�[��ٶ�]W�͹���
��N!hUʬӽ��x0������e/�����Mn��>�p�O�/�*$$�/~_ꓻ���#�?��Fm3_;���`�r*
+��sS7�Z��OeK��:����;����S��LZo"�P�d]e'暭xd#�<��dm|����upV�e��ɡ��	��*(��$�Mo_ݡJ��Gըޤ�z�����i��W������q���t�*�V6�C�k�K!�Pp��<ƽF�B�Bߏ�H"^:��X�5��`~�_���N
+endstream
+endobj
+
+889 0 obj
+1708
+endobj
+
+99 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 888 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [890 0 R]>>
+endobj
+
+890 0 obj
+<</Type /Annot
+/Rect [159.5610 442.7412 288.7005 454.9737]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [114 0 R /XYZ 0 732 0]>>
+endobj
+
+891 0 obj
+<</Length 892 0 R
+/Filter /FlateDecode>>
+stream
+x��Z�n��}�W��d1`�Nr1���$��&�"�#-ӶbJr()�?3�?�"���Zz�M^=X�Q�麜�������E�ǧ�>��	(�C�.n�[c���k
+�S�*��,���q�~-���!je�+*���Q����������
+����>bH�\�Y?:�I�������f����"�JX��&B��������!�����Ù6G�����b|< "����XB&KzY%R0�^�v���&#�h-Ƈ��Kk�K�$b	È�G�e��] �z�+���<��,k�UEUj���+Mk%��cL�1V
���\	s����7A�
+Yo�F�
���1&��{�����vk��{����"'c�������J�j@#DF�0�[�=��K�$b��k�nE��x�9�؀���{������a�15�q�<��v:���XU�CV��5YE�"�̘P&cY_�.���j�=�$V�D��'����3cB����%v�����)��7F/kWF�10Hǐ�5��ꆈX��$b�i��w'�DD,a��1Vn���K�K�$b	��1���r���S�8ˣ���LpEmu��fBGe��cL荱�b��\�i_��Do
��Л6�l!2z�I���&v�x�z�~����)#Ƙ�)�ʻ�_3�XB&K�ح��=G�#LF�1�vZ�V�6����
�ܭ�e��] S��^�䜯'D,u)���f��K��a<��n~٭6w��.T����Ծ�۩�f��i���UM�������?W����>B�v\��U#�|�U�ۃڴ�Z���k�c�7w}�x����;��M	U>���V���֐�SR1�k���J)[{�XD$��,}������p�b�,��<�Q�] .s�`&\��ƫBT���qT����"�JX����&v���b(�z�*���C�'�%SW+���1s�̹�A�
+/����P�
+�2@U��~�ک�v�v��;!��(g���eӷ��{�d�}Aݷ}�Q5;���Y�l�6H��o��n�5�w��m`�nv!�m��c�?,7��q���,����'l���������~V?\��g5z�X�u~5-�j6��w�����߫F]�m��h!ePX�^�$Ę�TR�B��֗�������g�<�ӥ��y�O�3�ܟ!�?ͅv�C�Q�󇟧��s�������q��p|�3T�����O�Ʃ���d�zx��o�7w9�Ym���O�ft(��8����҇�煏hڜ>��0>��zV���)7,��F�(����?~���S�w�y&����:�6�h�� ���A
�����ͽ�߾[l���'���c������J���v2a����g�I�~����6��0e<�4�2ն�����B�tݤd|Q���v�Y8n�}��W��Zu�d�g����,f�1�����u�kb%�n`�M���զ���h�a�i�X��,�\�T�^;�
�TJt�hN���A�#�����N`�=I�8	+ة����i� 0[���3a%*3���1�J��K7��6Bf[	!�G�e��] ��^;��Z9+G'�?ź�k(�P����0TK(cnUUT��G�S%�"A.�}��>��}�_-�պm6;�@'�Ӫ���8mVQ:��}�{`շ��.*��!�YG��&ez�&��6���i����&Wfr��Ե��pmF;#dr1fXG��h���*�m ��V€�=",{M�"6�:�k����C=�ƃQіG,�֍�=6�B�����j|�Sm׮Axq55�V|��-�2F���"��r4���+��j�<�p-�_[E�d%���1�Uf�|f���Y	٣<��f��7+!��
%\�e?�m�r�ؾ���A�
+JZ�GD�舰��UD��[�>"��oc�R7���L�mE��0�G����3��B�6�|D��>��d��=#o?"�Z/��~6�2}������
��$5c���D#R#��I�z��$�pV�:
+��q�F{FrRI����95l�H*�*���L���3����^N��M�I����Bɗ2p4C����q�b��)��m�������3��8a��w�ܧ;�����?�Ƿ�v=��.�ն���m�.z���dE_׳]0��m���Zl*������	6����SgN�]/��"���f���s�Z�l΍�q�t�����Kt��������)��E�=�����>1��˝���
+�a���_�x4goyF� >ؚC�������Z�k�R'w��o8������1;p��rv:�a��\��������o|y<�Vg�k�������ռ��bҷ��I����.H�Q��*�5���Ɔ�*}<�T�I?�_�����]�i{�׿W���]_Ci��GlDJ�Iv��L���><��֭���w�]��6�������ז7��^���?V7����%�&�����Uu�a�n<E
+endstream
+endobj
+
+892 0 obj
+2502
+endobj
+
+100 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 891 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+893 0 obj
+<</Length 894 0 R
+/Filter /FlateDecode>>
+stream
+x��ZQ�ܶ~�_��spPD��$��M�>	pAP @!�jo�h����uPP�:�8á��\���n�i�r��LR�#�7e�|e��Δr��Po�_mҤ,R
�T�qx����Ȱ,M����2K
+��i�4h��F�v����t��\�}p\����l�"L'YZd��-�<[��l7�+a�""��&v��:,�yj�����Je֊!1)��>��!r�S�#�bsQ�I�(sQ�{@�b�#L'�RN�n��\Ɗy$R�cN1a5�3$���e�ݲ��զcۜҞ����+�2u���o��S��*
�z�A̅����.�;C�����3�L�ר��y��B@?��0�#",D���ȅ��r�����깕KMr�+]�~U��k�.$L1�D�y�Ei|�"��#v�0��f��~Ev�u�m��G"�<���Fv����Õ�$���ȱ<��4k�
+���M{
a�`%��Gbg�	\S�J`2�`U0}��0�`UE�X�����0v�FQ;Cr�K��R=:C"����f�|uQ��DŽ�����Ù�O@��$v�0�<)F���	立2��b�p�c�+a5�3d]o�nUy�Hg��Mi��,;j�b9�S�0Vo���A�����`�I�.�z�*3E��
v��*��W1^o�����!�nt�]�W�*�+�ĔkB��Bbm�b��)&�+B?!z��C�+F̫�*X���®���b3ƻ�5�3d]o��V�Tg��-Ӊ�ӂ�[f��"\=�x�!����Ǥ�`�Iy�I'�)�Po=[��0�c�FEM�)��V���{�z�"�b�A%[�n�(}m���
+��Ʈ��X�9dgS�c�b��Pp�
�ꢔ6V�#�bc�JEM�Y�ۺ[%女8rF�\�WL�(��"L=�X���bbF%�4�+&i$������b|@����7�B����\7����+��#*���M����6S�wE����O���Cv�0��&A댽i�E	�\1D�b��nE,D����������{���'�*l��%l�`�>�6_W�r��i�y�a򁲖Z��c
+���[�����͟��4&)�#�/d^(G�Τ:3�d��!u�A*\�C�6�)u�0��Nh!�{����P��:��}�O�4T'��w���QL�ê��I4��~�w��ĥ:�bߴ�ߍ
X;�쪩z�ܧ��T�������3<H_�Q��I���Kӟ��"�㩭�u7��&g�<z�ϓ�n[/౞���m���=�4���E=� �n'vͮ��$��y~�t��݁GC�tϣ��}մ��|9���'i��C�� �������y��<�#���<9�5��mϻEũ�v��o�C`8�e���H��G���5�<^N@��|����W��:b\W��kT�ݬ�|����<�i��K۪m�����-�Gé��~h`�����=�]?��a:�W���|���-��t�
+��7���$n�e��
�"(�~��n�!�ײL��E���vj�n���_�o��便�C�25��Cκ	ʯ�G�l��q.���_�a�\}�a��2�Ks~\�]j��E�uu��d\C�VS=�ƋP�^}`�"t51�ڥ�j�"��TS�P���z�[-:��o=��$p�(��/xÿK3~�d�jT�W�h���k����Ae׋��
+l�n��������Ų|�ʷ!W�T��	�j�U�ew�+�+�,?5�(�`jt�^s3�n#�����uw��9��4L���k���s��r�Ey�ѵ�3���g<%���~{�
�j�!��~s5�f�ϥ�u�"��'�?�l��Q*�K�h��l����gI秼��\��3�8=��f�p��/8S�}V�3�3�}>�|�~fK1<o�����BfL���bc6S0��Ԝ�@�\����(���
+�wJZ���u�"����07��y�"L�nj܋Pb�d�
+> \�+b�E�J��؃)r����Z���sig��8���6�)�$�%V�%V����qWY���+w
mU��R�X���On��6(���ҫĩ`����6�i�5O�8�KF���?�߄��x�i)+X�
+�6�,7η�Uʤ��/�
+UP.�Y�����۹���,��5�v�(狾���h�q�u�W��c�����yU<
+�ʜq�P������Kۺ������gw������q���y;�G�����WÐ�lVF�߻�-����t�
+endstream
+endobj
+
+894 0 obj
+2252
+endobj
+
+101 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 893 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+895 0 obj
+<</Length 896 0 R
+/Filter /FlateDecode>>
+stream
+x��ZMsܸ�ϯ�Q�r1���J���$�K��R��J�
�#3�:��9���k�Aek�{���g�4^?t7�E��{\T<|��S+�����w!da�m�b�ta�q�Q�M:Y��S���r&�*J�	��a�1Y/te'X�,�H������9���w��3E�KŒ��f␐�"qMX�H%,�,Z���z"�8����]�_�͔f�X��'�%飁����(S,"#�"F^�‘����nd}@r�"6R,a��R�>�:y)�X����)=JX�:Yϐq��>���
+�`fH�����4��х��v9f�S�(�@��c"�ɜ�,0��+Y�=تzLp��1UXk�����!!��	�3a�d�z����+i��zoT/��H����2V
iM^Vv�XDF�E,K넥�L�3$S,b#���*=�5y��X����X��	K^'�2���d�,Uah�.���)KY��
eB�KS
tl\j����w�=��RJ�j���.��Ū@��2cA�FY�m�撫�d�eE�"zI2��Va��Un���ÌCD֯���4OkK�n��	˴$l���bo�qSͳ5�^�+�0��%ɷ��iF\�n%,���PN8��}��,�}�',�H�Rea�5��w7��񫸊vK3�K�Is�c�xa��p����8#��d��P��Sh��y�&�;W2���KmcO�I9WZ.�w��oH�i*��:~�P�-�O�+�κ�⊒�tdI���?��شY�#8�Shb��Ӂ�g�Ȳ�a�f�����nea��L�Ĺ�#I2��
+&,�ٳ�m�a�mNX��2/z,�^��g�a~99*���b��0c3�9�in��9�3�s��� �7�TJc?,�����(v�Y�aU�*L�X|K��3�}�V�#[�^�o�WF�;�ҷ\���!��'@�q�r#�Ⱦ�i�o��K�kKz2��
+�:��Gv����X'�
+�ƖD�C���j�I����ha��*�\;��X�����;$n�NOLe*o���Ê��}�oi����UR����2�ܘ`Ы'V��t�ֺPJ� ;�p�~u�԰�a�5��m����X!�+N�V�,aR’5���J��CxY���=�<��0J�t��gC�u��5$��aJ�~T��!b��c�nJo+a��(�`]�0j��#8Q�C�$�zl𺷞!����t�
+(�B��U(n��i�|�(3t�y@�cX�v��"�}c(�oC��WY�,T
+��u�����tg���9u�_�랚��E�4hއŀ�1,�[0	a��t��z!�D)��v!-�2L*ُ��3�&[	�e��f��
֥	�=�����=V�
^��3�|sXkU����jG(
�f.$Ark'�ǡp�O;<�����ۺk
+���3[�{�ph��g<ܞٹ�5�Xw]sJdT�pW��O��v���f�m��E����Ms.�ߛ��|���W���eA$jB��������K۲���4�u}��d�݌Z�–Œ�No`��/��S���
+�����q�^,*3��p8�����|��$^1��(-�t4�`t<o
��������>w���,�|��85?�Y�? DN�{96/�`��?�۶��6A5����5��o����/��	�(\=�a�th�G�ٯ�=���X��A!���ƃx}> 8O��>>��#�:t���v?�oܾ��AT�s��n��v͎�����
����� �ۆ�&Q+��k4����� #���e����ֽ����4u��i�L�-�ʀ�7>�8"Z����7�ڷSo;^&��5]�RgD���E�8�[��Z�UЁq�02Xһj�'��$�>�q"��ے�G�#�ڻH?qO�.4h5�J��w~=�j5KO����@��=�a2�z�i1�9O�kd¸k��R���S�&�^5�G�xI蛛����PU��M�ߠ �	���蠉�JK,�������'���Vp�,�Eg�rژ��U�����;D� �|�7�w�w��Bs
����4�Ѹ-W���,YN����G�;YQ�,\�b��w/)'�{�Q�ا�i���A&��CN������v��a�J��ev%\e�J��|��a��B*:��"�j�/��DEULT�=�>�?5�k�̫�AJ��s�F���T�������W�=1�A���m��8[�$��VI�&+�����m|OE�a9V�c_pm���������JTa��h�?�#�鷄��C6�
+����=���gX�������)�|f�ʦ�nI�5�l��פ�F���
+� Z!��>����+<rt�wD�*����W
+���P���*����cc�޿�QVjjhBF�+u�<st�������_�z�߯�թ��Y�KbL[��t���jjh����t
+*:�f�8\@mַ�AW⌚��w�F
�j�e"h�6o�lu�.���1�\���,%W�•�K��=4z��_�8��SU,U��!�i�5�zy�H��+���I.��q�b-]K�}s•j�=[6�f�	ǐ,�3��.����-����qP$v�\l��jS8	���U���c��m���y��ˇF)��N��V����Y�է
+endstream
+endobj
+
+896 0 obj
+2595
+endobj
+
+102 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 895 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [897 0 R 898 0 R 899 0 R]>>
+endobj
+
+897 0 obj
+<</Type /Annot
+/Rect [285.0150 612.0980 424.7625 624.3305]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://jekyll.tips/jekyll-casts/includes/)>>>>
+endobj
+
+898 0 obj
+<</Type /Annot
+/Rect [440.1240 612.0980 456.8505 624.3305]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://www.youtube.com/watch?v=TJcn_PJ2100)>>>>
+endobj
+
+899 0 obj
+<</Type /Annot
+/Rect [112.5000 597.0980 166.0845 609.3305]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://www.youtube.com/watch?v=TJcn_PJ2100)>>>>
+endobj
+
+900 0 obj
+<</Length 901 0 R
+/Filter /FlateDecode>>
+stream
+x��[ˎ����+j96�z�XF �x�X�A�6Eu˦�Eeҟ��'�X�[T	3�h�p˧o�ǹ���6�(�C�6��O��)����~��v��
c�R�o�qi��k*�f��L(�L)�a�u�vϛ~�9nhe������cM%
��1H��`L�<�A^:��r�]DU����5zlQ7Ս]�?�
+Q�n���8���ҕ����#��T��j5c���J:��#�[r�b�L05�Dy4��$2���E��&C<���V�PE�{BB]��a�����M%8�H�8���P�����V�$��Rv�7��F1J($���AMCƧm�/�m����[�Tr�����$�Di,e�DT���z|�����|���[ឣzO��{Y�\p��{%U�_����S��dwSޕ�N�����Zr�f3f��G@0�y��3Cy��9t�Fy-���s�w׽P!�A%	,���U���!.-��K�T	N�]��ݔw�h�9&�j�٨4�1�X[D��g��nEU�#��Еk�1#�;`�jP_�3$�����hvJ}K�� ���Fo"粮5y*�t���{fX�gJ5��YG
+�f�4�I�w%-���Y̵�z9���ٿ�l�So��\��U�p����zNM�)�E����R3�IX��B�
Wi6ci���:0T����C�kd�Z	+��}w�f9D�+��s(�S�����̨K���n���n�9�(�ab6�t�"���8�Э����w���r�8f��CU�
+./�_�y��4;��E=�RX�����s8��9��0o<;�g)��m����[�Tr�����$#�Di,��#*K�rS޳�k��r+���=G���s=���\p������F�:��"�ݔwa'Q���H��l�,�l���:�XQ���7b�`�}w��
+���xX�!�ho���!.��+e�0I������My�U5e�ڮ��4�1�X[D��g��nE,U�#��Еk�11�Y�XV��"C���9/q�f�Է(�B�Wgs�7�sQS+����򞥰���Vo�R����^�4����,I�my�1�n��VVo�{��=��z�y�r��
+��u�_�^��S��dw[޹r��
�Q#˘E���湺�U�#���
XV7�����^�堓�xX�����mT����X�LXv�Cv7��
�Xv���`��7�1�X[D��g��nEU�#��ЕkL1�Y�XV��"C���9/q�f�Է(��؛4c7z��]��ʻ��G�ᐊ�=Ka-m�-4��B����-O'�@#Q�(�ʒ�ܔ�,��m��
+��p�Q���\��R.ܫ��^)���xJs��n�;W�I�7Xǥ@/ci���:0T����C�k��	X�
z�+D9�$�%��x,*������2�e/ĸ��vv1GdwSޙ�/�Xv���je�ǘE�-"H޳\}�"�*���s��5���GU
�h�@���9/q�f�Է$��ޤ��ћ�9\�A�k����Te2y�RXK�r
��P��ry��IA2�H��2�{��$-7�=��v�/�°z+�sT�)?�W�?l��<Ţ�9L&��<l7�>H¨�v�7�=�^_�3��r�ȶ�폀�ڝ��HN��?�~7��Ӹ�NJ��v��g�k��t����~��<������R�*��f<���oI{&-��|&��Г��E����N}E\�hy��Ʊ?����R�ڤ��|�O��<��"|:M�il_2��v�E'd�ciT�����#�v����e���n׏@�K��O��.#�UC��q�V#ը��M�i:�����GE0�s?��AyG���F{ۻ���e�]�,��;�[������C#g��{`�L�شS	����Mܶ=>�#Zř���|N�}v��D���q#i�S��h.V�u�ď��+y�V������v��O0�E���pq�6�����SF��M˾&T�RV�!%�54?M6]��2�툗q�d�/�}E:$|����Cha_��Ϡ�.�8_��?�3:T%�\v:�e��3�t��tP{�e�#�tI���;a.�}jj�X�G����C+��p5��}�p`�%��1�ѐ�0j��k���X��IG<����>�v�	��}Nw�#<�L2�H;����6$����7k�
��;��&�#�A~zs<M�[2�_�C*�Bz�(sx9�S{�~��"��qn������x�Я1��?��Q
�V]ۿ�4�ؿ�4�}\�4X	f_�(8o�]�c#V��{��Η�"�YI�do�8.JY1a��
�����R��="!�+b�b�[��IS50�$y���J9|�\�bEqe�:zOܰ������|����K1�}w�R�X���>b췉��N2�^�Q�u����i��L+
+����|��w˹�$4 8?���p��W0|8��[�	~��q��_`�/�O��൶�x$R7J��m6�炡�E���pF�6�6B�SU�&a`�Z�&�
+V�;Bx�0����#���
+���3�R�6)׀�e<V�Tu��|}j�P�ԥ�(���ÔQ�!}*
���вY�ZԬ�����֐��-B�ne��&�]������4�hY/i�����`��?�#ܫ�ߑ�}�A�y�p�4���:z|�����a���H���]p�h�e��
+2@��x�^���.z�O���Wx|��d�l�zbL0����{
+endstream
+endobj
+
+901 0 obj
+2734
+endobj
+
+103 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 900 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+902 0 obj
+<</Length 903 0 R
+/Filter /FlateDecode>>
+stream
+x��Y]o�6}���c���H��`P ���l[��f�X`��b˱wl)��I�3�a�ϞK��(�n�ǶE�����+W$���E��_��[�t���G[-�_-�HM�*��`27n���$/�b�Ҥ�[p�0ɓLg�$d�+E�p�گ��B�;��A&��bb}D<�5`Z�΃C��Di!X���^�;,�G5��#$��v$Or�?��գ���*�1�����Q@rB�{)6 �
yiC&F^��#+6`��4�3X'�s=U�"�,F�
,x�G�e��4牤��(��(��lpCj�-�H'��u��?�Z�H�BJ'��nό�"��p�5�#䪓�#k�T�䪊4‚G�z��^����E��Bj���䑇�C@֯�]���ْK7*�?`���+<�X�\f9:�s��M5���`��a6ӊ���[@֋��C�y4X����z����TX�N�).�`�k�R��L���o�-EAp4Km�+�	��s��v�_�HS�>��v��MK��Kh��y�&�;�2���KK��<9��s��e�N���;�|Z
+��\
+d������J��.���f��8�)��L�6�̋2�a��j�;`�g�p3$�E���bF[�9�Lp
+�Jǹ#�9r�Ht�,�;I6X��թ�O�~�za2�P,`��a�!�m�\(�'�`���PQ�z�D�y,V�c��y:Nm�w���Yd��Ţ�-`�����L�myOw̐r)zX1��&ג�o_��p\﷋����s�F	u��J��g!��5�]i�S~�2�����'j�n�I�Oq�%_�eZ��-Vs�b'�6aj)���NZ-�٨2e�a��^���@6+hV�r"�^2d.�yI�����e8�$����'-].p|f�qE;���¹�Ud�c�����r�)B@��yI˹�wK4��];:�&�[���r8�5G�:��ق����n%�nݵ���%g�m6�{���Z�"t�UMYsK��|5l�}kf�+�f�����\���t?�5͆6uD����x�j	
����[���?o����+��!���W��������N9�`m�YrJ%����l!�Z�n}����DOR<�y��qx]�K�p��g�ы����KQ2elPa�'<��Pʭ�r�G�����•�IdI闎[g��P8����`��<��fˡ�h�Б��B=J[FҦ�P���jTD�3�������R����
K�
E6�f�p|�HC^��9]�zI!��UP�smk�uO=X�V#�k�ţg{�	���pd��/�K�iW�>�����P�9:�*��Q�;r�.)-}ۙ%g�i�Tn(���V4���5M
��V�P6�A݁�K>�w\�ݓnu;K/��Th*D���
m�^ƛ�[��Ejp��3w8�īo���ұ~Wa��N��ݛ�B����D�&s��OMۗu����i�e�o��H�0�BO�\�x��w���㙭�á9�	�г]ٱ�=4��jYS[��j�ϲD��\=b��д�ܜئ���=��S�u��f��S��my����y����3;awN��ѓ��?*�l=m���j�ڕ�+vl�*�&��I��aݮl����W��Ii�R�T�51?"N�����ؖO�.��-�h7E'�G��e�;��y4�=T����#�.hfO�cEȩ����3{nj
+����>|9BX:�`��V�'D������I���!Y�N_>vI�O�;�r�<��m�U�U.�(�Oޑ6�H��Ct�I[bwKA��e���>^A
+�R��g<�]S|��e�@�����2%��*���a2�(��f�ɲ���������ײG����Mк�˚�j�����c�8:�/A���{2荐6qq����m�)�o$��ՙ*��P���ϧ��}.�}�p�:�B(��=����ᴩ����ɫc*_o;==Qy��6SK
+���Y��B�5�ۆ����?��|At}����of�f*��x�Hh�o�W����Ժ������տ�����o޲��X���}Ga��ٓy-8��p4�L3������
+�u
K�������W����0�P2he�n���Ú�+z4Os3bxEÕ��*„��*o}D�h�c4����w�{,X�U�
+[�k���Ѹ3x��H�m���&�
+B
+����z������7I��$/����c�KW3�r�ǡ0��]S-��J	nA��{4��
+_��m�x��Ʌ���!�G�;��+|_�������������a�=ߕ�Φ����+��b����X�R��_��F#��z1��7�P����A�n�F/�2L��e��v��HM �x<��v~����%)�0����p�0��T7���4c��\�e�=n/p��)u6��^��\Kyw�I5�E�+��"��T��g,w�Y��d�۰Ds���&o�qu�e�#늮��;�����y��o���D6=���W�>�tQV�Ҕ��f}:V�5�P��1Hh�\Z�$q��*ϒ�hsa��򱂀ܯ�/���
+endstream
+endobj
+
+903 0 obj
+2518
+endobj
+
+104 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 902 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+904 0 obj
+<</Length 905 0 R
+/Filter /FlateDecode>>
+stream
+x��Z�n$�}����X�y'�X�VR�y@A�@�;jI���<��>3	�?��&�խ���Jfq�<�*�"�(�J������ÿ|��F' �l���w3�t��V�[#L��*g\����fd块B)SEkI�(���g��l	X�Rf�z�^�lr�ف08�䘫��F;�I62����-g�a,d��!!s=`�$|��-z�=���4b���HDD
�X�2�X���P� �#����%l1�|����$v�R�q�2�X�0b�#��kbg�Xo*�?��i[�YLi
���4��SՊc�RZ�"L�h]C 	c�$��E�Q�+c:,9�af�0��bCFX�	c�$��,�3$d�#i��WF��;�a�
+қ���eP�%d����&�����"�11�`!kBIk��p9��%d����&�x��2�����YLimM�ePӴ��T+���Z�0���6�<��&���1aF�"v��•1Y,9�־��,6d���0&L�X�;C��u$�ߢ���tG#,VR�P���f1i�GL���x�Qr;CX�2�#FX�j�}Ik���ӈ��$b=�Қ��ufg�Xo����q�c�nk�䀯8�+c�/�4p�a]�f˜0	#y;Cd�ʘ�$%�U�W�g7�
aa&�	�0��ΐ�����[�^=��(b�)���%��˔���҇EL����#�����"�11��s�رJqӈ�<b���e�2V����ꭎ�r��P,Lo:B�!yӧ��k�<Fg+�r˜�#�{A�
LoJ��z��Vumuћ��G2¢G�a������r�B���?=R�(b��˚���w:
XĒ�G�K�D���G,c<b�9�u�%[�K+�K�(b	c�JX�:�3d�����N����D��PAqs;���ɕ�����{�E[�v�[�2�tB�^ڏ���~���ڞ��rm�A�Z{	l
+�}����[
��u��{�v�|�f���ͿgW7h3��Az����~pj�����% ���S�՛��tt�������	�e�ap����pи��X׽q�?6yv
�y��]%�.ԕ���h���o��W��_���@p׺a�Pr�a��n6b�ků�v�|^�;�X���~������ͶY�]�ݽ�b��u�������ZJ�����_4���M3���bdȊ�M&��	�	�����k���i|���	o@��kHg��J{��@ij�F�F���1	�ό�U��.�0}g`�1.�J��+c:�b�E�G?�(�pa���
�ϊ�[ΊG+^gv���U�9��++e��#]�'�U3�`vۜ�V�� ��C��0u�a 4QI=aˬk�E����o[�۬Z1߬�v�U���d�n�^�P�ߵ�v=G�-v��V �D���3�m'��h�Ӭ�����6�>���I�]o���~�m��f-��V�|�/@���V˟߽��C�+W���m�&-���)!�գ�� d�A=�R+oJ�����;JF���p2�C	��(,�ef�yTf/�-\���c�%(���0�ؐ��1�JF3�kb/��\�����τ��pj���%=�C<"i.��7%���g��O��������M�A�Ge��u1�O��G�&�����T��3��;2�����Q��(��I|m���pG@��;S�k��Z��C)	g�P)bJ�W�{��l�;�������I"`L^��`�ŗ������Q�J���<��|�q�M�gB���yD+��5���f��0}X��n���@Ct�d���׏H5��P�L���կp��KM�L�����z:C^�f1?Ԝ�T܎g�����܋Q�,޽��K�`��ԡ�ϪPy�&]a���XJj{)Q.��M���W���2X\:@@P�a$�\���|��
H#���֧���`��>V�8Y!��������Uߞ,������Ed�tX�Ӵ�r'D�0JK��$
+0����P�.'�#�4�?���1�+c�!�z. ��^Iv�?�ؐ�"[3\��$��� .s�,�Z|�Nܧ/L!V�Q��]Oܩ�6PC8���^3,톁�1�Ɨ3��1���qazj����a`Ì���^S�2V��ai7
+{ޱbC��bk����$��� ��k���5��o�+�1/�0��'�d읠E��\��
+�����Ty^
+��rZ]����	[��>�Fj,��ض���#'~y{q���|7[�Rꟛlb���A��;���\�
+�YU�d���'];��?�����l�?���oV���I@%Md��~sm�z���	���#�Y��A���j�6�>���z�z	���{�͝�e�醆s�l����E�P���s�l�?;sv��m�J�{h:(�w]����n�E[qm^���3�� ���o��shU&�:�엷������%�{\�n5�����J�
>�q�_�D+���z�D��*UG�D+H�~ɗ�\
��ap���1�X��{A�
�E�V�/8����_p���aT�!#,�cM4a����b�2׫�h4ˊ�E��.��=RcO*�RXhNk?]a�w����4���Ǵi�`y��ZԚ�x�cHpQ@�jF��KR��\��R4�0�@��.���ņ��bk�@�(c����b�j
��^�@���h�E��O+}{R�����2u���å��Η��۱�X�`�dR��~���f׉�v�‘��� .�y�����ﱂ�3ۡ1�����\⁷j�W���|�j��4��X=�τ��y'���?�����B��#�ഄШ<�w��m�
+endstream
+endobj
+
+905 0 obj
+2827
+endobj
+
+105 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 904 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+906 0 obj
+<</Length 907 0 R
+/Filter /FlateDecode>>
+stream
+x��WM��6��W����H}A���M��9l[P(�V-K[�������F�h���� X�Oԛ7Ù�H��f�rw
W�����,��[!M?�4
+&�[�� Lez�P�i q��,�A�#΄�D)B�[%��H�P�u�U��@�h��4�b?#��JGR�@5Œ@r!�g�nz
�^�Ǫ���c��
�$��4$n;�������Fl���J%�GI�d���؀��q+9�������L#6`�XDBS|�7��؀\Dl�(b�G�^{�	r�o�G�\�ҋ��b��p�X,^�5�Ѿ���wY�+�c�ʺ+Ú'�gU�lDz�`YeZ۽`�,����HEAs����D�[s�_��a�fꆙO�fv�6[\ʎ�MmMm'"ζC�m/��@xbJX�)&�~x|�~����W���L�S�k�YV|�j�mL7kS��]�]��{�F��`�쟫����O�Yۖ����(�8��:\t��;�1��S:��:�i2��n��+��lV���U�$=�`��㪁�����c��z����4���2�Vy
�Ԁ�&]�c�k�>�
��5'\!�B�ZP\����$gS�J��}�V�Zs�*��Vw⁇Z��p��x�f�$�P�i|�zY	v�YF�~��S��y��6��:�հ笝-����$)���
+�n�Z�A��7�_��,J{b��仲�|�ֵH�H�{����P���a]���ԝPK�c��v,���*vχpC�~�*�C�M�6���\y����G�;�ET��(�eU]˺�W�=�g'V5͎U������ԆD��ƙ�T�M����!�T��:T�܅���B��%�{d�
+h���u���1��B�(���û���*�*<G��}�����K�*H���I�Hr%$��D��]����L�=��2�D/�bB-��d�*T�`�(NRI^/��R��[�S��$�:1+/�'�n�vfAs�"�)0�<U�P��I:��梤���xz���
+Ҝ��s��w�È\��'1,�E9y_lm�������"|
�Q7/	���X���Y��S�լ8��Pb>�ݹm���������JD��"�̔N�O�X�/j���T�d��)�F��
�h���Ҳ�W*�]���[��%K�+��\颍z�K��kIG��;�3߷��T����
�o*V�Oz�7uj0��YC���%��mMn1j[V=�2Ye���u?b�=U��a��6�5G�h�m=-Ygnz�ٲ��S��[�c�W��t*l��j:2�_�3+1�y�D�ϕa`�#%C�L망�RcBU��;&VU���bǬ�I�,򡥱���c�ճC�T���7�G�]}�&k7�
+7�]�mf#&b�`I��^e'�?_]����'fm��Z$}�2�=��{Ln�
؃�Q��������.������J�ԉ�);T����t�m{{Ȟ=��tP����#G �����}P8o���0�@���x����5��1�i1��ؽ���#H&7pH��Q��=�r<���?�c��=r��?lB�Oq�-��ʾ?`Й�*7Q����?���_��)
+endstream
+endobj
+
+907 0 obj
+1617
+endobj
+
+106 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 906 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+908 0 obj
+<</Length 909 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n�8}���zC/"� ;�ۙه����`��(ݴ[��eH�==��?{J�l�`_7@Z�j�ԩ��
+OR�a�+����TR�3~i����*M���a��S<$7�5�+�E���y��4�����y��L��W|R���d27Ï;�VrT�W���e6�"Ռs��JAC�U�g�I�^)��ddy�3Ȕ�G���Xv�@
T�L�<���s���s��j�-��g#z Q�v�R~���{�ޣ�";����I5�GA�Vyl���dd�I����4z 	<6�"�y��?#:Y	ʑ�FI�QF-�2o�G$q��_��nHKA�9:*.��,O��f��*cb,�7�������]]]^`Y*��S�YbrdS�[0.��?��vEs���\%�:��T���=[{V�;w��c7��c%�aݶ��o�x:vE�G��;*����4����
�\�庨�EuS��ۖU嗦hJ�&�z�Z7XQU�#;�NW3���6�Z$����<!Y6��U�k܆@��o(�7���.ad�����[T�D����t�w��?�rW܆�7�㾪�
~.�D�awM�խ�$��T6�C���Δ������q5y��w]y�⨢e�"W��l:�		&�����c=G���k�o>D�eA�b�^��Q�oTV]�V��h:V߰��ڮ)�N�㶬zZ ��e�~��>�]�YԘΖ���2�ܷ���v��{
+�bQ7-�i�r�����o'm�oB�������I6��W5�r�-��p#X[v��^���xb��_�w�	�I8�&��r�ݺ�Ԑ�������)~��"����+��@Qy�E�N���j�ڟ��yL����V�ݹA(n(/(�D1a?��E��z,����q���r�R��l]�vHV�w����.��u۾_߷]��EmA!=�>>2)e_�b�
+�$:>��x�4���<��ݠ�O�b�igK{������ݷ8}b�,�7��,O��7x�޽6L�qU(VV�Ya����K�$4�{��R`�?�B
2��)(��
+�/�p�W�����\kCL���1�&��e&���u��y�qU/qp+׸a^������7}�!R���RP
��R�9z�Wt��!�j���sA�.}��[rA��0���\�iN�L������fO��Ʌ���
��O���	7��E��d�Y���D[?f6X�Z���\���_���P��>�� c�$\�ϿÁBˬ�㭩�gJqέ�����<Q�i���\fz0B
F��x/�R�ʨ�̄�	�!��"c�.z@(7p99�\���ԍ��9����G�	�3ʪE�ᶣ�LIdf:OޖH�'u�3D	t��~TT�?Q�h
+��D��G�p0��c.�Jmz�!�Re���j�B�ǟ(\6� ~�e��6�x���U�?�0D�#|�Ljd��O��L��G�F���=�	�2[�37���"�������)�
(��w�6����@�V�[)�dѢ�9��es�N�X�K�SP����3*����n\6$l��#1޴�V�"��sh2<Z�15Q����U�9���	��\��v���FR<eU|�܋�=�?������sMM0��7t�<��JĀ'��-��DW@���n(o�����K�Zx�@ƽ��e��/p��+��-�-�p����]u�&-��&M�є���G�-Y�<Kr�x�qVn�v�L&��^�T��D
�j�f��W
+�Bh�fYY�XT�`gn�U�,�3�$83@豼/h�ٌ���W�&	�<�I,o�����DNX����)��9^Six�f�?��9�C+�|G��:��r��V�qb���9��������~ډ�dX�'|^��˖U���
+2�]�d�b\5��=cM2��c,�<?��ٰj�0I�i����y��ڣϒ��q
t�W⪖��mcf������S�m�ܺ*�v�b��⹧��[�h�B��-�hlPb��\7�m9=�p	;��@C�9�5(,��kݔm__�~��oXR��+_p����+���	�u�
+d�zG�;���Q�����5�j.�A�f�0\^K�|0J�1ស.��ܱ[�w�l�­i�ڠ�:e"�&��h��I�8;D�ئ^�Ӡ���$�� �Q��~ݱ_Z@�/7a�T�;�d&��Ƨ<�Ӻ�جS
+endstream
+endobj
+
+909 0 obj
+2183
+endobj
+
+107 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 908 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R
+/F12 912 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [910 0 R 911 0 R]>>
+endobj
+
+910 0 obj
+<</Type /Annot
+/Rect [289.2885 425.5983 317.9880 437.8308]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://jekyllrb.com/)>>>>
+endobj
+
+911 0 obj
+<</Type /Annot
+/Rect [159.3720 144.8840 263.7030 157.1165]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://fortawesome.github.io/Font-Awesome/icons/)>>>>
+endobj
+
+913 0 obj
+<</Length 914 0 R
+/Filter /FlateDecode>>
+stream
+x��ZMs�6��W�8��p���`jj���(ɞ�U�J푑h[���t9��9��l�$�-�E�g���~h�
xD���_�||2�7(9vz8֫��VB�B860����e���yC+����`�F΄P���dF�L�f��a
b��"b���		>x�2����A��4,��0�٬��kV1���&v�����E���zK��=��+0�I����"�#b|E��L�	�Q��z���(mƞ�؄e�E
+P��3��
+��b�)6a^�)��Ũ#;A�|a�GMA�B�,Ӵֶ�J���#՞b�P
+LJL06�mlp!�1�����	�+`hz���(��2%f3�"s�HbF�H6�D�7��7��T/�n�X�tQJnҴ�Q�2WlB2�&�L����	BU,b�(9/Ӵ�q�r�؀�02�#�����[�8�|S�����lpe�7e\��C���G��[�b�Dv���0\�#W�p�U4�.��z!�E��[�Rԁ� 2p��jqԿ��\����b��PP����V�ؔəbq�M�)bq�Ev��F������V�K�l}�U,`d�F,E�	�����j*�����3P�B���bg�b�����%+G�o�V��
�������fT�RW��'p��Zh!�d$�������$c�s��Ԛ���.Fk�����9>a�p��)/gK<����kq#8X��(丩*��,��"�7h����X�@q�K!qV\��LT���rڸљ�zg�/�;#9S���
+�Y�G�p�����}��E*;��:y�ʴ��*S�e*�I�L�,�3U΢���l�z(Ks�ʴ��*S��*�b��p�T9�2^��v�B\�2�|�ʔd��z��Y�g��E
/R�W�2�i�U�$U6�U��=S�,�h��I�)\��Ӎ50�G��?�����=?T=��v�����������`ƻ���Q�O<3������ȍ�?�
�����
�{mC����6��{j�	���P�x����x׌��H���k3X5�VS��wͨ�L�
+�Z�@��R����5Ԍ����-߈�Z���G3���i�����~��l�zv�\w����^�'V5��KǞ��'n`��5'Y	��k��3��k8�Rxu�-)`��n��C����Jq7�	�f��-���5����H�)a�V�=!6qL�[v.����,�㫡U�! �}
rňb�udOH������~a�I�`��x��p��-�aC#Nj���3���ٳwZV=>����k�i��+�ڧ�y�jț��Z��?6��>��%�p�p�iA�!��	����#zl%\��0�(a!�U	k��!(�I���N���ӠL�C�����*�<�F_�'�Q�Rԁ� pn�[���m�T�H�G~nԬo�"U�*�[�M9��vǮ2�m�ð.��E�
�۴����n[��(ɚ�b�Y=���&���vw�G�t=����u��]�q���=�H߭|�P�����pN-�,V���Bp���J•?x��� �_@�Ϡ�������q
�Z&3�K)Oz��
+�>m���gUb�F�i|%vV�	8Q��w_(7`(J��������0e���o9���_�h��Y1s�����>�>Y�J��{����VZ���y{e�_��c}��%���0z��i��*>��Gp1~z���T��6�3��������pM�k�pB@�3��O��aLB���~�;��S���߿��.������a��/ab�w�'t�
+g�?�(@���ۇ�~S��ͮj�su<��b_w]u_a���'�1	��f�������=��āOu�)>�
+���c�����۱Dʶ��e]����pj���u47TW~�ꊗ}�[hS�֟�#2l��m=f�]�4�3���g�dL������/��8^���Lx�v̬��}~�Y3�\{v_�#���M������,�G_�X�ܐ62~�g�����1�}G�m7O~_��]{`��"�j�}����R���W	����fĿ�b
+@h���pK
+endstream
+endobj
+
+914 0 obj
+2062
+endobj
+
+108 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 913 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+915 0 obj
+<</Length 916 0 R
+/Filter /FlateDecode>>
+stream
+x��[�n��}�W�ѻ0��_'�mI�<@A����V29�1f�?�&���8
g�Ux�=�:�:}�YMru�����EV�o��t�T �_����?_hmz?�*�Φ80I�6�<M<2̪>��:�m��+H����T����0�ր�^
+�\����
+W�ܘ��c��^��)O�!w4W���aL����\_�h�O�z��w�z%���b�ANƙ��$D����P�b%���BAX�2
+��p�*&#��6��Oe/YZ/��P�bE��a�5�3D�Mc���F8���܇���mҽ.T�3}V7c���Q4uB�̄1cF�"v��ƅ��ck��>F�1)�6D�̄1c�$����u��_�[�YW(FX�e���&�E@�Y,�����#�����C�+FX�u
+��u�RG�XE�bceMX��"�6S�*��Ѳ����scZ�ß��i�8�M.3bܘ�5{!;CL�BL�v�",�9Ō�i�9 �eF�1&Yeg����U�e�5�r��}6*���,���UD(V1^ֈ��Dv�0���í��!��F��~_��b�b-kdg���~Yg��禲.@١&em�99���xi�E6E�0�	c�$��E�q�1���%K!7cR�m�0�	c�$�IV���@Y���P=��P�0߻̛p�ˑ�)V�X���5aT����b\1� R��ʺd9e�b�U��5a-kdg���~Y��{��=z�6F��\���޻��1�G��#�eF��f/dg�n\Hck���|�͘�&́&3a̘�1�*;Cr*�W���׬�#���dV֐�vSŴ�WLc)b�!֊����P����hl+�wS�d�؀��&��&v�L���r���Y9��Q��Mé�^g�S�0�7šk��!�q!�c����o:�F%��b����!���X����5B������5Gr�3l�֒w�
�b��B1�0�'�Z�!;C�b�q����1�U+L'h�XE�b�ՊX��2��^�*����o�c�g~+�qupF�p��~C����>�ս	.q��TJ�m!�ch0�bVC��E���Y#ϡ*}U�e՚�R��sU�:!��e��U��
+X�~k5��aJ�k�B
+6��&d��P�\�
+��D�=���
���xsQ_H) 5�c�3��0;�}L�v7����]�|���7.��?t7�����L�m���D����B�+��)?ʅ\�LCUb�ڃy����|��ሒt7b����k}���v���hBy	1
lC��[ ���)˂����E�W�k*��a⑅;8B�_��Y�R(��C���C���9�!p�ku�p�璕��0=������6��әh��AAy(}
sS���:����p�����G����$3&��]�	��A���,���҂`��g,��*�H%&�Ă��f�-:r�,�*ϗa��g!��{a��6����%���p��e0����jxR2�D���ո�b�l�p����|�S��������A$��X����������#��}�HA���%#�x�����|��K�A� I/�YL=#�Oz�Yn8��:�CF���v:|4�4�yR�q�j�<����pϟ��e��[�<**&>kCڊx�2��y��a��boVs6T���x|�������nP����҄!��t<R��& �-&����ѐ��&�{ZwC;���>�J�t�>-��-���;n����壡���l���:X�������Z�'B�[?�^yjR>���=Kv��Un��/���R50_�D��(USz�<
s�}]��T���t�䞭�I��	r�o��'�b&hZ�'5��~?�
�����{.�2�g��'�Hg]��>#9�w�<M��a�V�H.(H�u9C�񕈟�
+6�8�H�ǗE�<'��C�.�_]�s��b^t���Ù+���]_��(:= �`It��Y��Yѧ��E׉��'N������ۂa��t�RnZL�>#7�=c�<Mn8F�v�&��#��B+�$L�}�im�p���C�[���n��Y����;��&�������O�ma�=�7cx$�������S�d�,3�3����3�1
P�������.�������=��.B��}O�eB�Ȭ6�}�m�<{����uZ����77_�������������t���v��v��oo���n�����v���{�v�ߞ���
Y�����t���?Ø�X�4hov_Wϫnw���cq�l��u��{��U�s7Ö88����@H��L0���y�	#�ZD�����p���=�u98�yz6E�j��VL�7��i�nNj�H,���O�B_��luJiN
O�����jVFG�X6P)c��_t� �I�T�����1��/A�/����%f<�����������qg���&���c�m�;@	U�I�ÔW`�Ϝ�|�;�4�$�*��eN�
B^v�)��F<�[�J��<���#,It|'ٓp�ƾ��g�噆��U�F����+o}#�U9�`<�7L��x��Ͱ�[f.�����s����r�qs��xe��qg�K
_�M��oC�#?�yW���1'n�/3�����Z�?����=w�u����������O�N���?_l��*m\e����L�����^,��аB�>�0b��
+��;�†���Ar�?�ߗN{;4��WXs��&��k���V�]�[w�X��׈���y ����X]�z��$d����[�a����~G�{msm�B��͟�6�����)�0��<���n}��뾬6���nu���\ݭ]m;�����#��i�H�o���׏���@���3���?�6����Ӧ�/$H�m�t��n��Ή��?ܯ�Ke�Q�r�eU����d
+��
+endstream
+endobj
+
+916 0 obj
+2960
+endobj
+
+109 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 915 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+917 0 obj
+<</Length 918 0 R
+/Filter /FlateDecode>>
+stream
+x��Z]o�6}����i1�%)~H�A��$��/��fQ,�Ŗcmd)����������J"y�Q�}���c���~Q�H8���&��'3��T΀�?t�f���'y�LB&q+�i��`)O�6�	�&�R��4Bh7fF���V�%)<��|���1��$�\�\S�TJ2�nr9��{��v���z�-�ڳD;�ä^f�yS��PgJ�T�a`�T��!"���b3)6ch�M,Rx��{@�b3)�1Zg���n��X���1Tl��c�j�N���-��d2Q8�H1�pmd�7��iTؑC�z#���5�� 2p9L�Iʹ��M��(���)3�
+{pU�a���v���+���ޙ����y<YI���}[�� �)!�bα�(�0���2�:�$Z�J�c�f$Rl�h�:,X��	��p��k�4O,Ldif��Mt��\��@Xi�:R�$�6:8��;F��dn�D����w/�N�rg@:PSL&�gYpLo�߃G��#��1"��N��q��^���ޙ�y׍�,��a�9x����H�#a�1��� D����"e�Zi�h+6#�b3F��c�j�N���-��B[��H18N˳�o��n-�#��<F��c�k;AL���Ԧ��c"�4����z!�y���Ǽ՞� ��z���w�z�#�b�`�&ъV��@�gO&�e!�\<9,Ĝc'Ql�"�<&ii����Ċ�H�،�h���ڳ$��/���R�A�0t��ffY����H1��$uLi�Bf��=F�c޽<;A���0H��1%t#*��.��{p��c�1=F$�����j~S�L���F�yL��ҰF��X*�ŗ�q���|pzv��FsؔM�;؝�K�Fd�؈���X�ڱd�o��=@���~�i6o7c�J5[�^K�nw��݀W�	��o>p������g��&�ȗ3$�q���톢�Gf�!	7�x��f���U;��P�
���ewb��L�?��]Hϼ����1�����W��D���3����蚪�������F���i�N�k��}`�»:'��Jr�hA"��H�����P�m[�뷇�X�c
���}�T�o=�w�}lۡ��1a��շEÎ��ڟ�նmzj�_>��/`����YS��r��I<IU�VM���OO�7��+!�{�c�K�ǻ�C��h��h���Y��W5M�\%{����	����?��WǪ.:V<>vm�=L��5E4>����W5�
�u[�F�G;��ok�u� �
��~�M��,��	]T\)(�:j�C� �\�}PB]�7Zh!�#���{��$�!	$�\�<&�iz�.U
+�(� ���8�%|�%xz�>Sp��E�,���Bڳv����%E��՝, c�\҈ݞa^"8_N�F��"ሗ��~���V��)�5��m�i�+��'��
+4�~��g)!9���c�����ʊ�V�PB��v96�\AL�
+��\+t���^u=:��Nѩ`̕�M$l~��O0�
+���U�
܌df'����L�ΰ[X�j� ��n��p����t��Ɯڕ=$a�~��~�%w����k8��]����0�O�=��O_9��9k�c����
�#+�ڧ��-��1����	����hh���sW�MnP���E5�@B,��˫�b��ctZ�*�\��7m3�˗r�^]�uEwZ��i�᪱�]L��`�YC��\հV�R����۷uݾ`�F��a(���,��]�\�O}}JV��������^��X<�S}ރ]=+�aoP����J���?X?���+v;8��S?��#$kkJ��5G�qt(�T�E��˵�Rt
+/��F�581>��	N��E�/�*��}��|1?*�:��k,�a1���+�i����2E�=
+h��)��Z*4�
�L��9�b���7�%@��p9瓦���BX�aV4'V��8v^x��`]u�4�@�In�ް��H��d2���)�r�0� ��6�Xf��(	
�<fF�У����,`5`9��R�ݨ�� �sy쇹�	Y̊�vL�8*��!�Mث��M��a�j�N�Ƨ�iZ|����@��z�3
s¹��*�S�N"����8r�}��_��fw%+�1�wLX����+����5r�J�>=�	��3�x.����˯�&�Fl}���g/m���	�	3��	��"v^^���B�:Z�.����4�
*�K�e��!�a��YM����I��ph��X��ʁ�-�Ȳo����ծ���b\f��e?�޵%��p+Re�!�tM;�b��P�JGt������
+��� �lV��	y7��*TP�<��Y�fD9w�|)N	;���`�E�]L�l��m����o�]9��I�]-u��5��qy���?�Y�2�'�7,�:����y�ve�Uf1��9�\�@��v_6eW��{vUn��Tr��c��[��I�1^�\>� '�*�����	������xl��ؿz����Fxt{�j�Rܗ�ƍ����
+endstream
+endobj
+
+918 0 obj
+2520
+endobj
+
+110 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 917 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [919 0 R 920 0 R 921 0 R]>>
+endobj
+
+919 0 obj
+<</Type /Annot
+/Rect [278.5995 349.3985 382.9305 361.6310]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://fortawesome.github.io/Font-Awesome/icons/)>>>>
+endobj
+
+920 0 obj
+<</Type /Annot
+/Rect [370.1595 147.9700 456.7980 160.2025]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://getbootstrap.com/components/#glyphicons)>>>>
+endobj
+
+921 0 obj
+<</Type /Annot
+/Rect [232.2945 95.4700 326.3145 107.7025]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://stackoverflow.com/questions/24960201/how-do-i-make-glyphicons-bigger-change-size)>>>>
+endobj
+
+922 0 obj
+<</Length 923 0 R
+/Filter /FlateDecode>>
+stream
+x��Z�r#���+���a,�mB1j-c����|�J˘KIy���>��8Q$%J$�>J�,=�/�խ�ğ�q����'������w3����#���3�����Lz��W3R8�d�� !y�l�����`KĂP��0�q�^�bC��3:���G�;�I6�����-g�aL���S���hR�1ꝫ^���T���Ot�		Q�WL��4�e,y�O�%/}�^�X���BG�����KZ�2�(���X��0����*�O�ZP����{U��
+��Vs�E�kb:�Q��0�	c�IXM���[�2f�`�i}^*U��$a2��0&Yf�H��Ͳ�P�D�j�r�sB{�kY;�K�b��S̗�W�Z���!L��5�&�jY'/�l�H�X�XYF^;C�|{]�&`>8G�p]�~�	�~ʏ��tB�̄��$�ҋ��+c&����&D�BMLr�l ��LKL˜d��"ņ7��C�գ�m#̊�n����U,#�bceM'�3�)��F���OAE�e��j�؀L0Vք���^�I��.k�0Aǣem��VS�+51
>�0��d&�%&a5�
+;Cd��7:���C�X��$a2��0&Yfg�+\o���z'�WS�+F�R�@-k�$F��e�Q,c��	��Y���X�aV(���u�R�V��4�e��5a�5�3�ͷ�e���+W�IL�)��V�[�'��9ZK[Sa�F��0�	c�I��3�V����ip`�1Ykb��Ն�0�	c�I�,�3��7��C�գ�m#̡��ֲN^�*��F����&�����+W�0X2��u�;�b2Ql�XYV�.�i�����v�wR���
��bj�����d����g�U����w�O�����ﺻ�g7w�-'�ES��;��:S��jn2�����jycx��):�!�S���=Ck�±�Nk���WS
h�gw4����+;���+%XޒҼ/e;�)���l��'e;�Jَ?WJ����~KJ8"e3�)لS��SΔ��j�Kٌ?WJ����m�
)�)��H�&�*%�r���Tw\�f|+e}
f$�q�|Ƴ��$�_7�t_7/��/�}7��/�I=��1Y-QS��;�އ�����G�)n�SX,R��A���<� �:
+�Ul9�h���a��<��3�a�}͛��0�Lke�ʎ���
A.��`�q�G�^v���U7.$�������zֵ� �Ą��`���;��
+	*��Ͷ��i����o���[<�׏}�����n�0<?l���y�Y�݁��eh*Ҧk�V�@I�k��sW��``b��F9�(�4�x�R�!	c�����5����[�-���
8�H�U,��&a�$��gݥ9d�D�7�!�K�[u�d�A�
+a}QO�xI=���}��o��vC����e�灪����6�i:���B�C-�N�)��?.�~II��^vC����:&V"�Z1;�5�b'�|�=��R�1I=�i!�V�u���aK0�*�a
+��@�0��{e�aUm(H��ւ-gգ�1%2;CT�:�#�ZM��q�ΨC�����F�_��>��z����������L]投@���dA5ڔ1f���x�
���b����GvBj�FafXDe/��6�0W[k��Gu&)Q�+rr��Zo��������c۟����S*��m�X�w�~'vH� 2�|���t��
N�v���՗e�aҥ[[��m�𛷈��-Bõ�p�6
+�[��98'��͡Y����X/TP��:��ԇ�zJ0e���d5\??<��gE�"���ݷE�~s4��!�eۇ�}��W��pVd�A�����t$�C
����<�����r�龼�G����-���=��R{���+�G��N�=�<=�;;�xЉ�ԐH��_��/j�=c�S00�����N�4�c�j����Aғl�Kz�ޱ�����iB��J��$�N@��CΪH��5�83*鸂[�3*Ҡ^Ò��Ō�t���W'E�# �Tc�I��V�j���j�����W�%#��'K��^Z���S�\�I�i&uU=�ϗ����s���xm�F�j+���ZIu�.��[�һ�ɲ�e�P�X�2�:JU�.lR���r�ahR�b �u�O���AM������mĎ���\��ѩ��95Q�-�7"xp�9������ó��~�o�~�}w�/��?���{��(�8�x)�������r�Nn�tM�v���K�����f���[}E����ܿ,���vH��vz�!����!�i����A���l��
+endstream
+endobj
+
+923 0 obj
+2355
+endobj
+
+111 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 922 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R
+/F13 924 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+925 0 obj
+<</Length 926 0 R
+/Filter /FlateDecode>>
+stream
+x��ZMo�8�����34��` �������b�r��֎�����g�a��%�XT+���������X�X�*u"2?�æ���r�����9֛�7<+��@��[Y�:�)��&�L�Z;��a��l7��XX�	G��.�{D���cyi��s9q!�3��dȞ�r^�> �ݠ����1��	b�~V��<W��9Ki��b�Z:}���#��G�<梴�u��(m�����Ӡu����y��I�H��ǜb>"�0jd'H�o"�7j�u�q[Lv~���о�q��:ӎ��X�q�˘�F�y���1���az!;At��6b�$��e��,bbb��"Df�Hb"F$��	>IJ^�������MC�d9DzvQ�"01n_>D�<�bX��N����1*/bY���TlB�M)k�0jd��Y�-���9T1��(fa�.b�iYΫ�G!�!F�
��5�� y���18	K�M�I�D=D�z��|C�Fv���M�]��3�*��͌�E�V-@R�<�(�1R��Ś�!�y,Q1�t�Vez�!�(����G�F��I���	K`1Z�؄
��]6a�}�w��U41����z@�̈��D,�W`'��\e��h)f���"&&��> BdF�$&bD2�N�2p}�	���B�b�R���δ�W���D1K1^�bqv��<�(��"���R��bI�)k�0jd'H�o��I%�μ��q�a܇���S*���w��n��׏����J)��F�ɝ�byf3;mxA�p��v��	'͹���#yv�� 	�ќ��TV��
gK"L|�!��t����ǽa&��"��Q-�<�\B.��M\�Ԝ쩂��!
�r��[@��x��pZ#ɐ�r��v=Ƹ'���K���$�"i>i~�o��������:^T�~����%�`#��4�Vd�� ۲��W��Z���-�w�ʈ)�����(���r���2��P��Rh_]
+�3U����������)�.o7�&����#�v���t#|~p{����O��ߛ�[g&��ҙ��/�����c�����L*��ҩ�a���b_��ٱ����U�ݱ�@���y�t���qS8�H��뗪m��8o��Sh'�Oݺ����Xm���>�a�?X���q`]��]��������:�z����4��fܳ�?<�G�	n��,��š�����a۷@;V�;=�<w���{6<V�:c�`m38�������6�l_}����)c������x���z�>��}�ݳ�8�?���J�����.�~�c����v���Շ�r<��$>��p:>��	�����ޱj`Ձ��}l�-DY��#�AҎ�-�0EvW��籩w�[�$��0��H@Ş*8˦k�
+��'��C��dʔG��ƧV'!	��t�L&��d�\�lĕ�����Iy��V.�~�BV7�Sq��yn�O�t�d.�.S�47�_k�n�g�yﰒ�U�Z[�Ek}�՚��
+����T�����Vi��vBmJc��Vi��Dܙ�T7���ZA�ֹ�x������݃�����
�^j�����q��ٯ�����,g�ެ�[�Wݳ*�Z�t���^o��qo��N�}�r�/*f���� ���X0d�y����ݭ�3p�e�,��8���gR�`����w��
+�n�m�:�}��kO/|N[U�U�7�x#�|u3��x#�|u����z���������}>��F�?�y�r�ٶ���l�����j���M	?�!]�k	m~�{*Í���&���*\��E�̲Ck�v�I+��1L
+��!0��_��:�`;i.�姕�J��28��D�{f�S;&����Y��+������4K�%�u�%Y�����-L����óf�7�=p>����t���7��kY����t��b��E�˶?��V��
+�󅍥6�^ݰ�F�P�c5ֻ�������������3��o`��G��s�����V�����{��~wڎ�P����贯��D�&Ŀ��pvEX���,
+endstream
+endobj
+
+926 0 obj
+2055
+endobj
+
+112 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 925 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F13 924 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+927 0 obj
+<</Length 928 0 R
+/Filter /FlateDecode>>
+stream
+x���r�0��<�]&������N�3vw�U�.�C�!��L�}�^Y�Y��֌����{$@0N?�e��Gy�k%#0����M&�d��u�rn(k��L9���t����)�r�9���:�h#�j")3��3��L�Ĵsg���4���N
���f�s($��fC"e�ƚX����D�'ĝ��Ch��q:�����;%�'vbԓ�2䣉�@�xi�X$��"]f�Db�K3S&��"�%��e*ǐOT]*�'�,��Bb���R�I}B��m��%'㒓�)�6l���ځǺ�f��&�A�_k��H�Vk��
+9J����B�P����j��V�U,q�6߲�M�O�9-#��
��jt�\��j��E#zQ9i�+�PP/�6EG�E##�s.MGF_iMg/Y�e4��5�`��l���gM�L��E�A�Ӫ���{����z���oK��e�t=tۧ��o�+zv�t��hpqU4MwP������[_A�Bw����x凢nN���+�D�r�2E��ug6����ar;�ĔB���^<;o/gV��Q���ج��~e
:&�sc�9���a~.�v6$CoD��{�������0�η�/_���/���� �[�\���i�$ŋ/��cӄy�{�ҤU]y��v(��k�'���C�U�r����t�+?�Ֆ^��L�&d'�;��kjѕ
+endstream
+endobj
+
+928 0 obj
+687
+endobj
+
+113 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 927 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [929 0 R]>>
+endobj
+
+929 0 obj
+<</Type /Annot
+/Rect [320.5890 591.7409 393.9000 603.9734]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [99 0 R /XYZ 0 732 0]>>
+endobj
+
+930 0 obj
+<</Length 931 0 R
+/Filter /FlateDecode>>
+stream
+x��X͒�6��)xt;�"���43���&�v�6��ҋ֦�j��Jr��[���)(J)33;97�8���������J�����(r�G�W�oWi��b�T���R��a�1I��OdB�d�&��3"���9u�D�,ͤ��˄���)�[�ʗ�$Ŕ!�i�1f$�ja�'�Q�]1%�dY���dL��'�3��P6�җ���K���$ە���ʕ���<�FtO�&��-R�����Ȟ�$|ɘ���R���f)Ґ�Q06�L�2��x2���=���(s�,�R~Ft��ɐ�Q06�ccFN�v�d�oL���"�F�sPB���x�E�0#vz��l�l��F
+ ���7!�/ Ozy�8����~��tzs����	#d4
+��`����Uiy����d^?8V˹w=��L�Oe�>�$�1'>}�Y`����t2����-��d!&п���|̩L>�,1��rs����_���&-S�l)� �����sI�'3��޵Li7�+zQ@O��������݋3S��y�Y���*�l�4���0���)��V/�8"㞱ٯ�o��Awߠ͟�ۍE�A;\�d\Q���̠z�9A����OU����� @Ζv,��V�bp�����}S�t��z�N���I}U�~\|0��s�g]����`;��#l�6�¸�_�u��n�5Ǿh����eQ?D��b���˾x��Y�{��6��C�ۦ�uݣ}�T�`ߴU����LS��5$K�I�T(���B��c�]˼�Yn5\$�Xb��V>��]��j��2�~�ۏ��s��������u�?�]��m_�M��ͩEGd4k��Ø�3켯G��l�����Ĝ�XNP�*��V˕k�8/��sg���F=�9��1ﺁ�c���ukMk�w��1�.T��肆&P)��2�`F2˧B�v����T��k1��}G�I*�-�^1ɾg�]q��1��ރ�#�`˸���w�/ Ʈ f�QK���	��Ņ;�	�fW��Ň�Eؙ�����ZF��f�L����ˇ[B��|�e�\�EJ)��9n¹J��-���(���`ɲ03x��./
+y�l��5yQ�K��e^P��-��)N�,!�2���u��!Lhb�t�$*�����8�Q��:��_C0��Ђ
+r��)��# CF���d7��h�B^4[�}U�B^�_�-��Vc�C}���.��y
m9�<9��7��d���dS�R~�:2R�P$�]!�����(��r�Ƕ9µ[����χ��`��?t�����?���;y�$�1��z��m[�r�b����g<�}Q�#�fH��[�\��F	��~Zh^
\:�����n��\�>�:�g�s������^��ԝ�-&ܾ���V�[{��o���Qx��q��g�[/5���%3��r�r5t+�I���v+���]s�Q��R��7Нp���`Fptl�b�+�Om��3Y�~��Lk/���|�I�>��S�K�^��	�h��>�&й*aŨ����a�6�|��]W�eџ�����/Q���t���u��]�Qs�岋�c9׾��G�R2+}.v�6
+�r`Eu�Р�����G]v|��O]������U��{�>�z�c����懅�n�7��#:ͧ
(��d��]7K`?��qOp:�o���k��Vw��w��h��WA�F�	/S�9��V/�RtӬ~
^a�ϒ�S��)(�Ŋ>�(�e&�XI����*s�ă��\�D7z�M)ɞ�Xz�SD:�����,M��}�����O>��?�:���bw���x��N���M�dY�δ
�7?w�?�-N'���X�ho
+endstream
+endobj
+
+931 0 obj
+1862
+endobj
+
+114 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 930 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/XObject <</I3 934 0 R>>
+/ProcSet [/PDF /Text /ImageC]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [932 0 R 933 0 R]>>
+endobj
+
+932 0 obj
+<</Type /Annot
+/Rect [112.5000 104.9612 197.2500 117.1937]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://jekyllrb.com/)>>>>
+endobj
+
+933 0 obj
+<</Type /Annot
+/Rect [112.5000 89.0717 197.2500 123.5717]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://jekyllrb.com/)>>>>
+endobj
+
+935 0 obj
+<</Length 936 0 R
+/Filter /FlateDecode>>
+stream
+x��Y]o�6}���cZ~K*��I���;��.�@�Bc+�;���J������gϥD������6hc�<�����K��8~����ݓ�?��=���zv��L��Ө<+�VLy7��Q&?X��ә0�3!TVhM��^	a���a5ӥa
����.�{�ȁ�c�w4��L�B��ݻ9����l��c�l��c�d=��xV��gE���{գ�Ҍ��r-I
���M�X�$��y�w#/�=B"�<+�1��KI�xv�W"U�G�z��yl�ڳ�I�ik�8�4X$���[(�nj�m�i��8�tV`�h �ɭI��v��s TFw�¢{1"��d ݉e'�v�9I'"��i��Dh�P�0H�/:<��X��ݏ9,�T����3`�*�.=g�'DȹMD��	y�b��=!�0"��[�����8l�X�KE���윲ij���)�#;�l�����+l0Nh�l�*ga2U�r�q:�L*�Y�Ր��>S?F�S�H��������x��/t�9���0z����`C@�L�(�,��g���s�P9�T�L��iH�|�ܪ�r��R���T1��|mX��}@b�z,Q,`E�d���I^*�*�#�b=U΀�{���E�.��˅�x�=�]��,���ۻ�������_Ŏ����٪zl7��W�����mG�t�Zc3������	��ͮf�mu�߻U󴮏	����Y^vl:1o�?�d`<^����UG�y��}|j����U˞�O�s�kY�g��c]��np[��^F��<Xp�t��V�3r�f����\�f��l���lB!p��3Y��S��
��-J�\��ƅ��ʑ�|�]���P}�)h�RR��Z-��7Z�#������������H�Z��ߚ�۷��n�‡����L�Ef�x2l���s���j���h�Bf�4s�[)rpA��RΪL[t��}�H�I=˗gX'g8p�e,�\���=8]Z��a���4���x�D�6��/�)p�L�>$}���z��$������lO�T
��—�c
?g�2/(
+b�A97r�k��i���/�Z�Ve�	����P��On�������,�N�~�
JWS��٬>Q:�:��6j<Q&��a�Y��c?T;�CD!s��ܾ�v����_fHR.秇أ��̪Ҁ�7
+�ٛw�]�g�L��8���e���2{<��C��Q 5eݻ}��?��oh%����HuŔ0�;�� ��+�w���:lN��/��Z�Ν��w���\(��$�Uۚ��\�O�)ܧ�׭}~�dN3
$fbe?^<��Q�~ůj�f�=��~�jr5��ۛX5��b�y�և]�n~�՗�6���ժ>77ͦ}v��ǫ^q�R�VS�ÿ�c�\1~���B�����U�cU������P=>lVnj��sŜj1^\�?v5����������Җ�*��][�FB��^�w�Th��Û����\Dޛ����C���?�\��^8o&�)����N$�3˴�o����/�;S⬝�,��1�R%u��x�YuWB�aO�;����Yq2�+s��c���I��bl�I��
��(��9_�^έ��=K|3T�瓵�wd�3�͆�c��\E����u\-�&�D���B
+��b�����5K׀�NS��Ļ2���x�t�~�<���z�Y<��h��ם���%9U\{��̗��
	���5�֏�F�Ki�E-����C9�^R����x���,)ܗᝒ���ƫ�+����WJ4���7;�'`":]Ci��͈^�9����8� Ovv�4��H�}���,���P�p���ȵ sm3�]�v�4��7�`S�IK�(2��}�6�R.�f�����i�L�q�ol�
� �L�X�+�0l�����&ʳ��/���6��	�hW�>~�;�!0c7^�ԅ@�E>�R�u�j��>>5�7��w"��sSfB�e�dY�5]��qk�rw���Iy<����5ձe�5���E���5tB�a�G���Ƌ�֟���<@/J}�z�z���L�f�e�g ԓ��V-����=m�qO���cB���A�Fႎ�c|kAo���a����?[GX�
+endstream
+endobj
+
+936 0 obj
+2112
+endobj
+
+115 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 935 0 R
+/Resources <</Font <</F2 509 0 R
+/F3 510 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/XObject <</I4 937 0 R>>
+/ProcSet [/PDF /Text /ImageC]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+938 0 obj
+<</Length 939 0 R
+/Filter /FlateDecode>>
+stream
+x��]ے#��}�WTľ�+
+���o�e����{����8���ew��9��3��|H��d
$��q��`)�:$2O&%�T�g�^$U����5"r�^��������&W���41�Ÿ���~��[���:j�O����E-�1n����W"m�Ɩ��n�M�Qr�����ܳ�~��P��r!=�x��)�%�WtT.n:�e���2��f����?�*}Y�rq��Id.������J/M��S�_+e&�/-�<Qb�8�I֤֫T�:�iWZC�T$����F$+��%��
d�\6�V���>J��W�9�f��(�2���6�
C��
�d��5Y{��{�4����,>,��i0�x�M�T���\��?��s�O�:t0�V��9�����o������Y�������A����ŋǫۏ���a��8l�����_o�{��x|������@k��3��.�i�x��'���W����nX=�k=<���3
+�}w.V�6ʼ���#�����S\T���q˔���2e�=5I}��d�t��ؓ�b����5T���6����[��U:�3=�c���QˋB�R�*�����E�u�$���,+*Or^�R���EB����C�_������&�mp߁�9 *�s�,�I+} Qe8��Q*/1�����	�w�J��D����ٰ7Vj�vG؊�M��@挘�qF1�ng�q�݋��(��24/Y�W��D���ljč=ю�qʸ4�ce+Wg^��r���9u�����ɇ�6��7n��f��k���|���C�W��mD�۪1�����X[ƣ,�.V��V޵6
Q�k����ڑm���Q2��&�0�Z�j2x�<^�w��U��$ފ��0U�����u�}�������]�K��瘆�EeG��S���#���s�����3#�j�{�a����F��D�Oto؟is�d?������zx��zخ��s�K!!�0��t!ۼ���ls��b�~)6p�l�8�"{1Η3��B9g>/���*E�Bh�B��Q�\ec������j��خ@»�[��&��T��>�����a����>�@��{�����i�QR�fr_Ͱ��Lؿ�@������(�����ij�da%1�tdI���1	�О���+��J��+]Jp��}�O��L��쎄�/��T�f��n6Y2���*�T�~_��0���ў$��ĉ*]c��V`���ME�fª���Ŵ?���J�x�螅�j�k�dE�+���U�l}=W[U�UK���6����L��dt�"��2�e6S�����j��Ǹ�mB���RM8�z{�T4��`ܞ��^D���g�'��p>�d�xk*0Y~6��/'`�B+y�Y�
�'��3Yb/c�q�	�__=�1M������u7u��ѻto�y2ۗ�����|�����=���	���l_
+/��X��	���\��U��Du�k��lB�ڻB�t��V�{"*c�dmݝ�������:�ﺚ��l�BH{B�d8'�h"�j���B7E�����ho�fƯ����㋙�a�L�veg�W�1��q���aVy�&�ȏ7�}M�I�Df�Q��4�#����6(M���n�<�F�}�9�zs{�(2�i��}�fզ��r��!8?��og�����t�BU=��8��MaRaG�I��:H���$7;¦������V�a�'���f/�G��	��fG�^΅�q��:IOL'x9`��e��a�c2��C_�f7M9As����{��r)��͔�EM���"�
+}S������*O;qM�Ti�Uun�_.i��$�;78&
+�e���7z��'y���K?��a?����
�	�Ip[1��~|�3I�0� ��+��&b��k��T�$������$8l��"�c+_���8��~B��;d��VR����]	蛪�U��������6u�K��Ӻ2��J��Y%K�ShD���EѣV�[�V�D���fkf��4�(��(\Ww5��Z�C,ޜ��T����-5�㮈�6eu�PUZa�D&�j��]�R�#��cfҥVU9)��B�M��h�uHF��%� ���&�JELr#N�˰����M�[J�Ib���j	�^�'%y�&�$���*c�R�sT�Eԑ���	w���9')e��9�dw$\[�/��H�:�c|�յ䚊��y4��VF�:�v$X�mZ+ا֓��JIJ����z$Q[�iMb���9ʼX�H�&\�]$5T4Dm�ւ+˴Y(�e`�Xg(l"$�(��E|���3�msj\�����ŋo^���Q���.�Q��d�V���=�T�Y*��a���N�l<����Ha��s6W*�S/�lB�I�s����,�~P9C.� ���nV����u�˻}�������a1���z.��nƧ~p5X���J�ݚa�R��4�\�>3c�#-5�/y��j�K�=.��3���臑��A&�7��@��|`	;9�7�0�mPi`����a�>O0�]ͦ���a��=~�"��n\����	����q��x��\���(||y��
+vF����B���W�\6�(ǂ�i�����0���Fv����	��2�Ԙhv4�ap�nU��Hws���h V�!�9��0`�0π��L���lҺ(I0��r�
�G��N���<����s�<��h��(��&�����	���!����F.6��dR�r�0�p۱�jؽ�f}��~�s��C���u#o!�†	��`��W�9^
+��h$�VT���_D{B��:�p��#�IAx��v�HX���'xX.IH>���.��C�-��_��a�V��Y�k��v��2��"���Tb��J�	�4E�1}о{08�.��ՠ�@�a�.P
��g��.�a��U��>!@� ��`$v�P4��1ug'�xG$��$�2.v�#04�����t�^���������Gq�D5Tݝ`F������D=�Qn���y	�h��(E�F�P��:��p>���0�<a^"���M�	��r׏C�v4�a�|�7a��Ԝy��9,���(�m'��bэ��)�f�l����2����S��0E�M��Ϗ�लg=���ðO����#%�8N�Ok�@9�������%yDo`Ke�,��~�S��_ɝ0/�k���00��Y�~{��0�)�N�����F�6���Gq����2�]��g����g��7�8��|t >���	�Ld ���y�x}�PB82���ya*�x����őX[�Ò^!�.�b�1�KYo�%`?8�����"@=�Hy�)3�Ag��-Lh�g��p0@L���Rv�+o2����o)x��T)��Pu�I��2Y1��,7X�ā\��Sw�%���I�D�~<�={8NF ݚʧY"3����&�#�~	L������k���,sT���d�q$l<�DN�mUc�UE��Z`����Ǒ�}r�3r����o��U��ƚ�8�4$���5P9ݯ'�i�sZ�K�z��Ǒ������l<�*�`r�.�y_��X?�$,��E��0t�H"�zh�%N�t�֏#�^Ű��y_/&ܤ)o#[8;r�Ǒ$,��}0`��H���r8՞���h�3�G�X�\�g����n����`Y}ζ��������H�u#IK�0H"h�<k�ϳG�μ$��@�<�O~"���
�8k��S�Ǒ8x��z�hB�n>e�7}�b�e�'i,���Č$R��ϧo�X�zޚ����q$�#&�X����Z�`�������~��8(��K��Q跱�S���|,�֕v?���B�ec/B�&�k�N#Ժ�)�g�H�=�Ʋ^9˹�`�J�#�|Rk'�ODu�����rYJP]����D����G�oO"W��9L�����2x��F���=��f9o�"�ٖ8�q̌�-�ͽu�c<�@��.H����!ra [��%���>����M�7	��n$��=ʁ��Y$�NBBXZf'�[��84Q1WRz�֧��H�N#�cF�	�n$\vM�x���Գ/����{�O@��ᔏUv��ݜ�$-�)	��\VHi���%���-O���H8���+HL�7*����,�����$$\�!,�s�b7��T�.d0��'/����U����:'n��X�4�aߟ�$���	�nF5����6^���� ��}A�仑�-�4�B����'�X�^�ħ~=1��;]�Ɔ'���?��mR�vb�UD���Ή5ivvN�X�h�Qf'���hs^֞i����G�w �/F�ן;A@�%�����>	�_F���	�w󵘏}�=�u7�:		"Z��	�*����jxcK6�d��#�$ #��=���h�$W:���'�h��J����sQ������r9{L�)aP��(�V�.��?=���o�/gT����^4rn���@&�+x?��|=]�M
+Y=���Q?6h��Pxd�c�g�prT�K*�r��`�
	���
��vT��z[߂���}�~����=εs��#���N�zv�e��nO`Y��_�.���� BFr��kI�خ�׺�{>bb9�SE��<����'�$G��o�*�`�f���G��E�rP���I����"�X&������S3YK?�x�ٮ���_����� bN��@L�R�ʕ��zh��3��o����O؅�+zV v�lE�T&������mʧ�����;t�i���߼~5||���ͻ��p5�������f����O<k��?�x��0������������������C�&�>���O����ps���ݼ�~�=\=\������`M���&I�`��o?����O����z;����>\ݽ�`x��x�����Ox���7C�a}���Y?�������]��7��o�g߃O�	��i�_^�p��׹���7����&S�p�0l��z��y�ν<��;���_�4�Y�'U���\���S��/�9�^]��0�0EN���7����as����w뇫��ݯ��֫��=�}0J�I��	���[��O�
��-�����~��S������p�$�x�>�����O��I�\�e@�w:~��M�/_[���U7#�w�9x�
+endstream
+endobj
+
+939 0 obj
+5182
+endobj
+
+116 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 938 0 R
+/Resources <</Font <</F1 508 0 R
+/F3 510 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/XObject <</I5 943 0 R
+/I6 944 0 R>>
+/ProcSet [/PDF /Text /ImageC]
+/ExtGState <</GS1 <</ca 0.7500>>>>
+/Pattern <</Pat1 945 0 R
+/Pat2 946 0 R>>
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [940 0 R 941 0 R 942 0 R]>>
+endobj
+
+940 0 obj
+<</Type /Annot
+/Rect [112.5000 576.5145 499.5000 588.7470]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://idratherbewriting.com/documentation-theme-jekyll/mydoc_help_api/)>>>>
+endobj
+
+941 0 obj
+<</Type /Annot
+/Rect [112.5000 432.7500 499.5000 723.0000]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://idratherbewriting.com/documentation-theme-jekyll/mydoc_help_api/)>>>>
+endobj
+
+942 0 obj
+<</Type /Annot
+/Rect [206.2440 343.3837 225.4095 355.6162]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://gist.github.com/larrybotha/7881691)>>>>
+endobj
+
+947 0 obj
+<</Length 948 0 R
+/Filter /FlateDecode>>
+stream
+x��XKs�6��W�N�A�$�����wr�L��t�	�XS���������t�R���\�@y������b!F(~`5�i�-�R�N��/��-���D5
+�"J(
��V�G��cM��Va�%��(0&���I�uS�N'��d�d�a΅��8y�����g`ZY(��ѱ�����d>�X�,�yF^Ĭ�HL�k�F�i����m��%W��2��%w�(1N��WA�:� b�̱�D;^�X��GI�N6���i�c���yw,�F��"��\�:F^�Y{�dXog7Xr���J��X��� A��6J��b��q�[�7��ы���������8�haAgq�^���
+�\��/�.�ET[;�!ieR�EI��*��V�,JH7+��;@�Q$�7�U�"��4O����,��V��4#qG-�I
eՌu�߱8�Ԕ�0�U�ɝ&�?N��`"nu_LrbM� cT��@��Hcv���D�"ʉ�B�I�a�Hj�/�f�{(�e�|I��{���Չ��L��`]��Z�	$���Z��a(��d�b�������f����	�f�.2#�1��L��>����s4`@�B�CL����~̇���1�q��`)&��*��2��n;� nlC��(T�S2Peg/'�6��#I,�Д3��h�9u�{�/'v�Ғ�nC��!�'��NDu;}����]�x{�����q^~��E���<b8�Y�jZ���r�����+y.y������
��܊�ʥ<ís������1y!�v�J4\E��(�f�bP�� ��=I����7�X��ҋP	�%���Bj���=Lm��p�]�>qg��ߑ��&�>���VM1�FNn�M�t�)q��O����=f��~���������i
����[K��[��;1���������F<�f��V��E���ǙJ?�}��{B��w���N=0=��=���Ա$1e�?�Φ��ԑ��F*�� �o"M�$0��]�O��8�t	���ki�(o�y���f�\��v�Ϋcȋ�B�Nj�JK�,>â�1�P��ۢ����)��p��A�"p��u����ޢ<����t
+	�M>Y8�Z(-����i��x�.�ʺՎq��\�>R>��mKt�8j�G�9r�p��A��wZ���%s����"�d�N�Ů���>�����o�Ԋ"8�?Z��:�:���gd�n�{j�S�M��6�k;���}w?������z�`��Ƣ��	��1�����|1��⏫��/7���]Iֶt9����4�%p��E�w�L�yim^�]
���6D��k|Y���"���,�?\Z�:ÔgdEq�"�ņ���zS�O��*��/��"����=W�כd5�	�化��H�Fo.� K�V6���	.��bdJ��8e:�����{<����#���6IY�ː����7l�Q۲X�0��^��EX`���՘��7HX�ś�Tθ�L����h<|
+endstream
+endobj
+
+948 0 obj
+1496
+endobj
+
+117 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 947 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R
+/F12 912 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+949 0 obj
+<</Length 950 0 R
+/Filter /FlateDecode>>
+stream
+x�mQ�N�0��+�Xr�����S�{H6m �K��3�#�-—]����Ȝ��`KR6t�sUR�sn:$�-�$R�`WEC�
�����Hђ���ܒ'��"z�n� �*YI�K	�
xV���9��:o�|m�*����
+�j��u���w���
d�d�E�1��)�2M�$�AQw��[ti$M���!�K�f��&w���`��=̱��
;���?w�|���?�M~�-�����ې1����c@��ٲ/<�� ���/tUb�H�k�M��%4�R��o┫��V�{�
+endstream
+endobj
+
+950 0 obj
+293
+endobj
+
+118 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 949 0 R
+/Resources <</Font <</F3 510 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/XObject <</I7 951 0 R>>
+/ProcSet [/PDF /Text /ImageC]>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+952 0 obj
+<</Length 953 0 R
+/Filter /FlateDecode>>
+stream
+x��W�n�6}�W��)���-0���SP;�"k��j�+mf��C����6����G���ᙡ�)�?�\96�a)`—C[��u��Y�2$7��+�U�|��EI
�D�Ιiy����tp�:
�Hk��P%�	�Kؙw�a�Q��$�Kj<��Y��8' MN�`=b�Sd8w¾ 1��bzN��1E%��$��f�!!M�bMX_���I�3DG��y���?��A��J�NK�����s�h�B����gi<E��,M��!�b+K��F�O`��R����+2JX�:�gH�3e�9�V�����ڠ�'e
�R����č�L0��ϳ��#�ɜ�̘	[��$Ɛ��ȍ��0�Df̘�CDr�#�3b�d�=C r�OY�T��[��+�0�&�v)k���b)XV�	[�3�gH�X�r�&)����19��b)X^�[���R�����?
H��y�{��Y�q����<��_��<����ݪ%C������<�U�=Μ
+�m,�3���a,�3	F$���fS�>f��
+N�A���ݑ4������mӮH��y�w��@���2�����������S\��4��_�������=L���a�Ўd�&Ou�:v��|��)Kp偌�9��tý+u{8��8=�
փa*��fܓ|���I����k���P[`�(Q}bUP�7��7��w�����rG���Wh�[�Q��Hv�����c4H����e���Y*�(`�|Wy�OLկq���R�4�ñ���/�&l#�s,��9}����S��tʜ�uil�N��un������ ���-��������Աw�N䏪J��yJ�5��n����r����0�����巋��t}��vq+��� ;�\pP����SgxEZK�����a�`AL�J��,)�	�\��e�\0l��dž�`� �
+�c�\	C������G�����1�%��4�k��j�(bK֑=ӆE��}c{�ok���L�z�{����e5'��Î�@~�k4������9t��ۇKl�m�˦n�pf���:����J����&��*�sGO|�5
+U���9M�|~���S��g�r�ɗ~���H���m{�1���m����^���8c4�$Ƌ���[����`#G9W��i�c=v�-��l�!��nulF���@~?v�\e@kkK�/���i�P�U[�m�W����}q[
+endstream
+endobj
+
+953 0 obj
+1225
+endobj
+
+119 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 952 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [954 0 R]>>
+endobj
+
+954 0 obj
+<</Type /Annot
+/Rect [112.5000 364.3200 215.6865 376.5525]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://github.com/jneen/rouge/wiki/list-of-supported-languages-and-lexers)>>>>
+endobj
+
+955 0 obj
+<</Length 956 0 R
+/Filter /FlateDecode>>
+stream
+x��ZMs۶��W`�qX��t:���k;�43Q��%#ђI�HT�̷��y$qqA+��l�
�c����{ �/J��_����TR�>����&e�WZyW�Crk�~1�\�k/l!�UL��y��0]�	��asUꢔ�d�����Rp5��
u�{�
�dQr��pJD��8ױ̀�&ʛ��\�)�@�N��|���)f
+�‡Ȏa��Mp���'bD��� .r-�$���/�=Q��S�b�A�>
+�Gi�\����-�Qڌ� D��C�ևp#{�ۺ�b2R�ÂbCD�a��N����L'aِ>,�t�0N�|]��)�K6�O���Lk��vr��X�߱�ߓ�i�bt,�eĘ0�����"u�p�l�����;U8���T֯�U���}<��b��f��ٛ�i��ڱY��5�z۲vY��9�Apr�FZ��U[�����y
��e�vբ��l[��z^�鲾�n����`�-�Tۻ����v�w�irͮ]5�C���]֛��d����+!�PaCV�2P���c���s#Ƌ��}���e��7�Ų
jv�[V���m����W��xl�f�j��T��Z����
��¶=\��q��<8��8����?L/�������%������5������!��|׬��`
�5��l]���}�99�H��<D�gͶ���wr�+�`���2�L��p�v��>� ݏ�Jsu-o�۟NvL�P�����G��ky����:#q��0��!�#��.�q������D�
+�%'�������Z���<G�KXgJ�\>���D�I���m���>eHK��7�/����)5�󁍈�?+���ɠ$$����zC�ڞ��,�G�A�ʒzV2ruM�v�p�|K2(ų�AI�� �0W2qf2�PIm+%��d��>������$�R<;��gX��^=)
6L�aD��4��Mv�Ѷp>�{J�.`��Ɗ>��Y���oI��xv(�n�a}�UB"��n�B}�
���tгܐ��h28T���[�A)��J�Зv��ҰJ�OK��a�v�@����6��	8�ST���O&"��&M:Q�i�У���@)lԅ=���(��s	��畖<ap@�Ii	sI=u(�	{B�9�b�E��&p%�,�1�%v@@���9Dd6Is�X��#ž5�'d�C|Q�"�3��sp�bp��oU�7�b\�됑b�+ƅ��' �v�D��$�#�%����b=;D��X�)�a�b}D��F���V����>,�҆�0"��m��W�mu\�ߡϽ�"�X�.�~����PȢ*}���a}�B�ՠo���p̶Ze��� ͽ,�����\ Fr��X_Ȏ5�s Ջs%ՋaO��r��/)\�Y��b�Ecb��楊E�SŢ�!&�"Y
+b|�OdOQ,bT1Ģ1��K����E�cD��F��<`{8e8ޭ<�������.}x�h7�}b��1�Y�L��aE�B(�U�+��֫����֫��ˁ]G„�����	��',�O���{��4R�8WR�Q��ur"'��"ܙ…��=6R1��-���]�b��3���qC�����g`'Q,bT1�+&�h�L�ht�X4:F���uZF���Eɡ���8�f��@��M���jΖ�/�B1�#����B���#4ϳz5�P���jL���=�-TaOHR1�~�b�";�+�!�k�k���Ĩ�=!���"ܹ�Ժ��
X����@.ٕ*�N�F��p!�{b���	!�E�*�X4:��ѩb��3�����'F��	y������K1�/���}���Q��	�����RɅ���d�*��h�5`��Y;	g9e��#J��$=��rJ���H��\I�bDX�5kBN��E�3�=K;V��C@��ԫT���b��CL�	�. V8�Y Q,bT1�&���L��r�Xt9F�.Ǩ��	y��V�#��Y����"�i��ZwF���'
+o�����L!�Ϫ���Fg�O�AO[�bZ��vNo�Xr�%HR1�~�b�";�+�!�k�k��Q��ur"���"ܹ…�\�C�_�^fv%�E�SŢ�uX���>�]rK����\��FGv4:Ul0z��`�QZ"b�iA��F�"l��h�~Um��� ���=^~$^�XV�Ԭ�j���=��j��-�˺�.�tp��ǻ�2K��e�;`h���.fHiq���~�+������z/��۲������7���p�m�/�D�����]�C��;�&|r0!�`
���_͚y���엫�I��cۼ���6\h���?�n:��V�X��y|c��_���&%��|)3�di��W7���e�z[﫶�����Y��X�p�k�p�y���֟����>Qռ�ý�*\@b�c�;@�n�̏���q���Ws*�rpw.'~_-jƻVBZv��$�+7���(��1
+endstream
+endobj
+
+956 0 obj
+2448
+endobj
+
+120 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 955 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+957 0 obj
+<</Length 958 0 R
+/Filter /FlateDecode>>
+stream
+x��Xێ�6|��c�b��W��€'�7�p��;��p�����eVRۙ����%�^���~�Y��X�j���G�v:����Sp���򥷻�_vy���t���B��iG)ˤ&5���g�Rʬd%������S��b~�t��R-��@]̼M��Y���PʳRD��y�rY�G;��V��*���W�	RD.�|N�N1���$��4�r؅��ޅ��H��'�\�y��k��T���s3��V,`%ϝ>H�O�q�*�D���,��,�&�V�	�(�T��1E)��Ȓ��b�Rl��b>#�Ŭ={�����e�ϴ�˚c��פ˘�4�#��%��IdXb̀{��#�DŽ��SLf<G�ݧ���D�%�X"�ž �s�NY���W���R,`4+KIcY�,K�VlAV�-XR���$Q�c�b�h�LŲ�Bd]+� +�,)�Ŭ={���vw�s���9���dbu�+,Mh����������ܟv�U�<ܐ��~���d�&���r��P�j��eq�?/Mc���Z����z�X���l[r�����n
�䵻��i�e�dM{4���x����i��0Qf���B��O�>v�Zr��ƌ�7#?v��G�GjS����6��i7y9�\BO��2v�Gb^^���d����g3��<�!@�Cj;��}��;�%�6d�֒�}cM;���Φ=��;�Ǿ{�Z�H�j].=�.��e|�A
+ǭ[�r������T}�'h4f�M�B�����p��2�mؼ�ݾYD&�������ŭ��U��eB�<�!��`��h�"���N���`�h�=�����}ƕR� D�(pY�9�&z�	���5+�;�����.�BI&����ќ��������~��}�%��h���n��!&Z�K�/��_ԏ��䔋��oM�ߘ�b��u��g;��l�g5l�ǥ�+�xz��{I'��$� ����(��Iŝx�.f��.ʭ�B
W�9TƓ��~�jKZ��)��uM��u�]^��Eu��b�����a���%04t���T����'6X�m�K�29���W��P�nA-|K{���r}1�p�
+�含P_�s���r��O����]����/6��,x�^N��nL��M�h�Ϝloѷ�%�f@��܎}ec���}4�<b�����8d[A���A~���d��-YR���1.���S���PX�if3\�c8���9�5	�ef�=��='�N����p���%^?#fۍ���l3�J�D0�=�gF3,IŽgk�(��	k��nn��C�f1���g�P��,�����ܽcq��k�ҤG�g����RP8ḌD.���
	
B�BD7$YdR����<{Dh����nnc�pO�*�G�5x\a�W�(�Y��p�o[�ԸW��}���E�+n��-���� n���=�$�ᛍ�jC\1���p�D"1���ӹ�{��w�ɩ�z��N��a�M*���=&�-�<6u�?��j����O
+'v��x���9a��;��|~��ilj{ߔB�~3������\��|�����]���~�~���ؙӝzZq��y��1r��q�p*b50����T?ʳį�q�:�N\�q�:sF���G�5x\a�W�(�Y��
�\d��������߶;/�ʒ+u5{mw\�_l?.g�s��-��ķpc3d[/8���B�r�簊����ˑ{�.���9E:��w�I��<�v*��w�=��',+o	�i�p�e��<����U��t��cw��7�n俤yB ��rɿP��A^Q�
�,��?� t��"
+C�%�{��?H�N�
+endstream
+endobj
+
+958 0 obj
+1851
+endobj
+
+121 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 957 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+959 0 obj
+<</Length 960 0 R
+/Filter /FlateDecode>>
+stream
+x��Z�n7��Wp�4�F`@��
&���`6�v7%u�]�����������*�Y*a,��[>"�=�/6�*
+�����'?��0��/��[��Y*ac�R7�
�&h����1QY)iSiMD����f+(��M�G$��"������BLV\JN�]{�
+m@d�@[�-�#��kd���n����M�W�vr5U,a��<�$��
���H�XĂ��2���)�G$W,b�b�I��}"��R���E,(=B�F�)㍥�f*j*��,��i�_��
+�d�o\��;�}���R
�x�
+��UL��&"�̈e����g�\r��rLW�p;&��6 2'[��G�e�E�1�+��D�7��Q����B1�x%��$P�+IK�"R(�,���D���X�bp��vLk�1�b)�XP,z�z��R��Ӵ��/��P���z���JHw���T
+��ša��H&3bY`"���"G��i�*ވ)[9��ts�!!�̈e��X&Yd�dói���7���[(�XyjǴV�$@�tJ�L1��1LNdϐL���%L9(y�^JZ*fS����܌%l�:���$ޞ�5��0�ӚC�L�
x<�7���� �ɌX��ax!{��'��k18��1VY�����hCB2���L�Ȟ!"q=��o�}�z��b��I���M�5"�b	��1LNd��[�!�+Ν�:x�y�XD
+�"��5b�׉=C�x������o��~��gW�>M��S[)N��,���fA��z���o��Wa���Mw�|������e�tT�t�,6]4-�n=Y�f������݁�}w�lHא���;!~��%�5yl�-�_�xXr<t�q�+���]���2�#B2U,����}��PT��y*��Q�L�i����nݷͽo�G��{��ۦ���η����A��w-_m�d<r��zV53^�,�{÷;O���W$\��c������.M���'�y'J։O��sy&���ѩ�Bj�9�}��'�m����>*f��Y(���U�.�b<4�݆|ɯ#$�*���t�O99!*M�ȿ}~z��0~������8S�-?�<�ew��FNV}^�|!R~~���@JV)e\���yߴ~VP�E��w���P����8�NP��3�_5dj���W5+@QI@J2��x<���N_
+�K.�`��n���M����!{g�����e��LM��rF+�']����/�0�M8'�8
1M��K���p��
���iMD�[p�b�0��i3Lr�VEvDІ����3=b��AC����V߯BY/�V�v��Q�ĞiCW߰��0�kn8L*���g:+�����ҍ�E���K�6ɡ�06�y��99F����׻�f[��e���Z��J���������iP@�'*����y�o��#VLx~`gy�ƣx�z�K�ǂ�jmBi>x�V�M�B��K�8/-��o<=5V���|�<S��s�^t�t�˹W_l��מK�œ���eFXZ�#�#^vF/�y��VymM��c��T���J;��r��V�|����K�����.w��vM �|(��~���<8d���	��+��� �ƃ�-�m�V�tBC5c��媣P�����S���w����ʨVE~&�7ϖ'1+U�#��~�V�B'�x��נS��;t�P�~Z�w��N*=l�a���ٓB�N'���3��e�i�݈�?:_�M��]1!�jˡA<S���5�x�^�N�1�Gq&\^@�WL���8�}���c
��ͩ����!�r8��s���k#�f�I�=7�1�B����KC�Q#!�dQ�弆��Tk�M�]�2fÇY�,/����M�����7�=!�[��k����pl{_���dݴ�_w��~t�ٳ�(�2�|�xU��0Te#"�ך��<�%�=�N^�`�_��| M=��t�)�n>.���vФ��f0�ޯ��P��Y��'����CO Z"o��Jŕ�0�kт%T���r|���*
����`ᅡ��c�5RO��|ϧ��[K}�۠�{r��~�<�����3�w����w��]p�@x l��1��r��I���������@��#\}�+ar�֖ğ�X�WqU���R2�#�M����2�
+endstream
+endobj
+
+960 0 obj
+2188
+endobj
+
+122 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 959 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [961 0 R 962 0 R]>>
+endobj
+
+961 0 obj
+<</Type /Annot
+/Rect [362.7974 661.2840 438.6389 673.5165]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [48 0 R /XYZ 0 732 0]>>
+endobj
+
+962 0 obj
+<</Type /Annot
+/Rect [191.2030 205.6054 263.7475 217.8379]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [107 0 R /XYZ 0 732 0]>>
+endobj
+
+963 0 obj
+<</Length 964 0 R
+/Filter /FlateDecode>>
+stream
+x��Mo7���<�E��c��:.Z���-@�Hk[�J
+V���=��d�]g7
+����*ϒ/9��W�R�q�Hj���+X3�0~���w��t��Ai�ac�$}�����O�w�Y%��Jhme�d\FkWƌd���g�E��� ��z%eY�0��Zά�ށ��%̺�B֋����E��0f٨Έ+Z�4%��8��������+c2`�?�$f��[̱�LY�2Ȑ%��(�D��Xa�1b UHٟ��Q�0ul$�F�+V�.�L�M��'O���Zր��=x�Ԏ�(!���!
�h�D���Xb��"uF|�*L�!��� ���&&�Y�P��KLb̲Q��T�>S����B�(u'��Ry��s�c0���86�1*NRg�9Vw�X�)[�:ǝ�ܱ�9vb���ը�:#�|�����V`]����9%C��q���KML��0��N��L�%&1J/RgDU��Lh9�nR��Ia�=�l&���lTg$�ϔ�7���=J݉cĴL��Z�9ʱ\�{,�)�C�G����a��#�dH6Բ�q�8w�Df��+kb5���4ߖ��rfL9��_�G:�F!+n7��7I�a��w��
+�G[װ�4�����.)pz�;��ߋ�?on�1�W�t����k]�>4{��l�J|����}�C#���ϻV�m��x><u�ͪ_�<n7��Uww�v�t�.��������\�� ߰��_^�]:t��H3�����;�(G�	 M���dl�>�:j��|��a6�8�����感�kH��7NA��Xt�-��X�~u6�����,�`2U��a�㾵��7�6���<ڹ���V&���G����ॊ��e��~���]�5�5�N/��c�i�=NR��!���3�b�<�F��ۦO�]��³Kus�fPO	o��Id�6ǧ��DAӂ����Km{���T�����_�&��T��îA��|��a��|w�au�`�./�<>c��@���x�]��p�S���D��{�Ǿ[�q���_��}�E@�k�wV�R��S��ZJ7�0mBHxx0����$�y:�4�2�,ƌd�0�>�-2V�"Æc&�2��W�I�X~s�P˙�`p;U��iT�C!�E{-�("�IQ�z%�h��#Dh$�ƋUn�Y���j�,�ϕ��<W�ę�4s��X-S!���\��ǣ��ک����
+�H�p� �E�ʬ��4�
+��/�9��y{}#�ձ�;�V}�y%��u�{�t�\^�t`�e&������s���ź�;tbsX?�}�귇��G작�cq����G���	O=���S᷹��i�`cs���]����p6�
+endstream
+endobj
+
+964 0 obj
+1366
+endobj
+
+123 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 963 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [965 0 R]>>
+endobj
+
+965 0 obj
+<</Type /Annot
+/Rect [145.3650 469.0697 238.1430 481.3022]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [53 0 R /XYZ 0 185 0]>>
+endobj
+
+966 0 obj
+<</Length 967 0 R
+/Filter /FlateDecode>>
+stream
+x��Xێ�6}�W��
V�Ib��&i4�q�gZ�m5�舒��|P��C]�]&E�<t��v�ù�93��~�i#��x|rFGA2������&’J�@K�<IbԜ6�P,���G	I�	P*pJS���i'�S�i�u�i2���s�>xι���I�H�����i�q0�b��qJ�*�X&�K�}���@����������`@�?7/��9Q�cJq,p�F�p�"B����R��g����?<�W�F��Ҙk�k�������Q������(/���
5���������,I��mf�V����4�E}B�ՍE�AYYd�б1���$��j
��G��ItQ�.m�#�#��#sD�/��dT�������κ��M��y�&3��Uե�a�c&h_��;�֘S��ʙ)U}��I[��g�L
�rs_[�%��Y�
+��I�ۯǸ��Z�0�:�:�����_v�j�#���j>9x��e��U�B��kD,5��T����F��\lP�9��̛h���qP_T�YW���3֙�US����]�ֽ]��@�+|����4%s�[sqL�;d�쌔]������C������w���Y�����q��N�����b�LW����4C�P�R?����u���g��lꟅ&�k/]�G��ŧV�RW�;��K�1��yq�Қ� { ��قބ��܉V���=@c�5
+��B�p�m���^�����9ʻ��j7�iS\�<���W����1�Y�q��?����|��L��a��^?�i�A۪ޞkO5�����s��e�4�\&n�������P"�hX)�*k�p��l��}���s~3���վ�k������*V�E@�
+]�Jm0z^�U��T�v�g3IJ�ޝ��F��Z<ưR���ٽy:T�M�A�W�m�
��9Cö}���.F��BW]����`�\u	��~���8�ƀ��+����΃>Ă��R�L70�5�t�!W�΂e���ϭ�.�YE�o,1�/��&_�����n�t�k��kS)kU�>����5�i�q�_����mT\��
+��T�GU��
+{!��;I2h�h�%نP�k�� K0s-���5Y_$|�5�`��b�5�����V��~�ɜ�bv�L{ٸe��u5I�Y��`�+6쐞�y��ɦl��;��y o:s'���{.z1���ĺ�E�~�:��5Y_$s\P��{�Vs�@��5�'!��-b�G���Z�}.8���}G�����=�tn��ޞ
���s��.���{�����u(�������_'�k�x�u��h"Y����1\<��m��UZ�/���	�������`�`��C&W�w�]H��h�'�Ѻ'ይQ�C;��pb~�8�h����[�#,hc����es�	�r�*#9�,Xp	-���n�IA'���"Y��d^�s\�
+&�T>��j�s����+�V¤ִ�C?��M`	���N%������+�	� XWt��Й�`�A4��$�lN��d��}�?��ҭ������:�+�#���H�%'����l��nN�]����߹zh����p�
+endstream
+endobj
+
+967 0 obj
+1573
+endobj
+
+124 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 966 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [968 0 R]>>
+endobj
+
+968 0 obj
+<</Type /Annot
+/Rect [112.5000 294.5717 158.7360 317.0717]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [124 0 R /XYZ 0 305 0]>>
+endobj
+
+969 0 obj
+<</Length 970 0 R
+/Filter /FlateDecode>>
+stream
+x��YMo�6��W�-��%J��Il�(�biO{Ql&Qז��4?����>�E*r"{{lD��8o8#��#���Yٻ��
+�Z�jo*=��a��$P���e�@D��'ʮL�t�݂2>W��(ٛ�L$ɜ�-d��Y���K���׏��t�8���퍷�'3�p�s�<�<f�؆���K�w#ތ[9!N�l��0),�K��=lv�J)S{��d1�SG�R>O�0��+Je����g"�2��&��D��{Ig��J;��w�˰y*�f���t68�z�lu2���ɼ���DuX��� ��Gob�f�!�X'��3�6�^*F����\Re!��x��^�G��s�œ��xi��>b�$��t�A瑓9��'	�vuʱ�r�;waS�����Ǖ P�P"7w���U��Q���|O��$���"#�C�?���6+6y='���}^�#7Ζ7f�~�1��E��5y�Ŧ�U^|:��V4�"
+#�q6D�JIh뽱���@�s�UP"扊�s��4F�g]���~�d
rWV͇�|����S^?4��|���N�U���J?�Y�7_�}�n�r!ɕip	 R I픤���#]H..?��5(�@���GB�e���7��3�F�x�q���X�K���+I�	1X�,�⒯$�t�]L%�f��""�^���f� ��FB$!(]}�)څ�#I2N����d������G��4�� ��T2�`=��/(3:�+��)�Ĕ��Cu�����
+�+��x�
+�l�8���`X`��@�_�N�NpdK
+5�ΒjR����!
��A�j��G&>��@�`	�n���`S�a�.P$+�|6�=��{�����5m
+�9�/�t�ta�b2"p(J6�B!R�–���򅖝����A�G�����"<m�P����n
�C�T�~
��h@4�ƕ� ��4���4Xv
� �N�`-[tA8����F��‘�VΤS1CI���M��”�c�>5�c�H�pbǤ��Ĥ�qYYn!�2n�N�]��@p��	��?+6h��T>RL��:������i�[�v��6jr��ѷ�����
+�����n_	�eSF�aQ�5����ԏ��(�ě$c�Nj�
����Nh�OG�9�Q�í{S<Q���X��_���K�Q������&�W´l
+���dV�����E���SNN�T4	ͅg�#~Eȓ��lm�/�
+͢?�N/���2 ����s�x�"��'n��Т������5�a�G���|μv�v�'
j�{
6+Xg8Ǽ�s�`���gװ�Lc��?jrr!�ˁ�߬3F�ǒ3��8��|��3��:���:,:��B[����Y��qG*xޜPg��I�p_g᦯�Ky� �V��y�p��G`Z��@��Ҧ���y40�x�c y0��V�,���>���X�G��.�>�/Ⱥ,�u��E��}�)�c�c�ʲ6 �Hv��]V��l�}&�Ϊ=Ɋgr�-��w���j���n����&�C��sy Y���w�n��|QW�yqO���6;���6B�_��5)�l��O�b���o��[�;=�����Ȟ�>eՆ�ekM�‚n3\��xC��_�J���4�Q�I��7�߬I�6W`��@K�Z�+컯ɽ.te^f �ֻ[ĕ%�r�<�����/��3�Gv����\L쐸� ��3$�[Un����O�<xa/��*����kB���W�w�
+endstream
+endobj
+
+970 0 obj
+1787
+endobj
+
+125 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 969 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+971 0 obj
+<</Length 972 0 R
+/Filter /FlateDecode>>
+stream
+x��YMo�6����x~��b`&����/�"�ض��RCR�៙C��I�j�s�����ǪzU%R���?��*��VL���	Pӗެ�߯(eX���(*���JsCNV�
�s�aA
+�(�Xa�(��fB6+Q3l��T&�rƞ!$q�!����ĂJ�"{3���*���*F�,e{����h�F��r���?�=���y�"FqY2���q��=ɘCfs��Ra%X��(�	{�d����ELb�J����ƭ�<c�e�a6cSD�QG�9��wPr\�'%W(�A�������.޻�j��p0U_�����훶���矾Cw_W7w��ͪ��0O	�[ʏ[����8�
+=��nڇ@�V���m�v4�xX5F��f�C�s�ę̓���с5x���: �O�0p��z�j��k�&���cD�U;���v=2��qqG�B^Oqf36��-�
n]�n��M>^�j���8���}���$���?���-]3��M�NlW'>�gm����T�,ʱw���	�Ii̫M
+��r��>���q�韯����a��_Pp�3A�@J�*ݛMeͬ�h�Z3,f����z8�}wlkS�=�nWPL�+�Mek�?U�S�=�6�MmP�u��gJ0f���j��+3h?��,��g���Q�).U!|X�C%ꁮ��QK'$�vv�s�����DcRXD{+Z�`3!0���QJ&[� �<�hɃU`O�L\�0����<D�,Pb��[%\�׀W�(��QG�������D@"��>8�S>uZ��)Q�������%yၡu!_�7���{W6�o�͡�(�i.v�Mrp�y��LZNu��bs8(J�t.6����0��*�'$���$v�Mr$� Y�!��|Mb����udO��bg{�KBs�qQ����b]6���m��Z�rg�$�Ps�2ф��&�-�ӈ�Ln��@�le)�U`O�L\Krg�$Hb�%����$w�(��QG��\,w��y�X-wv܌�|zJa��C�;��Ns8ͼ�6����&	jg�z0^b�"�[1A�
�
I�
+Fd�l����dE���\��cCF����p�-}�f�|
�n�"
+X�:�g�T��׉^����_n t���y���q�;gTu��<�̞�i.y�Q44�4N�`%z��% ��<���jbϐ(y’�6��؃pɇ$y�5I�"�������%O{��<��$1�ӷ$��*�I~�D*H�1�}��8���9.a��.��1��Xlң�t�X�l)������0��f}�H��	�8�����>�t����t��,E�3��s\��쬧�~�
+S�Z����9 �7��O0��d�=�{~+��ɂ�g���4C��b���<Wb��@8k陻�3�[sO�o������3���m~hPkL=�;󽁻�h��~�+T��i���g���}���/�v�R�p�(l��ݿ�ٶ:�F���8���Ź�mz8(w��������$PIN}H���p�� ��I}5W��:Ǔ�	X�ft�RќP�P�#��쇥P�{�n��.���ۺ�)Y^�xĔ���I��ښ�.W��l\��k�a����Z��l�P>_��֒��g<��S�YS�[���QgZJN��Sc^m+jg_I�R[�ŷ@�t����ه����W�>�,��߻fK��f��ߛ>�1�mE!�a���F�&
c5��_�6p���æo〿�b;�ߺ�wr��c�d]���V}qv����E�x��M�]�;f$�no�2�l'��PJ�b���.=_�j����鷻�6�MU/��n.��Q��8<`�Ň���ε��+{����o�����P=�/M_�Ut_ϩ�严�u�
fW	S��+XjՆ�>MG��Կ��2m:��#�ߖ��3<�}uH��Ҷ8��3[��*��(f�T����[��i
8k꿣k��5��b���38�Td\�b�^v����ݺ��pK��K����t���ѿm�~>6u�R�x�JuB�+�����?P
+endstream
+endobj
+
+972 0 obj
+2061
+endobj
+
+126 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 971 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [973 0 R]>>
+endobj
+
+973 0 obj
+<</Type /Annot
+/Rect [321.5760 167.4552 445.1640 179.6877]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://stackoverflow.com/questions/10523433/how-do-i-keep-the-current-tab-active-with-twitter-bootstrap-after-a-page-reload)>>>>
+endobj
+
+974 0 obj
+<</Length 975 0 R
+/Filter /FlateDecode>>
+stream
+x�mR˒�0��stR���C&�����!����[Y@.$��9��D��5����LwO�(������)��ӄ]�z0j>F_�(&IZ�J�BOL��J}�f@�0R6�j;��U���X
�;��ao?@�;�VHd�!Ӝ$<f2�����#���f���UB�^pAʀ= �J�D�`��Og%zq���kH蛆��g2�z��#<�TsA
 ڳ���
�=�@�Ƣ�^�8	w������ΫZ;a�Ba���[	�~@aoK؃[.�-TM �ck	<�3�pX���7�PK;��_-L��ˑdY����YAhR!�6�e��~����̦��
O����|j���V{�q�xp�w�3�m��b�g�7!��!���ej[ox�иԤ�G�&�ű��M��A˱���3�>:g��&'9��x'��%��w��M
+endstream
+endobj
+
+975 0 obj
+438
+endobj
+
+127 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 974 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+976 0 obj
+<</Length 977 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n��}�W��gap�wr��۹ ��j�Z�%�P�"R�h�2�?9M���4'뼏
X�Q��KWWU�<I��v�<ޙ�UI1v|s.W�߬�$�b�ʳ/�[�λ�"ѽ����V1�X�L�D+a��+��q��$7�0����L':F}APK>�(&��K�8�I��C� Ź�2#�Y��̰X�pm��|�N�FL��ށ�bL�؃����lV�րի�Q�b�<;A��������5z���[)�<bÒ<w�Q@��K�N#6"������&V	�9/턝 $b#6�X���
+��3�+�'�O#6"�������Q��ׁ� �|S�X�o�f�4*s�9�2e"���vjG�,Qi�gr�s�u�����ˡ*Y�'�h�_a@���ܲA��u�'z�ዙ�(��N�� �N�p�_D>���48�ؽ���DN�:�7���Z�`�����>H�3bSN!�rz�r
+�m��s��Mͤ���y��J�r�9�>��aa��z�̓M�I�8��K6-�ع�;�sɦ�x�E�W4�i�"�k�,����T�4!U1`��,t��N�<��r�i�$���GP��h�GHU�#�^{v���w�YZ~��+���F,`�R�d�Է�E+<B#�1҅zi`'���h�R+y���o��Y�zd�#]8`�k�N�i��]���.s7��9
+o&�t:�i*�)[oW�>�����yu�.��}��W�M��#�8���!���q��t9���;B�3�dZ�שɺ4�)��9��u���V�+�n_���Rw�?m��G�^�]�o�&��i�Hk�������~�ׄyE�6�-��.��ʶEW��~�)ة���/oX�̮Xr,���e*Wy��МKvn�.��<�P�|:�����@�����!�C�F����>��Ө:�/�υ�[����������-+X[Nu9�O�\�L•��9ˇ�@���S�Seս����@�~��䬓�J*���;���+z�>�_��Òi)zls�9c�����%b�I
c�����yz����q�Yi�w������w���>�QXTc��j6� �xZ��2��3$���-�s���
2_T�+>�NG��w��}t����Sо�S
+%.�5���*S/v"2���bA��DzERNr+>'k��6gZ��ùj�Uwe��4="��(O�*7�q�N�2*��q����}u^'���e�\������tnڪX�����u�h:�[�-�jS5�r4�H1���T?���^�Sɏů�.*�B�bS���/*Nu�����X^7�=-j���sq<^Y{@a_��
+?_>V^�_g��{&��7�c��}W#3���C������>��K�(��WL��ߚn�!�5�E��鷮�NOu�Aޖ�*k4��kƧ�\ SN���K�U۵�/�j�n66�I_��)���햡듖����w%#ZF�mʺ�ufv\��	�����z��u�����Ra��n�b�09��<;��$��ug:;�I�5#�M/˖����`�d�6�=�_m��0.��C�~��$z���BC@{
+�o��n�\v{��7�>Gxۛ�?��{T�{ղ��*��)�[p{��Y^\|�M��Ȱ�5�U�����K�x�a��0�:DR�=dFd�8;�"b50�%	&d�Fv����c�	1�s��@�";*@/m��K��c�/�#�E�=;A��w��^��tW�ϠKҜ�7�`�ȕ�Y�z�R��7tL�Q�dw�rcČuօ1�b��s�t�J����R��H)hl�#�P�-�[LA^&d�.�)��ips0�܃�QʳG$d@�blܣ���1�3 �3 zV�{D^�Qח3��X�g�n����s��.n6��X\���<���x�*��~���;7u_f6M}9��j��g���b��kfi.�|0Ұl�����_��	��b��4����$��̸,��p��W�]y,]�~���Myx�%Yd�7
K8�y<��_�O׺��0�m��J��j��?�p�I��^6���/���#����C�+�A���)`4�
+endstream
+endobj
+
+977 0 obj
+2083
+endobj
+
+128 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 976 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+978 0 obj
+<</Length 979 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�r�F��+z)�\H?��Tj�DQL�l&kS�
DBm�p��/����i��(��,�����s_}oì��Cg��J���;@��f��݌1^(��(��
+����  JQ�R����f�&��E�JJE%�E�>�)/��L�r�����Y�ƌ�G�s��&4,h�4��F��=�8d5\�΂EK|�G�sX͞��hQ
���{_�=�����<����?He6|�x�!��f�ԅ�*f�ԙ���sX�1��&m����n����c=2�X�Y�9���#�"�dY�4�8�H��V9��)�s(k�� �5�H*H�K��V�(�T��Ӫ�`P��J^��
+c�lc6,�w ���H0�$��<��T�g�ꌘ�	š�)a��A Q�4A��F� F�*��+*Q���XJ�~Y�X4"b�&t&<�8M��=�9�i�V��n�Vx(�*��՜�P�E�A]r��}�4���f?���b)����-�F�>�n�Ұ��J��]q���JQ�PBޞYT�$�x�(̹&�%���$N�e�n3%}@����a�T�0R�\	L2FK*�x�\�a+�*=c-�cL�vkSo�6Uk�7X�r�Z���s�2zaJ�c��-��I���g�mGa�qE/�(��/�k�TL��<�Ѻ^p����s�_K���̘i{mGp5�ܓ	B������
+^"i��/��4�'�rSF_l�Q^�x\�/]�%��D�hy��9ss�iU��fL�5���k��cEՙdVZ2������LW���G�#��q��>���D0��4ߧ#y.߳�r�l���o�&7�e��=	��TQ�[��沌�dh�X�t�p��O�em"+�Z�
��9�gtN�R�4W��P���JVc��>dV����`�˿1��7#3��He�@��R |\�JZ\Y�D���	)m��7����z ד�2N��F�^�j���B*;��95�[6�.x��.����kK�ckhA\,Ua�\{��0r�C�;I&�ah���1������֧D���䓺L���N/Y���"�I#o�_����oK�L�[:7����d�Тϐ��;_��T8_F>~5�B���W�#]���HU�9�9_G*��/s����4��]�4g/&�sA�z<`�+'a�x�x})Gc��+NQ�	�U���ݍF���6�S{��]���ɘ{!�����W�MӮq.��T�R���o>7���$5���(�}����f8�Uמ��V���xmnփey��ɱ�*�|�ݶ!kO�����r��9��ɶ�Zw��H��}"��ݹ4rN�3�o\����O]��6S������{rh�6�n�+8X�,�D��-L(3��׫��cC*��)~��b��/����"�˻�ۭͪ'��9�_�d��pn��DL3�p����2��NE��ku~����ɢ>�w�}����k�,�)g���D��Б�ڲzjH������=����B:k�<���)������V�'�?mVO��:�gp�����ۆ�iXV��K�nɪ�\�oZ��P;�iP:cJd�jS�=>���:��^z�aCm�k+&7��|�����L9��,�+ � %E�eb_(c�18��&RQj]Y,�M1���"���Y��Aƽ,�C�+*a���!�r����$m��6�_�I���s��0��-	�~��B�Qkg�_D���K������|�`��(bh�G�v4�^*r��*����~�kX��m��\&&[#R�Y_�+���y�w��>���Ǧm}ٮ��=��5�刮@ڮ^�_�Us8���2I��|�@j�����"���Ǡ�H<΅ZPTF%�KC�$�+aoJi����� K�!�+�#�Էo{D�`�i/�0""�r�Q���K��6��<�f��	���P��+��ť�9[�TQ3����_���3�Ծ�Q�z=�}�7 �Ε���pڭ�np|��S�S%��f�Ӷn7�m����	-�~���^?�����
+�a���$�А-��~�OޏZ����H�Nu��X�F0�=6�f_��d���7{�e�	�>��������|zn[k$Z�C�'�nu�6�c�;��}B>��iu$�:@�O��:�`���E+�)���<8�������̓
+endstream
+endobj
+
+979 0 obj
+2136
+endobj
+
+129 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 978 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [980 0 R 981 0 R 982 0 R]>>
+endobj
+
+980 0 obj
+<</Type /Annot
+/Rect [234.7500 262.8197 271.0200 275.0522]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://google.com/)>>>>
+endobj
+
+981 0 obj
+<</Type /Annot
+/Rect [310.6995 262.8197 401.9235 275.0522]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [89 0 R /XYZ 0 732 0]>>
+endobj
+
+982 0 obj
+<</Type /Annot
+/Rect [280.7310 138.9700 364.2720 151.2025]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://www.datatables.net/)>>>>
+endobj
+
+983 0 obj
+<</Length 984 0 R
+/Filter /FlateDecode>>
+stream
+x��Z�n��}�W��L�0}e�������q�-Q6whɐ�u�����ON��1����f��G���ӧ�[��a���ߵ�#`���b��0����(�tLU�HU%�bj�/$~bO9&
+�K����&Dy+!L���B�r�u��B�2ôs�“/2�>�.�L�ұ�=�c��jc�X��E,���{����&��_���ޯ�=�g,b��N��h !�I��9���,ma��0�Ҟxϐl�F�d�"V�s���;e��錍�Ɍ��ؘQ�b��{�����(''�����ݭ������f���#[�[�z��
��{�������f��k�m��]�/������k�k�����ݿ�f
��Y|dw?-n�(�71�����8�����0�i��̀{įUQb�������)�ta4͒�x�b���e���B	[H�ˈu�*Ye��D�V����Wĸ&J�0��2%K޹�V)����1ր��1��������W"����D
+m�7�|ƱL��\������WF�[���V�VKm��7�Z��+~�o��ϰQ:�9~�}Z��A%�n2�)��@�u���]Ϻ�uw�v���n;"��J�x�!�v���=E�=9>���=��G��:���M��q�J����l�[��-���g�(��T���{ylW��=��c�M��s�t�(fM�*D0�=\w�{:zV�׬f��>�n��&�F�*ĉNA�M�a�hH�q�G@���F�Y-�S�sN&�����0	������+`Z���a�8m��];o�b|�X_1��d�:zO����di�l�&��tK�m�
+�D%'^N�
�e�<�6#��f	~F�{2ߒ�_����+�߷͞6i����t�]�]
+�eؕa֯���qB*o�ll��]����&u��
+-L�Aq���=CL�0e#2���Oޕ�V)����X�r3
+X�:x�{)����s�"	Ö�\�OZ��F�h��ZB�ψu"�<Ϻ�q�"�c���6��ӻ��#�+�0iN‚*�aDބ堆��D�QؾN��F��}kl�a
+x��gHԜ�ɨ96�B�.F�H1��91V�4'f��u�!�kNK�՜�%}�ltDZ�7����C����ͦ���+�U� TC͢r�\?4�=<7�vӮ��ؗh,W���Icy^mla0
+F��a�07�t�C�q36�}m��s���0(=�l���h�g���f �UP��U����
��`c�8b�X��E,f�g���aL�����Q,�$m���Hq+���"o*
:��m�}�[}eNh���?"ϗ��ޮ=�C貺����If��P�D�u�y�o��4.�c��u��R��M�?�����<~_ф
+�8�$m��
�q(%!U�Fl��g��^(b�JI�L��O�
+�8!�b&LNJ�a��E�:Խ��IC�Z'm,e�g��3�l��bPBa���jr�Q��X�B�JN���㻢�V*m�ϰ�$ty`+�-۰������/�VhkD�aZ�`Z���)bi�3,�H�{X�CZ�kZ�Q�J�:�)!��Hi��ъ�p^�4���:���gNrFedz�q��֞;�������z���b�����f��fs���s]��^q�}�Վ~��t��I?7�v�1s**���ߑ�w/e*[X���x��IX��A/-�]�å���M�����J�ݕ�2|V�R&!�R&`ڥK���K��]�p)b��jc�X��E,f�g��2i���2b9h��b�T�&��n�4���̕����y�����&�O�p����S�p��R�.M"٪؊e��,��n76T����VLѥL�\pt�����h�g�M�fc+�a�Y��mh�b6�b)V[��Q�R��{�\܊���7Z�_A���"�lEIį��"כ��'����ӆmV��L����;��ʎ���c�e�m�����D
�;��������WR��Eյ�򣹎r�aAPJ�Bh��5m�\iN�<�#��( (��0�6a��gH����Q�2l��E'�PF�J��Q�RFKY�r�\ec�������.ܱ+'^N9�ϕT붯�V�2Y�l{�i�`�}ӿ4
]P�P���{Bař�`J�p�<���g/m�ÖΛ/�/?w]OOT>���*c��[����������̔����#8����ʨ4�v����q7���i<''�N��'UYZ�ɿIz*<�Okw���j3�$]	�VM]��Ai����w�s��K�$�e���h���'�]"8�-������$��H�G�,���D��m��C�h5�h%��|s�ƚ`��k�����p0s�������R9�B��$�4��.�'��Z_���ے.*����mN��4�B	~;�ίP�uA�o���nHga�ƨ��5�TQ��9�?��M��� ?�>�H������
y�s=p�3�勼�iN�sPxr6��e��p�'9�(?��!U�o��>l��7��ѶƋ��%�WX��yc��f��I�
+�G��4�ʡw�4����m<��<nP�԰�i=|>�d
�������3z#���/��@�a�/�����J�ӑi�"�'�U�O���/^"�t���n/����Pb��ܮ������;�������9�d��{	�q7<�	��g�̧���.'�l����-��C���;��wl٬��{�ò�b`��|������ß������S�[���e�o��
+�=�w��g?����:oN苩ҢS��X?4�v���SL
+endstream
+endobj
+
+984 0 obj
+2773
+endobj
+
+130 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 983 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [985 0 R]>>
+endobj
+
+985 0 obj
+<</Type /Annot
+/Rect [315.3390 688.3837 438.9585 700.6162]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://www.datatables.net/manual/options)>>>>
+endobj
+
+986 0 obj
+<</Length 987 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n�6}߯ࣛڪ���A[ MAe��R,�J�v�?���Q��H
nߓ �z<<s�p.�χ?����S�|��p1��`������iJ�@�^�2�Q�D�ȣYGc/Ĺ M�P��_&�����1�/��R/˓�_�^c�ć�������4���ɜ�sL�߳L
�3L����!��=�F����o%h9�+�&h����&h��^�ť�s�.��[6_����F󏑭����[LmØZM���,�$�f;�46����p��lL�����0�c�6�	�R?��R�w��8��/#�_���vMB�09?���$V�-��tqrűx�rG<]�\z���ca�<շ�l��}(wI-���K
A�}K	�ҍm&Ȏ16Cݠ#K�bi[�*,c�8�C��G��rЖr�rնY�9#m[����i�z��MY~U�?�g��R��(�
�>rdҒ� H��b)���3�ʹ�AG���aŌ-��3��F��s���lS6���H�֬5:�����n�H,�@��R?!w��[8��A����[Ϋo�ݧݏw�0�Q�b�g.n�P��86�G���v����ف�3r��d^�����;���J5��x>b'ت��R�{	Tv����B���k2tE�^��w�T#|�+R�?�Yۻ�*y{�����%�����Ԍ� ��'�'�`l�\
+Zln�)�.�����l�!��pqzU���-���&-�*�r�2��ՙ�-?�0'�F�s'�������(�������ԗ5SG��MY��l��I��uPQOȆsxZ6����'�lI��Q=;�Ҝ�h�����h��jxh��U�T��f�AJ:�x�����M:���ܩ[L�L��z�ۊ���A�@+��(���i,?H�X3!��E��9`
J޹���1`����)P ���T���u�6{.��p�9=-�z[<���a�?1E����M�HA����qlx��Ű�A?'����#����#�HY�䁝O\�K.DYC�02�-�ȇF������ru �����"�F9��l�
+�s�P�n��C��)����	'*&���9�,�X�
+��O�8@�y�Hi��������L��M?u�L��r��H�Ǣ����P���b�p���ZM��S#�P���0��ҳ?G�t&�֝�R��G�����[���;+*	�%k驕�|Y��O�����;U'/���m�hF^g&��AN{H�4�����p;�|BT&%�����#���ڊ�n���@\b��뾆U+�
+x�G�`�3�~j[ɸ�aft*q#��o������b׫��O�P���������{?�]U�zq�oO�OP�̚�i�4��_vw�,����#�A�Q#�D$6Yh�i�
+��*�|����R}t.g/��9ݮ8û��#5l��8�UK�a�۶�Ǔ��jF׬c�3F�&tq]U�,OxB�/�����D�Q�5t�
�os��_8�$��(�g�R��ש�R'��0�cDrP=��*����8�`Q���斴����9��䆕L��0�$�P����
� ^���ЧJ)�jO*���`�â�ʑ�3����Y�w{�z)M��N�� 4�����
+endstream
+endobj
+
+987 0 obj
+1623
+endobj
+
+131 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 986 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [988 0 R]>>
+endobj
+
+988 0 obj
+<</Type /Annot
+/Rect [196.9095 338.1337 320.5290 350.3662]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://www.datatables.net/manual/options)>>>>
+endobj
+
+989 0 obj
+<</Length 990 0 R
+/Filter /FlateDecode>>
+stream
+x��YKo�6��W�����C�tۉ��6=�[qܵ����Ed�Q�E���d�=��@�h��7Ù!�p��C���w�_A
+/0�f[�0��je��Er��v1�\PU�C�2@$5( �SBW���2 ���V_�2K�@8��8IVkq�/�
 ��
+e�r�#dY=����$�T3���XF3ŝ�G���Z�C���k���� ^�V�p�
���z��F�s��,��F,�UY�l%�����o�E̶^j@D2�I�#I1/K"dX_Z9K����[�=V�0��� ^�H��o�C��AM�Hk�g�
+j�#������41�jt��B�Z+P�(�A%f���
+�D�X^ft�@���RV�i�84�(č(��F������)�Q{&j!U�HP	q�:�/H�H����B�P�=�D��8R�hf�n�]�t'R� �T%�*��V����n�s��eZ3�m��5���3r7|7UD���{�7��y\.W��_nW����]
����W��^kE�e�����^�����[�VA��_����?=��dwʈ�Kr,[2+�%w��]<F�ؖ�1n����X�+v��X����y5���rUV��>�sRnZ�U����K�q���G>d�T̖G�D�']�-�&���������þ��Qt7X�F�~V�d��!Nѩ�W.����OEr�*gv�|�/�M���?��U���]��������|�8䋢�E�c��'�/0 <����9g$�C�������Sr���p%¤����nS��ƌM�T���TJ�r
+�Jw�����א�J��s��0BP��>�Bb�k0�A-�EoU��XE��Y:�e0\�0��b��\S�0F.&,C������:.
+9�zc�j~��x�M�d������:y�7�$H���(��p
͕��8���u�nܔ�����1�Mx�t*"��b�
+���өh�ҸV�t3dTR{�^N+��bR���,����|�<�	���{cQg���{�p�P*�'��a�$<�5�4�K7)q���%�aM��%���…�Loq}����F���b�[�B�c���|�$}?��a�Aw0��/�7=S fS��+aKh�}��7�u
����,Vc��*���ƭ�!�3����u��:V��;\7�v���\��|;�]��%U6���I�-P�ĩW��S��>�'j�|@������2e�k���_�1��]�u�����Ձk*�T��0�u'E��T���D� �	�b�vM����x0�|����7�x �	a�^��U�L�]��K7�k����@F'~����\t����D%�)�bB����pS|��
�Y��@W#�͉q'����4\�����Ƅ~f�t��3��5�&<`
+sy���̾����WqK,��6|�嶮��w�:[���e��q����A#d�a�����T���#�3Y}�:(r�ܽ�:AJ��l�ӛ'�����y���q=�7i/k���F��
�X۞�'c\j!�g.�JkX.��\ig�����boƄu����s�vb~S�5��~I͞���R�f/�Hvڽ������-�uv�ԭ�d���(��.0���o���Ӓ����p�s��t��9�8�/�
I#�|�FZaǓU������}�s�6��(Q/��u<�s��4��[��_}IS����`b��7S���=Y�u����5�)f����a_<���!%L@�T|8�V�~]�Pnɼ���ܽ�!���%�i[��=�e��?����X<Qe������!�:
+endstream
+endobj
+
+990 0 obj
+1850
+endobj
+
+132 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 989 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+991 0 obj
+<</Length 992 0 R
+/Filter /FlateDecode>>
+stream
+x��Z�r#7��+p�f�؁�5��F��p���6Y�8ͥ��=�	��?�P���EJm_��*=&/W$���8*y�f�S+_��h��/J�5!SW8��U����3!T�ŵ�&ʴ�t�K�Ö�|!�M0]�=�	�:]�F5ė)&
+�vmZ�[�LGĕ��,"��&�	�Z]O��|�����T��=F�/�R���o���Em���J��2���.Ӟ ��"�y�0�VF�����cQW�I��0���'H�o�-o�:˝`ʻ� /_��d��R7/��MP@,4��	INX���Q���ѝ��5�5�,S���KQ2�8�8��$E	K��'�ku�(���{��(�3�f���rV�-���c�k��	�2%�	�x,b�����Ft�T&�XD2�E,)p��jҞ y�������]�˲�@Sߝ �T%�)�ia��SX�HuB7�$&a�^��CZIb
+e�)�
+�����8�H�f’�$,qYԞ ��u��?{�ޣ��<�b�I�Rte-�h��<&��I<&���#����wH�K=F�.���+�`�p��"�y,bIY�Y�jO�<�n�r��rN��J.��l�f���
�0]�������fV�w�������a����d��-k|V�7[��d����%{����!��͟!M�F�����Xt�-֏X�����o�|����)��r��@��OU������K�b�x)m	c��hxa�Z����]��!�@|#�P�2A9/����E��Q2�4W�TԞ ��1���R��a8"�A�[�GD-E���+a�YDYM�ĵ���pa2������&������f\2���ɏ+m����n�F~��R
�ljtOS�j��j���b�4�=^u���I8c�����C�lHf�ZcVc�2�#�ZҦ�5ES���h5�[s���Z�qPZ�^a፾�w�g���W�k>VJ5ַ�Q���A���C�7*�Ҽ�$�R�k(�*�A�Z��;��A�k9��x[x��(�7e*b�*����U���-�[�ߴ�ӡo	}.N���k�;n	����ŀ���f�<&�B�?���6]�sQ�n�>ۻ@R+}�Jי���(�*�QM:����.�����bJ����Z�* �ϋ� S�>�%�*�h�nI��4���qm�P��2
+N�E��mƼd	"y����]�}�����'��;��BQ.
�vu�3�Dp��6�b1���C%�/D�ċ��n�������/�ڂrhj~�-�՜u1�?���i�t\�\�CQB����<!t�ՠ���Ho���û�b���Tl���v�
k���q၎/0�XX����A������?��w��vv9`QGP�#b�����"dv��l�M�8]�
+e.��O���)��0�����"gm���L|������&����(��͒ϥ�^$�
+Ơls�^ޥ}!��1"���y���S����|���ޜn�q'�/l��r(�2����,�� �#S�#�OT��z!{��2��\��/)�2ļ��b]}L����=�{H�pB�?Z����P��n�5�t3��/lVd93�=��q�=�!d��T�n/Z|�v1:���:��	����n�D��?ϡ9E��Eyl��A|��CT�����eǎu��ͣ�a��Y��)��ah0O��$N��<O�	Z�7�����م7YzղL���:��\����'�7��|8��kr�������`�P�:C���XU�q(�Ԛ͖���=��55�GiP͞��
ރQ�j;C�uu�
.�}M�����AF�p�џ/�Ο3�8.9����r�S�k̘�)��2�
�B�z�F^�ģ�v��uh@���5w�\��DŽ��sz����T׵���d�v����?�i�����}��l���.�j�� ʦ��|�x�b@ެ�����7����n���V�_sC�������i�
+���c�N�ޟ�iȒŎ�6����4��vo���%yU�u����uUe�;,�͗�a�K��Փ��ip�����צ={�p���ٗ쮚V�w�'�wS��lIIG/�^�^.c<�-̝V�z߄�7�z�>l7��t�~�A�7�ŬJ�j�;�3.S���bB�������
+endstream
+endobj
+
+992 0 obj
+2120
+endobj
+
+133 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 991 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+993 0 obj
+<</Length 994 0 R
+/Filter /FlateDecode>>
+stream
+x����n�0���s�E��;�+�*�pU���7n�ݤ�I9��⁀bBN�*+E����ef������h?�{� �aR���y�w(���0��{(�'��y}'��~����޽�$Տ��ԜLU_������An���}�I�� ��z�����GQE5����n@G4ԥ	��4��1N�i���$����yI��s�Y���1J����e���TvP^@|�R��@1xP`�#�
+�]�<�:��b�R�Q̳4���5�'e�Y�FQc~ǚ47 *>�tW��9�QA��!k�hZ9e=���БO�C�c!�����<fm�E��������Tȷk�dΛ]<$W�+�NS���ȑ?��K�s����Ee�����nY]d��Ȳ"���,�O��M
���͍�ŝ\AA(����i;�@[8��U��3���q���l�b;�������a���,]f�#�[�Y8ʸ\����,O�E�b���,a�۪��Mn�5���j�p�ַ��j�p�MS.z���}�H�6%��>t�h�h���F�}�"y�K����M����T�up4��tc��5��Mnp
.e�b�Aa���/�����]�M�kQ������dgT�)�6l�[��m����R��^
v_:�����
+endstream
+endobj
+
+994 0 obj
+668
+endobj
+
+134 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 993 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+995 0 obj
+<</Length 996 0 R
+/Filter /FlateDecode>>
+stream
+x��Z�n��}�W��7p���b�cYA��8	,�R�fL�)����!��Ӽ���W��شK]��NUE�(�?�4K��'�^g�A�?�v���,���U��q�T+R>�(e����8bT(�#-��&RF��}F���l��ę8�B7�1�"�o��r��]��oe�"T���,�YE��ִ��L$j`�a3�ʳ�$�{v�jm�5�	�D�cwA���Y�Δ��`:So|0��I����N��ܘ2��Pır�XL��!S�%`����t��l.>�{����3ՙb\�#��F�x!d�6�L�&�TLg�������?̜<��5��
.�0�?%�����B����zv���|Y��;٤��O��_���TƬ�[֩���6����(?��MZ~��P#"���O~�e�[���k�{�d^,��ݥ;�,K�EI�b_>��f˝��t�k�6�yL�/dW`}�7K�l�R�� Ş,�-y��{��:�m���Xb#r�Zen�4�?��գ{q
+JER��Ъ]QZ�>*ï��UV�%���"�`7�8^t��������6�et*".Y�����[���cn� O\$u��lK�#%��M�'�&�t,p����C�0}�������R�!8�Fރ
�]M�xu��e��x��SE�m����$[��{3��}�������e��m�HJ^�bi�
+�`�l�V�o�x��wN�6Ζ�퇵M��g���f�!Л��UP�J�$��]�[����ҶX�	����,��c�F���_o}$���є�GTm����+�����F�����*�$����P�8����~��p=���Ң5�+��2߯�+��?W_�{4��뾲%N=�6���lK;���}�,�jٶ�K�Ή@�MN�������Qx�?�O���[�ȋȟw�z.�9Ћ�·��g�5y��г����h��U�O9"��a0h(NH҈�F�	-�G�j���
�	�c����(��i�s��XG��c.��v6�q�c�*x�E��!v�#�(o�L��T�򅤒�340�>H�3wPH��p��PtAA���b�%c�A��O�`�)�sI����^�
+�yuh��o�
+:��q����~�u�x��*�aR�	���ۙ	��{�t�b1njM�+=3���P��0��\2�0�2���QQ�#|�yLe��3��A�G�Ӹ��%��|�\;�(���oa��,���eH�K�y��`��C�Oҡ�w��Z9ډ�5�cC(��N�0�`�:�X��p&��0�c�Se�(��el4_��!5��t����G2�/�1씌�k�pM
+�n������2&9&�[ш��Ȓduk376`�wp{��	lΔKOpж�F���F6�^��m�&S���ܮ>�zsB���a��	�q�a����� W�a��z�3M�롘����&��X�F+���c��|���B=��N顿����Z���SG(�9]_��:jt�\3��S�+��.`a0�/`���l��	�������� �	X���3I�����*`G�].`������ԁ.p>�3����섀k�]?șF��v	����*f���S�L��vcܤ^�&��r����3�brv�`μ���L&��R̂�.� �ib6�X��d17A���5Z�>��X�|�#1S��vJ���x���NSjl�f1'f�N�pO�q�*�4aܟr��Q�Z,���&��0��|���P�N����g�����4I|��)x��8Z&��cEL�P����s�#���j������i�#Ovk�tgW?��]�ͣ-	3_�0�=��8L��7����U�$�?d��{d��/w�����V�c&aP�Z����<�rڭ��i��
+endstream
+endobj
+
+996 0 obj
+1943
+endobj
+
+135 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 995 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [997 0 R 998 0 R]>>
+endobj
+
+997 0 obj
+<</Type /Annot
+/Rect [152.5000 484.8483 299.6995 497.0808]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/p2_sample1.html)>>>>
+endobj
+
+998 0 obj
+<</Type /Annot
+/Rect [152.5000 462.3483 309.6115 474.5808]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/p2_sample6.html)>>>>
+endobj
+
+999 0 obj
+<</Length 1000 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n�F}�W���0�}e����e%�H�<8�miM�Z]ƙ�܇��=�d_����{�c[:�>]����E��=_9޿*��Z��ËCs���+^��k,F�H[X�b�s��%g¨���⽔0f�	��J��k�U�0e�i�.�3�&�ӥ*�V�sEL���Ev
��T�!"˫�k�ګhQĢՑ=CT�Z�ޫzw�彯�����c�
+�$�G�z�}ڎ<��y����FV�{�d���"&��g`ץ(J7�؀�<6`����E�#{���M��}*�.��*��TºR��GI����k�c(Ή��ʩ^*�����23b1�"{��������1STRV)3��Q��d~�X���|6�g�
\o�뿼�'�sw䱈!�+#ҹ&+�S`�����<&���'/b�tF��<6`#�E�,�*�t��J9�؀�<6`ٹ�X�:�g�8�fH9y�rV�\������	��OW׿vg��wl]jX�k?3����yl��^����s�͑��>+�m{�n�iݰv�{9~��}u�@��M���^o��{lضޝ��,�U�b�?��^Pudž�������ϧn[���w�A�?և������������Y��c��|�~'���ͪ�훜YDK�5OfYLn����n@�N|�w'�v<�����:V��M}�a�j�?<nV�c}`�C�o�M3��[x���ex��o�5�.R����Q}�s}B"��=}�cb�Aޖ	�E��߷H�J����{z��D�z��V�I�J����4�c��sõ4��H��
	I�2�3�0�XZ��/���b�Y�^��-��x'��|ῦ�4%*��~K�K�4�MiK}���_i�#��$��E���p7p�ZY}�]O�S%}�����T��"����Ӻ����G����Hm�T��)W�����m>"�$�%E���*�S�����	�}�VeI�ńVP���6�:q[�J�_�d����tUJ�rJ3ԕ�����9����_�6�����4q�c7���BJM���|����M�>m[��(V��v?u-��f���1{nNT�O�OTw����В��0���ș�yE�*xeF�
+��������K�~6 K�Jh^����t�q�&L
+��Q�+`x�+]z���C�U�;��RI���w��i%`����!&p�;�Ұ���e ���4iM�)���k�P8���l�*Ku�5Ώ{{|/���-Qy�3,N�7U,�3Ȥ0[[8!�a�h8qyd++�{BR�#��9a!̑=�9�œtMaNŕ��Ȟ�?�l����e	M���~+��]~PO�'�q��)�4�.�*(�Sنzu/�S���\��T�YRY��� ��(����|A��dh���Eھ��4]�}3��.�[��55'���j|~G� ���حq=]���H(�y��)�3.��c0��o���033�<�͵�Jߢ
@�A<��cI��I����M��R,�M��b��/悿����unh�B,�}$EI��a��f��#K��Dyc���L߾a��م�
�R0d�H��BMN���D�>P��<l�'j�q%�{
!(�0�4X�O	ìdKˤF�w��KIm�̀,}-�*\��"�[���R�=!"rL`(�<W�D�x%��~�Q,�p]#�`QZ�N�	Q��������4�Oy�O�(�&N���z��G?'
#�[�4��:��%͌S����7���x�䛘l|%f�ݶa����7u8��?��"MnQ&���;��ާMCm��x�S��`�G*��B��s�����G��0�Qv	�Y��w^J��2�����fr��K�2�?�����+b�0�oS��]�]U�T�! h���C-
+X�:�g����*��"w/��d�J�����o�ϔEu�y4���ɿ���s<mڦ����o+���ʹ~��U���ᗐ��D!�P7�E�1^k�?����'t���@M��l�,:b�:7T�l�ԁ���_���%{�40ت[����c���_����g�����~|wެ�D�Oi����H� ��}�-
+endstream
+endobj
+
+1000 0 obj
+2097
+endobj
+
+136 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 999 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F11 588 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1001 0 obj
+<</Length 1002 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n�F}�W4�'����� `[R�X/�%@@K��%*"���QNu�ͦ��d�3�ȭb����uiZr��e��J��F�A��K�z�f%�▾�<�I�%L��+�<ᙒ�Z���/���ril��gƐ$񏤵�� ٭�2,j�2=̯�#�����GP�2ɅR	�!�`&Hv��k�իQ���z$Q#ցH<���{_��T��� 3<5��1�d>���$3�E�z� �(�z$�d3ƂLr��g@�Bp�bƂ$b,Ȉ�!� Q�Hr�oy&L�o�K҈�M9�&��MG���p�D�Y�oA�&�I�!ʷ\rD����<�"��-˼Np`D̍�(�FQ�w���g��������3��r�+��:e��3%�*���c��	�Pc=HfL
���Q$�T&�jJ9cj�L
��0GQ�w����D�i����I�0��ջ��f?v�W7��\�ه����n>�cqn�f���6�M
	�L�u*�G3L
+/'��C�ڊ/�o�`��-{n.�NҶ+�-g?>�צg�⏒��\�ȃɰ�������[������]��ܴm���3q˞.�iw�N/��8흍[�kNm�//����M�b'\��Jlq�x�ZZQ�X4��nYװ�@���j;�</QHթ�.�����s��N�=ee�;�Hx��1M�̦�F9Sj��p)�L�Xu���ˎ�:��w����;:?5��ݱɇr~8�@�'[��@��C�Li¤�P�:��S���h�do[)�9V~,HF'S�0�N�D��U=d��"���py|,O]��������y)�ss�WfO���|��S4�E2
+�혁�H������_��Qp���/��4Uf�/������k�Lj��F�;���J���<�[s'6F�ڦB���K���ڢ����7r�
�������h�L��=���`I���H��54�v
+��:M�!$+�sgM,:d��ı�2����lan�C���,�X���xFOǽ����ܚ���v<+��Z
+
+=v(CzXrH�<S)�����)ךE�P4RygR��k
Mb<2�t6R뵕8�{������BC������3!eJ��-a�K��d^��R����go�����L�t��/3��i>�|8%F,BK��9M�(�|�0��*�̔62�6?P���A�聒�c�LB2k�����Ɨ~4=�	��R]��y�8G�j��fH|�1�T)D������-W�k�(��]���.$��9δ�\N�
+E�I愅+j�K�ɲ��ʏ�z44����¿��a�LG����by�(\�F{7�	�{é,lj���u���o�4��{r���_����nh�-��{L��R:S��<7t����(�c�7�S�{_�_n���sSL�(��8���Ry�w��/_ϛ�!���_ӟ6�)RO�ӆA���DE?џ�j��7���P+5x��q]~�����R�ʄ�1>�h�(5�
+�^��b�Pv?�QWz��}�'�ذ�Ɋٯ���`�&�.ʑC���]7__"���}M�k��Œoך']�3e}���KѨK�F""ݠ�Ңùj�x'IP�<�����j�K:=:EG%�A�&q:!lj���5qo�m�����M��
Zh���E�Ɩ�O�P�b#��,ܼ�Y*(d�%z�r%��!j\���Nz3��dS��R���}�:����	g8��Q�2�
+F���3�O:�%޵�{�x���-�4×�T^�5}���<>�Je��b�F��;�wD��w������K�ưov=�]z�`�g�WH�������K�f?��nF�&Kx��t�s�R2��Q�O��	�
+endstream
+endobj
+
+1002 0 obj
+1820
+endobj
+
+137 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1001 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F11 588 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1003 0 obj
+<</Length 1004 0 R
+/Filter /FlateDecode>>
+stream
+x��X�r���+�TR��@�\�҃LUV�p*K�j=2��PT<���Q���-�g�Q�I�.�}�� �_�2���]�P�����Wr��ؠ�\Z��MzL
��R(g�h-!&�R��5٭���`{`qP�w��7�"W���1ʺ�Ř��N0{zD��Fv+�����o�ߚ�;DW���^�r�T��U�v&#g�1�;j�����N���+�2���[�{�t�l�cj�A�>��n�}�#�b��b�F�񭙽C��jz��&�����!?tapƅ�߼��q�D��5r�A���Ld7VgW����.0��b��T��4!��{�
Q�����60���X��u��	�띴����ǡ;S�b��̻��֨������)�j�p�1����
�+�L1�����-�閸�L���+X�֌񭙽C���}Z+Qԃii�`H�ʾ�k�/��;��L��E���![Um�H�3c]d2�⫲w�n\S^��{�<�L�L�'��H�3c]d2�4���*�;y�S�T��n�cf��-��c�+V��b�򚱖���C:�
+6S�1�P�L�k�����b�)V�.��[3{�����3BN��3��(4�i����՟6V(��|�������֟i+;��q�9�Ĵ�=����q'�>L�I|;���ۧ�8?L�p����Xl�����x|z�N���q�?~}|�_<G�v�����]����'qw:>���y:}��CT=LQ�
��7Ř���}�k����&�%Q���6��K�+��1{e���T*������LT���Ov�����7NZ6"��p�@Ñ��l܊�Wf��]��a�BS��F�Z��m���MW[�&�,)��h�ʑX�����#����~cAEn�k�(��3b�L2�!��[��`��i3U�W��*�9�8�wG`�V��<
뛫/v���~���a��Q�O��R�8��&)}��_����xE��B���R�ۤ�ů�߿<�~E<
+խnI��L�q~!4��RxXK*A�EOa%�̲R ^����H�LGe������ҏ� �R}����}.��n��U:c>�H���}F����	���;oQ�;,Fi+���!c^e��k
+�[�r��a��	g;�]WU��x�b�G�T�b,
@J4v�����Pp��߈w򭙽!�r��o$r�(����'�ջ�����
+aQr�ys�2��;�*
�H��_`��k�����V�AyzWwXq�UxW��s�Uc]î�]��B�j�����0dD]U��WŚ�;�8��W�5�������F��o��
�aWwg��j���o�����}�~��Ԙm�Ӧn����I�O��ݝ��=O�ԫ��?o�'�ߢT����a/���bӶ�a�Beԣ�N}�S?�kD�÷
�Ո�K`�hB-������x�'.uTɔ	:=�R�5�\����:�T4
����U�`�C��!d�Y�t2k��q&pzR�a��j��J}i��4j�vv����$�Vk�k>�s�w�G�42採�s+t��^�զ�Q{6�1�-���hSoJs.�/%���kj+9��x~�u��k`�n���1D��]]��e�4��-�������Q-�N��$�u2ER�sW�
+�ac�6)0��,	���͙��8�4�zQ���IWo�1�������J�/5oQ=����?�����(�七"i�2I�.1�	�:Q]P�%��{�n��g�&E<E9��ꍓ����[�B���"��4KO�ݡ�\/]e0����
��_n6�./gT���D�磸�v�b�i:�j��x���o�=U������q�z�0ʜ�O����
��{����,���P���񶯐6��fĿP�ëB]�a\@
+endstream
+endobj
+
+1004 0 obj
+1868
+endobj
+
+138 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1003 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F11 588 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1005 0 obj
+<</Length 1006 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n$�}���l,h^�Mca@Zi�~0�!@^Z3-��=��\v��L�ON5/͞���A�����C�a�aY%������S�F�����.�\�7�|-���U��Rq;�7�>h��Óiõ�nx}!�ry��q%ӵ�R9.]]��Lc�@�+0�+m������"�,)m��������DQ`���I6�O��AWb�W�u,�g?�
Y-���٣��E�q�kv�����^����b��E� u�q>Q,"�"F^:�(0��M��P,b�2Vq�<���KᦊEd�X�H��QƲי�@���q^Kkxe��|^+W󚸊�T���97F��e��m�H�sƊ��X���>"Ɇ"2�u����,���cdf?�
)t�X�+4����'���^�^�݉b	�O��n�k�;fA�X̟�b1r�e,ggf�R��M�Xō�r�k�R��b�(�"�3����2�������M_���Vfz��4�`���WK�T<�W��ݮݟ��'����k�_��w���
+5D����e�jQ.�3c���y�k/_�6����=3y�o����=k�kְ���SN={����<�Gv�4'�t]��Ȟ���k1�\'�gj��t�����G>qK?IR���1%�6e���	�8�o���Я��T'u���!
���_p"��#��ˡe�#	O��~Ś#�]��y�
+�j󆦱��iC�{���u{(�;6���!��{)�ujW���g���+GU�ǖm����������]ό�^}�vX����������@�ڮ�A�!��,"T'��M{h��{vG���"��œ!D�ˉ��.煸�]HT�B��뚇�М��qb)t?!�h��Ǭզ.$�.�ƞ��C�����7�]Ǻ�Œ�a����4RY�73�Y�6��g>D=�����8����i��bi���}k�Q�����N/iLHQٛo�C�G˽��z	j��h5v�N�0�zi�!�4�0���1|VX��Jy#�JiL�����?�5x�<!q�y?�Wzdol$&����rנ�V��t�5�p����G�%%o`7�}��]����QR{�0*����q����������hxޑa�]b��^�lPA)�I���
0�drIG�bL.�q��y8�*�kЭ4����M6+a��rl����L���z)����B辽��̥�0\z%��f�ft:������U�_���5k(����Q�ϝ�a�͚��5O
���e���>���/k���#m^�5�F�/�FV�1tC�He���̖�PY�V{�>�q�mc��f���7�yȫ�O�{WY���J'<l���X���IK�o����4GP�ǔT�iBL���j	s"�J["�d�G���hfL�!�Ҭ�^ 2se�J����).U�z?�ch�5ڐ��b�5a�b�(a�׉�@t��v���k:Ĭ�����k�[H��I��k.�of�SCf��������x�vŁ���cNV)�
+�[4��P|�5�B	Y-�pq/�z�:`hNQ֏���qVd/�*seL�i�
+̅-م
�FR�m	+݄�^'��_��Z�3���\���O��-���?��3
+c�:�ͩ�&���Qy�PZ�k���.�+��jW}<zb7ph�{*��f�s���c�kQͣo�?�����[s�j�E���K�ᯖ�C���W���.\����%��Ğ�}[����]���g�~��L��3E�b��WnzA�4t,Cơ;�]�D�۽Ps��k}^��_�������5u�+g݄�j���i��0Ley
+endstream
+endobj
+
+1006 0 obj
+1797
+endobj
+
+139 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1005 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1007 0 obj
+<</Length 1008 0 R
+/Filter /FlateDecode>>
+stream
+x��Yێ۶}�W��)&]H]��@����P��S(�2=VF"]I���y���9{�.W9h���X^C��^�r�$��qӤ橴���-PهQl_lҤ�S
+�,O�^ɚ�diN�+��H˜dY�Ԕ"��UY����ڔWXX�d��0�4W��b@[+J0�R�my�&uC�֋�0�|i7>V�����|��z�����T����s��A�pgή+�0�m��X
+Hm�l�e�,����0�*�ha�e����b[T�cj]c}�u̲H��ȢbÊٌ<���#�o�ݚ�[me��*iX��28r당5���Go���#���B
+iZ�|��,a�V�oY��U!�D��X�7�����)��Ot������yF.*�
+��,tk!Z5�����ա�l?y����!Q�W�c����B�b�
���F�*���[=�v�#dɷo6��iL�*O�2�y�on�)l2��a�=t� 5��(���x޽�ně��_�Y
o�q�ݫ�<9�S�%��˷��������yx���c�S�]oG��SB~� �����p!�7�m��r&�"!�(NJ��k>�&��}��(?s�m�M��n�=&��K �����t>�F1�>ؼ;ϳ�7�U�%�<�Ag���փڤ��ʆ�����\��(pC�UIJQ��iV"R�U0Ʈ�02���N�#�&��2�h��U�z�0o�ceXV���10�J�㍂�Bi7!V������B��z�T�V`w��Q�d�e�Q�����
+�u{ߐ&��p�K�h�rZ����-h��C��]q��*�7͋�i������:��?��y�*y����콘q�
�$��<�x��!h3�4:�z�'��b����}�wj��+yx��5�����@.�L�9p�$�	�aV�mA��#9��hg2)Ȝk�w#A)�ȣ�uGt�,�kEaU�C؂n;�����F
+��08�-��tr�W��2�A����Π�@��]�o!�e�[n��E�~���Ǹ�9ʦ�z߲�\�]��1i�]�3߭&C���y�@l�mb�I��lӪ�1�����g�W��lNk���pyQ�=#>�s�^�i�ؽ6�U�pCy���kB^�.
��I�"��t�>w}���ӧ��:�Nk�����@'m7Kc��N��'�3����,��-�$!��"�\�z���GIڣR��� �GaN��%<vrߵ�B{b����J5�����{��~Oy��Fj�C�˩͸h����H�b��i	}V�	�h�;�M���ū��?���Mˎל�5kqd�I6m;�w�-0���L�;1^`���V1�i�����ROQ��(A��D|>v ���z�!hj��4�Xu��Ķv������5��o\�ݩ�Rjirm����Ը�W�DI�9�V8�*�Z|��.��t���V
u�W�TQN�|��k�.`3@l�~
!@/��uTN�!V�ۄj��H�i���^�aV���}5y��i.j�i�m�Ϳ�X���f>����A'�G���5ML<�����%y�'�3ꨎ��d7A����f
9�s�������e����NZ|�Ÿ`e�
l�����ؔ�;)nl1�g'�d�d���y=�,5���+8S�5���n��mW>���J���tM�;�
+���(Y������.�-[�N�@Q��@�-�������nT���/w|Z��>%���#�����{m�MȆZo��Q�Y�ލU��:�!��<^PGN��H�"[7���'��=�-��30D��5�jLȏڑ�oV�QrF��Ѕfu#^]���2�����-]�U?Y��9�k���&�?�
+���hs�%�
�x�5/��B���-�Y��WW���P�~��'=��M
+|�ڿ"w�������Y�tA啷��I���_~��5��9��p��������Ƿ-��>xկ��p��n�����_�
+endstream
+endobj
+
+1008 0 obj
+1961
+endobj
+
+140 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1007 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1009 0 obj
+<</Length 1010 0 R
+/Filter /FlateDecode>>
+stream
+x�}��r�0��<���GE �c�&Ӟ|� ÂU�D=�-�F�q&S.�ّ�����$
tI�ƪXΌ��!��b�~J�TIJxV�o(e$�wR�e�����s4�O�6��qH�y��W�����YA�HYd@��_@9���h�����q<�?J3����g4g��
��P����;PC�������:~��)��G��	|oa2#8՟��	�;5�Z��.fu	%�y�~�����3�߿؂� ��͂��ƪ?8od>�Do�nd]�q�� �gf�Ei"�
�J��FY�}��Zӿ9{�l�?"�R��r'!O��7y��2Z���|��k�C
ݜ����Nv"+�Ě�z-����c�OXc���XJŊ��W�����@��#��Bc�q�Kz���:�j���O�/�jp��v)D.��{�!P~�����%
+endstream
+endobj
+
+1010 0 obj
+441
+endobj
+
+141 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1009 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1011 0 R]>>
+endobj
+
+1011 0 obj
+<</Type /Annot
+/Rect [279.1560 629.1337 319.3215 641.3662]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://prose.io/)>>>>
+endobj
+
+1012 0 obj
+<</Length 1013 0 R
+/Filter /FlateDecode>>
+stream
+x��Y]oܸ}�_�G�0T�\,������@�B��=J4�@�����>����?4�c���CF9"�<��W�E�?�~c��IͿ����C_o���)ˬ eM�N�"���RVH?��K-/4�"i!S~�����pY�Bic	7zzɬԼ^���{�1^��B)/��(Je3#ۍ��k���J�a��3���+`��hsL%c�$��f�! �M�5`�&y�,d3{�����6ɜ��G�^=7���ES�u�@��*���E�f�y�-X�9/��=C��,�X�T!�r�	�,[FlF�1��Q��ׁ=C�z�6�F�����¡��c�0\�$L��4*��,�˄�(�Ȟ!"q����0Ei�9<	3��lH�eŒX��=!��g��G�^�(�E�"�$_ڔ֐{H�1�'��
+�/b19#{�dX���֙�SZ;/a�"b3��،ei��u`Oș޾Mkfp YNSZ�����W
<&g+O��LN������L������
�Ɂ6�X�9|����hCD�0G,fIJ���"�3i�#z��^��"bÃ`<�5g"$A���EL������=C����"b��)���T,#6#���X���^G�Y���v�|n]��J�e�XV�0MXZ����7���,���\\��vG���t������~޼��heɼ��\�+%mJ5�0BY��p:��駌��T#��<�����DNCM���N����<6�<u������Զ�k�}��c�/
�P\k��g�VGR�CG�}]�5�5(�m�|�ؑj;�j�������I��'CVA',.M�ȶ����P���0v}M�}M�;�Is[��̿k�zpϏ0�XDw��7e�-j�y�L���{tL��34c��Cv�;HUh6���E9��F��P��zJ�Ιl� t��;����i���B�!fh��̴�%v�$��Y\�e�/◒���{fo3�Xh����U�sc��0�<4�#iF�i������'�ĸ���V_�����u�ݿY3B�h���j�Nr��`E��W����+���賵�HM��?82�id�Db
+�
+Ð��3����ia�t��F1�Ø�nx����&��4�3��!�G���W��q��\C�� �]�iT�! �M�5`�&y��u`��҉���}��BRw�r�g\�fJq�Ap',�"T�oW򄣲*�k�K�}Oꂚ�*�^����@�|�\[�����Ԏ�^���vǻ�x:�N��n$���A��O8D��O����2hރ�;�2�.lP,�p�=�=�ԝ��(���施��]ݿ�z^҂2wC���i0k��$�6��h��13��6[�/N�RQ�3&2��j�G��W�(0�3(bЃ5�١K?*��A�ր���Q����)64p����V�ag���Л���sF�3���r���mxw��F��*H�LAP��������O����pBqo�a5�x���H�?�VI���{Aŵx'��;&�J�R\I�����p��o�z�X=()¨�;~��߮��,C����x��7�
�b ��Z\K����ߒ��?��).�6�׺��Bq�
+��e�����#��#�*K�}��i�&�����lƚ�AϨI��>�F��		68���+h�s%��F���QɆ������t�(`����Ŧ\/�YZk�9�<��ĵ���H�Ҙ�J�����9����v��{I��AK�+#aa��&%O��s2���F�rX���Y����0aL�#���aQ	{����&�2��Iɣ83z�Sl^������@ֿr�(<����y˸�|5����9Vc����^,L��ҵ���d���н��`��Q��<F�tw�'��	C�3�gg&���3�'���{y>:��#����ц��0���i�(`����!���R�	�WD: ���Y�\��}�ݓ��ww�I[?�-9}%w}wX�K»���7����V��ӆӵ��â�N
��7����J�t��?��^l_=�^,u�������
.��(�A���	R�7t(���r-8��h�űC~ݓ
+��'_���9��jZ�O�ǁ�3D����#�������,9~�\?� ������[	&|q_9�X�k�պ_lp���㊛T��.-3W�P����s���<��3���{s�u���7�u��+��j��4����(�f;m�"f�����U\��l��g�v}C�
+A���56���D��m}�0sIXIu�b:2^���v���w��3�����	��г;mG��:5���FJK� �����.����7
+endstream
+endobj
+
+1013 0 obj
+2333
+endobj
+
+142 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1012 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1014 0 obj
+<</Length 1015 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n�6}߯��uX^E1(؉ݦ@٢(�e��U��B����l��O�or�K�������sxfH�b?�~��t�������tf��nE)��~T�aΨ@<WS��8Sy�Q ���u�q�3�D)ǹq�P*}�C�+��'XX������	{D�,�Lj��R��,�Ev�f��G��8W�U�����{�H�u���O��M����}�ɧ�yrb�Y} �E��U��Cf�9�f����Y�{DR�<�*0���V�Y5W�!3�f�y,f��d�7��?h*�Js�Ų�3��Ԙ�	�)�	���D�%�X�W`O�<���@�bS�h4fH3�! ��K��D2Ǟ �s}����������I�ñ���KH�X���X(��� �bK�")�e
Oa)�9d��Ò�X�ڳ'��o�5�<��_,k�,U�bk�i4&�ٴ���8$�9`�1���D.��lJ�J1���e4fH3��#��K��D2Ǟ ���DYS�+�֝)0�<�4�5��sŘ/�D1��'^�Bq�I�X�X�`�TLƲ�Y�l��Cf�9,)�Ŭ={���v��1g9F Z–�*�mv�n4��\7�Տ�Pq%���J"��������%�����Xư>��O54��
di��;�7�i��=ZT�vh8�o��8�бk�eezT6�ܘ���1��`���]\���W\3���Ob=R�[G�Ј���<�n},���bjR�0��ݳٜ��\��`�o;T��A;3e��٣\�Y���К�$"���r�"��#*Po��L�8�"�e�zi)~?����;��1��B�
+�U�G7���ܧ�Y�
%9�g3�WCW}�*}Ji0j��I�ڛ�����Q9`�fog9�KK�ln�Ah{-����d��4es�>6��\v��1�4���zw*��������}9�;`�O�O�P+�}#�n����������p"ɯ�:S�������7��u��������F�
z(�*I���8���@�m�hv����7	�3h)�,4	h
+�P~-1#T^Bː�,�����Z*q).�Z�~x%�b�7e3���7���XF�}Q���T��C�����c:���٢ �����Xo����1T9�Ze����i�Ph��؃�X�n_����=@ea�,��h&}�C�+��e.�:bՊA���@��D��Q8Jr�F��I�T�Pd�v2F�9x��0W���2�X�ڳ'��\qQ9 $��…��c�嘜$����B(���?��K�_.4;f9�O�&z<���
2�;���µn\oکj
+���<��R6�P���_ [�á\..�iÖ�T,OR$���ɹ9��eD�)�%X"�e���+؝���+�Z,8�CQ�KZ����m�n�fl��ߓÖy�W���Q�90����}���K�:�	��ݛ�C�cI��b��Ik��F%�=�k��d(��:6�����	�f[�{s%�'O�����7�*�zsc�b0��ٚ�tL�_ PW%�~BP��q��CǷ-k�n�ɀ�m��F�����oЏ�O�r�j%r8�)�fķ��|�q�2-��
+endstream
+endobj
+
+1015 0 obj
+1607
+endobj
+
+143 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1014 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1016 0 R 1017 0 R]>>
+endobj
+
+1016 0 obj
+<</Type /Annot
+/Rect [392.9340 669.9552 486.4575 682.1877]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [174 0 R /XYZ 0 732 0]>>
+endobj
+
+1017 0 obj
+<</Type /Annot
+/Rect [112.5000 654.9552 132.7335 667.1877]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [174 0 R /XYZ 0 732 0]>>
+endobj
+
+1018 0 obj
+<</Length 1019 0 R
+/Filter /FlateDecode>>
+stream
+x�m��N�0��y
+BY�6)�i�iH�J떰��4=�1y#���m"�e닿�mN���&)��d�J�Y0s�T��Hk&�]$�$�Z�\P}D�*�,
Y>YXw䅬2��oq����8�Z�J��H�lҳ�,\�����U�#��k�b;�=�c<�n��
d�!;L8ctJ�LӉ���B����|	y���؟�����\�͹{�ހ��5���=����
{�q��B����߱A���eW�ɣ�Z��f?*��ˡ��ڏ����x�U6������k�ة�yy�
+endstream
+endobj
+
+1019 0 obj
+286
+endobj
+
+144 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1018 0 R
+/Resources <</Font <</F3 510 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/XObject <</I8 1020 0 R>>
+/ProcSet [/PDF /Text /ImageC]>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1021 0 obj
+<</Length 1022 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n�F}�W�(�rs�>)�(����Ą"]�����C���W.5H������3Μ�����J�+>9�P���v�W�Ts�tY�#J�a�"�b��S��P1��@�`��t�����(?^h��a���0�a���"ԟ"D�3�W\�3���D��Z���H��rLH��P�qELh,�Pb����	�W�ׄ��Q�Rԉ}F����s_�B����Ȟ�I�y�"F
+,���န>JY,3�E�f�TXq�a6J�`��<c[d,a�fD��veQ,3�E�f3"JX�:�gȲ�H��Sw���R�RH�*eP�� ��Qs�Ě05&�	�1���,�	�
+3a��{���+b����# j�̅�œ}�H��e���,e�=CX�m}�������]d,a%7��֬�N/2�<c��:a�9{�d�X�����2E涶Q2��X@X��	�������W7+;䙶�[%|Ȓ��׸&�ٮ�^	D���V뛃9�����z{��DA]�0��X�0��u���_���jxx����R��{|q����C���G�n�toL���m�������|C�}g�~���N�X2xT`g
wP�
�=��Ю�C���4�4b1{n���5#�~0[�t��E3�@�vfv}�U�Eu���)#�H55}�vMk����-��c���i���U�J�U)��¥R�W[�lh�ڞ�E�@�Ĝ��4�����̢��İ�_�KPW�Fr�>B�ٶ,!?������V#��̜��
+�,������j�E%��z0��d�Py��ؚqQ�1]��D�d*�_�����Dc�}�Y�G�T��ق_�	=��\L�����B�{���}b6���?8�Էw�a�.4จ9�.�d;t�ƞ�����e������������C�/�9-Å�&���P}vQ�c?N��#ȃ� �k7��|������4..wƚ����8]�#���C��������~�+xHH�M�}��2����>�BF�l��=m���`�->L��y�A㝩�݃;5g/Y�6O��i��Fs�$|�L~�j��:ށ�x�6��N��%|�};)ߙ�Ӹ�ZZ�L�:!�D���"ԟ�gR��/5��0�9Ƹ����D,WˆŨ�Jt�����(��ه��|&_#�"�X����!$r�[��o�@���C!|>���<��Hc.��
+�%g�g�
�\񗜑W��	/�r!
+�����'����YFrkK]����d�m��./E6�.6
+
+��B������P1
+��V�5�/.:��P��g��]�/��A)���j?,��)w�L&�6�AA\�<U�Q�����,Ap�O��|���)vNQ0��H���y�˳������)������a��%���:l�X�o
+������y�54j�hG�j����9V�_�tW}n�~ɻ���%a��$���{ݞ�	�ƍ+�M��2��}gmU��0znABQsY����
��
+����������-6k%�?D�S�����+�pn�Y�ޛ��%�9�fs������!l�ht�x���*
+�C�̝�	�
+�j��#;��7��kL"a:h�D��	/��0��pyvI�޿�Bm#8��}�ޘ�oa���т��3�s12�6��6N<�W۾>�!���+:>�b������o#P�t��x9��T�����+x���x��TO
+endstream
+endobj
+
+1022 0 obj
+1725
+endobj
+
+145 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1021 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1023 0 R]>>
+endobj
+
+1023 0 obj
+<</Type /Annot
+/Rect [186.5985 586.6414 274.8330 598.8739]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://jekyllrb.com/docs/themes/)>>>>
+endobj
+
+1024 0 obj
+<</Length 1025 0 R
+/Filter /FlateDecode>>
+stream
+x��W͎�D��)��a@#�n��0��#M��ر;I���`�'����CU��#�83��S������3B��æ�S:~��������M��Oy��R��x�б$K�H^@d(�������2���9~�9�i�q�B�V���&��s`��ܽ���Q���_����ǭ�MBN�0>ZN�$��0u8�q�������8ȓ�V/^���(E�A~���
\���/��R�p��GY��H�Ҿ��{q�Q���;sT=�.Pv�E'�,w�"�^��ޡ��`���j�:�١}%۪���"�|ƅ5D���la�%F�ʠUQײ�GD+%
ʸ�̱���Hpكh�U,���;��A,�A�&��
�u��ß���(ă�zA�Q��S-�\3�`Z�`΄nM�k�z����^�I=��`�����tY=T�,ű��cf�id�+�!��/򰺴�Q%q�]D��`��Q\���/0��bJd�̉d���}Q���g�0	x�¶�:9�l�6t){tKw~���N�
+#�����2Ӊ����b���>!�e��j�.[L��;� K�$i�����	�V�l{���Q���^�x�Ĩ��_5�����Q����ɛ��'1F���b3�~&�M$�^\���h���ԋ���4��k���,"��\Z�1�^7���Q��FY�M�[�x'z�qB�<R�"��Cj�*rA��֙u��X�xr�g��=㍭��|6i	������PK�5�j�$�g�Pm�pr7k�]�)���Jn�ŻRʣ^��-Cg��v0�z�6
�Bٷ��8jպ=��r/~%��>��A'BSu��T���Gl���"r�
m�N�z����US�"�q,����F�w��ս���7���H���l�C�)�ǞE35-�����Ȼ�R�ĎZ�r���Y�#hd��F���nꟆ#6\[=����7�V
2/:�tl��������M�c	3���d�_mv<�Y�7�i�b�!� ���U��^��?b��EH���w6�9��(ukJ��� �qP2y��p��1�%��p!�Qi�z2���Ԉ�I�k��5��U�I�IsBLJءO>L�r3�:����$����=I6a�Η���c�4yr��U�,I7FI��f�-cVrØ�9�x�=9�D�$c��g�*K���1��?�������X2�5G4��'tO�̷Ek����Crm
,�{�7!��kiQ�iA*�gW'j����ZT��3�fA��%��$i �c�������`o��<��A���E`fM�c3�W&����K�������dy~u�1|뺎ũ����P�5N��Ж4�.�����
+�}ؙ[<R��;1�p5n5Ԯ�2�����[�h?9+��v0�2?�0t�gܟ:|�{�^���,�∊�S�]J��BeX�Y��hg�6�P\<�]�z������,�0'�xvE��i
�v�W�&��v7�����:�~��ݠ*��8O�4K��#��b>��ma2
+endstream
+endobj
+
+1025 0 obj
+1505
+endobj
+
+146 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1024 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F13 924 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1026 0 R 1027 0 R 1028 0 R]>>
+endobj
+
+1026 0 obj
+<</Type /Annot
+/Rect [112.5000 218.6934 216.0000 230.9259]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/pdf/mydoc.pdf)>>>>
+endobj
+
+1027 0 obj
+<</Type /Annot
+/Rect [112.5000 214.4289 216.0000 239.9289]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/pdf/mydoc.pdf)>>>>
+endobj
+
+1028 0 obj
+<</Type /Annot
+/Rect [213.4260 141.5626 245.4225 153.7951]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://www.princexml.com/doc/installing/)>>>>
+endobj
+
+1029 0 obj
+<</Length 1030 0 R
+/Filter /FlateDecode>>
+stream
+x��Yێ�6}�W�q�,�� �^����>k-٫V�T�����C��CQ�HEN�>'AV�c��pfHM(&�m��O�
+�z@��r�~���aieZc�2�x��f挊�J�f�	m#Ll�"�R�3!,��*J�_�#��0j�Հe�Ja˜���>X]=�2�"�#L�:�
+�C������׀ՋQ�"�z��}X-�,ign?��7�=+�9�0�1�If��d�NI�X�$����Rc-X��(u�}@b�z,a�c�ʔ���t��N둄����,D��g�f2"�|cRaj�lcL�5��ƭ<�H�^��|ؐ5^{��AW�Q�1�Y�5Ʋ!ߨ�cvU�! {��-`!�=B���U�����ސ�1c� K�P�����I뱨Z6Ԝ�!c=�00
+\�l�Vw�ƌuȈ���5`!�=B�|�YB�qa�B��#�òX�� ���zq�0�mʼ-Q�v�3Z�w�jsj���к�K��7��WOh�F/�S�>�=|��.���`F@w1��U�7��=F�f��K1�#��%%�~-�Jkgʟ窮�㩪P�e�V��U���ܜ꼙��������u��-pR���k�.��ч�)?;3g��_m_��
+�}qZ�SF�b�z�ڧ���S�-1Z�����+د�{(�n���E����n�-�,<�i���p��d\��LpI%Z���y'n�M�h&��$��қd-�2< ����:U���(��Th0�)y7'A0%P V�䒈�I9���������R	Em�K����7��_F9����?�����2�:sFl�m;�����r����鐱h:\'�g^Q"n$4CHJ��=|3���a�@]���N�&�p�ȱ�e�mKD�M��=
�5�:o�`3`���I���D�2��Ɯf��w��P��0ًC��	&��g<�)���K��dȎY^�SMq3x
}J2h�kׂ�W%��zU"���0���&�]*��FpB���
+�.6١������{�~�����\Q�o�	�4�2+pa��&�r+��W�XT
+�B�vq'U��͊G0�B����b��U��_E�{��1]��0
}�Nב7K&>S�0�a	��}O"����;!\���7�
+r�6By�2#Ϙ��3����t�����gE"qa!�7p���I�k������6��a�y�|(���Pb�3��K,�B��eA�t��~H�*%א��L���b��	!dt���Ю�'
:b����oa�hB#�Mo��3�93Q8��`��n|���u�5�����nQ0D�6N]C9��}��ax9]�ab��<A%'<�-�e&�x؎�n�]��wY2�?��yGxj:�����m1{�ǫŮ��e��"�+c�{���w�Q��
+�9�`ɔ��}[��_���E�����u�>�O�';����k��T�
���ᵅ��tlѱ&
�}X��z.c{!,Hio��}��r���i���?6�no�����X7�m�&��o�G0W|�⻲"��x���_o������>�0di=y�)+�u~�[t�7%�s��9��j]�z|qs��Y���`���:4v4�LW���1ܪ�x*J4i֧��!��v��D�$/����l� y���!��ү����<M0��
+�-(�%s�<���h�Q�"��aƧ�P�`*$�'��3�R��ڱ�c���n��񪳙��|V�Mu8"�1��v���M��K�#^]�>���C�7�kj@�`���5Ӻ�<�VO(w�cU����VK�?�]�O�q	p:�N��1��sc\P
+e��٘ޗ��q,�#L��L5�ֱ�Z�9��Ʃ)�7�\��Dz�S�5�.ՑN��A�Տ�_/���)��i[�Zۿ�x�~��O@F�W��Wi��m	�
����o~�
+endstream
+endobj
+
+1030 0 obj
+1930
+endobj
+
+147 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1029 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1031 0 obj
+<</Length 1032 0 R
+/Filter /FlateDecode>>
+stream
+x��Z͎���)x��'����g��.����@Ж83�muϪ[�L�'���'U��O˚���f����ŏ����,���?r�r��MϟR�0�_��a��
+�ʥ�VF�5���Z�ݡ���F�%f��4b�Z)q�c*���z%�>�Z�,eJ�t@t�r�7yЖ���b�$��gZCB֫�ք���QŠ����"���v����wi�p$W�K���q���N~O�-#����4�H^`�Y�H�[D,a�j�0>3;���j�YDl�0b�G	K^'�Y���-H�H���j^qr�Y��FVM�����];���GOƇz�?��H����c�ٜъ��t~(
�~Ź�Lh$7X%0;��W>�d��|���z�-H�9��v��¨��V�=#&q%�AdӁ+a�8�4��LOVy
��ֈW�(�L^'���ȕ�cl%!�LB+**5�3εH�#�J5��{y�������WL~�\�?͙*Sϝ�ZX�j�w��ߍϤ�Ⱥ<y����@=�ֿz2�[O��7y���J%�+�#�=�w�o{��oH��#%7������ֿ
��}�!�f�7���]ݒ��o����.;r��~��_���Q�'���3��(�5cQQ�Q;܋���l�0���2]��J7n����zM��z�XTTd�6�.�!!�ך0�����Ğ�����r/�U1	{L��T�Q��Q�b��-��'�]M49�KeIZ����l�$T�5�L���,E�	,�h���d���$؜�ĞR��P&9��Lr�('9y������z9�/!�PUھ�����"@�Lj�Ű��� ��1ٔIUtV�fH��TQ`B��*�g$'5aER3��sR�����IM���Ğ�����ze�*)du4�9/'����H3~=�a�UTp�������� ����DN�2���^F�����{����������S����Ƶ�����&�Sn3r~n�\�g��x9�o����a��7���G����w����gE<�%u��C�CP��<�MwO����C8-|m[��wM׌�}>:�.�����N�uG�v������1�=���O>�Z�QRmO$�i����]s��M.�5x�Y�6����K���=��CW�2�ڙ�@�@aah=
+F��Jhmfd�S-����ܙ�~p���De��	ش2��	[ �9Y�5D�@Zk�`$�"����b"��-�����f�J�����%xHy'��-!����-���T�IU1�Ƨ<�fYC�S{�����a�T�&Pd�Fh.me
+���=XE��T�+b���X5�!�CC��"R4�	+��<2y��3���r������<�^�5���l*q���uh=b�D�탇�驁�T?>�z�,��[O�{l���%RHz~
+���i�8���Б�w�Oۑ����0ߦ�P��C=L���aܶ�j�R���4*��:
 ��Ai�	Of�
�����H
��O==�{X�q�!V�]ߏd���z�w�ӽ�X�\C�{�w��\����T��]Z������DB	X�*�¢رKm��@&����睄�X$�o��<���UT3��7�����,��q����������f:�j ��
B&�n1q�T{"(��n;�%���D߿��z}8���d:��*Z	z��d!GLh5t�0����'�λ2�L����z����sx����QP����֚�,�J(���|/n`j�(Uu��5�B:=��;H�f^�W�'���V����'y
+��rƂ�y“�Q�CO��z8�<��$Þ@M�a޽�������\-�U򃸑*\�hL��Ny�w�Z��N�9�<?�g���쭓�ˠ�̕啭��_��p��C��:q�$dh+Y,
+�z���1�	�C��RE:-��eB^E!_K����Ny�I�x1�2/'�X�\a���"^��Lċ��8�uc�n���Ͼ���t�	����3���.�����s[݌�8����a����fF��t�r!xƠ�t�Z(��H'�Udψ�\�#�s���A{
+m.���`���Jk�p%����ubψ�\'[�<W������<p���!�3���PGoc���WO}�u<<��]�t�����ٯ�������]P잢�^:t3�}u٫!f�u��9ɲ�f�ҠX��`��F}�I���3�<�_�p�
+u0[���d�1�dY`�p2��ŕ�`�,�Zm�e�(b���^ g˲��EY�|����N��ч����mZœ�V8Vf��b���̊2Gp��mrvaI�A��ZK����g�Ȟ��݄��X�nbO�Mk���k�������Ğ���[��r�y��4Q�ū��w���w}x��M3^	chF��	O���R`�����p�|������)�q�m0ߤK��=	p�c�L�.uŵE=�X��y�	YN	���a@R��K䏻��}6����n����2wx��yj�0���d��o���Q���Z*f�Ȍr�	�Dib��`�~���{pH���rFgAk�>m���뀶Fr?���w�گ=�*�Sp��JL�W��>�-d�C�6�z���M���!�b$ޣ��@��Y����]�2�^&e��/�
+endstream
+endobj
+
+1032 0 obj
+2686
+endobj
+
+148 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1031 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1033 0 obj
+<</Length 1034 0 R
+/Filter /FlateDecode>>
+stream
+x��Z]�۸}�_�G'�jE��G�] ��,vQ��bE��Ɩm5��Jr�_�!���R$EɊ��f��=�����^j�!���&�w�y��0@b�4����Mdi(��s(�@������Wq�8��TJB��#Ε]c����	�fD8Lf�D��ă,�)2���0$R
+�+���
Y�8[��q9�y��{Hdem��I��o��j1�%�+(>H�{��q�2����K#�a�e2��!^�6����R|��q�2���(b�#�9��t����b*��X*�I��J������e$j�ci�T,��ȍ�?Fe���ü�t�K/'�C�A�Ť���X$a���tn6X��ü�t�2#�C��e�z�oѻ.z.uGs�BeM~�"�"f�g1S>����I�/b�#�0p!�P��%�E� ���+k�
^[�2η��)|W�	d,�iYs�)���X��Ր�<��*g�C�0;�KL���r�=��,�g���r�o���
at�o�%�ü��I�q6|���E����E�aH�0VCY�ߦ����E̔�+<���t�=ċ����9LM�5y9��EL�uk�
^[�2ηW�H91I��R,��qu�݃Ħ\�,�ES|jY^�޲u�+��EY1�Ț��تl�eW7'V�5�����3��+[�lʮ\�;����7w���o�ɞ�Xo�Xl��h�+vh�eѶ/𦬖�ve���.`�[H�����;���ME5M}�l�:����՜�8\_��cI��)o��
+�ZZ�H'��+�wm��hK؇r�c˺j�{��x[7�~Vi�9:q���ͱ��jC�	e]^V0	�M��6��bu�������4? ��LZ�Mݶ��5��ڂ�;�H�n�q�����ϷI��'�=��t�Q�	i<q���K���>�~�N1B�l�C�J��uW���>����M���i͐�l��G�U']Mm�k��j��g��E��
S���[��V�N��Όe�T�3y�ˀ�����
+�R2���~R��i,dl��*�	���-(�d����^b"�,�BLr���l l��]הOG�|Bt2�
DZ0tC\VL	��6}��>�YmZ������N��՗>,p��&�"~��O-�]�˭f�^W������Y�t׾+�~_̻{�Q:�ܫŚT"�F�%�,��_\)&�HL����8By�P\�1G�(ng}R^��&��f�
e��F�oX�,��{���B�:]R`ާ�iw��y��ᶕ�SL3��YW �m�݁U��r�������>�٨�K��ʹzC��)@2`��mW����W�"_M��h�x�Y}>HH\�E2������e�~G��Q����>�u�s6|�,��`Z�5j��aXt���{��ǐ�'�+����'�>/wDf
F�Y�b�
�c��A�`�E/*�X���C�#b���+����̙� �8"$�Wq��5Y���4��qy���]e�{�dYMAI�jY�� U)����U�
�im�uH����t���a:M�wC\��K*O��ϱO�D3Ew_E2�/E�w������39����9lgھ�[[�Ou�LB^��`6u�"cS��c��0�n���Fu��u���fn�M�u'V������~\}��
+�0�+J�Aױ�J���^�mJ� ���P�b��a�X� ۡ�@=�Pf�%�o�4@v�Ѳ��n��se��ᾢ��^�_��cS���H����b@�̪R�ke>���>\[�m1���_����6��j��c�p�6u�����	���E��w�Н��ۚ�r}cx1"W����f���w��,`�8U�P����a.�9�Mȳ�h����?�1T��h��u�YC����s4�҃��
+�+NU.1'�<��f!����U�ϛ2
+RE�c\T�%�+^�<��/O%؞$����V�8N(t���
+F�8�n
���������>�e(�-:ۋK�B�}J��d��z�GQ��K�25Q�G!B��d	�����˲�.�I��v��E��%g�L����2R2�J��dp��`�5�)��1ԡ�q"U�i�I0<��A��i)�k�:��kv� M�`�袥���g3D,�s��q�,��0����P,�ui�|~k�ט��m�	mn�%Gq�t�Y��5��;8�	Wq�%C����%�|��˖�n`A��}�����̋��)p
+<>�p%k�r�����+B�	�s������H��	���_'�e$�(���t�%_��s� ���Kf]�R�'g�&��͹Ӊ����Ԑhq�L�S��oI
�7v0��M
�>��g��H
��°لkRC"Ǥ�lф���p�L��f�9q<䭾t4&?�_d)�hBK�,�ZU��:�/�z�b.B�IW�H��@��'�?38q�I&�+����F[ў���|cE�g���߇���m�d�å�$�Y�?�#�����V�__�D�Z<ٝ���J��q93��(V/�]�,�Oh�"�e"�'��������xw���߽�aU/�{��������!=}Z�������ʿ��Q��3���+���u�>��
+endstream
+endobj
+
+1034 0 obj
+2577
+endobj
+
+149 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1033 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1035 0 obj
+<</Length 1036 0 R
+/Filter /FlateDecode>>
+stream
+x��Z�r��}�Ẉ�R�s��.g+�Vr��M"W�ID�c�Pp���$��I0���"�~��V������FjE��=�J>���O����aWϖ_�xV\�!dfne9,�L�,79gB����!ތ&���|��|��+2�L ��rd="!g�c��X9�����2�ZK��sm�U"�Ɗ�z�!�Y����泧�����������)͘��ANRKǏ�p�~E�H˜�\�6��b.K�X�e�c	c��rS8~��\���y$a�c�1�b�5Z��Ho"�7rj����a���/�͌2��w\XxwD���⹌�4�A��F�t0EĈ0Cy���E�0e��3�6����4c!4#F����['�
�BY�i~c�<�P�	c��YQJ��e�ۆ�y{��H)��C���00�b�4��]�E>f�GF��)k�b��:AR���ʋL崬q󨮵��-�L]@���De�B�0vDψe"��B�	1e*+��2U^f�Seb�"�gĈ2#�y�	1��7��d�0�T��M�k������C�~����D�!�y,a1�	I��e�vBD���	}F�a�h� ���Zr��(N>�%
�`��T�2W�MX�B�"bD�����:Ax�0^	�)���"
+ӌ1�Ќ&b�2o� E�u����;�=�n�bм8-k�e�I����C���00�bP3E^IJ�\۔1�$�y��5b1�`� ��˺4�-�8Y��y�,m(&����Ka԰
+#G����%b�.�Nmy�1��'�j���ʐ#��p��$��#P;G������R��p^�*F�#S2TaJ�j�:Ck��0�1�T��B����_�0�ʔ�H�
�#����o�����߾�mg����,��C[4�w��}sj�~��}��;v������%�u'/�;$�qq�z��+���Rm�{t��OK����S��f[��?������u��������ٱ��Ԭ��_�Tu�}j����׎�
��B���|״-��e����}�h��'V���}[/�j�~�>U��V�[��m���Zcҏ��]̛��znW[ϻU�m/{#�/��y]_�j� fי��Ȥf��+Y	�t�F���p��@�*����t���;�F&R�!EH]A��0�؞L)'�U�����j��V@z����\=֌�ϑ�l�x͂�?�����y���9��Ӫem��|���n�Ӯ��?�>���xl��n^�.�����{�!���u5e;F��"���]]-X����m���zG�������]9A��
+��AeZ�<��
'���QC��C/9�)8�z��sBP�6������1�k����I$E�[��!݇�$��R�G��"�Է⚫�xܼ��._��$�cy�!q+�ŵ��C�ĭ��Uq���� !yq�J�Vf�a�_�	-�.߯�������JP�ŠKG����#ZPp��"�ZPy���u�G����fG��3%}jXb�č��	�h���g�}����ڝ].�ߝQL0��x+W\��H�@GRG;ԝ#9�<�F�.'�"��P<Qs���32�%�+�D�WG���A�g��yC��v��u�p����⛫�p�9Twm|2l��#<1�Y'���BY�S��۝H�馛�NԔi+�p  d8�tB��G�/��7��|����r�H�Z�>oiKH[������t��a�Jw�L�q-���
+��j
����2��Bɶi��|�Ѕ��F�;�(8t;�v��d�$$��S���i9J	�Di !���@��٥��K�H��8z��ͩ�Φ�����}#��Q�'j�K
/=����F���^�/ԍ��M�M6�^m�W��Rгԑ&Ӹ���u��<�g�]_��C}g׭��u��[�e�4����f�S65�*�0���U�u�ev+w#�E��V˗�8H"�[�ڮ�n4l�k�ݦ�܈�/}��id�����d��r|F7ݪ[�}DO�f}��X�:">�A]�#�9�����oݟst���;�M_f��%��Nv���φ�3m�����A���0���D~�ۘ�&��RL	ԟ�|P�o�_@��n����,��_F��E�a�
��C���G��I�J�v�������>׾��v�ź�}��6
\��W&�ǯ��Y�����4%T����$���z[����?��k�m�Q9��t7la�
+���`�^|�����ݭ��/����! i�����/����뇋f��@������yĵ��~ޱ���Ͼ�CC#vu��561���'�����`�
+endstream
+endobj
+
+1036 0 obj
+2340
+endobj
+
+150 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1035 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1037 0 obj
+<</Length 1038 0 R
+/Filter /FlateDecode>>
+stream
+x��ZMs7��W�(��c|�rRkER�������ESC�Y~�8���3�����3@E�g�U�����~x�h�"*����O6|j%���f��i&��̀�J[���n00�2ʸ������6�����	�*�5"�1B�h��L�v�m��@��yOH�}�17$��1Sy�#�&�@�bF���QF�e��⢯����~;~�����JiƌEr�Z"?����H�X�0KW9tAf�
+�	�X�a��R"?�;f)E�X@
+��������{��z���S��JKoϖ�媪��6�Le%WI����*���f�2a���g�J�f������6	�Ҥ�h&,&a���=Cd�u���w!{I�9c���U��1�Pc�|
+�B��‹X*��=C2�V0F����6�5f)\�XDr�"��5a�5yϐRo�e���7���e������U��2aj�+�M��^V:!̈́e�$��E�cȄ��I��0U�Z�$LJ3���f�2a�Q�g���N���.d��[01���6�5�� c,�O�X(*<¨8�{Br�"�3F����p�;d�'��'Ƙ�sW�(b)��=CJ����V����Z�!�Q]+S�2e*�k�ϑ��>�hC
+�	˔I鋼'$Ɛ)S@�&Τ�� ����x&,S&ag�{����D]�`�B�H�c��t�O�ʒb�"�)�Py�Qu�����`�0�2zG�PLtB�w�H�0dM�3����#HN����!*���y������C��!����#�ǿ���?g������$��>�3���zt��H���V��a��x��-la�p�>|H���A�2�x��0@������\��q��lƲ_=�����|h3��D]=���,篛�?/����V�v�6��kǾ�7�X�w�
��r���-�/���P��Ȳ�52[�
+���Y�%�<�`���Е!^/у��|�	h�Ï=qm�4���0�]�
+�3D$_��������gɻ�U�!"�Y�5b�Y�(b)��=CT��t�<�@��F���f�3=+�N������4hwJ��
+���M�mv�<o�'��]'GIN0��W�����a�7�
[�z��̟��-[��n;���s�)
+�xh/�?&
+X��\��BRP B��4��u]8�h�PȌ$��zd���6=�j��>�+���G���'8쀄�WG��ڔ��F�(�wڔ�Q}g�����]Kq��>�^�\	]L�OZ��x\ky�ȭ�'Y\������S��i��B�㇎Ih6�Eۯ�V%��ۯ����l����s����:UXNW^
+1�/�ǘ�ӥ�w�C��:y�i�
M
+
+�7��[(f	�
+���.Z��H+[�M?&�
�9_6ҍ��}�n��O��n�eTf�e�IER$�N���:�;d���5��,��gR�0��Z�a�ͩC�Ya?R
�`���G�t�����63:���Ќ���hQI�H� ����{нC�s%
+�!쬬��:������E�~���{�4m�f����a0��|�`\?�Gʳ�|�и��SDFO�j_��z�^���S��k9ѵ�y_�z�~&�A������ɤtW�Sխ�Ms=�2��ƶ�N4��R�S/!Oadž�ł4V�L������vJZ�Y ��� �[�m��1��r`�pJ\���S��sw���k<	����n3La�۟��
b2�oV{+��h��k�9�0��k�S�_�Tm�U��"L�&l�+b�
+��,y~�J1Dd1K�Fl3KE,e�g܈���] =�عɻ�x~>;�%NN��}i�f�w	Pƺ��|�WEW}��.�=��U�t�]��
+H���i�$���  
g�R��  �M���M��`�r	�M�B�S�D��=Ct�1�/%L�w���(����(ֈ��(�������(=˝��Iq1�b�dR��d�)��lc�@���ָ�èo5}N�A�d�&�0ET l5�����'�rQٿ��0Ky�u���V���qn�d@���o�f��c�>�zW.|�P���@QZ|y?�a����������wVt*K9h����*���$M������	vPub�<��W%�!�r�TJח������ۨ,���2���m��N&�̩������*	�
'�r�%T�1ky|y�����ʗ^���Q���p�(�lbo=� �9.a��X{�}c���Y2�o#�Xz��&��f7���؝��U=�^�	�>n�����ͣm�~�x��vl5��a��[5���`0]��]C��
��,�-�׶�݌����.�T&�+YG�x^�r����9D�Z/VZ{�+r��I�E-��Sq�d��~(����w�l`����
+|:C��6�*A
+���&8N�H~�`j��D�=�2�1��m���Q8�!��C�D�������h�w�CL|�!na>�n({咈�'ty�O��d2\i�<ܡ'_����4�����›�?Sg�
+�m�i�~5�����5�y�3���!��È��v�jX���ݱ��
LU�Y4��P;��@.���<^�����f�����O��+����������
�r�?�.:��\��
+��̯��3�p��{B���F%-
+endstream
+endobj
+
+1038 0 obj
+2644
+endobj
+
+151 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1037 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1039 0 obj
+<</Length 1040 0 R
+/Filter /FlateDecode>>
+stream
+x��XMs�6��W�hw��;�Lm��LO9��K.�DIl)�C���g����]���r���C(=�>,�[|0�2�#�UƆOf|*)F���b��iŹ���UFI"�������H+�!�a�Q�
#�K�Bd�s�cFd�R��a`�r��ʲ����kĔ��c�1'I`�5d�
+��Z�l�̳G��\G
���_��U3��+�1��P�Q�8D��S�؈$����R��Yڄ}Bb�F,Q,`�%�3��,O�H���P�qF������f5.����h���$��Ӓlv��2�
�o��w���ھ'�?W���Nc�G�������q�]�}���)ﺢ�N8�U!�&nT�RM:���U�f	�Խ|PZ�8Pk*�<���!�R.�q)�"�i�n僆MPI͢4)-�F�4M�&�}�+�i�@����EOI^]��,��j�e/��A6��@-b���R�XIjb��~gn�`i��DE�(J>C�_�;̂J6�M̛LҎ2���ƿ>�"�C���YR����Y��Ij���JQ]�X\�<���}(���;I�l:��!%���!�Y0}���kg�*\LIx��B�%��8V���&����Sv�;���l��v
-
+�0\��n���`��v��熊��>�`
VeoJ[��+^�$��h��N�ҕ$|ٕ��\IR�]I��?nZ���/���^pE[E�b^p�-T_Zǟ��kNύ�K1M~�1�P3����_0f�8���i���yxbF8�Rƅ�3����zi3�}L�ÎG�dx2�
T��9��
P�-n��Ќ��/��]�����x=����ʠ|���J�o�������u����$��[����V�C��ow졯��E����K.�Ѻy�����}2�pӐp���O!E8pt史;z7���H�M�_�$tw�(
��r0a�p��eF �
Q�+>fD�+/��
+����E��1jd���`�!ׄ��#��C�T�G�� ��1x93��4k�!�sM/�1Br�9�/��c��`˫pI/|��8ؚ���n��-��r�!_
+��#ݱ x�"�橆�
�������]/��T���+�jd�5Ź��#�.o➓�ͱ�qļ�|��N9��hI^�Ⱦi�:M�z����4�����~:}.��8^?VY��T͗�}�6��ƨ����%��?�u^U_�@9m_��l��0֧�/�r{s<��|���ؖ�rK��T|���z����0d(��=?�P<
+��3�JP�錌��*o��i��ѿ�L�%eaIA�e�톸�U]�PԠD?�����:�`?��̲m�
)��A��@S�~!�b[`I������8}A�ƫߊ��V*3C�w��;����?����6��mG~?���r�,@�mB�=������JOF
+endstream
+endobj
+
+1040 0 obj
+1427
+endobj
+
+152 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1039 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1041 0 obj
+<</Length 1042 0 R
+/Filter /FlateDecode>>
+stream
+x��ZKo#���W���^����c{�=
��!��Vn�J�0�V���9���W�`�Z�GBr\3�.UY�*)�R�x�ѽ��i����ճ�?ͤT��_u%���Ƌ�����~��U�։L��Y'
+)uYC�~)���K3�D���*%��2���(�@����"X�2]jQ�"z�q�9D�b�e�Y�(��z����4QV�z��ޥ葥�S�bRF>��$��(A��0�zE�KO.������(I�e�(ӥW����J�^r�z	C��b}DQ���	��?b*%���1�%�VA�i^+LА�u*��+�Gf*��t�h�^��e	3�,�+zO$n��B�*��2HkFf�8��$�9�fFY�Y�=���׉���3ы�e�E�F8=�5E�g����'A��'f^����I�X/c�EYUj̘��V�^��eI^GY�:zO$�owO�~#�+0��D�1����WVOϳ�C��?��n�0�FY��x����s�����C��A����"�wU�,w�������f.��Pj0�)ِLF!�&7F�{���z�`���U�)����ʻD�L�)U���X�&=�.y��}i�ԁT�3�k�g�T���9����eP�����IL*TSm�4�\�H0�b,@=h@�4.�����x��e�*4�!`}�ե��D���6U¶��T�=j�Rx)s\����"wÑ�i�ƌqƔi��پ�eU�4�)Ҩ��Pa���P94�D
���cǕL�O�d��2$U2h8&ʂ%��^j��3bnr���K6nl6*&���n9�m�KMd6
'ٮ@� �L�T���\*��0�|Xtm]u �ӴQ'0�僀�����D�:x?5�@ջ���l 1Oـ_rl��+�vQśM�;����ψ����@C�<3#�z>#�LJ>[�7����ߊ�)�M�Н{Ǣ���l���<�& ��S�Sb�+]_J��frY�p�s2�[䉥��3��<���KG�#b��m����[C2q�3�e�8cӊ�b�<���ݣ���a)���Zt-��BgQ��ѐ�m��Z>���r�ǭRl����4ޡ�t�|&+��e��簒[dYi����	V�['����� ��l�!�����L=_�Nj
+3�<�݂�8F�ڂ�s�{=E-%/m	�Ʌ�b�gQ�Y�%����X���6^�YYV���YRtrb�߷��W�b_��~���m�V�eS���rS�o��x+����Hk逸@?@X�B{R(ϖn�,(+���}�a��N�B+�@7�NuZZ�A��,f:���G��B�څDf��z�d���LBf��� Cz!�����T��8�A�yŹ��l�(Zƨ�	6r�5��}%���J:w��iG�q��x~?'#��(QOo�}���}����;ERi=\���k���_�_��{S4�bw�t�z9l�rg�>�����|��^�֛z7oj�l�����7M�L�ӽzz��u:�8�d]m��ܳ����,V��z��[=���[b��f��t��&U!'M�/�ah�͑���Ő8���>_g�m�@"w�e"
ұ|��41���
+���\�W���c�Q���Hǽ�s���?������7������b�n�q��$pk�-z�z����`/b:����|+����ns}|��ͽ�9�I�:!�-@�x��P����-�N`���n�ާI�e��9(��"M���l'v2��:���=;�J����ś��۱����(�9b����*�����-5<�i\���|�a#����w��Y��\TI>+[I$}]��Z?�$��J�T.�$��E�����F����g+	���J�ܧ*	�M��H��D]���po�J�nho�n]׹�Z��I}5U��"��R���O=7������ީg�o�*W覵
+
+�~ٕ%�5ͯ����>_��Re�qA���?u��w�*H��Si�*�Ȍ������y��
;��px)��UZ����4�z�_�U�x���ޠks]��qW�u�o�3�ʨyl�M7,	���C��&d��O�=��.WTݗc��]WI>��?��kX��&�j�obs�������7�T����O|R>z�����w��u��]�]��m�V�b���}�}>,��o{����|N�l��r�z��+`qà�_�D��
+endstream
+endobj
+
+1042 0 obj
+2198
+endobj
+
+153 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1041 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1043 0 obj
+<</Length 1044 0 R
+/Filter /FlateDecode>>
+stream
+x��ZKs�F��W�Q�r���r���lR��TY{�&A	6I��Ў�_�����l�P$��l�zz����@����Y��O6|j%P���l��3!da�k�e���LU��ua��~%�{�'��5�3!TQi�H�Fe�>ӵ=�v�U�@	�u}�=#��1n�;���Z�Y���6Dd}�m���,{1BY�Nu�#i���q|g�[�ÕҜ21�Ij��h@*D�DȌ����eQ������L{F(c��%L�������圱��2=�X�:j'�<�DL�ĩ��Z�Ϧ�ն�P՞bU��R�����R���F3a)��v�ج+bRyv��l�3��m��9a$0F(�	���'��;{/d/��U�J�F�C�B���/a)9�v��"FK�(j����wU�2��F�:a�먝 �x�:�e��w)�E|9�kmK�ߞb
+��sd�2YlO�9a$2��+i'H�u�у2�Y�L�m8��dCB�	#��0�Y�N�2�z"����B�R��KX]����w����3�R.��KX�Τ� ����K��������)c����*8���%��v�����BN����2��A���b����Ԭ���n�^k�W��H���7�����-j���
+���⒊`���"F�L��J*l`��N�yME,�M�"`�
+�D���Պ,P`#�S��|+��PnpM�(=�!�8�p~{ߍ쮝F6ݷl}��0����񂨊�Z�,���"�.�
+�km��~�?$~w���R�W7�h�W35!�$�+��-4��h���m�)�M^���koTea�W��8�wK����\���8��`��e�md�4��w�{�Xwp�޽{��#�o>�hϚ���E]Z�ֺ��a`��v��Y��,$:��X��.<�a���KiUy��@m0"D���2f*���q�;$,[-�D���м/+��2#�Cq��{�Xƨ�1j�5�~�O��*yP(U���A�*a����1���g� 2r�1�{��I�@�?8�lCD��ֈ�剬1��׺R7�7F@²v=��\la����>�婹������Pj���9l���M;5ݮݰ]3��Q�֠���R��P�ᆮ4'��a�Tx����8N���_�p��Xݰ�%�Œ;I7��������`�S��������m1޳-�}�~b�nh�S?<:+�ɦnb�~��.J��U��||h�ݶ[m�mww���p��R$�`*(�L�WS�T�B�WP<+y	�����w�߸��otmJ�
�bw��W�VX�fiSH�����Z���Z࿆�C71
+F*aP���R��Q5��%ٸ�2 �%jp-�H�(������H7D�X��#PėD(�U���()�_�-2ĥ��_k��n�ޚ(���+y6ײ�;i
�óx��9h�qԼ!$S�Pp'����A�Ѯ�A�����L�܀��������
�=+�+5}f���;��4�y8���<RAa��	�`
+!g;%W��S��_ˈ�
pn��pF�1
����;�F&7��](�	�]CK�23C\�U<v�r�a�GZ	��%�$\Et�Ic���W�.SL�l�O	�Ȥ�z��N��g-����]�k&W��0��8L�S�ۍ����/��G����@��f�/ͣ�U��?a5TEX�v��.A)�d�y��6�&o@��
m�yd�z}|��M����BGU��OGzK
A�$��p)®�1hz�#J㴊��R'/�5��&ph�	�W���I^F��� *�(��;]	�1��ڹ�Rن����l�Lɣ�e��v�����)#��d{��-���pc'��q�`#;>�x������a;t�a�{t�����K��>ط�m��K���#������Fl������������p�`č'�q-F��$�oq��j�0���|j�(jɀu��]7=����C������^*
�������'��J���u���5"���0�����-
+
+J�v�1�����bq��e+�-$A*/��Aޫ"���_�yJ�y��� ai�Vz6	""w3*rB0�����夲
!׃�}�����<}���X�T;y��
�_����4&��ެ'�N�@����n�l�A��~�}IC�nU�tO���ƻL_�t4�� �Sc�Y|#����JI0Y^*jψȺ"�ϕ`"Fv�O,ې�5ۚ�5{�V&������M�K�U�,�IK2���Y���T�?��#�!}w�b-���b�}r1���=�X�1�Ѝ4=���8-n)��������J�G���@����q•QE�|Bօ��@U.*�7��`�4HE��E%a2��Ţ���XT�
��h�L��=J+��I{F^|d��>�Z,E��m�s��m>A>d~h������6?�K�����2>��W��m+2��Om���*#�o���8��9���ޟ�G~J�z��w�v�/],�YO�`���>��/�8�x^%�?pxw��Xᆭ~�N���V���m^��w9�K�?ה�P�W9�U�5?�O�����vt:S�*�Rۓ�%]��(w^M�����u���F��̏�$:�Ap���ÿ���oӯ�{���k�?�{���o����M�ӱ��;�+�)g�k�Z��Q���k�
+endstream
+endobj
+
+1044 0 obj
+2669
+endobj
+
+154 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1043 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1045 0 obj
+<</Length 1046 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�r����+z�L9p�pɪ�tf��(5�U
+"Ac����5����D5��{эF7��Y�R�ݧ�=�����?�]d�~��S
+���4�b�݂&YJ%L`�'
+q�3;``�&ZiJI*%"��15�q�j!3=�*�҄!��d�M�Gd����J2Jy��1�p)9��Zs;��������j�=��ڳ��vV��P���Pgr5Ul��'.9�$*E�ٟ�)�0��$)<�^��}DB�)�1	Z���c�Z�+�H1��b�#�y�={���Ɔ�����cR���2�ʸ����v�}��DP���TJ
F�a���.z,HL������G���:$&~�*Ucbz7�
	d�X��$s��
cYOd~U�D�|�F�yh3�DzF/]�P��.���X���<�ӳH�؀��9}J
WcY�O��*�#�z,(k�y�=���$ߞ�5��emX"�Ӳ\$�ۇ�J(�jLL���M�H �ǂ���O/� b��̳��+=�o�D=q<������1q��=@�t�����މ��ԍ��[T����K�b�)氠�=�ӳH���"�<�'�5۬WL=ۭ�ؠ�G|l��k� q���z���CΏ�-���E_�y�1M�Es�^�]��Q��n�T\�۟7�8�	�H�Mg�p��_�x��`��	3z:IF��]ɾ��:r�;�:�դ<��� ݮ ����7y��
�oꟊUG6eU�oH�p��1�	�����)HU~.�G��������ֳÂ�nw�#�aM���Ǫ#m��
�]Ō~��v�a[�d��{R,�i���+��߮h��D�|�C�"x��'2����Y ��tP�ʦJ��a��벃U`���:�rw,�u��
~��M�
=��P��dv�37�>=����x~?]���h\�7�[S��
+��^�]ޑ��?�}��ﲍ���*P?D	�H��]5#��*�U�QM�4Ђ��Oť�Ky����\	� L�ݰʨ��
+�~���V�sˁ��˝�� �5��7!�X�a��ab:f����c�^��v!�`R���"B��S�����.m��m�.��>lE���\ܥT�t�g?b$P~��!��3������o���\�m�t�t}�t�*�u��Vc_�]��6�q��֍_Z�_��ߙ���a�<�-�Jo~}�֐�.GVM��99ʟ��Vͮ�/#�����X��혹���?v���HgKT���J���AчCU�k�ʮ�j�u]�|�Ԅ��C��[�*?����^�[lcm�/�e]wm�����U��ڶ{����P�l�����f
+�]���U�P	��	�9T�TP��D4��-�?����;�6.q-�� �PRY���d�]>�2��$C�$k8�'l
�����H%�3ȓ�R@Ã��V���'ل�i�)�ڎ�c3\Zl޶I2H��
�&&fK�+1��xGh�.�
+׼:%W$��!0`���<�( 2`�`ɷ�ID�G��5�`���C$����2fwD�W�K�Ģ���p���T(��R~�����uifÝOƍUH�$���!��i��
V�)�����Q“v�Q
+I J
+����a�f}��w��m�z"���S�Gm� `�Ń8���	2+��/�ܺ}uZ����c2�by@���}R� ����`�������wlg�g
+
+>���R��	�����vJ���EoM�y��;���?��Şg��):ʾ�;�p8is�uv��.o�E���?wU~��DVU޶��US��?���5�������ݯ7o��k8�����~{�Vx���2��a���3~Xep7�V=���?S������ˀq��Q�=@��5`.���d"3�3v#�ц	.�^`<6z=���^x�zU�D��cC�����Y����=)�ߜ�6ܿ���1{��
X����.��Yv�۱�M_�<<�xl�z`�8ߢ&ù�2��.a��cX�n�����x�vW��Y��V������_��0���?C�����j�����W�k�z�a�_z�~�o]$ �kJ~x$��=�[|���_��CYU�zT��i��-�}yȫ����ԌO7�'�����oT�01�x4Im������x��C�dFj���6�l�4��l-M�~G��U��+����v�L�9čg<�����mroﳰA�š��.�%���Og��#�j������Lu��2�'P"͆q��.�
+endstream
+endobj
+
+1046 0 obj
+2224
+endobj
+
+155 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1045 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R
+/F13 924 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1047 0 obj
+<</Length 1048 0 R
+/Filter /FlateDecode>>
+stream
+x��Z�n��}�W4��q�0}ora������ �_�Jb̹`ȱV��$���i��c��"y���˙��U�U���e�rVQ�I�w)���ph��~�/��j(/g��Ҹ�*�)�W���o2L�B+M	c�(���_�1�xdu&+}�u�ʂY��ɪ:aOH��r�*�@�c��ZI�؃�Ɇ��Β��ΒG�B��3D�4Z�n;�G�F����4b�O\r	��s?e��$b�^��X��Y/̈́=!y��G,b�����	��i�<2���lĂGK^����c��)x�L*ke
+%����2�(-�&�D!��)1��nT4="Y�#�%f�bzE�a�+`�:��T�,4�LJ��f�! Y�#�%fIJ�y���-���{e�b�N"1��2����A1_>�����X��=C��,�X��_
+���zI�4b�D�cYYG,y�r�o_��`�x���Vn�M��BW̤�:�˜�Nt1bYbF,�Wd�����U8�"Ɯ9�=��lH�e��,d�=CD�z���G�ы�;�X�t��1�����#'��I��/b�8#{�dX��qgNbg���o�Ed�]D���#x�3d�o_�5��VZ�˚�a�c��{�FfT�
��9bYbF,�Wd������A�-EJ��f�! Y�#�%fIJ�y���-���{e�b�N"1�&��Ҩi�<2��Dz��X,�Ȟ!Y��G,`��p.RY3��h&��$b��:b������|[� �O9�&`1mJ%��������7wgo�PTQy�([R&$:�+\�U�*)��{%��L��z��8�_�|��T�RH��;r󏳫kG�U{�g�X�G;���/��{l�4�s2<4���5yl���}�=�ݺx3�(+wP�q��ݑl�fM�Y���vhwۺk�ِ�q ����\�?��~ w�݆<��Zsk�1���ՄL��F�����������C/�!�c���㡶���kz�P���:�=�����}S�"��3�h��Qp�a��mU3�Wfoz��g�n�T"��MX^��e��	$Ƃ�ss,��dn���	"ܘ<MI%c`›����J�u�)cn^����ʾ��"���e1��J�,a(/{��2��J��!�	CY��d�q�H��qT�! ��րu/F,����-��K�U]�~�
+Y6Z~��n����*S��P����fks��;n�c�gE��y푡��I�~����?��A��B�Iu9#J���C�5t�Q�����,fEHY1���<Q(cW�
+��
��ݜ	�ۧ��E��rP:�bi	�dҪۅ]ƾ⻶�i��^ۿ��H#�i��v��S�O�
+aǦ��vf��w��L�u3�mG�[+q����� �R��9$����a��Il�HH��x~���4a�GVg�dH)Y&�&
+�&�x)è����Vj���+b8�q|�Ď�dC@�m
��Gqf�:�'D���1[+߯���>W�S5�7���NJ��ݷ�s�7�Y���7��[��0�b����n���=�ÌO�}}��B��͛9�A-S-�tRA��ö��l�z�|������Gc�/uwl�+1��o��LV6�35��W�W7E �4D�/�,�xZ/w����|8�ہ|���/��B@���@
���w��Ź�>.�kO.>~$h'��<uX� �ϱ�~4aӬ��|.���q�E����ǵld�v]�{���%�Y�E��&6����%4	9,��NW��A�VKzɖh�=��7�wBJ��FI|�C��?L`����-đ=ʦҐ�+�����`
+Ue�Sa���P�YZh�5���{�QZ�F<k��Í��J�y:7+�:k[���0�9�����?/�����];Цݶwm�>G��ֵ��U�uO��,��n��AF�7�M�U�p��,J�� �Q�P?& �[�m�T	������gV~TdO�I\�t�z�.�`%�K���
�\�ր�+zgF�#{B����9ך�����y��X����Z������7^@��kV��t�9n7k��|�'��Ud_�v�w�����h�'5��?v���%�����zw���̱�W)ٙ]X%���U��6�v���\�}sC֣[��4ܧV����G�m��f���k�_�Oۡ��<���F�	=Ӫ]�����!�xh6�/�yŴ?��Z��.;	wWG˽�m�;`�1��pn1Ve�=��L��.����3J��Wq�d�T��dM.Z4�п}����ѐߨ�֜�}�<�(���ʼ���C�J!�\y�tg$��~].g�1�d�(�_�oc.�e@�}Z|�O�����tP~���n��u��7�e����L�=y�=ڧ&}�كx<�ëP���_�]��p{�D�Fs���)���p��n�Vg�֐��u���O�p�Z_E����!ہRU�<B;%��Db]�1q����&'Gp#@��@��x^<6�:�ּ��T���t�4��	�/�5�\�m��^Q��/;F�GQU�U��=f��?6��>˂��^�0j&��l�϶�:e���4��e�j6������k�q�p�����'�>���z�:Z�uO��E6O@�1�>��k��������/����)��|��
+endstream
+endobj
+
+1048 0 obj
+2633
+endobj
+
+156 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1047 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1049 0 R 1050 0 R]>>
+endobj
+
+1049 0 obj
+<</Type /Annot
+/Rect [400.7933 484.9195 479.5433 497.1520]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [61 0 R /XYZ 0 732 0]>>
+endobj
+
+1050 0 obj
+<</Type /Annot
+/Rect [112.5000 469.9195 156.0645 482.1520]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [61 0 R /XYZ 0 732 0]>>
+endobj
+
+1051 0 obj
+<</Length 1052 0 R
+/Filter /FlateDecode>>
+stream
+x�]��n�0��~
+'�@�d�E�C��)��c;�RH��}���xI|!���HI�`�>����\�J�U��$`r�������#�dzJ���H.!+��
+���~BٔG������H�nxCk�bh���0t�y�a���%�MU�ؿ��y�Z��ܗ7��$�ٴ�6��u�!�y������r��@Ay>m<��8&��`�����5Ŵr��L9)z�V,5W�H��>g̦��y��i‹�j�o�\Y��i�L�MK�L�����\���(�Zw]4b�'Z;�S��MQ�^�:��"�҂B��|��,���g+ܪ{�U�}{��I^1������I�b��dd�?��|��Y#�y$�4"�#�����h.�.��3�z?�1���.yx�C>���!�(�M���|��nj�6�#T3�op�v�@�#H.쎹,$�J<���K�N��p�2�Cq�NN[
=���B
+]�P��~GB?��w\�3V�ৼB:]�����U
+endstream
+endobj
+
+1052 0 obj
+488
+endobj
+
+157 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1051 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1053 0 obj
+<</Length 1054 0 R
+/Filter /FlateDecode>>
+stream
+x��VMs�6��W�rGE	�۷d\7Ρ�L�Cg|�IHB����C�O��H��L}09���۷��$�?8n�K�k��A:ܴbs�u����<��4��������㌤Y@HR|���Ҩ�~�qa�^M�/IƢB��$�i��r��}������x��`��%|~�����17����c��s9Q6Đ$1�$="Ø.�������v@��dqt�^�x��A�kPZ7`O��'8H%�Ў�-�8|���_�<��g�/�H���ٖ�E(݈�x�Bצ�(�Ձ��-�5�R �U����Q��_��0�C�+�G����j�O�^JT��fƞ����dܬ�ӈ�1���6��/.��n�3���Z������%�1�g�;{}@���!X�S�P	{�%H���)8 6:��6H�{���X�i��x\	n�;�W�24g����`�J̪W
+%17Q��<V
+�y�t�K.M���o��
+]�1��*M°�����	���(���z
+oK����Ň���é��c�z�%T�w��e����>wwъ�ģ�zկ<��v���t!ŖJ��=��X䀮�?��c9����0p��4',��%�~���3�0MH�򫐞�
?
+�nִ��+�5�z�Q8��}�����\jS���9��4���
+NM*kl��[��k��L�K �R��8.����|��xy�m1��������ڦ;�p`�lEau{^�+�	�Pc��ҙ�(�Է��][�u���ou�J��h8ic��31���&�K�kW
+��`�����,�we)]a�R���>h=����'�T�>u��И8㙟���4�s#���;���i�-���~�϶��{W��Y�n��.���h��͙��D��̺�+p��H���b)n�`}L}�q�.��#��~���Y
+�/1
�۵���(�sB�<���p�����0
I�F�N:�y������P��:/D���c�X@��K'��G�����-f�j���m�~J�����t�>�]�g�j�p�,!I��G��4��s�����
+endstream
+endobj
+
+1054 0 obj
+1063
+endobj
+
+158 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1053 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1055 0 R 1056 0 R]>>
+endobj
+
+1055 0 obj
+<</Type /Annot
+/Rect [319.2555 463.4197 413.7555 475.6522]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/tooltips.html)>>>>
+endobj
+
+1056 0 obj
+<</Type /Annot
+/Rect [112.5000 425.9197 210.3180 438.1522]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/tooltips.json)>>>>
+endobj
+
+1057 0 obj
+<</Length 1058 0 R
+/Filter /FlateDecode>>
+stream
+x��]m�����_1U�EI�4�_\�\I��(�J�X�|��������ϼ���i3$G\���tU��&�<�n��Y9��y7������*|��i'���H���~��O�3���w
��Zm�QC�;����Y�/RO�1D�]+)-�ɔ��Dw@[��2u�4�A����b����� �n��y�=��'=V�-'���6`Y0���=1M��I��w.��Ie9Vh�b=b@	D1�W=�2e�c�F��S��`����>�8ƴ!ǘ&�T)E���1K%�9�){�4�ψi�����r�o핊|�Tֳ�MHOaA��ד��I(i�����zS��m���_fj�+��r7�o*���"��/&��]p������?LrO�\4��`C��5��
+$�����[%?�%�{��6��r7	1�,k��?9U	��ܿ*dI*����r2�l�%#i;�N�E>��l;�2��Qr+-K�L!�u٥0��Wt_M�ҊmZ���/�YQ�Uh���'ӂ�P擂u �2�B+�.�J�0�גVZ��x�|0�EV�M�,���O�:�0�Z��Z�c�=q�śIr�{O����7w����
lv�����vvw�l����ٵ�5C¯�7�5��Ϳ�>�Ԑ�o��|�8����f�r���z=���ͪ�o�w�l�ˌ�v��[ؽ�4�&J���G��"Լ`:�Z0v�T�V�[z}O����s�f��:�{�2�2S�\AUZ��ណ�7�&V��.�t���d�(h�MeG��YdC�,�#�|b9g��t#Y���G�!;��)���<�z��x�B�6x�f�;��Pdﹼ���Et�>gb7���	��Q��Vَ(�`�xN�^Y�����
+7��ͪl�{�rL]��Dֽ�8�*c�)��}�M�{J�Plߓ٣�̗B[�W�1X��8he�:hC2����<����6�S���r�<hG�7Cz����D������6/���s�U�,��s�l`�ɭ�-m
+c�A+�n��3��ʽ��ގ��a���B��M�*�;�[��2�B��xF�Vf]z�)���_��k���bx
+1t�[:R��_��I7�O���\�	�mp:�C	��,�T�(�L����3�@!�����d��O?���b���q7��ڛ���ZH�;�G0]m^�L��hs���@�Zl�E�G�]��\���8��<#C�D�W���*�*y_r��r�J�U2F��@�#��e>�6�.or�m�Ş56�\�*<g8�,��?|nH��hQ���L��x�9}���\�)�4���ַR��#
+=w�*W$z
+��>�4�\��I�a�s���hQ���3_�>Gk>p\i8����� �����9�p1���{��ϳa�rY7-��A<S�T}ؗ���q+��P�AOT����� �@t��ېT
+�� ����1�9U<^tO�J�8wҙ�O�:V#�ӳ܊I���e�B[N��y2L+��������4$��C��Y�ncnU0
+��"Ɍ'U�����CҠ�#�=V��*8�,�'�S��.E�"�֔�`�ɢd�\�C�s��(Y{���ƪD��Eɡ�~��6+
+��]?l�mu�r-"%�ý���l_��>�i*��tf?,�|��������5�0�I�/
P��qjoq�������>$مTV�$�9b�Fkޝyר�l������� �"H���!
+I��ZO,��eG�<9��0k�l|�'#���h����.<^�ara�*�wD@�[�
+$�?,If �L4F�l色�)a����J!��1�Ue����!z��]�|
WՆ�29b��#���^��ө���
+�z���]$���R��}��C�@HG����j��|.P�4����Z
vy�c0DO�;".��er��e�U,�G�A�H�,0a�u��~�BTG��C_�f�L9@sQ8s-���1���k����OHR�uj������'!*k����kQ9���T�JҮ����ґ&��ĔwGoK�B��|�Ï�yO��6/�]?��q?H����
+
�	��p[���~\�U���0�X��҅�D�٧J>m5��\m:����W>��P��s,зr|�Kg��m>?!��2oK�|��[���)�?�4ɕŒ��s+���xRr�ƭ��5W)\�%�+;y!�Q9Q�~��B�ӊ+�\٠"��lȅ��+��w5�y�r\� v����#��:go��4!�ho3�Qr�_�h�Rm��#�)2��dL�twVU�|dO�@Z�3�b���9>��2
���01����Ǚ�eh�{��)�e)	J(�׮
���r�I'��B(G*�F!K��5,���t�/�.�Z���G]^�Tn�{:[�ٗp+��m�c��jc����\f�cFsDL:�(Xe6��
}O��N��5C銒]_��LV��BQ�1?{��� ��&tZ��p���)�|L�L��R23�؎U��*�A2�k�¼���9���F�c�֮4��<{��հ��/8
+o��U:}��j�e�ˏ�?�	��9�����d�?��T��h�N'�B�D2!ZE�9�C�aH=��26�06V���
��AJ?Vw����o�J�;�����������c0�a��`�6��*AVk��J�f�F�c>�gF`,�aĩ4���Ԩ���K����NoG�Q#m�#�$�o���,��=�)��n,�a�[/bC%`W�P�}%`��(3Z^��P�M:|"�0ZVàK��)��a���aZ�:�g�ԫ(||y��B�1�v��E�L�^EӱYd9Q��z�������d��uV�;
+8,�	_3ʍM=JߵH0����\��J��
�J�9c]Vr86��,��6RvJ�ըP�a��H�$` ��g�(�����8��*��`�I0�
+��A��d���z���0���H��d����r�0��%��{ю����0��<,�1��F�B�]4l�jƫzp%�ØcRH��-XXQA*
+;|U�㓇�	�gxXD_0�
+����F��O0�;��ґ��BJ�p�u0y(D�诪��X�So�A4צ����i��0cX�Na��/35"�6A����fe#��Ѷ4cH=<�P0��\�K!�C�(��H*�S0"�G(�����t�#��M�l��O������&���z��+GԞNО_EH|�����ꣻ3�(�p.v�x�15�Iv��i	꠪�Q������!(�un�3px��h�CQxy�\]�\0���\V�8$mG#�1���&�j��*��u]��ā�0B�
��� ��(�M�l���z�Ao`@ҁ� �t��:*��{�G����O⠢�#=M�3���'��xGWJFql��O��krLa�׋�S㐽!Z�
+�Gq��q(*�{�|]0��@�5�������3p�16*X{�\�A���P�F����H8b��.�pD�c�����q�Q{ģ��{6�a?���4��xn\?^���w)�Q���r�P2��p]�~GDb��;zэ���O��Xt���(�6֢�������H���Hi�	5�.�A[��2�,���s�����BN�kq詏X����|��c���tHRD��'TWT��2+j���
+��P"��:���K�$&Q�� A���"B ՚J�YE,iۏLZE%�4�Z����ղ	k���4Ũ�j�駑��@.��e�U
V]4��;QUO?���jdNV_|t)F������c�CbaIp�
++���20�]*Kё����i$��]���6��}�W�N���9,��F�� :d-a��Z��Xm��SU[?��v\h�^z��j�P�m�I�ȚΊ��i$K �d"�z$�@�r����h+�'�hA��I����j���`Y]��㿚�$rj<bNB��hQ5�8�H��$ ��Z�집 |��$x��T��t�)/46m��Q�vXj?���kx����W��[�i��{	�h}��	�IHH������-VЎ��LU��4��X�o����H�Nh"�w�k@�$\j��|����rT�k1ж���I$�BH�l��Ϩ�Dzs���Ceb�ZWGJ@���ϰ��WV��Rm«����H�)���+��}q��
+1��c)^T��C(�'$.�z{�d��^���W#�O#��N�4���g�Ӷ,�q�l��W�V�𐌦-�����q~<�+8H�!q���@��G,�8~���$t��;�!���	,��b����(�����?��ꭚ�����NR���>M?��4PtLH��S���]*<�9>��<�����;!�@�;�C%-�h��8I��S���ײ|�������x\	q��U_�
>G")7���x���,$t�#GI�N/V#�S���b�k�� ��a������9�\��
�&>�ư�g!	����Ą� H���t�Z99�o�AB�ƣt� _���o!L3t�И��3� ��\���DI���46<iM}�$Hm��k'ԟ�
+Hamڴs�U��Y� �Ȑ���NЩ��kOa���џF�{ ;_����v��@z,:�G_��,$n��֎W�:^��'��Y��Ϋ�� �5Y:Ye=�������k*ӧ��M���3�=��SAI:�TM?�DR8+2��c�t�_iXBc��\=Fz�N�
+���P2�&���.����K�ţ\��BQj�ڋ�&�[�0K���
+�Oa����nR��z,�lP��Phd�e������ȗ�蕣�
W�ЋI���^�ok����<�z���k��/���X[��_�8�+t�p|w�h��'YF Zz�*Ǽ|�Ъ�D�L��BgIb߮�.%?{9b���O��8�<Bw�>�c�2M~S0�_�TO��G��"�|Q���Y��D"1��U^S��j��~i�n���Y�6=��KXc(�{j ���������/��1��p!s�$ݰ�]��I��ȟ��o�gh����[I_}o~]��f�~�m6�l����V��ׯ���K�\~�lכ]���6o�����j׮v
��ؾoo��~Z��ͬ�ݏ�Cs�X���$��c�v�g�x���4y[}����l�X���`��vXv�p�v@����Cn���ꟻ��B?�g7�r�3F�Y�޶B3�͚��-�_5����ݵ`��-M�?�~ڼ�䀲Y�y�gt(7�p���Ğ��n��mRg��_7�����-z�/d����ݦ�n���a3#n7�;4ٶ�:�n"�XCC�N��y��m�/�$7P���$<����eKs����yu;�7:&������3���ݵw_4��?���z�BRw�ۛq�b��7놅��Y'���>4[b�����@jx�^.׿$��~Kmg��P͎�Γƌ���@޶�g+�{c_���|R��
+�i�~��i�-�Ɏ��9@u���7=����pE��k��+�y�wMr�����Ko��>˻�7�̧�m�a�5D@�-1�~���
+�d2�����z��bzP������w��r���N�1֕��y���n�Nb$��
+̹K+��t,��v��a�Q�`Яn�9�K�Mx������7��$����b��~�}c�yi��_��L������A7t���"ӗ@����4~I����;|qS��HDpQ�4�o�K���;��|!�1�{t�ƿJ�
+5�+m�n�i�AA���t��\(����O����	U������y���f9��w�
+�����e;o��B�T�
+ ��O��|��Y�*��M~����v�������Js�Y�<�w�O�W�����G
+F��u�Z�ue���t\S
+endstream
+endobj
+
+1058 0 obj
+5829
+endobj
+
+159 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1057 0 R
+/Resources <</Font <</F1 508 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/XObject <</I5 943 0 R
+/I6 944 0 R>>
+/ProcSet [/PDF /Text /ImageC]
+/ExtGState <</GS1 <</ca 0.7500>>>>
+/Pattern <</Pat1 945 0 R
+/Pat2 946 0 R>>
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1059 0 obj
+<</Length 1060 0 R
+/Filter /FlateDecode>>
+stream
+x��Z_��ק�㹸n���A��k�i�:Hei�N���J+��1��ߧ3\rH�V>�ωK��p8�9Õ�8��f
����_v���O3!de<��+˝`�vAm*��fLh��orLV�X΄PU�5"z��D��,f��#l
X]	dA�n���W����M�!q'5IB3�����4",3Y���(�b��F�U=������ÕҌ-F����h
H�Hx�Y, ���Z��!�PKWpϐ�b+,F��5h���T��X@
+�-4"��&�Rƛ��O6�Uؤ��*)�8�%z
+����'�H�)��HtB23�&a^�=CT�0J{��L�k\
+LR�d $33aY`��,pOH��dZ�a�3�G�[X�0S�)�Qo����b"�bH<�(9�{�dXa��A*�F��֨��K���X���&��&�	���wrrr��䒽[ξ��L�w?�x�e��aǾo?<���i���.��{�뺞-W;�W�{�d�];�[6g������v����]��~�nݯ�����v����uv�eI"pC"\<z�~lw��i�в�qޣ��|۳�c�[x��Yw?<��٢����۲�v�Zk���MR�b�����ؑl1��2(���>���Ӫ��a�Oݮew�����+6ߵ��=ȴX�`��[�zPuz_�Ҿ�u���q]��}����w��|�D3y�-�����H�W�����mU���q�}h#�g
��p�0:�"}�r�Y��<�&�
+��jD�j�H=P	�0��N�T�0���l2L��U�C�S0a�W�L唱,qWz�J2Dx��^��$��{B\����\�!��s�cn�=i�䋯n�T�I���������6�1ev<Y�x���w/�VBR*mU��Ɨ�V�N*9H�:Ґk�PDK�J�$��]+���*rO�I�"�\�a���{tP�!�6ɚ\�4���5qO�ٮ��:�Ze�(��ܚ�xڭ��DPI���
+���驝���s������d=�Y��8����3����n[(2��b?C	�t���W��3[vX�����B�v�~rS����h��ġe����?�Rv���;���J�b�RBT�YA�a!��Q���
+N�@C�4N!�N�z� ݥ����T�{B(��)�3,D\��CT&8�s��S<'�h%iM�rv<g{�ߥJ
�'f)?����Wۇ�[7�P�*����8t-U�FF�/NH�62���8͉Ӑ�*p��xE,�7Â��$C�_�5�/iD�%�ɿ	9߿i�����V_1]�2-O{7o�`s�i~�aM�V��w\)+�fh;C=a��~�]a���:7g?_����V��:'i
��;��N�e�,��<�Ԭ�=bû�6-���/��P��f=��iI��+l����jb�Ʈ�wvT�[h5�FX^�.��Be$}`���?�#L��Qɱ���-��ј����&{
�T|��񺠭�u�?>$~��5lQ.�y$	�l=&��I+�R�igDN��c"u������$��
T5^�3%
���o����!A4~�&_RC�;Z���������L+��u��b%�v#!��Ή,]�| caz
+'`������+0���bsa���#r�Rh;�҂P����;�tl*�	���%@x]8TVMs�w|�H�6�~W`r)����@S��;&���x�iSh�<~zk�Ns�����Y]�#Gv�i�"��x����#{�� I>7��B�0��Y��M=&R��.3�'1]�C�T�F䄠-Z��H	�	;&Es�d����6�'o�X������@=��O�(Ի�=���MJ�B�S��S5}5R�(
�vD��Nc0K�4�*ӤKs"�N�9�M�����O���m�wU>'����0�:|�e"��\#|Y(
�@y�V�
a\N��7cB,�>"rR�ޚ1)Ԧk#��M.-G���X¢t�)ڌɴ�_�tX�G�`f����C�	1p{ƥ5�iA�}�n&�4'��z8�gGd �?1�r��t��ʇ����t2�sq%���A�	ߎy+k��W���W~�|����Mՠ�sz�y|Wtqػ���?��{h����۵�a.�Kl#a��˼�|�v�{���
+�u��ZH��q���ᆴ�q���0��뵟�?��a:��:���]���Y����`r[�Կ�}x�c���%{��|
*l�>��z�-�v�7�Q�/�
+��815(���w��4^�~q�����v∯<o�Ꞻ|����[�/�=4L_�������B��U�n���/۶]��3��8t��θ�P0��ڗ�<��d`��2��D�TJ�H=%N�N%FO	u˨S�E�*rO�"^�9X�/62��ұ���v5"Q����G�5b�Y҈V���=!&�z�ʃ��Y��#���WJA�e�hmk!I�wݶ�������������O����b�I��l��d�XD�h���%o��͵�0��"wB�ȋ0}�0�Iܱ�A�$CD��b�e��JҚ�'��s����⤿o����^iq�>>i��T���0�o��(���W"z�4�X�����T
L���|�?��UU����iݖW��ew��~���#�7������"�P�p�b)�����ޤXu��B�F�
_��xIzdz��e��v�Xw��p�K~��kh��Ѿ��njM�݄��xD/묕lLs�M�� 9Ƌ�����8?���
Z�����}#�?�I�_�@V���3i���U�[>�`w?t}�5��ح��?�FYr��]Y�!�����"�l�@#��S`1���k���yI$Eh"ct� 8mR�O���N��N[OC�G��z#�/���,*J�	����o��>�[�:-�^�=z�g"t������(��—[����(�Yx�A�
+Pj������/3�J�u�3�jÞ 
S�@'@'>J�MP�1�~�͓{I��^R#B�hd���ݛ�9�^��-^�b��!��W��*'C��뾝/q��/	�����Uq��ҕ~���i���e���d��KW?�����?��z]��V���q9��o�zR��ѯ�u�h7��%���xFѠɍ/�o�ߴ�%@97��m���,�����9�̑��ޥ�GK�ĩ��H�_|D��
+endstream
+endobj
+
+1060 0 obj
+3166
+endobj
+
+160 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1059 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1061 0 obj
+<</Length 1062 0 R
+/Filter /FlateDecode>>
+stream
+x��Ymo�6��_���C��;��b�:�nqh��(���+K>In��yw��鐒(Q�S��ŀ�L���ᐜPL�=���T���ݿ�v���K�+c�Dj��10��P��9E���7���,�"�R�!�t\�ʁ��lW¨��Z��T�0f�}BQ�.3D���)M`ŌFA{�3�(�U�5ЊU�(�&���'5��9�N�|��ע�$��#h�>(I�/�1O�!�i.J��`��RG�'�	b=-B,�$&�;|z�.J�c�zJ�XOs��Z�:h�P�z�p%�f%��	Cw��[�(��w��UGTZ���B�ڦ�E)j�!���C^�WU#�nw�Rm~@� 󔖭��l��jk��}]��9�]媦�{u���PW�qۢ�m�����˿�y
�%j�顮�v,������c����{'�E�	
v�@���^�>��aU@�����&�[�˄���E�&�sg�C��+��?��1�F?�o�E��r��!4�n������@s���:'�<����$���5 ���Ya�U(-�Qs��v��1�a�A0&��K�tu"'�D`�q(�x����*@i��F۪(�ͫr)	
I��Ε:rk^�R����c�p���jxt�)ow��9TY�e��}F���Eg�	֯�0�pg�N��¼����u�%-��bI���~��	��A�]qd�R�mU?�/W?�k�Ϊ�7�(�2�G������w(���J��E��,��`�����n�����J��E���Ak0�*�P=�j�:�o�Ơ�ph�Hh�%��ˤA�N�|Gn������X�8�wb�o����B�G��Z��J'>�w�
+�DP�� ���b
�L�Eq�A���/�G(N�����NTFq�i₃�н�'(��â����c��/��������e�nxH{Q
���/�\X���_Z���!�����
+�'΄
+3c��ㄉ8��9�FK����
|����Fҩ(�Wd.J�\FO(LC�у1�ue��o�۵�+��l�3?�&��=��K9^�1���u�i&An/1�)6���$�E�p-0�$��@Ч^q�Y�&�3J�	x��^W�q��E.w,�������K\.GՉ1
+�}t%�M*���rr�h�v�4��'s���R2i�W
����������m�P���DM�"8��䉢؟��tk���՗�Z"�W)�<��=��.�giL��$K9�Ջ�9��\`j�i"0��3�}�
��s*u�㊘����#�׃<6�8rX�13���K@fRb������3v��mqh��W\�xq�w
+ŰW�{�<���Y�m��l�4�۱tg�7�hm��(���
g �q�,b4l���%p��sQ���bc�6ZZ̴Y�j^B;$�%�m����ae�S��Dz�h��
+��W��"a�]��|�쥡a��<�b�9�/��dr"�X���5���,\��vp]�7(�u���;�_�{���[[��e��F+	hw��T��w�\K�N�ĴF�)�ah
	e�anBx��oOOٮD��iZ4�WR2��D\���BF]=��h��
+4+�r���t\��@]������F�!�Q�Ha��q��"�H*$�'��3؊r�^�nr�x8ևN�����rJ�a�����tB��X����\
<ɐ*��h#GZ[.q+eBs�p�5h)2�
+4��<Lh�C}��3�5�0P@W�u���Q�Q�#E_�Ӊ��lN�����,t��p��f���kZݘ*���Y�q��������7�ʑ�-�
+��Qn��'.K���J��~�AE�͢��M��`�PW[h�6C���m���E�Ǽ��F����@�4�r��x��nt�"���������OK�EG�D5ӣ�z>onQ�6-z��+eo��n���`�5��':��ا�x������kVm�{[��4�?ݤ'�P�6��v�G�nL��ԑ��Ж�P��?����
+endstream
+endobj
+
+1062 0 obj
+2001
+endobj
+
+161 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1061 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1063 0 obj
+<</Length 1064 0 R
+/Filter /FlateDecode>>
+stream
+x��ZKo�H��W���~��c۲�q��`=X,0�D�Jd�+�	�3���g��w��ĺ'�-�X]���H�����Y��U>��`��~��}7�\���¶W���3h&[�_r�{�ǂ&Y��5���*E���sye9S}7�m@�-'���~$=S�
$+Є�ރMI�����Az�3ِ(�Y�5�6��Q��E��GY4�Z��o�;5ztҕ_�H�Y��U�X�p��X�T4�Ҵ�D$yi*�RF,Ъ�%�"K'�t!B0��J�@���-y���q������x��ǒ&G�ƥ�[��K���-UM�^Pċz���e�Y��+���2ϓ��"r�T�Z$%��L�QN�RúoQ;!j��H%�u'�jԝ�REJ���DK=���;�HE�@��Ƚi9U���T �I��(8����E��0k%�i��ղ�];���y{7;��ߛ���[�v�i���C����4��DG%X�YtΤ��J�
+e�Ԝ�JT4ª�W����˂�#&����2�P:�,���@,o3^#�=5������5W\��g�t�P���*OV���TP��Q(e�F��T���X�����'y�m��I1�ڼ�$�p������<MA�
+1�+��Ð+�A�Q5�q����e��f�5I@}	Pq�q��Vs��ˆ5�)�rx�C�9؅��.�V���L]�����P��k58�z�s�T�;�$r@{�/�,u��ݹ�v�4��<��3���:�
+�\��N����,�;Eуz�)!^J)��L�ʱ��7i�Z���o(�.�W.>��"Fi�)�)��w匲.q�$~k�+e��
+�,�<L���()�2�n^)���V%���:(3ժ�d�A
+f`��&{;�T'O���R��y_�@��/$�+Hu��6{3�T�N�����+���C�9�peb�*���k��� �c��jv@��h���@��gR�R�^���]'�DQY{t��}�P+�$�������O5� \�L��k���4N�m��箟��QhbJ��B?���A����'���\d���\�\�4��<��B%:����N7
����N2.��vP���^2���%���g�.R���S�δJ8��E�*&�E��p��J��-�*�j�Ii�p�W�.h�ʾ
+X�ty�X@�<iO,,byJ�X����k�t<��z�O�V��<v�Vթ��j�P\����$��.T������qY��i<P��Ӝf��x�~��_��U��z9i���2-�0ɵeWp�H@��핖c&����<��v{a�K�6!�v��6&g�d$^�1�#*l�]�j9&7!�˼.�4p*�ֳ�����J��N�{Z�†j侽g�����H�[���W�v�j��ɓ�UJ����:uZ����49�V��q�ƕW��o�����A���:v7ݯR�g�s�2PC������ͨR@}f]{HW��x��rćf����Qx� ~]�4�C
7i+�i- �4s�cB��	�\�W�0����&#G�C��ε�"�Lܗ�yir�|�2O����,�
+�h9�88s�[&��㢖�e��'/��`v�9�0!�Ux.t�L�g����-y�]����j���w#(�e+&
���@Ht�ӷ��7��Aw�A*'����W-%���mۡ���$�p��w���b�,6�]�i=|n�CsX<�/��ǯ��z34�~��]�{�>x���~&�x����m��C���R��7�p�����iq?4�w�&�����#
��)����ȑ�\�����m�pnج�jx������m������?/�@�pa8�?�I-�Ф�p�?/���a�6?AE�yh><�����@2��J,��ӈ#�����w`�wT�JD��^�f�A�}Л��(�s���<���Izʌʹ
h��;YФ�"W��)���h���wNV�i<�`Sh�tm<W�!R��lk�mf٣H�^G�ElX��_��~��g4LJd:�3�*��ߪ��V���Sm+%vZ��HF�M���k���o����m���C	z��P'"Oέ��Н�rkM�;QФ��+JO�"���s�h)�Iz�m�!�6ۚs�=J'��Iz�͛s�u�En�V2�����ym���*���0	����n��ŵ�z��F l���fX�;�/����87���|���ߡ������}���ע��ޠ}:m��sV��T�����
+�v�T@�X<W���Es�0,?6���&��Ά��x��nw��wh�/����U9�\�B��#K��v{W�ms�0�.T��~��[���31d��(�a�<�9�q�ž�>-6�\��yǐ���2֒�G�k���'�}���C�l~�95F�lIFu#9���~~�l��~�{j����������`m4��h�0I��/��/�
�'6
+�j�|~�r�p�����(��n����~��GyP�k;�M%�=m1�����-p�
+endstream
+endobj
+
+1064 0 obj
+2440
+endobj
+
+162 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1063 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1065 0 R 1066 0 R]>>
+endobj
+
+1065 0 obj
+<</Type /Annot
+/Rect [320.0010 196.3837 417.8190 208.6162]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/tooltips.json)>>>>
+endobj
+
+1066 0 obj
+<</Type /Annot
+/Rect [209.7030 109.2840 307.8180 121.5165]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://google-styleguide.googlecode.com/svn/trunk/jsoncstyleguide.xml)>>>>
+endobj
+
+1067 0 obj
+<</Length 1068 0 R
+/Filter /FlateDecode>>
+stream
+x��X[o��}�_1�R!0���$Kj��Md9�K��ay����}����f8�얉��Z�W:~��]�����m2��O�<
+' �~��f��M���_���L�,Js ̼8I��8&O��\,��7aAy)�@"ߜ
+1��H��Y|���R/���,;�� �"�b~d�],�(�"ݺ��`�b��j�z�xd1'd�t���=��R���G��=���X�%���p ��2	O"f7b#//ᡃ��ɉtq"f17b3WDD�����4br�	��Y�,�xm�;�)�nA���rI�{q���|w�������� ٰ�vT#+��́��v+;����~f۪��9ط�����dU�+T3�ӻd��7w�d�b�/f.�U�������c۪^j���U�^$��a��뇼d	E[��R��~'K�X���5mq�8|�m��A�|�)�}�IӰ������a�`�t�v���e�����,���|�qƺ݆ǡ�����f����PUy�q��@P|s��œ��,��,��͒ԋ���x��S��IYK3`A�e�Xꅑ��,=Ncsj�aF ��:c�e=Z�����/Hfe-�MR�#�>"_L�2���<.��	�?.����j����S��n�?�8�O���K���<�4Y�|'�؞m;��P����[T����)����q��	���aNEIbψ9�~���,	l��g]�j��bE��9�oS���:����(����r2��h�o�'�މ*@�u��*E���q��@L��`��b��b��d�U��h-��Y��G�Q���"���{��x�F��ƁȒ9�G��;���<��3���S��������6�0V+�;�R����h���N�G�t��\ʁ
J�C��O���"#�vxsD����%;;g]�#���kUJ4��U�:��z[��X�P���
+�tQ�Wo�2�`V�U<K|c�A%����dS@gsd5��G�V
{��翍�;�����d��奛ˈ��pBlt��G�;�os)<v3VȜ�M_
dP��g��ԑ��,Z�؋�u��������T�{/_�u
����	tvj��|EL�����m�WC�[U��#9cIi$�{V�Ѱ4�Y<���j���I�4�J6k\�])�V�sF�]��W���ii���1Ъv$"`Y4V5���vab����e��؅���UX����R���6ٶ�/��1{�jdy��iLF�P6��{-P���4�L��U���kϻ����ˆU&�{Y���b�B����W�ĺ�M4����^v џ�M���}�}�]��JYW��(��R�jsi�Ӕ����eT^o��5�#�6քͿ������$�E��L�[�1��� ��1⋻�}?�9��3�ϟ����slK�H-��te���W�:�xw��[�9�����z;I�T͔
��M!|׫u%u\ssu�V�l�y�����jJ���0�(7|�����吿PϮ녂Ԭ!�$�G�D�w��	y��Rz�+�!G�9hm�2�I8��t���\W�V]I�ŕ�zp	r�1��j:ޕ�r�i�?�r���{Ĝ�qU_������ځ���1�~�w��t��9�S��wҩn<��ۯ片�
�)C�6!}S]	/��吶S�+�F��"�q���`�VZ�M�?�u�*�dQ����
+��{JI]��z)&��j���itǦV�u�^�j'���P�*\W�(;�n�(8#��j��d~q��a������M��Z��&;�"c'$�)�&���]i��l?L�n�J�wG��N6��}+С�{t��jU�p�2�U@X�
z��K=I�
�����HPj$8Y��${�SE�{1�@�7�t���{s�߅���O��������-֫�[5�lA�����G'���C��*vlzu�Sb���1T�?Q=\|�g�����f�&<>���r>��c�OMԱW|�ne!�}�^�$�Lk�o%ΣmG�=�T�x@	�)XG 4�J����:"Վ\�+=�pɉ����"���
=��2
+endstream
+endobj
+
+1068 0 obj
+2092
+endobj
+
+163 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1067 0 R
+/Resources <</Font <</F3 510 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1069 0 obj
+<</Length 1070 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�r����+z)�4-���Tɦ�(5U�ɕ�7�i��f�Y&)�O����D��*��Q�}���O��=��𔎟Z��Ƈƞ=��L�
�]�T˂�<s[x�d⻅-�Ķ1&x��	B�\kB԰J�֌��L�	V˹0i��8�!I��0#�Kx��ҝ���,ς��΂G^;�"��5���|���_�hgo�1�	�I�h 9!�����06b�e�3-#���&�#$b�a1c��$!~�tx��	c�s1�<rX��I��i�	W��S���V���Y����6� jc9�E^���ƇѸ5>����c>���I�,��q�T1&�JrӻlpHD�Ǣ��X��I��d�P�?�{%{>u'�y,�y��P��e^L�	c#���|qz�1氘1�	�I�BYk��LLsH̘â��X��I��i�}_�R$�`c(kDWI�O�Z%)�Sm��Dx���	���bX�M�HD�Ǣ���O//=B� �p���*�������6x$��cQbz,�l�!��z����J�|�N�JRʚ���	c=r�X�Ee�1_�^z�D��؄1�I�*!BY����26"�F,*k�y�����ۻ{��<I�L&<��d�����(��?���uucY�޴l�çem��l�i��zfe˞�C��M�g��ږ�e�n�}��zgiw���>��'+���x��Al�c�gv�l]��t�P,=�e����]�YY������ͪ)a\S���ZZsy��4�/-����z��]wY�!k[����U]�슕�qSY�,�
+o���\.m���7ݺ'c{�j�{b�ze�����^=v��ul:R��X�7���+�`��i����6�/�5i�M*w+G	�UiTP���vӶ�zג�,��f�����u�זX"���+�cy%r��X�
�z�`��"�؎U���Mm�Y�"
+}�[]U��g��T�����}��u���ޒ���n�o��yB����#������D5�u�����?ka�I�U"�kY$B�F���;H�2M�n�`$�O�`�b�Hn���u����{����X��i?���X'�b�����_�M�����W��^�/3���+P�3�z�7�
+�H����Ӡ�i�Ki��)�r�S�X�ьs&�L�R��2n͈�=���
+ړΡ+�0A��a�������	�$+`:��^:r�_lpdy[Y�#��{��$w�B���D�HL��.3��u�q�l�.�(ǢP��:�2QSW����-?��+�Ac�C34����@ź��(
:g�<[�4r�Q������_U�(:֮�CE]Dzi�V��lҹ��zk�L�Hc�=���ָu�\�.Λ��� A����û�W�Y�"{-o��������\5)�er��=�<8"�1��u��k�������0��%���X7�K�AeH�Q�S�.�RKgW�cw�=�컁�%����׭]U�+�J�^�����cQCF�*KePFf
��ps�k��� �F��k��z�����Ƹ�@���Y}�E�$��>Dy�"��p1��K���1`���FNbq�{���~GRT�Sz�iD���7p0i��!$B_�
+��;�}_���8mǯ;��Ip�����Yw���Ig��J�(	e}*kM)k�8}2���df�\j�D�p��gF��Q��5ݤ2^�)U<+d�6�r��������W����DΤ�^"C*�J�t�X��Ft���>,hJcj/��_>�rdF�����Z�n���%CB�ip(�B�L��Lϒﶽ2��?��<��q�`>�_U:��zh~�8��jtF��@;�lq���몶�9�B���e��v@�?������\�	�Ў��@���9�&��þ��|f;K����1�XԏC��BE��,_�A��A�i��;k_,��*h���Ke,�zW>�HN���l��Nթޚ+���5h?8��sD�����߳#�RC{����^��\]��n���~����6M�\�fG-n��G�d_h�h�A]70��U��JD[�����'|BN_Nῌ2��\�LY>�^)�b�=��p�����?�Oz��y��9Y,���U%�IOv�{bgWo�����L�L&"�d:�>'�����3��W�!b�zy����P@�*�:,;�\�?p����<�if���ęH��S�
+endstream
+endobj
+
+1070 0 obj
+2168
+endobj
+
+164 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1069 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1071 0 R]>>
+endobj
+
+1071 0 obj
+<</Type /Annot
+/Rect [157.9965 140.6769 224.8110 152.9094]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://enable-cors.org/server.html)>>>>
+endobj
+
+1072 0 obj
+<</Length 1073 0 R
+/Filter /FlateDecode>>
+stream
+x��Z�r����)液K�1��-m�dK�:�xm��C�^�`�в3��Oz��`Ar϶JE��������h����<�LھSݫ���Mig���41Y*��R�H'�̴
+�H��DI�Jy�	�$���t��L5��A�%�A�0f��K����|MS�`y�6	�����n��A2�_�l=Y�:����|��f/ө���?�=g��0c^11�\~H2'��GQ�:	�X'sQ�D;� sQj��K�u2�1/����\~:t�3���u��N�2�Ed!��K�F}{��fDZ޼qQj�p�L��AQJ��T�(��h���A�9Ȣ��P^��x��l�
+��2�.������(�^դ��ꀃ�_�o�Azd�D�B��LyL%���E������%���-�B3�^g��ř�D�VR�M!k9�T#��jDQ{Q��������.f���mggM[2�E�f�d�$��ه��д�?.g7)�+y�:�tV��*3�`����j���F���C�l>/���O����|��?�EVٕ���n�z5�&oŞ̋�zA��k�V����&��.�K�����RW�ͮ��-+R�XRź^���kUl�r��$�l���x���:�[��	(�lU��u+��2����Ic…A�x��n��N/�Q���Ֆ��$rl�oI>�۪��ŮwQ\Pi"UP�Z���n��+�d��_��ڌ��^��q�<���c��b�$9f��2�(e��%�R��l����V���g��Dq��x�dY�L�87^ˣ��cy$!4k���%<���)m�z����^X!�`��Dx������� M��^x*�|�ަ?<C�e��!�qυ��_�������X�eYl�����|�&���>�mF/;tU@I�����-��*h
b��tI�l����֡�Ȳ(�t������ڽ�ͻ�+f��Wˢ�l\Vj���A�2�"��Tm�Aˤ.�oy�ȱ<01�ō�2�1�)�p~�:��~̔�p�i����0�MFWO�t���«��™g�܉O);w���zC?�h���]�������M*���
�<�*p8F�E*�<��G�`���������2��#a0oM:TK�b8ju���~;�W�6v�5��r�C�\��"��+����8.N>T���r�^$����HhʻxY���#tUU����]���{���.W[� �m�Z��#����2/�ZJ�6�M�nk��I^���i_�����>K��K^�T��7��J*��x���F>��醐C��Tڄ��F|3�_��w[�d>��2�z�hl�5�������v֍v�-�r�|�E�U>�G�9s�h��[Jm�K���V�J���9%&R�dƘ���3�Ql�����$�PEp� �Pc���P����aE3���i�<;
��$l�PFp���	�2���qcsj`����\���'[�gC_�F*n��v����{ތ�HQ4���+����*�`3����kz@�Y-ߍ�6���hϬ��XD��".ȱ1XnR~�����2�d*�_Ιā��b�]*�
+�6.�^܊��}B��opv�x��O��n�Շc��8�*x@�����T�g�O��)�2�z���õ�X�\L�A0���{ѬLPC5G�
�Oj�'������ӡ����"?��	�F��A7��c�
�����S��~��NX�0�-��z*��	���8����%�[ �s�"2�f�X�[ �Sl1ۅl1�g~��B�(S2�U�0E
+�&aV�3R��)�i��b�B��T+����ۗ��B��
5�
+b�@$�J[�cL�;�
f	�&�*�%`����e�%��:�:�6r��a	�d���c	lqK��,��Yc�`���.c����F��ݟ���%p��,�T�Y�I�V��%��c��b�B�GX)M�����'Y���R�`	��M�1��U��B�b	�u�%�(a&��5��;lqK��,��Yc�`���.c���y���x������I�D��8CЌ����*16�8#>��m��+����%�<�@,� .d�bj��1
+bO H�8;P�E���T���L��:�T�Sw�Yؐ��Rx4f����Z�
��+-���G:�d�W��+u_j�~�\5��~����
���\
pt����&�vk˼���ɝ��͓-	ˮ	K��0�kLī��?����{D�|1�(�{��0wϪ���
$���~^��+���~���� C@��K�lᄨ��?QM 
+endstream
+endobj
+
+1073 0 obj
+2328
+endobj
+
+165 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1072 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R
+/F10 583 0 R
+/F12 912 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1074 0 obj
+<</Length 1075 0 R
+/Filter /FlateDecode>>
+stream
+x��Z�n��}�W��l4��&i�+)�������.g8&9��3���)�o��,9ɣ�jt�}���tW)�������t���w%�r��7g����IY�
+8I6���]�Ʉg:e�ˤP�5���̍���L��k�3��TY��G\SZ&*M���1��J	���F�=xds�����[�1o�g�鸶���<�z���٩�<&0W��b�2ϖ���c#+��cde�`���c[x�c�*�?������cYx�b�1k�Ǽ՞=B�z��x{�J!�TI�d�����4��|���Ҵ�.ƲD�ZaJ��Q~����H�����"�Ä�
hcL%��az3���c�0=�̲G�v\�X���O��{^��yL%E)D8�de�.=f���,k�����#$��b�y3S�ñ&����cr�	���ǂՎ=B�z��
$'N$��4��S�}q�Og�����/��g��|�޼?�z3L��~�E�,K��K���ڱ9����݅�p?���m׳j��ƾ�n��������;��6]m
�=���S��K�@[��j�!Y�d77�M�uK�3�[���.3]N�΁2�Q�RLi%`�}��%��5!r�e��Xq�0�D~�✩Dß�L8؎r�I��
+���ci��L����������a�����j�Ḃ�r�ӄ���L3�O�V�/�KV&*���U&�T��zEF�f8��>��s���C�b̀��BY�{w�Cw���m��oǪmءk�#kF6v�ڳ��е�ѰC5nW�����®Äm7�����߱����'Z��w��Y7��SE
+�C�DD�Sa"��R��F��C6�[�4`�
+0)u�qv�c��\St}�b
+n�I:�]�yT؃Cba:,�����Q���Œq"L%��J�J�"��:����Όۮfm�} ��;�mT8I�۟���܏f?�����/����=��(��d�E�҆ͷ
*���E�C�F�,�0��0
+�<ʳ$�6c��Xa��ّϬ(�eK�E�E����)_,
+��L��D�)�^+��ui�D(�����Z�|#!��EY�%E��Q�0��RF�d�4&DY�}W���(�\%\�&�̎�����B�#��!��X�=�(���(��Lo�gȋ����(��:�T2�Y�Z�P�_��u�nF:�{{LuО������Tq��VkͣL��v�~�ZPT}�$��+�nsU&�愸?K��+(��d�Q`�a�k7J99zD.�q��1�B��9waw{�!W���+�EV;�yy�k=�+R�b��2��8a[J�B.��z`ճ�Η�J;�\8r���C��n��D.C����pXV�&U�FY���a!�f��]��B��^C��E^&�j/���8��ZO��Wz���R�F�%��n�a{Y��~�DZo�Q�B`�V��|��۟O���������XPR��gV��i6���ÀCE�K�(^�������=��/��JA�]�[�������P��ϵ�m�j!>VmS'�{$����Ɍ[�������c��7Lk���}�@�a�����G8Pz��L���jzf��ju@�>�רhwn�;5��~������n�]7Kܬ����gC�~�z�Z��{�w���/>���͚��}�q`�fcڇՕd��[k_�~�.�f�i�����@���MW#ο~��N�h!����d���֫撿wL��a^/a��Ε�v��fk6����Z]+�l;�QO?��O�����v!c���O�.�8��_L��D��j��}xJ��w�;4�;V��b�e�O>�-��D��Qö���M5�oа��*��au�|���A}�.f+���W�l�6Ձ�7]ߛ��>�;��E���f�������RNq�҃�]��$���x����i�m7�"H�)F�B	4-��01�P�(����<�Z�b�����Z,�c�Ө��P����0���EV;��7��z��wkE��{䇘oy����5m{���T��6��7�;�҃)Q�f9,Y������ء;tM?�=�����8�%��ph���vC��
+C�$��Y��d���U��]JJ��ˬ����KB�U�����VbT��Ao�&��#L�Ⱓ{@d�r�v�
�����(gg��=8\~������V{��d/�n���hW�|˅�'|O�gAt��=��aU?<����#PY������0�	�5�Q_��$9�8SҞ�=����E�%�5��SO��	�ʝ������B|گ��_�G<�S?��1�W)��
+�ҕ�*�=��bW��Z)u�^�)Lj�H��IL,��k���~P|a�_�l�|x�_�K+9Q^�g|e
+s��k~�Sg����JD)��K����Ӝ�n���0�m����ϡU\�wm��xc� d�:M����(g�1A��<i4�CIy��&����.��ͼP���1Z��	�]@��(���ٷ{��@k�Ǽ՞=B��z��aN����{u��g��1�z��*��k�S����N�ik���g�v~i>��;���y�Q�����@�P���PY�\d�����v_���&p~˳���oMe������%Ј4��!�J��i=T���{�`TKV�S���G���\3��_��0�i�iL�v5��"&��Fe?�*մ���*dd!=D�:�Sn�
.о��v��?M�0U��� �<bq\h3����o�q����/ԛ[w�1�
ۚ
+4���:[����BA���Y�QeW��
+5+�v�D�7
+�n�i�?�8�Į�9z�\��<����"rg���(o�K�1�wp�(.P��<�t[C�u��ߚ6��[���0L/��t��08�>nF�3���Y��V�Nt���(�q-ܸ��tn�P
+endstream
+endobj
+
+1075 0 obj
+2924
+endobj
+
+166 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1074 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1076 0 R 1077 0 R 1078 0 R 1079 0 R]>>
+endobj
+
+1076 0 obj
+<</Type /Annot
+/Rect [155.4660 718.3837 214.7910 730.6162]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/tooltips.html)>>>>
+endobj
+
+1077 0 obj
+<</Type /Annot
+/Rect [196.2570 563.7840 379.3695 576.0165]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://chrome.google.com/webstore/detail/json-formatter/bcjindcccaagfpapjjmafapmmgkkhgoa?hl=en)>>>>
+endobj
+
+1078 0 obj
+<</Type /Annot
+/Rect [152.7030 503.7840 296.5350 516.0165]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://jsonformatter.curiousconcept.com/)>>>>
+endobj
+
+1079 0 obj
+<</Type /Annot
+/Rect [349.5751 439.2840 445.3591 451.5165]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://getbootstrap.com/javascript/#popovers)>>>>
+endobj
+
+1080 0 obj
+<</Length 1081 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n����+ji��dq��K��E�@<dIK%�JTH��_f���s�RE�:Yf�
��}�sϭ*�E��{<Iy�.�Z�~!��T�d��!dd裑"�xǔM:)x��c�D����[S<�M̙*�Z�J�G3��+��Ɠ�k6b\�i:�~Xj�X�@w
+
��<��#α�qey2�:�'#�q�㬏��!���#�����}�=�l?�
k�$�$_r��2�+��I�P�q�P&A�Ê�X�06�)�Y��ʾ�w�cl��h\Q�ѽ�Po�����%'y�PK`�X����䇅�,튽_��^�����ݓ��1`9�����҉����f�"��]��������)��^9��8N6��!�QW�^�
+���#M�r�NǨE�ե��I�~eu֯���<dbQ���{H��D� @��3B\.��Vk�����������j���o��Y��r�1��Ķ��@��K!��7��!�5递��<�
+����|]�͕hM�J+�a^��ń9�[�w	��>�8�������7CoR�ބ�C�8��8
+�N����6�YC����p��<�����H����!�s� �D���i��f*t��k_k�D'8i؏v�܋��v7�a�=�
o�Aa�L�"D	�JW�h��\
+:�jv1�@���Y���F:|N���[*|��ϩ��R�7[͛;��ա��4=�l4�+�L�	�����U�H����>�����#;t��=׋�м�>�	�Q�ǴG�=
+4=��=�j�B���	 �N�)q���2R���b.��.xz9�*ph�H�lU%p#�Eo��,}+}3Q� ��&�����Fty������E<5
@�������~�l�r�*�2M��BBS~e��#���3�Fz8�C�5�#���W�6�KCW�R-!*�8���!+�����2�NB��5��WB�q�	c��Q��s;5
+S��W$G1S3/2RW� ��4c|#=�w�s�h�~Sfc�_q��dz;p�WC��<����~
+i����}J3a���������anW�6�2�2�_�G~�C��i��N^�n�>x�$Tk��d:�M�wgs3�m�Wҹ�_�j�_�:�����:%�z���9��c͓�;��_������b#��Տzz_�E��ح۔gsMЖ�0�Z���
+>�\S~��[�+���m�-�9k���xW���K�g�[��m���˲��*۱_���e����ⷚ��]��U�l>��*��}^�6CS�|�7yV���mؾη�-��[,�ٳ��/,CU��쫭[�`�>�TƇ����E3�ڑ��r����}���h�@[%Ĩ�4fӷu�J[�9�z�Em���ٸmSG���˞�9��Hk�$I�0a��H�6b7���m��/�ȷ����y�����;4�ZSu�qs�HS��L���O
ˊ�d�ٶ�:^���(�6D�2���U�nEװ]V55?V3�:����������e�]��Y����R���V��|E:�*Z�ۚ������|��lBq�|�@�C�2b[vg��хT�#V�5@a���W��4�2h�tD��+L�;�q�B���(w�����H8m�c8��l2+ɲݮȗYW��ùa�9"��Z)客du�_�Կ��_��B�=v��Jb;�?i<JB���T>��{n�Vn���1e{��� A<����3��U�$��q���e����Q^<�!��x'��|�]�"��趮B�W?b�^�(U��I./�P�Lƈ�K���z��{��s�u��۫��a�bj�_���Hmq�%&	!�X
v�����
+endstream
+endobj
+
+1081 0 obj
+1858
+endobj
+
+167 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1080 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1082 0 R 1083 0 R]>>
+endobj
+
+1082 0 obj
+<</Type /Annot
+/Rect [182.1255 488.8837 245.3355 501.1162]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/tooltips.html)>>>>
+endobj
+
+1083 0 obj
+<</Type /Annot
+/Rect [246.4800 413.8837 305.8050 426.1162]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/tooltips.html)>>>>
+endobj
+
+1084 0 obj
+<</Length 1085 0 R
+/Filter /FlateDecode>>
+stream
+x��X�r�6}�W�1�$,�L�3��铧u>�� �
)�$�?���.D(R��\k<�V�gϞ]��H��=/�d���
����b����
+�H�bZ�!J$�P3�T�te`c8�BbDK4����!D>�%[p#G�l:!�۸1#��e���P��*(B�J� yt_���-��s��b�+�@�=��k�DÉ���zת�"�+6ؠ&ʩӇ�E;�
+�-�b��U�� ��U�"��%T��E�y�N�N��U�D�Xo��mN��"o�U{��2�7.�
+�pӡH�@P�!�_��e��cT@�r��� �!�����7��G�z�X��1)���m�֞qq���z8p�e�tG'l!�RC�#��փw�=�Pjy*R�#�@�g;��YO���NdsЧ5���'�M)�o�������>�	����҂�����{�L���^|&K.	#�?��?_;8���1���(g0W�%&�s�o�2��&C1'���Ȓ���T$1���UPv�1��s�<A?�ݹ�B�;�	�Txw�g�vD�	p�,�`��K��@&�`n�iR�O���У���#(�Kh�-��D ����
k}��,K�fY��uNp�u©��V
+��x8(0&Kh��q�p^�y���:O�P6��0��P,`�o��5Ke���ÜD����a�0�"p�	������L���S�� `ǧ��[q{AuL�'=�|�:́�E�Õ���YG�F��[�E}o�}��f��\��h�z�e��ʮ�)$� =�{�2&��l��
+��yGfX�q\�VA%谼j����R���)3ڭ�dF\�SWumOGt�V&�~:��V1o����]��E̝n^L���_xИH{�jl����aĵ�__ѥ��G,i\/c�窢F$&�QݧP��T��8ykwT�?�R�p�xw+����e��lWhck�O�ڍEY���އ`���x�4�t`�&:��ov�X��e@���B��("]IJv4������0Z��Y/zwW��ݶ��ɲ�4�@3S�m�|��SZ������
JQ��|�R/���U��i٠j����E�"}�u�l�m&����gU����B�}��M]�7.a�>gy�틴Fu^B)hm-�>U/v2*p�}��*AA5��s�׶�|������b�v��&�RH\m?N��A��ͫ����̺Az�,�VY5���@!--��ۭ+�);�<֠�J*� -*�I���U�~<|\UU'����D%�de�t ���
�/�ء���́ķ�PsU��.)�Zq9�Q!���)�l��N[�� �哭a�@`Ԩ��~��_� �VU�w�:U�ߨ|���j���[�?��U�y�J��!}��p���/"���
+endstream
+endobj
+
+1085 0 obj
+1394
+endobj
+
+168 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1084 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1086 0 obj
+<</Length 1087 0 R
+/Filter /FlateDecode>>
+stream
+x�uVM��6��W�m')��%{���d'��T��r�����%�q��2�(-�X�X_�M�{���� �6E8�e�5M�)������M�YƩ �‹8�3��5aA�悈����s^� N���0(8=dF�e��,�!�y3�21�QsZw�ە>�%�2��MC���؋7��>K� r*����$�<^l��x2�=�9�a��0��ä!�0[,�b|��
S��`n1>קyJ<l1�9�է9���y��bk���5Mk<�k�{:�4���a~�m��[E��9	�<d��6�?��#Ǯ�<����������P����=|Vm��5^"���d$��,i��'ap/�f�ɯ�A(Ugd�+xlQ�R|0p�Z�"�|���Ñ.�B+.�<��Z�T
��X���[��Q�쵦vAu��H
+�X@��P����&��RZt�W��Z);t5�x��� �'iV�SO�Q-�]�C�S��Up�<n�I���X�����8���[��$n��O�[A�����}7�a�`�U4F�J:q@C���Y�o�,u�7p�}뵤ڳ��!|j��	�I��٣썑䒟���}��|��'r���x'K]+cC�|G�:<���>����D�J�=׮��Gd����+��NX7"��tSA#�ʔ�[��J�*[� c�$#���嘆���(���r|�g `
+hأ=#v�@��i����ðu����8�M��;����O�Ɂ�N
R�݇�S�E^��-H��ν��U�ê�M�X�>�N����5��Xʗ�
B,�z=��g:�9�Տ��+�_��޽�#���3�N5V��CMK��I�
�_�I�O���,\�������7�YDIQ��k�hGw�~���/��^����Ou�����8/_��|������Kl�4�8�BF�üJ�����~�'��q���^(�VZ���7C��t�{�i�g|�B	D���mɡE
+endstream
+endobj
+
+1087 0 obj
+991
+endobj
+
+169 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1086 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1088 0 obj
+<</Length 1089 0 R
+/Filter /FlateDecode>>
+stream
+x��WM��6��W�V�pY�KAQ A�i�"
���@.�D��ʢ!Q��������P�$o� {��&�g޼1�9n�hx�ǧ|\HƗ�l?o"��Lؕ�<Kb�7�q��~Q�dLM���8U�߼�� ���d���S.���ʌE���z�g����f���&?��և��5ڕ�~An�l���*�xƃ�X�$����`�������������ɫs�'C����Ѯk�ZӒ��^ʛ�∳����lC�L�`�bie�NBpD����Y��0eM4y����PV�4ט��\Kړ}�
�ӵ#��w��nՀ`K�y�5m��#��ޗ�+�-�E
��;C�Y{Dۯ���Hk�ƕgӮ�`�
+�}��e}����{�w���$�5�7F���u�6!3���+05�����}ׯ@���DdT�2�r
��rX��LN6�;���������S�덵�ecrg��gh��>����l�^�/�dߝ��l����$La:ZJ�\��JWA�W�E�š�v���o����cK׎�4�Q8��}0���-�@<{����$GO��m�i�O�6AI��Zk�eUٺU��,��=L4���;�P�!7�Z���
+����:]�����#:T;�H�_C���`>4�텢ô<��[��o՞\�o���Y/���h��o�+��<-ȡ��)�(*�z��Ia»#��~�~�AEkP�2��1S{/�$��b0n#m���:?y��<5f���'�Y�P`HO9��xˇ���R�I[ 	�U�r���C��o=����
Ԩ���4�ܫ�!8�i����~@�7>5�t�Ef�.&݇ƙ�
+^�Y���3�{B�F�"BD�E��\c4�9�(ʔ�.!�g\�7�d2��Zk��k���kD_�D3VXC�(fkZ��T#3:ˆ]�a%�̾��j3�(�ͷ��N8�x�C�A�I�p����x>�N��H�����)&��Q��9����?��+%$����z�<��*�P��i,d�Ӫ�(�Y<�2�4ߗc��e�����-	���K6�������*fV׽o~W�3*Aa}S�R���^�X����W<*<%70-�G�B�#�Pd'}��嬭\yi�6_�Zn~A��T�{�j�͗ގ�34���l1�|[sV�����wA|�f�k]�(�ð�9gߕU���n'��D̖!sO��]
⠢a�ޛ�]h�C��j"���ơ����T��.tto�}�|Ct�7�j|��U�(�ߚ���2�g?Ơ˹���6�"׈96'
+c-��W��Ki|�_�"�)��x����a�[�2�*�{v]���0M��G��\��z�h@�f�\w-��
�O���.�a�#��L3p��������[U�-|o{��)�[a����
+��?X��Ӫ޷��{[�����%�8'T�����^�\M4��1�IJ���oEՓ&������RA����L�F�ܜ�_���X��^�dBܾ7w=&���e—wgH�w��s+�QVt�#���ɻ���2�i���
+�#��q��?�WdJ
+endstream
+endobj
+
+1089 0 obj
+1574
+endobj
+
+170 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1088 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1090 0 R]>>
+endobj
+
+1090 0 obj
+<</Type /Annot
+/Rect [209.3625 118.8483 282.5925 131.0808]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://jsonlint.com/)>>>>
+endobj
+
+1091 0 obj
+<</Length 1092 0 R
+/Filter /FlateDecode>>
+stream
+x��YKs�F��W�Q�R��@*�*ɲ琤���V��C1@��P��/s���n`^����Vل>�|���n�S�~S��ɸO%�2���������9-��D�ټ@gTK��X����M1M�6�p.i�"f��s��8�ڨ�\`
`�L0U�	"#��$�
hR�Q�rI"�73���ju�X��y,Z���{�:��|�����zw
+}鱀)�)��Q�䳕�^z�!�9��f����ق=A�y,�X�̈́@�xvQЌ/=搅���y,Z��d�o���r�"�2��L����o�l��w����%�-��@�#�Ս%e��r�Lƾ�;2�Ӊt�T�q�Ǒ��r$Oݹْn<���,iˏ���}��5�
+0��������B��c��[�쀄P�Bwc-*��kc^�wǪ9o�� �C�j�Ggӂ��-F�4�����GKv����-�SQ���"3��*
���o�Ҵ���F�1	���( �D�#R̫����T�qj
+�#��&�OY��L�U�="&ry,犛�+`��\٥�WE<\AW�W�(�V���+f.lV�H�4'X��g�Ĉ��J��^1u���~X���2j8�_�xȜ1�R�1��An�ɩ���kYn��W%d�Б)�z�v�v�մu
+nPM�&b��	3�\��5*��m��e*�
X/%K0!�ʳG�G.���>��.��]0���G�+��1�
+�������ieɿ�6
+[Hv��"m��MR���tgR�X���v87�@�],"���bn^}C��E�x(2	����0j�!�J�ү	E�k8�Sx(2\�1	�u�Wy�����1�L��2ٙ+Q�Lԕ�"-
+;�Ձ="�\dY��p�a[�/�/��ᙔ[w��ܳ<>��aJ��"���!�aӽ���&ˍ�@u6�@��������\�hA�-`����06�\����_�;��r+��R��z#�*�${�8(�Z%�_��
������;e�[u���k%A�
��OW$�q(2C�������R�Q7K~�8��MYAًM�f�(x%]��.�D^��e�f�Ib��^�����/�e�x�@i�> Nj�U~I�h)4�ŋ�w�"F�\h^��0�sy!�<{�]~���(+�΅��
�;�LO�V߮�yL�Kj~�����R��K7ڹC�ܔ��Ԕ����uף�rM4�-Ό��>bPb�p�f��b^�W�[�
+|
+Y�u�5	�F�$��n�cO�<6
}L�W����$��Bϫ��[�I׀a��,
+X�:�'Hz�GYi��s�%��Z?1�_>�פ麏�=��q,Hu(��m�v�+,=��4��`�o�Bz2�����}�8�!
+��i��^�w;�MH>·c�*�D��kǵ��XW�=<�pO]OT�Ϝ�e����N��uw�f�]
Z'���Ӊ�xR�I�{kW�4ܹ��S�$(�D���sS��MThm���L��1B[;�u��q���h�Vu[KW
�
+.=ջ񯁜:��<�A�"��؍��*�)�9=�fn+{,����zU$�XAdv?Ocr��Z;��=���~��hے�;H�X��Ѷ��Ui,1��)!�������%Y+c�rL_�����6
%��դ�&	�����p�&m�������,Hu��W`z��<(���>ھlVe�Ĵ�;��@�c$Ĉ"�G����a�Dk��i�K�z�T8�@�UY2���sl
��d!�	뱱�d8C�{*9ut"4���*����ij>5�Cݞ��m�0�!D���N�ɢ9S�[�K�zh�7V���:_��
+H@g͡u\{��<�][���)��W?x�|��ߌ0��4TϹ���}*�WG*'Ѧ�Ӯ�XQ��-�>��#Dd�B����r��ՀjÃ%ۜv���|K�[|?�1y��q�T�-�Ҝ��4��	dpUsY������D���;��qW��=\�1�����\Pd)�owo���G8O��~G�le�Ha�_h����k%��x����<��v*��{չ�T�"��L���ɿ���9���?�lA���� ���{�
+endstream
+endobj
+
+1092 0 obj
+2085
+endobj
+
+171 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1091 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1093 0 R]>>
+endobj
+
+1093 0 obj
+<</Type /Annot
+/Rect [192.6360 451.5980 291.1290 463.8305]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://www.ultraedit.com/support/tutorials_power_tips/ultraedit/regular_expressions.html)>>>>
+endobj
+
+1094 0 obj
+<</Length 1095 0 R
+/Filter /FlateDecode>>
+stream
+x��YێG}�+�щ�q�/�*6R�,?G�ݍ�X,X�g�R�L�t5��L��xe�u;����YVQ�G�&�6�t�*o�}s�'۟'��J�_�ҕ��aMkbT%w���Q�'2A+�4%���J�%m�T�i%�t:��@f+�]D�t.��IBޗ\�`��L�c$z�8cQ���\�l7���,���H\���I��m��?{c��\�`�{~$H���棄�V�ke���we�A�;I�X+C�E���V��ֻG)f�� �Z�g�Eeu��Hp�͖_lF	�{Gyx9ArZ	H�06V	��L�?:�ԗ��]��_����b�E#
=a����Aq�
\N�HT����%x�
�!�B��UR߄cR�GE%��77�*�-�*�)�9WB���P�r���AA�M��r�Eof�U�9}FOf����RS)��`S%$/�
�î�7��2���`0�����d��mw=(7$y27���F��U��2�T-�R[�G�0p=Z��L�ȏ����2%���}A�_�R#�^�ˍho�����7f��R� �q���Z�w�<��2f`ޤH����+u�:5c�;�jm|���/��C_3�S�;��t�*˥�CG,��A�\��0��.igAV�~P�������n������e���}A{B:�(Kjإ��>�&�>]\%35�O-���G�������IA)���Y
�"��<�
mwp��ľ�ᖰI�Bk; �(�GHK��aD����ٗ��;�ywj�ψ��G��q�K�	�
+����] ���(�W�	=�N�� �`3���0k"%(G: G�g�)�8��!�q�3WB�)z�ǹ2�#%�V++'}faQfI4�`
+J���ީ�`Q�l�3�IT�p\a��q�"����H����
+��V�^��
g3�������:_jZ���4�nײ0����څ��i�#�Q����,5- KUʫ&V[�C_<�Ŋ�UCJV��o��Ys�j����rV��ߘ#��tM�� �qM���
_?`���GMU�D��h�ո�&x�ň����{�d��h����&��'��h��qh���!
������ʇ��\wh?�o�if��B9f�@�㶈<,���"�q����w��F�Dȴ�&����v���k���3�����+|1�d8�'���_�a��P9���i�rwo��R	�O����e&�-Ԕ�� ��45-�4Uyko*��ݛpڽȸM
+���i�l�K�h#_n'��5����]6������a��z>�wd������>���K�J.�59n��|[�.�뇟��������D8�D��6�}�?��i�L������rZ�_��ĕ�9b�ԙ���4$���<Շ<ԛd^���_�	8��p�L�3d�M���������#��d{<��q}�ׇ�5!��	�z:n.�3��
+���l�į���e��O���0m�޿^��_
+endstream
+endobj
+
+1095 0 obj
+1470
+endobj
+
+172 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1094 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1096 0 obj
+<</Length 1097 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n�F}�Wtޜ�����0�-)H������hYYH������&�7���y�1�Kݧ��ԭ)VQ�#����o�{J�;��~9֓�L��
+m+*�!šv�ТrZ��J�]��9�	Zi�)aLTVJ/��aL�5�d5�N�d;�l�<D�I�z�It�X�L�Z��d�U�8C"z�3�%�I�5�v�hQ�e>�Г$谚<y��ʶ|��{����U�cA����?�%��(�X')<�ɼ��2"ʼ��@O��c���X��&��O���6��F��X#��,��huDO�^��=L���E���)ܭ`6W���䧅#�U��qr�fr*
[|"_&�N�8�C	!8	b�4��*m[8�3���nnN���LN��z����c}A�mU��Úri��4���dp΢=�[	vؼ�n�6^�����oG)�L�r;�5�BQɤ�sh#䝜�7&g�^q���R@c1�e�h�Ue���1L�JoXw��vɬ9g���#������+AWFΥ�.ۦ��J+>lo_c��
+G6�!JV�gF�$��T�A��\NA&���>A��t��RI�B�e-szC�j�RikO�t���	"�iex�BIY1�UDJ��d�ِoO[��|;B�S�u@$���D�UNy�lƨ/=ˌ/�L�������b�+�UO�6&�G�ʾ�Fy6΁�;�>��*�-��!��rJ�E.,��qY�Sc{:~�B���!R��B3�����@y%��r{)��9�}�������az����ߦ���Xq��L�!�w�H���(�,�=���h����Kw�"��k��H��b�.@h~��$I�S��IzS�<���)7�ل��[�P����C=��FlV�~v7x4W
+�v~t�oE��I_������Cڬ���|g齐�%8�Cq�<K����V��<V��9��nL_�ȌZ��j�vߡ�VRW:���=�� �Y��S:��(&����p�o3�D�i͖H��O)�ož֕{sh�~��%�H��hR�b�[�f�
���x�}���G�P�S��|8��P�8�T.�>MĊ������{�_��&��o�%IӖ��-���<�[��E~��)P�E[ٽ_�}!���A�q�/b�*�R.�l&*������\C�T�QA��/&�Z��lX~sޏ��8XJ�򠍅�q�`ԁ�w~J�vZhU�DL���飈�U
ds����(�)�0,ÔP`�K��h+�|��+�
�^�W�{��%ODj�Q�C�Ľ%]&�͐a�gy�g��o.
+ˋ�����`����K�t���g�c޷+�Sؕ�ϖ��`4�r>���;��
+�����]JaS�Nβ����/����d��{��w�/	'�:�~�ޯ?�v)�
a\$߼]
+�?8������մE���V�U��S}�����EBP�������)��,�����*f���:�L����~Vc�2^b�U�|����P�1+Y*�l�ť_g2���[աg����B&�(Sw� 	]�vU�!HV��k��&ɢ KV�LbVz�i�)����Ο6�Iy�e�85��t�h��r�ܯ�Ǭ�"�8g6��K�Q_���nMb�B
+��Yk0l�Lƭ�z�$f�,c6��=2uH�&]�ɢ�3Zѓd4��Y�1�u�Avs�/�{M�OuWZ��D������m���o��K}"������T E�jy"���j����d��Ы/�Þ<nwuU0�c)�7���򭶊0�7���(7���Sx���{��+�~�3`������n����e�;�@������y8�њ~z�J�>�^���yy���×zu>U�G_�<�%��_=-�����d_���5Y����>�i�zs�!���BϺo7���ۉs��~>6�����3����Ъ0������&y���t�9��AR|L��
��ps����������|~�Z���j����[�����$\7=hbۯ�|��.�$=n7/�&2(a�Ǎ�=�C�6[���o�=B�\��If��~�ҹ�&�2�a����W���"��u�eL��<�B�cs��:�������*Õ(n� �r�ߖ��0�º�����
+endstream
+endobj
+
+1097 0 obj
+2086
+endobj
+
+173 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1096 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R
+/F10 583 0 R
+/F12 912 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1098 0 R 1099 0 R 1100 0 R]>>
+endobj
+
+1098 0 obj
+<</Type /Annot
+/Rect [362.7990 238.9195 474.9210 251.1520]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://cse.google.com/cse/)>>>>
+endobj
+
+1099 0 obj
+<</Type /Annot
+/Rect [112.5000 223.9195 146.2395 236.1520]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://algolia.com/)>>>>
+endobj
+
+1100 0 obj
+<</Type /Annot
+/Rect [164.5200 223.9195 210.7020 236.1520]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://swiftype.com/)>>>>
+endobj
+
+1101 0 obj
+<</Length 1102 0 R
+/Filter /FlateDecode>>
+stream
+x��X�r�6}�W�Qm��q!2��8�Ӧ�i=w2}�)ȢC�*I��g�!���@a.��A��b/g��(�?r�ұ�&�O��P×Ƭ�?��H3�	�t�#�J��~E)�D/�T��I)�D�Hp&��+:��bgP/��$�����H�T�fA�#���g,��(��*�(��"�IQ!F��W\���FTH�0j����kĔp�>wT�ɤ}
+s�aB���넕�)�	�(�{�u�\��S��g��س'�8el�lL\Ė$�26 cf�T����l�*�>!c#�36ap'U��A������	0��ф�L��=$��W�+�6@*��S|Ȕ�/�5�iLn7��ׂ���nW���4{rh�mQ��'r����uZE��BfC;�RD*��S�e��w��>k��{
+hʣT��s<8�w}$yV��t�x�� EE�g]M�Y^�E�u�t;C�E���L��4��R���rӶ��v���v$#[�H��?���moy�}0���.뎘�-Lc��s�`��h(A�h�{C�;d,��PR�ñk��Ʉ��1!Hv�4��*fF.|#-l�/�2!#�\�=��í��;S�����1�n>սc�3��l�=���+�`�d�}xnAy֑ñݑSWf8�<X���ۭiL�!��G��L�8U�/���Vd�_�L��h�j��Hӛ�&i�(��^����������gši�!g�XL��m�P\���6gH��vN��%�����|��lNe�GXTEW����Mq�^=p���/�û�f,�B����rJ�R��S�O��<��ځ.r_���Ga�ЧfX`�f��%�Ս?�'F�Jْ�l�_�����e_J
M9�:x��e���M�����N-F�`T�ѧd��@�w�/�_p���l��?���i��f�����5��1��2R�}
e��R(�h͗��E��F��M��i����G���0�D����LH۶0%�Z-4���7��6$�k�g�=�fS^��*)0Ӵ�1�R��ƹ�d��)�7Ū�a2����S��"�Iq;"�̀`�c<I%䌕���1�-6����ˆ�^`t+��t2���`�+=��	�!�ɖϪ&�zؓ��q~����0奞�L1,:N�+�aY��1&�(E�3"�Ȟ�ё��q0kG�fF$�|��L�g$��z!�<�p-h|���3��+�%��bb��^4�ռ|��>�Jݐ˗������N/�;��ܙOXW0Z������@����~��gc?���j�Zg�Q0>G1\W�,�`��[6A+&,E{�I:ׯ����	�*I�%�L���%tͯ��_q&����D�RdS�i{�/b�<�r��\p�qp��\��������m}����LY�����AK�wf��_F�}ٹ�)��������uU4�]7O��[kg�9Oѐ6(:��I�0��S4>9�n���ʸ4o�́�h]�[�׶0�6v�<��=�V���S�����alϻ�zW�uu>�kϱ����Y^�-9DS�v�-��ͳ��,�A�ѥ��ե=vԮS�\�u�h��Ye�hiy�ؕ&�Ê�m��)���<X���� ��I�9�@$I�н����sT�n�EX�ʫ!�_�\��T�Λ�פ��P�7�<�rl��+���j��gH.U���M�&������>En��sK�%�' ���1������c|c��@�MvoU�(�*3�?
+endstream
+endobj
+
+1102 0 obj
+1695
+endobj
+
+174 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1101 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1103 0 obj
+<</Length 1104 0 R
+/Filter /FlateDecode>>
+stream
+x��Mo�0���s,��W�T�ZZ!T���Ӭw74m�U�����a��;B��ܽ$z�yw��R��Qo����@�/��6�QLR��i9��RP���Dp�r���D�(���H�H�ɂ��4�2�HӅ�G���Dk��&��4�Y]��Ԝ�#y4��X�96W��=���npO�8yu�?ܳ�L.�����#��nƗ��±�U*��R��s�wlb
+����.��б����:�*rl�ک{$��Ljk5�o<ẍ�L�fcr�j� ����.��k�a�#+c�#+06��j�\r���W��X��������3�J�V?���A��4P�3QjT���N�s���]Qo!s���.�%��Q���1��%��(�B�t��E]�p��Tٽ�n��wVMS�e-t��&p�@�xz\�f3&� ��y�3T�n�I�)#���KeU�������
+��B�#�e������x@ȅز�/��a���	���}SCV��3��{xn��k�������G�a�01*'_��O�������ӣM�eD��U�p��&R�eL��۝�m�������S���ԙ�+�:دr;��P����/&v޷��s?J�����Ԧq�6��GɔP��s��L.�C(�9��-jwɻ�:�FP�C�D��T����%�Y���Ԧ�z�>����δ8���Ty�.M�&ţO���,����MӢ���2u���4�����p����֡�վX��/4��*�ɶ������7�
+endstream
+endobj
+
+1104 0 obj
+771
+endobj
+
+175 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1103 0 R
+/Resources <</Font <</F2 509 0 R
+/F3 510 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R>>
+/XObject <</I9 1105 0 R>>
+/ProcSet [/PDF /Text /ImageC]>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1106 0 obj
+<</Length 1107 0 R
+/Filter /FlateDecode>>
+stream
+x��Xێ�6}�W�q[,X^���⽴)�`�(����K#[IN���C��CI�ȫMh����1yf�pf86���f���I�� ��񡱋��Fs��Uy��Er�I�Yp.���sFM$5ʽϨ���ܛˁq�	n����a��D���0��w�b�f�i¹��C̰�s�׌H��\�ab�J'��{�@���!�*�$�Z�}������ǪE��c�d#{���������]����v
+u�X���>����)�b#2Ql�\��	�4�I�X�X�$U&w�xv����b#2QlĜb>"�Ũ={�L��iY���E�$��������S!���)TpJ�5!�b���XH���C����!�*Ű߱L��aF<���$1���	�=�3e�]��Rw���*˥�e��ۆ�q�)�(�c)���P��="�bK�F�Z��>UlD&��XR��Q{�����~���{^�_t&`zݣk�sF�W��nr�~�^\�?���aC��jՒ�&�m>��r����~�WL�)-���5�=� \D»�~_4�W	�����>����>��8�Gt���c3��<z��9��˲F���n�}j!x8�HL}�p�m��A���R�<�ݡ��+G�)��S�����,��$�=��{\���%EU�zM���ugwe��D����3���ly슇����t�J��uі��k��8$��4�mڟ/�ؓ�e��&q֫�Ĭ� ��1�[;�ȶ�h��ը��.yw�l�.J�Q��a	�����5O���1��eol]WU�i����Dܿ?�(z�C��8��b1�EU�E��}V��d�@���Ȝ�� TN���P���V)�WX׌�|��LI�A*�8�p3����
+�k�O�F1|�@W­���~��~���͗h�ۃ|o�U��K��k�r�i��ϛB����w���FD?]��ȷ�@��\;'ݮY5�S=f�s
4S}��N����f_���7i8չ`sEu�r{״v�n���K�����Б]ۿw	Z�4���Z[�.��m���\�J�+�v�C���"�1��WJ����X�ܝq�ZD���UZ��O̰c�E��m�}3�ȱ
+�`�^��_��ݍ��1x�.Y��0,��v:h��"��a���
H�	0�
+4��x��6ê��<�"!&{�����$��Zү
+>���C.Q����=W�0��v?(pP�
L�z��'�k��ۡ����S�����=f��h@ɯ���[l�x���j�W�.T�Z�W��7�Rf���h��6�)���wY�K)�F�F�����F��Tߪ@�3Kx������
������v��+-T�o8�G;޴I7��݇�`�=x���ӥ�u˨�r�VM�a�}�*
�48Mī���TF����]�"׶���2"��A����{�7�g���~8ἇ���tҐU]�={�$�%�"n�[ˎ����_��U���yAe&���(ɍ���𡇘
+endstream
+endobj
+
+1107 0 obj
+1522
+endobj
+
+176 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1106 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1108 0 obj
+<</Length 1109 0 R
+/Filter /FlateDecode>>
+stream
+x��X�r���S�('Z����J�jw%m��]�\�)4�]9��2y��>��$�@�r����������!�M�ڿ���36��Ǡ6�٤I�JN�U)>�9vJY"4��,EI�D�@hʒRRj�7��7ZAVj�<-������	/iJo�a�p�������6�}��Hߑ�͸??����:}C�?on��2�e�y.Y���d������P
���-xR����?�3����I�ҟr�Ϫ��]��}S�Is"��g��I�I��\=J�'�@��iԞ��𵩕��lՖ<\&�k[��t
+t��=�:2�����0��}7�n$M��<�cO����uն��������P}QQ|ʓL0slW��%[�X���!6�%k-	�*��{��?Nͨ��7�ϧ���Ғu84���͠���ƽZ,��k��Q�ə癁7G��pnڭ��&��~�Z� �2^����+��E鲘
+/��H�Gk�����{I3d π�����u���գ�o
+�O��N��Έ������f�4�3N���m�Ե}�5���Xfܘ>�����P����jW�<�k�����D�jP�00��od _a�"A�Z�N��OU�����E.BɄ|������{^i�kR�`���G=�^d�n?��T������ޫ�����Qu� u*2���tUU��A"��ANJ.�>:g�yi��K��2����ʄ�� ,͑�B��Z.����&4����0�Uԣ��M\3�B�3�L(h�`�4���s����r-68
+�f[
X�G������PJ���
��z��[*�x:]�y|{W�Ye��ߐ�9�������X�/QI��Ape�g2�.X�N,Q7�W\*Z�$�˵��J���K�)N�����S��tZ�����?wc�!RZbѲY�!��C����v��e�X�����_=}���a���z��;��xTÛ���:5��zR-��S�B��m�Q=����_�Ȓ2�/�cV"ZeiF�+�c��cuPƱ�r�j4�X�CA��M�Rk��m_�H2I�I��!����Zw�g����V��9�M�%q\�����My�g�՜�*��`^�X���kƦj��@c~�"�d�_n��|�
�'��$�
�55���q��ZKg���糼�b4��ת;)�<�b������ijoz�Y~P��4��k@����j�I;���f���1 �c��vT�\��H0��+�W��e�ӵ�����X�|ε���J�o;����X��jS`�S�kC�˜a�����L�6�`vC5 zھ^�ǜ�4{o���FO�Q
�-�;�m�%��Ǯh|�
x�㮰=�K�A]Dy)�u��&�'6��(�r/��b��ij/�����*ש,����zM�0�%[˅&���8�S��s��}�r�'vDB��TO�/���I>�.>�<HׇJg�s9�m�V�����3`Jmɲ]m���˺�c䑒�"�����x�}�;�
�?�gpP��X��az
F�ԙH��=��	˅�V\�},d������b�Џm_W�&�-x~�0�>���E
6�9>��!h�I���ho�dzYh�~�*
+22���,���D�MM7�k���~�Bx4.�����X�j7X�����.7��k��Q��b�����#G[�v�^l����=d���j��v����]
;�`��[A�{���򀚡9ށ�
+���o���@e���8�������Ƌ�o]�����J��ŵn�ZϢ�
|vӥy�
+���]�y4as�Q�䙉��\��O<r�
+m_h�
+ش�h\�5�{�`9VR�a�O6�c��6��(�tg[
��쑣-^;t���6�<]����d�(���CK�l��t,�J�PEz�W����Ye^u�oV�+ù�(h|)�Y>����پ���<6-������@�2�}��|<۠_LIm������^��3�D?��[r�z#��'�LfI!y����i+��S�~�aoɍ�����⚠�H����x�}t��g����A�&f��-h{����	����w�9�w!`��i����l2
+endstream
+endobj
+
+1109 0 obj
+2095
+endobj
+
+177 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1108 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1110 0 R 1111 0 R 1112 0 R 1113 0 R]>>
+endobj
+
+1110 0 obj
+<</Type /Annot
+/Rect [452.3905 503.0626 481.5490 515.2951]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://git-scm.com/download/win)>>>>
+endobj
+
+1111 0 obj
+<</Type /Annot
+/Rect [152.5000 488.0626 221.6350 500.2951]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://git-scm.com/download/win)>>>>
+endobj
+
+1112 0 obj
+<</Type /Annot
+/Rect [245.1760 488.0626 323.4565 500.2951]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (https://git-scm.com/download/mac)>>>>
+endobj
+
+1113 0 obj
+<</Type /Annot
+/Rect [181.6690 435.5626 238.9705 447.7951]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://github.com/)>>>>
+endobj
+
+1114 0 obj
+<</Length 1115 0 R
+/Filter /FlateDecode>>
+stream
+x��Y�n�}�W�Q��f�ba@�����(o��LK�uϴ0��>3�SݼT�۱�n�FG�C�a�hi��G<]4j�TůΚ����^<��Bk#��#@;�[�4DV*��A�I�8�S�Z[Y;G�����)&"��TgX���WsMs��S�f��@�1+]]5���4���(kMXwQ2J�,�3�'�gM�zڎ�}�z4��s�2fe������Ǫ�)6"g��edp�a�e��3�)�0�X�0R)�'�#�9WlD�1R,e���ubgȼ�t���QS�+j�u˶΁>HK��8�H�jL��6:�'c��q�a2g�f�ryev��•0�L	t�iB)̜fYCB s^k� s�(aL��ΐ&q����zߩ�Kw�X�jYYG�DP���)��X˜�3�͙��KW,c��Άbk���v�XDf�E�K%�d��2���mm��\�mm�n��s[�JKCT;��`�0m妨��0�3�
+3c��2;Ct�J�
SǼl�֥0s�e
	a2g�fƘd��!!q}��?��F�r�������me�	�b6ه)f�}��2�͙��KW,c�����֔%�g�Ed�XĘ�3V�N������Zǥ}嶦�t;�9��ե0i�qQ>��tr�c���\^��!�p%�KnI3f�j�*���,kH�9c�03�$��q������7��Kw�X�`Ŧ����!��K�)���2�͙��KW,c��������L��1[g�d��2���{��9+�`���2�~s��;'����Nj˗C��m:��о�7�����{�A��ߣϧ���/�r�4�,�/�^ϭ����?n����ۮ��F�6��}�������8!N���I�ة�iɍh�,��+w��fw�ݵ��o卺s�`��N��޿[����&꟝�w^;[H�r��9�nA|c�0��D�ɨ��Yo�W��vL�t��Ћ��tO���� V�u�b�ڵoGU(�auly�}��.9Zq��^�ͦ�h$�ex��tz�2~��U׉��~ӵ�O��̃[�T����b{+�Z\!��j�/��A�~zxE�A|�b�m���nZ�æݯ�������fAP�a^��m7$��i�m&A�ۡ]���B�u�ہ<͇jJ�b1����,��]�ph?��U�����?����-mƱ9��������{���}���x3�[�[���c=�E��B��6fܽ�%^������������4Ru��f�ٍ^v�"��:�f�nZ�0�W����n�"����9ke�o�<4��k���dLX��۵V4~�s�������niy����hY��f�;
����s��`[���P,���W�5,M6��c"���+5�w�J[W��;o�fqg��s�-�n]%q���!�u8��֪I.w��C.�����Y$�z�`���p<�^`�xjw�'DR�`�����r��PD�a�ݯ��������Y����+�z9���Al����^����X��br��Ҧ %�Pyث!���W�h���p�1�9��ݿ�m,��!^�=��k�b"�� 
+
K��d}�Q��!�p%-}��a��z=g�(���tU֐ty�	C��3JX�:�3�J\���rR�����`ҳ�Uvb�q�k���T�t(�[:�JƜm^�R�?�Z����E�K��mG�,q}|��>V�b�S
+'��r*V�v�y���
+ҝ�jЃϊٻy&�
+��}a���p���n��9F%v��̕0����EX����0�kt�n*�&�D�a�Xf,g���$�o/B�O�y�G��2D�G�s(īY�Wʰh��0�a���8���cա!z\���ៃh7[�s��;��b��B��;k��/��%Z�n�����=�
�����o�)j��3~��짻�:����~�&mq3�!^A�z���m��5�7 Hy_�n-�h�$I6���;~QD6������&��7^�5��d��P�L��}�D�@O1�QSD�T8Lm]g�<�o\�z�)&g MN<	R�t5�D��)�zM�X��'O����� �eL#A9�D\�P�竦L��6�+Ci��}�$����Q^�����]|CU��^�4��C�=>�M���e�~�~��`e\uFfD��D�:��=����$޷�v��׊���Pсq����/c�����ݵ��'���=S����Q�\Ŀ����ݴ��Q�|�SB��)��i�
+endstream
+endobj
+
+1115 0 obj
+2210
+endobj
+
+178 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1114 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1116 0 R]>>
+endobj
+
+1116 0 obj
+<</Type /Annot
+/Rect [182.8345 480.5266 234.8650 492.7591]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://brew.sh/)>>>>
+endobj
+
+1117 0 obj
+<</Length 1118 0 R
+/Filter /FlateDecode>>
+stream
+x��V�n�F}�W�G�0&�'
+X^-
+�<R-��bp���a�G�#r
+l	�P�w������P��!�t���*_��U��S��f��e�)(N���v�}|��(Q.d��]i��O���me�/Iw\���0+�x��|mx��j���C=}��X��"-u���C�-'��Ր�r
+m�Y�$�p+��3��Dq�����ЖpcmĚL<K�ؔ%ʳ'�	\c1�O\�	JCdgz��9x��b�k�X��b՞=A��:�A��Jl$���"�Z���:��K�Z��Y*i�L<H.q����o���q�A)Iw~��3�xii��b.j�,�o�z:�餡��#$1�K��U<3���#4��ZM�%��cV�̤�Ĉ4�Ao�4N�V�Q�kŴ5���`�7����\�BA��\���,T��x�7�ϊc��x$�wr���/z/7x)��4�72�Q���*�FQR��
+E\�]ү4���Ψ�O�e٥!_��E���~�����s��ωeT�ι7���ՠq%�V;�Ǩh>�H�̙�%4g�Μ�(��fd0��	od�ݰ��BA���ǐ+Tv��{D�{�,9K�ed�^	Ť�h_�V�>�b^$JDo��H�kq@�������(�o��.��y��\7�E9c=U�(��
+h�n�*��^�k(����Db�(���Gg�}��'�����Gw��dW�յSgS�uw@
�#<��K"��񤼢,���\n���<�-��8��f�*]�\30��h�f��#�\�]-|������&��8���e�Aь=���D���o�PAݍ�0�S�w#��Ҏ�����b��k�Q�0��S��
+�a����5	S
$�e���GdΈ�0�q�C�U��wUY��j��_��$�>7|!�W�,�W(��
+մ�˹���p%ÿо"�C��.�������Jxe�	�#�3bW0�|��m`-
+endstream
+endobj
+
+1118 0 obj
+980
+endobj
+
+179 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1117 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1119 0 obj
+<</Length 1120 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n�6��+�t
+��d��GI��.ECϨ�FSIǟ�E����c(�n����7���^�{f.�mS�O2<9�P��`��o�j8�UF��`DI4lB(�zRbJ�D+���Xj�����e���q;e��!5�K�07�D���Q�Ͽ�*�~��7��l���Ѣ����#t�G��ғ���t��K��.�g����oǮ�����C��}|��r׌h��7#��Xu�6������&rab���w�!)8�0��!g��j�������M=pM�UC�k�[t�����M.�a>��O����x�!����̇\
}�^����ر�,rgG��C�vm��k��U�͌�ܚ��	�L����ǶuT���u���]�fo��ad�WF}��a͸Nҗw��h�����^��8ݦ�HE�[�A��U�V�bK�ΩL7˰��Dp뒈;�]� ~�&���&�H|�7�G��„B�Os��W8.�	H]p#WX[��D��Ƭ�3D��F5�$r%�]��(�Se��CB�"Ś��H%,e��3�F��o:ZJ�����vR�V,a�R����Td�X@��e	9�0��Z�gH�X��%̍*Qbwy�V̐�3$(2JX�:�gȺތNۯ_=�$Ěj����۳^�t���G=ʕv�^�)Oehd�S~n�z��>)��lP��G��������������4O����U�D(x�R�9
+��jC�[L��v���B5Lvs��Q��B������l���x�ЦoaH�̈́��N�ȍ\[Ov:���4�fljw�m�	���Y�<�NK.Ȝ7�Ԇ"�"}me���u�/�s���(���.�pE%���`pWB�c��U�=CX����ff��&�SC��CB�"Ś��H%,e��3�/���>W4�j��b�ظ&��5Wl�rn��b"6�L1�ˉ�a.o"�U�=C���J��Qߢ��۳犅����RF	KY'�Y�Y��2�����{m��A,�M={e+𹯡Wd��)�g˥oϜ�G��G��C�g���PG/�
�<��8�e��4(%��7 ;��Ȟ!��0��k���@/Vs�J�&�lPG(s6J�F��"�=��A��P�dxr�Fa��v�J��D�Jd�T�2;�������)�\�AKXXAȐ,�`r�����|#�	X���~��N��Jqe�=&0��bHd���a�y������2��SL�&���
+���c��7�jj����?��_�/�U*�Ȧ`�f�?P"�o�S~�bP�Z�nK�s�y�6��ڽ*p���3[����9�%Qg\pd<��^߶���f�ih�����YM��nA����	�>��c������ZN��
?����V\k*
+endstream
+endobj
+
+1120 0 obj
+1385
+endobj
+
+180 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1119 0 R
+/Resources <</Font <</F2 509 0 R
+/F3 510 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1121 0 R]>>
+endobj
+
+1121 0 obj
+<</Type /Annot
+/Rect [249.0892 291.1646 362.9108 316.6646]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/tag_getting_started.html)>>>>
+endobj
+
+1122 0 obj
+<</Length 1123 0 R
+/Filter /FlateDecode>>
+stream
+x���n�F��|�=:��r�/� @�4A�P��-�J2$�����Og����t�ȹ4�"�'���Gr�ۄ�
�a��m�7?���e�W7�U��������p.j����/W��7�qN���.���~�M�v�:6���nX7��[��i���â�OݰeS�zƮ��~�
+W��|%%ka��o�W�����l���;�O�vb�����?;/ͺ�b=�ճa����d��	���[��D���kk������hM\�JY��=������'E��G]+��6�ɦ6��E���R������xL$�J�f�F`��^�jۙz&���q�B#e�T7.��5 YTX+��Ž�aרN�NZk�6�3�>����3��;��$���* �~"�ER8�����K �]�B=�Xd�c�b9��&��"��Tv��FuB�ϛhd˚V>Vi���J(�ߵ�Yn�������d��"��*���$���n�7.������¤�N�E�����2T7�
+Ga
H֊l��#d�5�b3�L{�i�:y߱�\x���SVi�c�K�:�Xp�kA���I��±�9�	o��.�zvL���c:Յ!îQ���1;�S��#�\��j�kd-�,�w�-�m���ؗ��(�dy�X�����ܘx�7�������ش~�5�`ym3���af$��JR'De��`�
+��L$&�b")��QX��"#	v�Ꙥ��O��^�Y�1d:��<��K�K�")���sdy*'uB�c��%=��<�}�z�X��;���92��3����~�Z}��ie�\ú��=�#d
+2M��8����d��?rkN+���6q�vZvZyS���/��(�|¶�f���\-p���y��n�T�U�k��.T7P
+�4��$*�b��;�)Ǟv���~v�hH;{z������,�6���<��=;����%lٶ�~1��qϺ�p;-֏�T�+~1*��v�sdNY���9	���H�A�i�	�����f��j��M�3א���H�A��N����|2���a��9���"�.[]:��BKSi����#�R8X�Xd<,�Y�n�ܱV�w���Cd��NH����B�y�8��p�d���x�xD
+i�J�#J)�
$�R�:!M֊LpS��x#�⢈7
+l�x��kd$� îQ����O��^@�1d�VE����t�X$�c��x�,G��Nq,��1d6�4
+(��ұH
+�"#�v��̟�y8�Vݓ����u�@8�#�:J'�#�!�
+�W�\8��p���]d^R<����n����#���B;5�8~�5E��wQE�AB62q�aPA�LR
$���KI�
MV:�kH�ld$� �]'uB\�R>��X�0�����M���Kǚ��ǚ��brC���	)�t,2V�.LTώ�Tq̤�rG�宓:!�cvN.����raq��\x��n�XmrٶaI2��m8�H�nw��~�꿿�=���q�����23
K5޿~'&�
+�1�/������\�{XQ/�h�%��,p.)^���G6��M�n`a\��M���i�m�?ls���w��bb@��qXR����caa���?������@}
+endstream
+endobj
+
+1123 0 obj
+1634
+endobj
+
+181 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1122 0 R
+/Resources <</Font <</F3 510 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1124 0 R 1125 0 R 1126 0 R]>>
+endobj
+
+1124 0 obj
+<</Type /Annot
+/Rect [249.0892 694.5000 362.9108 720.0000]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/tag_navigation.html)>>>>
+endobj
+
+1125 0 obj
+<</Type /Annot
+/Rect [249.0892 460.2000 362.9108 485.7000]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/tag_single_sourcing.html)>>>>
+endobj
+
+1126 0 obj
+<</Type /Annot
+/Rect [249.0892 225.9000 362.9108 251.4000]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/tag_formatting.html)>>>>
+endobj
+
+1127 0 obj
+<</Length 1128 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n�6}�W�I��޹
+��8��E���b3�[�Ne��|P?���%J&'���J�9�gg8�e��,G�������G��_*?��z��
+*�(0DX�.�˩u�
W���	&�Jcj�H�@uk"2I�X���(zL:7`�#���1�x�A�b�J@z�>�^C��G��+G}F=���cO�q=���y��ޗ�"�:�a��<�#����ı�d�E,di�	=�4�I�X�X��k���!o���5����Ōz�ϺgO����3,9K�3*P1��X%�l1�v�k���G��H������R1P���*��@� ��T*\0���~]��=3��b�i�l�]Юm��&J�+�fC��*��M�rL3@!(�)�>H��N���1���S>c��u���1fC��s�+-��U��^��Ӊ)����)�Ure) �ch����-�&��$W)����)�:��D��?q1��x�����ųFo
La"��H��D�zHT#�:��Z���}��8�,H�S0�ڐz(��*�D���R��.D��X��c�{�F�	��$̲`�M+�p���`�æ
+���{l����[a�i��~�d@S��K,��;va���p����p���x�����b�
+�G���kE���2�#bX�W��r��o�y��Tu=�~��Xꌑ�5,	��{��{_���~����ݕ���$��!��n|]��K������T,�6��8%�4������҄�^��U�ayu��������������֋�W�X/��W��L�ح���o���Tq��|:�	����Y�g�`���e�F������%Ů~�T	!�0�T����tr{��i��h?��F�d3�=�u]ԫ͚�B�~S����e��
+Ā7�!�e���n��?�QYFq�\�S��mF�
�Gu��žZ�Y�m蚴i��Ƙ��(J�c���u�E�n�u.
+��Q��(J�1Q�Ԣ�"?��[O��l�(K�R8|af*��F��[�ԯ���Ə+w��Z�q��wEE~)�\-�N���n�cg�ͩ��E~�==m�:-=T�u�q�n.O-�,2�›�����:�K<j)U�(l&���G��o�¹v&kbۯUa$���|.�b鿹UU�8<.����&帝L1p[��_���ޑ����;��^��e�N7=�Y�>���_dC�o�����b7�ɯ[���a����j��2�mk������`
+endstream
+endobj
+
+1128 0 obj
+1269
+endobj
+
+182 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1127 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1129 0 R 1130 0 R 1131 0 R 1132 0 R 1133 0 R 1134 0 R 1135 0 R 1136 0 R 1137 0 R 1138 0 R 1139 0 R]>>
+endobj
+
+1129 0 obj
+<</Type /Annot
+/Rect [152.5000 471.7409 445.0195 483.9734]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [32 0 R /XYZ 0 732 0]>>
+endobj
+
+1130 0 obj
+<</Type /Annot
+/Rect [152.5000 449.2409 318.4210 461.4734]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [26 0 R /XYZ 0 732 0]>>
+endobj
+
+1131 0 obj
+<</Type /Annot
+/Rect [152.5000 426.7409 458.0395 438.9734]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [7 0 R /XYZ 0 732 0]>>
+endobj
+
+1132 0 obj
+<</Type /Annot
+/Rect [152.5000 404.2409 293.8930 416.4734]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [39 0 R /XYZ 0 732 0]>>
+endobj
+
+1133 0 obj
+<</Type /Annot
+/Rect [152.5000 381.7409 228.3415 393.9734]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [48 0 R /XYZ 0 732 0]>>
+endobj
+
+1134 0 obj
+<</Type /Annot
+/Rect [152.5000 359.2409 225.6220 371.4734]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [55 0 R /XYZ 0 732 0]>>
+endobj
+
+1135 0 obj
+<</Type /Annot
+/Rect [152.5000 336.7409 282.8050 348.9734]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [30 0 R /XYZ 0 732 0]>>
+endobj
+
+1136 0 obj
+<</Type /Annot
+/Rect [152.5000 314.2409 282.8050 326.4734]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [28 0 R /XYZ 0 732 0]>>
+endobj
+
+1137 0 obj
+<</Type /Annot
+/Rect [152.5000 291.7409 288.2335 303.9734]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [75 0 R /XYZ 0 732 0]>>
+endobj
+
+1138 0 obj
+<</Type /Annot
+/Rect [152.5000 269.2409 236.9095 281.4734]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [27 0 R /XYZ 0 732 0]>>
+endobj
+
+1139 0 obj
+<</Type /Annot
+/Rect [152.5000 246.7409 289.6090 258.9734]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [21 0 R /XYZ 0 732 0]>>
+endobj
+
+1140 0 obj
+<</Length 1141 0 R
+/Filter /FlateDecode>>
+stream
+x��U˒�4��+z�����옺̽E���,5�l����G(�,�Zr�q���`C6�u�G�Z�D��nWE�[~y�I|Y(./���ow��*�U�>Z䠻�1��~���9$���wI�2KC�������G�Q������UAҊFplv�=g�������2��	$���������9m�^���yF�2��<1��=�W7��q���)A��қ�_���]I�Xǡf#X�Ɓ5g6Z��Zhx+Fa��cᖢ+IQx���J��f�Br�^�ę@�`{�xR�	�B;��aѰ�ob$}L������NZq�N�����iŸL���,��5V��&MI�šT�Z2c�,�cZ����]+h)��^i�B���T0�[q鄬LH���R�h^�T"p�5g�y�J��\#-�g���s�)��|0������6��~)
W��̒�L�$��iN�k���+��w���?Z�f��.��:��K�dti�E�f5�t�X\#�P���O�!���v����'���9@��]��QM�2A����V+����7-ʻ|;ͬ��4�����!�3xn��{hB�+�<�8/��N,����s��$�I����[�o%�|^���.zJ�K��z;m�$�}}/�����;��%�z�笁^t=��,����≶J=tJ5�Y���J#?s=�~j��~�ڨqSl���z&��U�$�W����ŀ�`9n).�k|���/�i��|qs�^��.ׁh[Q�>�̀U�MFX���ئ��9_����O���ua^o�"�M�j&�CI���ݤ�]�m]��_>=c ����{�7����|x����qD�U�+!t�q�#�p栐��	ߨ�
h{0��a�8iո���Sv�Yߌi���Ȋ��/~Ӣ���Z��
+endstream
+endobj
+
+1141 0 obj
+915
+endobj
+
+183 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1140 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1142 0 obj
+<</Length 1143 0 R
+/Filter /FlateDecode>>
+stream
+x��W�n�6��+��)V|�b�c;i�E�N��5�������/�G���Ѵq����$����%)��6����MO����-��w	��H��d�0|��q�)Q�˕��q�>�xJ2��@)'���P*��	)��'X�XN�����	��x
�K�ĘAc(P�sby
)��5`u2
+XT��=B��ڹ��$����[=����I�<�91��^�%wH�ʢ��9KE����R���H\�	;�X�8���Ή�e9�#�󞸢��N����r:oW+96�K	GU�p��%��:��V���6�k!d�oE%�%��
�~KnV�)d8��rG�^�Tj��B�6��
+�oQ�-�I�i����R!�E�y%��(J���1��n�d���W&s�*J�E�B����@P�Gmn�H��f���f�M���szd��r��ZI%����j��I&��)q%nG7���$[܆��|���N9R�"�
���ʼ�M	�c�9��oG��jW¶�]g�|��}�˺Ӂ��j�j��E�}��<V[�W��;Ӓs,LF��[%\T����`����������\ú�TM�#u]u}w��v�����rB��
+Ӏ�;��4��⯦���‡H�V�|��!3
�6a�M3�x����Έ#�H�%14��I��qCט�LH�p��e)��1F8�"��aM�&��3���3A�#W��Mг`f�I;��5x�Hf���9#��Y{��k6b��I���ੜ�b��s�,�/3���B��η��(j�u8���[��)��qo#�W_j��;�Q�&�O9������+B��0�s�jb�:syl�m�M՟�}�f
sog�so��T������W�6����MoD�&�������~H.v<��|�	�vU�g^,_��֋+k��o�teQm�b�?l������G�p�T5[��E7��{g U�j)�o�R9�c'�6�)�o���(S�F~>��\H�}_����bW>:"���^_�f@��0McN�i�Pئ�M�C���.ɒ^wn��ݶ�Ё�3��
+���K,
+�w�w��ϦmQ
:�74��ݥ/'V�����}�M]�n��bd1��bS��ㅍ����)�̰����(4;��G�����eZ�>�z��qzZؕf
�j���aL�@���p��}��v�rcۗ��e�c�X����mU��l;�,&K��S�W�̾��N
���+?�%�Qo�x�wr���Km�}��~	S"{�[Ż?^��F�l˦Ċ��Wp]���l��8OTE�^��/~,�x"��Si�J�a�E�J���<�v==��!���Z�������:!�h��B�ԯ��U�L
+endstream
+endobj
+
+1143 0 obj
+1341
+endobj
+
+184 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1142 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1144 0 obj
+<</Length 1145 0 R
+/Filter /FlateDecode>>
+stream
+x��X�n�6��+�L��7��`�dO[���M?@�i[�l�zd����ҒhR�;��:��r|��=WG�H�	�C��!�ꮂ���Mi'�'�2,ݟ�t7<�m�'	f�8R���7!f� � J9N����6�R����|"�`9`	�R�0f� ��ez�@y�u�xv���������|�y,�Y�S�Ȟk�Fp�>���wm�\��~Q�<�`c���$�nB�#�c�W	���S�#��	:�aQ�<֕�ٝJ&�uHԱs�(<�U{����v��c�)
A���f��=����d�[���n���_��G�A��R9<xxtm��R�(6��Z��!��f��ʶ��VY��ZT��׶�p��#�taۺ�/�b�*��ɪ�����c^4e��ES![��y����C)Zd�e6o��-��ʖ.Jn�:+���J~�fV��^g�w/K�gp�m��FMe�Ϗ�������Dߋ&_@�ݢ�(�|�{���h��EpP	����``"(�K�*7ȴ���T0q�y�l��	x��쓠��$��>D$�R�U�^��8m0V�pWyJL%Z&b*�H�g���B���eabZ:����X鄵!�^��ԇ����t+����n!	����*���e
+C���E����8ņc��d�D`}<���햰��$��-�x�����
+�`����K8[��wP7�"5 G�佼�@�)#�a�N�8��1�&�k�0�&
+���)�L�}�����F$焍`e��ر�/5qD����ꪸ��Ha�F�t��`�Q�Jq����)Q�;��_o�(��@9
+~cЋ�L�><<�Xȸ�@4U��xЋ�{
+�1GC��wKD8��i�(�
+�Dj.55�H0Π̳��sF�{����8a:�.��׀����#��BP��yF��-$`�A���{U���򬑘�<���6R����C�b�ى�����t������������C'�r�řK^h�~���0Sg�a�#�_c�A/�ى%PB8��i�(�
+;����P08$$�r�J����JC���0T��7�S�f����~����XںO�a�Ѱ��6�h��&'�R�Œ�L��>0
%��'.��}(?���;���mS���;�_���v�w�Ukw[�j^Z�XW��#�-����5��綬S��?�6}~)�m�nܫz�[T�W����ؖ�J틸��;���<-�X��V��5�HeZ�J,wL�vW�hb
+�����|)죨J������F�k�|B�cI1`4a}T�~@���T�Q����&�
+�%o�5�p�Z{��"��U{��z��ɕN��FR!)\8�]?�X:p�;������G���d�;j����	�'���z���~�Oo,��������5��Ѳ�?����%Z�e��ܙRuYˢq�c5z)���n�:���
+�~��Y�Fy�N�B>���é��SnL+V�� �i��U��;���ꄇ~\Ô��d�0��t�U�Vvk˴���hj�v�ձ�1Bu��Ĵg���>��5��m�[�b�l�����f��Ѣ����
+��6�߀W$�-uD�-]Yg�>�_�vi�
+endstream
+endobj
+
+1145 0 obj
+1581
+endobj
+
+185 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1144 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1146 0 obj
+<</Length 1147 0 R
+/Filter /FlateDecode>>
+stream
+x��]o����W��)���)*(Z$MS$�EںڱlOv>���n�3��z(�/e�i�����!��s^�+��
�'�V]3����@������V��tg��BCF�^�VJi����/F�ҧ0V��k��W����]k#3b��I�J����G)�xL"����m���f�n�-��9E���[d�Ԟ�.�m�G�50Y��Z�mW%#f%k�Dq��Y��}����^�R��b�9����X"!��R,�J��b��l��l��@@1f�Xf��AG}8���ok��K,*�1+Yst �z�|�z{��aƼ�¦l�����#�{,��i���Q�o"�
3�f�8:]b1k�tZ��{O��tO��Qe
L��a�0+Yst �c]�7�^�T$(���V���6P�k��K���E�c��e�J�v����m�X"�b���0+Yst �z{�=�V=�8g���.�#�{��V�:�Fͣ@�D0f�=̠R�L��{,9��������L�ۚyT^C&P�A�dV���@<Ǻ�=o�P�\��b�J�6^�Cy7z�X��*ְ_dwH�"EϤR�*����S��Ҟom�X"�b���dV���@�����׫d�����x/�8b�,HO��G}�@6�A�dVz���%3r����`Ƀ�2pj�Vͣ��`-0��aV���@,Ǻ�=o�L�R��Xf���©!歺�b�{��b�`w`V���Ř�b�����\��|�j��K��Yɚ�Y���y��A�9��.y����8��xr6�k�<�d��a��ì��G�J,f���euj0�%�N
��L��2�Z��'��u�^t�5\��7�^�^�HT,3/�Wpj��%R+�H�Xb�=�J_pt �3T,�Fjm���ԪV,�J���{2+Yst �z{�=�T�*�.`��ttWG�iZ
���y�d�tOf�):Ub1#���N
Ʒ�N
�<xU��k�v��5G�q����Ճ��2ӲsN
1��׊%R)�tOf�):P�*�Y��p�Y��V,�J���{���9:�e�-�����l2��=����~RC>'��'5��y�f����@�^���8��I�!V��c�Qe
L��a�0+Yst -Ǻ�=o�L�R��X�R%��'51oe��)�T1�~��!1��T�*�M��s.C{��b�T�%��ìd�с,����Z� �Mf��G���I�ѝ$Q��`��G���`6̰{����@B����ߪ�I�&n>����Ө��L�2���,g��������2�JE�b�u�4��Ƙ��H�X"�b�a�0+}�с�b�U�ef����+f�|�X"�b���d���с,����Z� �Mf�G+�������{CpjС�G}�@6�A�dVz���%3r`�իN
�Oo7��A�O���`-0��aV���@4Ǻ�=o�P�R��XfN�F
+���e�j��K�'��(��LIc�9W̒�sT�	*���Yɚ�Y���{^�z�q�&�)�/�W��E�ŷc^��M�~9�b;Ո��o�vB'ú�]]}��_Ķ<������?^�]�'C��}F:1�64~���%���ݮ?>~e�]^g���qźߋ�4������fs��z^�8������p���~��q��i��l�޴m������|:�q:?n7�;)��7'A�h��q+n�8c�����*u��r���u�r
+��c
+��
+Z��D��g�����nB��A�i����ç�8�'v��(�ϻ�E�����kO�,{�ٯ��
�&և������� ���t�Yߋ����ŧ͙~+��3�'���<��t�-���v��������9:�k]�u@�ؠᭃ.̣�S`&�Æ��AFM�<�-05��O�8z!��b��>�0�ʌ�͸ J�`�Qe
L��f��S�2g���r�ҍT��Uae��Mٸ�g����n.��Zm[g�\5� mh����AN��N�0����>|��b���z���~�{�9�����Ўjq�]��ԧ�#FLC۔mV���)���a'6�q'n[j���,��@�>�O��<�Gj����洎u;l7��W�́u+�5�[]�a<��7���n���C��c�Xlv��q3���f/�1-����i$-�n���~*��0M����\b���9nN���E��$5��~����q��Q���!���~G�F�}>�#WT�痒6�B�e��
y�R?YJ�zj��Hi�%�?T�![P��J�(��O�J��m����{?�ۈ�]���Nj0߈L7�u��V�ULS?sOaZ���E��}���t!������.���jX������N�F���H����><n���Ϝ�n�
�����B�{�?�p<܌����B�i�����
�o][�.�~��y��X*p�
+endstream
+endobj
+
+1147 0 obj
+2415
+endobj
+
+186 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1146 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1148 0 obj
+<</Length 1149 0 R
+/Filter /FlateDecode>>
+stream
+x��[�r����)�f٥ ��+�*ۛ�r*Im�J��EB"�$��e=P(o�`�����N>h˭o���t��` �����PO�r��h����qhϮ�9���� �~��NnΤT�啯��F�� ���QnT��Mm��$�c��U-�R�1&"j��ҢLB�g&�����u3!̬g}��f����~�E��\-� ���I�| dyF��=�����:C�ZO�7�vo콂����1�d]�"?�f���%c	)KX��W�(��(}a=#����f�k�I�c�u]2�����E�RD�Q�d�!e�}y����]���k�)�\3A��ru���V(9u����O�������}w������r�jk��T�K8g+�@r�f����9�v����̀lL�X3�3���zӧg�~���b��o��-��]����������բoE?�o[���4��@<�|��us�6�^�����.�ݺ=�b��g�;�޴��a�����A���m�z��i����4a|Ȱ^b�����0,6{1,n�
+����/N�s��o�;�,7
4U��iD-�ϟj�g6L�UF������膶HS�*��J�P�\� w���rj�Y�D����5�զ��4w�v%>�{!� ���r{\��"�04������������'�+ѷcڊ�Cw�mw���T3�]��bs忊�=>l��9�4�Oی~R��j^M�ĄZ��7VN�Ĥ�Б��T%��`H�8b��z��ңLB a���t���<�^qMȓ$��3Rg[��m!6&|�m�zݤt$����"#"M����>���F�KI˽�3F��|c`z��ے���%,F��`M�28ǭg�1�g1�ɻ���zݠu���C�("Ҥ��:!�4���\�`�^��v��h�[]Imˁ�&�5��'�u(C����t�i�LW�i�b�MR�:C�l�<����1�,u�W���.EM�Kȼ��H{!im���%+�7A�͌Q�3ƨ�ԟӆa1J7�i�:Cc�q�Ê�ֱjư�9cX��;EM�N�S��
+�z?����ħaq��bW��o�,F�a�Yq-�R��d(o��r���*�Gh�i�P*Yg�B��(d3+[���>�;��Q�S�T��F፴���,�Fݜ1°��u��lf���1F�c�a���l�!�1�8c�a9f�X�c؄8c؄("j5�B�(v�$
+�b�v��ޟ�s�B�g��0�
+��u��+��
���yi�;�`�C�Rh=#y�c@�,Y��%r�f_s��H�����l��H{)i�4z�Xư�A�1�Z3c��3c��!&�������.��b�1Ĩ��:�9g�⌡_iR�d��'�\�B��?���~�unj[�B�h�KIej>�}�����i`�M(R�4M�'5$J�����d,@�0��uL��CN��kN�iR�d�������RҢ��s�K�hj�r3ƨ�cT�1&x�� �[�c1�bX��:Vk���C�("Ҥ��:!OԹ�}bu�C:e�o����r��#���S�����[Ne��1X����a
+�NR���H�@!f���"��:��kI�v`B;b"��&�i�1x#����Ө�r��s����\��陱�O��tS3LA��f�AFc	+C����Ǹ�u���\�0v.GEM�3�<^�t.gV�`2߶�Sw<,�`^W�I�[>
+���C-y��e�R4f��E�j�5�����&)\�f$/�c��1�,�N�G>��%_Y�RD9�1�\��F፴��5u=g�0,G(--/��X^�g���
+4x���f��KX�bX�d�J�`�g�F��F�[	!O�R�x�߶��b+�6�������맧�8;�}�%b\=oD�@T�.�ZbU��F��x���m%Bǔ"ȧ�A�ޥC`��bD�x�pB�r]5�y~�捵gX���S�A����3^-�3�}�3E�)0��n��u�L�����TmhBN����i;3E�v
+!�
g`�_!ޠ����fT���&�26����l�ɧ�3���~Zz�,��jԩ����/�3�q#�����?ҥ��Ґ���S�4P�����~��n/�z�v����+
�z�Im�}9��e�T�x�v+���v�tq}�v��I�9p��l��������Xv���0,��m�����v$����l5k�ISI��9|2��p���ˤ���ny���r�u�nw�uj�0HL\3QU��M!���x'F��u���6/b����*^��C?�@��O��<��qXw.|el�
+��R��a^;����Oǫ����'��l�?�W��p!���╶�*�=�����7�f(n�)�æ�I#�3��ڑ,4�C&C
Ni�O�}�<�l���9i_;L�����@��{?�JN�S���q͏]?�N���Tr��眒�Lq͟�m�j�;�5a��盕�2�/4&O�x`�*��ϧ��?���k:.�_
+�z�X��;�l)H�	���d�!>�J����3���k��ұ�C���D_	��FDEM���V�4xc��E�rY��XZ�ŗ�u͗�cx ����t�0��K��KX�a�R���Q���	)3�������:C���ֿ{��":������ijk=J>��>���d�'�������E1�b�����,�;̧l������b��ŕ�]w�<_�gU�������6������餌�R7�,)aOk4��v��b��@��cȥ�[��f5܃�	���B/�@�C4k�o�=�Zn=�)�\:W�&��l"#�`��'b���u�0�ƙB��}h�u1�!���t��� D����kގ����\
+���#�$��G]�O��W�x�SM�(��g#���Ͳ��b��^z��=��y���.D\�Ţ�]܅��|R�fW��S��B�_)Ń�Y���X�O����u�����h�6a�Q���t��%���)\����Ot���-�6&<��"��&H�ʯB�;�b��x�*gK1��mh���W�Uh�ЭZя�����5V̈́쫲Mˈ��Y���)��]�/��64��Рl)������a��t?��q��C�Q'��ȓ�?���,�fʞ+|�㧃��=,�v��x�.��U{��p!LX�&��<YL��Vl
bU��O���_���A������%�ir>�3���:�F��s��g
+endstream
+endobj
+
+1149 0 obj
+3263
+endobj
+
+187 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1148 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1150 0 R 1151 0 R 1152 0 R 1153 0 R 1154 0 R 1155 0 R 1156 0 R 1157 0 R 1158 0 R 1159 0 R 1160 0 R 1161 0 R 1162 0 R 1163 0 R 1164 0 R 1165 0 R 1166 0 R 1167 0 R 1168 0 R 1169 0 R]>>
+endobj
+
+1150 0 obj
+<</Type /Annot
+/Rect [164.5000 336.8914 274.7605 349.1239]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [7 0 R /XYZ 0 732 0]>>
+endobj
+
+1151 0 obj
+<</Type /Annot
+/Rect [164.5000 321.8914 271.2955 334.1239]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [7 0 R /XYZ 0 732 0]>>
+endobj
+
+1152 0 obj
+<</Type /Annot
+/Rect [164.5000 306.8914 247.1455 319.1239]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [7 0 R /XYZ 0 732 0]>>
+endobj
+
+1153 0 obj
+<</Type /Annot
+/Rect [164.5000 284.3914 250.8730 296.6239]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [26 0 R /XYZ 0 732 0]>>
+endobj
+
+1154 0 obj
+<</Type /Annot
+/Rect [164.5000 269.3914 241.1290 281.6239]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [26 0 R /XYZ 0 732 0]>>
+endobj
+
+1155 0 obj
+<</Type /Annot
+/Rect [164.5000 246.8914 256.7005 259.1239]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [32 0 R /XYZ 0 732 0]>>
+endobj
+
+1156 0 obj
+<</Type /Annot
+/Rect [164.5000 231.8914 251.8285 244.1239]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [32 0 R /XYZ 0 732 0]>>
+endobj
+
+1157 0 obj
+<</Type /Annot
+/Rect [164.5000 216.8914 271.6525 229.1239]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [32 0 R /XYZ 0 732 0]>>
+endobj
+
+1158 0 obj
+<</Type /Annot
+/Rect [164.5000 194.3914 259.4095 206.6239]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [39 0 R /XYZ 0 732 0]>>
+endobj
+
+1159 0 obj
+<</Type /Annot
+/Rect [164.5000 179.3914 208.0645 191.6239]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [39 0 R /XYZ 0 732 0]>>
+endobj
+
+1160 0 obj
+<</Type /Annot
+/Rect [164.5000 156.8914 240.3415 169.1239]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [48 0 R /XYZ 0 732 0]>>
+endobj
+
+1161 0 obj
+<</Type /Annot
+/Rect [164.5000 134.3914 237.6220 146.6239]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [55 0 R /XYZ 0 732 0]>>
+endobj
+
+1162 0 obj
+<</Type /Annot
+/Rect [164.5000 111.8914 277.4905 124.1239]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [30 0 R /XYZ 0 732 0]>>
+endobj
+
+1163 0 obj
+<</Type /Annot
+/Rect [164.5000 96.8914 178.8955 109.1239]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [30 0 R /XYZ 0 732 0]>>
+endobj
+
+1164 0 obj
+<</Type /Annot
+/Rect [369.2500 214.6414 453.2605 226.8739]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [98 0 R /XYZ 0 732 0]>>
+endobj
+
+1165 0 obj
+<</Type /Annot
+/Rect [369.2500 192.1414 442.5610 204.3739]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [99 0 R /XYZ 0 732 0]>>
+endobj
+
+1166 0 obj
+<</Type /Annot
+/Rect [369.2500 169.6414 466.1020 181.8739]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [119 0 R /XYZ 0 732 0]>>
+endobj
+
+1167 0 obj
+<</Type /Annot
+/Rect [369.2500 154.6414 389.4835 166.8739]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [119 0 R /XYZ 0 732 0]>>
+endobj
+
+1168 0 obj
+<</Type /Annot
+/Rect [369.2500 132.1414 470.9425 144.3739]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [183 0 R /XYZ 0 732 0]>>
+endobj
+
+1169 0 obj
+<</Type /Annot
+/Rect [369.2500 117.1414 389.4835 129.3739]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [183 0 R /XYZ 0 732 0]>>
+endobj
+
+1170 0 obj
+<</Length 1171 0 R
+/Filter /FlateDecode>>
+stream
+x��Zێ�6}�W�m;�D�;���Y����j���#[�.�������bQm�c?�a�s�U:u(�.=,���,
+:}��S
+�㿴v��|����OË	�!L�L+M	c"˥o͘
+k<�\��eFa�v��$�������/�)�O�1�':�]iO8��\�W��DD
��_�Q4��Z��'��Uo��j�X�\L\��V:$6�)�D1��Q�(8�Ƹ)��#�*F�K�<f&:�}��{gQU�)�/�0��#$}߾~t��6S<��*b(���<���^F'����������-�{�,�1���s��W9����m�Y�oz��Q�+'��*����Pn,Z�u��2.�,a5�Gk�����ˇje�ʖ�T~�6e_5���dM��a�r�u���p84m���*r�O��K����aKOˮ�ږ����p*)3�!	H0��G,\^��7��W��4���Qzv]��3���(�bv�F$t���#�M�x�+���r\�`5xG�8�X>�w�z�ez���~���Ă�Ă��"���%����`�<�(��~�>F�먪�^`5xGH����D(�)3K,�>��b�w��=�B�(7�d�p�Ϝ�倕6�u��J,�.�}��dz>YX�3wod��L	��|�s�ô\Y����-��%Z�ʔia�w哭SZ"�S�2��/�b��Y�廪��=����JVyV��&�*R���7��)˱���ə�����mb%��/�,�)nf�<+y�H���/Vby��w0�rjT�*����,�ⷾV����/?�m����o_�7�"��'��8��V������sW�'ˀ֥���V��_����n~'�򐰓ʳӯuѩD�2qi�%�YTl�߯����CߴUY�jO��iv�c�Gz��'͚�˾��$l��]�K-·-
+����44�B�/;�ɩ܂�\(h�UX
=����A`0.���ї�r�t#$�R|�b�3���B3��A��q��>3�����`��(���Sb���*�D)���`0\�I���R���|�2��hI�L)Z &@op���Uh�߯��j��p���O�|���X�1����c!Tf����(��\"�-yh�v���h���e=nmgI��eG��ے�o��n*ۑuӞr�ݖ�wݑ�o�'�Ϩ{�7��]k׶��ٓ� _�9
+Qp�t��?ӎIfU��W��OK��f�C?=�H9�*�_:&g$�����=4��2�2���!rsE�iPb�M�_U���%Ѻ�TK<��.f�G�̰̕L��
!��Q�W�X~3�t�lk����1nU���X�_"'oU7����v;�ߐu���ܝ=���zO�L��qv�t�����d����>a']�&�l�+;O��L��F���E�O�q��s�Ĵ�,1���U��+xG���4���XȾ�;�g �:��i�	�G�L1�I���Z�a��Y⍃����R�֑R���/`q �#)������|��&*�PT
+*&@op�3���^5T�D^犡�+.C��v�b�~x��n;�-��+u�/[�'����֒����\���ߛS�:�ܯ����y����ַ���z{��A΂��ɈKA�U�
+���������j\@?�׫2$4Ή�ף(�l7��e�n֏��Ǔ���q�P��ĥ�+�,?�A���l�J�u����q�Od9ږn�V�~>�c���{�"�Ѩ���H,�WҝM����󻑔5IEp���M|��ѽ�������o݋��}����%}Y25�)���1�Ș(��k�O��-�vX�]�R����a�Nn��l��v�]O6��՗�[���'�:������A>n�㝿�K�z�c��,����u��=;��f5,{�s�\�0T+����=�(�8�?J�˰�O)��G
+endstream
+endobj
+
+1171 0 obj
+1944
+endobj
+
+188 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1170 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1172 0 R 1173 0 R 1174 0 R 1175 0 R 1176 0 R 1177 0 R 1178 0 R 1179 0 R 1180 0 R 1181 0 R 1182 0 R 1183 0 R 1184 0 R 1185 0 R 1186 0 R 1187 0 R 1188 0 R 1189 0 R 1190 0 R 1191 0 R 1192 0 R 1193 0 R 1194 0 R 1195 0 R 1196 0 R 1197 0 R 1198 0 R 1199 0 R 1200 0 R 1201 0 R 1202 0 R 1203 0 R 1204 0 R 1205 0 R 1206 0 R 1207 0 R 1208 0 R]>>
+endobj
+
+1172 0 obj
+<</Type /Annot
+/Rect [164.5000 698.8837 277.4905 711.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [28 0 R /XYZ 0 732 0]>>
+endobj
+
+1173 0 obj
+<</Type /Annot
+/Rect [164.5000 683.8837 178.8955 696.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [28 0 R /XYZ 0 732 0]>>
+endobj
+
+1174 0 obj
+<</Type /Annot
+/Rect [164.5000 661.3837 253.7500 673.6162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [75 0 R /XYZ 0 732 0]>>
+endobj
+
+1175 0 obj
+<</Type /Annot
+/Rect [164.5000 646.3837 208.0645 658.6162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [75 0 R /XYZ 0 732 0]>>
+endobj
+
+1176 0 obj
+<</Type /Annot
+/Rect [164.5000 623.8837 248.9095 636.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [27 0 R /XYZ 0 732 0]>>
+endobj
+
+1177 0 obj
+<</Type /Annot
+/Rect [164.5000 601.3837 255.1255 613.6162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [21 0 R /XYZ 0 732 0]>>
+endobj
+
+1178 0 obj
+<</Type /Annot
+/Rect [164.5000 586.3837 208.0645 598.6162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [21 0 R /XYZ 0 732 0]>>
+endobj
+
+1179 0 obj
+<</Type /Annot
+/Rect [369.2500 698.8837 446.2780 711.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [121 0 R /XYZ 0 732 0]>>
+endobj
+
+1180 0 obj
+<</Type /Annot
+/Rect [369.2500 676.3837 447.0445 688.6162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [107 0 R /XYZ 0 732 0]>>
+endobj
+
+1181 0 obj
+<</Type /Annot
+/Rect [369.2500 653.8837 455.8015 666.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [114 0 R /XYZ 0 732 0]>>
+endobj
+
+1182 0 obj
+<</Type /Annot
+/Rect [369.2500 631.3837 452.4940 643.6162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [120 0 R /XYZ 0 732 0]>>
+endobj
+
+1183 0 obj
+<</Type /Annot
+/Rect [369.2500 608.8837 437.7100 621.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [57 0 R /XYZ 0 732 0]>>
+endobj
+
+1184 0 obj
+<</Type /Annot
+/Rect [369.2500 586.3837 460.4635 598.6162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [124 0 R /XYZ 0 732 0]>>
+endobj
+
+1185 0 obj
+<</Type /Annot
+/Rect [369.2500 563.8837 445.0915 576.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [48 0 R /XYZ 0 732 0]>>
+endobj
+
+1186 0 obj
+<</Type /Annot
+/Rect [369.2500 541.3837 442.3720 553.6162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [55 0 R /XYZ 0 732 0]>>
+endobj
+
+1187 0 obj
+<</Type /Annot
+/Rect [369.2500 518.8837 458.5105 531.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [132 0 R /XYZ 0 732 0]>>
+endobj
+
+1188 0 obj
+<</Type /Annot
+/Rect [369.2500 503.8837 418.6525 516.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [132 0 R /XYZ 0 732 0]>>
+endobj
+
+1189 0 obj
+<</Type /Annot
+/Rect [369.2500 481.3837 452.6830 493.6162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [128 0 R /XYZ 0 732 0]>>
+endobj
+
+1190 0 obj
+<</Type /Annot
+/Rect [369.2500 458.8837 471.5305 471.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [135 0 R /XYZ 0 732 0]>>
+endobj
+
+1191 0 obj
+<</Type /Annot
+/Rect [369.2500 443.8837 389.4835 456.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [135 0 R /XYZ 0 732 0]>>
+endobj
+
+1192 0 obj
+<</Type /Annot
+/Rect [369.2500 421.3837 461.8285 433.6162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [78 0 R /XYZ 0 732 0]>>
+endobj
+
+1193 0 obj
+<</Type /Annot
+/Rect [369.2500 406.3837 475.0375 418.6162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [78 0 R /XYZ 0 732 0]>>
+endobj
+
+1194 0 obj
+<</Type /Annot
+/Rect [369.2500 391.3837 383.6455 403.6162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [78 0 R /XYZ 0 732 0]>>
+endobj
+
+1195 0 obj
+<</Type /Annot
+/Rect [164.5000 201.6337 272.4190 213.8662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [61 0 R /XYZ 0 732 0]>>
+endobj
+
+1196 0 obj
+<</Type /Annot
+/Rect [164.5000 186.6337 178.8955 198.8662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [61 0 R /XYZ 0 732 0]>>
+endobj
+
+1197 0 obj
+<</Type /Annot
+/Rect [164.5000 164.1337 277.3015 176.3662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [66 0 R /XYZ 0 732 0]>>
+endobj
+
+1198 0 obj
+<</Type /Annot
+/Rect [164.5000 141.6337 272.8075 153.8662]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/mydoc_exluding_files.html)>>>>
+endobj
+
+1199 0 obj
+<</Type /Annot
+/Rect [164.5000 119.1337 273.7840 131.3662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [146 0 R /XYZ 0 732 0]>>
+endobj
+
+1200 0 obj
+<</Type /Annot
+/Rect [164.5000 104.1337 184.7335 116.3662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [146 0 R /XYZ 0 732 0]>>
+endobj
+
+1201 0 obj
+<</Type /Annot
+/Rect [369.2500 231.6337 475.2475 243.8662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [142 0 R /XYZ 0 732 0]>>
+endobj
+
+1202 0 obj
+<</Type /Annot
+/Rect [369.2500 216.6337 389.4835 228.8662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [142 0 R /XYZ 0 732 0]>>
+endobj
+
+1203 0 obj
+<</Type /Annot
+/Rect [369.2500 194.1337 476.2240 206.3662]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/mydoc_build_scripts.html)>>>>
+endobj
+
+1204 0 obj
+<</Type /Annot
+/Rect [369.2500 179.1337 441.3955 191.3662]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/mydoc_build_scripts.html)>>>>
+endobj
+
+1205 0 obj
+<</Type /Annot
+/Rect [369.2500 156.6337 478.5340 168.8662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [146 0 R /XYZ 0 732 0]>>
+endobj
+
+1206 0 obj
+<</Type /Annot
+/Rect [369.2500 141.6337 389.4835 153.8662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [146 0 R /XYZ 0 732 0]>>
+endobj
+
+1207 0 obj
+<</Type /Annot
+/Rect [369.2500 119.1337 487.0915 131.3662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [158 0 R /XYZ 0 732 0]>>
+endobj
+
+1208 0 obj
+<</Type /Annot
+/Rect [369.2500 104.1337 418.6525 116.3662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [158 0 R /XYZ 0 732 0]>>
+endobj
+
+1209 0 obj
+<</Length 1210 0 R
+/Filter /FlateDecode>>
+stream
+x��Yˎ�6��+���*ߔ��@�4��h&��n��m�V#[�$�;����ȫ+كI��b�X8�{t�1yyȰ����d�{��S
+�j;Y=��$K�t��Dy����c,ɨ��1��RzDt�SqL@��V:,M���Y6bG���R�(?qF�IN����9���@����0���#צS/5T?�w�z>��@1����^��#��W, ��4��a�J3`GR,`��s녦^������X�2R�y�BE�A�����|��Q���폧�����wE�e�Xd�1T��r����0����*~$�?'?�|:�,Gp1��j��'(H�=���٦h�1oȶj���;b��ۺ��]Kڊ4֒bEޒEu(�d^��3ɏ�Y�Ֆ��_	�����馰u^/6�"/�����%���m��$'�b����g�V$��|�.vk��޻k�����}e�7�����[�j*�����T[{��弴ۼ-dn��q��dY�f�MK򲬎�E]z�PAN�y]]x�2��.�-֎�ڑj�?�}�/�)JKn{�5�N�}��z�OX�.�G�u��F�D+ܿM�Ma�����u���a"��I�}Y
+��H��sL�)\��D���Ȯ���Y#"�
+�߀A�����yT�
+��U
����K�ƍ`#���@1��x��^
���R��#C�(=W�ƚ�iW���n'��u��QA�P`P5�#d8�|OxX��'�Ee	��_h���~|p��vD:�L4}c�=y~�9ȕo]�ʶ�7�."u���O�}���)��ImF0s���X�ʂ����B��1�P`�D�``���G��0���	�ƺY��[��@�14�
+��rU;BD���G��V=9\�[��F ��#n3H1�;<=j=�-��{+��b��G���2��^ՐR�����!���یP&Qf�f����	qd1���ۡ�3&��H��L����L�����I}Uz�țC��Ni~(�eә��9;D�����%*��q��z[��X���$�К�~(I*�UG�6v;���iV̨ᰘ�dv�*�Ƕ��������7_@�Q�Y+�� ;Bx�0��qsG�Ih��O��(���`�Z�_�Dv����c�����k�`"ߣ�SZF~իj�X1�W�#``/�!�(=W�ƚ�Ɣ��j�WLG.����dc��V%�#d<�2M��|�����ć�.�����rzm��w�C[O�J�{�K>����K��颠�t�W�%�\v������
��M�����H/�y�ɦ��DC�/EP��I�i����4�v����_����݋���0���
�Q��EJ�|��S� ������Qp炔d��q�I�٪��8���RÑ�˪i���B~"s�����.�K�,��a�d�/�k�D�����]��w��ͻ�*�(���l��}�R_�� ���Z���Ι�L��p�����"�ȸ�a�9S��.�H�u�_E9�_.����,�څ&i׷N��>a���I=
+68���+شdmwn�v����������N�A�1n�q���|W���l-YU5YV������-�%�;��3��h�G���kM�8�MIe�7�7��������
+endstream
+endobj
+
+1210 0 obj
+1641
+endobj
+
+189 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1209 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F8 576 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>
+/Annots [1211 0 R 1212 0 R 1213 0 R 1214 0 R 1215 0 R 1216 0 R 1217 0 R 1218 0 R 1219 0 R 1220 0 R 1221 0 R 1222 0 R 1223 0 R 1224 0 R 1225 0 R 1226 0 R]>>
+endobj
+
+1211 0 obj
+<</Type /Annot
+/Rect [164.5000 698.8837 282.3415 711.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [158 0 R /XYZ 0 732 0]>>
+endobj
+
+1212 0 obj
+<</Type /Annot
+/Rect [164.5000 683.8837 213.9025 696.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [158 0 R /XYZ 0 732 0]>>
+endobj
+
+1213 0 obj
+<</Type /Annot
+/Rect [369.2500 698.8837 485.3485 711.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [174 0 R /XYZ 0 732 0]>>
+endobj
+
+1214 0 obj
+<</Type /Annot
+/Rect [369.2500 676.3837 482.2405 688.6162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [176 0 R /XYZ 0 732 0]>>
+endobj
+
+1215 0 obj
+<</Type /Annot
+/Rect [369.2500 661.3837 418.6525 673.6162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [176 0 R /XYZ 0 732 0]>>
+endobj
+
+1216 0 obj
+<</Type /Annot
+/Rect [369.2500 638.8837 466.6690 651.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [170 0 R /XYZ 0 732 0]>>
+endobj
+
+1217 0 obj
+<</Type /Annot
+/Rect [369.2500 623.8837 418.6525 636.1162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [170 0 R /XYZ 0 732 0]>>
+endobj
+
+1218 0 obj
+<</Type /Annot
+/Rect [369.2500 601.3837 458.9200 613.6162]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [145 0 R /XYZ 0 732 0]>>
+endobj
+
+1219 0 obj
+<</Type /Annot
+/Rect [164.5000 441.6337 268.9435 453.8662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [186 0 R /XYZ 0 732 0]>>
+endobj
+
+1220 0 obj
+<</Type /Annot
+/Rect [164.5000 419.1337 266.1925 431.3662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [183 0 R /XYZ 0 732 0]>>
+endobj
+
+1221 0 obj
+<</Type /Annot
+/Rect [164.5000 404.1337 184.7335 416.3662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [183 0 R /XYZ 0 732 0]>>
+endobj
+
+1222 0 obj
+<</Type /Annot
+/Rect [164.5000 381.6337 275.3380 393.8662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [180 0 R /XYZ 0 732 0]>>
+endobj
+
+1223 0 obj
+<</Type /Annot
+/Rect [164.5000 366.6337 213.9025 378.8662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [180 0 R /XYZ 0 732 0]>>
+endobj
+
+1224 0 obj
+<</Type /Annot
+/Rect [164.5000 344.1337 280.7980 356.3662]
+/Border [0 0 0]
+/Subtype /Link
+/Dest [187 0 R /XYZ 0 732 0]>>
+endobj
+
+1225 0 obj
+<</Type /Annot
+/Rect [164.5000 321.6337 280.1785 333.8662]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/mydoc_special_layouts.html)>>>>
+endobj
+
+1226 0 obj
+<</Type /Annot
+/Rect [164.5000 306.6337 202.2265 318.8662]
+/Border [0 0 0]
+/Subtype /Link
+/A <</Type /Action
+/S /URI
+/URI (http://localhost:4010/mydoc-pdf/mydoc_special_layouts.html)>>>>
+endobj
+
+1227 0 obj
+<</Length 1228 0 R
+/Filter /FlateDecode>>
+stream
+x��Xێ��}�W��80�}�,fv<��d 
+�b`AK=#f(R��c}f6�����.6e������y���TWqXA�y�8:��*���:�y�ˆ�;I`��.�M��
c�P�z)�ADa�J�,�sf�}��v�\ZS��a���B��~�P1YH����Z�Da���W1�Қ��6����L���]�g�\�"&A�)�:ì+ �C����m0V��
f�X&Yd_��ns������z?�^���K�S�v<�#�s�����J���,! �3,diV��)��b	��wA��.�d�XDV�E,(3B�F���ۗe͵�B��5�*3&w��ܘŘ���UZ�S�"b�1C{!���2cr�����![��i.1$$��̘�e�E�щ�+e�S�T��R,a�e�,e��R1ʿT��X,<İ8�}Ar��+��,�bl)됷���Mȅb��5bK։=C�~���e��R���S$l��	Z0��bL&ؼ
+CG$��̘����}AR�1�su�A�rX�S�K	�dF,3&b�d�=Cd��JY�T��C�C���u�Ҹ�bY)�����D��KX�b�М륬�fk�"�R,bYY#�d��3d����&�…�]Sm�\O��t���~�˃"<����ͶkǏ��m;T��+�����v�U�ON�q��Z�JT�<4Zx�>�ew�5#`6�I��>��o{�zr*�<��~�ɮ=ۆ��k���͞O���z�x�����&�����`��!�*�Ubf��@
9	�Y���Gߓ�cU�A�9�j�+B;�?Q%ݵ�((�B9�P�:��v��|�֝/�gR5d����r����Nt7�<���ۑ����(_O_=��=�����;���A����BŇ创�P��s�SF��[
+��L�I��߹RTQy�(��P��I.��R�,��y~�+W�2i��p'|+�
Ԑ��7Yp8�+S�PdW���t(O'���z$%�}��C���dے����k���d��|�c�_�>X�յ$�nv����Om7�K26տGO����w�UК%�w�����T�c��~)����@��Kړ����DweC�����|�؁���Hղ��G�~*7ȴG+�����.�\�v+/�w\���v&`*�uٔ*`rr��Қ��6N[n�F�7\�-E�q�ӪȾ )�Z001q!ţ� ���%��d�3bY;C,S"�gK\��'_���^�ƨ�z��,�,�Mb����jD�5&U� j%��7�:,�)ࣿ,��*����ݓ7�p6����Tù5Q��s��'r���ë��b)K�C8�����R�,�!%Zj�t�̺Rꀘh)h'q�Yl�
+��"6� >�A�QZ�3D"bB��LEK!��RCB�Rk��R�Q–�{���Բ�������7}˦C|��ex�rw��6���wh�p�FC]w
+���z�]S�'ε����Ƕ�ۗ�j���'8�k�7�|��|��W{7�P
+�����ġU�o���I+g�5��|X��Գ�L�;X������;�����C�S7j`���nJ�k�907T2u��.�Z~jB9V}_�M�f,���at�i�~�U�a���M?����Z��v����q롚�?^�Ǣ?|x5w�cy����Y�;�M����c��n����w��_�)�]׾@s��b_u~7�0Aʪ�1.�4�� ��=�X�����2��a��w�^��\�YL���^��ab���"���8���o�+��h�F;� L����	�<�B�_����.g�bMjr����.����w�����{��a�!ܾ&���8S�� �M��0�;mv���S������@a�ُ������u����Յ6ʬ�߇7fuZ�����
+endstream
+endobj
+
+1228 0 obj
+1926
+endobj
+
+190 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1227 0 R
+/Resources <</Font <</F2 509 0 R
+/F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1229 0 obj
+<</Length 1230 0 R
+/Filter /FlateDecode>>
+stream
+x��X[��6~����t1Uě(�i.�,�h�:oY�m�Ȓ!J�����?=G$E�Q��}$�|C}���\�����vEj�e�Sp���zw�ǎR�H��	�d�
+�se��<�䠢	�o�c��RB)Or!��ҟqH�Ev����	�Y����a��<&�
���,I�$��0��v�W����Ǣ�9�Q��IK��^����w��O2y���G
+����6�,]g�!��9�T�,�0J�b��(c�3�`Y"X����B�ΘCVsf�G��g����~؃�(V��T���d_�����?���Y�-96�&]?�a����o����W{��n$��\���7�ő�͑<���A��4݉���{� ]y������<6��$�r$��Qw��de</ �ä(��S�(��r�����I�����z�`�CMGƳ&o_��bd2/����\(�hM���n��_���#�{m��QcƄ�8�ꁌ}d9�j]^�M�4̉"e5Ne�>����j]c�쉳z���N6y%KxH3~4����0�]��1��wq?��4��IYפ��iR�LB��|Ȭ�;�R&Uh���r���&L��q�%� ������@Qa!�4U	Ͳ4��{@�ȵ`0��\ER�O$��ܞ
+>x��_=��BDQ{�(7�s�Uy* �TH��N�˧�]޳�)!my�S�/4"�RRI9\��7
};E~õ�ժ-�J�QK(�M%q�d�,��\�ס�Fb�'��֨�Y�f���A^ǡ���򼮿��`�-��qw��ɗ! ��EQ�H�<`-`@��c,��{@آ�[0��<�S���]|���BDQ{�(7YQ�����x�_��諔o�+�[
+c|f*��^+�4��H9�CG{��M���7��U�<��d���϶#m�1�Ԉ�z!ذ*��4�~jkh�����T�eW����V_4ش#;�9QDmt.��5�t
+)�p��1��ڲ{�� \&ʍ�;7@�y�S��mq����vn�a�O��:�'V�="�Ʋ�̜q)?����\~�,xXZ�i�_4$����6[p������-���7_@W7#�v���K�i5��a�m潛&
+
I˩nps�Usl`r�G�ޱ9M0���g;/�@˶9u&�7���ބ��&�[��K�~Y������T�^u	I<}Q��fx���~�Ū�`GW�c����pO��R�}���`���P�(o�ǾX���	��+���7T֤s�:�W=�O�p��uo��l�*vcV^�$9�ׄAAQ.y�cj�c��bp�[�n�[)t����R�
+��`�Äg�ߞ�~�X�%�[M�?K���x�?��R�{�v�}Ԯ)9����@�����ōB�I��w]�3B�����|q�v��~x0��M`���v���O��}?�S	���iH�`h��g�҂����+�t�=���P�SX}���X.�=�Ƕ�ˢ��s�.�խ@�k�Y5�n�6E��D���@��Sh͝qL_ط)���`0}��\D�Ɲ���}@����3����L*4��a��O<\���%���%�=�z��n���:n���W���P�ͳ�Ŏn���=�����u#%�⒰j��g+"�nu�_�A5X󠋺�ʹF};�[���yt5��qPi��p�>�Hr���n̵-����
�M���z>nh��z��)���N��R^6����>fv??'`�Wx��-�Z�|D�liJd7�*&ņ�
��i������ԕ��X~OXJU���dja���~x��zۚ�=ΝjB	��;�<�M�����3@��	R�<K2%Պ�-���|��'�=0(
+endstream
+endobj
+
+1230 0 obj
+1838
+endobj
+
+191 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1229 0 R
+/Resources <</Font <</F4 514 0 R
+/F5 542 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1231 0 obj
+<</Length 1232 0 R
+/Filter /FlateDecode>>
+stream
+x��T�n�0��+��#�D�(
+4MS$�&@��%�VL�E%�g�����eɁ��`ˣ�wgw)	�� 	��h��
������*I��!`�	�p�"p��RFdD.$�U\�
+�a���`�T�z�:(�ꏇ��j���s�}�ӳ�J���TaǷ�+�o5���/�Ԑ:}Ʒ��nRc�p�����%}�\y�(kgw��INJ�NJ���׭v���AW��蛭jk4�U��x����ή�ޣ$����ef+L��^;���e�R��o7���4���v	��l�B��Z_V(�,S0��F_ԥ�<�+�ݑ�Y����D%�Ë'��l;8�j���O?��$d���@��l��]_�����2/��jv�<׶��D/o�����$jh<����5�J��v%����C�r]��8�=M}�a}+�D��M{��Ee6K�:@�1,$��$V8I[�DFIWh�	�\��1d	a?�8ƣ?TtQ��죨�Ƙ��[��0�X��0��5��6q��Ѩ�:a�D\F0�3�GMw�,��:b&�2�)�}���k{ZM*�
+I��
�Pϓ����m	��L�%�[
+��!����W��˅�f\�p���|�
�Z8[yl��l�SôKC�e��u;����l�$�϶��	�<Iz�b†4�� ���]x�x�;bF�'��;R5'}����6��.�:�7:��5���%����xO�N��{�;������;�An�f��������GD�˛��L"�����W���Tgď�F��1�/��� 
+endstream
+endobj
+
+1232 0 obj
+780
+endobj
+
+192 0 obj
+<</Type /Page
+/Parent 2 0 R
+/MediaBox [0 0 612 792]
+/Contents 1231 0 R
+/Resources <</Font <</F4 514 0 R
+/F6 543 0 R
+/F7 544 0 R
+/F9 577 0 R>>
+/ProcSet [/PDF /Text]
+/ColorSpace <</DefaultRGB [/ICCBased 506 0 R]>>>>
+/Group <</S /Transparency
+/CS [/ICCBased 506 0 R]>>>>
+endobj
+
+1233 0 obj
+<</Length 6
+/FunctionType 0
+/Domain [0 1]
+/Range [0 1 0 1 0 1]
+/Size [2]
+/BitsPerSample 8>>
+stream
+zzzvvv
+endstream
+endobj
+
+1234 0 obj
+<</Length 6
+/FunctionType 0
+/Domain [0 1]
+/Range [0 1 0 1 0 1]
+/Size [2]
+/BitsPerSample 8>>
+stream
+vvvggg
+endstream
+endobj
+
+1235 0 obj
+<</Length 6
+/FunctionType 0
+/Domain [0 1]
+/Range [0 1 0 1 0 1]
+/Size [2]
+/BitsPerSample 8>>
+stream
+gggPPP
+endstream
+endobj
+
+1236 0 obj
+<</Length 6
+/FunctionType 0
+/Domain [0 1]
+/Range [0 1 0 1 0 1]
+/Size [2]
+/BitsPerSample 8>>
+stream
+PPP000
+endstream
+endobj
+
+1237 0 obj
+<</Length 6
+/FunctionType 0
+/Domain [0 1]
+/Range [0 1 0 1 0 1]
+/Size [2]
+/BitsPerSample 8>>
+stream
+000
+endstream
+endobj
+
+1238 0 obj
+<</Length 6
+/FunctionType 0
+/Domain [0 1]
+/Range [0 1 0 1 0 1]
+/Size [2]
+/BitsPerSample 8>>
+stream
+���
+endstream
+endobj
+
+1239 0 obj
+<</Length 6
+/FunctionType 0
+/Domain [0 1]
+/Range [0 1 0 1 0 1]
+/Size [2]
+/BitsPerSample 8>>
+stream
+������
+endstream
+endobj
+
+1240 0 obj
+<</FunctionType 3
+/Domain [0 1]
+/Range [0 1 0 1 0 1]
+/Functions [1233 0 R 1234 0 R 1235 0 R 1236 0 R 1237 0 R 1238 0 R 1239 0 R]
+/Bounds [0.1457 0.3151 0.4963 0.6857 0.8799 0.9053]
+/Encode [0 1 0 1 0 1 0 1 0 1 0 1 0 1]>>
+endobj
+
+945 0 obj
+<</Type /Pattern
+/PatternType 2
+/Shading <</ShadingType 3
+/ColorSpace [/ICCBased 506 0 R]
+/Coords [329.7500 558.3750 0.0000 329.7500 558.3750 6.8750]
+/Extend [true true]
+/Function 1240 0 R>>
+/Matrix [0.3225 0.0000 0.0000 -0.3225 112.5000 723.0000]>>
+endobj
+
+1241 0 obj
+<</Length 6
+/FunctionType 0
+/Domain [0 1]
+/Range [0 1 0 1 0 1]
+/Size [2]
+/BitsPerSample 8>>
+stream
+���
+endstream
+endobj
+
+1242 0 obj
+<</Length 6
+/FunctionType 0
+/Domain [0 1]
+/Range [0 1 0 1 0 1]
+/Size [2]
+/BitsPerSample 8>>
+stream
+
+endstream
+endobj
+
+1243 0 obj
+<</Length 6
+/FunctionType 0
+/Domain [0 1]
+/Range [0 1 0 1 0 1]
+/Size [2]
+/BitsPerSample 8>>
+stream
+
+endstream
+endobj
+
+1244 0 obj
+<</Length 6
+/FunctionType 0
+/Domain [0 1]
+/Range [0 1 0 1 0 1]
+/Size [2]
+/BitsPerSample 8>>
+stream
+333
+endstream
+endobj
+
+1245 0 obj
+<</Length 6
+/FunctionType 0
+/Domain [0 1]
+/Range [0 1 0 1 0 1]
+/Size [2]
+/BitsPerSample 8>>
+stream
+333PPP
+endstream
+endobj
+
+1246 0 obj
+<</Length 6
+/FunctionType 0
+/Domain [0 1]
+/Range [0 1 0 1 0 1]
+/Size [2]
+/BitsPerSample 8>>
+stream
+PPPttt
+endstream
+endobj
+
+1247 0 obj
+<</Length 6
+/FunctionType 0
+/Domain [0 1]
+/Range [0 1 0 1 0 1]
+/Size [2]
+/BitsPerSample 8>>
+stream
+tttzzz
+endstream
+endobj
+
+1248 0 obj
+<</FunctionType 3
+/Domain [0 1]
+/Range [0 1 0 1 0 1]
+/Functions [1241 0 R 1242 0 R 1243 0 R 1244 0 R 1245 0 R 1246 0 R 1247 0 R]
+/Bounds [0.2375 0.4133 0.5690 0.7133 0.8496 0.9782]
+/Encode [0 1 0 1 0 1 0 1 0 1 0 1 0 1]>>
+endobj
+
+946 0 obj
+<</Type /Pattern
+/PatternType 2
+/Shading <</ShadingType 3
+/ColorSpace [/ICCBased 506 0 R]
+/Coords [1054.7556 534.3206 0.0000 1054.7556 534.3206 5.6067]
+/Extend [true true]
+/Function 1248 0 R>>
+/Matrix [0.3225 0.0000 0.0000 -0.3225 112.5000 723.0000]>>
+endobj
+
+1249 0 obj
+<</Length 1250 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 593
+/Height 464
+/BitsPerComponent 8
+/ColorSpace /DeviceGray>>
+stream
+x���	������%DA�K��\�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ؐ�������
+endstream
+endobj
+
+1250 0 obj
+300
+endobj
+
+1105 0 obj
+<</Length 1251 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 593
+/Height 464
+/BitsPerComponent 8
+/ColorSpace [/ICCBased 506 0 R]
+/SMask 1249 0 R>>
+stream
+x��	TY���̙s�y�?��;����TwuY]�Ze��t��ԔJ��t�Z��*�U%j�/�������.������
+���ȾI"ɞh$f�`�X�
+�h"����DDF&�d�$��s�`��_���7"�7~��0����\������0�����\�<����E�����\�<����E�����\�<����E�����\�<����Ep���U���XzY���/F��yD��f�qǔB'�-\�G1Z�E��s�J9�{�����������755=z��!��C��<y�q�_y��Z����U�G斀���u��ӝnÈ���q�]0���q��^�QY;'������hii������@��(i���%�7�s����d����횎����
+���8�揣������9y��ܽ��L&C�����C��?_�Z��&N�Ml7�;R�n�/W��>����ng��Q��zQFe휼RN����IYY����*C��O�t/�ё��l���aϗ�r�hg����q����q��^�QY;'�����
+(((p��Yc��������rYG�����3e=�����V�?ֆ��7TzX�m'�f�9j*��i�x�)�����_�؍_����~m����|��is	��7��mW��.D�X����츑Q�|�^&d��o��Gj�:d�O�yO�NZ.v�/L�m��ἒv��<v�T�����\���Bk����W�X|x�l���`��x�C�{����]�����>-���]2�}��"G�c΀$������V&6��c�N���6 mQ+]Qv�i����(i���%o�	ݗQ�Q:;6=����{[֓ �U�k��zJ�}�:d�+��[%^�5��=Hٍ�o�Ϋw
+s�zOǟ�%��hm�әw�^�c����F��������]��F������tX�}��7���&��B?��$�e$��Lb�͵�v�z�,������c�&yi���hg������$t��'��L��M�Tr�<�2s�{�E�����Y;[�U��Ü(yJ?��Β{�%>;	@��{��V;Y�DtO
��~��J��i����(i���%��Gu�#us"�s��V���G{�_$J	R�Z����(�n=�=��_��v�8?�Q?͌?PkL��?�a�i��[K�Ǧ����ȳ�.�t�e����b;�;�iJ�"�S��GzY.�H��'�јm��i-4mR=�ǭx%O�� ����~6.��R���z��v���i
+�x�'4x�ϋ~_���`�V9��5�:e]F��_ zw�L��i�A`��(=l{����a��g�NGR�!�1c��?�Z��І~�,U��;���>����3����~̀Z�Z��Y��{���AL��g�޽%Eܷ�O{#�{Tt�dwo�5>7+�a�z���?㔍9���Ѯ�j����z�Bҟ���u�yv���`��S�pp���|�u��n܈�GPz
�^,y
�sk��ee�|C%�&��<����j�=��@�bS	�5��[H��=�B�@������ȝ�o��;���&p.1�/���˟�����Э�84��fv�<�S7�ڢV��^Dˣ�z�Ǟ��uc��*�Mk嵕Թ��=�jXN�t
Q|��/�/i�"����d>�Z���q^��YE��8;F�����=j�>炗P�9rK�6q�ZO��P�#C�:�>mӹ�m�v����A�|��2a�1<�_�<G3g$��y�A��"Z�<����oNW�qB�K�6'������R�i�s����h��[���^)*yg���4�<�*D�U��;�_|���}��7����xn���p��|�J�>JC����_{��^z�L���])�<H��L+�)$���xd���a�Z2�Jc|����%����B�����\����&y�л��|�G��Y=��y�F�Ya�[��������D�=�u(��mϏ��&�=��0���VT�_ѻ]�E�*3�/J�j{�
+>I���V�W��ّG�	��V"���kp��WRY��s���t�B�gŀt�DO^J�<ė���P�)S����Wv�tl�]q[�'*a��BYen$�Y�8T�Gy?��u�V�H�-^e�6������dL��}� jQ��qP~,����KzT�]�S��
��������m-a�����5X7�]9�H!����6#�<�E ���Trڱ��L6+x����[ּ'�?`ޱ>^4�zQl���y׵����/�g�0>��l<'�U°Un�a|�L������9D�kT��\�RY�G�v�,y��r:�����K����� e+�Z.e��9�܉�Õ�%y���l�5XN4�=Jź9ugzI%��L���pH����p_M�7>�&ζ5;������<����@(��O�Y��c�3pχ{rP�OP拢i���~��'8E���f�"�E�3��ծ�������ڵT�;��A)��2v�2t��Rkpc2���\[�D/�#G��)P*���ݓY罽��C����x뱸}�c0�{��?J�J�{>��r���9���]�)�T�lc�]ڟq+�;�{ �;�O?4���(�_�$/߲�x�s[�mɓ���J8to�AY�yt�㹉v��f@��\l��&C/*�#���-�ll��
�+�?�L��������Ԏ�,
�3�N���玣��
}��O&�,����B9����U�v”5���h�����p���=Iʰ�������Vmo:�0Ln�eWU�?�WA�@��HeDӈC����sk�lrމ��A��YK�o�/䨎d�����]��s��tg+��T�S��4f��%�t��<̓;	�;�,̇'�U��(B�ޮiio��F���D���:M������m�,&
+�3m�����?��_���T���'�Q�Z������ժ�?�̎h����Mw.��Z��c����g��i���ߛ&��H����[=��.�4y8'3���8����ʵd�s������.˭�(m�8�����O?�ԏ� %Bz�Z�%I���������:�u�ڭ�x�g���� �ے,T���x�Y�{�<��я�5��؋=������ƭ��!������נ���B��
+M����ަf	�F]4��lCU �f[��ݗ�b��Zzv���
+m��dΎ��k�b@nv��}Mn���\o2uy�ێ
�+��T�|ȭ[�� ��&dlw�i�?M�[��pF�	t)t�o���B����M4�S��rt[�D��T?�G��!Z���e�'~����*y�;�s+/`2�� o��/uD��<��Φ�O�,�4;V\qS�FD)�����&pq�c%���^�1�׵���[q�M}*���I��6aT|{x>��B�I5����a���\���m�<��tǪù!;��gdQD7����󽅩L�5u�{$�4?��6/��C~z�>�i9�������D)핚�a�5���-���ӻ�l�����5H��
�uu�ůjjjT*U=�7~�C����hy�0�=���ҋ'\�ռѳ(�0&_-��eH�r��Eȶ�3�~��Ca�����}lL������i��\l�(���0[B?@��\$�H$��μ�67�_>�veɵ%�]�=�}D��R��"!!����ž1n����s�#��`��.b,?C�cofU��8��L<��=ܶ�j�COxrp?b��x�ە�a�y�닆Z/Sϭ��I��������义�Cb�|�tAڿ��l*ye����G~��E��8j���P��jUJ$dVK�ސ�=C:C�����Y8�T\$�/��T�������{��\:C�°���a�Lez|!���)V���K��}��r�{�w�#Ӊyc#R����{!x�ye���(~�����G7�zj`��r-=AW#���\�9�D��bk�{͸¡5�H�׿�Q1B���$O�P����k[{Ɲm��ֶ�����ټw���?{����\�M��N���#��gs��9��.���xw:c���<\JXh���Ɇ�G{��+b���e/�8��QSw�N�-������:�YרL	�����U��ˊ�ɽL�i����4�F6q	cWo<Ю�_�ߌ/lfs:ۤi� ����s�a��&����d��<7n���Ёֆ�D�U�t��l��ɣ���f55�t�
��k�S���By�RrO���9xAqVZ�x�vU/�=��h�#���P�FSSx���-��˱��U�囙�3����l�2�Y!W&�jZ���KH��4�u:å�hJ�d��N��B��s�8�DY'�ųKd,�K�17��DU��j�d{4j�%װ3�#(�p`�R�pOK��8?G+�m?!y*����+y�4�X%�<z�w�W-H�L,_V�%T���Φ�.���Z��Jk��{i|�Mc1��t�䡝�$y�����.�/�z�:��X��o��g�z�@�����(���CÕ�՟�x�l����b_�*�;�O�x6���4�mp���
+���V�!;|��F�Q����q-�;Em���D����E�m)‚(<�3���������ι����s�,�������E�=](mi<ۡ'B���r�Y���!��=�O�8ʟ�ÓMƊu�M�YT��<���ʅq�y��Ѥ�s�7��l)�?W����a8�NyҹB<k6?qH�l��y���Q�7V%OP��^xs�����4h�<9����r��"p�\^Sa�<FĜ
}`h�}#e�U�V���5���(~/���,���xX��P�>äHv���
+R�6uy���2A,�Z����#�-��2I$C�d���:�]K�sK}
����k���a�ZBBK�穽o�N�rkh�������8N��W�~����ý����=6��"{�D�|tX���/�{�甅t��M�Y�F�/C��V�����koAQX���b������bӀ�l�~Of��mr��ݑ/����F	7i��.F�h�#.�gkg��.|

���Y�c�:F��b���Z��-&�~��+~�u�}j%,\1��Q���9����^:m�z,������_F��������_�������������>g��Q��zQFe�^J�����X<�1�0hFe����4痼�[�����x��tg�m?`�
���<�v�8�?�b�֋2*k�R*��
ظ|�_T�csFe��Osssnn��K����f��������M��;rq����q��^�QY;'������),,,))q~ɋ�y�Ѷg�k���2��=����nB����ng��Q��zQFe휼RN��������OOO��	8��!�d4z}4f]��-5��_G���}>^2�s�.������9y��ܽWCtt��kײ���ݻ����!y�J���ƏD�n��ٜw6�h�eT���+����j ��S�G������������ y����������� y����������� y����������� y����������� y�����������N'y��-�fzY�l�wg���SV��ɓ��S����`t�t�����X����+���Ё�������`tᄒ7�:�?)_*�$_�=���u�m��J�P�=T�R�T&F,˚Z9�R"���0�pV�[��}V�e�<�4~��\������d�U��'='�K�g.�%åӁ͠L91����5UOf����|�x�w�.�)�������������Y%oܢ�k�Q�[��֫U��+f�w~��6S�:��T˯��q;��7�$�i~����*$��^�Y�ekѽU%��"
+�.8,`�d�����m]�������ִ��3�`L�ZU�p�Bp@X����]�$1R�����d�j��Ԙ��	I�2�:��N�M�%�G%�m�5k֦���d����؈����#���p&�.y�r;��ސ%�=^VO>+���'S��}WMk"�$�S%l�"J\��Bm�<y�.�:�����������M��P���`D�ɻp��ᒇG21����	��I;@
+\/U�ե>�9�S��
+�M-fٲ����xų�����8VU��/lCMJ���B�Di�L���^X���щC$�L^��%�a�b����W�i��|��q!�sh���ʬ�t`sG���c�^1���J����w�j������;Eׅ�F�����
�,�����<��&�Z}�2��+
\�ar����
+��ӂ7��;���������l���D�b��X�TǗ}*$�;sk������Q��I�-�L�Z�T�-<��݉����,T
+�g	�����rF������������\�<����E�����\�<����E����(�&���q�0�}Հ����d��@����@����	HH���$������@����	HH���$������@����	HH��Pdl�5qសD��5���Ugo�O�����9��s�\��
+�2�nmc�FG��䗧��\�L_�حS7ĵ蘮�Ms�
+�����
��;�տT���7�ysO�pze&y�y3~���`�C=�a�g6�n�(@�d��c7��Tdؐ�Ld�P�n#���`' y y����
+�$,yp����KJ�a"y��fΰ/������WUC�[��H�I��!;�$��|:�N��V������Q��!�1c�� ��Y;Dg��p6@�@��Gy��׌e��� I"�S��{/�(��hL1>"���I����i�������E�
+x�˺�{
+�÷ˣ�H�L�ˬ
+ʶǯ��w���Jo�F9��}]C�>����K�8m��_����+ZL���	�/�XM$��}��&p�
|�/O>���9]فݑ_�>mep�6��u�z�u_���Zz��!��j��膡���Υ��o6���ݒ{C��C˸�MۜĶ�6,_9~e9����������}�xE�s��t����,U������<����`��X�&��O�WHH��P�D�t$�*�gjɓyJ�����0�Ʀ��%�yr��<��i�%Q���}�B��M�J���}z0X��������v��z�*}-��!6�%y�;�'�H�=b.��Ó�w*K�6�|i1���H���\��2}v��@��!/��"a�����da�������A�V���R&[��[�e��^�f�|�X"/M>�	@�Ga�We����.�
Ejb��y�(���7�C�K�E�������+�cs�OG��k
���G���J��������JX�o�l8�^Y�J�}�DY�ĩ~EC�+���<���A$owb�Z]��y{�L�8�K^UfLDB!�ae��{g3̔x��H޸i=>�6�����d�&3�D˖�XY��(����_6%OF�Z\F��M̥�f#�eWUz��'�K�k
+�OF�Gt`��-��R�'_h#�3�,C>��Eh��5-��5װ�ǫiH���e���W�T| -}[|u{{KK{�k7�ʣkd+K*1%%�����-��&Ӡ������I�\�S��#������iڵ-��%l��(y���}{�/ e��䙵���P��9�>�1f|��E��(+����,�
+ y y�J^R�M;��) �'y򼘵�ޡ�<v,�ɛ��6���j��ҽs>��-���zl`}�1ڈVZ��]���^�d%Z�A�p�K��H��w7���'���_q�ȷ�N�t3>�d�B@T�W�C�&|h2
+K�xW:ɑl�׊{HS��	ö�����/�\Кee��U�k>mc������_r��Q���$$o`�$qݛ�?=��t'C�5�J��=U:��.���(o��6!,�V�r@~������+��{調��Ր��\^�%ǡ�N�]5����0[�HT@�|�S1A�0m��h���P�� y�܁48�����4		y��O癹�Ń�B��ǽV�DB���
yQ�1�{F��L��bW��<��V3���\A�Z+���1���
+HH��0�<nx�����Cyeey	A�]�)R����:�׍�K.�I��B�G�jE�������$d^�R
+ss3��'>n&o�5`���Z(�SJ��;�#5��o��&M�Oi��N�����kl�Y�<7H�P�ii̋���|aS�W�`q�!XȄ�`�G���.!72���'�-V�+
x���i4���=X�+;��?�	��_Z�dSB�Ѭ�I������`s�e�F� 6;�����HH�� +6E��d�Q����6~8kܲ5��?��qC�u�[��ο�'~�����#��mN&�)����?�I���5�
~�Ɖ����s��<.�j���M�����9u]�w��!��=�廾�$*���pm�''y��O9�!��Wq��1�c�)�X�JC���8t�4���V�u~�$*z�ta=��ZE��O���A&����+��w�/Y9��<�-`�"��8C�	2��xـ��9��eY�v�
+�
�5;�����{3o������w8
%���l�wK� �VsL�<:���:ZtO��Â�]ui����7)Za`����O�^) y y��?6_����������ߛ�?6���V�q���@�^���󇶯��\�qR%B#�<���H��6��$��	�� B�?w_5`@�����$���p@�����$���p@�����$���p@�����$���p@�WÃ�JeEE�D"�����������Gt����n�3����ִ���ݩ�<�Հ��Ν;eeeO�<��'	���J�^u��V�����ߖ_���ڽ"�3�|�H�j@�]yy�p����Xe�5݊k�+����۵>)��/w�O~:��ʀ�^
���#����p^��ӑ����n�o$%��K�_�miL���w�2`@�WCff�p�����ǒ��Xn[Ӎ>���n$Q'��3��ݯ�<�4q���.�{�{Φ��
+�v�拃�Qq�B*)ܱ
+�T"��MG�L�&��?�D�����>ɪ�M���M*')��!)�$J�Y���
�

�@,�����B~��e���D��1�*�/}E��A�F��)2<q%��]N�������*�}���;��}����P>1l� M��+��շ\��+�<ٵ���:{�$]ys
+�l�����H��/<���\�;��0��djj�p�����ǗQ�Q�/�tȆv���{{
�m��/�'�z���I'@�F��ɓ�*�U�'�E��*��|t��U��k�)S�)���H^��T�-R�)؟�,�	B�l<j
e
+�/f�?�펩��%w	�Nyz�H�v1�a5��oQ�� y���̉ԓMG6��,�%W�ν�K��A��z跳����:w;/��<�W3?ė)Y��7���3
E߭��<W��s�������w�m���q<e։��z�D���
[�r������E��5�Ҕ��|nɰf�u��+�P!}yo�Y�2����C�Ϛ��$OAF�#�Aօ�S8o�G��ժ�-���S��J}f���4T�XfUP�]��*؂�5��w�5�Z��������v�e�m>r�5Ȃc��訅�,�/H�89���}v^����z5��M����.]�ӭ7Я>;�m~��7�$OͦxR����
OȔ�U��/��%ef��tc�qQeH���P�=��&Exa]X����������/�fj\�vl��Y�������C'fk���)*ܞtW���W���[e}$�
+�"�dq4�%F�D��.g���x�R�3�>��0K2��(��ԓyJ�S(��s0]mi~�d���(U���QM3x1�����Y�l�<.[����-[��=�}TH�89�����փw��f)3�LR>�Ao_�$���a*Ž�Y<�����WsQ��Rj�K��ŏ�U]E�	�M%o��ЁM��~`PUv�wo ���J���$Fe�6���Y���m$.ڼ��ǹ'�X�L����q��;���㶼nmr�?�2�HEYY�l��Q5o���3����VA�����8D��P���Wh��s�!z��Cz���^��&y�4#)S�T�$�;q�4�Jf��N$����2�?�㓙��A$O4y�%lJ<Q
zH�y=������}��E��VU�cΧ{R�W!xFRU�;�aVE���l����fLZ_f�ԃ����QP��3z��� �CSz�G��������e�⒗��`I�(>!0�ZY�”�'^�0,��9G�9�cM$��Z�!���&����ko��?⢹��KcM%�J���H���:7����(o�ބM�ádY���ģ�C~
y�),Y��#�9����W�[�$3d�X�	�#����.�����z�
�����U�(�w�#5xcH��<$@46�HʒJ��	AdY�r$�VK}&�)���,I^�N<I7%FVo.y�kS�[��EzS��$*��LB���^�+tJ*ĉd�'yǧ"�I�f�a�GI�'
+�0;’�dҸ�����<:X�����7��k'���߾�+�BN�Hj���\-P�k�s��ㅑK�� y���;�#�z�$��zѕ����DW�>J��$o�I�8᤻xhn�V:4��*!`Q��j٭-�kw�.6	�܍��.�#���v^9Y+��%,�|wy]�����G�假S �������C
+V7ޟ*�n�B��(����#x�9���xa8�����D��Þ�`C��IK\x�fX�÷ɦ�;���'��c=o7=�6%����O���^�.���&���'yV&cv�ݦ@�쀆�=*ü܁ڏ7(k�l�p�nd(*6YS�*C	2�u��'�ׇ{^?܋6�C�n��c=�W��~����u0/��чRri�^��=��p�b��1�pr~���/dC;��#;~Ɲ����!��~�y�y,����u+C!77���y��i����zq���~0���
��o����|z�o��p$�LIIIaa�p����X���3��~�����t���6�����WH�jP(������?���p����X�|�gO5���f�_[m{����X��������ξv�Ztt�E����K<�W������R������1�<�>���8ܝ�`��^%H�T*�R����s���E�0����/$ y����������� y����������� y@_E���!����0 y@_Е<�o�����@����	HH���$������
6p٧�g<0doҤ�
+^�
���M@�@�*-젷�޽�{������]����\E���H��6��s Yǧ2oRG� y���$$ρ���I����p���܏�sF�\�e3h��޳&y�����x�WDf�T�x�eVe�S����<�c�X��H�T��٫����Lݪ�a�45��Gz��ө�R=�y	�YE�\�j��Y��
+�ܪv��V�����_�Ne�����,�L�(�����Z	pF@�@��X��|^c�qGc����<Q��+�ɕ~d��?!-3��|6�����_�,If̖�(q96V��e�9��)�D��U���꺦�����ū���˳���=���,[�H$��<����a?�Fi���"mV����_���uQvV}�tH�����4�������/yi%���s bɫʌ�H(D;�Lzy�l����ח_�0���R���
(��<fGp���U�
+R�2e\�b�!��nrP�����k���k�F���޲�΁�%��J��kZ��j��p�"e��X�;q�V�F�v��Y��I'��x0�f��%����K;1�K$$ρ�%O��v�;��ǎ�9y�.�s�_�R_~�J!��"��ˍl2���
tB����.WL��zpc_�ZuUQU]2�y�V�e�l]G7>�Y��U77)iz��ֶ�:�Q5Ӭ�𝪩�Z�E��6�>'������{��*���7���z��>�~F��鬖V��e��a���P^�3��VU���^O�RZ�X�c�vV�yޤ��j��Y�w�[㡢�akk�5E�^TA}g]U��}hBc��Ii�2س��Z)WUu���I�5;ʳ9�
+z���i�ç/�smU�kj��Б��}��OIuz��ʳ��pKJ�������J(���
�{��6���<�<"��ҝ���(#�%O��Fs���Q��*j_��J�,/>���)آ��o�����*�L�P'Uݠim}��UK��2uڭ���:ԫW��EmvvVU}۳��:4�@:8�ل���Q�6u�v<���WA��&�^�����·�2�߄�C���kXd ״uv>m��9<��*ф,�Nu�$�������G�?F9�>D콇�
����,J'����YC��D6�O;�u<�O�i�����ooh~��K*�<�?�
+$��S�ϴe�Z���+�>��@ld��2��:䤴F󤵳���UJ��i':��:+;�Vk�!y��f\4��	n�l�c����C��
&[ijk�dx�W���QGgG�
+7N]k���a$$ρ�$�`-j�y�������q�O��*��Xn�٤��X���\^27�UVV��	���*W+2�N~w�� ��t��r���ri��U����
}ۓǝHz{tZ܇�nw�Y��4��z��u�񵞧RQ��l�K�F��Y,5�����s�^���;Q�'db	k���r����YE�o�!P"y
\�ѷvV�nA�R���y��̭�F��kBN���F�rMdJ-����{����Ƴ�ƁMݳ�Oڰ��u/Z�q66q�Ej���!͒U��O�BKZnj뭄+R����?d�Ȝ���a$$ρ��Mc>�6/l��)�-[����7��ܝo�/�}�
�<<����Y�o�|s�'*S<�{R�)�����i1]k-��Ix�����Ț�e��\�/�c�Y�4�%�x�)e������ls��Ϭ.~�"ywy������?UFɳP;������;:dg�5D�<� ��E��무L��>l��"n�MP�ϟ���W�s�ö���j�jggմu4��Ϻ�P������7��Vz��T��4�m; y y/��eYY��B{*�wǼ��H�����+��<jn�(���a�x,��J��{��aƺ�ψu�ϖdŪ��婐5
mzM��f~Mo7���k�"yBl%�<$@\�$�$�O�����gdc\|�k��=�����kGa�����G��kc�G����rIM���d�?w��Cp-cK�z_<B
+�T�e�(�z��V��Y�M��bS[k%<�)U�Ћ���Ps���HHޫ�����l�
��5���9�%�0���I[[�S��縧��IV
+?�7���Z�N�����Ӈx��H�DgI���H
vT�mݺdiGvMk����n���Z���~���rE�<k��V�
��<<7�}Wӡ�ֶ= KDh?ܷv򺟴���<� �e�wj�_tԕs���bOtmؾ���i��Z�@FwQ��g�)�f+N"{4���\o��IF������m2p]��E�+6u��vJu�j�i�����JS[n%��II��OH���6���<��W���r��e����X�'�:�\�$OX�'P�n�k'x��
���W�!�+0��U�x謶M��$��p�,��<�>����⋨nj�+9�}��CUn|L���F�ܢ�;b|$���<b�l{����V�,U7+��*Sa�e�n�oRV)�u�fk��Kok��>ya�������O�\��*!ʳ�d��4�������RUMϩ=/)<oF%J�y:�c㾸ͭ6��V��=Q�2����; y y��!��c�=z��JZ�^�����>��[?��;��e}��
+�?����=z��F�1k��MC�c^���&���w�ܳ^>�W�$[��`D���7:��cS�H"�W^���lR�[�e*�GFUJ�Ç
$|�V�:���($$ot0�����Ԫ��x�y�c�Jɲ�R��L�J���/)��`�<���A������"���p�U$���p@�����$���p@�����$���p@�����$���p@�����$���p@�����$���p@�����$���p@�����$���p@�����$���p�S��S\�1���ޤ�/��U��fko)������'����>|��k��`�f!g��Y�<������$O��ɩ܂��b�$�k,��(��B���ᯄ}�¢�6b��pi����
+���8�&yU���I�Ӕ��KSH���j�QU��s�j3iޖ	1Sdl�5s漵{�~C�Z}�rl�v�?c��"�}6���𽫧p�;n�w�85n�_&�����;�J�$�)��"��+j����k2H�����l���3
g:q�L��b(E�7��	��^˸ɾ)Hz�7��!P�I�p��Y��@}z0�.�*ҋS���cD��?�I�#��9���s�8��4�/�8.Z��J�<���g��$/+��$�'�8ї�'X�I�l'IJ*�����
+�4�(�0NC?��F��K�
+��+W�������dĒ��ɻ�����2����
+�^_|~
+H�����l��M�l-2�U_<c��Y��r�-	�0ő+M�lA"^*���dh����`�V�'��?�=F�X򨽺�*���X9��K4Y����pZ�M�j��.<z�έFo�)g$�4?���0�~u���0���p�;�
+����J^�6�t�xfOt��$�3��B��Gy�����������8+�&y��t:1v�,>�zk�EY�B��f.^�ݲy���yJ5K�-�v�9��F�B�
+��
��M��>=؏�	�N�n�^O��K�����	%O�V%o+Z\��0�W�z�����јb���𤃖"9�A,gH���onr�5��r�S�&�b�S�K��)?�d�)�"������)%����aXoǩX��7A�`V�ʳ��}���������%����	H����"�����.H����"�����.H����"�����.H����"�����.H����"�����.H"��y{|�����T7������/������������������������v�G���B��#����\Y򐜭����SX��3�|C��+d����0:pe�CA�5��239L��{�����!����~��<��3�����';[{l�$'�n��-K	?���+Ⲓ[����:��M�x�mhG�z��d^O���c���R���/��2Y>x��9=�
7��1&��:c�̡���0rqY������F�CJ�:�3�~Wʽ���:�G�+d���G"���Y�V�@�!���&����x�*yC�Z������J޼��'㻕����
+�A�X�!c��$������o�VH.���N�I��v��R:�������,,=�s<���l�2�U1��C����9�f���|\tΩEo�����q9�
+�ܸȻ�d׹Rr@�����.,y�q�[�D1]��AD�\��26iY��K�昙�coe��l��:�4�,U�Q�_���䧄��>N7J����������b7�iַC����oޖ�1�o/B*��|�W�Ϥ��_>�\�$��Q�Rr�o��u��ZI	���@�ɣ�_�T,yI��I^]q �kU��בͺwԕ?�|s�o
+g|/q�o|i.y�u�_*gpk��,Hޛo�E&J+�ʻE���wkq�7��?T�\�M�G��u[.�{W.Dz��Sփ����]X��6�'T-����ج�8��7�JHe(2��z��7��%o�k�&V��+y(T�;�I'7��h��P@�\�ř1ffX~5H���څ%�l��GZ�V_/{+}�q�>�hc�Jv�8��³H^�:(OC�<�����8�,λ������M�O��J�S���R^��e���$��0����9�j+���oV���&����e%��K
+���j���]�h���HH�.$.%%�&%���n���!9��r[*I>��_Q4w�.R���3~=�7���og��ii.Ϧ�e�����UVVfD� QȮ�(y�8�ۘ׷_�/�,�:��_��?�<����<��_EO�����G&�f@JGy㫰to_px�t������W6E�ǽ@gRb��
BY[���Eƅ.�,:�����^�+nPI-ye�v�2�$��ƕ%�e��cJ�\n��� �ЉRn��,����*N-�Xn�{����ϔ ���k�ʒ�~��t��8��w�\���h絭WFF�����:\\�(/�ǃj+�Ï�a�ҕ�Gނ���`�����(�&���q�0�}Հ����d��@����@����	HH���$�����P�+..NNN������v�G�8�~
 y���$o�I˲���qqqyyy���?����W�`�}@����	H�Ȓ<�\�NYfffss�N����_i��>�D�2���;� y���$odI^ZZ��Z����BȬ�e��-u�~�u�ư��>
+z;��c�%;�$����� �+--MJJz��i�� 3d,>�8v/���=��))7/���rgL�p��rN϶�wZ$����� ���̼w�=��!cѡ����
���)Ef��
�#wEF�V�7L�(ݚ� ���w*n�Zd��[���`��$y(vC~�sZ�2��}����ѾK֟.ŕ�͉>�%�9�7�
+�/$���m��r����K~���m�����o��l��x��.:X����Ѿt���E�9k+.Z��Vç
�Y��-�?p��K��W�
+��?,;���'�M�?���|�˰��~$����� ɋ������"3d,x��2��wJ˿�Px�;$1K�]L�N?�7O��_�!h�/Ѿ_���a%·/<Q�c��_�����s?�o���O8��������оg`.�<����$�����=E�8%';>�������5X:O�I$١ۦ�=C
+
+B�� y��
��$y7nܰ_�p`N�2�7�, ?��_��_yy��&�N�����Х�|m�jq;t!o��5ffL)ɶ��H*C���xd�n����NF~�4��"*y�u�Ƹ�׶��;V�4���z�����& y#H�����=�����Q��⹑{�AKW.P��yǍ��џ>��#�F��r�\o|�F����ss{���n~��o�X'
+Q'o\��m�o������.@����	H��������j{N+2C��e��H�xAK�ō�4��?���ڿ�b������n�w9ɣQ���gf_qd��^�c��Vg��&���/w]�=Q���M�����& y#H򪪪rss����?����!cѡ�	��"�[q�b���R�O�얇aY���o
I��J�Ȕܖ�;j�H^��1����3��JI�<!�Ɨ1�5V$O};|-*}W��J:
+��H���5�K?�kX>���0$@�F��!$IEE�N��vB�W����9T�pb˛cf�Ef�wq��J�}��$]��?^�7�� y��Pɫ�}�T�T�h���ű�B���m=�w�_�Ɂj�ŕ��g.��9g��W+�����_R��]�A��� y#K�
+E^^5��JD_!df��Z������Jo��*�r�cߺ�s-ڳU1�ieH��6�Y��&���������j�v7���(}eU�F5 y���$o�I������ ==���=�AM��\�<��l�7B%0$������E���!����0 y����������� y����������� y��������Vl�`
X�	�7ʀ�����	HH���$������@����	HH���$������@����	HH���$������SIw.�AKg�s�s6M5�<�����M(k���J����TȤ��%e� ����L$��|��{ZkW}[��/|��v�FKy�֩�,�.��]�b6�N�ss�ϝsE��*o���d*|sn�U��Gju��'o?�l�v�On������<v�T��u����R@�^��)2<q���.'�F��x}XU2�\��~Ǽ��\���P�1l������;�0��ռ{��C�a����I�7���-t:�_����R2�8���A�(s�|�w)���x%Ü(y�
+�F�e�9�ﰥaL'�_���1̙�N����i���,��?1�����������
+$O�|�z�V
�P�}�*�a
+K1�Je)Y�"�Y~S���K^m�fJ��������>�h���a���������moc`S�ӊ�|3~|�̎��hI$���9Z�`C���i#��M�5}��Q���}�k#P��\M)��@�M�^q�訩6���Pu�j�:g����^) y�D�v�B�/R���o>z��Pօ�S�[�.�ʓ�e։ɓ�������(�Kq=`�X������o��L$O�vx,7x�|ퟍ��\];�&����R�c�6��=��*�9���/V�9PL~�w��E{"Q�i���'���(��
+i����w3V/PX�o�ؓ�G��wboW��?���'зYE�s�� �l`s��Mt`��.�{.��C��*��fl/�?w��š55WP`x�������,Io|ڿ�u5���|��=��J�'�p���7�+q�]���o�IB�_��L+�:���	��
+t��!v�B>����\���	4���\,l�P���,��A�@���?���wh����qd�����d5��?����J/��9O[�r��{���Yik����=uy`E�,�o
�#(�����_��;��K_��[	%r�|�������q�����\���͝�	7�����e\�6'���mHS^��1����sQ�xɳt�-^Tȷq����r-:o����^�2C��qtMƙy\%�����\w:���W��\�s�m�W��y����m�0���s���>�G��9�'yj6�l2�zx��'dJ��0���.g���x�]�D�^�v��/8���}	✣D)B��R�F��_�&6�a�)�₷#u���Y�����tѡ���H_|�n��@F�^hwJT�����NLY���"�Y����=������o����jY^���X��/D�*K��g�Jʓ ϱ�;n�en1C5{���;�����):�k,�΢}�	�*Na�g�$�؜���Z�qg�<��eS�ס]ߜ��f���jCG�ҕUத��1���9�
+��J·�}�DY'��ޓa�)[qN�2�ʜ�|�=��
�S���p($����f�-ڷ�Y���-��(l��j��27wA^qVg#�P��>(�UV���O����G����L/�̋!��Y���7���D��C�R��=��W3J[Z���q<.�s�Jeq��/�{����q1W��L߄MPj��g�ĕT�D����M��CH&>��X6u�d�NWS�r3~y`zɃG������s��-�$ꉛ��1����h��Z���e�.i�x���
�[�DU�d�f錷[���quk�Zt�J�1jƓ�R4�����P�)S������Lb�o�Q9��Hې���M�d�t�R�K��'���AU yd�I�2!���3��)��G�s1�D˖�XY>���>{�J�	��'�3�梐�
+�>�2�����7�a��K�d(w����8A�vN��8�Z��@1*6�BX\�
+���	G�B%�C��[�d���Rx6!K�P���ʔ��2����H�7�����6��<rk+ilmѴ����svD���vθwD����
+ݶ$|����eWU�6q4�:��By�V�QV���.�д��2[k�$�x5�"Ho�y���������Z��&5�-�����*���[�����ʒJLII�G��l	��6�h��o���׃�s�H#,-�]'E�s��U�o1.�����?j�D�9㜷�9��z3���DA>j
+�OF�jI��m�=����'zZ��
ݔ�A:��#�b�O�P(�&�Z��FӉ�1~1yu�vmKme	�B���+^7u�
_�!�-ch�I%��o�tQ	�_��r-:o��2i�G��X�|�ն�%�����Ā����R$g���F��9�O>��`�@�ƈ�<V��d�T2I�N�MI���b��tO
+�<w~�+���ґ�oE+:��K��&�x2����y�sO�'U�7����,h��(�{�8*yx�L�����xm����r��-fH$O������X��?3f,�h�$��T��Ձ���y�%�sy����d-��%WK�^hS�s��ù\���7Z��վ��c}��0�h%�n�w�R7�3����b���Ǟs�Bچ�o�aR�.c�bLzx�UJ�A�֌�=���҆�Z ?��uݢ%����$��\!�{`.�K��6�o�����Dw��h�c�������' =�v�-\T�z��Zt�Z�X��&7r%iM]x�EoZmzPY���p���I�g� 4K1�
�3��0F��%�De.�� ����`	 ���+|2�v�LI$oJ"k*yj3cE���(���K��̺���Ԩ�	�$˛�G�q\���������,�1k���j5/y}��������Io���%*��-g�
�'���#�<��2;k��G���5�f|���{$q~�]|$d�؈�*ss�T������a~{OG�Í����$$Th�L��.e#~�>�����<�}�}��HH��l:�I 
+|������O��I���գ���<`�I���Û5����7�C^g�~��Usy����t�7q����%�K�Q㦔-t`�U)���;m{C^�����rg�4��ej.0�(�Кʈ��>g���Ee%��k�yk��q{mnF))�]Yrm	ca�eG�i�D�緡GD�n$�;A y�g�I�2�4.uҺ��,�T����Y�D0�8�v�%�ɤq�_��#y�$O��c���ב���9�C�	ȯM���qRVU_|�L\}*��L�t��� ��8^"�Ia~ ��Dm������Q��e*a̦��q:��%g��M5��ǭw%�I��r����"��-gH%/�eUWb}_t�"o �7q�@���/)�����J��A�5���x3�����˸���g~�K�/y�8��z�D٨�(Bp�;[n�-�T�Ҙ��)_��<\��ˢ�\3��l������MN�Oi�sEk�R�y�k�z���p1�K�u��07^�m���DR�mx�Mr��ȟ��f
d�[��O�ai�Zc��̺FeJ^m�.^E�[��w�$�Ќ�>�TQen$	���N��4Mi�,��Q��yx�s4��=�K�+h�ɴ#����|Q	>X+׊�/*�1
r����4�F6q	�P�]���]Z����x5�{��8�C'��(bfn�/�ű��s�����jnň;/y�a��
�N0v��E!�O�U�G����|Ha��jɉ����!E�'3I���E�L��^�rX�v>�n\<[_[|��H�a�R��7��ݟl�2��aE���䩓�}�-��C�T%o
l�
+�J׃���ؗ��d���SȬ�!O��	>�����{���z\$cP�(ڻR�^Ň� ȣ������q�f\K�"�6].�7մ��X�D��o�e5��@�/>r���'t�����O�*_b��tyd�C
+Zj�ٛ���9���o�eB���s�lf�ǽ��s�\�bZ�a~�}P:>�ZE��O�9w�'���S�� F4�3���&c&�θŋJt�Y.ך��016���^��Z���lv��x2��1O�뙌��oA��9��(yV&c}_�S(X��d��8���O&*��ܭ�������6��gh��]��-f]{{K�]�+	W���gq�Vko�}rki�;�:���괘����+�9/�>�IO~)����>
�5H����y54�K��E�2��j4��U5H}MaNF�	������J�Y1���Y�Yθ<�!,\��J�^�����Crߥ6�I>�?/��.�Y����x�ܹ����ů�������(��$һ1�o[[j��L������5��+T�#��KW]��'\��㜀����j��?�^�h��BM�A���Eo4&��ڱ���s�_T�E}/]s楓W,�����;NkW���r���=W��Z:�$$ot������M@�@�F�"n������W
�<����E�����\�<����E�����\�<����E�����\�<����E�����\�<����E�����\�<����E�����\�<����E�����\�<����E�����\�<����E�����\�<����E�����\�<����Ep.�Sdl�5s֤�A�r������&�:_N�_3w�Y{�
+��/?l��ɓ7��ݷ�I3��R��I#lȚ��<�,[�3"�X�:+x��I���)�V
+F&�H$e��g����8��Y�Y8�9G�ч��KcIom�	�J�$H�ۙ]��4d��=)&�ʛ�8�q��P%�zk��=7���>��>n��;�R�>��a������$O�v���P�Z]~y�"o�*U�k�O�K��L�P����������Y�5��,��o�q"y���DG_�]ŋ޸��zz,.�Uֲ7KW���o���X�������g�<e�a������w�΋Ȕ��8|)	�B�Vƞ�?�ӗE;B�Hǯ�<3k�����C��/v'U񒗎���]5k֤I��I�[<fΜ����.PMe�o�8�qϸ�����OW�O�^}��ww�e���*����,Q��]
+h�|�KEQ�<P��U��<��
��"$��PA��
e,�ߜs���db���72te�o>��b��}s��m �4���v��Z�;Vў
+�)��`.q�ڵ˼fϞ�&Vg�XN�\o�_|����Ke�M�m-��5uޚ�̋�f^�Q��Svo�Z�����K{��
+���}4Ua6䯛=��L�6m�R��.g�♜ռm)J�����/�˦͞=�H�f��~J>��A�'�X�<>z���2x�5Z�[se���_�T֧��y���gb0�P�٬/���}r�jZ��4mA���6�d�n[�L��5�M&p9ċ�p��5g�2N\d�#���$�Uh}�bOH���$��ª䬎��1�h���5�{��y�Ҕ��d�r93��l�"v�:.#x٢����ş�+���sZ�|��T���lk�$��{�'UP�z��)
�q� ��܌9�3��,&�~�w/���K��D�mk�:*��MaT��v�.J�e|�~�w4�-w��<+����IƜA�h��|��	��
+���*r��Y���`�'��$�\B�S>Kj'g�e�칪�J�{�k�ꊘ��=*77}IE�$"Rd���ٳ���8���~?9Ac�_�!c��m-©��*o���3뫆�� ��{�gV�,T�[��M�"~�fB��/����t������Y:[�{��:H(��Z%L�H�:��2�p�3��i�S�1��c�����G{o�Y�*u�h���XaMN�%?�F�ZHEy��Y�1a%61�� �[3%�T%�����6^�^_�H�IR�h��Zbm�\3�&%��*L�~v|�b�?qs$���צOg�:O���_���$/�����K;���3��Ҕ�<�Y���V��6��������5��bײ�b����?�"���o|�V��x�oŒg]�ys�UT��� n��<��j�1W���D撈��n�;k���h�lJ�M�{r��Kͷ�~��U~��:��g*u�<1'sy�,�V�8J������w�۹s
���O^h��]�w����M?����
�ٍY��m�I0־
+�>����qsƤ�/1�j�>5}ϯWak<��5ޟޜ��H��]6ɣ�&,z9��O�o��˳����4�i��w��ŋm
��X-����ִٟ���lk?`�<��u��y��r�9ꊂ�)�5G�X�%�dB�����4���h�ʜ�)��w�Z�t&��q�
+� nϘ�<�0�6�׍���ԫ:UPo6�^����̅�����kՑ+�C��Z�[�fƝ
+����)��q{^b�{���,}!^aF��uQ�]|ӹխ� �
J��4V��E�;��W��yIFUqNfff��ip[A7�%AqP�A7%AqP�A7%AqP�A7%AqP�A7%AqP򀚚�������8���8��BAF7�<�NWPP���VQQ����-�-$�)0�6"� #�;K�^����)..���X,Ϟ=����D8`6�-EAF�w����B��z{{�������l�*�̏S����۽w%U����'l\yQ��jK�{��j��%��A���<�Z������Cgz��0ckN}�BO�c�fQa���}p��ǽ�ə�C�G�v}���g������ /-n+y���������ؚ�P )y�lE�d���(]���,�Ȃ�f��i�3��
+�KN^Xh@�C䧌�J�n�NW$��ؚ�I^i��0C���2�%p�<'/��`�N}�F�}1��<&C�D��򔀙�ɌUI|�Ԡ�
+Z2�d���\&�hCU�voOJ`L|��	T�p�����2f�����������oKh���+d���%��-egf�{z��Uы�Mؿ��L_��&�Vyn��K�pu����ȷ�����I����#�� ����V�222�<y��[s
+�xL�p"1##���q1�c��l��ٗ(/�'Pe	Ψ#n��p�|�4;n	�}�9JEVЂ񓧟"�c��@J�o8-W(�"��Ahv�m����-��.S�S6�B��I�a����ELjOħi4YR�c�%��B!��th�DŽj�:�R(���Ki�
+�ަ^/���1iu���'���2JK�<&�x�����?@9�?�G� 2L�V򲲲\�<0�椒�0�
+Qo"yD}�o��_�>��瓼N�i�wD9��2n�̢2��I�Q+������Z�V��	9���RQ�U�ły���R,yLpI!T��N
+��\ *�b��E��W��&mw;�I��R�Z���
&yT�	Չk��������AF��<�\~���&[sr�M�M/:�!�����.5��,6eQ��Ӗ	+�jEu����n�?+�N�4���d�kI!K%���h,��hi�Ն�m�
+���/�ߕ�k�<���E˸��UUU����"y`�֜-_i��9���|��J��&O?��$��֘ H��DŽ=7������|��ڪϑ�d>_o�U	/�/�����Ӑ+�_s��OP	��<&g�"�Ri[]�I�H�rBޟ��pT���/\2� ���m%�������ѣG��[s�b�2f���T��i���x[�
����^�	J�F%O�*^	+�mr�1iuRi�F]�`����@�zLܜ��Ө����!0��Q�M�"(|�ҋ��*e�a_2�����(y,
+�Q��A�<n+y�R�lhh�X,��N���d�sy�RЧZ/��#rL���@��ʦ$�:q� R5�������n:v��0h�xf0�/`���<!��@�:�-��Ewd��Z�F�})l�Y[J�-����?�!N^Zh�$UO�~D3܏�A��ĝ%������DM�׃D8`6�M�^���p9�z��9I�z�sh ��������\�� �˄;K���8q���---��'8������w�Au�1���E�� /n.y������*�\�M�xk3�8P��1$E1�Ͽ ��P�A7%AqP�A7%AqP򀚚�������8���8��BAF7�<�NWPP���VQQ����-�-$�)0�6"� #�;K�^����)..���X,Ϟ=c����D8���FA^
+�Y�
+�����u��cp
+��&��"�����W`����ʗ��4C�v��
+��e4�'n�K�zFS����6�_�J[��>��o��DG�j�Z;�� /��<�Z������ÁV���9���7�DF���#{�{�JyI�m4桛��fr=�)�����|-i);�m�4Ut�㏠�!�hᶒW\\���<��1���9�N
+ᢽڕlv���4����J	�Tbxކ�u�u�����?�=���ɏi/,tA�\����E�><m�)>�͂ ������v��-b�ؚ��<H%k/�V0�����m}��K.c�+�z�����$`�oٿ��
+��¤��/wI� B���;02r�
a�҈�����a_�茌þ�1?�2��B����;ҕ-4����1�Y0�	
%�fl*aC��6a�
+֤�+C��D��*�͜��30�7��#��y!t��gw��!�W�N��'-Xv���|Sm"_�O`���J%�����VҚʒ��v��
'c>`��Y��xL���v1ͥI�{'��th�Jn����CL��������ТH	X0�}���d��u���pr	1[��dfF��~K8�m�ϑZ�aP��
�qjA���J^FFƓ'O\�<0ckN�yPpF�^��j5�"q�b��mf�5��o8-W(�"��]�ɶ;eQs�ҙ9�����1+:�R��
+Y0�c�����D�|_��
�iJei��yt��fn%R�1$>��F�N2��g*J�N�z�
�e1˄_�n��������P�Ǭ��K�)3'�1�b���=!�H`4�+U��P���~���W��J�v���N���'�����_V�
��A�(��l{��+[��K���v{�qp��+�\D:�?
+:�ʡ�p9��r�J��Δt�����r��T��P^����P�$�v�:�^�X#��p�PȄ������P0�Q�U�
+g츔�Q�i����i5���zoyL�7��.� n+yYYY�K[s
+V1�Eī��{���c��<u�V���o�6M�9��ݹU�a�m&v)G���7K�
+��i	"Ȱ/څ����	V^6�!����LXyV��C1Z�eO�Sm-����f��D���u.�������6��o��+��GB�0z'�Wj
��T��i��F�A-�ne���U�K�z�bWR%���׃��
�E9Ij_��%��c�~�6
+$8�@����♒�.�,�S���!��JJ�'g]M�!�c�&�bd|��nU�6��e��7��{�&2�xJPpA���J�\.��r`��9���Qc`�^��{�FE.��B���GA��N
+[�F�!�Y	"�,mQW	#�pm��veԓ$SE��$�r��R�~>a��U��L��#y�Q�
+�N@�X�R8�<�A]xx�������5Wg�mb�=�A��
+m;���Yq�ɢ������b�I����|͒�.J����M��KQ��t52����NQ���>���{Iu&sN�?��6e"�:n+yUUU---�H���5��\s^ F-�	{�@��4=)�LаA�����V��O'�zuN�.(�D;�� ���^����&n��M~rr��L�5_?����
+9t$o��и��+����#��������*�Φ�k&����W�r�ofg��y�R�
+��:*�_�cҔ$'gkL�EI'����Z��ꚮ����%jq�Iv�؀9�µ�\�*���~p�ꢓs=&�n���m>�_���;��K g�>�"c�C�_�gadlඒ���T^^.��0�3���R�|嶚D���J�fl���&/�(�Ѩ�BfN`�Rt��lRI���9���g%��3nd��F�&�<=�sg�*.|�\69�dN���	MU�J��b�sy
'�#�̯T)���{��6k҆��F�f��x��I�ȕj�F��
+(u���m4��!"SEf;S`��R���	Z���ӨKH.2�&Q�Z�|���.�?&S�V��NؖD<�A%O����5�YHV��Tg�!��@�'�����t���9Vf����h"�,j�$�ֻx	����!2<�V���R���`�X���0���.3T�������5��B�l�����'U�`K����dNU'7z	�0�.�&]�2�ܿ	?�bd�h�>��
+��}����d���uQ�?E(~�L[J���q�JS�!.�:i~@Ȧ��4�^��iZ�L�cv	
���pWEaЂ�\Ps��$E������G/p���L��-�F
%�M'�.F���ΰ�<�\*zlA���SC�B|/khb{ݗ샣������+��Z� ��pg�kmm����Q��� N��
�`�^��;<l�M�d�d	�p����Q'&P��b�D�d��D�)�:�&0�D��2
�P�dQ��o���q��C���\��
d�w���p	�pAF
+w�<3U=p����[ZZ��O(p�o!N
]�^4�D�qN�M0��߸�E2];�mA���n.y������*�\�M�xk37�0�G���7D~�n�ܾ��P�����<đ�� "���h�UC%q�dW�@ĝA�C��i��� Ƞ����4@�CdPP�^R�K��ܑ�`������'��x��ݮQ%A�AA�{�$瑩cG���DY~�tꙧӢ��-$�)0�6�(y�
+J��%y g�S���"�����$�)0pC�C�CdPP�^.�'ΙމU�l�*B�|��|~��2�����۽ɾ�υA�Ҍn�IJ^�~�lGn��oH��9n}��������E�Y�zJ��{;��r�
�W�y���j�IZ�Q\���&�|�Y&;Q�\��S��qy� ��*����O�J���1m��Htw�wtr��lzR7}*���������c袏�����#�`����`9��5J�K$y�՝�����nڙ'S���b�3�y=����!��'N�8��o����D�S�G��T�}.���_������y2�i�7���8Y'>��'��K���K�����U��V�j�SM�M�ƞ�_��>|1mrʃd�-��+D��e���;��3�B��3U�v�X�������.��8ޥã��$��(�<�E��_��Vw��,G�F�{�$oGƃ�DY��nM�㢯���֥?���)0ckN����
+�Ŭ#?�/���&���^�кY�P2����u��,���&�����3\����?����W}I*y
�Ñ�W⋹�W*uHX�M�ľs$k��!\�k
+eӢ��!�}V��R������;�4�ϧ��ug����A+��u�T�����K_�K%��P�:��}4�,����I޼��9��տ�K}���9��|=0ckN�-ij�<&�_��'l�
+N�1��a����$��П�7������<f�%��E݌���o�p�D{�������qd��2����!�
+�A���s�\J���,�$�������I����`�q�;㸈�����J�)�g�,ymE���B6=��:��r'uߧ,���w���nyBIq�g2�%V:#_�w��~͝���j_��7s�˝$��_.ޯ���2~([}~��o��;RiҺ�R�oz��$r#��f;�ܧ�����X�W\�#�b�
+ %�n?����uF��L��;C��O��W�e1%�F��6��Ky�����^���?����o�?���-���%W���s$�ܸ���������o򮥥1��t�}�!]����|��f��kٖn��I]��KXt()f3����E7�����s�{�.��[pB��L���g�_�/]���:��{�-|.5w�:�<JZ�����n��h<�7�S�����}�o�Gv7����BHf���Vw��Wo�)�н2�/×�/u�=�uu��G��%�ᶒ���O��&�t9�����=0ckN�]خ�K�8���0�,�\�v�9���dA��N���H��Z(ّ��|7yi\v��4=�c�DŽj�:�R(���Ki��F��*d�4O�����}�Ⱦ�-t7:"���2JKAp�]J���SKl΀A�HH��[W`\R��΀�G��?�e�
�����$�֓�MF�/�5嗈�,O��r��������Je��{�"%�O��+u�h���4��s���|26w3�|k�鲀��:]�~>:��J��[��];�g�(��ْ%��Ɍ��Ƣ8��O�[�~�*��
+�zbh�ˣ�
��M���5���(�w�k5�ꄞ��NJ��
+�����pZv�o�Wby�A#�L��t��	���9�\�ή����>���ԥ�ґ�c�Em�֒��ZMm��d��K'��RI��3�:�&u����K�>�B��Nd��~p�F�<�t
� K%�>�wri�߂/WX?5Kguї���\QT�f鿳���H�Π��n�7�n��ې��Z?��!Q��x���$�~�%%���n_#�U��֛g��{�p��ѭ�"�=/�����[!�|�]�O��8<�;����1�˨����m���=�x�c��͵'�f��������Z�V�����D��Z�Exp6�͜I�y"��z0l��v������L�3�u2Չk����B���]���䑿���~X��<�Wy/��Ӿ��ۭ��t<��aV����Qw��Gt� �7�˗�Je����Y�q������\S�@��K#k�[{U\��p��G���B�|��f;��$���4���9#9{ʘ=�]��:�C��%�-�ʏ��U��@�-�5��hh�Uʎ�w��Ld���B7m_Q�ӻU�'�L�6�C%O�R�~�Qo�IS��H|��v��ɰO�0�
+^�yoQ�芮EG��s�W#���[%�(sZ��Ʉ�k_կ�'yi��7�9;�S�
Z�T�e4�gg��n/��	w��
k����cE�Gwjkk5@m�����9��柬1a������d|ڡ��@4w{�ougG;�߁���mɾ���e_�q����ᶒg��?�fq`����J`Ӕ���OiŒ����'��Z̄�gk����F
�TD{�B!�…���V�ъncn!/]Q�+K�Vy�S���9����Z���$X!�����Vl��_��b�$�����;�1�=�|I����3��k;���½D�EɸG�2�Ur_c�#cN��{�
+�*��K\�4[�d:�{�Sf�A�;utB��O���t�a�)!Yd7?�뷩��N�C�4��74��}�-�p�6Lb��f�CW���!Թ#^�k�9>�n�Y��~~l�'Df�K�k&1@�+��sɳ���
�H�K�ɓ���h��+�/g���m����{�/T=�"y�t{�N2��a����;qO��~G����a��ꆣ�1�V�얯��H�'-��RU��"���/_���r���%�&Jg+yr�W��DŽ=7y{MizR~5�\�l��۔|}�J�ݷ��ɛ������̽L�8�I[N��V�
+�����>�%�^�6�l�~Р��Q����R�ʋ�t~���6݇����%����r�!3�����N*�m��X�U�Ɓ���2^���ti�Y��L򦳼R�;+�� oI�/�>��A�Υ�8��-ͼCu�8H��gC�F��$|yFu[�����I�o}mW>���̦���A���w���T$m�QĶ?�ZH?V��]���7g��H�)vAʂK�tS���'�f:kf����'yi�>5�����ߛ�B��r�N�l���������<��ޒ=�,�=���K�&8?��Z	�=d���l���(y��<LJ~}���]Ɖ�&8�!C�T�c����3��5) L��<iɻ��l���J���JX��\�1�c��tE�F��`��C
+`��֛�k.S��\�Rd���>g�l.�V��i�8�/%mS\�$N�sy=0��%�� ��tXM{G�����d"��0��1?e�����w;t9|Щ����-r��w;b�b��%�ߝT�J�z����N��*H����t��o�^_V��
l�dz�st]�5[�di�{P
+��;�Z;��$&޼��A�ȶ�o��<�u�-��5���ɴ 
�l�&��w$�޽U�N��B1�(I���&�r^�?���l.��ݻ��=2�t�]��fm!����惢��;�1d
��⮪���ԟ��{�=��_��-\~F������H��{��Ҝ)Qhy�xHe{I3:*�����n[�����nG�4�ʨms�}Ʌ�[��d�g0{kE}���{��I���
8�D�c��䙇�(z�*������a���6syB`���b��u�v�I�0s"W̌Y�Ư�Q~B
+[S�O���L_y����'/-�	`��'O?��߳�>����?�2���,0�
+A3`Qp���r#a�����G���U�j�5\�Aג�o����}Ʀ�/������z� ^w��O��^���h*�\ٌi�I�J�jt�r�l����!<����zC޺(�5�!w�}�*P"
+����U�]}n�C���nUD	]���&Z�ӎ��B�/������Ook�����o8�x,�9�\����|(,���V{Ҽ��љ��_���e�i���G�`�~���sy�e�U��{��Ҥ?5@}~���f���5���#K7����F�(�PnG�~��>�5���<����z@2�=�ً��|������M({��@�`9�?�@�{�$�G��1�^��;<`g �z�BFa�.��+��g�{Wꏃ�wt�9�ǚ,�=r|ܩ�ѣ�G���2:��Ap��s{�G���''�v�d�#h�؄8��S���A�e!U��������n�R�Oi8��IZ����Yz%[n�h+d���F�K<mWB����H��U1��=������Y��8P�^.�3�T~V�:����	���`,���ӯ}�7v�K��!��G9��~ѧ�S�0텎��K��o�����m�m�@P�^:�c��U���mIQ4n�cY��:JO:%����E}����7���/�E�����3�[�-������� xQ�佤���1�%A�1JJ�O��� "���h�UC%AqP�A7%������KNN>K�x���.d�u��hlii�j�
�T

�f@cF�?�'��K�N�+((HKK����A�[
+�[H�S`0�mD~T@h����z�7�|�����G*����h�h����pgɃQ%''�������b�<�W�-$�)0��8����'��3*�ǀf@cF�?�'�;K^aa!xs��NׄS`�f�ًb�-��)E����K;��/��^�6���l�8�-�ڽR�ٴ��4�0�0\��5��cE\yu��w��Z���X��u���/�"���� y�h��Dq_�V��junn.�0?x`���M��/m�;^ଊ���'O?5�wr���|��Ե�K��������c�����KD�==|�Ge)+�	?�=�����#L�*c���t����1��@c^�%"��ⶒW\\������`�v��>>K���������Z������&� ��9�-�
+C��q�r{��9�	h\����]?I�q��j�	v'�K@=���.X�؝���������v8��}���I-�t�hU�����];���4w ���;�n�<3�����tE���ms�c}_�᪡�xgs�f;&��~�d���hU_.�<3����s3'� ?�ij�rh=��’�l2��U�[0? &2��sᬚ�HSѥPV�����Р�
+Z2�����\Ʒ�*j�7+!0&>h�{ɣ.���z�����)t7�2�+��sC��;�d�Z��;Dl�TV��s:�*������i�����2~���k�5Jf�&A����}��32�������%�v��A�e1���R���%�6���4"���
N$�|��C\��7x�N$�*���{���ܷ�L��}c6s�h`Gcv��y$O"�� �sඒ������W$��X�����3��N.7a�y�zT'�%Ctd�RY�ۉ>��5�9��HN�g�╝�=�Ttv�RY���lY��Ǥ�I�e��0�����%o�t��4��4q?uДmf�50��\�H����D|����9ya\v�B�¢���$��"]?�U8;i��yi��P�lp�6��*��q�6��D���,�S���	Ww��U~].��M���vI3��dw��!�e_��sW�HS��9�h�[�J�����R3J4mBи�
+��g_��T���}p�>PI����Q�9W-��N׸����%�<�����vK��J�4%�� y��ԭ�v�U	�K�:�"{(y��p[����r]��X��(j8y�v��D.��4E}��X'r���|_e�M50,O^J6:��ն�Z8�Ud���G�Ug�Xn���]4�.x�~�uQ�
ɑ�Y�6�=&n�S7k5Z��&TG6�m�
+$8�L��$��<^*��;i��m<َ�I۸�&�&���4��@����w�������]w��_f7�I_����1�͖��g��W�~*6��"�w�>�����UL8P+�ȩ��2����P�3��&S�Ç��
 i��{�]�6+�����t=��\\��j��A����q�ސ=�<yq�������.6�X��f��$O[�#�a`��A�u5���N7:ߕ�k+;�i	f�Ng�gΜ̶|�۝s�
g
D2^�g�N��֖	+��%
+e�E�Zk?�S�a�k�T��wQ�j�1.\��l�J�h�n�Y�\���l�ª�v�G����]�|Kj��/æpv��1�Y�k�m�KW�J^��D1���u���M�&�&�WN%�aw�6;K�%)l(y2���UUU����"y`�B����0ϨT�U�Z���{��%�
+�x�74$��i?��tl�?��g
G<&�Bi���Rt��I�j#�J�ə�_�'�|����Y8��)MOʯn�>G"�����Mk���v�x)���;�59t��J�MJ��<��zy^�
qH���8��4`��,5}�^BNQ��n��i�f��Vd6]	�7�t']`��f�����ԍp�d'y] y%(y2�p[�kjj*//t7g0�3��Q��M��1��FTTs�A"��͕�d�E`�u
�Uzz��+Ԧ��sX�]�	�U���R�Q�_$3Y���ۜ�J]N�\�Ѩ��
+���,h������I0��B��G2�VZ�Q�,'%y�fy8�j<�f�u:g7ɋ�{NXyJ�T)��@�$^���\�<Nqb�Ѯ�Q(���Fab\	铗^��hTy!3'pm��$YMW�iT%'W�6��Ȣ�2�������b'��V���R+�"�o�-��EI�������tu?����2��	�vߠ.�����/���������]:x�[��}��j�s%A~�V���R���`�8݀N��Y�����7l
+�!M:צ�Bpc��N`?(����4ߪ�5����Ǭ��7����U�fNVY�����]C�no�>,��+$;\X09C�M�� �Y���UNbzu�g�U�d��X��zj!_����+h{��M6���r�O�bS��̆
+�€����6�F��Y������j�D�dp3��\­�i=��OEA�#rX@K��J�?������!����A�L�*n��R�$�������~��,����.�M]�;�ż�ץ+�*n�@�C�w����֊�
+5I_��ِ�5�K�OM�cc&�s���13�d*m����Dy�Z�F����d �s4]:!<4A�֩:�So�
�o��k�_��'��a<�������a-�p׎��!���Βg��N\yyyKK4�	�-$©���`�k�l?s�N�t���h:::�$y#�P543��� ?)�\�MMMUUUr��E������>'���C������J��:�%ұ�N��w,H47�@��%A��F�Z���x�Νђ<����̓ddA�C1�n�2


���
+���G*�����"AF�<q��=q>*@�(v�"@�CA��<A�M@�CA��<A�M@�CA��<A�M@�CA��<A�M@�CA��<A�M@�CA��<A�M@�CA��<A�M@�CA��<A�M@�CA��<A�M@�CA܄�&y���^�fϚ���(��Z�m�,/<W�lK�7M�={ޚX݀U(�̟�m�;��Z~&�f ���]^�ޝ��z���]� 2Fk��/�����ݖH1dϑI��R�,����ݡF���\��}GJ��:V��=� �Kʘ���ˡ�7�zg�r*�RY��|=9u�\a�GL�{y�㳩��H�7֥{�w��<_l���j�p5.�n��E'�؋1�N����J�� ���S�aF�����ӄQ��ݚDfS�|`��ş������N=2�mvY�	��6���ڝkؙ�[b/R�|`g�ޞ�%$��^g�[�w�g�ĚcWR�w��k"o��%
8�=�M�:kQ��F�E1^N�{�\qM�J�R^[��Ŷ�$y�<�d���`�e#WQ}Z�K��v-'|P,W#Q�ŋg���n��"f	��[ײp�jH�^����6{6+r�A�Ӽ���hE��G��	M H� ���S��x�M��"yf��0.�w�8�v�T�y�i��u_.�5oMD��S�+���Cx��=�fc�r&U�yuuu׎-���OW���9�s���&j;�yަ�(v9kB�sR��.f�7b�Ad���LJ.
%�YJ����w%999.�s���W���@�Z+
+
+
+�� #�:en�)n*P�Sdd�����2�FN�YD�t�i|�ksX蕶���z��tm� y[�y��%-�#�� ��3�$ϬO�}�*�{����	�Uf����$n���:A��S� v�3�ns�
��te%���G�:���hL�~�����/�$�A�r���HAY�RWt1:::��F"9��m2�j>@ަ��qqq�5:]ݵ����=\)� 2R�9���❜is��H�f{����'y�崈
+o�YΥ�;�[���}�`$�k�N߼�u�^o��}�(Ԙa'y|�R�����B�Si{}�Uۇ�H��������G_�tl���JA��d�I�R��3IJ���+\��_�)����=}���.��G�;@�F�:f�\��hekZ�R!}�ga��P�[#�$o.]�b6k�EEA9d�gk����|`S,y��5�7���L�~7"� ��Eɣu�dMf]��E��0�B��q�̨ӵ��$N8Jjl�9y2oXy�:���!� �e�J� ��,(y� ����� ��	(y� ����� ��	(y� ����� ��	(y� ����� ��	(y� �����8r��-����РT*���Jy�����m^��O���I?X����^(y�#�w7nܨ������G��g͵'�3����q�5�]sͲ"����OV�<.��i�J��w�����7� Ȉ�2ݲ2��=z�2����ʓ�yF{z!��!�(��{����(� #�gi�J}�Y{ѷ� �	̽|S,��}�ǡJ�Hqq�h��"2���X@�|��o*9`���������OF{z!�Y�3�rv-����֜=�
+�?�P|zڛ��.��HI���[Gt�;]��O�T� fٌI��k(9������6���p��Kg�ݫߠ������,X��z��
�/������1�����f'��}�T�g�ڶz۶5[������x�oqH��+ҥ}ߖ���a\�������_X��~J���+䘾������Q�������za����fuR�3s}a�L�^�n�%�0�_dS�5�d���d;2�p6M��ϳ\���RPP��/��4�S~�.���^U~n۟A�T9��~����ܺ��F�Ǘ^�x5V�~�gŸ�7������C�x�Y;����JN�@��2�)s�:���������!^�߿��uߡ_���,�Z�����5����	��O��y!P��m|��u���Xg[��������d�s��o3�=Ƈ��H���F���d\	�a y����vO��m3�DS�a萜 y�&���<��=1�s�����'���G��}&,JjuH'ʵHJ�Ӻ�L����p�9Z���d��fH��
q��l�J�ӓk��Y$�A�~
+�Έ Θ{�¿�~L�eo?�����9j��1�ɻx��HK8)��BJI�-G��!ޘ��m.�9�Tf����w����ҧ.:q�W���A�1�7W$U��4�7�]���5,y�����2.�*��fu��O�X��/7�5�0��L���ⱫO�Yz�*c����y�r�H甄/Y�7��2O;csky�2��5��׽-!yRm37��f����έ�@K���-[}�tH�?��Ń.$�w)�����6F��c���Zu��$I,y�o�Gnaa��Gs���u�6?f�,������}���=��_��ۊ��������sOu���,y\�C#��M�y!��{��W$��3}�������
+�P�*�a�ށ_�q����~��]��ޡem��_�8�O��鼅�K^���)�"J��KJ�S�S�u���u��l��Z�Y��;E�H�,�RqEA̶��*y��s����GA�%�|�%?"�W�R��dLxc����+��2��]����2����hj��8e�4H\Qe��Bb�"z(��8~�t0N��͹��3�+�sOϑq�I���)��k�H��J-,ν�:!(�I,y�m�]s�m��kћi>*yF9�>���<
+l>�M��m�����:'��Ð~4�����E�qV�$�q���S<���բ�J4)�8P����+$���V���O����ze���=�xIYo�ux�<(6\i~��������p=�
+̼��+�7��96�$���pE����R��TmI59��xOUK[u�N.c���<���?+��xuk����v3�g���;C��2#���sO�_�z�?[�Lx��)�[x�����5��U�_��n$��Ɍ;�v�,Ϋ���'Y�F~�g���:>44E�I�i%����4�'Qj�ɉ:���Qר86;w���T4�g�
��e�g��'�<:MY�km�*�-n��,R�W�7�lP^�e^������Q�2_�)3�ik|��2(���B� y�m+<�Gqa�"��9�I�a}Q�1~���f&F���w=~����\g�˿$���9djLn"z���W0�����GrMQ�%�/NN����0�uT������-�ֲ��Kހ���H�byOi"i0�d����uR[�{��}�JF"yo��_������NKS[F=�����������`��,?��k���)��;����[{Q�%O��sJ�NU�[,D5��ʜ]ĝy/���8>[�WqP���
��:��e��ؓ�&�89�Z���JFP�K{W�ͧ�9�f7�H��^?�co�s8��!YQ�ӈ�{9֥��C�	l:i)M�O�g3����ǝ��6!�g��h<�?��W�� u�Ĭ����<6�a��k�Fp��EH/S��6!��"j�ID�<�����ˋQ~��d�q��c�r����Һ�$	*F
+�m�E���_#��&�;HFP�GY����5�DSO��3�5��S�����������1��l~x=%�Ǔ��]$�X.�n��K�����O�
+���'��F���5��.3�-����6����"#��ߵ�n����qbd�N�X�T}d�ϕ�����/O�XqBf�:����^�Cۨ��S��Xu����i��WЗv��aL���=��
>�q}Q���{;/����ҥ/*���\�xҸ!ם��V����	/��DG'��V�T5�Kq��c��N���&�H�j�t?HH^�w�d�UWO���[�}.'�ˈ C�_�`�_����Y@�;��K!g���I����x�gPD���]!�D�Rg��Oޯ��&S`�����)/��gU&'�g�B�`ܨJ�X
+�G*\�<�y���\^]]]�/;P�7[R����ͤ���c����$4:16��D�e�Tשr茡�\�d�L�$�)[t�XU�H=�0��Z�nڛ�O�����HO�eM���ζ�<�)�O���BpEڮ�Κ�}p�r�{�\�}��j��թ������^\����8���䙂�0�O
+���V�]����n��������:m?���X���H	�Ϻ|�ʚq�Z^__�ⱝ(��$�D���ɓΨ�8���uuui��!�rY��=�H��-w�Gk����.��]xq7�9�����3��}�%�0�����c��)y@M��9���,��:V�:f�>���/���8��Դ�x	�uL[���iD�W.�H������ſ?;x�!����w����MM̲�ry��^�M�1ܔ�ubl�]��ng������'�6��RA�ٳ�Vlz��n������g�M�y�>]���39`D�kI�x�f���$.��]�
����B���FV�6������%�'�,0��>`kD�}v�6m%�<j�o�A뻾�OvaC�U9vN��K�h���/��)���+|$V�l�i;�rنp�:������BbHR-k3
�nga���op�b�3qwa�q/^?���Ǟ�9�B����kw��}e3Jޏ*y]c�px��ت�5:&;��uƃe4B�D��H3�C(s�ܭ:�~ms%�+�|��f�;>A����G"�z�1���-4u��Y���:;�����U�]��9X?)��:A\d��g��	� G�c�-}��z��Q�<dT��y�x5��+���j(w ~����Y��a
JJ��P^^���9�����x��?�<�������?��?��J��P[[[]]=�����cy��~�K҅��-�yT�h�C/�<đ��V�\�P(���������?{��s����(��w������n�{j��.ܺu������4===99���ˉ���\��/���e	}	����M�X׻��/�:F{zQ��!���3�����y	i
+�����?�c�%AqP�A7%AqP�A7%AqP�A7%AqP�A7%AqP�A7%AqP�A7%AqP�A7�I^{{;~�2ڗ� ��5�� �3���P�A�Q����������e�/AA�L�^��1�Umoo7!� ��Jz���$AA~2��!� nJ� �&��!� nJ� �&��!� nJ� �&��!� nJ� �&��!� nJ� �&��!� nJ� �&��!� nJ� �&��!� nJ� �ܹs%AqT*J� 򓧵�U.��A�m��� k�
+endstream
+endobj
+
+1251 0 obj
+41480
+endobj
+
+1252 0 obj
+<</Length 1253 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 589
+/Height 462
+/BitsPerComponent 8
+/ColorSpace /DeviceGray>>
+stream
+x���	������%Q�K��l�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#��H�

+endstream
+endobj
+
+1253 0 obj
+297
+endobj
+
+1020 0 obj
+<</Length 1254 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 589
+/Height 462
+/BitsPerComponent 8
+/ColorSpace [/ICCBased 506 0 R]
+/SMask 1252 0 R>>
+stream
+x��	Tg��_��s�y����9�=��sgn&��ɢ&1s���%
+�3nh�LTt���%3*n�\X"(��T�7i���&�4�TP��?KUuu�M7��M����@�S�z��z��{�������\������������.�����€����.�����€����.�����€����.�������W��k;eu/���ӹg�4�9��O(���6�ȉ�m���<��U�Eq��9y���x/���⊊��~���������R�v��|y���O_~��j���ޕ�FgH�a�5��kt�W?jinnvt�p���W��%k��r�����UUU���H��J;ʜ�ㅗz�'�p���᪖䣣���q�����c/\�^����W�ɋ7��d2���E�(v�����Y��*^�U\/�;ZC/��������q�����c/\�^����W�ɋ7� 5)//��*Q�(s��]�%������K�m���s>|��fq���W��%k��r���
+��J;���.��������ۃ���}��ƶ�BV�7Ί���=<�z!Q�񼴔^�8�]�'�����8�yg܆Y�������S�q�Թ/ޚ���+�6g�inh���l�yQ�|�Q.$��g��Ň���e�M�qG�EZE쑟�:ې��y!�lyܚ)>1]C=i��J�uC�\]sɡ峹���y�dvi�a��6UJS�;mj�-D�/:�d�{>���.�)C���sk�M]�Ԭ�d ��2e}���p�tF/_tY�c�u~~�]T�bG��tL�Y�nA�ֆ�cQu{�o��e�
+|�_K���X��B�o(���E\#[NJc�N܎Sv\ɼ]�w�w��5y��Ƽ0�����E[xp.�g`�<a��v��rl��l�y��62̸����f�>����,h�l��v��{�x��t��(��a�KF�>�l���0�
]��	�����@ΔgpbVQ^�!�q�÷6?��0kg
�*�-��0�J�O�3���%�!��|t�bg"���)��܉��#�����J;���hgGi�D��p-��{�[$�	V�����(����>���]Z�
��O�of��Wo���;�a�ni5����G�����3�6�'��!硫��L/��)��<-��I��@�O���y��ٚc�@��L��&��t��8P�D%f;#%��ʥ���R�A}�M�oK���N��^�����>/�Q|]�;?��R��^�����d�[~�h�>�������W��,����w�|}Ǵ(Z-���~ʌ�a���Pjhޖ+�&�}�@騗�����9ݧ紟���U=���X��w�}/�����к��s{��G��������|j�ï��<�k~�1r�z�Z�W����!65:�B2X9?��b����[��A�.���eaw�	���M�Fs<�3��~�̙5��Ϯ�9������2O��l�\)���J�k,�ڻq{��fo����*��:{7�q;�+��%%��"1�.X��<-7�o���sqXܡ���H�a��k�#tF/��n�,ˣ��Ɲ��6-���4����+h������E�a9��ލ���⽒���ۋ��ݚ�
�����'��/��0�c�v6=�]��g��
YB����+M���kIOC-0���p�ԍgC�R�)�"i�zm뵃��pbD.q��,s�_fNK1��~�4y
+y��)CI��EE��)���)��L����_p��&n�x�JQ�;}�O������vOC_��iI�ه���s_�����=���De�I��OG����_s��nz�LY����7&�c&��p��	�&<jm��x-�e���]�ޒE-�Z��B�a��v6�w�+��{�t���>	ס0���n>�P%��[؋R@��O%Z��,I�n��-��@�C��C�	�G��V��5��U�m�u�/��󓕂�%a��t�d�[)���3"���E-x4u�V�N�/���4z����n�Qݝ���;~1�����p]٠L
�m�zl�`��~;��PK�ɪ򢰶�ģ���ߏ6�&�:ȣ���^s7?�]��cS%�};��9W�ǿi̟.�Ȑ�g�V�#;���m�J����o����JY�ڡ?!��6���N�}��Uގ�E����P�SnWqz�œD6)�xƊ��\�s�ϼmy,h���Xog���
+%�G@�mΆa�.�+�\<0NF��!�n�>8��"�,3u�#�,�UT�<�RY�G�v���,s��
+:t���Ɛ�׊�F�nhL݂���YlUn�w"�P$.����݋G�7���G��a���#���\uF�ezإR=�y���\'ۑ��g��m��>���� '�������}���	w�����f���7OH�RY�=��C���gf�M�W�{������k�.wV�SYeU���b脂����^���dli2�<�9T��j��f�ٕJ�;wd��[�Q��P��>��\�^���QjP��s�}�����a}:��R�-x�B�WI�C���M�`�,_���}�܁�Qߦ���H�
+̗�P¬˜_ɞzܭ���w�:ϡ;�5t�ݝ%z�.�|��7z!)�k4�liUs�unxݯ��Q�ڮ����.R;nX�,���P�G-mְ�<Y���uIӃRF7Q���m�+���y0̑V�ҒV��=B��o��(Ö_�+�]�{WZ���C/�=���t�?�VA�7���NcDӂ�_/�q�-���y'������~�:��("?2w�A��ӗlnr^��ޜ������W�0o'FlV�0�Pq���ȶ���������IIM:& 6���K�^_Uʶk�f#��7��?N�QL/��T�G�9��SUZ�d�����ժ�?�̎���
-w.�����}����Oq�Ӯ�N�7?H�Ǒ6_w��z��G��h䁜��%�!f/גIʭ�BBrz̷���	bS4Jc?��� Z���j�!�\VV� J�R�駟P�


j˼�S7�t����o߇��ÒlT��ox�s}�������:]܅��wp�:C�n�fH�j��)��-xpc���B}�c}����V���G_0M�$�*��4X�9z��Ev������BӼ�1���{'A��Z0 7�h�./j�4����ĝv�^�K����[o���sUH������dmF��Y�н��re���l���/���Düy�F��dN
+�����H�<E���K����P-��`�n��1~���
��=�eRrK�l|�������&NJ+n,s¨�(#e�/�x�Ο���u5�)5������C�B�^�qg�J�¥z��U��Q@Jm&Ҩ��sJ��p�\.��T��6~=�n��}҅�p���3�(���)�O}��Ԥٚڣx�a4?�jP����	]��?1~�������K���a�Z��vKM�a�5���-���ӵ�Z���
�5H����
+9-j�۷o[����S�TM�A���v������Ah?z /��GN���v!�oQ.�I�v-��eH�r��E�ȶ�����ù�e��W�� �`����H.0�zm�r�t��a[x�V
+2�Ђ�q�U��Y�/m����ƦU���eD��rm[ebb>yg@���L�GV׈����s?�v���H�z0�27���O�3��Cl���N<��'���18���^1A��n�g�F�y�e\rK�lT#*sj��(s��n 1n=L��6ڧ���l�*s����G~��-�꼝�X��ӡ�H�,���n~�����F��&�RA�t����R)nn�[W����&*�i2��������Te$�)u�b-<����7[)���6~L:�)onF�~Cs�P<&�Je��h~��/u:�n�u����a�Zz��F�/�O�>�k����֠��a�BG3onp��b�TiH2��ٳ��\K6
+�BHy��_��7��(�[
+kH}5��{VϒF>s��x�-��+뱾�o#U��p��5��/��xg%:K���|�KxX���Q��G�����h��N�K@<����p�N�-�����:��ЬL
�S�kT�.˂���K�]}���ښ٤%�M=�P�_~�~+���MlK[s%�w���CG�2A뗍��|��b�]Q��%:'�H��&Cy���D�3��V�G��й�V<��x^)�7(%��A�O��s��a��^�������9�̿8L��VWt��kzRs�}e��K63eGr)�u�٢���ߤ�"��ڛ���KH��,�5:c���VF&OOW=6)Ԏ;��O�*�yx������R�*���)i箖��ŠVm,���?v�
�훭�=��!�t���̞�<�G���8�m�8$�9z����"�#L"�_�%T����f[C�A���f��֠��҄�ƶ�2/ig�S[�k3�9�lff�%����Ar��ƾ7�׽�}	����$l��'K���T��w��r$���d=^��t��N�ː*eq��%
���x�ƿ
�W�,PFm
�U��+�Z�7�m\�NKgV�Z����h1dg���	��h��d��0x��}�[���Ň��sV�+ϟ�1}��w�����[Gu���cЙ�c�Q�n��X�M�ث<��܌Ɓ����S�����V�Ƭ�O	#Es�gXi�^�w�P5���P��8A���,����>�.���Φ5B���\_n�9<�H�w��226�WS����S����:`ﹹ���y��9�$m�!������WH�5�����y��H�{s-Eg�Ɇ[��`�J
ER����_`S��^4 �����>�Hټ���"�p%�;�Ư�E�Ēi�r��C���µm��t-!�#����?�[_m�5���{^��O�^���bm�k�����>�የ��Q}�
��YD���4o6X5v3|fS�BEl</mW;��̾����5�(V
h����X��+�P�ڻ�����
+#ܤ]�
����6���� ���54���vd5����w�i�Vc�7i�_������R�v
�������J�F�x��v��xyh5�7��An�AqZ���U����¯���(
��+2zq�o�s���W��%k7"��ػ|�ưhظd����t甹w���¯��p���z�1��~\x!�G����l7����^�j�(.Y����>hò���C�]Lq�6����ּ�<�9�S���U��p���� T��8���l��Z/�K���+���i���JKK�S��r�}����ڬ������.�?��ʀJN�3zq�����c/\�^����W�ɋ7r����ty���rf�ב�c����R�?�mT���1����x��c/\�^����W�ɋ�b����z�jNNΝ;w�V��x*����>QX��g+����^�j�(.Y;'����ŀTi���X�����������€����.�����€����.������I��!�9�������
��� s�����1$������9�������566b2���8C���m@�����gd���pa�B����gzX���3�%�H);d�ۤ�g��,	����Z8��)ox0f8>t�J��wt඄�a����p-�D�����&H%���;Ǒ��%2R)����T
+��ȈeYcC�����\g����g�Qw��)�	;����ۃS�>��r{�F�\�wS�s����YrbR��K���$�#q4����\r�W����g���щ3���E��"V{SQ[��6�Ud3��7Qy:��T˯���ۃB�~3�D'S��������H#|h�=�W/�[+#KN����ڐ�5nx��2�ڢ�����L2gʁ���,������|+˿�E|3�b�E����U��i������d*u��,N檯�-mB9�osww�x���c��
+���~>.K"�g����΄3ɜG���|V\�=G��G�f/��tg$�YS�m�,�\��Bm�9y�w8v�1�1IE���sE�M>�8�%��������d�RbT)G��#&���,A�T����8�S���K+a��k!�`%�M����0N�T�K�oEIN�9�\�$i�L���^L����dH2w�0b2�0�0�������Ct~����P�94~R�2{/��r)������AKu]��L�ٽ{Mt[BMʎ_�ȵ�q1�?��s�`
+����2$��FP�xƺ��:p����Nx�A`tw���$��Ǘ�A4��q �H�Z��2�V��~��UG�c9S��D�|g�$|y�����2g
+��f].~K��{q�ce2�B!�I«s���.Ψ�9���� s����2����0 s����2����0 s�%I�
�������}Ր�(�����
+Ȝ�k�9���2�����d�����9�6�����* s��
0|@����
+Ȝ�k�9���2��ڌ���'.����k��P�OV���2a�dNS�;mj�-D�/:�d�{>������s|�h�xc��J����0�?Cm�="��2e}|�^|�5����������27R�7�R��𠿚�&�ܘ7v�:�T&2�-��0�J�O�3��S�k�<�]�%]xc3o�;æ1��r��B'2�N��f9\������Y\^�z{{>|2�\~\om!�e�v��A�h0�d�� s���D��a�#�������r������pk��5hi�!���d�ѵ
(�7��w�8I�u%�9UY��B��e=�Ė�#���M���_E�펈��F�'.:X��Z������]�O\Ee��8fep�-�(s������|w�B]�X���.�2��\�׋���w�-i��-sڻq{�f��-���@���0��yQ�W��V]�ә%�:�9�� s���h@y�������I��+�2���
+Ì?������y|��}���D�e]���l/8���r~'���@:�(j����KYi�~�h�#�mR�2�0�b`���0�Ά,�y}p�M/�%Z*sw}�&.b�l�e����uF�Xz�HV���b|�5�����&n#.eDQ������C�3̾�������stmFD�v&թՅH������Gy��Ί�L,B�Lzi�l����6�)m‡ק"gp[B
IH&��P2s���l���������!��D��S>a:Cd�K��6��,JI�D�V�ސ�R�Ð9]�%�]	�]]��]]�sa��%d�)�>_���cr��U��$+[~B��}E����2��ڌ��%W���CX���zr2'Ϗ]��6m�q�8����d�	�'Ւ�x7P��Ø��'�zs��Ǵ��-׶��FT�l�9�<��tQy�lU��l����~,�˾P���nY�_�ϻ3�qit����G~�����{2��ڌD2���;�S�H��v0�)S�]�o����9�pa��xs�.�y����7˕C*�����g���\�K��\�{��j�4�6r�-����sL���Yw����XZ���211�MK��}w���
h��~d5�f��Ѝ��&���{2��ڌ�e���/�=�`~yy~b0y�`r�Ti�̩���B���S�e��_����J�"s��;+��Ex�@�U�9/�S�n��u˰�;����9��Z�n��n͛��֕�ƶ���fv$��z�}�)�mik���t�ꍒ���cM���d��Ȝ�k3 +-E2�R�ޜ���V~n���E��o�_Wf▔����܉�D`�|��x�BR�q�c�
+-
2ǭZd�E1]�Z>���W��+|W��]�G�sa>�87�.���ᙬ��y��4���4$��w��B;�/��'\f��V>U�R|����d�ѵq	T
+�e��o*�5���
+V��͹���/���������j��Z1�joknnk��((��.[4ʰ����2������5�Ӳ.����-�k���6 s��
0|\D�Rx-ۛ�v8� �����9�6��q
��`D�stm��$����q���jȀ����.�����€����.�����€����.�����€����.�����€�#Gcc�R�����H$���9��8:��ϑ����mxE?9�֑^y�ѝ�p��F�q�o�.//G�������3�L�]y���_�Q�ˇeW{���.�}�^1��d9�WQQ������,��]~�wy��
��I�]x�wo�#G�+Cd9$����}�`���$�~׋��@b�z�x��������{��~eȀ�#GVV��ob��cI�vi�����$��@"��6
+��ut�2d^N�SI�v,�A+Ō��u&���vv��36]֏o#RI���UȤ�l`<*�į��a�g�(���2 Z������#�$����s� Z�4�Tzz��ob��c�e�痵���%���D��ӟ,�-��� s�E���ǁ�K�q�;<�DVF��=��c��cFolA~��6
�Д�f���K��BeNvu>9�+��2�Wޘ�0�B�#v�'ì-V���N!�]���0̇�2--��71����Y�nA���h������~}Sg?���I���=���(@������:>�x
�<7LAe�ÃhC�R
�/�O��LNRG��0o�|���yӼ� �����P�"�bf~�ݴ���žz"jQ�W�C��d.�;�9��{�j�d���9Q:�$��fc?.���mJm�ޗ�G��&�G�v�vF��R�P���O�b�C�m:rM�ee*��Y͍g���,T�'��C#ߙ�9A��������		?�ܜi뷌��@�/s�!�£�?�1�ݔa���یM�9qB�2���D�~����g�G�D2� #��� ����\i�E��ժ��n����qe~�oawe1�Y�cS��
+7�:l�#�懚�	L���f /oƪ������=�d��!A^訅g�*.��89���~zN���i���u��M����6C�׫��]���6���
��^T"<}��"�$��~tޱ�`rVVĎ�3>��{�Ŏ�u�ZZr�ւIl�<}m��|bn�Ňl�6!Q�Y�!�q��i��Eb����a�m�5��$RH�B���, sS��$�#�%(�(j�^t)+-���
+�����$���2��=��Dڄ�92�6��+�Y�i�FU�;��4�0y~������������m��y{{�+�p�#J���'�p
����F��$fF�Q���u���N��(s����#���ݨ�b
+Ԝ7�����2D��6F�#x�WP������m$�z:h��2����ʯ��>���h���3�K�G-
Z��,X���H	m^6�i��c�,[.ce?`�������B��_�4Y6
+Y����|@2M��7����sh�aS�9�pr>
+���B���Ȇ��Ց�>b�G��� s��V���%�X�d���'��|"� 2D9=n��Q7�ۯ�M�aٚ�@��2p��l���b{�Y��z���aL�dW**U�'�aT5��g����{^
+��R&�M(7�A�����0�o�i
x;mИ>�DŽ�$�Ϳ�ٽoi^B�Kف��$O䇐EX��z[ʂc�G�Ӝ#9�̱F2G���O����r���&M�C�kk��8�X�,xs[�ժ(�m��*��V]�M���p:�I��L�?�R<�h7�WQi7��H�~@RB��ʖ,�
+]3VZ�(�w'�~d�t����G�'��߸�~�;���dn�D�� ���R�4+1�,�_��� b���N̖�'���n�ceM�2'�:O��KY�1śq�K��J�%d�L�e�?���"I֬p2wt
+2>�\`"��(�|�D!f{xJ�L��}8���� i�a�u�xE��wVڶeP��iI}��oQQ��z�l�iwQ�R�1���89���B���~m�>�������*=�F1b�W��̍J�{���fn��n�{e�0������.X{������a�9uq�y����z�a��;�b�JE&�<��'*�Oү/9G˳�w�)X���T�� �B\���4�B�rE �9#�O�?�JU�6��
���#4�b?�M6F�6{��89o}���!�Pؘ��ׯW>ԣ����i�`�ˍ s�	V&c6�}�@�쐆�=��4ߡd:HiP�&�s��Ȑ�k�TU�"d�2�NΫ��^;ԏݠ���>�+�E�/���X3R��2�J(%�xⅣ�j]�e_����ʿ��$��_�����/D��*���Ǡ�?���xWp��מ<yyy���������/���b_���׋�Ҁ��^n���?��w���}����Ң�"G����X������^�@c�_�1��U�s����ʐ�F�B���QPP���?;�n�����?�������m���I\.�z8�hll�s�NNN�իWcbb.���\�����Q�G���z!�E1c��x�9��ѝ�p��F$v*�J�T���s�
+��E�0��ݗ�9���������\�9���������\�9��$����q���jȀ�t�:�
����9G�> s��Xd�ѵ����V�stmF)�	�O��	��5iҌ�
+_�1���`�9G�f��J?��{��n�C�h��{4O�d�h;2��U@�]�QO��)̛��d�����9�6����!��~�[UỐ�<3��Hl	g���A�W��u��s;}"�I>�Y��R��3�Y�cK�F2�����f�jR�'/�Nҵ)e��P{�VW���C[}��ժ'}#P4��Zkٶ�6fi��(��{�u�_�>�3�3������}���O��m6tH�8# s��ͨG,s�~�0��#q���I^������2�����x|2>-IlS��Y�8[���
E.�ƪ�53�@�-Yɜ��:'GZ���r�C�n�|���$ݽ��bu�P{�R�#m&2�]�S�i��]�4[mk�V+�Sk�T�l�[]���4XB}��))�p��ɽ;��l��������9�6���Ug�F&�
V&��{6�LN`��*.�c�m	5Ծ:~=��e��/)g�´�,���{sH&rZ������>����G������f�e��B��o���j�wo�d��X��-�E�T�'-2�&��H�#�0�}@���r+�؉F�9G�f�#�9y~���iˏ�ym����M~iJS�Y*�ˋڽr7jɬ:?�	��2G�Y1���Г?7�կQWW7�#��g�
lqA�6t����*Xuk���W���lm�QU+MͩZZj��$����)�G���?kk�C��V�=�}哟Q��:`L� s}�k��h?��P�kQ�*j�)��U7<���X)�~��T;��=mQVs5�ת�;p�qOQ{���E���S'���qCu���g�*c�n�Ҵepɺ[�\uT�҆�=�
+���<��UP���@��H��=zƟk�2���.����2>C�-D�ӯ�_��S����ZZjjK���x��n_<ZA��d�ѵ��d�lj��ʉ\�S��^[S�9�3��ڗD���'�OH$�q
+�8>�kd�-�fHY���j�ut<�xС!��@��:�^]G��+I/��>''������'�m�@:����Zy���O:�ո�ή����I�Jگ���ږ�O�>��,G�-��[]��m��?j��)����Ђ,N]�d��u��I/*�R踇:�;�����M-_YO�^����ٴ>z����O$��8��Z��w[���
+���aՑ����g�2wMZ	�m+�u<}�}���,�_ڧ�
��Һ���{��E���{��R���]��[��~M+Κ��!n����O��A�?
[hjK����W���~���Vn���^��d�ѵ��d�p
j�y�����=p�O��*��a�m���촸�q��\
+7��]^^����O���k��Y8�%(���[*@�Y�k���@BC�B����c��}Z
�iW�;��^���&��uӱ��GRQ���l�s�E���,2�������S�N�����NH��d�M��?Wdse
o��˹kg��v�(
�x�g��rk�ȹ&�T�7��k"ck�l���'>}K<�g��>y��+�N�����a�ʠ%κX�"5u�Y�k�G�RhI�Mm��pEj���{l6�㳒�p@�]�QOz�T�Cnв��V~r���E��o�_�;y;<ߤ;���
+��T��-���g�:�#���^�]��dmn���4����?͂<y�ď>ad-�RB��J������;m��}x")%�����S��O,.`� s5�2�vδ<��3S;����5;qt8�Rk��jp�u̍�Yh���u�{H�.��6A�>}���GS�KM�u�#B�ݬ�<�ɮ��nA��v�
+���Ec�3mj˭���X���e8�9G���P)X�U��$*�������X���/���������b��F׍��*����	Blx��X��lNJ,��M	IS��؛k�W���>~�`�qD2W)�Pb�C�åK<N���}OF6�E��v���ܚƆ.������{��1xsdA��n͗ԴIN6�so=��kk2���>RE��<�E��ST�Z����k��f��R+��L��"�~<\L���p8 s����@U�~_���"h���s;k��337w�agg�#�w�nHvr3���鄑H������٣{x¥X�PkN�:�ujT����gdyFN]G����m���:�<�}�����{�Z-����.sx�'���[ӫ�l$�<h�;�vz�:������3Aʖ#�X������KĖ��Dۉ�k[�'n�e�d��?z��xR9�PHd����t?��5xҐ�����ig��|��φ���fR;%�.��ji�OL��BS�o%��IFͳ�I�4V�Ȝ�k�r�*���{񼙞�w�\c픪��	K���]t��/Z�;?=�׶�5���T�xX��S��E&��>YrssF�*��P�gQ��IW`�[m���0���dM����B�w��,�oU���g�d��4��V�,U4���Ri�e�^C٤�R�k���0���d/}����
+s-���(��kU�7g�����D�v�i6
+c�JU-=���P��(}@��4��6����[	g�Pm�ʔ�
+��p@�]`�<�}���t:*c�:�ζ^Ix;�l���Vg�w�u��*����A���鄊Vk�Ťe����<���ZR/o�B����O�E���V2)0*��stm�����5O��;4�(��25��
{@�J��{w��ƭ�t�B.Ȝ�kG�\wkK�V�
����*%˲Ju�-8B�d�ѵ��B��V�stm��$����q���jȀ����.�����€����.�����€����.�����€����.�����€����.�����€����.�����€����.�����€����.�����€����.���\E�k<'Ҍ�N��|��^�Y���s'�\sS��������8�������]��X��
pG��H`A�������9U��l"�Jd��q��G�X;T
+�ʂ��w	�*�Y+l�&��pq����
+���8� s�)��N�Ә����I�ΤZ�QU��c�j3i��X	1Sdnv�9sޚݻ���V}).bݞ��d��6�AY��U�9�?�
+���I3�|�wϧ�;�'VJ먈���Z/�
�q���pR�A�R����'c��D�%��|:a7�Ǜ�����FyÃ����$u���SQ��@�M6jU��bA!��b��+�F�q�3/�Dp�I$����� .Z��G�9���g�d.��_��O�Q�)s����*�{'CJ*�O���4��-N7?��F��O�	�ͯP��'���dzd4�n��)����e~$�m��(����d�9���g�d�s���Rl��:�x���{`���%��$j���-H�K9I�O�=���}6juE���ncb�����+X�fd��C\�/�dan���iq��/������u:WV��Ɯ�(������0���7�i��Q}�$igr5����3��AmTt̮����gd�%�d���v&����+����8+� s�ktz1n�;�X��ꂊ,G��h3���{�u<_�f�WEW�[�0[l��t��+����t���ȜP������evQ(����8�̩ժ����DÆ��_���N{�x�-���L/: )���b	CRe�
~ko����;Y������2�V�%Sx7�Ɇ,������id����cX3o��X����R�
+�o͙E��dy����{�d2�����d���pa@�����d���pa@�����d���pa@�����d���pa@�����d���pa@�����楕����m	��=�ϓ�(�
�E:�\����=y	e��mޖ������?���s�m��(�B�.#���`^6�C�2��?Nbi��PӀ"�.d�J����l2��5K'V:dft�2����ϕ�2��%;��O�V��מmled�墜�u��l%���/#/�������V�qn��O���6�J�̌���韽1���;ϕ�2���?K�_nrO�~}z`�P��̥�3�y�����T2�-������mU��̟zR�����}v!3dl8)��˜��!4R��x���
m�����2���
+��0zy�dn޹��
~܊����z
+�@��!cÑ�d�����eo�/ߗRV����֋������t�P���
�Xn�g�{�	
�0�ud0�7+c%�C+/\KS�����8�ܓ��x����R�.<O(��K�;[F������%���<�+�X"�-I�D/"�}*8t��4/s򰥿zc�̣q7s2b��x
	V:V��S(��/�SsR�сh��F�
�xcODRA��}^A>��8�[��(����`�kۊ�r��7������.FW��h��W����ܜ�����]T����^f�K($��dY�d��$����j�s�5d���muՏ3����I���럙�܂�����=� 32��QI�*���8'���{sc^�_%*��Z�ѷ���K!�N�2���~�d�d�����A��	mҠem�䦉V0*Èx��7ɮ�AUF,s3^t�6��@�C.a���\r�!IF)r�P�pv&��^P2���~�d�d	����瞨�V�0N����O裕%(9u���� I1h�<�β�¦�+���x߁���g��?c0�������8��,)bJٛ�U^�ͅpe��ʎ��QU�������J��P0�Hǯw�^��m�Bq�ֆƧ��ޠ$ܐԔ_�
+��󩷤��CK�
ym�k��T���߬�θ�s#|���9�2�y�#:7WUU�凄,(�̡֬�Pjc^�v����,�Ԋ_ry s���/�̩��zx��dU�<�X�����/�3d�}��h��{�E��Z�d�{��(����=���� ��'�(��%ޮI߹��܀%�W���Po�d�����M�F�˾���Pyea��cץ�(by���U�z����W�i�|�������&s����է`o�ɳǶ��W�\M���r��2G�⩯L�8���KW�?u\,���G���`B�����"������!2P�ի���9G�> s��Xd�ѵ����V�stm�@IIIJJJLL���>�HG��a���`�9G��&X�MKK�����ϯ�����6�G�v!G�����`�9G��:r��������V�V��w3�@Q$څ�/�{� s��Xd�ѵ�Nzz:��4����v!d6����[�N�~�t����>�y+��s�Ed�����9�6V(++KNN~����� 3d,>�$n7�!�]Q	��7����[꨺�B��f�-� s��Xd�ѵ�BVV֝;wl9���-�:�7�O�_l�)�7��ק��[��I�(ޒ�0�7�w*n�\d�Ek���`�9G��
+�GC��T"3d,Xw���"�b���;U�+]���g�'P_��DB�/?��kO�I���-�##v�װ�'_�@�.�������@�c�n������N�欯�tp-���-�F9��P����~(��^y3���o��:��H������sji�9���2���X!!!U��S�̐�p୳��7��e���7HV�칐��q��^h�/�����_�퀘�97��F�nOD�������c������s^ۘ�S�xr-�3:�2�G�^'�P����J$�6��Ww"��ܜ����B
+qI.��ry2^"�	�:���i�Q0�������stm�p��u�e�zs�g�����u����V�+�p<�*�d�-��+�.S�[a�X"V�13c�H�
���x�Q��ߦţ�5��R�ZyMY�1��>T��K��q��l��/X5�Y���Yd�����9�6V���x`�%2,A�����d/]~�PY�o�o�5L��*F"�:PX��w��Z��Y:UO���M���;��3f�N��(x��q}��1���6�$62��U@�]+����r*�2l*�HFŋR�/l��1��/Uל��ʿ}'�P�����ק�p2G�3�e�ľ���^]�C���f��F��Ư��ƗDy��+md�����9�6V����������<"d��E��'�n��Ҳ*i��[���V�7���(-�ē)��ѷ�����c~���Ӓ�*I�y<���g�eudN}+b
�����Ut��7��ը�u�K?�[x����\��9�6֑H$���Z���ID��2p�<���7��������ŐX�N$�x9��x�S^��/��]XMe���i:ILҐ��Z���9~��u��Ԁ4���+��O\~i�2���/V|���]T�KVNd����\��9�6�Q(���H���t(�B�����򚪪��*3o��+�r�}ߊ�r=ڲ�1�je
+���V�stmlIr����jkkQ�{	h}D�h�E�si@����
+Ȝ�k3���322�O��
��x>��d�����9�6�����* s��
0|�D����!��W
�9���������\�9����L���� @�Pw�:
G�[C�d�%]��2�!@��aHa)��Kz0s���QP�����V@�^r�:�E�-��������pt�e+ s/9b�s�9��8; s��
0d@�����9G�2 s���Ȝ�k�9��ld�ѵ�����2����CƩd��ږE��]��葟��P��R8/SSt�.^&1��/# s#WN�4i����X�]g�Uϝfv���
+cM�RI��ځ
+�T"��P�����3/s=�l��_�(r���xog܆Y�j�����Nt����˷<W��cƢ�N���靽>�����æ1���-iw�o���n��	����vF{�6w��;]'�'1�Y�m=MbKyܖ)��q��y7�~Ma�x�����
+����b3�ǭ�":���6���K//�@/�v_�l���_�a��wq�h"�b��G|��v���yг3����R*2���q �Rb\��7ч�ѥϙjz���ʜ�*J<�mrrC<0eǯ�;[unȥb���_�jgA��	���=���ti�ۉ4�zo�Q8�>�={�O��s�M,Z��1�{K6"�i�p���&��]�=:�TpGwپ/s�NR�{�ٚ"kk�NGW{�<u�AdΦ�dl)�ȥi�b�gSX/���|��dkB�Ƭ,�C~�/V���]t9-�qʆ
��Z>��K��u�����{�/���E�r��k��y�<_N���72̮��׹��B�S���߬�#�נ�s�ľ�Ba��Q��E�T$2;`
+��AS��O��LNR4`6u�����)b�=��1�?�a�Β�q�f�^�A}dm�Q�:惫��C�
�o,�`�u����c�9����mL�I!�6���H�r�}KڝA�v�Fk���j�w��I�2��!��@�c��H��b�i2�$2��9��}en��u�+�C��*�F���E�����@u,�4�xm5�,U�5��,��vE"���V��C�%�����!&��G�)v�
��ڭ,h3;�i֞��*�<�;����
+!&;dۦ#ר�d��9���e��r��>�6��{�U4z�cŜJ)�mG#�����-������F�/spR�+k�i�����(�"����ۢ�����o��t�z��b
+b{�{�B9��+�qF�+�	�=ߢ�f�:Z�0S��	���<��v�_�ޞ{���j���A�2w���U�]�FO�+�]Q�5t�:L��C���i�k��<�;����dSZʶkqF����k[ޟ�b��ٴ^���Τ��p�W���"�v%��k���x^D�==��l��
+������j��P"�4�v�W̻;L�,��ڲ�������+���;����]�s6;+�+�4WOC��\n�+ ��juF/��-$d7,��Q7�Q�s�ԗ�\)C�c�FZ<�
+���p��*����ⰼ�5�l�p��ܗ��^�9�3��o
+3�������d�&n�G(#z�d�_���]�w�8UQp2w�4��%}�����F��9�$�:=9������,�\-�^CjG�n<��pʲȻZ�zg&�w�:�0�2_�A7uN�F�m�SZը�?<��,��.��_�F����z�?0�<7�*@�F��l*��x���?("1K"8AEQ+P���KYi�~�X5��&y�>b��Lbzz�$�s�uE-��?*??���DH��9Eq|�6�h�B��*��W��.:�����%��[��"|����r��ͯ����z�E(�!빻��$��A_��I�����nX�C���,���g~��/A%�%�~�$q�	��T��^�9�l�1�>㘷�I,Pq��,Ӝ38��Uj�-�;Q���5z�A�!�~�ev�W+>7�[����f��6^YH�=��t�9+��"Vy;n��M�"K�
��pl0`�K�*��#�dJeI(�X�Cx�줨����^�~�~d�6AEG��&�LR3۷ב��ug�PADbfqJ�)��S�����ea�,��m��Q��Pb���TV���G�}Z���>l�f��2��7�h���
+"7u�KPԻ;��������/Cϣ9o��

{h�Ma��I;lR�2W�p��������f�g���5�/y7<d�_ȓ��	8Cf�~r~1��fT�`���	E2t���Z����͏�G�>�*a���DpE��#O{CC;�=! ��
X^�>�~�����ڣ���,iUb��Ջg���]1�(�=Vβ�2VV���/�ܦ2wZB˃���ؕ�uAH0�9>Z�TaEH��0K��2�:[��g#��;ܸrN�x��w><�\�6؂��X���!�G�Z�c���I̖)��7��r���'�$2�U?�������sp=J�[XMg��i����*��Z�|���y�y��&j5`�Ds7���i\���;n/��*�s5g.�F}�g��+���nJ(��k4m�J���$�67��mt�7g}N�2W"�9�e���=+�`�=n�o'R���L��jV0�R�2/��ג������z�nإŎ�0������Gˣ[&27�D�,�BVGx���[����2G[ヌ6��3�Y�3�ں�Q�Q
+�;5�]����i8Rك25W<Kheq[�1_q|i���т3B��ߝq�Fu��$�E#��
7hinԳ���ܞ���7�JU��,���	_��=Ғ�?��vH���������f&\$�L��;n���3}S>ٕJd΃�����$s�d�[Ѫ*4�2���%�����2M}�1�h����f����P��.�Ae/��;��)��\a����̉��𵶆%�["<O����6�����)Z����������E��"y�Qw�->�vCNW=&��>�����B���딦���rn$�yoɕR��q\e���w��	���,T�P�G��M&��6�o�*6��3t��̜��B�aj�E��z,ӟ_1��r\哦+tX�9�D�>/����}2��|m}^�3��T��t�Z�����rc�
+�7�'��l�,�Z�S]�#U$rE+��x&R7��
+���y���na�Q��E2҄N�r���.�&��_E�S] ����x��D�S-~@�F��);P�K�D�@���2��'ڪ�|4�~�\Idnrk,sjc�	Os�*�X��������3�$��Q�ܰ��Ɂԁ��r�,�58e�δZ5/s�����B��Io�a�%�*���'�
��%�N��.A���� 퇇;hy�4�B����E*���Fd���^�
+���c�z}
�u�t�R�͑�/Y��Ю��<2�mo��C����z�t�t �d�Ս�����H;�Zh�m�}^�9�����o�;��B~�CX��ۤ*#���;vk�QR�nZ^KaE��e,*��w��ĨV����[�O-=�̙om=��z���os�3K7���B�,Иu�yLId�zg���(da$�rď1&2g��4�%(�xtE����
+�:U���>zA�q�'8ۤ�����.ˌ���̈���
��RY@F�'��LΖJ�Y��Xe�eH���b�k{xJ�L��}8ߒ̩�O�g�U�א������~���x�/^ʪ�J�!���N旗K���y:�V��<�!�+8�'���L|�8=2� :��\Be��x�����Lr���b�t�w������l���8q�	R�K�GP�UX�D���c'��r�kS}��*Õ92�ά�(h���(������-���82t�A�Sw^$s�OY�6���i�f��̔å��6E(���ڄg�P��6t�e�^����}�
�M4�5��"�ٴ�kd�*�}l0�/�Dq�OH�
+�֋�,+!�̟�(���m1�$��Wq���92[/����U�o��6sX�9K�������B����9e�Bk�CRz;7$�-�<dn�6�a�������4��Aid�\��6w��T�r2~�|ߟ���;�N+�œ"��R*����҆v~n��03c������9�Q!s������B��-	�4;6�w��)$Eͭ���eN�)߱����
��{y�ݎ)��/�r���`�J]�7�}<�8SHM���@�z�/!�5�qr�ئ��s�F"S�vz����t�R���+�<�dN��=}�-<�J�����pc8�,%�{�2���"�!(�ɦ�:-eQ������0V1����^����0]d�Quy��@�-S�nؾ����?碧nڻb�����0�87�H��}�VZ�����w�xnN��Vc�)aEߔea�x܀���ꎔw�e�dN�Z��\�Ӥ��;Y��蒕�—�,��kf�),�6�!�(���z#�n���\<��VZR�[�a�pD��3�d�)ȜP�x����
��K�_a����K���CҦ��	����ҳ}��R����.-+����/�)��L�YT
+��P�QD�ڞ���b�쭿-G�8�ِ�ċ��/�����k�w��Y��-9q?/C�dJN���t!�.��g�w�t�]]�;��"os}��,�Xp?*K�@�ʿ���������h�lx�Y�G�rIpuu���͙�b�:��'C��{sZ�n���Ӥ��9-��ݳ��b/����HS�ɼ3_�d���2����CƩ��R�V�l3����v��6�ڌ��o���Î�
�Ξ=N���*��'f����,,s�׊�{�/�Y�Ѥ�mX˜�]��b����g���:�{�d�pΎd������������ܭ����g�o���šRW�d�ѵ��SɜY�]�Ȩkɋ
+��w��Ht�ά�0�}�uE	�����Z}����)m��`s+,��}180��c'�̨�#����C.�q��A��Қy��6,5�@�\r�_pF]Os��稂]�d��8{m`a:����:�q
2����C��e���d�ѵ��X� @���j��Fg�Ћl��pt�e+ s/9�5-�_ @�0��:�{�
+��.W�`��V�.F�ƩA������d���pa@�����d���pa@�����d���pa@�����d���pa@�����d���pa@�����d���pa@�����d���pa@�����d���pa@�����d���pa/s����3�'�Β��eG�纻�I���#V�usw�]dcz�����6��50�I3��T4
�����s�=
x���\"����6i��|��傑I%I�����x�q�̩��w���#9�CS��q$�77��w�2����ir�K�����+�(Vy�'3>�}^���5a��tw�߿���j�/D��X����.0���K�Ȝ:��,���0�Z]qi=�o}W�V��"�^�J�P
��?N����,k��Mm�,أD����9俒����M�X�� ETYJ�$^A2�j`5x�����A�هH��
+��k��/�c٦����Y
+C�Tw|��)�����^�u���m����sЎ��ռ�e����+��'M��G����9s��H.�!�_��X�!�hWdW6ӏ��X�����}ު0֨�����Y�>�4u?�7J-���"o���y�N$��?�z���߅�cg����UQ����0�������k�'�77���8eUyҎ�38�y�c%Ľ5��w^�n��3�:Iˌ���y��p�A���������޻@Eu���5�w�{ƽ�}F�}:�Oh�k�޽���m��#���N��g���ߏ(bQ��CTH�y
+���
+�*BQ��$AŨ���2r�9�Z�V��@La��5p�\�|�?�7�9�	)lL��/p�׳�-YA,q������=�f4jK���ã�Z&s���M[��0�A�r47�Yf.�y�
&j�[Tq�������H~Kj�����ĥސ��Iܒ�L�]
��c���|s���X�m7���Jf����K��ڄ��Kf�k��K??_�-��q�
+�L�/B�,k�8��,6�
+(Y���Ό���Ay�2g�[J��t�>2i�؟���(ڶ�
T���#����Y��D�/,��5�X!۲�-yVq�N��
+��AQ��j&2�jt7[��,,*��a�'��ɜ]oN$s�
+t��i�P;���(�x��Y�g],oln.cz:�����%�Y�D��������ы��\\�㓴1��^�!Z�"ܚ��fK<���n��
+� �0>d�(�[&(�/>�ӷsQ�����,�����i
's�n�27�<�
����z�eK[L�:Ɋ2�P�#�+��S�qԛc��62��Dk��Y�*���Nsi�¾�����F�ZHEE��y�q%6�0b� �G3Nd�P#L�[S[�Ɔ���M[�B�7R�g��&b��\0�&�
'Lf|qb�b�z qgld���Eޙ6���<]��&q���������9��r����Ҏ�Q���L���H�W�d��F^,l4ԟ�������'��q��#}��x����r#�9�̆�f!�#�x,�D�ƺ
���\66�iK%�ƻ{o���"����
��d+ssUor#���+��ym��"Bj���x\��Y��T��9��=��w�nصk[w�OI���Y�o�:���yU�P���u�9�yK7l��H�պ
+�>�����pƍ�铙�4c�������}��*�7o�,h#�񮙍�Q6��..���H��Y�ܩr��7$��l�ҥK�E$D����2����?���X�~�,s�G!��7����Y>��)�v���c5VĒJ�K�s����3��&ˠϤ��B�f3݊�O�xƍ�9���
�y�ml�/������+}�{���E���`]���l�g�zj�qlՕ�p:b{l���C��y�d�Sd�}�x9�/W�T���s�RA<�9+�j
+b#��LH+j~��!��� 77�\�>�-� ��2� ��1(s� ��2� ��1(s� ��2� ��1(s� ��2� ��1(s� ��2� ��1+s���EEEiii�(po!���BA��9�FSRR���USS����-.�-$�-0puA����dN���������L�gϞ
R��B"�0suKA�1��d�����Ǐ:�n��Yd�Մ,Z� �%iSv��N��i��Mڼ��������|��
+�K�!�<%sJ���������4�`������^ǥ�´1�^{�D�O����Ë;Ʀvm���w����� /-%s���Ck��؜SWbW�X
+�Agt�t�6G9E�@3wB�E3�W �S�x��R�� �G��h�Ngd��؜��\e��0]�ٟ2T�p���.��a�Lm�f��q�k��B�d���Ҍ����ɜ5�|�S��Y6�d���Ve�Ѻ���ޔ�Đ����A�>�d_hmܶ�q�����..�޴_��!~W��M�*�7;���c
��L���hJ:����^V�$���=�hvPrZ�nɁ� �����4^^<eM��g�>A��G�\NNt��306�ԕ,��dJNN&#'�R����էoi�۟"��&Q5	�i&���p�v�2?a���rY^Ȣ�Sg�&{\�WA>&n:#�ɲ���Ax~�e���g�Jȯ�I3��B�SI������%L^O&f�Ty�
+��CK�.�B���l�I�:e~r8H��boo3�UR9����Tjx����19��!^S^
��Zv�����C%%syyy���sR��k�(�/�9�87]�;�����3Z��U��L������d�{`@�k��"e�Z��j@'����⩺>W(�}7�_�e��,)�J��A��ƋDy�B��蓉
+����a6����T7^��d��6�>e=�UA�u��`0�� Ș�Q2'�J�:�csN.h)�i�ㅦ)�w�����"R��b!�*�#^�Vz[2i�9���βc��gM�O�[��FT��l��&R�r;kp�)��+Z^a��!و"s�hKA�w�i�kO{�yA�3%suuu��������9�P[P�c�Nx-�
+�nH���٧՜�uX�A�����ϩ��N-�xB���<	<��v\�����]{rEq�k�_������2�$�Ud� ��U�u�̉� ��V�	���.#��_<J���۫��>|8�Ɓ���9�;-k�V�ի�\�R�����^7:!s,��$W��T�╈�&�B!^S֦V6���a�&-s
+$����ٲf��
+�*L(������@*�§.�T\���'�y꛶2�›�YY�Ad��Q2�����V���H����E6�6���m��B�00���̛�u�[�A������05�G
+;n�i�BUiȢ��`N@��ksB��Q�e��I�y��S0�j�	xR�V��"ԍ3Z� %ky�����"8I��:��j�� �O���\WWWMM
�]���و�6�Z����ɩժ��I��Ꭓ@I�K�t�V;d'p�	� /�&sF�t�UWWwvvB��P��B"���y���O�7["��x��1������Ri>.��zbC}fx����_ 2N�X�CA<�9AčA�CA��9Ač�X�kll,**JKK;G�x��n� 2�x��i4�������������o)po!n���ۈ ��
�&sZ�����������d2={��=��h�{�Ay)�4�+--����ǎ��n��Yd�Մ����q$[��>>����R�����m�߈��g4��kq���tמ_�w�|O�X�N�T(���!�b�(�S*��������������؜�~c���a��')��Y�^�2^ҳ�EG��{���s���x�kr�t4�tV���*;�{��GQ��Ux�̕��wtt�q0csNzBA��;�{�-N���0���L	�T�{ކ�w
������Y�=���:�n�um��)����Ag�(����Ǫ��9'w�(�S!�Y�S�,#G��V���&n���]E��Tr.@k:����A·f�-A�6i�opt�v����Q9�X:C���؜�#��1�6��bz<��9;��4㻾'����&@]Ŗ9[*�4nhJ:��5i��"%�����s'���ڔ���{:eQ=����������D�c�IG$�q�74��U�')i�ݢ�%B|B3�XCU�A� С�t2%>�]�18��5����P�>��.��2�
��9[X͝��Ȣ�A�iQP;;�f�	����E����KN΍� �@t!n�Ƹ���0nIg�O�;��7J���.#Ȩ�(���Ɂ.8#s`��� �Мz�V�V�TJYʁ�0Q%Ȼ��0kM�tF*�eEo'���#l�b>�u3r*	�9��k^l~�B��h����T%�����
+離������1�,�J�isXbf���]d�O̕U�Z�
+����Vߴ�)=
$�j��i�d�y'2�UJ3��Nc�Ŏ��uBؐ\�,�+*sb�(���T��W��t�B�u��cN�[�&���T\U���
����~Q�QA��ۈ��O�VJ����uhY���^B!00��R�N���\�����d�E�T~9���.�ɯ%�2
*-ɀ�S��dW�5�j�>2i�i(�,-D����9;�3s*T�Cw�9���X->�!��lzAF�G�\^^��2�机�5�I�j0�`�򚼵H١V���У�~紖��
+���X#�*�N�P)��
KA�z�iݭG�N�����������f��s*��Q�/{��]���Ju37��&�^��ks���l����n�t��4U�l;�;��V�ө�2�E3o��C]�^��t:�LZ��X�Sk�_Z-�.)Yg�(�B�^��ɴ�?g��t�I4�V�J��.�*���c�S�ە9&I���4CtvCc����=ҝZ��Mo'��/d�������9�Tz��%�sRo."�Q�&k�2e��]�^i%0�md��p�g��=
�%Ӡ�D���舷Z�'D���7�;��$j���X��K�A���I�`ά�fzg��ˎA/D�����T�@�:e��~\nΚKR+��X����E�ȡ��j�=�
++��%�:�e/Q����.�k�|��Eas����`<�����2G���C
�L�9g�+SԼ!� :�-w��`,�;���M��8�G�\]]]gg�32f`l�i�6ǜH���k�^!���N-&.l��&(�R�ܫ�Ӆ!�VY��J �L%� S���W�o��3t�[emS��V�"m���%������w���������tUl�?~V7���;��S���t�̠VV�Z�@.{C~����ʥ�����l���;UEZZ��`�(���̵�ֿ,���������]�Y<|v�]l�j�/����xs��o;�e��{M�)��T�m��B�7��&8�r��]�):�0���}nA�%s������v�
`fq����㶠�T�H�Op�\�RHS���X�@��嗤�*EQ��ILM�N��-�T�2�Y��t�,]S��d���7q�,[Ņ����� ���3q��އ�P�ym��Ԣ	��ŵ
+y���`2�S�dM�U�T)�*u�����T�T��1��:7�Z�M#{��rd�2�h*O���0�g˚U�
+��,��)Ji�|�/�:��Pʳ� lO%�2gw��=��Y�U�T��%~�P2g����/��X�	�Kc�豈h��^�d(����� ���(��rykk��dr�qp��"�m(LWo����Iߘ)�n�i�<���EX�@�7�4��;��G�tFq�3�%�!S����� @;��f^%�?�L�O�L�y��S~����a�n\�py�4�B�S�my�	MG�E���X�p-n�Ѐ٫��pU��,��,��M�u:*�^�Y�h7�G���n�9⧫��t0�b����+��a��G�u}f�P�_�eM�i��}p��v��N�*�ڦ���O�������2�>$�-0��l�j�Z�����M�A���l�V8D�+���(�Q1Ce"m��d ʹ���&�^Di���iS�ݢ�)�`w������fs�C�#˷C�ω.��+<M�T��Y������f?����D�5r�{ѐ/��5AWq`�j�
+��ۂ n��������N*��S��Z�Ǎ#e�Qي��
7��pjǦ��I�O�#2
+<V�+
+D�#������F�€�^g�@ēA�suo�у2� Ȱ�̹�7��A�CdXP�\ݛ�Y߷3���_���.�-$��].eA�aA�suo��Aӻ3���cL��y:��ә�������.�eA�aA�suo�$lm���_4���g��D��t(s�ʜ�{3<�9�8�ҁ�E6]MX�_@�?#`sHBN�T�6e�/9����)*��]��9 ��,���M)_y����w�>~Q��H�A����{{ns��6вu����j|���Ä�G/�M�j�Dr����fn��ʴa�k���~<�*
��欑W�x4(s���0d���:�$ָ�g�̈�\���,���W���}����;f{{{O�;M��X8u�9�B�yZW~���hY ��Q}����S��;mq�H|�/h���}4�}��U�Z�%����A�/%��69��%���W��¿I�?�����iI[��[Q(sȈ@�suo�ag�w��1k�ۺ�Ge_
wl�~o�[`���{�#e��!���@�^^t�#'���b�����d;le���uIX��C���ٓ��3E��>mikt�g�2��\��qqL�����m���>���_�
΍�y<��i�Z��:'����pP�\ݛaXp�?g�5�q���=�>;����Of`l�i�x���)�[�I�}B3�䘕m�r�A9�k�u���e���yiU|Q
�{|��NU�ovV���>0�ݢ�gs��7E��/��=�hvPrZ�dɁ� ��d�i2=��OY���HO�<e�Ild�A�/%��X僡e������!��e37Q�ne����~�3��W�6�L�(��TB�2��z�o;�O�]		���q+�4�J��ǥ�\��$+c/l}���/�}O*Mݰ�t�-��Ԡ�vV��fۖ<���޻[�b�X�W]�%���H)�=�B�;cc�F���v3�^�+��1W�<�>�ȷ���@O%o�����
>��o@T�A���zx����
+5��|������\���
ޅ4�垜-�n9�+3¹Z��_J��4�QE�G�2���ÿD?"����M��j�Sp����9�bv��|zF
ZF��eU�v����,�*�L�tF*�eE�#������丩����A^S�&T���� �'���emF��8e��i%I'砑�;�inD
+��TV��
+'{^;�{(��؜�ر���7�a���F��<���<]��8�p}��������MU�L�de�c.�HO].��M����zߪ���S�r���'�|p����N]W5n%���9]t�\��:�bG�pV�ۛ�4��G���6�n�߷E3�̩ok+K�9�$����ө�>�����-��T����4���5Q�?�6�h���U�U��ű�2��.�0���6�J��d����*�Z�����QE��`w�rQ��D����zr�դjJ��/p�O�
�'��kt�����u�*B<�9W�f�d.��b�����d����;�B=e-;��H]��P��ZmC�����Ω�Qڡ��1mUQ��D�
�,hi0Zb�N�&z2�����ԧ��
+�$'Mot"|:4V2w��T��|�8�9":w�%lZ��y����I���D�VIPN�Ç��=|�F&F[����P������A9��_�c����Buaŗz��7�)���{$�h^��n
+���;�Ͷ-���=Oi���J(��*fOj�l�ƏPߑ_J$K������bo}�
o�̝�[�F��ݽ�0r"�]�G�W4��v]�T�c���#�Ȩ����=��Is�d�s���N� AiP[����+J��jllUπ��e�ս�����7����'��H������M�}Z-������1���b&�>�Tv��Ω��j":�
+�)�Ǝ䎕urXy鮘�y�������ρ��=U���'�2�:���N�����.NH�i��~�<.��Wɚ��d.�ha�Ѳ^�m'�5-�G�ɓ��
,:.��t���8/s3�+P
+p-O�m*�m�d*s>��Y��W�� t���_J�JԖ��|I���&״U\s��&���d�߭Gn�ś�av��,����˜;e��>ǧje:P|/|@+���åt�W��j�"�c@�suo��j�/���8��js��O�W�v�-(�`S����>�D�,e�=N�j�?񚴷��WUf�דC��1�\P�[~��/��?��I���;k��l���T��9����a��#1A�sB������)�.���<���4�;D���\�CCu��Lt����l?:�2�(Y�36�n�ͭ�m�T{-��qnz���K^���QD����dn6�k�vG%S��ͻ`�̙�|�P��d޴ϹN&�P����w�;��H�d�A� TҜ���9���;����ZZ��w:��.�=~x�&u��:���i�B��������6�U�÷��
��xJB+�tC��G'�F�
"ʜ�{3��ӱ�&��O6��P�J�u��U\\����t8��+1"��ٗ���/��'8I�R)�����D��Ma^S�&o͖5�Ea�&P�<P���J����2u�NK�
+Y�YH��wN���,e���@����n�E�9�dϹ6�����$����1Y�j��w���Y3z#��w�Yy�����^M����R�T�����8_nG<���XkU���u��Z[
�g�=��H��|Y���ɏ�E��Ut
�y�s�l�%ۗ��*�vv�S󠱕�����z����%n��W��Ҩ&]���,�I>�h�ȯI4�;�t�o�h�&��"x�d<{�dE�Ȑ��(#'�%�۷o+3�J� V�M�s�$��=>�)���WWG��l�!n�2�_I���۷{�����^E?�����@�suo�g������j�?N]�Ÿzi�6'-���Ha��M1
txʼ����b����Km�	xR�V��b�n�f��#5Tڈ'8uy�Ep�T=u�Q����	��d��bT8L0�	q*H��7���'���q��6��S�zOH��ѐM�$�iZZgl��¦�[q�oI
o���k9��'��M%aC���:,*�O�Q�Q��L�)����ā�iA�޼$���[�?�{4TƜ6�^~]~�M�l
+����a���*�@Ky�[�UH��Ϫz���qW��?M�tV������*��z���ҋ�͓4/�n�e�)�_�RŴ���ʜ�{3<?��}�Z���8I��� d��ұ�|�0{s�Ƿo�{"�����=;OW�>|h�\���=��:QFG�2Ȥm�x�c��������N�lz��_�yj��9L�L�
+���rՒr϶�a��D��s0�&bb�w��v[nzl�-!�ʜ�{��������O�7[���;-�~]�G���y%�앏f�J�Hݿ,
d��2��ތ��� ������a���M�c<��@o��ç��;�n�����J�X����>9"6�l4E�qʜ�{����,s��P�\�d���G!�\=W��9AčA�CA������Ƣ�����s������v!.�ƍz����S�V����̀Ƹz<ĭ�@��h4%%%YYY5550�|K�x�p\�F�'ĥ��]��~��7<����B���h4��� n����$���}}}&�����po!n��v�g���ȁO��Kd�̀Ƹz<ĭ�4�+--���c���-0�3����/Z�%C�����]>��]��ڤͫ/ɻ��QW��Y-|eYpt�z�U������*��>sߋ�N�T(�6֦l[��‹�|����z<�4��� ��GɜR�,,,�Ye�C�����:��f�f�'JUQ���٧].s��N/�yr\]���5/"1��8?��*zf먄C[�����@L���6i����cNّ�{M<�t�6n��+Cǐ���"\(s�4�tA<������g�30��N��Y~`����5�}�z_˝�:*�a��rX[����¥�2Wp�cе��˻v�w~I�#*�A�n�T�bF��z�`9f�	l<u�:l�p_j�#����[==��M��>ݻU�_s��~oGy��$|w�N����<J��G�v:#s`Ɩ�����N�tE�vE|8	�%����8u*�]�8Ԋ/�M��Mg����w�/�4����O�,6�Lhݵ�-����28���P��J�:gMB17��y!�&S��Ҫ�V����e%�%�̝d-s��>�NU�9�����gs�z{o�Hg��m[g�Y����U�i�fs.��L��![�	� ;Wk�����IW4�?j44����9�����sb���@l:�V�m���!�#TT�v�;�a��zV6l:��.7	�N�b���@���+ھ�s�6�]+����ܝo��o���m��S?���	# �x�����@��90cq^v~\h��hl?�h¤���Q���L��Yry%�`'��7�zd�$�6"a���+Wu�w�M��Uryi̖��sW��9^S֦WU����*����
���d�ʔ��w�W�`�3R�,+z;$��m�Y�����	�U2i����9f�u�8TW�{s�����4�yY�mu]N�	�������*�����;��*�,��������sr����̪�聳�Nf���ݴ��j9=�o���̜
+U��O'��O�VJ��q�!TE�tv`N��0��*���ڱ�U�W|���(}w����v-����z��ou�ʮo�}�U��*�{G"u(s���(����s^��X��,f	8E��D��)4Cy���&r��c�_e�G�0O]N�n���&����eG�V�\i>�9��/z�]�PrQɭi��y�n�ɽ&o-Rv�Uj���#���]�L��V2�Nk������;e�p�m<9��A۸�%;N�?L�4��`���׶��r�C��I�/�_��.3-_e ɋ�
+����DZ�+�۴�?gcNz1�`��"��n�P�\�L��P*�
����1����z�����C���_��������^P�ot������wF�С�!ȋãdN*��u:h	Ƣ�
!^S�-񍪆�<�kʻ�)lZ&S:=|w�����w$0��?�e�;w*;&���i��xu��^�*PXK&�>�Tv����D�&h��Oe���C]��%Y'(�ׄHaI���[���~ی"���Pg9fM��9������i�[Ҕ‡s���s��v��cn�"'R�t�^��!.ڭvn�p�t�&��j*s������4�v�eA\�G�\]]]gg�32f`,d�(>Z�R(����Whȑ���_�
uI�gwV��&n:��A�Q�ɠJ*�t�2{L��R�~j��W�%7�
+�;��S:u2T�٩�����I�R�Z�q�NВ�Q�y��],Jdn�Na_
�l�{�v�fO欼9�4{s>�6q<���8�4`��<%}�SAnQǓn�ͩc�N0Wd4����	�u�`Ƞe��_2��p�`%s� s(s2��(�koo���~8�yփ`�f�Ǘt)[��k�Q�����CD��;j�6���k*���&[P�Mw�Y昀[D�K8i��J%/�DV��.�Pv;��2�
2"�L�Rd&��S�=, ���(��0��B�V�D��V٨R��-�`O��H�tx0�T�kt
n�Ҝ���T��埅bI,���9!s��ĭ�CQ ���:�ĸҧ.�$mT)���N��f)C,j�-kV)*N�yl����%U 듷�J���Z-�(0.W��gEp{�u㋒9��w����w�NO+H[OH�]���Z�2w���o��������ߦk{wn:���n���n��!�O�G� ��[[[M&�5�-0�3s��x�EA4\I�δ��4��/`�$�y��tdф)��ؘ�Yz�۱g��nDIw��d�����ȵ����#2k�B�#���7�4�QW��,����q�k.>+�f$�8��+t�[��bg�>RC��m�� (�!�P@w�xӝ��7g��0���g�iP�m��pGȚ�����N�4���Q�)znN�%�pF�1�����U<��[]���7Tu�N���\oGuuu���*+�G$/��&u�nu��^^��"���eA~<M溺�jjj@���t�����FT�A���?5e�u��C��Z���vSi+=d&ʫV�U*���
:��>GCY�(��4/�ѯY�m�u��C��#��|NF�x�w�������-���9[<M�T��Y������f?����D�5R�C��
+�G��N�Ɖ�n�sT*Uoo�dnl��f@c\=�Vx��1������R)�>��ů|N�ũ���<�T�v�͟�
�F�x�9h�� c������z�R���v��-W�T

�f�A<2���!ȍ7t:]kkk}}�L&��ɁJ�jh�4�UE��eA�/�)p��U��!ȋ�eAqcP�A7eAqcP�A7eAqcP�A7eAqcP�A7eAqcP�A7eAqcP�A7eAqcP�A7eAqcP�A7eAqcP�A7eAqcƃ������|ނ�uz{)]e�ߟ�c��C�K�mE얙￿`]�f�*di�|�v��w�<��8�uW�n�y���p����z� ��ƃ�iK�h��hn�I�� ��'�+��4�]�淇��ߘ��6�ΌV�4�Fs{A���q%s62W@en!��N�r��<u�Lzs�~������9��4'ާ�K��^ߜ�K����b�QWW�^x�ո�ڣ�p`/F/��A^bk�DAd��<2�H!�N|(xpNȜ*���oץ0����K�.�t�]�m}�хo����.<Yid����ֱ;s?��EY��8�Y{/U�$V��`þ}��뎧g&�d�s�E7��%
8�;�
�:oI�6\�D3^��u���Y�PȯE,���⻜�9cl2�Yy(6]��UԒ���_ω��H�n��y�j���`/�[�Dj���,���EaU�w��f��>+r�!�ü��Y���#cOl��&�EAF��#sV��Μ�9�Q_�»Q�q�R�g�e���_��`]T3�͝��]������b��z%��آ���ǗsU��gj�^Ü��Lj�����8o{}�κ��’���K���m�D#Ɨ��aI]���#���&����%D~N�~
+���C�\WMIII��C�,/L;�-�I���L�޾���j����.��H���f�k�V����`��_�3L�.}Q��Y��%|4Ay~ƃ���\�|-}����4!��h�!�����{R#�܌�J���êp��mM����W��y^kS�ȍ�l߷�|s��2N�ldN/e�W�����&�e�bcc�j,d�����v#��C�mo�����YҨ�4_��JMf�OA��b\�H�����`&]$�`����mQ���q2gIHA��𮸕\�;�|��6�'Iz�^�o�������e^ާ)B�9V2�!%o.�w<|%��i�]�|����9ȫ�8��ylz��˞"� ����9Т��爥��C�\��i)L��R����u�"��me� �ʸm���ݏ]Y�˅��FT�ä~lo'���t�ѨJ吝�]e���AK��*v�ר/��"Z6��Pf��A�d��E�i#{)��5/b���4�K_z���Kc����6��'�F�Z�q�,� 2Zƕ�!� �؂2� ��1(s� ��2� ��1(s� ��2� ��1(s� ��2� ��1(s� ��2� ��1(s�ƍ:����U.�WUUU"���?X�.�`�B}S�v����o\=	�(P�h���כ���#D��g��'ks����u�9~��jZ�����'�3����ҡ�!��ZZZ\��A�1cu�iu��/z4nu6y�I��E߹zz!��!�\~��W��Dd��4�D^�O>�b/��]d>᯹��i񅿹zz!��!���rW��Dd,��0�x����Lr�~�\�����g��zz!�+��+
+v/�˝/��{ϗq������7V��O]HE욹����9q�������E܊9;S�=eUWq��u�mJii��_L}m���}�2����_�����=����}�}l�=�vpɁ�q���ȇ�'I���k�o_'�����������<��u��B�����k����t�_�0�~B.���trMߚ�.
+e��w���s3/���o֦692זK$�r4.��҈�L��6�EjBߔ��Q�E�L�/>�s2�sHII���-��鿘��
�e�-������p��q����i�V;<J���j��6=�oҟ.t���J_�!U<R��>�/{b��.R���O}�����,���/Q�����_��?�!�X�j���ԧ��)V�wN�̽X���AG�u�	
�����֖���k���\p�f�gq�(#���&���k��v��J���+�d�7{��m��&*��������:&���'|·'�{O��D���|�T��т�l�IKR�l҉Z-�'sm�h]ӧ_��A���X�Mj�2^Y7dn��8�5��R@洤�����bF¨3"�#�'���ӏ�O��#>������1��f�qΈdnh��9pF$sZ���؝��J�u}Q�η�`��ӹ�FN��޶oK���d���Bf1�7V��h�4�7����u,yɾ��ĝ.��:��Fe�O�8�;+/��[5�4�]�@���b�kOKYz�"g��t������TD.[�/��
+o+ccWu�
+��u�#7�eG����^r��
�]�>�����|K��l��H�K-Hm�'���2[ټ��N"��O�0����H�X�L�^�����+����M�����\�W[nhB>�bfٖm)L��\R���=Հ��
�5�F2��>?�b4K�
��{dg~�������c�
+�X�(�c׾�_�r�qp�n�������U���A�O�t�D�ן/rJ2�R���2�beΨ)�e�������r�����A�����5%q���O�����疖�	��L���D,"��K2B}$l���RK�����e,�(�WsIe�8�!���
+yy������βե����payy���`��|�sE��ה��@���&J�je�� %�:�YZ^x�
BHa�X���fㅷ�Z��n�����P��CR�H*h�H2�D��J�+o�����k�@�����ΆK�����ܣ��W�{�(j��Sq�gJ0q���B!WXZM���k1���U�7-�Cy�%8Y�b�tl��9(6Rn|������}�k�P`����!�f�H(����C��-_}%�y�,��hx�u���i�������$��~�݌�+[@L3����)ӽ�o�hvCʜ����?������`����6O�R����_aO�k��#�#�r��_:��$o�M���^�i
+o�Lϐs2wF�*�:1S�M�|�Y�inӴ�΁����\��
+�3���ů�3R��|�%o�t�Օ��YF
�r*�]>�-s�r/%\N��&�X(�Ԋ7X�l�j�5��%�x�Ȝ�����#��	G�o�̍��d�p��,�8�U&�r#��۲�=��聱��~#��ӯ�R��@4�ѣ�`����6@rM��%�-OKk��aA�f*s�ӧ�n��cM,��27d�lɔ���)M$
����ǁ�~U}Ԗ��q��;������7��?xp����F4��󻸧���׏�b�M?f�����S�	�;���ś�P�^��ie��B�R�&/�MܖY-�����z'U�
+�I�W�t�Ě9{��B'T_B
+:��ʛ�o�[|ʺcYVk�dmn�a
{����S(Q��u�ؑ1���*0o%��E��A�Hi��>��=�ӵwa=Ӄ޶��`=�����50{�2�B�L�U�Ԅ(�[M��LH�ר&q�9�d�#����_0)}�w��'����9�Z��F�r��,l�?l!��Uo\&#(o��c,.J|��F�ډ��g~��Y�q�)����g?>����p
�"����̽X�+�M���"_�f��u�-�M��/��P��{S�-����Y'kr���ّ��vg2�������.MCV�	'@f����LG��|%[X<1S����NJ�ޥ��~پ7g�6����#V���ys���4�G�P�S�C2]O<v�O}�RV����ʛ���1�k���M.}4eB���֥�k/�}�M�v����z�[QR}��\������p27�F8��FZ(�Y�폃�k�ޙ�n4�����G�6����qd�s���O�"��v�?~r)��Sv=�s��+s:Y�㝍+
+Ey�م��*��P���yBQs�<y�|�>�08�9#f�6EV�r�>Z����X:���577����%Zq��*��/�J��:N���.�́�Ѩ$:.Yt���YQ@W������PO���%��Ͳ̣o	ks]ef�����mA���]��=Yծ����n)
+�>m�W8�^+S�?�k���7~�����˺���}�����2���j.Wo͹�p-%���Ü?%���}V!�{����Y�m�}�{��������|P�[P��M��axuKK���r�o���m���?NȜ���K���\��8/w��)�ӂ������j7۲�܉'O��S?Z�N?㯟їU��>�?24��@������Tƭ�ç����
+#����8aS��I!��"kc-��J���NFcWu���
+���b�|W�[A�����*n�o�<����%��n�Q;06�l.�0�3�g�B���6��2
+���C�i�+�~aX�^��ݒ�^���Ls?[�z�$�U�&i❖T'��pK�RnZ�{�x�ƌ�ֳZ�Yd��ş�m�t3�l/�mQw����9�(ܿGl�ڞ?Y���X9w��f��?��#���k���QV;�`aL����2<ko�z.�Y*$��6�6�P�2����:��� t'V!�b���J_�b:��#�iu��}e+��O���ik��6��4�6�dtu��x��zH�Ӣa��L��6w�F�Aۜ���mA!�կG�Ox
<z`'�|�ܷ��M4u���������G��Yumd�nF����A�d�g��IG~$G�k�-}��F���H��0��}!���jijW����p�B�bw_�0���:�9�9w���������/3��೿{����[!^?}����e_(s�LSSS}}���_"2f�����w,^,QH������1\=�P�FWW�T*��d�~������?{�뿅r?�KH���{���3v�-�
+OG�sgnܸ���QYY������v���A^B.���������z�Y&zmx��؝/�z]=	�(P�1 vz�^�Ӂs�� /!]#���y������2� ��1(s� ��2� ��1(s� ��2� ��1(s� ��2� ��1(s� ��2� ��1(s� ��2� ��1(s� ��2� ��1(s� �3�2���ޤ��[� �G#��ʜ��V�2� ��&F�Jc(s_��
��;� � F&Ic(sL�@={zz� �:@�@�@��V�A�eeAqcP�A7eAqcP�A7eAqcP�A7eAqcP�A7eAqcP�A7eAqcP�A7eAqcP�A7eAqcP�A7F� � n�����D
+endstream
+endobj
+
+1254 0 obj
+40468
+endobj
+
+1255 0 obj
+<</Length 1256 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 476
+/Height 637
+/BitsPerComponent 8
+/ColorSpace /DeviceGray>>
+stream
+x���1��� ��g_�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
+endstream
+endobj
+
+1256 0 obj
+317
+endobj
+
+951 0 obj
+<</Length 1257 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 476
+/Height 637
+/BitsPerComponent 8
+/ColorSpace [/ICCBased 506 0 R]
+/SMask 1255 0 R>>
+stream
+x���{Y����{���n�LOO�4t�	��s(U�r�,ɲ,+9gcc�ir�9c�������,��g��a�������l!l`���W!J��y�T��]O�$��?���B�m��_�@�E��ݫ�h0S*���H�lkk����������?�x��xA��`��r���ϟ�޽�������������x�D�Z���劊
+����x�@μk׮��V��
�@ �PqWW�#b����L��~�.{����~�gp����l������NUx�ճ�?�U��욓Z�w��VF ��"��Ç��^<s��K�K7n�U��
+�
u4;v�.����h����x�ʉ3���~!�;*��(_V\Z�eǞ��6(��zt�įX^RR�~�[�͏~���?�׃����<|�p��������أ��x�<@ ��_���-%�?+gyy�E�Kqeխ����
+1�`�a�g����P��4{+F�#�R㵨%2UF ;7;;٠����nC��D􇏆C�e���e�XQ���|���~{�f��
"	�2.�u����{���U�[�}pR�Z����<���6�#�8���"&n;~�w�
�v�KWJ�9+!-^_��[3��A��5	�xӉ��x4�ܧ�H��ڎ�"ov@*[��qks�𯏏��~۵�/�'�k��!��~�Ê<��<;�ۣ_�>�����h__����CJ����PW������
+��#C���Ɓ��H�����C�P�A�IdE�S�A�?24qF��CB}�����X�/�OU1��݌�͌"����o�ä�'/���q��ѝ���NT�=��F�.�Pz�v������KqKS�X�����4��#B���;j.�dԶ�@���c����Vb���G������ku)�̊ Ν�J��<�:��`���tp����;g\v3&�ht��{���rrr�;���=��Ks��^�7��Ko5v�����33׬_�[t:���V�[�^s%�넺���S^�}C#1͌ ��s��9ۢ��E�@ζ��/\�����C�'���rqޚ�>�ɷ+�
+�=���/�Y#�j������C}�!HF���c�!Qm�v\*� ݅�5�·F6U�������,[�[�j�kWw�-2ٛ\�:yh�'Vl�}��9�p'����c��
+Bi;z����c�r\m�l�v�%���f���ꪓ)j��x����V�=p�ʍ�'j��@��8# ��1�@:���rxז@Z�A��syjc����#�cƆ�.s��@��w��hw��~x~�*�l��$!�ݜi���z��\���M �����T������Gc������[~�s�C��d���w���<�?�*�A:{��4�(��n����Q{�E�Rq�����!�Ht���ѣ��>|�t�D(�s�n���,������o��{W摶��@��oƍ��K��{��knT߬�sƻ�шY� 1}�lmnlm3�5{:�7.TfXUBL{���>%�]"���n�r{��7v�����]�����ё�p�Ug�U�9~@�a{�j!w�k�qR,��Xirl��G��h�K�J|�������
�S��b����H��N*�]ixp�~[�R!���w��J77tP^w�K���2�]�L(_i�UCz|�"7�������&���J�+=�������w����b���v��r��k�����v��Tȫ��4:2����P��+��i|˶Cf<4<�|��售;6��>X}dt��o�ݻ|\,�쯪�G������l�Е�Kx���u􎌍u޻��p
+�';�W��'�0��<[d�l
���RN��Nn�=N���s�r�DJ^��962<42��x]-��?vs���F*�_m�U��
\�N��7�׵ut77ܩ<y�m�	���;��bz�G ������gv鬜�-M��������n>����	�ر*[��%�Х:�jx(ܷ���H6<�����Y]����8�}��=>J!-=�u9�&(Y����o�}9+���
c�}�2lt~��rx`���9�D�.��?<��r�"�m;R��o��"���{���ϕ_�������s��#Q^����N&�G/߃U��/�';�|f�_��;[1����(�^04����}�����g��
+���+TV�U� ��vݑs IX�=��H��}�ݠ�H��poG����P��-f�D*�e�l�����q���}].��r��j���B��|��
�/�]�a8�T�Lf!hM��w�p9�l��h��M�1v���z��Z�����tj�@$_��\xh���I*;\]��.��:B�w�&�<�Vo2�R�|�����w����>b���1T{�Ʊ��>|����{-�����Koީ�;�(نzo]�>|���C���������jh
N>HCT����=|p��}'N�ij�d�Zo_Wa�1�|MM͝cG���<������B�
�U��ݮm��j��\���
���pc�͓Ǐ;~�fMC8k���^}���3D�-�R�����,��y�T>q���;��Ҽ�}��ס�x���v�Zl�a��@�Ҩ7�Qoo%m���������Mո�
�/�k�3TbK�&B�����0^��?��Xe(yz��ף��-�uחgUl���z�}A ^�.b��j��9 %#�w��E �['���8�x��{��@ ��@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �p�w��#���7�|3w��y���W_}�b�����@ f_|��a�FAA5�g�?���P|�F�$�v�d1�ٌF��f�>Eܬe�B�Ӛ�(��9~��K�O���9�@L��jM&��I@�:��:�^�ђ�5&J�s�\Q��M��d�N����k�QA�Ym_���;��r�D����gl�S�CMh���@�lV6��j�YL&3R���h/،	G�B:��z�Ŝ���(�h,6����a����O��	[�j�l�Kp��d4�(1)�'��B&��Ӓ$�Zo90�RNp��%K�<�h�	�j���N\��������Y%�V����������_0~�cDNF ^��͕+UJ�\�e�gY��K�Q0'bc:�.��4�B!
+x&�)'��B��X�+�f�ؽkͪe��Og0��'&2�r�j�EOO�����1�@�rB��_y��1���X_����E˷�;}�e�j"tur����s˳�$B�Ҝr�lu[{����^}�ų���V�Rf]4 <Z��~^�����7�4*ݓ��
+F���l�����MI6ju��<���X?���_�R�u����
�#����g%�Q�)��i>q#��Xa9Xy�-lkm��u�nq�;q��U-:� i-߼�ܑ�2.�+��o�U������ܻWwx�j1�u��ew߸ܸq���C;mF�h䝖�><<x�ڵkW���=q��\@�҃}������W�̨��j�!rK!�F���Vt􅯟9��b�ᓕ�7��20<�ku�re�N�T�o;9���I��}�=�����kW�,[���ћ7��x�*�&S�Ҭ�p�����7t��H���'P����U�
�
���ƫ)Ɇ��ch#L��.^6>촴�4؍�ہ�\� ~��|f�)F�F����@�w���C}�*��J�?uԦQn9q}�����0 [f1y��n0|��/t&o׉+��F.����z���<�g��C�
;h���͡�ֽ��9}�h���)BȤ��ћQ?C��m�h	(w��k}
�I-���-�pb�&�NNk�o/sG�̞�
+`1c���nPOf�Q'�T*��v�B�|�����,-��`�J�Z�68���Wש��Z��U׶];�K�2���
+���IR�T*
+H^����h����ݠ�,�\n0j5ڊ
�:��:�z�fj���4��j����m���������
+
+a?k#�GNF ^�+�x7�r�RJOX��H��Y}e�c;+2�h���Y;8ܗmU���c.����b�Hm6�?�����\﮻(&-Nb�<wk���l5�V��Jw�߾o���F�����qG噳�vou�4ݜ������~��
�6mZ�~]YA@�'�'�Lg��ޜ���=�3Y�`P���
+�s��C���vmZ��yp�������y5��9�H��	����݃�-�W2ZB���*Wn;�VH�\Ye]����.mj~sg���j9�@99����ݱk�7N��+�'jL�"I��M���v�^$aJ�Z�"�Z|�kjj*�kx��X9l���LJ���"�<�
v��?�����v����G/��k���`9�Xu�\X����$oϹ;�w�I8��ͧ��f%k��Xʞ�M8��\Hc�3�[��.[S=u���p[SÁ-�pBu�vk������w���=�I�.�����^�t�\�������KJ]������K��W�
+�CU���4��.�|�Dw�.��Ts���ꪣ*BDc��\��]�O�J�u-�dnԙ1JMɪm���#Cgo%q�� �����ɝ�1�t��ꮆk6�ܝ���/�s)A�#*��R�⟖�e���(5ڣ�ꯟڧS*�S �'7]��uJ�S�<��������Ns:�L&�w ���f�;wz#�<�������K�f�xb��cG�?��o����e�h�eO�
ugZH�*��g��������'��ԙ4����\�˝�'o=}���iϮ]W�4���]S R��u��j0��$z�ʽ�����%����^9���tɶ�7��^ �EK�vVA���9�4�.�մ�n�;(
+R�V����eY��Զ���cۅ<NR��tW�Tr�w��:�$����5�r�=-�蹫ãc�.6h��Bw�������`���uv�:��d-���߷�\&#A8
+�"���ҥyN�\���}
+�F3�d9>�܈�&���MW��:E�y���IE���8^�΋LJ�G����Uwl�\.�����3��cq�5����c���^v������֕YI		
+��c`���e�eۆ��t#��D_���h�ա#���L�hۑsg�m��i���('��2�q�ʅs����<M�Im��(w'$��V����ݵ:�$��I��{������ꮽ���]Y�w_�w���
+��lnjnnmں̕�l?r~tt4�R�qU����2����m�:� �hv��jP��I�\���qHw�����(t�0L��b[Oo��':���;N�z{Vcg�v�~���r� �o
+
�-��H�"*�hd�B�����_;�G)�
+�H,�&&��HM�"���Ov6]1�I*�t�2��?�dj�׉;
lurtƷ�޽{���Q!OZ#r2񒌿kFKJ�h\u����D�$[r�r}g�ݛu-5��t�i��}��n-�%&$����N�li�z�$�����v�FO�%��E�Q��Y�XK�t�r/�8�j��ިSw�Yع����GD��ɪԖ��;�F��n�Z-�L�b2�l�;��µڱ���%�[�����x����pK(&��&ۜf�:i���~J\��j8�p�	ט�o7w޻zڠ"�rA*���=�,�$.���/��+{�{ʼVM�.�I$,6�@u��#[�$1F�J_~��ukS�:�*'p����pG�%B�$��[�3�i��)<����WO�&���/!/�͓�r�&��R%�����}�S�yptlltps�'��`3��Q��l,	�&�����|���l�����_�`��g��a��A��
��Gw��㰘)Y�=����V1��v<��ۗ��X�ӷZ�Zn�Y�L&K�ի1O���)bK�R�34vd[)��F�3�f���Q'c��O�a��'�u���[�
C��;�*I�$嘌�x�ң�c7�`RT&IB�s��626��X{���`�P�{��,É�1ed��������p_o��y��|���q����*���$-�������wh��=<�o�
+���鄌0]���p�Ca������]
����K�f2��u]���;w�=}]�5�V-��9&C$��i��kUJ"7+8:ˑ^T��12<P_s�Nm}xx����I'����pe��!��]A9���˶�00����
+�_;cPH�̝U5���*)��b��{�Q'���(s'$&��;M]}]wkj���6$�4�ƮpKc}S[GgkM��Jb�^ml�>,�{�/�d�D@}��`�/*ݸy˶��r�ir\��"���->�ϨU�����!W���l߹c���W�y�]�� ���F�###�G���ج��Ş��y�*�������}^�/����H��G�\��6�
�z�1j�v5썹s�"'#/����K�֮[W��PKb̉�~��5X,F-��8�4WJ(r��mڴy�/�2}�Z%�n�*��d�^��������V���D?��f��(�X^�,'�/�}+uF�I��R�H�>:�H,�C)���HUn~Qy�2�;��
+�<����/(..�3�q�+��Jo2���ы:Y,��Z)��L&�J%�R�q9�W��"�l�d�\6Q=�DkFE�F�a�h��� �
+&�����aj��O�3��+�CW����Gv�������Ɍ~И���[cS�|���'�Oݷ����/qD�����`���M�DCľ4m[����mckg�7�D=���o�L��@ �'�¨(^��aP}�ð����Ƒ��TbN~)G!^�^�'�E
+r2��l���/o����ϙ39�@LB$q���va��ѝ�@ 1 O��x���8�K�?����j�����d�@ �@ �@ �@ �@ ��6��_������x���ar�;�Ȉ���ʥ��������a�_F �ׅ�d���G�����`0��\�5�LN��[N��l,ek6�+�\eHOs���͊�c���s򭋇�8���(�X��rxs�ݙ�c":�A���I�R�gcr�3%EIH�ߵ�.�U5���K5K$"&���6�Öl�1i�@ ��I�K'�|�rc��Ĥ$��d2�����������޻U�ng&%�֋7�?|��mp`����d����j����:O�^#W�/ܼ���
+�ں�=�1y6�������Q`>))�Zu���o��ݻ�i��-[��(�沸;N�	�Wd����ʛ��`��p��5��c���7Ud����L&G����ᾖ����7�x0ԑ�Mћm6�6�а�o��6�1M�0ߨ��R�W_}���(btk|�'W�h��l�Z]}�ƍ�;�JSM���#��			�����GV�؄��-|v�jz�b��Z�ܷj�N�5��%K�K����^9w̟fg������W�b��U�0A�o��2��o���hB�P0A��/�	�8��G��AY�@e�k8�w�Fg��fg~���j��C9��*RR���>�o%x�h�)p�E'�3�<�d��=-��GO�Z#��lT�@ 3�$��	�|�N���)�x����ri4(����L�ZB�����K�&�m�?�,Mu�ՙ�'�\���p�=�J�H�sX���$�T��l�X_#������{13I�*߱�����=w.���є��`�o9622tl��e+׷�6ݨ�Y<���k���l��jGS�ȹ�?/Y���r��C��nvٍ�۫N,**=W���|��[���	Mh��ӛ�;a8����wڶ��;����x��u�oݹS[[s��n����|B������N��t��Z]��hBL��ș���]�����kj�^�X��2��MhB���L&+�����w2�N�E?����͢�|�@,R_���`�����y��eQo�	E"��d���B!̳`�;?`Є&4��iQ��bhyf8���#�D��f�'���A���F�9s�̝;��o���>���2Ý����MhB��>��Ï>���2r�2s����=g�-C�Nf2�o�0�ο��?��!�xAN~}f������?���?�|�x�@N~}f��A�П�.B ��ɯόr2�|�!���t��!�����g�9yּ|Ŀ �{P#'#����=������������bvj����a�	M3{z�gb�瀜<Á�U��]k�7ͅߢ	M3sj+��R������~>��38�;����?����p!��4�&82m�ϺJ�FN���g8p��}���3��Ti�J���4:j�Ϋu����O�3^W>�*n)���X|8&E�����o�����N����?��������d����{1�x�]
+Ǥ�`d|��<m '�pbNVit&��0�ɨ�kU�Z���V��>�?��ʼ���:��/#�F��*5Nk��}��R|���t:E"QZZ��^}��pL��z��i9y����j-��'1�".;)�)�0�XDOZ�Hgi)1��G�T�.}V�g��W�??��`JOw�8lPBb�E	Ij��������d������d�紂cR��"'O#�ɯ�LWϣĜ�Ti {���ޠ�
+´@ٵ;��]]��Ɔ{�O��[
Z�	s�P�O-�|�i\"[P�V�%��4ѥ	t<&�×�|�U|���&
�X�ȶ=���!IJ�+5��:��U��wj�F9./��x�JU��4q�0��':?y�O%����Ϗ�>Ƈ�`���T����='>�J�9yAN~%�l��ș���w�ܹs���ܭ��>���X�'易*5%�8䤢h������U�K
+J�W�?r����N�Q��H�<:�p�B��>JR���eR)�NK��ERB��9l�X���2�J�\�2�4">��L�\I�A�V��
+�R.��`�p����Ӆ�6�i�D���L�i��-��9t�P�e#�
��Pi��'����d�"?�(#P�ժxl��S��r"ś{�����
��[-�����	yf^ف};f�V�p9"�L�a�hI,._��T*Dz�KɘR��6����b���F��v�㭋a�����,X�p�B��ƧΕ*5r�4���J��\�d��͛7�߰�^���^͖�k7n޲�4�ϢM��6��d2LH���)�؍���x j1��6^�d�w,�d�B��8�ʚ�����Vi�+�
+%�#E����ov�=y���|����CyjZzyy�Biݲ������z�Je\�rU�7U�Tj5��X�|e�/��8}��O�ٷc����]!-)+u��f��;�����{Ba���˓��F]Rk�����]}����_�*�J��x�ζ}��ʓ+���<�\��mj9!��UvTVV�X�����\oL.+_��OS�U:CriYE�7Mkv<]��;�kKYa�����~l�Z���*.�7Qy�q��e�d�?k�ɓ'*�H��`"���9p���;�p :-b2`W��	�\ZZZ��*��������&�x�"<B�Z
���+�����W�͠�Ф$�����sI��&$*���vluh	�/�֒��ym�֭Z�!ח�aǾ�Ϯ��r9QQ�ҳ��>[u�d��Ρ~|��Y���g���w�ɤ��W5����7���]?��"V�Vk�r"{�������/VU�8���dE?o����m��i	�v�_��-ǯ5k�!If.�<8*�X�V��
�����k�j�^iҨ4:��ƶp8�l�>{����]�=��j/VO�U�V�F�֮�z����������%�͗��n�w���ž��k��h�ru��*�ڒZ]��l>Sy�)��VS��Sh���{�O�۠ p�-7�>�{�1%���ƞ���7���`6�n��ݵ��*6���mr[:��v[gOOOwg���ၾ�+�e2ܝ������ų�j���o�u�X'�Z�)^`�0���ѕ������Ռ����jhh�/��ر�h�7�P!'O#�ɯ�ŖV�n��pH�Nb0蚔���_O�\��%2��3w�MW�L�M]�Ã�{wo^�YwldϺBZb��S��~����7�;�RuIt֮�[7O�����t�Ʉ\�C=)W��;�����Je�\�R�l��m=�����Pm=t)�Ӕ�l�)��;0pv�f
A�����(t���o��Td8�2���{���m��`o��
��Km�˺�����*˥����k��c&w!�o��B��>�1�j�Rm���~��N&��'n4v�_uZ�R)^�nO�oC�z>�	
+�/�*�}���v�T�(���?�s���ovQ�%p�ޚ��>�k
&������=?E���@��G"N.[�;�s����Zc��ލ�EcL�vW�����m�.�r��wKw+�\�����!����#���rЯ�nohh���
�B�.]�?a��+�������	'��lGr�rCo�5���u@V�>��S9���݂Xl��b]��n!��P��|-ŀ+�
�����e&ѤI�2��ݍ��e�F�j������Y�m#JJ� GzJ��S���{`K�Bd^ن�PO�ے]�����o3`2<�bSw_W�Ǣ4��{��YkL����Wd\M�=��@{pxp`�r?�4_mh=�w��
+i�����n*�	R5!eP�F�|�||�V.S��ך;.ݡ!q��4�Jک&��&P�Tj����Q�l����hmך��v����:Yg�lh����X隝��4�\�w�Np5�lm��&�F�n2���bZ��FK�Ń[�:����� �9�mC���w����a���?��/�Z��m_���/���b���N�I�dII	����V(�VpL�9yAN~=&9�à�=EGƆ*2���^
+�^׈Y"mZsgxk�31��i�_Uv�Q+ԧo4��zZ��������I4V��
+bN�p2���0��+\�74|b{�F�I(r��Gg�
�`wh��<�P*�������N��n���2l��e�d).�|�r���΃U�-��1���'tt�j����zR�6�V��X��'�o$e�BND��c]�TFD�C���tx�R&Vim7Z��n�DBB&Q;2ۻC����p"Z�Pjv���Q^)���C��4t\=��`�n]%�2����`�Q*O������Ֆk�©F��O8Yur�Q��Aa���_�Lkp��/ܬ�Zn���8�'�b�x��N�A���9�?c(�x~��J������x�Nv:�1'ǖ����^�� ��8�dN"'O#�ɯ�d'sX��r�����+��ݧvT0�H�np�bgB��`�8s;�|E�gn���9�4�&��h�2��d�錧��'�p�rR�����2�^S`$,^�4�T��W�Z�]�����q�y���t֥T��{��6�T��-����]�J�Ҵ������p�����L��ګ�u��\��x���X��J��|��d�A?�����9?��'���ۋ�'�&�fkύ�ۙ���I���
+��ʷ��vB��\F�m<<<���[�#{E���%J��������|��㗆Çv���e������t�%���~�ɿH���5���)�Rk'Ce��:[4O��侳5��������F�W ��v��l0(��/�DS�I�pLJe8r�4���zLq2���e�����Cm~��FK'7u\8�M�	S���S�9tڊg�Fz�xx����R,��t���O�cNK1�8\fI˺p�atl�������p���QC��h�
+u�55�z;6T�ID���m�d�X,ͯ�:4.�Xd��P�/�m�,�X!��q�+����'��u�����ksiFo�v�;���@N��5�go5�Cwo�O1jA���8��|����@K����ޑq�^0��Q[�48>��g%���
 	�6���[�Pmm]�����GLZNj��5<4������8�k-&�}��]����s�췶����5b��l�����T�J���u����&�����]᫰�%"��W}�ih����ngo��m?ˤ)S��X�7욜��`0dz�;��I�T��<� '�����n�'�Ɲ��!-�{�A��}"�����C}�]��M���`�M�����/���y`������{��i��64]:$���P,���2F*uY��7nZ�~m~N�I�%	B�a��Ҳ����T���%�Fgr�R�
+9�ü1--U�RT'LɎ�Te�hX��E�e+V,��{tj�vgj������C2T(*́��B� p�J�UPT���fPc�қ�K+*�3�S n��x}ȕꌜ��+��f�;pR���Jc((-//�7�u�^��@PŸ-�S��<�炫��e5�Pg0�RS��o�JG��b�C���b��$�)Ԇ����++r���&u@l�Z��v�}��,��H,EN�F��_�J�ש�w�t��SL����nU0)'7u��Y���ed�I��;�b19<q�'���ȟ�R��͖���@.g�{|���� ‴V*�J"���h�j��d��*D������
+X$*Ԃ��(������"�cݙh=�Yd��l����O<����ĂC�1~��c����"�yj��+��"-��2�
i�.�ғ�%S�>�|j��1>�<�x|8&��DN�F��_���ػrl[���>�vC��,6�dCz{��β��		��⸷�@�С���~�/�槼�����K��E����l�>���
�����?��Z���0��}�Y,>�Y�y�Ϯ۾l����|���@�"���82j�.��'J�y\2G61���/"p�B��i9�
���i�����4��
+F�Ɍ�?���y�)��4Ailz�����L�w�"'O��3�_��o����e�	M3tj˛�Q��<= '�|�N��$Mh���������Y0��r�̇��2X\Mh���G�[�`P?�d�~1�5r2�x��݃9�@�_��A���@ �/f��FNF ��{P#'#����=������������bv�5'�	Mh�er�+���&4��
M�ɯ�r2�Є�74!'���hB��Є��
+ '�	MhzCr�+�̎�/�X����S��S�g��o���?��O���������~8�����?���>�R�u����>�p|���_����C�ӗ��������	���:�b���ڇ����v���ck:#�I������>z�Vp|�������}'��_,�R��)s�,x��ΝۇS��ǟ|�٧���%38�������?��_��Q��_�͝?w�g��OE}��g������G�N�)��HS���?}��O�����/?�5Λ?���>�st��s�ͣ�N���������/�-X��o���ӿF�ǭ�i����PA���:�a��}�	l�W_�m�o����Sw�ӻ-��������V��_?�ۂ�|�Q|o_���O{u��5��#cp�����_��U�ʡ��ӻB��0�Y���y��Ƭt2Y !�<�����ܼ̀��b@�U��$������,��sa~δ���_���Fg.\������>�ꫯ���K�wƙ��W�&%��w�~��ܹ���_�����o_5��/�͛�٧�~|�)�4�6ҙ/>��3�����M��/��3��ϙ��̟7�˯��d�~�������X������E~�H�E�Λ;�:8/̝7��/�|
;���yX����c�O�������|;���>���0�@��̧��5�Λ�ż/��蛯�E�O�/�9��s�Ez��f~���Ȯ�b��D������z�F�,Y�x	�"S�З�M�}� �}���/>�4����_|��w?,�a���P/��Ϣ�?���.�qQ���%���J���ó�k�Ԛ�'x��p������_O]o|���_E�������6�Q�0��/�[w2����4*�J�p��|�ҥK��(Bt~�O?�d�I��d�…?M�_�h�I�E	4�F'r~.�p�F��d�Z�H#H�E��iLZ����X�|��`0��!	�G:G��Y�6�F��t񒥉|��`�q�̥K����O\�D�R�D�E\�$!)��?1a)����r��x��$Z�w��D�P�IY"Q5�k�u�?��j�Db"�P�12�D7�j��z������EJ�Ǥ,:
�Sa�pR!'d��-^��#�.�u*����qѢh,.O�a2����&���.^�����*9�s�L�'�p��AEB����Dž4&G�Tc��?�뀽��r�2�"9A��I���+�B7���%	q[��Hg��:�D�_q��H'�i��&�J�C�.��4&,�@,#e2z��%K`��4z�V-K�p9��"&G�T�H\�f1��b0�.�'Ƒ4A�ө�Ʒ�����_6>�7�,���_*�Ob6�!�߁��\��sѻ�=�\ ���N'sE�̼�[�f1 ��0q�z�ZI2�(bq�Z��it�)5��V�U)N�Ӟ,�����Hs�٭F�M����hIKK�Y�"�Ngj�֜�<��m6�e2������v�mj�d�:�L‡CVJ���@ȕ)�i�
+L,��#��˙��h�F��ϡ3�r�N�V�t�p�A �H�b�0���/�NWj�+#3;٠f2�J�.=�MH�\���H���J��Y9'��x���J�z9�9~ ��ӫ�\O$��{>wZ���w�pq4� �"�W�ӼF5���EyZZ�Ũ��T?DRh1��|����aS�^�G�K�<�X�{|�HX_�N
�Hϡ��Y�y�9v��Š-ML��F�j�b���1hk3i����q8R<�I�$)iO���󥻜RW�.gj ��L6Bc�s�������,�L�;ݝ���?Û���%�H�['���yԄ4a�R��Ņ��jcvv��j���P��2%�[oFFVvfFFF�7-��:����x�>�v�Zo�R�u��>�Z���hv����_��=Oloǖ>�����i�_$�1cE*�Nj�r�����"���b�5�cZ��	
��V�Y d�lu2�m��KJJ��r���f���Y�.����y���B����Yӊ���<��9y�92�͗�2�r�vG�;�)�X�#�_���t�d�d�|�lw� Mu��J�?3�(?��I7�T|	�WPl7(L���-)..�������gy�������⬀7%ŕ�WXZ\�#�L����P!vx�x�D�]��Sz�}V������@�K�J] ���2�і��iT�A;�BI��$b,������X�{<~��*K�o���Hd��i�#�$�Oj"�Zk�:�L$IeJ��o���F�w{}�T"��y��I6M(�q���<��
+����c,,�y)�p�JJ��gg�$��$T���AN��?'+C�����,_��U��T�"��٠�j���3,z5��bB��
J\"%�_��U�F�����&0	�2�Z�
W�~������/�/t�L2�Ȅ3�XH�RӼ����	�������2�H�3g�R(�$;=>�C,=I�|ف�8��^���~2Z����#�_q�0��S[M��
+�A�p���q|R(���+��[AX
+�'�oah�+0+�V��D�)RP��j�D������lQ'�3�.��dwq~�V��ٖT���Klz9[$��+��S�|^�$,%5E��V-�@oI-.�#%���+J�j!��Z�����L���`0�R9B��-�����S@(��W�����,�	HE<ȷ�:d :Bgz>�M��7��N��)��6�N,%3��n�R����
+7��~O.��`?�����9�1�4-ݛ�l	P���BV�����'����z]��<aЁ�tkF������'�V�vt�T@�E$���Rl�x\�#`QfFv��ˇ��-���(�F������eիD"i�'��v��TO���S�-��"��9,>�������&
,%��/���k���'�p�I����F�LL��{�f�>p>���F$�Ɋr��H��t�N��2R�ߪD��
����;Bm���:!��K�1�U�a���)��ү�d/..-��M6i�U��v������^ȑ���WcR�g9YB�YDz�~ٲe���r�<�&�c9yz��N�~����ތ�v���?�� ҂L����
+�DN^q�M�dr�6WqQIa^��j�J}AQq^NnNNNnn~QA.	ٳ�9�u�'��N����,��F�7?�#�ܗ�6ءN���7���L(
1'G?��)�N~<�bN���:R��B&��>����)^H����r�B;d®8�C)�r�w�{!Ĥ2*-�Y0)�P(I����0�Tz�	������L�'�LJ���t��vp��I*5n�?'3�n�K%�/#˕lKR�4��p������_��
�ua��h��X-�̬l�F�y\�X&OIM���v;mP�R�/`�+B�C�3�L:5�A�P�z%�p2uI(����d�0%�g8�Y:Q�2\$ʵ֬���ɑ��)4���L0j��>���}BjL��uʨ�=p�6M�es0B���޺�����ΐ��P������s�W��,'G+�\.��/d(DN�vf����L,ODd�f��p9"�ɩ�a:�/�.��"��d�qE^aI�Y͢�c6\ƺ�����d�t�� �vՐ���`��8l������8'����89�#�s��Ƙ�99>��Ä�Z��O89��'�����]���0�S)i���l��#�a:��� OK��,^,�9y�)f@�dDŽ��y2hÑ(�� E�%K���,7�D2�&;;���!��oV^f��Ϧ/�"+sr�f
�D"�Sܾ����wf~v.�PaO���� p؁	K��4_V��-���~�nf��R���R6��hi����x�Bnv�N�-MHc��B��ä/Y�����+C9�����4�I�I�!�ψ8Yۺh�l5�c��Ρnb�K��wFA6�^��>�^M��a.�y�˓�w��D6O�eѓ/�Y���L�����`M��a��Jz����iɥ��:���N�Vp|�Q�v���gv:�+�+Q���h����{S�lprV~��1̖�)).�&��]��r.���%EB��	�
+��������M�����>�L,�O���G9�8�i�s9��힒�.�S��,����"����,.,�F�,#
+R��<�r��O�J�D���/v��(�@��+3sK��U�L,��y3J�Kr�s ��x�@��!
+���E��T$�������✬���"o�7�<6=�/x.\Ϋ���"�I��Y�"c�b��
+��rs�aC��{���!lI4,�d�p"��f,�֘��O��7�Tb��"1�S��b�
u�pz�K
+�Ҥ��8�n���L���/)*���A�Ԛ�
+J`���9E�V)�����)V�0Fh��S��T��1��:���y�X,#�����R�0����(**���̓��t*h.�%C��/))I6�B�ɖVR���,FC�?z��Dq��j�<>u��a���?�o�i�׌��{ω˓�������ȭ㌼����χ�/��(&��N
+�32ss�N.,(�ˁ�+���0��S��I�̜�<�6�N�A�L�9�P5/++� /���Xlꍿ�¢�L�L$��ڼ����<P
+����'S�.r3�B.������07;��N/(�W˨N�x��=��>~�/��q�f�r���e�B��T*����HT��l�i5�4:�$$)'	<:��-||�T���-f3T���"�:�ڌڈ���j�9�^��H�B�7�F����D��a���a�?���
&��f5�ȉ5
+��.9'+#r�O��pB�ӛM&�ZAݜ� ��F�ɠ�b�[�2�4MPG�RbС'v�P(`��c�����[+T�x��#)W� ��@�}�6�a����|tߩ5:��$�� H��`2��Jy�n����g��Xd'!'#^���d�)�J�6Z�R��ߡ��H�R�V��O���B6
+��8���Sk4�Zs�U�\�v�R�R)�B~���*����/�}�TI8���B��T��<.�͑�ŰZ
9)�h��Z5�C�/E��O�b.��O}�	�VWqA.@@a�cq���.��'�d_�FM��qb���K&��/z\;I�{*���tH�Bq�i�sP���G"<�p�D᳢N^a���T��\v�P4�����
+����͌��ޙR!�9ѐ�H̸
�6~�{W
+2�Ǔ��1є�S-��މ��j��i��+^$~��p|"'O��ɜ���S>�8~�v���Ĉ��&�iͧ����+<�<Q_?Z�P��"��r��}EE���ǡ*=Q9����Q�F��������D�B����V�Os�����J�)&�����+Ǐ�O���������V'�p�|X,�$۝�TWj�Y�D��4�h����a����("<k��y��o+>II��������pd��<] '�3"�r�[H���P(�.?��ô�c�鍉���ŏ�B��ه0�%@N��D����E��_2u�xVM������E�w=Pf	\��ϳFг�����Զ(>������z�����1c@NF ��r2�@���b怜�@ 3�d��9 '#��9�@ f��1s@NF ��r2�@���b��֜����Ι3g.�@ ����F�����o��������s27�V�;��@ �@ �@ �@ �@�&l�N�3Y,&�	3l6��۲���
�l��S��X{�رÇ�/+�	���g6`��t�IU`��kZA�O"༌��Xn�\�m�x���˷�GF��=���.�Y g�����ʺ��/Id��j(�љ�[+���kq�8%eV$�f0�1C�(�PT9�[u49��,�9�@PZd��#�
#��R���/��g�=��H���o����I�;�;���ٝ���j�#9g��1������8��`��3��=���?�[-N�I{�}��4�VuUu�ۿ.UWѳ�^��k*�)�P�QH�\^lBRBl�A�Y��e9�W*�,&]�	O��b3p��1e`hJjj\T(��#[�R)�|y�.%"HC�h�J�x"eb�.1!N&������}��PD�n>|9��.J&�I#4~�Ԇc{V%���=�o���/���1���Mg?�p�����J�F�~���ܠJ�S��[��,6��d�YǺ�9Le�?��������w����k�$2Y�:��c���v[[].���+����*���_}��o�۳���2�L��N�s��*;
+AP��(���
��A*��{/^��zZ#BC�[_�<(M��6��ϻj�r)�F�]��؜V������C��ł�J����6!1:�W^�8xX���k�h�ܮx��O�
��Ձj�oU����-�|4�|�0�1���_~	���rφ���x8&����{az�d){2D8YͿ^��؞�����x���ݐ�	�����֢���b�k�lSr5���ر��)
+*x6��1��Ci����<�@fuOml�wq��[5�G���73�� <�q2S�\@�@�@���X��yF@`�b�^����1Y���Oks�d�gs��0Z�\�%��y�~�mcZ+""j�&j�t�Ӝ��BV�ξ�%ϏvgNή�;��)�(���srmc���Ѻ���{q2Ÿ=���]B���ٷK�W��^>���_Y��`\�}�o I����	�1�@=�j2o�D*8$�D&�$�2:�g���ҍ���B��u��_XJ����>7�����Z�����z�d.�V��ő�VB���S4�m[z�D'O�6�(>N����
+��6�/�6B�{w�;����(y���<4nΗ�ݭn6�\����4�Lɮ�t��f��-�7�e1oLJXW=�n��.U��Kx�����y��ʕ��nY-;����y6��vY�#I$����ܳ�t���-�wf���Vœ���;w�'׍ƕQ��	{�A ���28�(J
�I�z6���������1D)�FP�fU�mw���㩙����qA
+�@@��������@�B���ZW.��ӊ��G]��3Sχ�o��R��TVay]y�u������N���������y��������@ ���dE0���?˞f��[5�έi���8CO�0�iDj8������5`T&��yC��GC�B��[F�{[2��+�\����W��-�����@>E.��	����q����JH�|���{��}x/����\�-?�?����]ʋ�l��r9�m��<��Ϡ�����������(�v��y(!�����dp	�?�]�-?ο���7_|��W_}��{���@���N���p[~�������_�
+hD����{�N�X^s�?~.�Y.�e-'c�������N�'��)���8��/�7�l�/��/������_��7�,��ȏ:�by����Au}��7W>Y��!�t���Vw�����:�q@'_,���>�rA �4�����ϵ\�/
t����s-�K�|��Pwy+�l��K[���ȏ:�b���z������y���/���*��s�*��!��GA��Gym:��-קrs�@>2���:�p/�C�a�^,K�R��?�����=� oV����[� }U`TqQ����ZƩl����$6T���4��r�����|��g7��ql"%f��R�@>&���t:0�G�5�y:-�/�8Q��K���䯾��/��R�
+
+�z�h4�V���
"�c4n`����������RF�y�� BNͩv�͑2��CRPQ�$"��~�Ry�LA>�\��G@���\�Ӛ��@Q�m7���(t�;�DcĦ޺��Ġ��5 �����J�Еnn-%+я�PQT;��Yy3�l��
+�~�H��U���N��賱��ʇ8�����%���j�\.f�.�<��������Wu�ct~Ċ޾4��(�������@+�b#F�G��ǽ��ؔX�'�nV��!"���88'�+N%����Գ\���ѐ1D�b��ʯ}��AA���k�mps�ps�8�� �����8��O.�5���N��Y�dln��C��Y�(��<�i����Q8,(��28<g�]�}�ҞHL�A��#$�YM��,N�k�3-0��<3�� yb�O"�ZpU����N��*Fgr�h-N9�M�Wp�;'��F�y�@�����Cqd|H�#6�i%M�=2�B��%�ڦ��
1��[�$z˻��O���_��5'{g�Qerr������J~~>����f��p2/|Eo�j*��ׯ���HdP)���M�������c�})��ѩ�G'�G�"���2p�ն��_�;<612��n]Dq�¼������qajp��Ց�΁���[[l�t2�����HX�(����gp9;I��eK�vWG]z:�9�32�+kJo��T����,��x���=N��[�kN��>�υ��\b.��c�ո���Z2��SZ~�8�vi���l{K�J��S�hnn�Qc���jU�$>x�1155�'#!��I�1�:�gf��k+��s2�	s�8��*Ƨfǟ��Ņ��N�N�s�[�t���>'�v������Dce����̏��ƥ��N�L��]�RaLAN����SSM��y\3����7�w�L����Uu�H�9:�Z���D���b6؃%	��o~�]�����+"6�������w��/P���������;;;���`�X,>ת�q�Ҏub�q\tLbRRx�!�=��;��<�ou�䰚M{��������S��}�q�vXM��{��G�����
+��e�a�{��8��mژRsiBm��ɩ_�jnjY�4����2>������齹(<�}�Nf0� g
˄�ű;g{mᩓi��t����kL��SE446f�&5?���W�I�Q�S'��$�<��Q[�
8�?�)
��B\2'kH$F����۰���lض�2���'���@�w��mnb���a~�hݜR	�li����fX}��0��������/��}��imkm�\q�V��B��t~oq2�xv��ãñ����f��tO3�J	��69����M
]=}y� �2zbn�����w�}��K�jc�V��6�����d�*Vo��Sr���Fz7=��Ntֳ�$^PҶ��5w�����ɋ	����/�f�/��8Y&����Y�V�ټ��"�������7�N�u�`0[m�Ojh�~�7���j2I����{�-%ى�$���swZ���n��?t��H���"2�N�@K)[�mu�t6�E���J��U�|�~�ѾA�]�rEw��t5���8����o�潹�����	(����mN����l�0�ͦ�c���#�Ӿ852:��v��"�8yc�G(�\�7���K��o��\B'��,��b�"C>�j�]�J�4q��k�a1A,6\�(��e�Ⱦ���Z_;��������0��[
+(�ܶuq�K-�^�7�������'S1�8da׾0����_�ܾ���Ț�i�?r즅*���=?��4:��bbE�۵v4\��S����(���y��-��!7/�9g�ZXHɫ�>v[��luܦ���������������~��G�P�����������k׸\.�4��z��by���i�T �+�b!�P��+�v}����f�v�
3b����>�t�g�Zҍ
+�c'T�E@TIWNoYg;k�Sɮ�e1���z]eD�y<eߞ�(B���?�=8�_��_�n.o�p��^'��.mM<N�Ee��#�
l�����p���'�Qh�}K�c�-��N������7�C ��K�����������[4�?*	��c�#����G�$29(:������ږ��4�h�U���� %A(LyĊ��ݜO��-��m�W&Gc��=N&~�S�n�\
yD�+�D&�9�
+"��6vg��L�z���Kk�����m�\O�s��MC�%��L�ur}NS	��z\s�H�B�I-r�EKY��m��M'{��Z{��[�H$�H$ ��_����_���Nq�|�͟���W]Nۓ{Z�HW�R<�t�I';��ra�	�q�Ӿ7+��(���y'���L���C�E�D����=л\.�ivEnjS?+J���gX�������<K��ۻ���.�;9���j+�i���r�͹_U�N��=p��x�~Z���K���/��t���C��0���O�(�����Z���ܶm}z L+�]�wh]S˹7*��]��@�ߕ�␔�p2U���?��,��D*sج���9�� �H
+E��XʘM�A_k1��O�I/;8>ȏ��X�nL(�8�7ؐDAn�t���9)�ݖ��ސ{��dӢR�A陓
+`����r��L"'dU�r�d�r�?��?�����������[�e�a��M�20��/ܹ~�8y��5",<:::6&F"�$ݸ�pΜ�0�r��0�q�}�~s�M�{����}x�f4��o��K��a./*6^)�fW��8>h�{+,*���,X�����/�����":��'�2����/9���9�Iu>��E=G	c��䒴 �$��q��ޅ����M�~5-B�d�'��q�ѱ��ɳC'N_�;s�a��A�0(fo����2�*�}l�ȱ��ݶ�X���/�Y�=>rw>(
+�0[��;9�q@baQ�a��t�gN�/��⊉���]����%]�J(��L���+!nv���u6�U�e�	�P����e\N�Ф��w�?(��(�MC�Ν��`�N6�7�Ǔ����m��|B�B���rꗂ�L�&aۼ�������������5'�����O��r�<�Ѳ�%�\]�/\�̚�n�=ح��Ԙ�R�e+J&�N�*m��LɄ���<�lN�xҍr�Ӷ���b����$z����'���v����ռW���	��S�.�Ͳ��b�XjK�?�/��A�ﵱЃW����A2����f�@{}���%Z"���,n�:�j��9پ��:��oe}�U��k��.F+�B7��89&��eLW'?Y��o�8Y1:�����B`��緬��d���o��r��{s�S�f��D��G�*����3w�;;��lO�r�u*V�=�^�wط���VK}~�Y�DEEd҆���W\V��~v�T�0��c5w
&�a�(;	C(4���kl���g���֪[�!�B�ղ��4���[J�B�QY[f��f~R�ϕE�魵�q :�D�έ뭦��=�E����PH|m�������Ͽ�{�+�Ej����)&�	B�?���w���@T	>�_�S:�Kq�R��8,6O.��t�=O(�It0 O �K�`�+���j�2�.-=!&�E?�1�P6W��KK��8,��1��D]jr|$��R�����q�'Ƀ"�����z�ۃ�x��N�F/����#���p/���ɵ�'����F��(EK&��Q�MV[��=��g~��cꯍIY߳m�kĬ�x�s���ep2���S(dl&\�B�T"C!�b�L$�y��\$��T���%�b��X,fPD\|t(��
+@�%��Qi�V�a��8
+B�#�`s����SÂ�\6���,�T&%.�B�e�����'%��$)e"��:	�)Ng�G�蒒Â5\6��*mDj�N.���
+]�N!�U�	ե�hUR`E�8���=N�%��D�
+�Л&�ɒ��o���������ʕo��������*�������,q�;��e�w��JX&	�sod�g%��U�j�
+�����>��q2����o�9���o��7��%����\�|_(���t�rdr98 M:�#��y��q_t�(�@$Q)�|��{OQ�p)�|��U�1����k�'6��@���P���������a�mgiD#�`T��8v"�7_����w��?�_X���'��o�GI�� �+����\�f�����7�y�)z�>:�?��f{o(ޛ���\Nϐ���g���;�`��t�$N�I��ſ�[�����Ǐj*J>�����]|Z|�;����|d>'� Z&{�P(�PX���d�&���?U>Ww}��@~i��/�������N�@>����m	��\*��/��%t2r��N�X.ܖ��ȥ:�b�p[B'C �
+��8
+�
+�
+X�?_��!�:�¡R��T_|�ů~���|�e%�~���� ��p�����
+(�7�/�t�������{�N�pp���r���o?��|�����5��y���@'_���POg�~����w �������M&�ϥ���]�~L|Gy���A<s���,_f_��y�SPF
+r6����sݏ��<��g���8]�Z�g����.��8�ɗPi��_&������?����H�|�3��&1��e���\�t�VAIj\JA��q�%�"b������O��o���{.S1jp��Ni����5
6d�~�C����gPD�'�DDFE��*�&��N(��J�(ʻ�����16,�0��Q�׊r3�t�L��7A�z�:��*
��r�<444�C�y��/����g�VӸA�&��6�����ֻZk�b�%�2��2[7V&,S�lv�4�	��?����eq@>�q>��~����re�S��[��[������(=�*���uZ��LW3��S��
+n4��=�8��o�T�NA}&d�a���t'�^����3��lZ�{"�c?��R�X�!�~N ����-Bi�ʎ�Nf������-����Q��\I"16�A�rB	�v�O ?%+��Op�'K$k}�x�j��ɘg\b���O+z���@^n~{���˗}ͥT2�4i�XǻX���IÈ���^b�O#�щ��q���i$!����O(�n|6X1�9��f��)�[���
+�q�lv��Q_p�?#��f�N>i��c����u�@'&G!r�P��̂Ņ�h1��L�'W�)�-��n�p�hq~2J��L>N�n��
Eϊ@�>�̓�<e���z��$/7����0���BbO����S��i���Y4��~CSF\ɏ�QP�0;̧S�őV54�džRQ��X�yvJ'�x�?�J��O�|�8亴���勉���Ȱ��؂Ҋ'��B�D��C��-H>b|���f�����p�ݖ>����t�zQ"�8���mnN���#������k�,�[�9���LjY*�)�
�Z)�3�qԉ�2�=����F�M�:���u�H$�UzP��y�ɧ�V|�5�	^18��£����)�����D� �7
+F&gf�F���ө����z���f{��9pE�,QAy�����PwB��P�[^[WR�_��159���(5FC\�(���Q����5�m=��]�5ѹy���s����6���d!�Ƒ׷<���!���myx+=!#���G]�ss�}OAdȒ�N��Ԕ��8
�E�y�����6���ʦ��ə�����l�*#�gV����Kn�1�HX��17??6ܗ��&f.��n�TW�ܫi������A�Q�"��د�M���_������q���*�?93;����l�n��8YPQW���cǗ6��#�yi6���NL!Q��j�/O�����O��z~N@U!1���禛k�ZZo��ӛȝP��m;\���1O3<F�P���A��;z�fgG�z3�	+289w�+n�W7�J�ko
+R�����GSS�#��ә8�prs�~s&��blzv�Yoz���">���ŇkH>N��&7��W
+I7Kv�.��FOW{R�F��P[���@~�"m탎���ާ�Z�����Yi��F'@�+n�
+��+���:���d2���|�B����w����WSW�:��A9�? 8��zp��xGw����޷�Ǟug�B�2K��������1��t+FI����9����k�։�L�Z�:������̛�Z�ʐLn�^�7�f�<|�cߟ�n`�r*���U��T"6�aX���i�4;gz������;9H�d�����ΆR4��-�7���"e��혷��k�۞<������g�K�N�h���\�|No=>:\_�n���&ޘ���[���ѡ#?5�%
�X�l�YQx�#Q�,��M�
��������(�x�|���{�+O5��T'l���Kх*e ��*k:<ru�����lN��F����m;]���x����
��2��q7'�/�v4_��6�����������g�`�/
�ra���j}]����w��?�5y8B���PB�����M��)�g��W?���mX�2�7'U*�)����ؽ�����os�Nv�qrpF���dCm��Ԓ�iL����!w�܇����Ύ-��iX�Rpx�H�����)~W�^'�1rDv��iN%d�l�Ɲ���B7��sJ��Bt����jj������(Y���88�i�oz�\]H�N~7�ɗ��y<p�ԃ�<`͛N^زl����Z�.��B���y�u��MG���;�cZ�	�Efl[�=
Eeܞ�=��"r�8C��m�k��E!��V:]ei�.[7n�<S�~�ҦA�u=D��&�9��tQi�.�aSi�X��lvY7|[���ɢ����"�������&�yS۶��gQZ!;*N	 ����?�~$&G9�cY�r���L&D�!���U%)W���ȫs:�	2�7��%��w�]woD_����*�6�c�����\\��DF΢{����l��`�جO�o2��M���6N�ꇔ6vm�ɼ�5���(��Ws*�8��B����[�u�׀����˯�\!�6�:-��\j���#�3'%�ʕ�|i����*��ɠ��u����w!�IB��ʸ�p�iތ���A��~~ P���Gʚ{�\��(9B�m#�Wwx輕~�*|��$Gh����*���n's!;ǽ�ɾNϺ�4�SB�~T^ϴ~e�!�@&�������@�2��u�n.ϗH$w����qJV�{GG�M��x@���:���b����\.p��m���7���eRg�����r!�n��+�v}���`�!Y�u�̻;;���6����%�*Z���N����R
���]��fW��[Lw��"T�Ԗ���	 ��M{��:��K�^�d߲�c�n�w��v��
{F��b������l��r!9��^\or���CM1��d�'�i��D���˓�y�ՠ*�2mݣ�������C���0��URVQ#pr����(iv:�J�Q��2�bZ`r8��WTʹ)b=N޳�?�(��R���er�������\!Q�H��'�9���v��X9���Ʌ���Y �5O��p>����aٌ����Y\=>NUy�����V2؝�	�c�181����k4[wW"ń���vg;*�(�RHQ7+7�By�]���[����ia��w[���PNJ���e�|Q�{�Lb��f�����$����������.�AO�2�ew-1H@��;�Ϻ��L��e9�'���ˏ��l6�W�6@�'����]��%��Q��-�
+�	';��r!�SC<�jڞ��J�b����q�aP�������A��h�&��8�{P������ f�N�n������8C�lA�9;>�e�E�Ss�ݮ{Y1<��E>����Al��*?��o����NFI��Y�
�{��:>�o(F��_#�lJQq((�ur[MJ��8��c������&ݶ9���IWN��<��O�Q�t�o�$ c���M�r���k���l:������ڂ�+W)$6O�j��\��Z�J*�~��V'[v�%L��ם����$
+����������Ncj���Uip�������c�,<Ӵ�0��K%��=�c"(�����{Υ�Z�����n܈ҼN���($�^+k���:�j�Y�E�#�+\���P���
�|*
+�%˲��rS�����^'�8�������GG���4_���P�ga9x�`ħ���<r�S"�
+��v��/?^'��S�_��S�|��N^5��Z�QO�Nv8
���!ZqC�ё�&��������r��Yו"^HZ��}�\~���{g�����p���')x8]2�m��8�HA��y�>>v�[��Hd�$0i�z�2���
+$���$�y�=���e��:yn��y�d�m���m��xwKdd����˗GOj
+�(3#�f�Z*�Fo;'۪P?������NZ���N^س�'��8�ۻ`0��D�
+j����"�����܇���𘯍ɲ=Z/�q�߱�7��T���kC-ou2���6UFFD�����FK*p3r�3���n��Z������{<N.��8tYs�C:p��Q�d�a��� ���I���K��w��v����|�Lt���ͽ3߽t�=�	V�EbyBjVC}M|T�����pW�
+�X=�n'k�d:�sb˸1��	*B�wL�cZ�lb˾9�4P��|<��h�NV\����w߹w';�/�v<w�u��8|��8u�ac���}�89�.��V���"�'���A|�$b��ܚ�V	�Ҥ�D	�.�F�������ʧ/�ד��l~�x�N���8��`��=�|�r�\�N���t�%�….�P�����IY�f�f�L��fb1x�֞1�ӱ��c�Y۪���u�ݨ��3[Vg�e|
+�(���7v��Ύ�l(ID�������o�T������>!��8��q�K��,V�������|�����.n�����lS6��Z]@�⟞[c2��9(�Y�dh�n��MN�L�*si8�S�Ѡ7����A2Y����t�G�����ͽ'���NBȴ�z��i��חg�V���QbQ`��l?�^C��w[��~w�f���k�L2��`py���-NV&����i�H��[��#Bnnm A�ɰ�����-a0x�e��.?����Xӛ�v+>���k����T��7�l���e�a-J�$���E���z�a��������M���
��W?�v�,f��`w8צ�����3�}��d��4�+��<���غ�d����=�eo379�D�������yy~jekϺ�-��uX�������YZ�o�(Y ��4��o$�_!�m��Z`��{�f2p2��]�bu��L۷��B��,�ͤ`!���d��lf�ή����be޳:�ęf��v7JX���Y�2�|�Na�o���y���������퉓t�X"�4�w�Yl�T*a��#��JcFĤ��"ByNgH�ظ���(���Y�a(���N��Q����t�X"��&�HE�vGtp�KU������D�{��&�@*{^�c�$ )��ÓJ���ͅɉ�OJ���XBb_�E�H��/�A�O���U �*� W)l	v@4�������M2
��J�a"�ڻ=�Y���@��"C8�S^:_(y���F�(T���r���a�&Q���kT.W"�x���|���cb�� ��N;Y
+��	$���5
,{j��YR$�����D�:]��
+�
��/N
+��y�V����� p��:&[��Ȥ1��c��I�]�uVj��SSu�OGD�`VhxlB|4�͔�C㣹�P���%
+mJZjx��h�n��D*�Y���B�X��ds�Y�b��
+���/�s,�TB��yz��ER�I�S�%��t&[�
JHH��a3���������!~U�@�7�Ƃ��o��.��;���*�[$�ލO�d@Ͻ��>򎞁��3~3q�#/�D;��K�����,)ߕ�{ļ+O6������v�z��}���IѨ���¼���O�~0�wd�a��1I�8M;����l���VX��Ʌ+��l�.�L<3�][�C�b&�ff<G
�pv�#Yy�$�w��oθ�[
"޳�~��n��G𓺥�T��K>oɰ7��+��}���G_}�ՙ��څ��|��0�S�O�<l09��E
Mͭ����
+U���:<�6+�fAvj$|A��:�4�(B!{�P(ԟ��
+RCP�S�'t2�\��!�����@ ��d�<@'C ��:�@.��ry�N�@ ��t2�\��!�����@ ����d�@ ���#8�O��o~�/ �^�*�0Q'{'��A �������;�:�@����@ �@ �@ �@ �g�S�:���3~A{�@ �C2���m
+u�D�#
+?[t�P$�Yof�R!|��(��5��J��d�E�e ���Gi��JK
+�$�rCP4��c��l�J�bԏ�+C��ȹu�ê�9�ae�%���v�
���+�J�(��'5�mP�T�L^T�'�s��!��Gh���������Κ���~�XԟDʮ�=vl�iEd
+��c8�a�'P�Q��<?����Y�����p�w�^�
+�F
+�c��V�l�:�(>�)�e���գ�HW{ǀ�q��>�&'2p�k�ﮩTz|ZfzB$�P(d$.��j�ǫ$�<�e�,���?Hֻ%F�x�&�7�"����upx���\ɧy���x"ezfVb\xnM��u="T�
��<�%�3ټ��p!������g]��
+e��8�'f�xQ����҈��#1�n�<0����k�Q!&
H�U`/�)�\���q*�3#c�����'���M�>N�Q�Q�6�ݑ���%#!�7���h�;�'���E�I���r��<i�̶y{z(64H�e�Ų��>��u�Lz�zVF�|����8O 
+b���	���.d��Q�BiJ�5��P����@~@2���~
+��ҖA�~�a����,N���0C%���u��f6{�ð�0�f~RIC( ����8l��Us���l2왜NksY��t�`��6���.��D�����no�Y�6˞ɼ53 砒���u��h���]M<�s�ZzNǞAo0����^9��2e+{�+#m��{�d
+V�`��М�G�r�V����js�6��Y�U�.��n����%��<�e;V-!QЌ�r��f�3�������)���h5���X��,=�3@p2��	Jj�X�;9T2��J�@ �"�t�:���?�����`t`�L&{���S4�myR.QE���ӽ����ܶ�%�~Y,�(���W,��Jѽ'c�{KAR���l�M�si��k׃B:W9��ߜ��Q��s�G/��fS�Cs��3�lE���eZ�IU����@
�-���YQyɹ����q��I������|6�zq��u��񕓩("�L�s�����J���n6�r"e�|����`���Z�ы��<]2��_�Ԉ�t��Q�p�b^`ܶ�=7�&�"�6ͮ���L
+)�Z�����K���%5]G��x� .����2;���*�r����_�V2�W1�/:�@ ��@Q�w�N��P��T������ɍ�F��K�������Q�$ �̊.�m#X����r�ݕ7����f��:;�D"39�k�y���wͫc]<89��v��^�����8:,�S�&��{P��BŁ\)lU���������3����eSQ��#�f��v͔Gn����]`(��N1�u�R|���
���qr����(!�0�jjò8�����v�q��2N��#������AQ��D���MdFlz����&���ŭp�4\�kw��Wj�����ך��\��.�@~:@�@�@���X��yFH$��<���C�q۞/��z�~www�lq�[������a1�tH�^I89L#@��e�ܳ�����y�����o�v�=x��c<ur�����$�"�r���N>>��N�x�?�GM8y}a���������!1B}�v�����sQ��RD��d�r�"z��Zx���x�.h ����nkZ�8��ڋUKP�hґe�ⳇl�1��<��G%��N�,#���&L���Q���˴(2c�
QJ�}$d�N�� !�����Ʌ����V����D�@>u�$�*/p>>s��������������ԹM��l�\<��Xm��QW��?wh]ӊ(��:\����k)%���g��ʋ�z��7��1��
+�6,	8ْ�:sra�Z�j>x1���a`(Fe2it�vzӺ>�ť���r�D�/z���ۚ���Ylq>m<�Fe5���Lٺp2�A2Y�NZ��ߝƧ!Q�Ŏ��(e���0$i�~����}hiwy�	�r�?��ur���p�yt��,���2�=ӛ��q�͸c�ߋQ�_99J����@�`���8ȋR �g ����9R�Z�h�s;J�#S�H$J~S���?���%�}/��fǟ�,m�_�7�E ��d���w���%P�ߣ��#Ó6�k߲������Ε�N���_�]�
+�0*�<?~q<7��q{��H�����G����U��c��Y�ݎ�Ъ_3Y�����ΖB߾p�ʴѳ����Qcu���M��a��N
+!�Ħ��G�핦�ډ�-�iS*&#����#����.R-��(s��'h�M�dx��i~�X�58s�v��������_���P�����}|3L�V����PS=:��4�Ǫ(�z�|F\��q*��SRY��E=�WL�0�:���AVR(�-*�nik��q�����L���*��-�_]��gQ=�=�oU�<ok�IM��50TU�-W��5�I�(�*4Q�͍11��T�(�n����@_MYH����[�}���#m���
+2�E�{�����޾w�6+5
+;�>HJ��ii���t�5��E)Hlz��ijjhz6<�#-6�0*�j#[�v?>���kc���B�;S�(�n���Jf]�1MHB}}�J��C���C$�6���ӡ�ᾮ���P�E�̸h' ��ط��1�D�LA�v��/a�{ @��v�=�}���i	V���	��d��� �ӷ�q*�/D������h��K )Oh�g�d}�zċ(��@��|��;��h�<��N�LjO�p�일����]8ɳo�=�`��3�y��Y�@ �4�����v��}^��Qi�1�Ї
=���h:"����|�J������|��N���
!�'�'��O���r�F
+�@~F����������@ ��d�<@'C ��:�@.��ry�N�@ ��t2�\��!�����@ ���O8��������@'������/~�|ʀs��}1]v��?	�ɬT*���B!�K@HH��
+8{�9�䋾�.;�ɟ ��j���>�4�!��$��O�AAA?��5�a���:���8Y�V�;�<�ڋF��H����![�8^K�P�s�NKU���!���rä
+�{j�#�ϧ�>Pqll,��JLL��/�o���P��2;�q%����O�+1��|����f�7@�����Y�z�d�/!���z
 ��(�K���W������E�涧K`������WyzWj�4���I���W���;r��‘�����f��^Os�Z�@�&
���rhdBnn^BL(�����YI^�����[SxO������qqq�ZNJJ
+|�]�t���N�.�����X<ADtL\\Lh�V��1�t g������� 5b$*M�
'I�V�e1_ ���y�r��t��%�h����e���@1���R�@$�=�=^TkC����7���z�����{�
+�J�}�@O��ќz���3���F��'Z;�����=��%�P��֞\ign<S�B*@)�\����Z��n�T�_���b��%�,?�����፥��� %Ф�S>�	L��|E���"�(�^��-�B��?�2����e��l��\�B�zU!Z�kw�J�R�"�X�<�ַҼ�x3�o�y�S�mޟ�%L�5&&�� N�����7��~���O����R:xO�*��ر�,{{{f��j��D�D�ĉ�M��j4Yl�ͤ`cն�lv���p8�jh>S��=�1�����ƽ���̤ߩN}b�w��o���z�d0Y6��C8�ؕs��X
+��?����^'�����VjBS�6��'���w<���8Nc0�d�l�@��<>��L�'�"T:��������*�
+�Ď�*6g���F��Ф
+�H$̮x<���ä�xb�JNE� T�.?�X�z{vn2V���L�6�����T�JR�0����*�ʉ�X!wU.ȳg� �*��5TJyp�-��}�l�-�J� ���ʭ�x�ʤ�,G�4>;��@�A
+@�4:�n�.Si3sJJ�4Jilf�ޞ�8U�+��ݩA0�f���r@�T���K�Ss���A$��R��J�E=>
+Ġb�j��N�zWq�"�F�z���Y[�{�
+!}`W�dpf&$$�~$��\��$	���O���B���\B'�s<�z���bsa4#1Z�Ҧf�ll~��m}6�Яd%D�F'ܻ/P�
��a?:�k��xVnQ��t��x�ɵ}�N�jI~�����V�ym\)��HS��&�	2�a(���l��k��5%�Pp,��*�ƈ
�l6��Щg�z�re0A���>^�R���Re�T���t�J�d�W��:����Y,�Y��ih����Lx��B����^+�����5�����d]m]�.3gx|�����G�O��N�܊
+�
+�,0"��daa���14HO�d�
+�f�F��*�05������k�����Z��*E�����i���XN�
+(�������W�%��u}�sv�ut����8$0����֍t?	�̐����㋋s��d<�X*�I���M���o����M�����	Vuج�m�eka0D)��)�s�7�V�VOg{qޭ��6�}~z���.,(�F���w�&'F3�B3r��P+$1׊www��3v?��+����Tڠ��u�Y�B�	,���,�
+�?���m����j´*:KTX�<��<�٢�I�
+�T(�ʿ313?;=Q�{]�x=�?*�D�?:}����hpf��ǟ����n����\[[[����>??`����D�`�����9��)��vW�U���YM�EC���Q%��@&�]�e��_��ԑ��H`k�M�pr�um\�A��J��t�ւU₊���w�Z���)$I`������сl]4����o�yT_U|�bfaif|�zr$�uZ��_]]io��X@��������»�S��]���C�e|d�n^���ilM�Q������ى�k	� 5 ���쁑�����b>�r+�汨�T����|����\�[�4v5�����¨{��ᶚ�
+��{�a�|�W���Yh�Y�ۚw��-�]�:"ee�4=�[Y������H$ō��I���v8wu":P�T�O����۫����.gkUA�.{vMo6l
�w���K�YXZ|���10�tګ�S��I�cs�ybh���$8(bn����F,�n��\s�ϚZ��-���� �(2��`v��Ε����%��X�!�+|��������&{ܫo?pZJ�b�"I
+��g2l��v�ɻ��t�b��ό=n�
n�[p��[�O�G�>\ݞ��*DQ�E;{V��>3:4:�rt`�-�.SjG֌���d����u�����@��	P��ɑ�-5A*emׄI�^WSj`m�W+�ܾ�d�[ۛ�?x�Y[����T��'**
+������{;::����f�hkϭeee2�I���,C'/���8����+{���&:��/�v���˗���t�>D��ݲ�]ֶ�2���.'+�8_2�f�n�����ɵ�/_l-϶��	���۶�6g����.�]���%�q�/��ͶG���-.�F���SF-�m�c}��M&�������(v���e�<�z\y�xhns�f�|�(7#��������~$����i۫���W#e\�8tYo_�,�[���F&d#^�92���C����El�j�SȔA����ũށ�V�˴��t-���ik��#	%2m����\��#R�-�Wj�3���ut�r���d�b�mm���F����Q��$Q��,oo/M�´RE�̆a��E&�o�4m���b�L.�`(��_�K��7�����E5f��f��/���S�ݭ�2�������P�F��	��jl{M�.8)g�d�{��	��
+�,��{��쬔R�8�FH�F���_5��;db�X���3����H���3���2�<�D�m꙳�,d%��Db�B�ҿ�:�T+'�l0[����BUP��ye�i`�vpqg�Y�V)Uh���v�e���;&��n~
+��
O)0��-��l#���f5�&��?=ط�f�\��J�(�֚�Y"���H�4��89$$dqq�j7>GOO$�>U{y����W/���� &����G}�E9�!��xE��F����h�r�)C�GfW�_~g�Z����+X��۷�=~�c�����
+��=���:$�\��v���������qdi��'�J�+��*!)B/fzzv5��={�I�ɬ����{��U�	z���=	z:��Ix�-M�|=�	ai�g����7�u�����'O���yt~�3Oni�xq�4�rSM����ΘM��
�X���������s�ߎצ�:��£��W�1��:��M����bæ���۳#m8
+
�Qf�O�����駷σ����표������ݻh�`��ɕ�H,�W�b2x��+2/�Jc
+?o�no��t���!�ӌ�����ã=U�
+Wit�{m]���CC��orj���#J���܍�7�f&���ی�e��RW?Ă8D���#�#ny��{��E5�v�?�zJ�T��d��Ӧ�q�B��u�\O__O_?`��PI&C�;�GLJk�v8H'0�ʩ}j���{��zd��,U���c'����R����B�AQGt�����ES�k�P��_{635|�d�Ẇ������UV
��7��[�:�6���#c���1L��N�h{}�^�T�d���<8�7�	E��7�~9���j�Uf��p���`�
+�f���oK����#�hxdbd�6�4xb�/{޿������6K�����eǟ��I����!��(&�|�e�`���i`rGG����Ǹ�F/|K3��ZoL�W�w��>i:��O&�%�d�V������ź-l�2��!�]G&f'Zm9�xK
+�|��yfl��ų'���f"=[z�Y��+�8{��oF_�T�x���vu<�,am�9vg��.#VN��wl�\���ᦷs�}�}���ю��1��693��aL6�՞�;;�Ҡ����������98=>:�Gjld�@�[��n?tf|znnf�j�aL*\u��d�`l�I�ب�����g#R)�P��
+,S{xx�'�u�Z��Ww�k��`�+0�
+C*l�/z�������	�/74>}�H�T��%F����)QT�;���6�L긯�*�
+��SC]�	�֛�=�?'��	&�
f9s�d�<�}t�D��IDOrh|�ԁ�)P&,Y`r^ &k�+1�+�58����[w�޹u���驉�{�R��xӋ���p\~2��у�cb�S�O^o��k���c���z��d�@1�Jdz�iO��&��p�e��zD�es�;mm7�J�'�gdtd{)$K<�}SS�6'dr�h��5��@w���lͮ�׽�}ma�.>"
+\��V̏�f<^����p�^o��h�޺����j����腮���I�;&s�\��n����k���d��,&�͡n�*7qd��=�\��**�-6nJ�8��O3�~3Ħ�-�]<TK�ĭv…�RLnn:�ߔŮ9z��T�K'�OL.z�m���%���bVEE���{|G4w��3�1�Q���D"��>9;4�2��۴J1�QYf2���ݿpX"��r�D"�6W�='/�y��݉]	QFy�%�P#�6^�
+�
��=#7/�)�
+S�
+`��Do�e�غ��ͷo&�炌M���v:�&{�*$fW�������G7�1�
h;�A�����hu�mz��������Ø�������M���G�<�l5��1z�Y���{�<��nfn����#(�>13;�ŧeq8j��i������2����s}1�vSp���7���������`)mb�l�8y���
+�:(���4=ޛt �j��i�hO�uh�7�����11O rƷNL�4��t��t'o��N?.�8���E�R���M^j�+`U��c�sM'v*q��W�ݏ/������f޼}L�d���ə����L���y�=:��]�V2�6��j�zBa�Ӵ���6\��L9��R���M
+/��pbz<��‖��1#���4�
+�7&������s?���ٽd��)՞@���l��ټmw.V*P_j����ۍ�M���=�f�Bm8}����ߤb-��?��z�G��=���-]���&�X,{���w?�>�O�Pd��y��¡�M�5�7�L
��MC�^l~7;TeF��,���F�יl�XH�az�ۧ�FCL�r�����l�	~����9�9��):s���xm&���H�iT-��������&3�*�R!!��
+�d�$ˣ��R��m=C7�V�*�#�͇FF�#3 .�U:����S�Ӄ�WO�ֹ]Ó�C�#����lz�l�G�[�g�&&Ɔ��f|��w��L&W�-�_9��I��]���ӓ���V��#p81�����U���Ю�C�j����zv�Ig~����^T"��7��ȃC#���v�1��VU=08�?��d�p5����derTISk���?�֠V ��,G���Mӓ#[��Pn���7ܢ�LW�_�LOw�j�Ǯ�h�A�vP�������k{lK��Xow�����/�_u�q9�m>�H����z��U�`˵��9o>m��ζ{
��_tLM�N�����g!��������S��*�(#�������ג�^��J�۽j�U-�腑F3��Z�L&�)*�8�;4���Cc�p����ך��$΂ɉW�n�2Or������� ft�~kN�t/����_��"��L����|�9�����Ƈ����]>��E���ߘ����>�#Kl��p2�����P�xtE!`��6����\�f���t�����؅����e����OLo���F���c�C{�6����KX�����n9�r��p����RNey�b2P6F�$A�����j�C�0���F�T �
+��J�~�S����3Z���h�*��(Q��)PT�ֆ"�D"�YpH�T�?W��bc��V�'��̄�jw�㱈^�kM�X,bԂs��L�H<�u��J�Si��H"sZ
(�@ \��F
N�KI�X&J� �7��Z�z��D 8\F�I��!w���G-0#+*�>� �V�7�J%��Gb6�V���t�t�P4�5*�:<�p2�kTH�Ӓy)�ZcU4�=PQk�U�x<�[M�|�k.O4�����˽P�V����f<^���������0za�L���%��%�qT��%R�T2�#R0J*W���d2�%��DZ�N�T2n�`{��X*C�e�Jer�TR���:c �Y�|�A�\&��������F�Z�j�<��!�����+"#\�P�P0����p���Ө<�@� ���*��pCF:�
+�sy|�Biw�=.�L�<��Kd2y�l�(&K$؊���%�G��?�!pq���P]H%'E%.GF棡T�b�(��<��Q_����M2��1e�\�$��.//��
+.\��;J�ʂ�Sn�f*2_}d�vT��+�.-as�A�,�Kˏ"T��aK��������>
a��dZ�cF�h�-lZ˴N�L��������|�0�5��pV1�ڏ�V����a�#0����t�c��S�`��Z&#/~
+�*��O�X�Y~6����M������a�b��:>Sԉ������O�_�E��`�����I�g&��d�|�ͅ��.�dh:�j�.�焬��8�}����>S�H���q�L^K�}3��_�DŽ����������Z��f���,&�Ck-�L^�?"	i���#�f��E3����_�~�i��O3�-Z�֍h&ӢE����dZ�h�Z?��L�-Z�G4�iѢEk��f2-Z�h��L�E���#�ɴhѢ�~D3�-Z�֏h&�&��r�趥E�W ���_�h�}���������.>��A@�ټ�?+��D�s��{�Cqկ��l���u�<;��T��֯h&�A�������
6����V0�/
+��e��٪�1ާOv�@,���B�d�J�ߗ}�;���,v�F	�]�
�>�X�T�(B�2(���H �Xm+��/?�05�"�(�D,��v�$�M��h,�*E3y��
+Lf������~��h���"�D��0sW{��j����X&r۸�O$��Qm�X��j��E+�Ɍ�f$K��T�S���׉�J��R�k�/z�!YM����d��l.���r�l*�I���o\�@$O�.�n�+��5ڼ�TLJ�M�#���RKd�\6�/d��<`����h�Pr5��ā��.���_�n��������<�7�O@$4�����$�
�_�B�+ȧ�Ie.�G�L��|���s��Ӣ���!��!�2�^�X:[�9ͤY��@~b�XT0�҂�*�d��T��$X^).��Ɍ
+U�b&C�L_uuu��F�2�L���m6�L,���S��@uI��%>��$���<�|��*�C1�٨�JJU�d�xB�B&�R r3M�D��	�h,�⯸bᒖ���\�nP�L�o�ōO�,�V���5�f���H$�&/z"��D�`2��Q�^��d���xUX�DȵT�\�	����x�b���N1��b+5�`�#	��J�9��\.��#�x2���|���d���vl
�Z���2&�s>����j-.��j�9�T�*�c2�-S��@@�J�q�c(-��D��G2�s
+I��E2�۟$҆�B]A�P,��ɠ?���nk���4�
+SJG"��j2�|%��>��j�����K"S���x<�r�̀V���>��bsBe�ѨY�BL��<��L%��S"$^��k
^�C��rd���'�d"����|��`,�OV��|��c�[5K6W,d3U᠝x{c���K@ox]�MQL&��(�:܉D*�55#`8�Xh�H�/����K4�׿���}��Ǚ�^��p�[=����|&�v:��*��ǖ*4�\1�IZ-f��aԩy\�<��l�%P]̢ �`%��@��3�R�*`2�#�Tu�Lf����b!�Y�p`T!����6��������I�ÕΕ!7��´�R�ڢE�2�#��j�@���U��h�!�\���l4#�\**Z$�&s�T�l2�C�R�z	�9�J_(V��z΢k�
�
+��d�PS*EC�A#�
�P�����bA�#L&�d�VW��2)��KdJ��F!�dqh�B1^,W�JV�b��!���yO狹��j�X6�i�Io�T��Ӊ�A�"���*T�x*�K��6�Fk����l<�_��!�D,��d�cv��f�7)��*��/��3�d��h0�m6)��M4�׿�b�'�~��*o�-�H)��(�,�7ZHGDB���)�*t����k�d��_̧)&�-p����FG��OcR�ɔ(��k\a8����8��{���N�Տ�2���I\!e��|2,�sc�P4kH&k�c. x�P�<2��M��#B5�Q.7X��B���*u�R�H�d��BYb�����|�h3�ʳ_(�H����|����s�Ro#ʠS��6o!�Q�26�)S��j8�	$�=b>4;��v#��2�}�L\���n��M�S/�]���-Np�kJŐ�I�������阏V8<�/Z̥P1_�2%�(�B��6�H�b"�Q�r\g)@��D`2[LE"���W'���_�����b�����;6�>s!���q�HP~��ZL֙}��"�y>��1 �d2�k�/s�t*
�r�,q;�3�쏧#>�Tl��s��eLVh
ıZ���-o�P?��	y)����L��7�N�0��h/泸�Xf!���L����l��d`��d�W	(Ȉea��C�o�+E��`4�N'��R!_fr.���(�7h7H�$֓����&�x<�����k�F$|c�\�F�k�}6���
+��&7��{k��H.��B1Y ��`�Ȕߢáa�f'�N�P�\�rZ_�h&��������L����B��L©���fW���� �N�Q�,a2���"x�W�i��8J"^�I&���D������"�\wY�2“���6=k��~!�����&���`��v��U#lRRsy���(�B�h��>��Gm���:���C��s�O�.���I1�i:���`�WJ��4�&��p���+���NF-���8P��f�jp��f�/%0_�����X4�p�¦�u/�>jI
+�U!����>��]L	q%�Lds/�&��~20�Xٰ��C�2K�6��T]�1k��[\h��E3y�K*�����/��"@�����.V2�$�P�X(�$��*�kt��D�t�ɀ��E�3�=��B6)	5fWu���B�p4Y]"ד����n�Q*�(q
�T,�/ ”ri�V)���oF��ʗ39M0QC�����`Ig
+Յ��	b1��De��J%�Q����t1�2hT�T��!�np4��q�7PU*-YO&[�gv��k�A��Cy�.i�ya(��%�*L�Y�T"��&{�łj*�:}�R>G�'�SK�\���l\��IPM&_Jǫ�J��A�ZXO�����2��R�X�3��a�	�X�U�|:�De0�����R
�\,�����z2�M�l�
+9�A#�H�Z��B��bQ�e�/��}��K4�׿(&oܸ�r�*������4���dp��U>�d�3���%">qw���f�ľ�\�c3��p,峛�,�D�E�B��I&���L*��<����Ә��U�t:c3�`�;���ib��{��cr��������9�|bG��$B��O$B!yB�/��s�t(L���T��S���es��G*$H%�+B�>���2)�RJ�q���"&��D*�Gz��d��lw��Yȑ����t<���,�ƒi�QKy�j��@ubU�H,�Ϥp�Ho���d2MT$�uXtľ��HhАL�ESY�UL6X=�DD
+P�rUz�_r�l.��Wy,�}|�(]h�\>�#��Y3Y�=k��6KL��ձ����B1�H�m�Wl�X�
D�F��5*�<�X�lf�H��蟖|]����%����?����?.���X�h��_�	��͇��p��%2��TB�8~�G��"	�)�e�O�O�T��3��S+�`�!�BQ6�XĒ�@�Q������,�ʂ�B�\*���=�X� (���v���@yP���E�e��"�u��KF�BC,��/��*0Xn�5"=j�T�AvB����@r��\"�,����cQS,j�ſ���$Rhj�L�lװ@ ��T8�@��Ꮔ�c�hTc.f
��#�9R�e4>*%~�'+""�
+E��7W��
+D3y�KFJ�)���/mޏ=fa�o֊��'6̯�~"V3�����~΃#>�L^;�;�Nf6�d��I�K��,>Y��߬,�BdbA�N�SQ�p�_��0�񾠵�E3y������K�k.�Z������\�S+�����dZ�>S�C����#�����dZ�h�Z?��L�-Z�G4�iѢEk��f2-Z�h��L�E���#�ɴhѢ�~D3�-Z�֏h&ӢE����dZ�h�Z?���U���h�-��~�3� fZ�^�4��
+}�����/�����y���������V,����[Z�[�|�
��!!��B����o�~�ĉc��Z?~����p:���K���E�d8�m6�c5������:�.�K�T��L3�kt�}�Ν;�H��ٳg���*�������N��jYCfR+��
+�R�ɭ6������E�k��j]��u�L��}L&�����j5��_�����T9C�`������\��3�b2���e2u:��h,h���<ڇ��V��5�%�ŌJL&W����y��lB�R��<uz}�[�^O|$K�[!��`����Ү��q����V�#�)U���	���/��b��+�����'����t^�m�r]1��\_���|�7��b2Y�-�V&"�G�%�7ԪL�|�_
+q_����? ~T�(c��9�|�e&�Y_&%�V�bTȕZ`@
+>s8�RCE3-�׸@1-�UV24:�R3��{���:c2_��N��h0|����Lj��#U>	���Kdq��
+��%��48�����`P�:c�����"�WTT0�C��B�j.&r���vk��̓z�9�	G0�ɸF
?%���Lv��B���j�,��߂S��1�/������e|�����/�#�D,����fs����w�b��'�
+��r�dR	���pE[��^�qY���m�і1`|��������h8�ˢ��1Y �� ���H\.�/�o?xtwI���b�%M?�*6�
L�kd
+��z�;��������V���ቶvtܖ�h�[�w���z���i��m��G�kb.�NO���0o�b��"h�b"ո�����PW�aВ&Mdz���@j��L
�Rѓ�xt�n <`��p�����Wb�}ã�CCC��=�]}p866v�āS���A��cg�V봚���#��$��F ������suF�*���H�K?�%T�Cy�[Y+é�0���L�B�@�V�U/�F�)G��Q*��~����d.�%P_}�j�섑��ᡁ7/��E�{+i\��'O�PNw����+C�,�ֆ�}��(����w&���^��i�ۙ��w_>n:ɭdpby�>��D��Ė1���c��7}��������~��ٳ���4�}>��L���k`��q���ث�RheG�2"8�@v���h�
!�a�lNyp&�S~��GF���;-$���\d=���621^���o�{t�~O5�C$�IA��L&�S(���R1ﶛ��
+��QQ	���
+�r��F�`1��36W@�W�Ր��
?T�8~e��UĮ��%�bTBd0�(q�Heөt��/��?�R�.�j�~}�N�`��O^�������R�e��=�''�?]SS�ukm8Pu�Vk_w���-���۶m���䚆~�}=T�拼�h��o�Zjw����Q�R����j�{N�c���/�G��/x�N�������
���K���a_��,��A�`���Ѫp2������۱�g.�����J�B>�Ś�4ᲂw-���b� ��j��:����l�D"Wv�^"��0z�o� ����F�q`��c��;�u�&G�޾߳��̖���3����v޿\Lf���k�nĎb�X"�H�WU�/��xP��HX.?��ER��#��J&���W��~����;D3����L��k��N�S����d��$��Jv+�ÑH�B�EЯ0B���d'�����n�B�k�� �	�G 9{�������Ft��;�TR�B.i�}�R̋�&9lV���L��޲��+�ux|�������9��h�Swf����
�;:n^:i����sG��O��X0D��
o��/۞��[��"�z���:�^�x������L&�|�ī�·wnܼ�l��
����b�x�������Mg��J�֒�Ą4�*����pO6`AU��7_t��k�kuz���r���}�NW�*���M�O��U�((T�˷�^���D"�X,��5Z�2��u�8���ɹ{J��wsp���HM��fw�NoM���R��j�A���/x���ʑ��`�����&�������	�3Dh+����m�On4�7n��[����/W�meVT�Ù�w�{{Z�oE6����˷�wuuuv���_-�����R�V2����w8򪳧�ɽtеm���޾�ͷ"N5Lܸ�q���W��/�o����\�ɑR��7C>��O��U��?�8[p�L�coڤ6�.ܸv:��N쭑
+�W^��m���j��={tì��D���/vv��n}R��{ǹ����gm�wO�\P�"&����l��b�|�A�-_Onl�z�)kF����ۃ4�?O_��-�gf&R�O�����hd�y�mGΝ9�s����ݽ�\�ڴ�*��]���������N��nb����֞������[��������-�=ϯ��L�=v��y�AV��;���'�Ğ�kr[�`_(A�;����������k��RO,?y���|�Ť�gdL&�I�Ɲ��U����i��w����n;������S{��z|rt�:b�8­=#�#���;��Z݅�g���8u����̙=%9��:vynv����'�5�LL�������x�QGOۣ��v�t�ݿhR���i�JCcӓ����k|����:�J�!��v�T�B�ծ@�|vo�W��T[/�n�zqǮ�K�zp�u�RA�W�}���\��jt���MM�ݾr������v�&�4:O�Fo�ܩ��4^)-���L���˾jjj�����jB�B_�z`��1���č[2@����~q���'���z����R���C/�%D�}90#�����^��������v'6n�����~訯;�z`lvv�����c
C�o���������M�5է�<|�n2��m�d����	���3w�����k�&37l�D�wo]�R]}�����������{���?���tn��'k��ӷ���wm�|��ә�n�F�W9ڇ��?�R(m>t`�19���n�8uP�a���U�|�̅Kz	���W����~���䩙�ƣ;��75E�f�����
v>��;14����l���ҏ?�����-[j�����=�m������k��k������bs��X���[N��>9����e!�Ҝ�=73��7q$�����]�������������]
�߿�;w���=u�33����#A.>h9�%�e1�2SL���Z�,K�V9[��GvUJ �����l�+pSSs�`��njh�7Z�^7�ר��u#=Y�e��˳3��$QQ‚���S'wP�U/�m��_���ɕz\��ձKw�ۂF��pp�o+(Ptk����|ЪPj	��FǍg=m��j5*7_ �LBX����/�-3Y
ӊ?E0yL+JH��-n�LN�����w�6�M��bw{=^����q{\.�Q.tf�����w��7'%b)���s�E_��0��ri4jc4;��E
�V�������O�<�R���B� �$�y�k=3�����ˡWw��<�ѹo��m�ٷ����x�Y�y������7n"�j�!ָ�����KG�ύ��}�6n:~����ˠY�a���YwW��W	�|�@$��J�g��m�6V0Vgr���ۙϞt����:����|�C�]p��v5�f����4\��}x���*�cm��d2*�w��̳;�6[f���ٷG.���5:���u�Y�d2ؤ�&�K�P��}!��Mξ��vh��wld	�O�=w�����/��
+mK����;���uL&��#j��r����oظAiI�ξ=�;��ӓoޞܑ���ϕ<�G���W�ɦ����ь&_x�5��ԦC6�E����<��`���׏��D�]Ǜ�F{�*!��%�ɢZ��L,,�+�Gn+(	&���P��H����=�yr�0�)Tz[�������U$�3~�������JM�x�R?96P�`*pKU�\�n�F�gwW�U�m������`���C�#����U������y���Ž3j5X"���zۤ����_����YC�!�q��F`�R	�!>���v?�r�=^�æRb[�΍��Y

�v=��u�����c��p�~KǛ�}��J�M��{��=Ʃ�*��#*��R۠�}>߲h0{��y��'O�[��m>*!�\.�z��a3�����+�NOft��PoO/���v����~��eP���M��L���9�٬�s*��7�t5_�s62�Ҧ�]��W��MZs�֣�}}���=���[Ck3�t�͛���N�߿7�w�,[v��d��M[���}}=]ݽ�W�x�"��ol����
+Y3������!�04ؿ7難�v�
O̼���{�A����+n�L���K���ɚ*_(����������f=O�x�s��*�4��yxf'�]I-������_\KXl���zt��`��<33�9��d0��~�J&_l�mm:�cU��zzZ.b*k�����y�������2��+��QL^v�_����ѩ��[��<*� �������)��`���G�J���0���U5G��i�yߙ���U����|.��r|vz���bG����Ѿ��H�kb�ž4����\��X�Po�_�o>6;;�-�I5��J$�I$���*
�|tQ�)P��ҝ��mwTb�E9\�ы�:_�ЫUd�דw��BM�5]�����\���Xћ�nDSb��V�Zl�@$��M��#3��(nv<x=���A���E�t8��-��z����2��9��1l�}�N'�ɾ:&ϯ'3��w�v�|����-!�;3���3��0��b�@�g�X���z?]2�/J��X�䉮�z�L�&?���*(&w4_�q�Ww
w<vhPWU��۹Z�am&7�}3��)6n�`���t��|�])���;��
G<��3og�]*>���k�� `l"�Yo�(��{��\<"$�Oz�|.�
m�j,O\y��]Þ4Ԛ�sɶg`2t�R&7^�z9e�����#�.�?G�R���L���G���z�dփ����KlJ ����	�q�����m�ӝ���<b�:����+9w�s��*d3�R��o�͕#0��ܞb`Æ
�|��'�����kuB�|�!�dp;��]>�el��O4=��"��a2*��?H��a����/����Y��P�#�N�Cgo�7�C��E���?�k�R�c(��^����J!�ԍ
��FWl��ܻևW�:������fGU����01���}q��`{�9:��,�ue���|0��`��d_�=����X�i��3.����Gz[]j�Ql?v��ۙ�]ي
�y���s����BTpk��}�3g��{|F0���N���F�J�"��^x�fzu�������|��ҡͨ\j�D&�VG��r�q��`�Z��=�Zq�a^І)�I$�5���[�?���d*S�������*	�'��k�|U�i��Bu�N!U�cSo�_>J��x��
+KpG��l�80����T����7�v?n��|�X��$*�Èx�xO_n~�ӛ��1�a6�3��hž�S�ߍ�L����o��>�|��Q=��~~7��5^}��sGJa&[t����N5��jwx�lߪU��]�vjxߖ\ǤrŀU%Tv�����靓o�7(l�d&7��U�q?�n��%Lnl<u�~���q�?���O�f۾��Ю��eL&�]�4؜H�3�l:�Idgt��>I1�����W�an=x�t���]�k��mf\�������3����+޿�,��b�&�����XݹSo�w�\!��kzr<K2�ң����)&_jh_/�Dӳ�瑩�;u����ٹ��v�J�J��;\�rr6u���M�"���������FF�&FNڦT ��x�����A�B��M�t��oT��P��`og6`�ȕ�]�F'&�F�'��ݫ�ˢ��}�c#Ccm��}�\�D�ۻ��f�����Z^�u�|�7(�H^t�ON�
���%�T��/��۪:�ƎmK�Db��q��c�����~���nT`���P�����;�
+��rL��W�n蕘R����Z��­'SSSC����n4�Mj_������m�~mT���^��X,��n�{���-N3&�d_�9,!~�ދ���~���`_��c{pD�&v��qk�޳��c��C��!�����vt
�������]?�O�0=y�W�%����;p����1���<�Ո��ϒsw�?�qZ�ܔ�Z7<61>6�����-��I85Xv���74���󇇇�}�"&K/�q��~֦�܎c��`g��֭'/�F_;ՈTi�|��������`�K��(��o=�؝��Ԯg���C0`GZ\�`�{�vˋ�
RN�ZL>{�‘�����������������m�x����Uf2��G�+\���;{�Ɂ�㭯�S��]}���A��Ǯ>{���⣆3ך'����H81&W~����������P��]y>����=20':_�<ni~�0���vw��
+������pL���Ƌ�{�\�Ha8v�FwO�ݦs�o�xi��R�������\�{|<����E�O�h
�T:��e}� ��|�����*b���D$DMV{ p9�j�"M�������U
+�U*Q5X�᪰�dP�p�VK�&"�5�@(��z-Y.�R�����F:�^�\��`4��'�!�
+CH��Up�(׉�U�YR�"�#��0���r�P���\.�v��-��D�T���p�
+do2����d������t���O��]C��dq��^B2)�m��F6��I�6��jV���
+��\���mz�Z,@}$�NN�N(�*?���<L��"r�>O�7�,z!�+Gq��$��R�%��k�$�43oGc0��z!���Z�`f�@l0�)AeR>���@��a��L�G����b5�Bu�ODo�`J]�vq�������?�������3��q�t�$�_���|�%�Uh0��f���ab3����\����%�U�Jcp9m�L$�/��92������Z\)�I�
+�=m7��g
+�����d��sp��G
+,�o׈��!�8&a
+���/_��*�_IU������g!��W3�!�,���_���Y�(0L����[����|uQ��2P-��2�����3��k��K0š��W{�l-6��C&�.Y�jY�V-�r;·_RF��v>d���*�ee�)&/}.��e�>_�kU��p��d�jCq�Q�ZG�?^~�^h*p��^m���gT�j���k}��38231�+�ȯ�e&/�)����N��o�f�Q������j�.L��>���p詯�ɴV�brm-���(��V�zp�A=N�k��p��\�ټc��۷��:���1�J}��7b1��TZ�RpMD=*�f�W-�> ɷ�Fh�L�'	s�W4��Ec|�y\P#�(��ֺ�o��?����t%��u.`�hA�EZ���/����tQ�^�;)�e�D�Hk��J}�[��Ϸ/�� �������Z�j-�9��-{e�i��3m��6?҃4�iѢEk��f2-Z�h��L�E���#�ɴhѢ�~D3�-Z�֏h&ӢE����dZ�h�Z?��L�-Z�G����������i��}�����R���D�H}Q�>m��O�_o�}���~���s��i��}��:�/\��|�ɴhѢE��dZ�h�Z?��L�-Z�G4�iѢEk��f2-Z�h��L�E���#�ɴhѢ�~D3�-Z�֏h&ӢE����dZ�h�Z?Z'L�|Jyd-Z��b�٬�
+"��e��1�&C�������
+A $��29����6dOրG�k��R�1�Q���o~��������o�Y��KvЗ��岘L61�?#.��d2!��3�Y�8�\6���wk�Hp�獱2I~q'p=0Y |��w��+** N�RQOa2/g2��;��h��Z*}��N;�����a�>��cQ�I�������z����.�V���4�zm��(&xm6�c59�N���X^�J ”J�X��-蒡�g�D\�O��6[㊞o<�4*��O0"�dh�*�J��&�H���;6�ȇ8l�P,�0�P�
+@H 
+T�W/�r�|�U.H�@E�M����z`�P(&3��'�.���G��C������l:����ٴͨ�s?��|�H�Z�~�a���u+�q�"4��'#!��n6jydɿ��~Fϖۊ�,��fW�Y�ȟ�$��rQ\._ IdA����\�d��W�V��������v�_�(&���F�Ѽ �Ri4`r�<�)�����=���\h�U�[~�/���4�ѷo#LH��ߖ|`1*=ź��8��ZL6o
�DI8,�����{rb|ph���䶸�R�=�zr~�b���nz�'`�3��%�r�ܺ{^�B��w܅�pY6�[�<{�����lbblxxxtttll���v�o��YV�rc�D&�|<�v�*ZL�����&��������B8\���.�|�D$��P_(ZS*Zu��/p��4��x��І���4&L�Z�/���$�%C�Ñb�\��0(aJ��+���{��Ί�-��$G��f��M�PM�)�7p9B�2��8��J�MFVk��HT��3O@�E8T�B������|��\��l)$&�Z�`r,��;���,s���|깅D��a�~@�"�+�"��S��fRI�TH�Z���?ɝe�&40Y��V�Z�R-e2Se�O���O�\�c�dr98��-�R!K�r�D,"�v�OM�͇I&�D�%X8���L,�:2��̎��,�d�.���l&k�X�2��w���
+�Jgʕ���%R�iypf'�Y���۷T�!@%�,�L*�1%��Sչ��r�������Y,,rD. �w��&���u�w>����xb��#}c3��]1��E��ùىE�y�˵מv�>���a�����@R1����\^L�ş�do��gň*���]|.	C.�/Fb�|&�:�+�u���'��pd���R6�����D��ۂ^���J�ҩx̤áy�rE Te��±^%���d:_,����j�q�W� �@U�X(��p�#
+�>M����%�*C8@%"6���mU� &ñRk�0��|���%	���RlvW2�vX��.�qH�ktF�bR?T��C�2�TU�/	����X:�NƢ�r�j̮���tyR�L2ѫ1hC�X����d:�
+x��
+\�Fk,�6��G�
'3��I�
+xk��D$wz�i"���80.f2�o�UK%vyQ#�}~����3�t���0<XˤS~�CDB���6��N��6E��f����L:�{�"�P��%���X��0�H���8d����	��	40Y�VkW��0`���l�O���-TU�E�N^9}hg�٦���g��\&��c�%�w=y񪷧���E&`�a�ɹ��MܭN]=T��0آ�}p\d�$��G_u�t�n�q����0���!A��g��{�:^>�ws�P:�L�ɦ'�c=Uf|Ӧ���,�����bl2��.5Zp1��Œ��M��{@�M��ŽgN���
+���΍m[w޼����s��>���d�5�������>���t��Ƀ%��4A1����Uae��ش�“�6�����G��Xq�����ޞ���R�QY��z������P߳���v���u�QWww��C������W�d�w�}G:u�X&`��X��������H)��K�v����D<��3'��|�����UA����48�5�5�T�n�E�R>��(�|��mV�H�)5�R�˨�偪d1�q�m��q�B�����U�A�A0u*[��_g�drŠ�,Ǵ�b
�Es�HjsM�ӄ�8|$�e�2�-�}n�ђ����b���RuM1��:�jY�l�q,U��aNQȥEoq���H�o4��BQ ��%���b�*�"VO*�N�l6[,�+f�
+�@(WA�AoszK��ݨb1Yj��(@>�q:B�uR.&�d�����B*1��ɼ���<�+˥����2	�$��b2���Z��B�a1ڜ~��*9�'��rp�
��n�P*��U/���X4���w��tl�É|:N8pi��R)Qr��w[u<��믂�>�M��$(�00���h5��	\�2��V�&�F� �LWp�MO��������GN���x��fŦ��ó�~jv���t���� W�3����37^��<V�9,i��#ݏd,F���ܻ������n�|7;��70xG.=���Y�?{���H�ߠ`-Ћ�b���Fg�Ow�UB%|&�����O���d<������3��wmپs��n��ʣ���$�J��}���̽�gO_��ӏ�Ő�'�?���k��O\���ǿ��9��0#�3��嚔C������7�����3�d�ϻG�[o+8L_zk��tWۃ];k
J��������\���ַ=^��������z`�����3���LV��%�]�d���b���'#��(q\��L��42��B��,f*�.L��-��bT�͗H��%���B	����lB*�/�O~�U�kX%�����y�\%8K��H2W嵋eX2-±H�HgV�Rg�Ws&������P^��\,-q��p�����\&~5�Ȩ��W WesE�U�`��� �J'���O^�qH&RQT"�q���tVrUd]�k�Ƙ�Z[���V(�MG�Yg/�ZDLfC������L.�2�5"��Ckp9B9��{05Z��"T��&�&.WXe���*�1f�E���㊀ɱ�W�c���L���qX"T�L�V7a��*��s��{�a\q��8L�����0���|�S��	#A/"�|񾂯S��J�R��p�����z�eL���o��}�R��+��|����-�]l�nw�2p^�ɳ�vA2���u��J2�TS�@�]�@I�_����
6x�G�̎'C1f���f������{?�;�V?HqY,^ ��e��O?����-�e�Ue&���Gz�:�%u��O�����d0�<�J�ы��n�U���̛['��+6*�U�o������w�gwf<�3K�y�>�r��ǘ!\��ΡW4�8"�Au���x�3*�`d��C7n`��4�C�ˑ��M�f�n��u3Y"�|���'��<r�B�2���2��W�p�9)?Y������R��w���.FG(���
+�uH�KeK>�~1��N1����!`�\�|=YF�';�8&W�T(�R�4���	`���Uf�+��8ݡl��dv峄�ir.��
+�`r��UHD+� J]2��\]	�%��½����n��M��AՆD*nd2R!����h6�UW�BMX#� �`���\�;�l+�ӈXĆc�ɨ��p�|]�H��Gkj6�?�����	��f�z"�J��_&�2��ELE��|67�m:����@W��
.ÅC���bIZ��lF��Bղ��ͤ^%&�39������9�&�)�59��j9��s�������ww�V��{��y�9�=e�:瞙x&���L��*l�I��^$R�)R�Urw�۲�e˶lI�m�E�V��j.3�|�{�%���L�Q��,,�B���������A!�r�\ί�ʉ��+�ɒM��?E"�{�\�6�R}cd�x�ۭ�}�U�@Z�66�q�X��h�M�������/��;@f��A����l+����G)��w�0��- +��Rͱ5�/^��9��F'�Gϼ\�g��K�����g{\���jS��ҋ���(v��„�@K�3XBuc�����G�o��k��1ّ}���G�zǧgG�>���,��q�lK�i8n�L)p�[��
�
�/�
;�'o߾��N����\��p��$�+�zLd���v�
'��#���T'C��"�>&��pq�S$�Db`x��rr�Q�N�2A��d�����x�EC*�_;;�x^��F!�td��p$�ݶ<8 M���:�R�N����f��/2e���p0�g1�uyYu2�Rm�(S:��)�";Y��`i1A�6bIU�X,���g�mE�&��s�4I'�u��+"�B�%�
+�r��B��S��a|	i{{n�vuW�>�K8�����\��nj�bkN�1��N�8��#Q�\��ui
+I'[a�M��r��l��b�E��Yp,[������\�N�H$�e)�l=p����cm7��Ytpr-�d���y<47�a�iP,DʌT'_�}:��(`d�	y]��h�=pr]��P�-FOOO��:��4�w�ܑg/��"0&���[�8��g2hiL������a���t<k���W/��rg�g�
�A�mp�^O!�t�#���ɗ/�{Ӿ�!7�{&Z�ntr_�-.Y���̤��'�_��z<�6�g�_ޮ8�aq��z<��H��'7��A�L�H{����T�8�{/�X���p'�„��)m�R�ל��X�ئ[yY�Q�#$2���+�EL9�1����]^�#/{I'�2_0������j�G#`6�H�_\��b�/Q#e.[�No�"��U�r�d=�N����0���mJ�Zp��Į�Idr�ɠ���+��J�!Z)NH<~2M�A�+t��N�B�:?'������D��̖�@0f�1��B�!�q�=O�
aʶhUr(�@8Vj˅/+�$	�
b�����B>�����Ƃ^�Ziɷ��e�<p)��h0��x<
+N��\k�&֘k1��7mT�sxNo<�2hEb��`���l�I�'cK��
+e.Rk������99�&��ƭp�E%>HӬ׬��cs��P�h�ɞP�E9Yc̉�b9
�&�Hf�Ζ�EjSn<�Ny��k�C����5$�?�|>̐l�I���>[Y>+'�uLt�<�pr]��`[5��<�����[�l���}�-z�"w|a�hĹ3
?�mafpw(t��ы����b����\~v����c}c�����%��Bm��������)�S�����a���G�|wxo�Q_�+�^��+���yx�[���ggF�F!!���{6޷7Xjw���rhؙ���QNvN//��&��Zyu~�S$�tO<��|�r�����J󝷝|��b�-
+C���gWF:�kECᮥ�/oTq��{Ff�G��S�}�73�u7?K�2��L-u?��p��[�^-����G����S��;wfn �����/�Tæ�e@\��R
+E¡P8	��&��MU{�dZ�?�D|�������͔Ss�^����ڣ��n�a�zՔ��8��(Ygk+����X,�D����H%��,`�P���urJQ�Jg��k�O(�8
+d�/n���$�1��ST���T�5�����_�q�\e�=2��N^��D�*2[�]Ņ|j-�U�6�����!͐��R�Dpԓ����VFF�~�Z�Te�‘p���;ݑPȠ���)�+��I'+5�@���06ٴ#�j~����	�6X;Y�AX�A)��<g�7?��7$l.ߒg��"��P�YK8K}�Tp����y�� _���Y���"��Y���ߧWq����㤓�R�-�L�B�N��{I�%�kȶ����(W�I���6N޶m[�d����}��!�xIn��
���0A��'
������JCgs]g�	���ꉙ�ɉ�驱ݥ�BI֓����"ZF��8�;29?7�����-oJ0�P����=7??5>x��ၮR��F���u��gf��Ʀ&��\��Z�Kp�jӳg�S��3��]�wmZ9�'������r-=/tt���� �@�R�k����y����4��64^0�
+}Q��P�3��ISꋺF�N�m��̬"w�öޞ��g�k�zt�(���6���܍����a���������"�s$��u���fdž�oV���}\�Cc���������Ď^������[��wd��EE�~h�E�B���/��n`*A��&����f|�M���'��G6��$���=�P1�O�]xK$BB,�R/1���`��b�D$�-���m����|�D�'S��)o^d�`6%d�ɵ��U.���)m�1|������x�R�l�P����v��Ֆ�z�G�'��O���%��F��9\����Y��������D���uC������q�q6_(��
��yk*��`����]����2���/ь���e1��9�|-�WE�ro��ר��|��'�~���8pu��#ߌZ{nK�N�0���T��f�\"�J��[[��R��j��	8a�T����DY�N%�S���sWk� @�jfK�Y.�%�_Z����(/�"Xḿ�K"Kp��ᘡ��6��&�Y�Q���7��Y=��|Bx�Y!#��Ҳ��U���uU�d
+o.]<\��]T��7eekb��5z#y��[��LF=��0�Vg2��8Β(5F���o��g?��N����h@~��=�2����N�o.���I�G�1��HMJ�iL� ��6�ٚ���YSrR�k�9z�R���Q�cg|{#@�B��֡���']���:�T��X|oMJnyYI��"�K>����w>�@NF~YC�E��N������]{��G�r��������4���p�BD����@�M��i4����Ց�р�_���?�a۶m��9����|%�
+r2�����_��w��h�e��_?���7���l<�@�-��Q�!�>�!N��E r�o����`������������@ 9�7�?�� dX����w �������w2N!���@|����'��	��x�I��9��⠓�7�q2���o�&�7��r2��dP0S`��4���
+N�<|��W���?���C��ؔ/I�����w~����4�>��c&��2���ކO�Ԓ�i2�C��=���{�#����J�Y
+�1�ӟ�m۶!;��H��A>�X�1�����'"�������o�puTr�5���[��\.�/�˦�ON|B�3�w2���~9�������q�a'~�R�'X�Gp��m���P*�9yf���3HY"W�	y�����;$��9�ٚ_Z�q;j���slFj�����5���Q�(��'������}J
+r��
+����{9�k�Xr6#77�h4��LM���+�����~�P�H��p�ʝob1?rc,�6����˹&����R��K%�5�B�Z�'�D?D�d�k8��S(U2�'��֐ID��_�����	��''�a�����/a�d�?8G�tKȎ�{�[��$�do���$g�&�ںa� ?�
+'i"�"W4	���H4�-5h�~W���Om"��������v���B���1��x,,O���]I��>��D6_jݜ�ėx��Hun���my9Vk�Z�_����Tm��a��o(ռ,�Z4���oܛ�i��'{U����pb�F�.�R&Nzc��R}�<I0�5i?>:�^N�H�k^#�"�[�р���
L����;v2��L�D���Hc�5�++�c.����r_�`^�V;��W�!w6��Z�1q�#��i���d�[x�N+�ђXz�F���bͩ]���>�A���}�������9~qn���������H��CQ�ˮ��
+N��������_��'����up���r��N��|�?a��߲&?��MI�V��ƨ�y!
�X"�@�:KQ��zG��b�א8��&o�s�����䥾P�EGu?��sx">�V�����X�[" �\M*an8�堝PP'R7e�o����1��<l�+�B)|�'�DfR�W鲣��l���ԩ�E��rE$N�$�6Ou8'���K��sR#�O�;J��<_�lsa,����s�dyr��������b��.��	 4R*Z�5����
+��P�����/�H�Ǎ7z��@��%�)�����AN�D�`�
+�\zm��08��
�K��J�1+7-�:�9TW\���c*��`Р����$�p�jPCi�H�ߓ��ɐ>8Y��6\�T*�;��̎�//��!���b�l�DJ~�}�c&&�Q��	�����8�9KB�I{b&K(��q�<��8(�'�B��b�T$��Z&��_z�ً��ן�02\e��W�Dm���uO^�z1��P+"˖��j[^�~�z�8��L���������=�b~�8[���|���!ĦNN�$8��:(�Daw�d��LH��\�%����!k��i"Is�m�HĪ���J_0�����6��%)
�Ro0t��|.���Ul��6G,�8KJtJYNaq,����b���[\�8x���r�=��G(��s<_ (-q�$6_�t�㱘��-.����/�����tv;�2!�U(��9����{�L�`ʋ�^",u+�|�^��pf����7Sq�E��6�Òe*q�
+,&�����yY��ש�Ja)�Ӯ��C�U�b��h�z����g1h`>��0��!qW�V.Jd�����*��x��}�����[�2�lꂪ���
+��>�JD�m#N=�e�W��V1�>ޱ�e"�Z�����YMZ6�"���6k����+rX��V��|OQN'%��p�Jgv��Ȝ�����%E��쬬"�+{�(_DV��)c��a�-��炟�;�ؚ_�������>808\A�����>�Ö/H}�pan��J�Q�'$;�{O"����V���������d�1)}��d�x�/޾r�p嵺����u�f�����݇۞����<
g�d�D�����k�W8���{�rm�Yc����g{�z;�-=�'�ht�Tq�Z����@w�^_��G<�<q����+�Ξ8�5>�r����3��˵��K�+ӻ]VZ&M�-�x����Ґp����u�#�]{�<�+62>T����E8�M����uqt2^��D�^�Nc2g)��Dz��P�d��:c��J"|Ke�6�z��d�=��y���s��*�D !{k�f�G�.�1+/��|��
+�:�Uc��#1��f4��7��4�q
+	�H�����b>A�جf�ΐ��Ks9�5�8���z����9@���]b��E�q{^�%(�֙�?��f���]¹�uZ��e#pL��d���|0Ү����T�ŗ����x4j+�-���ce�p� �jsz㑀�K�ݾ�/��()��Tm����c�P~���"{_��������YF�T���B(��^�97�,O�B��y�E��"��,�)����J������l����^�e�P�#��6��9`8.�[�&=\y�шA!�	��4�.��,��9���VW�Bk�V�L:�O�1Gben{>lZ���U-r�"o0Z����ܢ�x�ըI	�לlυ@Q�1¶���<��f��
z�����,̘�g�E���<�V-��=�\|�Ŷ�<H6n1������:�a�����o�F#�H��d����-#}�r�����g�_5]>���p�:���uwKC<9z�=G/V�$���\�3=�,�`�L�����G"&�d�wK/V�/}�u�����d�iNcp��|�l�w_4x��eqz�n�����&�mpreyez�ժ3YLK|���POs���G�G�����LJ�::��/&�l7I�J���������)�-�q��_�~'C��qN�
+���:%��8�'��+�r�)n0�M�N���M��_���R�1�����
+g��Zy�|\y�{Y,�e�+J�����M0Ċ:sn4��z#��J*$�E�@(V`��!��ٹvw,��z@&��_��%�
.h
+��).��2�	����d����".d�(��<�\�<�w�`fh����
+�8���j[�9++�1���|G<��Jm8Y���5��B+LU��Se|.O��cE9�ɐ���hY�I
7�*�%�hD�f��b��rƣ	�U�aj4[�`2�j�5�h$<'�x\�V�EO�\�]�>���E\��f��!�T���VB �e.����<�T�emx���� F����R+�j�)�ZMd��b�7	�|�P��bL�Zc�[!ञ�d�v��{�ِ�'R��q����
+ �=��;W�NJsL �7����:�p�%��ba��"�Y�����j�B*M�d�Z�`0a�/u�r�*�!$~��b`�xN�*�����G,������ɷZFƻ�r^.���{tn��?\���U
+�3it���Z�������=H8���'c=����ƣ���F�����=��8�s�r���rg��b[Atߙ��K���F:e��2Y'��z����
+6��Kp�Ն��{���j�}bR(n5ޫ��Z��������Ņ�O;���>[x6uj_���7��
+Nt2��l���׻��O�]�5no /z���#�y�p�������E�X�d�aL�,	�ujvJwZՕ*8Y,${�5�:�;P2��4P$ M�.opWyyqٻ=H�XN.�1�(�B��w�%bu	č UϒW���녈�Ԟ�a1�*c���d�z�`���DG`w谖�x��(�H�z��:Ί��A�?�[��%&�8��S}o��H�ɡh�V
+^����HD+���AMZ7� gX*�����qI'G��~�E��	'�l��\����(WC���O�,�C���L4W�p��@��8���<��B.{Mmt2�+,
�#�`"W�@ Ǭ#/�L�h-*+�����r�bљr�%�>$%Wln����D�:�+􆢎#8��䚴�B#7:���pY���z���b!.�9{�nlV�b�Ufp�Q+�RJ�'�Ԑ,����9���d2���O�P�'׶��T��,��v�h_s.�Ե�
u�"�6�M��A���'������q��d���')'Ŋ����������������rw�����`h�|C��3���&�K,t:�rrOǽ���KK�.U����.�>M8�����g3U�;�o�q�t!�����o��A's�t�L���'{��g�o2���tY�/�9\#��Q��K���۞���iӪ;�T�*�9#����ԫ�\�IM��"��Xd�\'�>��jR\k΍�á@8�/���ڄ�!NN�����$ꓩ�!ɺ�&;�[
j�"@��糙��2e��T�H����2���Y�D\�F){�Ԡ<���x�E/OvR�|��Th�`�ݛ�0�/%�l�ɒN�Q{��
+-��l�,5M������
N.)��1����wrQi,�pW���c�d��W��dGm�dw �sA�>��Ɨ(��p��R�TT��NV
+���c�N.�F.>��pY D��I'�u���L�'�f&n|�����z��C� ��x�Ae�Zu�Q��dN�H$�e)�l=p����cm7��Ytpr-�d/j͍v��l�2#��k���4
+�BQ�2<�}O,��uL���a���t��ʕ�Y��(P�<{�t��dH���ٓ)O^�:8��^a�gpzi��=�Kg���O���e�������ѮF!�j�]ur�>YK�eИ��j�$[��p�N8����O����7���.,)�Es�p���!��1*Yۘ�mЪ��7�QX�,�βX$7�7n:�Q-mҾ�:��rUQ�+J�Y%Pu��XجW�y\�L��}�b�\*S���D,����-�$��S�%6>�r8�JR�N�<�7B��H�V�6䕕�s 	�%��!��kL ��l�P�'��:W�\�����1yB��Y
+'x��N�߬�<��KJ���ߣW�%R��d�s9��X4$ @jjir����I��p,��H4�tr<���×z���T������'Ǣ����h��._8X�TH��x��RLVz@HIV����|엜��Ų�
+�>��
�m�q2ğ��d(R��V�Z��X�3�]�sxvW �sI�B�><Du�Қr���P��q3\z��\��*�1�Œ|y\�6W�G�֜�ulpr�/�+�K�����|g<6i5���:wQ.����X,^��%�y<I �]s2�����(�S���"�'�χx<�j��v�g+�Gc%�dpi��	'׷��UC��?pn�իǵUŅ��rX
E���±�sg~�V�����H�j}󋗯���b���^-?�pb��㳯���%���������{�&Svl��B�a-�8���OT�X�//1��ѢG�^��u͙]4�ڽ��G�it��������kN��3y���w=�N.���<;Zl3~�uȩl'�D��w;7�-��~��$'�L�
+9\�H$
+C�j/�\�z���B�����(%dk
� ����P0��n$if��e1( ���
r���GlJ�����	y '����Q�'k}��V�����ls�-��zQ~v���$۔�8!;\�H8�����a
+sL.��Q
+jiq�K9�`����� x+b�����e�d��"����#�:
+Pur���-��ydc?�ڕ��5<.O��x�&��Z��z}>
Yw�)5f�ߧ�-E2����RB.���uKx���Z�ӫ�sj��`0��┾��:S~��K����s�0�P ��WU�Z���w9Y S�|�^��,���[�B!�U!��Š�ۄ�ߧ��a[x"��p@��P�p���K�rRO��l-R�5�[LZ(].!ry|��r����/�ҭ�'�#�י��Ys2�4EUJ0W���"Y:%������p�벋�H6[�"�%�������۶m�ӄ�/��fHq2Sn�����0����;�������R}���g8l&���������)w�	$���}�"ZFF�=�=4>77����㶦�!���?z:;779:p�����'�"�F�ɍ�o7MMO���M��]����d�2��w��b/�ɀ?����#����SW���c�U����N%�d�V?��ZF�p�Pwk�N��~���q�Ν;���˯(��BrL%(�)'��J�2��1ћF��@ �Ew�525I I$b�G�뗐]���`$xxPMv�IpaK$"���U$�SV_���y3�#���l�'˺U��d��J("3F���b���uK���ǼCJ6+��%b��X]�M"�S�ܔ��7�|�R�\?'���]���7��1<�����|��tc7��tj��Bj�&��K�{��%L@�E2	>�jG`W�i�6ݳ\��#G�{s��>W$�;�
E��m%�x'�	���Q�5��>K:9�A�ʦ�˯5�H��Ҁ�@��M�h�E��E�+�\���h!�z'KVBsv6E�����ɔ�j�1�l�����
y�{���D��/�p�X��	,M�����Q/ ���ߴc�5��,$O�K��I�|�譑��Nl:��x{��L郳%'����s���Ê��������m��T�5ۏ��u�p]��M���_O"6NF˩���o�g���y�v+���E=�Y�rLI��t���k��6=C?8fS~�f���@ �:�~S '#[t��@NF �8�$�M���@lq�I���gv2Ѐ��s@N�u���4����_7��h@�/k@N�u���4����_7��h@�/k@N�u�S;�M�}�d2�@������@ �n����N�0��/��/p,�ۿ�ۿ��{70�_(޵,��w��ݶm������K��q2������_���w�������;��~������J����'��g.r򯏟��8��O>��/�ر;w������F!����*..�s������ӿ���R�SH����͖�	����p��+�����8�H$�}�YZZ��&�z�t��dV�5;���`0���������@�p&a�p�T��͘B���4:cc�?+l�L��8kyD ~*0
+$�_%?��!qX�h�o�r��?��O0OVV��h4�L��,������t:�믿^�V'�b����g���3ϟ?{�|�H�d����#6e�Ozb뿈ɦ�U6�����}�듍3��8�)4؇g+����]_hܘ1�He+8� p2����_\\������o�^\\t�����/����\ݣ��]�k����|�uc�I�N�A�*Kd2	���+�l���py���>�M~�C6K�~'<�b28_&���|&��'g�!�Q3�O�q,1F*��.Ȗ+�e��L
+�c�T��l�_�����B�T&�Tg�����d��駟~��7V�ujj�ҥK�z�ݻw���?~���?߶m��X�䮉��J���2�Αgm���4�у'{��Ɔ�W|+%�&z��Σ��ѱ���P�6��p�>u����ŪA���P܃c,�8BM�O���z:���	��J��i�q���s�#�C���vP7�+������#c�cu���2��톈���_���ZLv��q��nܹxl78��h9��Е���8(\F ��u������Ң����Ҿ}��F���LCC�W_}3���tz��v��߫�K�NW-�X�t8���a�[Xzv�����K�{ܙ��զ��ѧ���=���tƮ������h_��C�t�X�(͖�L������;������/V�F��3�{*�����X�wG��
LO>�'��,���oU����~3Sd,�]�(��x��~�//=#�`ͯ���c'g�ٵ����K'��scQ ��8[��A(��۷�={vnnntt�����h4�F��?��-'�oYx>?=3�t݅#.�`ך��G�ʂNGi�{t���+�y�����ȡx����t&B�3wƻm:�Νif{xn��C>���W��n�2=-
��Zg��]��3�+�,ύzm�i���_����	�=���_�TZ
r&��b2E�����]6&�i�i���h�CU�[ub�͖��������L={p�4N��H�@��Vp2D��d��R���Ν;�߿Z6��_�����>{�������=N�.�h��-�Ic��7u?���������q�(���-�<�\y�r��=`3e���
3}�b6���
+����]��6hD,��C������7̌��{�=M*+���u���t�I#d���o�<_Z^��Y�����m��w;��i�+������ѹ��}L�N�೙�>*cCÃU��tr2�x���d�!����D"����_��2��N����Ҙǯ5�~�x$f����?�h1I9L��b$[bdff`�+�whf����GO�W4��?R�p�3E��嗕{��c5/F�����L&G��w���u�t�L/)pp��b�����6X/�z����x����N������g��Zgg�KsT4���}x��Q#� c�Z��-���q�&$���c�B!��H��
�d&���N��3��p���Ηe���,N��%E�㋯^>�y.ߒ���¥8������aOv��kl��	��;U��8w��p�%�꽧���Ez�./0�����%kV֡��+/^�;��Ƞ�9�8��8��=��_�����q���\��Й�/byJB[4<�xn��Π��Һ�����o]�ׄl&����\y��n��ܬ,O�<p�ї
+�����N�';=O�7�'�?�)���P�4v�^>�a�x�F�k��Y��������������2ٕ7''&�����6{l���t��񮮞�ɉ���AN������
�M��0ZUqP@��L,|�jW�M��1Y�#W:�$ܬ�`�(�H�Y]y��a
+4y�;����L����O��*�3�lgq���^���A�N��茟���/�-��ķ,��n>����_u2�d55��D��æ�'˔f�I)��N�p�J�ޠ�	&#��Uܝ�{`R	uF�R.f��O&�,��L&�R)c�V_\��'s׊��o�@����J9N��H�2��>��!;���A�Dr���lR
+�5�a03r�OPw����c���o����ϱV��#�|����c�� ����k�~��w����������Wb�;�
+N��%�L9%�y|.�#��Z��@��X{��@ ��M'#��9�@ ����u@NF ��r2�@l��b뀜�@ [�d��: '#��9�@ �?���/�!bs@�?��w���@ �{U�N�ꫯ���?�	�@ �T	��I�,����h@�?���@ �@ �@ �@ �@ ��g��7�L&���k�`L������ŏ���%����}G+�����՗/����|��H^�qW���T-�f�X�	.L&9���l��Ug���+���g1	�î����;�uM
�L�x�|��	1�F�q�ɀ8�
+��b��t
+V2��q&��2���ei|�����x�ƀXc%&Q�2@�E���#�*����L�>Z���J�f��!e*t5s"T
+�l0?vT�@ ?=o}�nu,8��mz2��p����|��Bm�__���;A�8!	����8,-���漒c'�;y�-׀�H���S��;�(0ㄸ���1�a�1��/r������.�8��Y�C�O=�K-2�L[����ˎ��~�["�i���n�����BO����3����R���ٜ"�+?�p}w�ty���߽�����)}=x"�\sr��K\Y��b��YΑ�-�g٘��v���ē���g�'v{h���������k�!f���-�,�u�
�^9&PX����LN���=�qV���M,^>�Nˠ�U�/��MLM���,,����)E��.,.NM��u5�jd����b��S\�o[X������y�0O#�3w��'�G�&&��'V�*��tfrc�@ ~( ̟T�\.��O?ݶm[���`���`���1|�����{�<�K/����^}�=�Q�a�Nս^�p�L����m�+�_߽|�O��<�D��k�F�O�=.���:ڂ���PN>U�bi��@�O�b�.�x��D(����\�ua��d0�]�wg�)�L[��W+gv�0MW�|�r���F�j�[y>y4�J��3
��LZ�	���>L�@ ~�J&h�s�T*����a�L&K~�nu���cL\bj�m��\~�ze�y��'��mC��#�z	f��&�-�O�V_<�WJ3i���W˓N���`��,_��;��ʡҌL�b�:���|�2i4��l�_�y�����\�9���^u�B�����2�gR��d%��N�H߃j�S�1�R[��Lc�Duý������@�&E ?�$��)�G�����94�F��0�#�+�o��<r�����C{#�h,��">Ys~ɵ���K+-������D�YA'����	'_>�&�`o;y��VL6��g�G�W��
+����o��C������JH9Y��{p�\�1�x�F��pq}�pO�5q���������t�+"���\�î����Q��=������aZfz&�)	!�L)�32�o��^�Ҋ��G�_��?wH��y�\*�k�H',���3��'zl٪�L�g������u���R�������d>�dW勗KG#6ZF�6�ttn�a�I�ν�9�t�GNF ?*[�Ʉ�a����\_oo_����ʼn��rO�`�<�[VV�;���
���Y��n�Lݽ{od�Yw�u9�x��u�_�z�����o�����:4���a望u�#s/���n�,-M�޻�8����pEJ�X<����g���rѮs��#mZ1�#��~Գ�l�~C������[���>�o�=Ϧ���;9���9�@������q����Fc�X,��C�N!bP�q���	���s.�9}2Tj�q0�1g��#�����ke|�-�����g+�?zȞk��%�@8Ϩ�Z��\����4:����L��]�s/9X��0
+�!���3gNQI:�-�q	6����}�^�x���f���b�8aw�V6F���}��y���Q��Nf��w�k<���r�30!�I�0�����6'�cɑ��x8Y]�Ly�$�'$�����C-�3>:�El�M=�U<Q%�X}��ޤ�|E�Z
k�7��7\A ����>@��]'�\�PqTՀ@ ��5'���G�B#�-�o���eANF ��r2�@l��b뀜�@ [�d��: '#��9�@ �[��?s(�E�jNNx��`dR�h4Ǒ��o�-�d������'�|��_~��_���?����_|�̌@ ~l)'�{���+��w�ƍG�=~���ݻǎ�D۶m��i�@���"N����b����@___/�}{�_����+�B
+,�F1��5������onn������|��ISSS]]]GG�����X,��_�P�@���
+N���ϟ?�p;HX�������իW���V����_�ZM���\a[�
e�c����o����֎�,ѵ��qC��8�X��*+5��P+���'���
��W���
+N�#�`0�r[��G"�^�֭������c�233?�2��i��GXd/ �M�{����TrI�<��ܠ������:�������%?L��S;y�Ia�����,��W�8�I��!�s��� `~��8F�����������
?U��I�8�ܢ`�o����a+�ț�9e�,���!�(//okk{�������ꪪ��ݻ��ܜ	ZEK$���*DF�L�RU�U
/�����̄X�����ga����[���j
+N�1\e���$�.�p.��LlϹ{�M��X�[��Z���Q�֒Jf����),��Ժt�IX꟫��x�J�o��IW/1o���t�OZ7!%�dbP>ɤ`��4!=s�ZܗǠ:�Z]dæ�o�cR�C��=�w�J��L؛uI�o���/����?1�k��1��YL�@e����
+��׮�������cL6o����cn���PI)6|]�'�i$������B�������~w�h��|}�����陞��s��l&ߐ2U ����8gr��FR��k��׫.D��d���E��"N>q���!����;v����x��P��5@�Z��=O�����
+��z-&��}�|�X���2���TJpp&�8a}k��K���ps>��s��O�?N:c1����j�B�Ig����X-b1Db1���CI�|����6٥K�"� ��$�"H��!5�R�+�B:D"<d2_(��!�D7�d����qߔ!��b\l��A�3_3�y����lH��T"pũ�B�G�o�ap	�T*���j]fq&�%��"!gm�\dL?�r��Һ�K2�Fc��'�|��ˢ�\���".+�?�:�-"!?��0�>��M�IY���1&]Y��-ъIY`����#8�D�I��K%�^[�]b�B�$j����l��G�LL�%�zYd9Ě����}%zB�w��e��3nW��p΍�<�����*Ԫ���ǁ��M�6�J�CL���71�?R��d(76������d$J�Gf��8�Fc���k���bl.�5�'�§j��Ħ��������d�K�@b0�8�*:��؏l� I��H.ݼ��i4�2��ʥsy]c0BHK$�%�,d���X,!�8�<�jl'WTT�r)����ܹ�P(`���	������=���LKۙ�=]?�|[�J�Xl���{{{[�9��:/�dȕ1��~sg�ӎ�����5'C���r�yi��Ӷ�+��L�PgK�͆����'���L6G�홪����������:���s�j{{�z�:�\Y��������P[�oߺ�s���ښu��[�9Wj�w���5�PIy4&�$r���ioo����*1���T��^������(�U���w��F=�W����ڣw�(E\:�Y:|��q�@p���޾���EF��r�������{=p�"�c��k�������vZ.��7'B{Outv��<9�gf�r��ڞ��u�9"x��]���9���r~j���� W��|5��a��k7/��x�����u�1�t���ֽ��
����j��D�	��z����̓��1���\�����pZhL<~�܍��G=�*p!�$k�X9šƖ���އwn樅p��j�v?�l�x29�e\���Z]__ϣ���ӓ{�:����������ҷ�l���]�E?z�x���&[ͽ���և
�B�FwE޾y�JM�����Gy��[������UFA�L��d��}w�H��Ǘ_��u�|e˓����%9���tprjl����A����?�¿s��^�#ꪚ�W�^�������|�����=]m���ڦ���K'���#��Q;���5UB~��Kϗ����}�溯_���lў��v��t?�<��`3��[�jΟ��j�uY/%X��[���d&�y�СDkd���_�pvv�g�}NEߣ��~CC�\._���ó�͍5�jjn����i��
+�w��v?��߸�9�Ӥ�o��޾��Ƒ5>��w��p�~�5��p��B��NOL�7�$e��^�X��Zy��+Ϟ��i$�]�g�������{T�9��� x=}�yafx_4���:��W>�U�L�ir��'z�R��w`�ok��.-.��^��+�J��\L�_�z������s~��`�{1��R�k7�p�/3�L��_v؝��}��5�y��gJ-,QÓњ3�}�+���z]�Սݝw��٢}��SC'��e�T����s���9<=;��XGgR%�1	I���;�9�%��+�z:<u�b�'~dzz<�k��81޻'�Z,kZ�[�=v�X�9:}᨟�I[�g��FO|�����W�\��ޑ��g�GsC�r�ZpH�VNL��3
U�=�Oݎ�7̌>5�%��z�zy��ÅVl>�
+&�K�;}�Ss�h��a�@����r}��x�F����1?����z>?�ۡQDgf&=&�����C�Q�R.��h��Ńl�W�>��R�,v\��>5Ԣ!��'����^?�u~����<��|w`oY������;�<�[Nfr�5�c�+����E���{w5uM�^?&�(�64�ՇJm�\������8J�������JM��K���c�Fw��Ћ�'������b�c�/ޞ���v_dw�W�M����y�}��./0�s�榆�b���Գg3�w��M?~,T��9�����wv�:<��ّH1��z]�Bl'��嵵����ߡ�y�H$����w�^P4��I�=E���r��]#��o\<t���Ç�{��_�ɷ��ͅ�4;v��x��O���j��<�Kn)��
娷��YWw����H�^�Kˤ�=o��.���ܒ��I�Qu�v�������O�����q.0=���x0#-�N�g2�o/75�8N6�G�j��ރ�3V�p�δ<��م��{5�����:;�X!`�H�E�ݞ|rǜ����_bN���V�$�Y���ܔ�(�����3�cyj���n8�M`���b��������57��u�Mu�U��zGo�.�ؙ�����#���|{�ڍ;33���ytF��16Ou�m`z����]".���<_li���k\X\:�7띑��V��ۙΈ�m�U�e|�&Tm�㕇�L�:4Q}:������ڑ��
+u���̱h����g��MN�9�������z��L����ع��q�M���������<��N_{p�����_�vcxf���rB�
+Z�oߞ���\~��h����۹�����=�<?<11�T��}]
=�0^US���=be���t������3�\U�h��>�+w�MLFm:�G����9>7W�7�%��|����3��m����]������j�[��H�}�fG]=�k����n�۹#-x���p[���79}$l��<:[T�2�t�@��o�����'`��]'����P�w���[���'�J�AK�P�'��ovX�G'G��AEMG��s#=�F\n�i�~$����ĈM+����ɓ�R�H�E�
+NNp��E���۷��$����h40pee%����n6�?��d�E�1=##=#3z����zn8y�oQ�q��sO>{�de�cbnƓ�7:�/L�s2Co��vՂtc����M���"���ͨ:S�6��\�B�{�H�խ:���>�\q2�o�<xx�m��٥�cc]	'OOv�U`$���r��w=y>7���z�VM�?��Yi�࡛�O��΁��x���&Rpr�+2=;Q��@Ye9����
+Qa���Xo]C{ǽ�\�u�Q�pGc,����"+�'{�;z�D��<
q�i@�]k"�oGƦ��r֜LV�$�#g��g�_>�_�y����=�`����VX��Ã�R��NԷ�>˦�Lu2�8{ػ#�Q~�~��8..'"�ۿ�n���̖%��P���{��!/���6`�M�)�F&��ysN�t6_��ˤ%�/bl��͇ý��ˣ-CU��\q����~�i����Q!��3z�Ԟ̝�	�md"��jNA��`�]>�E��kN���c=�Z��LLM���ѣW�{�\�H��+k[��<,/�=�:���y��'&���w�㧮�v5��h��*nu�9���<�N�t�xxZZ���ى��,u̿;�������N��v�8{{��6�e{O���k$W�=�mo,+/뙘>sa<I��p�/�5'��t>m8�12����uO�n����Jq�D�>:y"���t���A�l'c�T*A����ׯ_�P����ƍ𣩩���+������í��\����/Onr�I�����d�"$P�F3��* ���������׋m\�)��ދq��<���}3��I�4���}�!���3g���7�3J��X'{^L�<Z��_���ю[4�y<8�y�Yo<w�}~�AE�}:t��~!i�z���]~QY{��|ĺ��Ӌ�
eR�h�Ŗ���r�?�����|#]T{fiqrE�Fg,�z��U|���'/�k|�܂@�۶�£������S�gz�*Q^�ᅹA�F��8<%%E[A����S�N��r��҉�JsN~��l�O'(s���B}���>����9���x̤�\��=5Т�	D��gl������
+$��^]��
�j��<�LBuM��}�{'2D�ktf����#K���//҆,T��
���w{&���hl�F�Z�7�Nw���f���'�
+�"�h��;S�N�V"�v��\8V
+N~Ƽ('����Dw�R*��>85�}��s�Gf��m�Nέ����2����5���d6]hZ�v���w�<��,��y`���i��dxa���c2����\����<����3����[]�#OJ
+�N_o~����B婞���i���Cs3��M$U\k��T��h���d4���pa�Ϣ�9�89�P&�P�S33ugˋ�����*'�^];�W!3����F:�F�X�ٽ�dx�@u.8�tc�@�yp�s��?�(�hsʧ_^>\e2��zƟ=8OQ��������M]�ԃ���3�wWN.=679�o�=_h<s �$4����#��t|���
�\�]~|nj$[�<x���d���.��X|u��J��;ɬ,B�35w��/�Зo�n�f��&��'I���~�Z�r�Joo/�����mmm���`����@ �ȃ��z*��^�Ӻ|S�������yF�����g`ddd���� �iC�sǪRRy%�ャ�C���[���Q,;��4V��}<9>�P���|��Mv��'�s�$̻Cg~����\�e�˫�|��5>�<V��9���ãCM�7Z�R+E���O��QR�Ņ�LJ������W�*Q:_\s�� [���?Y�������Ԯ�Lf`@������S}�m�v8C���LcO�-�R�~O�xsdd*k��!��t����b�۽�1˒�xkt|����{�:���7���c|��z��gxh�E_��RwFz����I�����@OM�ND��uO������ГGVZ����P(?C����~(T�uJFYÅ��g�Y<��q����ѽk?ߜ�~���?�r�[[�	�Ou��GOza^<;P�M�g8����o��G@�Uy�������Φ������DNɾ�c�#/������I�jcޣ����������.Zi�wt���b�&�ᓾ����x��W�0M�`��>�����������ߵ޻�L�m�x�����82:�����-�����֎��loy�H�P����KʤR��qg���uj�nܹ�� =���sM����xf��?����HWK�C�����ˊ";FA$?���bC)�o�>�uN(H7��v�=�ҽ'����=�l���m�Y�S��w�*����՝ml�]���.71��ߺt�g�t�޷*3���֎��Ta�>�7�-A>.���,6[�����'O��v�����/^�X]]M��򆀠��Z��K֮[��*��X��s�5K$&)J"�Z̹���R$E��uh����4-�I�E���b�E<G��X� �-\^��,�������:��ߋ�32$R9��d��^�����{2�PQ$I�{fM���$�,�XBJ��w2�"1M����l�"#M�2�$��1�DBQ�D$��>ʔLC��a��z|55e>������X�}B�u�,��M,�㥐K2b?��T�r�X�)"U�����ə��ZY
C ��4j�$+s�
+�Lfq�FG,�W=?C���@��^�B�9L���I��QV��e��w;챆�����x��F�Cf&A�R�L���C��RȤ�1e��J�4�bb$'=I�d��Z>��q���s�k��o�x^"k������<7�o��x��<�@W��[q�n|�?��J������<X��u�����;l� ��O�㵦��5"Z7��Rf�5�	4���M�{|P�nߣu���A:���}�E$���'�{%Y:�(�S�t2� H�NFI��� �:A$y@'#�$�dA���� �<��A�t2� H�NFI��� �:A$y@'#�$�dA���� �<��A�t2� H�NFI��� �:A$y@'#�$�dA���� �<��A�t2� H�NFI��� �:A$y@'#�$�dA���� �<��A�t2� H�NFI��� �:A$y@'#�$�dA���� �<��A�t2� H�NFIv�ɩ��"�H� ���$	��'����ꫯ���RA��$A� ̝v2���g��	A�����NV(*A$a@�;�dAAAAAAAAAAAAAAAAAAAAAAAAAAAA��C���������m-��حe��dff�!�IOO�z���OAb���
+a��0�x<I�x�	���5Gv
[ٞ$��_�D��-��`[q���,YH_mP4���c��?��7,��ן�����������7����w������_|���~�|��N� �p�	��@�-��$rƌ�χC����������������oa�>G�!���g�}��N����/�N��z�,��ב$R&�b����p yH��$Ij�Zͯn�a�o�d(���j�Vڂ�'�V|222 -q�\�h�nW������?py2�(�`��k�����<�^��N;"<;;ۊ���tB֗��A*�J�T��(
+���$$�P��(�H��8ⷵ�<��Ŀ�f����1q8&�	2�5~;N[���v��"��s2׺%��-��M�S��L��srrq2����c�%r{mH����z�s2HuM�����oE�N�$���U��n7����P�t2�'��!Ia�����Yv��ݩ��&����⧂���-�Gnܮ�9O~�����5-»iii��Lx���
+�4{��F�:
��'1��L��d���lK����I	����d�Мy��D�ZT6,�S������C�߮^�*�9y�����ɫ��dX�g�^V�x�\)ǔ�e˙��'j�8�޴��ػ=k�d�L����	#��z�X�n7�oA�psa'oq
+�`�X��Z���^ؾ��7���8N������5�֎���?7i��?���uw��
G�d2A�&�+�M4�$i�i�o��Y]����?
J��Y))U���+4�Ja0��
�ڊ��D�ˇ�99���@�y�%�����۫��`(D��EB>� 3S(�V�����E\��-\�>˫�����4��jڨ���"�~¦����XPP���yyy dx��x����5I�����0�ܽ�-N��0�#brk!�Ls3�R�ذ�H�JB�7�C��PFC)�NIU덖�S,���Kz�>��a.l��.�҂��\&e� VQjS�]��"H�^��A�T(�}���J�A�r;�d�X	�1��F��Z������犅˛"��!�2%uj���7Xݵ����r��e���8�k����5l�f�AO�iC��ƕ��1�Yf�k83n�ɑ	$���+	�2%�$R0�T��!��VrMF�|>s�.�Iy���L!{�V�iK��dt�x�@x)�e�ҡNJ�ѐ�2+S �JѤ�ʺ
+��d˶[6ag�GI���?~F.�9'�_H`���d�����\/���bT(�}�z�y2�H'�
�DŒ��A+H�P(u�������0O�&u1��(D�Q�g_����}�
+�����@���1��tq�sa�M�*�v{��d�\޺��5��B�%�!2�h����2�b	���8����� �M'�1FG�3���u=�٬�›ٞ�մZ�1���[�k��:]��A�SӴ>k��FT+�
�~ny��������ܛWs��&$J�����+)0��Y/�]�AC�4��w�m������u�<�Nϼo�3����\\�0&g��-w���Z�Z�����e�[�wa6�B��+ԆBUU�{���őWVR�!�2��LF�
��2���i��ʪP��������nO�ƪ!�Y0	��.PZY
+UVT�B��{�x��RV��!E���+}�:#��2���+��*%����{�G1s�\z��7�'C����A��%w�rssa�����n(��yr��6
���Q(#�=G/�/�Y���_\��_���-�h��lܩ�(d��eBT!��TL6��ٙ�N.-Mќ�a��4�_���8�:C�%
+�?���λ�^KQZÍ�g�޾y185��4?v��P�$4��;m�]���X(m��λ�s��t�
&��Ai��8dG���v�Nk�m��|��Q�
��i���4�B)��Y"&(LFIf� S�T* ��� �L*�����3Ek��p�\�7��{�p�Dd�V�����_�.�P_F�Z�E&$���Hd
+�8��OBf�S��;Wd�o*�nw��{��	���2�	!�J�Rx4k`�`��ቤ
+�(K(�A/���HK�eJ��n��wCpf�ӟ������FD��hs�|�Q�Д�T�4�Ҳ��|��ِ�,9y��"���^QYU��P�J�:�BO�$�ޚ2��!W�
+�r���J���ՠ��M�(+55
l��㥥�@�pP�Qzj*�/HOO�Y=�8��3!��e��tO���(�����88O���=���YF����0d�p��"�	y�o5�6�и��^'C����)3<��o�im͑˯����%��׈�B����}^'�����3�K�$�/�0*6�J� K�Kɀ3�β"���& \y�L��I�p:�MQ&_(&?%� 5����33#u�N�N�����F���d��-6�̪-z�Zg�������цj�Ngw�l��6���vK�=R���s���7W���E�Կ��C���'�I�N^NJ����=��J��S���-,�M���[�RQZ��_�m�������@gQ���w���g~~qvj�PY�-s�j���cs��>��I�)H|�ּ������l�����M?_�vsjn~jl�pmP�$��yn~~fjjhp��~����Aq��&	�����977?;=���#BIit{N^m�q���W��&��7��O����2>=����v�UG�c�9��'s_<�F��^��b�� V�Jʊ�̔�t�D�ʕ��x �e���B��ʕT~Q PT�R��;��f���ɇ4[O��o�دȘ\W&�%2����&TUY�Z�)��YB��魪����"��T��"�J,�
+��x�P���5w-��'�[Ȅ���`�� y<H�ៜ����sd[P�Vf|Rz�+V�_�Q�ҙ���ɩ�v7�;\��&�9�F��Z:{g��f�'��?�d�j��S������w�f�LJ�V��Z��:��Z� ��fg�^<B*�����ɗKw�:t$�;��Zd���<~��N�`���0"���!����#s��4]8DS�W�6wI��Bϣ�:�������5��j��/�g�ƛ��#V�w����h5�����LW�D�֜��`z�?X����Ņ�z�[�(��{t��-�S�o�;�L���:&z�<�����<�V��*�����KKg�4{���p�v�N���s���p���wo�{;8��9�zq"T���-�~��۽!o�������Te��2�<��{^�<p������N���\j~�������=��i�6P%�G_�>���-(��6�1v��%q'sy�M)V��5ګk�ʂf��W!d�2�њS^4j(�DJ�̥��F�
+�gq�;�&_��O&�������
+�vaqQ�[�\��]�-T��XL������a�K%2rEyY��l�qK���y���h�?P�m5�ZCqI�e5����z�F������rNN��"�d��}��\.�!���H�aK������
��:ٸ|!:�S5:���
+�,�\=�תW���T{���\��7_��;P]@��o�~���Ѿ�w����j��ztnir��@]U���������ٹ�3���`������ZZU��qrȗ
���D�#��.���/�8D֠Qӡ��^-N�(��C�F���z�|����h��wd�����[���F�>�������V�v����툨�����N��4�a6�������n}��#on�Q&O������@�3--UFP����g��Ǝ�����L�L���4��:p~qi�pY�k�|��ea�7�e'�=����ZZ?���x�^Ihow��>�a�$ICG��ǂ�좪����K	���4g�:�G�<٦���O�W�r�
+աK�Ǻs�
������y�^��M:�%3,Q��&�]e2��`))�����幔fAj���l�D,����p��5Z�%�^���eE
+������_�Ͷ)W��\P&7��%����\���JW��_�׃��O�M��O���-�͙���j��r����{�1���ɑ["��D�|��}077��y^�{�/$�n��K�a;��cs7������cdx�
+ffh���������tj:�<�.e���a���^�����ίTR'.7�L
Uyr���;�c}�&�KMK�3�*	f�
�'��^�?q���_���|j��]K��OO��e�_�D�U������8�����!���CMӇ.7���x`���)�z�^�X�c�����7��\;Q+��b.��	���!ұߑA�펓aRpN��F�w�F��p�7�K�&�F��>�{�~�P�V:��b������;�YM���t����_�C�B�nN���jͿZ:���h�$E(�3��';M
g�M����t�ڒ���}�0A�<�}t��|�A�,;�Q\}hza����h� ���wƟy��o/4�=kv��$�9|�yn���2C:z�쵩���]�y��Q����s`��X�oU�μ���w���p�}*���<��ҙK���܊�.�4Y�%%f
�����xy3+7�Tf�8�~=	�d�j����p:��6��ڭ9�b�JE8��������
+����C(��}��Z��`Yxk6�'s�����Y
+X $�]�L�Z-��4h��tF�[�"Z?y7�V�����y���	��������EU�χ�Ƈ�����?X�W(���o���Z�T��|{j�/ߤ=�ʹء�0������~�=;;�������yoo˽�f
����dG��[Z�(*����ʆ�i��ȏ������A�Ō�^� 
��&�۳�ȓ{�ܽ�����ҩ=>pt}:�c�Q��N�H$P?�;9̑ծEM�\-]�-���SRx��4��;��������/���eJ����W_����sK�~<BQ$?��<Av^�khr���]C��_�Q�O`pj���I�יB� #M�u��/��5hՁ�Ɵ�W���s4�K�^���h�����sE!H�0Ps�\�q���]x��H�3�����q�j��D��a<x�y��ˢQQ�C���V�T�?��?JJ����W�r)���Q�h������"��[�b�o�����aɌ���--.�HHre��4XV�_XZ�R�J(��
+�PV�Ҡ5�@q��Q����[PR�rQ��%����f�$��<T+�ph�����@��d
K-z
+:���3�sEy���+.��� �ʙiN�|o+���D�u�(+��g�o��Y�~f���"���
#v��a�!!�z����("�+E�+?(Ɲ#������0���#^�Fc��{:�85�o"�I�	E���Ԕ�T����l|��g�8���3;;Y�KU������V�����h���z���LE�!%�LJ���:v����h�N�Mj:jL��
+;�b�llԷ��������`����a.l��Dʃܾ��ŷ-�O������RS4����׏o�Q��[���v�2j�7��߽���Y3�$񛋬+�璄�q29���miW��M�\���/zZ��ٳo߾������Ŧwo_]=}�b1��?��<Og�=w�bi��S�0�����A�J{�̹�5A���3:��z�L����z�$���������Mڼ�ξ�7�{K�J���;/f�_8n�8���/��-*R��dhn���c��BG^�Tx��FwG���>�������-?�@đ+m��.�.�^i}=��q����N�ẊO�����>����X?>�㓠�!���'3��9��� �J���
+��-A�*+*�^�R&����vOmm]IQ��`�56Z�+**mZ*�d��Zg����,��	��E��_��6)Tڲ���B�B*Q��5�����eU�f�3����4P�"�j��:T����i���Y���Ͷ` ����E|p����_��䪈x���<9ꯣG�]YD�����Rbp��n�d@��. s��"�o��#�~����tQ�P$U\{lv���X����d��?���~`_Us��dKy��V{�/�^��W�R��ޟ�r�5A}w����p����VϾ�z�*�U�8�P��[><�j���؝�*;v�H���gg&BEr%��J��B�q�̥m[�
˓����/�n]9��T�����d��&'-w�_��o 	�������xM�CER���!@@��7��'s+��p}`_Ҥ�v�VsOOO/�����+'�jݱs?
��M����?Q[D�\M-ݣ�c�c#�.��:�=}��(�i���9X�$!%
ׯV�j]������fggffgz��T�)	#|�����'O��'&�����Q$	�Sažg�/&'�N���BO�ڋ]vBEd��o������t6ۤ�9q���kvM���c?v�59L��@�gphllldx�©��������l��\���Ꚛ�P��&�+���I/�5�<�eз�f
+��QZVY�
�BՕ��b㚅�����jjC5��ꚲ`��W3���R,�檫�
+s]��Y
�
�UB�P�����_�"�7GYYe
S�ڟ�'�,9�96�T���U������K��|U��3�{�p2��d��d�/h
+�e,��
+gΑN����P�N^��oI�]&�!J���>y>;;73331>���V~��:�|pdbl������O �)q������hժ���O\�l��k�(UT~پ'=����#���G�[R���79��޽j�Ty�>n-�I�z�]�Do,'�,���=C�Sp\5���_�1��N?}t�4?Ġ���~����yM��r
+�-Oz;4:-��$P�f�#��kw��u:6�������&��
+Z�
4�X�`4[�F��*�~=��s�X,j����*f*��.���ʆ��`��߃�L��8M��j3�4���h�
+Mp�}��@;pI�Ef���d U�:�l]n�y�V�b��Z���P��k&44�ur��Y��t��M���,�S���

5�gԕhL)��f��b��x�D	��C!��3�T0�`])wkx�Y�L�j���Y�1Y�U�srd��
���-�����.垰��"���mqr�0�P`$I�6�	a���Q�ŪNo2����z���F#�l�2�fk�K2Kt.�!� ���l&��d���U���
���Q��d������%a0[].�3���ce��y�j���w�S0!}�i'CP?D5;�?��C�����F�2
+B�p���@��D*	՚O��kd���X��@ ��r��>9��5D�v���#�n���a}��ZYW�}���c�3���On�d(FG<[��9��n�;�N�������g���d!��X�|$s�&V����cͲ���h�q�	�X��P@0G�O�ɛS�V �$'�8a�N�Q͞�������?�ȖH�"�dwx]Z���'����#89��;y�s|�
�^�	��pK��q��_l�d�m��Q�F_9�9K�I��%9�G�u�'�D%�����a��8��^�zv�~��ɓ��^[��ݣ I2��\����5�JfW�[�C�������ES����L�m���v�ݩ_��|�����Hr,�<�boGl�E�[��<9N[q�Z��?����
���c��6��]D�Ozz:8��U�$߅���
��s���朼&O�ʆ='"X_&�q�_~��w��
le\��X[ֿ�H�&i��{�qB4|�b�-F����:Y���?(مПb�nW�	:9�wa���'C������&,���p?�˽���%�%y������/����ܢ�8Y_��������e��~9��n��_q2��#o�n�v��E�dMO����g�@�S
�m�HMM���j��pN���'`4RRRv��_~��g,bY��W�w�1ΘC����k�/�/������ݓ��P૯��z[PI�C>�����cGYR��0w�����o�`�v��0���)�B|�d�NN���o���P�����ۢ�wt�>E�ܻ��x�\�\pg��srT6�����u����k�C�A�W�A$y@!#�$(dA���� �<��A�2� H�BFI��� ��.�8�EA�ղB�ػ� �ɰ�B��;� �CB�ػ� �I�BFI�W��:A�`�����A$y�.'��A��օ�6F�.��d�1� �6�CB�ػ� �I�BFI6��-�8A��n
+�c�+� H��;B��{� �i�-NF!#�l2�l��i� AJJ�Z��d��NF#�$Nzz�_|AQ�N�KD�[���WA�O�Ϋ6���vK��ur�B����AIMMO��	���!��!
+endstream
+endobj
+
+1257 0 obj
+87456
+endobj
+
+1258 0 obj
+<</Length 1259 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 490
+/Height 335
+/BitsPerComponent 8
+/ColorSpace /DeviceGray>>
+stream
+x��u@UY���y�����SD�P�V%
�4A,J�AJi��0Ɖ��o�sν\T�:s��<8����~����^g���?\�p��Q�����.\�'���&��?G�����gL�I���-�/�1���_�	��9��\�W��<(#����͟�`�B�E��O̟?oB����D�!��1�x�
+
+JJ*�())(�,Y�C��7čў���ߋ�P��0���Z��������~9&zz::Z�eK�() o�� m�!4�a0C�2`/g`dfaecg�����������Ȱ�ܐ6m�\�6�f���(fHy�2�������k�������J a!!~>�\��,L�7Ͳ��6
+F6ΚL��3�y	��������W@HDt���������"yy9Yi)	�բ"B�+�8�X!m*�%���q'KMq�LAEMK(s��]-!%+�Fy��5
M-mm mm-M
�
�k����JI��[�	h��R/����,E�<o��E �i�3�rp�
+�����[��n���F]�mF&�w�ܵ��t׮�;��l��ݨ��a��9i�U"����L�i��(��\�z�0�p^L��D37������Һ
�7o50�aja�{��v���@��v���mma���`�捚�)�K��
+��`e��k��D�s��"r�3%gf6.>�U�k֪im�j����f����ˑ�n'=<Oy��:�u�����#.N��{m,L�nݤ��VQVb�07;35���&�r�ZF����#�R\Fq��F=�f�{�us?�}��B��+�A�!!��!!�A�W.\�=�}����!G���f;�6���Ey9A`�q�[89hʷ�PQ�1�r�
+��RX��q��.��vNG�<N���q�vdt�ݸ�x�����ё�oF��]	�;{��툓�^�]�[�5�b"��lL��!k���\0�a�
8S���E�d��km��;v��9p%8�������ć)i��Yو�23��R&&��Fݾ|%༏��a��֦Fz:��$V
+�`���ϟ�[��
+
h�y1�2��"r�j�m��g���������q��R�3�s���KJ��+������fg��$ݏ��r���׉#��v�j�U�EXSS�<��_�;�
h���� �%��j��9��z�\@`ح��陹����*�V���74657��57756���T?�(+.z����� .�VX��s^n��63ޢ��FJT����n��xXϙ��F���f9'����Z��Ff{쏸���1��g��UV��75?kk�������E������������������0/+�������zs�ga���� ������f)�p<�gA3�x}��������y��dU46��u<�y�R�����<..ZS���������pphxdd������`_owWG۳������9����ܺv�������v=�u�"����	a�����f���x��������-�JFY]��|��q/�+aw�ӳJ*�����xhd���������&''&�Ǟ���=��vuE	��0>2<��������
�Ղ+�i�.�5��_��k�~~_�{������g��[)�f�F���ǽ�ã�%g�?������0�|��իׯz������W/_L��������PSQ�8+5!�Fp��	��F�j�R+�8	a�!�$�������B�׼)M��"�����p�f`[!$&�N{���������ҧus����12@������ODȏ���c�G��{�ښ�ʊr�co�x�9�5��Q�Z���6\�u�9�� �C,�AJ�K�H�{��^��>�o�=�"�etL|+��Է�X�������ST^���<>	!�y�;
+�/D�C���"��8�=9>`�t�6�V<�{X_�:fo�}����(H��8�bRG�nBs�]ϡ����x!�?��J��Ni��k1RB(�B*J�s/g��S�10���~���(ȹ�����w�#c��};M�7�n�{���`_w{s]e1`q���![sÍ��b��,˩)-�r�_��w�N�L�_s^���X�������P��@�ڋ�V{a�^0���R��fd��TT߲������;�R�ڦ��1�����q���>����X�'D�]�qsܽc����#
�b������$�N�%���� �a1�B���5^t����/X��E*��{11.����p�R���Y�m`f{��/�f\rVay
��?�|�ū�D����M��bbld�a]��+��󰭹��Z�U��LtH)���"HI"%i�)�$�_Ỳy��/P^ 30��qpr���J�H���yy�9�Y������3�TL\a������ϥ�щ�K��/@8�����Ì��
C�����IȺ���� 3)&��Wk�����98�<B�K(��T�)Vr�T .$�\����{駩Z�a)5�rFf6.>����$$�ed��֐JAA^NVFZ�P������R1�����x�߾��[�������濧LJ�lؐ��@w[cUI^ڽ��~.�v�i(J
+� 98,F����Ǖ:Zu�]���V)�T��;š�/��,������/i9E�u���5��ut6�JGG[KS]m�:EY)�U+��yWpqrpr���_�chq���a�I��u-�}CDΟ�yl����ᾮg��YI1�/y��0�V��98=5%�k��0��s���$$,	
+����`ef V����磞
+gX�I�bf�����5^j�:��l502�%^���f��a������-��56�UBq��\%!��R1G��WoƧ�T7����gl�����M�%y��7ϝp�6ޤ*�Z���,# ��'�����҈#) .$-%�<�<\�ʕ��ȴpy��WPDLJNq�M�����2��ٳ�����3����᠝��=6�f;M�t�����r�֩o24���/$�AFAE�3`�c�$���t� 7�a]�� 2䂇˞[��H��q�����`�Y-)���v���&Rt����LHy����JANVF�z!�Hi�q|;���Bצgb��X)&-��^s����.�}�s=᎔x��
+��r?�z��������;���6�hijjm�b�k��q�K�cf?�jl��������L���o�‡@XW�<��~��[�mZ*�b"|����+Ť�Tյu��L��ܹk�9512غYGc�����0���7��~�'���Pk��a�X_ŤT6hm�71��{���17�3�������k���j/�s>^�G��m�X���nb�c���#��A7����j[:�G�q��}V8���>º��,?-�ƕ3���6�)�I���K�(��Uw��Ns�=�����`���=��L�7k���+���i�R����Lnj�3��2�r�
+���S�
v��u<��~����+���o܎����>�!>>�nLt���C�.��9u��a'{��\�y�������/Q��ֈ���uO+p�G	��ΟtڳK������:5-]��f6�흏?���u���i�B']��8��6߮�Ic���J>Nx���z�#�[S5��������������=v���O��5^w���{�����x�
+��JMNJ�u+�ZХ �=��=�|�._���S\���Є���(k4�_M�o�z��u���;띆[7�n�j��|���'N���ǪNC���	����:y��n���f͵r��<�ȭ�?5f������W��5^:[M�w�9�����ߊ�k�2s�>AK�*I�V{=)|�������^l�M�W/_�~'.)�1���z���	k��;�kJr��_>{��+ss�vNGݽ}/^��E�:EJN��������^s�����p��~�z��̪��?�r�TX��k����阇υ+�7"�&<L��y\TRVQU]��x�
+�g!�^�ګ��iEiqa~vF�Ä��訨�������
mݨs�v@X#a
|��YX�����9y��!>0_
+�s��C̒�	=JKNeD�e_/W�}f��+�q�.������&��P,�cd��Z�����l���'�}/�ވ�OL��-xk��ZZې����>R�r/X������������cXʙ�����ʺ�����po5�M@������C=m
���I�7�/�����9w�2�|�Aʣ��̒0���HM���p����zJR"<l˩aT��2pB@/Z������������v����<�^���KL��/*���oji����� �x='��k�����������iyi�'OJ�#R���3@�ܳ�e�9��p_GSUInZB̭���!a���d��TT��!U�@MM
�CY���r?:"����C��2+y�q��j���9xE$��iζ�n����ݎ}��������������p��BJ�^NZ�{
���ҾfX������g`��$̹��s����_0G�[u�9iI���ލ��1�絡���Pu������4�>-��	��/�us�1٤*+
+P/[�`�W�5�YI-#�
+�ղ*[L,m]Nx��G�{��WTVU��������7����0�n��;;�{�G�O���f�=��-a��ik�./�������Al����V��Ne��ƚ����{wB.x��١P��/]����RM��[���I)��Y�w9�|#�x�T�6�}�ã��7o��x���"{��_����b��o3�%g�5�l���`�XB��\QU1�����T��$�P�v�5Ֆf=��~���};7�ʬ\�BG�h�?¿1�^����M��{�ܼBn�&�����v��z��x�S�E��j/��~kwa=���N��-h��z|tl;�~<C0���%ђPz�bblt������4�yٷCw��0
%�T�5��Ԕs�Z>Qi%�-ۭ�y]��=��mj��G@ae!������^Xi����32k����]�'aQaowWX�a���������P��x>�^�<��ϑ��7�Hp0�����o�"�e�X-����!��W#b���ʺf�ȷ����Q�v���~�ןH���h��������^�:3��������/����#�kE�	��x�m��f5/+����׈��87�0��۱����RXTBzn1���ly~;�R���x��|��k��.����߀h�\?0���$b%r��U?�L�y锓�
�"�L4?zP���%���OTFE[�����S�rF™��|b��wMts�7���~��d)~��,���������]-�O2���<h��VB��~��4�ES�2q�S�dlm�z�rxLRfAym3<����0����{�ʜZ@���Z�P��G�v�T��
=wl�����
+f,��ؗ��z)3����ږ�X-_Z^IUc[��0���j��E�hE��Y?��#uSe~r�U/'=U)�T�@����7z	ZBQc���B-_����a�$�+k��^��~��:D=��P��q���DKA���zɂ־I@sI*iXt=s�FZ��;8��f}�]�7ԧ/hX�k�)J�	�v��['��FG��G��)�,��R�چV'��Ix��򍌽��Z�N�o^�u7W�>����XCN��a��Ծ���ZE�����/4*)�X���,���hBP���y{ݓ��@/G�MJ�y�iޱ���M�/c�W��6Ξ�a1ɹ%5���٫���P�����抜����l[/%@�o�p�����b�D�Ao4��r* �nj~Y]k�7���������m5�)w.��5ѐ�X�t�<����sf�1���/�"}1".�qEC�7�������������� /Ӎ��܌˖ o�h��L!�~�x*�(-3��n���RD|zAec{��7������ԣ�-9����ܢ"��B�T�<�ܟt��u��� i7<�f��T�1��o�{T���,�߬����7��[�'��;�[.԰"}����?3t�X0�����B
+jF	%m#�S��~B��8����-J�s��~#uYaNFjJ8�iч��|�#6f.����ؒe��b�����`����;F'^}�Z�E��A�=�Y_�}��n���U<���Ka�?�g��t3���n��E���l��4���<"�1Г8hD�B=9��X
+S2G3]	A.z����l��?��?�u��HSѱ�X)�a����x\z�S"�����[Hz���<+>��!��dE���YYY�?0����b�V
+	��p��P��|�&*���B
+��	K�n6�;�v7����(�y.�	!
��ʜ��}��5�V�^%����/���Ҧ�!�%Ĉ���R/�����P��4��T6���|hL��J�4a�w߳���7Nڙ�+�I��KHʼ?������`�M:�j�*����!��۬'�w��^�e��ș�����Ǝ~4���Y)�WO��޾Ek�Z���j���!6����|�v�m[6j�����Wp~�YOHHC���U�f��u�vbNY}{?�u��wW����k���
=��`��@OWw��6���y�#ı��v�v[N���\-�]g=����e�9$�n6=�q?����od�h��6ԝ
��	7/�w�genjjn�{��s�M!H:B�?��q��!G�}��
U%9��9�	M�(iY�wk��;~���GE5�z��_��g�S"\gu7W>N�
��s򈳃��l����BS�i!¯_��w��cj�m���������cԌ\�2�Y�xF�<~��=4���.��dr����8+1*슟������Y��WCޛ���ݍ�s�z2��������ɶM$�����'��cl��ʛvt�x�ANyC�����\�d#�a���� �A��kAW�\	��?0��C!r2�S����Ы�N�<
+`���z"�5۬ѐ��f�^)�a����kqŵm}���q�Ӆ�
��֕d&߿��M�zg��TS��Ue%E�s�ғ�Gߺt����#����z�Cg=}���vX���붘;z]�L~\��3�1�t������uQ^fzjJJjzfN�{s�5� v�hmij�#��IN��|��Ԭ't��2�E�d(�4L+D�L��^�H�.k���4z��b2��}����‚B�U�
����@G���t�O-�����p��� �'-t��r�o1槟�U�������wPLZQM+��8�w��~����pw{KC]MuuMm}cK+|����?3t����4��T�B��'W¬'qa^8=�r�Ca����o$��۞𿙘[��=4�z�\�d&�6����lokmmkG�0��C!�@l�O-��ެ'ع��Ca�40o�l`�ֳt�	�}T\���nܻ��E�	�����Cã��g���nG�7���q��{��ߙ����h�Eɕ�ӆ��i����4�J�J۞���W	�1ܻ?(5|��1X��Ɖ�?ޟ��~G����1��ɬ'oW�=��i�CR/�y���FN�)�X�$�n�p��!�10�9���Ex���W�������������@z-��5Hg=]�:z��d����/;#�l:8���/^��),�a�����#x:6��W����bd=&���.b��2�7����YO�.������¾�t���,98��Q�0�)�9zƤ?�C��zK���'a=������.�{
+6鬧���k���[��n�}+Y�S��b��c���w�
Oȩh�C��"F&a=�̷����zg�SEQvJ�� _w�����}+h(g5j��`>�����rdjaM[�s<�?����/�W�?멦�qFbt�����,��ʈ��	nf5j޴,��k�X��	��*k�����P&�WL������PU��:��	G��r��9�hg54�мe���^���_��o�K�����`f=
�u�ԕá0�<�ݹEMAL��׀�̛k��=�F��|lp���M$�a�Þ�ƪ�����K��ښm�P䂨�%jxl�`	
3��
+4�k��˛`>���w�5�δ�
+s��׃��Jj��}��ez!%����=ǁy?�j��؟�!�E`
-�uCeaF��'�-
��jN&��U;Zt���SXNs���Q$�=׿��Ko	�#�.�MUO���B�N:Zj)�p0�P|U;Z�v�V)n2u���,k���{.��t(LWKMinr̵�V��b���K~E�x$!�˴�Z=���'�>��7�L����55��`wk]Y^Jl@m�������~��tF2
+ZV~��`�������}`7�9!���^m����w�.���ت&'��u��ф��]HV��Y��;�&^����i�����*��^�;q�l���<��㑄l�rNy����b3J�2��̝�>>Q�Ą�?n�s�ZIA�T��/
+jBB&�����'4>���9 ×��[�P��</9*��ѽ&ڊbp�^���
R�_�/�f�Y����H��@Bw���
+upu}Ynҝ��]�
��EW��R.�2��J��m�9�w#�qu��͹HP�Օd%ܼ��`��*
��|��Hz
��z�=���k�s|��[P����<Ɉ���f�c��8?ѿ��4-�������"S��O��ZD�C�-U�1!g��6ԀChA��A
H�����MPFl��D��4t�'d� ,-{16��T��t��)G��B�˖|IPOm�5��y��M��$�z��Pԯ'G���K��G\p;�CGI����v��ܠFHS�s�i�8x*�nfYS���"aC&Fz᐀ؐ3�m�dE��hR�M��x�e�7���i2�^\��+�޾�ao��"�DZ}�JM$�����t$�;��N���7x�k��������k�!���Ԑ�"���.��!�N�L�.����U�D]�r4۬"Wꅟ��&�^	I{C�-8i�ѿ�˳��G��ߟ���c�����h_[MQj4�,{�/��H��4˿����s���c�AF�������d.�䦶����+�w������O���C^˲⯝=d��N�������gdd/,��Z�?���XC���y��sor�Si}�#lrӪL�}�B��e��Ё#p�����[o��B���7~?M�z��/�h�dɷ�������3�i5'����~x����QL�)���
++�>w�&֑��������##3M�w��kg\,6+��������&s�3����ǡd'�D���D8xo��$�Pގ��f������
5��"/����"��?�4<$C�N<��<·Y�'h߯'�������-y�埝�!��o�D�o됡�!]`�.ϊ�v���� %C�"]N����x;��}��45�+7���C� %[�o.?�첰fd2j���n%O�k��&!��@[���ߣ�[׉�2^��NZ��CHV�h�|�n��my	�y)Y{ma�-��{�׃��3H��6o����4�"��?�֏�&3f!�=I��>�
���6��H�����y�,�g�Sڸ���;)�5xL����{���8-��I[cd��ɤB��[�d)3���z=�Ӂ�Y;N�܄�B��,8������ ;�_?�4������E�蘹%�uL�;�Y�Љ��#7a��K�\�����?��	h�܋)���pI(j�[9��t+1���oJn�F��n��'�F�{>pnZFvI%�m��|��MGg���/�K_Өs�[�������_TFEK����٠ȇ�卝ؘ����p���4��S�0��WX������l��Yŵ��#�2Mf���{ʹ�8�D��5�v�q:y>�vBfQUs��>=���E�i4ȹ�Y���U7Z8���@7u��N���M���\�?|�㣤	�)�s�K*�oٱ���안���⪦�~l�<�䤩s�~Gm�s�9
EA/�K4#;HŴ��l��r�~Z~iMKg�����~�������5�������琻,&��e���4-'�j9�M����g.��$eUַv�N��G�����������P'�M��܌��~��z)<SP۲s���o��{iy��M��C�'_��Oh� �Ng���PXs�J�����63�#�/�E'eV�?�����8h�!���y�������Y�Q��B�JZ]�\���[�4pn4
+Y�aBVS����=��Y?RJHƖұpK*kZ9�8|'�QAE!��s��Mp�~���\����[��ԛ��[XJE�����/4*)�IU#п���&3!'dp�.˼|���GH�>D�G/��@�8{���$疠{���&S��*�N��M9a��T3%dȐ����h���$��.����յv��M�B_��{��±G���̅�hi�"J&.AIe�ň���
m�Cc��
+M�z����;+.���b��\�gH������J�F6t|zAec{�0tn<��Vh�����Zh�v;�W-�>UX�����%�������!�G�O�9�8z*�4y
+
i��ee��c�
6H���4�H�����o������g�
+����M�"�tG]�ؠ�NHC2��a�4����Vw��tz`t?#kC��i^�M��ƚ�&��7�H�l�[XFu���~aw�
+Г8h�ڎ�!>.�z�$�	�C?��K�8%U6��u=����_��WH��W�`��K�p��vmQn��a�^�5���9��_�؁T����bd,B�����'� ����J	��$�7o�uʅ���+Vʩ�[���r')����tMޚj�T�����	���kV��!ü{�n�u[���/�H�*�k��A���b�
�{�Fy;[�J	�/_��C捤c �fޭ�}��oXܣ'5����/�5����\��]_�u���}�Z
+�+�h>8���1r�Ȫ���	�N-x��=4��749N2��-����ۗ=�6��`��hHӳ�K���{\���ӀE�x9�L��ޝr��nu9�xx�!l�By�x�1߰�̒:��M��A������3�j�3�#��qYT�aJ�c�& �n���W`TJAճ��	�zM��
���<�u��ќ0o���e>�
+Z&��.D$�7v
��ī��YГ��
�y#��h��Z~h/�4���4ig�'�m��p��A���5��l�|�r�ؾ�:JU��-c���4����A.�&<��9�S��nzZ�v7����.�uRB3��F�1
+^1���N�aH׵<�_�$g@O �����ۛ�m��f�i��OH�W�+RF�`�1��=xsr�[l�ˉ�~t|x�������*^V:̻g0ojFn�5:;z^�J-�!��< _!�=>�߁�����lm��F��}�y7��iY�$��Y:{�^vyޯ���s��/Ƈ��+ �S�6F�J��?��X�n*z�Ud�����[��Uz�)\�sn���
��5T<N��x�e����� '
�H�|ɼ��e*0�Qq}��l�\�%z����,?�nx���")��DK�h�/~o.��q*k�X:v/�c#x*2Քs��w�Ԕ�&dž�{:���R���tT���4�pG�& ��`�q��ppN?���^ Cw���;���d'E���;Ya��.��LoW"�4���ir��J�Ǐwi'Sa��W�{�*3��?�`e�hR�3�^��%�f��#:M�{7o���.z��YmY~Z�ͫg\Zh)I
+A�K̛46k�j��`���S	'$�ss�Q�6=Kt	X��/�>jk�MCQB��ᴛ�zÄLb�V��~7�	M���������@x���\]��}����ޝ[��Ћ?�8��_j��^tfe;�L���r߱����_w��&���V�s����AOM�shO^�$��А��m�+�I�Dr1#�u2�|�4TK�Є�d�QX&<�F�C��Vo�q����)ѡ�'�-
�U�W�1�P.��q�(i*zt�ݩ�،�&|^<y��]ok͓��pG+C-��Z�����A��q��k���FV�79
+�C5>��\���}xr0���~�߃&���QІ�I�ʛ{�&?�&;����;ʲ"�O4ݢ*����^8��^���chC�+����)ll�@G}IFܵ���k+��ה?�����v��I�����[ҡg��˭�u�����N��c���/r�4$m��AF����߮��:�C	k.7��P�v��n5Y���g ���?��=ǚ+rD\p�g�)������I���E�>����w.{ܵQi5-��O'����"���u�ϡ�v�x�4~��È`߰sM�
�j�|5���E��7l]�x��|��8+-�'�7~?�	;AN�T���w|��:̾gx��=�x�ɏ#BP���F]=�`�	�d3u�|5^G��jؐ*����Gm��#�`�Ԛ�=�xm�",��F+��ew�����I���{�@"9'ˌ=�b�e��R/�`{��H��p�8"�t��u�������6���������#v��G��ߥ�H��O\��w-�ӒFz�+r���X�0������zK
6Z�o��3T��y��5�����u����yp'2[�c�JIj��ɏ$t&-�����kg\,�9��(>;��E?������U��~�l��J���<��=��֏��GF�"�5�-J�s��~#u���ݽg��1��1H�B��ᮆ�G1`�ޡ%/vԟ����7�ANyS��8�7�,���.�Yq!�p*��'�d��>�ZX��wd�����-�}Ϟ�&\?{��d+����'�!��E�5����~/����7�ߛ�,�cmՏ#|�Zo]'���i�7i�����</�Nʫh�}��R��&3���d���ɷ����_��O$M���-"�n`s�LpL��a|9
+�~=1�Y�$$��7H���m�ߓ&���������wqmk/>D��&�C]��iQ�O�#۬O%M���)$��g��y�փ���v|^9
+I�'�6+=���
YAv:��~
+i�x��6��#����S���R�������?�����\K~q%������Iy\و
0�Q������ۮ�y����f��Z����;C�q�䣯�i,)��-"�A�����:a�8>���U�4a���t������-="�V5�3��M_�{O���e�����hZ;��q����щ���C�5�k��S������C@\I�����%uG��8�krд32WxFƏ^P2il��a��T�1���u)">�����ox��k<'M�{'��;j�9��$����ET�L\B�*50��
m�Cc5�X����������,RԿ�_LE��-,�����_^��3�|�>����O��6WdLJ�8�mR����i���/��@���q���M�-�}�50�������Z�
������a�	�r�E�Rs2-�1�,j#k'�עfW7w����A�:2�zG^B7Y�spB�zނ%(jemC+���!��YO�`
+>�]X��/�o�L��Ä���z��d}i,�����$��,����N�(Bv[���s(��ޖʜ�agYnQ�����=�\����펟�z�>D
OFт���u��B�M���2��k����K�HQ/FP��Q�jj{��ʭ��O�[���^��s*���@{ma��Lk�
+q�S-��D�`_�) ��������ۉ٥um}#��[<s*�y���pߣ�d��̄l
+5���h9�W�o�3=p�\Ht��ʩ*�����"v:i(͸��d���e}5
D�������?�~fI,
��{��4|���0��M����M��4�z>D�	�;��9�����=�"��s���#6��K	 oe}�2==�i���e�"�˷��+[��m�T�֡�u�� ֐���I~5���W޸��	�fE3�-a.E�94����{��e�9��yP�2%-Ϫ5؋y8�qbV{]��`og�-k��~!h��c�B
+��������ļJ��
+'=W��j��n�����~�������s
�]HA�̳ZQg�����W=���s�96�$޵O�aH[ꭓ�g���f�'=o!%+���fsG���"�z|?='BGվ�]Cs���&Z
+��Lp<�ׄ4֒n�r!�
�6G΅�g�6���x��9:f���H�������� �ў�_vlB$����f˴��'/�J�ڂ/�s%�k�ǽ�$��u����5aH�|R�Џ�F���b�O�c׵��}��D�4\�_�
v5U�%ݾ��`�y�?�_k��/e���0��z�Mϥ���r|�xwZL0:O�Ӈ(},��.e �V�d��c�x>67���)�#��������lw�(���}uH̛M@j�������� �D��s��o�q�}��e9n]�t0�S���	x
_���%"������;)�5�knD������Ɗ����އl4�E��҅�4,�!��(c�S�5w���Y�Ѕ���M��l�|�r�ؾ�:J� ���:G���������w�x��������)覧iw�����]'%��HM��=5�THV���$0o�
+������B�n���������zdE����MǦ�+�\����+(6���k���݅�`���
+�Gx8Z�˯�e�ü��Bzj`���˙kpn��_��{O9[j��c_��y���A_�g}�7"1�������w�[������кݻq锋������5�¯���� !�s���Â��|^����A��#�h/���:ʒ��L4�"=K������x'���c_����b�����p_{ceAz|
+ZER����j��_�ڻI�R˨���rTZ12�_���0����Po[C��8�F��6٨"%��LG�x��/�S���y�+��Q��2�]�4�Dv�֕��
 �t1�ƾz�&!-I{H㳊���q��Ζ�����0Og`��4���cz4Гχzۛ��d'E���;Y@/Y0ov@�����-�r#=��Z_Q��p'��	+Cme"�YH�	���{.��`�`���\S����׃ZJ�Bp��E��~znD���o�Ѐn�,�zs��飶f�4%�f4~F6"r�
Rn�e�����y��ݹEMA�x6A����]oI8���zV_Y��06��Y7k�M�r��9�h�f4~���5�����@w[cuI�P�#�
��ʈ�3�P�����4~?���aF�g�yd������ 3	�	�=;��%Ex�h(͟eФ5'�v�kN�����ۯ^L@�-u�OrR�o�\�:jgi�QU^L�����b�AOՑ�����;�nFiC�|U���[�p~���χQ�Ź�	Qa�θ��ު�,-�������P`��խ}�x����4�ж�G���ۛ�G�1���m-�6�W���M�d�_f��z�m6G·��.k�šx���F�Vg`��G{�ښjα7�/x��١��,���87�"$�u��TS��]��W"S
+�[{	=q�_��o�a~�`���񬱦�In:������@GUA\������87J��^����c���e�6t ��q�_("dH��y|tx��ss}UiaN��>'\�[�)I��s�,�����o�`ߴ�|�*�����<���=����b��?�I"	e�2�6�h��noi��(��L��8�Z�l�T�Z����Ĺ1��M�e�\"rꆻ��
������wx�J{;]���H$���(�W/'1���k��pNO��s���i7[��zZ��%Dx9��m@�i�q�M;�N�G$d!�C�j��a��&&ِ��P���G��i�C�eEy��cn�^>��~��[�U$W�s�2�	�o���^��),�a���ו;I��
��hP��@��_߁����I'�.�|bR���lkA1g�>�{�z����{͍��T�H�
+p�1�-�
+�o��hC2��dJ>2�v��o���xP�
�������{�>��O$zȷd=u���BytR��\_SY�`����t�������p��:�y;=5���r�&�F�.g�Pٴ����Zl����������|�_�z���׿���[��ʎ��=S�R!x4������ζgM
�U���)s�e_�G�Y��ߤ�"/�r�����!�v$�a��Y�����p~-����c�0��a2:>4>1���
Y�'ԟ��s��}��/'�F��{�:Z[�j����e�''ܽ0�y�u��65ڢ�^IV\���
p7j��8��HCI*:Qy�m�p~m:ojP�W=$O=LF��G��O�|�MXOB��.�h�#��ͫ�1�P��(}R�(?���u=�����1���L�mT_� �Z���
�6��+����Ɔ��f�[�F����# �īo�B���9���4��������ht���$��+B�pB!���_��@h�Ū���g�p]~����0!.�vD�Հs�Ou:��|��������� '#�,����	��ޡ�PS-Ck'π�wS���u��Q��X�/��H
+���{OGksC]mmm}cK[W���x�f�5�3�"�������'^�����C{K���w�6T��f�&ݏ��y=�j�����aG[�Yk����*a>nv���(��x�Nƍ�&5e��P�6�v���I�)�n��z>��ܗr�*�@�z:Z꫁��U�4>���IY-�ocW�`�����?04��*�`�4����l�)/����aA���y{�q>����d���zey��"�+8X��L�x������j
+Q;���F%fU6���&��p -���:,�k�ZR�������(+���������'b<�����������6�w�3�y�hGSUqn���!�/��r?~��n���C��������'g*
+���y����SCMi�4e-C+��n�O�/�in�AB�5�~�Ӿ(����(��C}]����g&�,22*&>15�q)d݇����??�3>��+X�3�򣆺�������.$ǜ�Q`�潰oEQfRLD���l�X�m7ܪ���VQNr5������3f�ߝ��Mj*$���oaw��r����ʺ4�^����쏡 ��.s �a��5V�>�xw'<$���+A�nD�K΄�[Q�/?����������
+�'���OJ+k�;z��i�{����PwKuQfo7�=��L��l�R[�$/-�J���y�"�D��ΜI���3��?|�?4�~z^�S�^G�`B����{
+��0��+�hk�)+�|w��e?�S�^g/\
�YW�Hn�7���g��e0Z���񬡪��hSSRe?.�;G�(�Y%����Ѿ�ڒ���Οt���i�EGc��"�,"����ʴ|�g��L<dPچ�;v;�<w5"6)��ށa��E`#����{��N�"��c�爋6�l%%�εKg=��8�;�x���������y������ߧ��8駒>Xh�V}UiAVjb|lTT�݄�좧�w�������+r�"�κ�[�ت��v��������
+N6��$��*�IPc3�8�Wɩn4��;�u!�V�Ch��-���C�Ar�����xȈ	��wv�H��e��ޏ�|����^Kӝ;v�Y�s8�q��|HGO�00��9��ハ�_S�_ vX����qf�ׂ�]���YT��586�Sߐ� �[��bCϻ�0ܸ^QF\T����R��YF5
�\�3	jlP;�Jieͭ��8��\�X�T�5�v� �'^@����)#A����{������e`��~�瑃6��6�h��n52�}�`�zx�Ӻ涮��a�3���)�����ч��d!w�C=`y��(΃A�U���:��{�Z䃬��Y����PgcY��������2���c3#��RR�l��LD=%�r��k6l2��=t��k��>�{R^]����@�����ׯ�cF���^�ۋ��u� rg-g�܏
+��{���]����)�QX�����`�
��ڝ����`���
?cl���S���y����d�@����(7=��k��{�-���aW�!�I�e
����J�)Q��]�
4%�y9X�i�a,/^���0���XF��%�JFESo���a���Bo�ML)M������70p��OLLN�sFL���ɉ	x&���u��;;�}NO��s����q�=�Ք��CTTTLRNYm�>���5�!�9��O�����>&1�x�@���y�����]h��Ԅ��!�zu�ocia���!�ИԂ����Yl_�N��!���7�Q��fe��f"e4#�P�K��2��Kȫjo�iX��|#���G9��U�
ͭ��=}��C�##��
+�02�.��z�;�[��;��G�B�c�{�uՔd�D�y��W�
+���(m@Y���r3&!%3�IYU]cK{'|�FF����<� <Y�?j+Ks=����9y��n3��zیL�8{����,��őoIC:��)G�-뤅��amtl�2�a�BP#y�r.~Q�5�u�wZ�:�
�C�b�?L��/*����ol~����������ۇ�����������������(?;=�~�m��b��������0/3#3��j�5|�N���߉KL��/*{Z(`���?�f�GG��z����	���f�$�ܺv�������Zj��jZz���x]��p���gg�a/����=F�M3�"��D�d�
+�)8��t�l+WI+n�ٶ������ـ��[��)���
+���WV���7465�����P_WSUY^�� /�QJ"���x+���P��94�˨i�Y8�����y�^�����[X��������� �恹GWG[kx���w�	w�\
+8�q�q���m:j*
+2��rJj�w�;v.�.�32k�xѹ������0��tU�6�K`g�dI���.���gf�Z-��^{���^��n^���F܉��0-#+7������������OyYiIqQA~nVF���1w�;;��B9q>.l[���j-�Zg�v�}�G�}.\	�y7!9=+�������GKk[;���� �;z��{����h��VEiqA^V�Ä�;�Hϡ�{̌���펰����†-f�/�Ḽ������Q�~96��P�u/���=��r"\�XH2YRF�:8�%�™9 �5���
wY�w8����{104�VdL��ć)i��Y��9����23��R&ޏ���x��s�omj���Z�ΰ@n	X��/X�h	%�y�T����p>���w98�6x���3s���Tע�8H3j���=����
��8��|O�<��
+ض�:�U`�����#(��n`}�'(&�����ZԄi
+�=-O'߹�io��,��JG��IƔ!�z�"��kAQIy5=�]V�:=q����������#�c�����Cw76:��͈������}N�8���o��Ұ��Y�~���y�.�\J��\%��Vc��v�=v��ܽ�C��
��d�9y��B4���y9Y�)܋�����;�ژ��lP����`eb``b��P�پ��/��l���ͶB�A��];wd����0����m���`X��z�b�5�
+���2���7��0������IO��/\��)$8(�ʥ���z{�t=�|p�
zg��Ph���������?cB(�!�J�6��}�����+�a��b��=HJNI{�0�Gi��I���Fݹ�,oO���6f&�6i�[#
|x�O�$���Ҫz��`RV��5��B���;���7N��ܨ$�˂L��1@CԘ�#��`�,*!��VM[w��s�=�]�s;��y�봷����i�S�'ݎqq<h���|��6]m���34QvfZg4Y�ɇ,gb��^-%��Ak����5��#n������v�ƭ;Q�@�����u�֍�k!�W.^8����z��n/��m�4U����ˉ^����r=����ў�gCcӋ����jBE��Pw���)Q��.V�6��A8_?5�{
+�p5XK���D�e�Uյ7��0��ڽw�;{G'D��v���mea���@o�����r<Uh1���'�#+'��J1i��������k��r���3���/^F8Hb�/���?�}����ag{x���+*x`���@>@g��*g���3K��za��&��yV]����}&�kV��X!
5�͛��[p�jIy���յ6��m302پc�.SL�v��nbd�MOw�����J�2��Wbwv���B���i��p�-�RLJNq����V���,���tp>|�8�@��q��ag��v[��4O��\-�=Xh�7��_ᮑ�V9o�t:u�vbNY=���b�o���{[kK��G�ۛn^+)��|�|o1�[�6���ε�OPd���������44��ut6"������P۠�Vi����8��]�Ŏ��Q,!�AN��!��@-��c��y�WIH�+�۠��y+��]��DB�c�kKs��۶l�����,i���_�I�`�Ӌ��/�r^��i���OP�ü����0�|}����4'��/g+}598jt��i��B1�S3s`�@0��sr��
+�\%&!%-+'/�������������ت�‚��ܜ�,L�Ύbz��>�g$����D(	i�5���lڼU3� �P�0�ߺEWGKc�����,�d������l������T�7���\HLJ~D�E�.�%6_���rF��c�����%��B����b
+ʥԴt��Y�9�V���		����$"",$$��dz��������;��
+-H>��lj�,�6������?��	x�<T�������x�޽��N"�*g��Ҫ�M����ŦBԽ�W>��[B�����C=�ue������߱IER�c�Ι~�{!B{�������������Ʌ�����������!�7����}�C~���0��}@��yB�c��$�@�P�_
�C���vL�$�Z�ʲb�܆���'/���ᄎ�	��+�_N�t?�-�Cλ0ݬ*-��DC9�Q�L6��
+J*�������~9�?��t��4�1�g��(�Ƒ�����	���|��DA�C������x�����;�%���c�n��u)=+�*u}Kw�:���E|u����[����aX�]��0:��������+X����&����@↼�PPPRRA-B~�����W�x�g��݃hK��D�&��DA��3p�l� ��;��f	�j����/\�yH����W��v�3|�ht����铬�Ȑ�nͷ�!fp����S��H�
y�_���D�?-X02� ޝ�3~��c�?���5H��(��)�[HA��! �P;���J�$���N��
+^�GZH[�֕<�;�+��b6oV�f̹�Q܀$�h�<��? ���t��>N�?H
��<P�����[�)i�8%�4
,��H^]@Y�6c�"V��հ���m�U%��q7��;`�M}��l
1#�D�
y�eN���C��%��;����4!����퓅.��I����椯.t�����U�M/x������i��ud�������#l��c/���)��=����#��A� j�{�͓�N-FP��Q'����W���YGVΎU8�S���!5̈́��OrR�o��;�ٱy��j~�HP?}D��2R���'}*�ș��Յ+1��%O�r�AX�+_�[�
++֐>DX!yq^����K>��VƛT�V�@�s��������<>���i
+��Wn�M��/��E���
+g�`m��u)JA���6"-?�bo�z�o���"����=[���Յ��[qIX9{kGwo���o�����8�����t�G�2�+�D"jH�Me�f�������4m)�R+��4u���lj���\�k���D�|����El��}��3���~�^]ŃW�wEv�>/H�z�����T��.��
+;����`��u���.��Ӆ�*Ysg߀rB3=���?!^��]��������+��L��U�	�RNq�!�����_�ߺ�� =�XR%kj�V�Nj�g��\�y�5���i�v�hbdH�N~�%�F
6��:l�.�#8���Œ������'�#�S���g���uaa������jL9���lC'?�c�`�����ċ�0#2t��8{���f�������rtlR5�Vk0漢y6������AV]�N~����iWS���6v��=]��=�P$�R#�o�������`pp��]{�wț��UK�KH�L~j�]�?�6Mw��ǁ���q$'>)53W(*���^w���U��j�w�h�+om��U[Sy���0'#%L~�&N�Z�{�֥��r��̜�"q�%��k�D�
+���T$��NO�ǘa贫�Y�]aF�w�@�����1���3i��y¢��bQ����Yg�Or�,-$Ӯ��'|�mz�������� 8��v�^�w$hw������n��Ns.Œ��;]@8;��/(8$,��>΍��+/��aGE0B��|=� ��'?a�F�쎈p�����g��+3��C�4{��� 9|g+�D���NdW7����kz�5��Dw�4��H����"��+"������Z�J�b��JE����>G��mv� 9�A[M�[��"^��+B��XәD��V	{l���(JDM�q��"aDѐx�yW�4�g��0��c�(����0kJǗ6��h��'�m�
���Y�¶.�rW����x���
+endstream
+endobj
+
+1259 0 obj
+23038
+endobj
+
+944 0 obj
+<</Length 1260 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 490
+/Height 335
+/BitsPerComponent 8
+/ColorSpace [/ICCBased 506 0 R]
+/SMask 1258 0 R>>
+stream
+x��}KoW�u~ZO3��[2��-�ƒ����<��K$�ԃV;W���Y/Jn��@�2�����y)��C�]X$�T|�ڵ��k���&�l��&�l��&�l��vw�/�v8o��ݝe�M6�d�l�'�M�l�����/cu�s�d�M���6�u����pN����1G�?�
�{���#�2�M6�d��mHכ����y>�<^V�{��ok�������CVw��9��u�B��&�l7e0�+�\툚�����?F?�G�?���z	�>g�<y1�������������<�y(���_|�sar�d���oinjҵ�jOԖ������������Oͣ�f�W��|4{}�tscssGsw� ��1CJg>���3��Ʌ�e�M�;����I���klbl��M=lX��j��/�|��Q#K*~��L/w�vr�J�˝'���:h�Q3��F���
��̍�]���̓��2h�<����g�)��@�Ǯ27;I5�>�&�4.
+�l��v;���v��+�
=~�36��H׿3W����D�g�~
O�Uzt��&9��m�r1:��f��n��UZ�kxe�2707376w1w4w7b�<�yX��@�?������2�✘��$�� G�ո���&�-��b;���2{����_cim�t�ZW��%�hV6��V��W��X��4yv�MYՏ�J�A:m�
+1m�s����������#޽1e�<,Q��G���_�0�av&`�� ���8W�$�XEE6�d�m{7��a����]�m*��{�DL��a὇�m�bå�N65�!��ӣ>�M6푊�dZ�E;.����ϗYY��I����̅�*ss3�qQ�;���Q���5n���G�ߙj����X�/̎��3;I����?~���q@�U\6�d��-�mT��b�Wii�Vm���Qc��aC���0�H/�X~���$��i��҆�۬B.�q�fEg����Lj��*�776w1w4w�)��Ú�a��������
� f����N�]5;l
+r���O\5N���"��&�l[���64f�VTlO?�y���O���0�K*�w�	��z���A�T\���BM
��@�e3.�q�;�r���&e�f�{��Q��m
+���m�ws!\U6D��.�	<&>T���a{�s�OͿ6;`v�\ev���=��fWw
]������-T�?5��)�GsZ��P��*..�l���m��ω�Aٞ��3���Z�:X��&=<I�u@�G���ͪ����Y����)�kè�n����j�6�̮zU�6$lX�ܥI��e��P7<���qP(���}�7NA	���hT���/�}�O�p�a7���a���6jZ���h��q����j�\�{U|��e�M6�n�vQ���(�$�֠3��
+��3\y\gK��
?�vp3,�
��*��@��6Q��x8'�F�~n�P7�/�����^
�*����Ƞ�����ÿ#AwvF/͎%�c�*�~��p�ѧ���Xw+S��I��ᶽ��1�d���o�0ҷc�6$f�Z8�ۻ�6y�@CHm!�A��{C�	�&r�����g��M1��"Z5~*�M:b{ ��r"���u��S*��@L�wե$���Q�3;�@;��"f'ͮ�s�q��D�h����x� ���BNu��OF�5M�p�d��z6��v�$�.	������񶡲�j�B��`�H�zSl'�:)V#(}M\C�K|��).���-R7.D�\?�
H��-	J��7H�\]s���̉�������,�p�n�\��������]B	=�3T݁Ɵ�X�7J����5���ٮ^��r0��̀��A��RDH�M6ٮi����-�K"o������S��t�l5)�{v���\"MP��J�����Y�PZ^j$�e�Ea���I�Kf99͝<�E�4���ҥ���Q��5����yGb)9���(�C/"� �yD�2�5q�W0�Oz�9��C��-�"\6�d��-.�ϱGy�1�K���c�m蝞֪8��
��[Aw���L���67@�(Y��ގN��[Zd�߱Zμfb��]C�<�����K����-���B�<,��5�1��������*!���b^�o�[�Ka1�1�tn�G�[6�d��[Tr�Tb%n�|��o0o��'���OG��d�F KАI��X�n��nH�&=����@�mi�-��T���,����$���)䨜4�ƥ�ձ�ݣak,��:�Hi1������\k�&F�>]$E�-����Ԝz�s83����==G!E�p�d��6VKl�=�J����a�fm���v�a���^-[RE��M�$D�����:U�te3��EKk�@��A����y<��_X�&ܙԕ�%�0���/�#C;MQ��*=�D���g��y����)�#��p����&�VnQP�_�j|w��G��ƒA�}������ ���լҮ�c�&A^�z�r;�)Hi�eH۹�Q�	��e��͐Q��E��%(��D)�%�%pׂ�k��疽[�)��&��YB�9��eoN:FS>Ju�4H�NH����M��]��H�{5^������`���Ò�T��Z���O'�b���iC��b�ʗ��Ou�.�"��K�]x
��i�:$RbW����û�k[�M�J��%:k@O�O]A�D���IG��$�r5.��V̋FE�S����.�l7w�H׎e�QX�8�+� ɑ\�7�~dov����H�{���KmXp�G�*�`�.+�E�r���O;f���!�r�@����ܗʛ��ܓ���ct�*J�� �[�=�w��:�20�{������P���Uj�M
+�4�"�(*©�z�?LE�N����Ll�e�����^�j�o
+jĔ�/����P�
��6�9��/6��NJ����<�t�38�GH�G���ʔ�`�
}0}bK����ZġuҴ�[�p��3;;I��j�Do���QU@��c�<&�"���-cwQ�M���
+�q?����i5�䗼'����+����kñ��%*�����Z
+�/qO��U���������C��d���o���]�̾�j�����lP�͔�V�炠�7cC��yC��1��X��0�+���
{�����	:����Z6M�%49+l��?[����'�&n�F�� ������yoP-+��z��N4*:DM��ڧ�~\W_m���
7��/�����ʡ��y� 0�+��z^�SE�����m�č��b���xj�v�����A�W���ÿ0���.j|���qy��7����A�#���8'�����T-4�<7�q�Q�
U���y��t��wh�yUmW�RwJȓ]�;��7,Mv��߇���.�����>(=w��h���k����>NQ�d�7T����S�g�F*�΋7�R�u*��s��b�o���<�Yh\�;�m��"�a�%a��!�8���������AP��#����o���-�n_�s���Z��z�M~0�$G
+��1���m��"�=p�ܴ@����16�d�����x����:���f��XFtg���2��sW�7�ψW�uZF���֔��y�م4N�_��g܂�-�Ec[kx�_�x>x�����g�K�<��&TQ`���s��ćckw���n��r���������\˧ck)����&4.�-�.!� `�bl���9е�j�y,
6ׇ' G��)� ɥ<�A��)��_��"Lr�����Jh��5�~�P���C&��h @�'P�c.P���P0A��;�_h��*[�̗ӊd��OM��N�{�������&J��|���͊�gi�2�?�P!x���=�w�\�[���z�b�im�/RQ���~*��ƾ�v���FI���
�<>qc�@gd���1��l>��ɵ;v�/.�ݖ-��pq�ͺgkl�ؐ�������qY��.�Ԕa�8H'tZ�O)�񟀳��a���.��<�y4�S*O1��8R,�?ʗ��瘱�}�]�$xq�]	.P�<{hXZS&��?y�0l�3�L�����yɈ��|
+�~>�F�x�v��'���J��jx�[�٤@���
+��f�����}C����b@�G�9��0�o�ܜ��^�fp�fO��O������8��W�h�0f�iA�ɶ�ۦb�|?��)��v�Ʈ���CdN�ښ���W�e865�Z��<��	u	�c�]P#����b�
\�����;��3`]���arM�1���䯐�)��`~�&��@٣����agm¢�hP��y��C����=��0�%L��h-��ǩa�J������'$M�vK≡�~�l�ר�wW����h���C��`1��W'p�=�a8��t������t�e��L��ܔ��8-��
iAґ.�VmC�d-��lQ��oU���!n��_��8ҋ���ֆo!5��n�`��Ǟap���F��@���8�a�+���@�!�D��q~Z�����BU5���銾��\~2]����*{��7|p�\�);\�Z�ִ���:o�nF�-�ȵ��;i<,�,]Z�ȳ��ȭ�8;bu�����3����Y�����;�*�k��2$�r����pf�x�f�Pȏx�'n
��-�	�ϹwS���
׃�<>�}��Ky��"�l7y�$�b��GFG[T�����g�kk|�)��B�yQgh
MY�`
+m����
+��W���FJ�D���4�`�W����i�ѕ�P~�:<�G@�KO�"�Ǘ�@�����PaCN}�k��1.�S.�m����5�m�{7���4px���S���Tli���ٜ�;�+����¤\=@�Y9�_:͍N�̑tw
+>* gM�d�����L�`}�
����'Ђ��;nJ���
*X����!�����N�s��K����m��m󳎲����p엩`5h�P�h\ԃ�w�ObI��!�¿��ݘ��R�.y��i�܎�!���x�C�BK�s�N�<$��$L�C�;���!sE�q8��@������2$j�"^���\���ni�W�-3�pD�oS�¥[��@r2�ޘw�k��2E8����3��20��ެ�
�����	�q��{��u���Ok>qC���	F0g��Q
+3��A+�}pp�/�txfJ��F��qܛ(�ݸ��fe;�j4iu��x�YU�O���ܴI���4��g��9FE�%2�C�ӚgIJ;��1��]�I�X���Q��dM3�ք�4�a%�mЋ�OX��TT��Zd� �u��t�yr�x�rg&���襠�y
+)������:�W m��3X�����)�\��z�������,"�>�ja'�ǔ\ep�3��u�v�0`�3h�H�X�O��R �sin
���s)'!eP��&۵o_�p��IL)�m��-��U(-�O~�댘K>�/�� C0"�f��10y��cl
�}����[�q�)�{$kӅ	=�/�[�1��6P4.���ѱ/���x!��h��y��}�Q�1���i����g'7���߭�ٹ-�}�M��u�4j���דo��^h�g�ɦx��fE#��n��`����i�V(��v�М>����^�w�-��OiN���
;�N�F�!U�2�k�}��o�6��9܊�"۵nk���L���7�����6EQ6�`�L�@4(�D��H����8;��p�{Ң��m�!���Jz��@`o�c�\�XE\��9�F�ک+u�#��M��5)��a��|TS�9Tn
o_���SX���/�zv� pS�:91�{Lτ38�1V�'��tc<cR�!�&�}���������H`��v���PҹiP���������ϴ���)T�X(��.�$�����k�&��o2vW���a��`��>�$d~5��TD	�~�j#��蛣v]r�lم����g���;�J�^.i�}`'�|���.�[���ߖ��ZreNk��;4�m&'��{}�|���=-��Ci�������[�7�FvRO�=
+��[X��t{��҂X!�6���=w}�����l6�
�y-U����ޝ�P�²{݆�n�"�:��X��lױ
3v�ltҷM����m���	��%~����A��`(�c[ҳdXX'���c ��Xz�
L�[�2�n|	{D����qW%�ŒF�,O�2Gf��m4��,�����D
��V��<ZP�LJ
o�aeE��(����˩"�-��}%Ц����ۺ�G���:��·�	A2'��]����3Y��2�3�T/`,������!s-��l�]��Rcl��c�>�4����1��Ϛ�Ɓ�Qjj���E�e�biT��;h�������l�V�У���E��M�QA݌HKI��
+)���V���3eN�-��>��Ȧ��0z������;��!Jw��Lڞ�sn_7���(=���	)�r��sE{x�H���&<Kݧ�>!�m���:�mL��I4��~t���r!C/���.](�}�m��v�_���F�!�L�����[{1�A�vC�k���\�g���u�.��9�<u�#Ww��k���‘7�K��F���ĕ�����t�r�ievO6�CuO�x��!~�0���K[�d����Kk/��y����Iҷ7���o�	��g2�&�Z�԰D�
�
����[��Z��}.b
+���y��2vI*��^B6��9�$i v��E��f�!���E���&~.�s��elP��
+}!�+��ql#J�����<���!�Gww4�%�^�~��(<U�=*k
���0-
�zq��۞݄����
�`�<8ຨ#�В��j�Jq5u`�~#��>p!p�>�vy�.I%Pi�$�Ž�
�C/.8�7\H�Rj���]��7ў�^� P�
+*{�lF�G��}	W����ew
+�^.�lCU��گ��@�R��]VK.�;��]Cv]ҿ�����7�&6��H�kk9���\�w���#�9M�Fd��u�[:�9�x���v�@¹g�Ö������o�����%D���oQ/������������\�,D�2ˁ���������=���]�ڨB��{�f���^���Je�߭y�;�W�����mppK@���� n��/�(��Qs��	/}m�6$mg�{1�jg�kUz�W���y{`����M���ߨ��y�~r�_x�n��Ւ8cl� c�u���M�:�:�)�@YI8���<�5M�r,�ih�-�ߑ � j��Lx��o=-}Sx��o���1��
+�����۟�ƽ��C���۪��H�
+d�+����?
�n��N���>�`2�Baǯ��35�A�r$����n�Z�f�ͷ	�!�E?��lDݬ��s/��Cc�0c���Oo�~zvH�vaa�,�E�_�ϸs�H���J��~�<�b��"����B��Q�L�Q�;o���:�/�b��݃��Rr�<:�iy|������-p��у���8�P�?
޻
������Eo�C+���c:��eG2'�W���}�!o�>b��UK~7�{;A��H/��!G�뢷y����m�(�a釿YeX��э\Wȝ]��(����W5�<�'
gx���ǚ"��k��x\$���k�Qs�WH��>xxI�{ކ�o��ʼn?ò9���H,�2
Sz��l�v��g�N4)_��~����\�Od���R7�[��'�'�-8p�g�/S0�N�VrOHU,��
+�m��}+#��l"j�L$3�9b7�����4�vc����<�g���)q�PZ=$�ب�Ї��2Ǯe�҃?�Ǝ
+��ߣ7�~�J���\ˎ��b��>�EZ�O�rp�=[�=�O�8�D�o�>p�@��?I���`�B�O�ɳU���3v{�|�DB�LI��3���������C!�{F����X�s�F�D�o7���0�{�y[J�~#�?��gV�ڠ_
� ��ߗ�;���
��u�����2��э
mi�r����|+�l��S�9��FCZ+y�����%�	aU�r�S}A3>RV�y�"<�%�r��$(_�Z(L���w�=Ǜ���q����ܚFZo�
k%�Ѕ������Pb�EJ�=}�WT�f-C�Kd��M�!��L���K)�e�k[Hݮ���(}�ἯTU�3>PKp�=�:�z�xk>����r�y{c�M%��L���6׾��	k��	�d��7��w'z�7)�����W[~����+�[W�v�nи59X��߲��>�E�
%A�0�.,3���)պ����S*!r�M���o֍%m���\�M���~u"
���#|�>�~���fe<�Ibx�N�t��� 3"y��7��n�R���g�H���'~���
�REgN�Ƙ!�ؔ�p�&+8G&�)ڦ��x�b�o�_��4��}�w���{�W��I���%��m��[��I��O0(�`e��Z�V-5�LVvv^�[�K�K��
��,�$M/�o'�P�`,�}�]f:}�y!rئ/����@��x�����7�4ǖ,����U�BB+6k�!����$O����*��M���˩;!�|\KZ:G�4N~lm�5��X�ߦ`v�^��O�|�����C)������g��Y��r����鹈'��s�Ӕ�a����u��,�B�4ۼ�J��tC��gu,K	�#] �k�f�B�uLq<���ƶ+5�R�q�r>O����f]}�p�B�7y����u?3Խ�	_�ƅ�뱎��d�t�x�YX��N����?��������.#'�������'�M�{Ι)�13lfu���m���2%
+&L�*o��j�c��0jʏO�Q�Vh�Ton=���X.u�������6_7�/X����G�l˾U!���������{�o���j����}��Pd���>��u�'���a�^��=�n7y>8�d� �]�%�����
+��K���4
+�Qj[b
+op>Y�g���Th{2B�&�!&��ω���l�Z���6�[������%t��.�8��H��o�sa�+�x�����`?C^�y�Ϩ90�zֺq=�[�0�J�����?/�ؕ�m��B�io8%+�L݌��k���'���~�
���BDML�T������˜;��p�s�Γެ�_�����-�1��SaAVw|���\����`����~���]���8�C"v�k►}V�f�j��ᇨ[x[p�P�DQ%��<"�?
+�hN�>S05��~�-�(���?�."j��o��y����������/�^�J̜G;<���F��+��y�P�16�X�)��CH�c2�L��cr��ϰ9����0o����OԿZ��n��̦h�Rq����Qjd��F�B݂�
+-	���'/br����'�����Ó���ßD�\H�xc.�F�&Z�p�gr�J�˝'�8h`lSw�o�����\
`.4W�����;�Us����̓
$Ğ�����?�̏���4�y��?�6���a��y��Q��jU�j�$�f��]�
+�x\n����c;nQ�w\�D���W�F�I.|��쩹�r\���D��!OH�j釿�f��̰��\C�����agnQ)����5�˖��@P���b2[m�tA��"ݚa*C�ɳ�<&���C'�s�s�����.���SMn���O���|m]�o��1�;hn��v�)��~����V� �Fm��H薒[p�a�i���>���u}��M�݃�{0]��|ih	��]�$�6�0�la����T�i��,�.�
+<�q��R��	8[CKך�A����.ȥՍ����j�SX���C�%H*WfO��VT���u����E���ѸU����tw{����8��*k�J*^UA�����|����'B�@@(7�I�m����H&(��w'A����恖g5ަ������
��<>�r;Sq��Y�j>M���N��:����O���?��6��M���)Ne�~4����O�-�0�fR��S�R��������Х6{}O���@Anf���q/�����l�9�f*��I�uK/���yS��LU����lx�f{�Gq�ob�trgo"�-����-��?~�-�37iR��W��8�
��	\���x�l5�����аt
+K�]�P��lG'�c
+r�P�C�/��^�bm�~Y���C�r���
+
1�B'����l�
+<ɋ������1y�Ϝ��i���L�9��6�g��'$w+8ek�%����Kjg
+���aI�n���XJf�'�Svo#�̽�j��:�i
�B�45���S(w��̱)�qje���fA��{\�j0:�)�~EC=f�<�?�8�;c@'|�5�je��
�kp���&C�R��m��đ��S�$��A�V�,�ơ��{c@Tq��+�ENy�������{��j��
ix�-���x9����]1���Ab��iP�����H<<��tp�)�͵+�b6��b�������t��Wd.�sƐM�R?��r2y�����~s�1��J��i�zcje��CH73h�1�T�O,�S5n��q��ͩ.bU\8�����`�j&�b����O����?x*��)mdh\A��*���7���'F(@�p.�B�`�8�71'0s�m�B<���
+���_ۋPg���Ľ�_P�)L���-����U,�Po�cDb�h:F�VD��_P�CW�=��7�����W��8\6ڢٜ�
+'��ftv�[X��=��Z����OuS���&��j�6��v4�1�.�0G
+�-�ԗ�4ʘPY5D�XwAJ��k�˘�����0�o5�Kb@]x�����*�)�^cr��e��j�B��OÔ�@�}6�͵��+pL��r>)W;�K�9�⡜�9�\�y���.V>��Js�K�ϒg]�Ó?f�*���'��~S�����a"�-lF�I5#k �f�s]�f���
݌��N���g�e�>&zx�e�}��.v�e|X�W<����ކ�#.�3v���J�~��ɂ�q��Idp8T����I4-4��5�%�RT�?h��BNu8������p�X��+i���t12�d�N4������M�_�d�B��{��BS ���]���<�-�{g�[���u2�z��?��g[�K�Ė�ޝ�� B��gq�-��U�#�sLѪ��`r"�j�5���
+�$����lW/AN9���.ܗr�Wx�P<4x�b%�c�hZ����|����I��Jws:�c)�-\����*4��J6F-
3��������A��L,��K��?F���q)����~��/,�ݑ(��iI��xU�˲(��`�j�"姬M)#4B3q8�ᦰ�5�?��»Z�����s��X	cVx4̴5������c\�[ x8�ϥ>@���֊
9�־^�} t3T3�BV��|��fJ�	�����*��e�Fυ�?pD��L�,���"�2%�G��͘w#sլC;��p���.��(�����;D�a�͓���`_s�Vf��s^���(>k��'��h����o�P�@p9����I;L3��\��NB��LI�,m1l�n���8�����*�����)��E;^q>��Ч%��u�ԓ��Fm���J�Lۑ�I�[
+1��\��;9o�����R`�pP���^/�'sh��[sL���F�~�����J���1���!�p���sT���]6B=���T�:;X~JCoO�Uظk����߆W0[ޟpL���
\����An����,���|��DoS{�-��;��]�����`�,½~7T��(ޮ�ƣ��w6hx��;}���ܿ����0�*J��mF�p
Ӣ�����r��ew�L$��uo���
�k�Os?p�ګ�>����5}��w��q�N�W��=[��6AH1�>ѿ�E8����R�q:��P�=���	bv�*���}�N�����Z��]��h-)�
+��=�뱃��T�n(���RD7��%�/��R3���"THZ��4�i@IQ)�yR��OA�0���e��F����U�=�-�!�`u'T^�4��'/F��:��P�f��˅�=�ډ�����5�h&�_GP��WG�>��[+��)Ln��`(nS	.��r16�s��h�R�;��i��O�󋛅�ʹҮ�����%`�G/���mzY{P�/2T}���T�۷���&sk����Ӫ%�ìk��|�w�M�{'��@�a|k���7�����9?�]�Ə�w�
+��M�
+v�g�r��kr�g=�������}��ƑH2�ӧuV�I��|�]
�ԎrO�o��2���ʝ'8)�^�k�U�)��t�����>�*f�&
+q���f+�Zz�7�ʰA�d��W��mT���]֔�.��<χ�l>5F�Gƒm�:(�5���khG�/IE��SQ�C�8��k4,0�)_˜�X�z~�ޞ�o���|�D3>��N�_}�]\+� IpQ���������$@�����ʼ�P<�����R�	���E�3��!'.�|	&�UMJ�UQl/��}2�`�WԢ�4���Kܝ���J
+o�����H-(���׮�C���>_Y�X=�0.��u�v2e7:�EsF��-R'3t����L����p�j�!�ɋ`�����O�N6��;�^i�>��f��	d`��	h����[ �\X�{�����ݯ��8$s?�7�V�dž�y�?m�\O;���'9X���]%h��mr��/�:��{)���[C���=�0��+�$�橜���튰U��v�ʵ@ ��T�Fq	эo�c_�D���ƕ�0��m}��ح�ω0�m;�k�R�nŒa��8�C�����5�V_�M�R�t�/�W
jo��I:�v�&Rx���<ĥb�MÐ�7�&ph	n�}J��3�U9�n���ȼ�0��_��%�c��/b��	�@6���)	/"4�=_���	��ŀ��R4=�Q�
+���	F;�( .b#f�"��5$�|��n�M&3��Ξ.C��Ӵt�K���������f_���y.eL�6�����Le.!F��L{��N](_l!�{S�Պ��:����9`��u�I��А/��x��9O�
+�;��
�,�c��,4dgB�؜bvU^����P0i������۷���o'��òl����Ra�(fU�^_��n|5~a��3 ��n��B�.n�ٓ��j����(�$�,I�tN��I�6B��ܶL/z����6���@.^�i���5������B�@ ���>��t��������H��#qh{6>�M��Q���ǯ������&<v���^�+����<����U�-�p����tD6��"��n���0B�MN&�^�&\�f�?ʗ���������x��h����荽��a� Z̄��.~�D |r��~����KM�~cv#ġ"p��Q�=�����/��ߟP�!�m�,Y���D�M����K�q�w�t�s���@���^�gN��&�T�8K�!WgU��j�Hw�i�<�v��h��V0�H���,QçN�l�����9����e�Q/��@ ���_l;J��׺�dgNhgy��FU}�1�X/������K�؛|��+\�D��j�lLT٦>F'~��y�M��F�F�Qnef��L"�k�wGY�r���\�V �;�𛭟8�,Y�gݸ���X`��9�n�U�ϋ
T�VAV#N���u�vXN�fR���L5�|���$�h��5�Xs���b9�‘(5@/tVN\���/�`'#�����(E`��Y%pVW����TCh�x��/���<yq�����<�xr�I�iDlK����2�5����P�@�1��/ p.8s;�8��AO]!#�L�>=���?5��On�CÉe�{6~"y֩i
)�y�&tTp2����o/U�@ ��!�e<{R��0P�2�n�TlL�1WU�P?���7O�]�kQ��!p���]�9��+���wP�6����@ �6l$����yp����Z?�~������%�%��|w�?���'���]�[���{�pr>�U����x>u�ă\�O�u!$p��'�4*,/��&�Y�Y<%�'YՃIH�����OF�?����]����<�q����Ӓe��ə�/��w��)�A8��T��Hf��Z�fT,ɩ�-_�����{�~���F�v���*�恊U���{�^�{'�8��x=.��9��
+56�w7���h��3l�����Y~{�m��m��:�P�S�$�Gml5�����`C��&w�B�K�P�c�A����ý
+�]�m��B��w�����^����&,��S^�6�7���]pC`3K}�g�r%��r�
��N��Y�'!{�ް� ��Z��Dj��
+{��� �����h�ڡ
+��%K�wT~O��S�Me{{�/b�t�]�%�7e{�f�*ao�@pS�����c�*P�S�QUP�S�]�z\��|�~���� o����e�@?	�_�[�K��F55�j٨��'��)���Ԑu�]��Dto�@p��Ѱ<5
+�K�0l='����i�7�����z�ɛ/�!y��]Jω@ ��ؠ��M)6�!��|��ˎN�#l��䦉'��-n9؟�b��t?Ô��.�����&�jW�$�����������'2k)����
��sG�V
��a��p�H/�������Γ7����7�9����Kq�?I!�3|K�'̛�i�����Kh�œ }�Ǡ@ �3���i�/��	���&-�Qٍ
+0�N�K�y�oH��{�;�r��;���5>�4�P�T��t1�� )�›�v��7��dS��
+�u�([��*��k�V��:a;�@ �pp��DP�)w�a��ݍ͟U�`����������M�yr�{�k����U�O(����W��x��Zw�T����"r�΢�[���(S{�MR��SH��
��3�����Y�4;�x�����="�FR���F�DwI�;�'��F�5���P�$��ɱ�&t}{�
��x�ɛ�~�����"�Z7,��(n��k��8�4(n>B�y���2��(u���t��=r���ێ�����-�n'Ϣ���*EV#�2k��'p)��
G�=��o�
+[��1T�
:V�2�h�1X��m'�a�9���Ye�{�#���M.��O�?��ao�@p�QD��D�<NNM�4~'z9��d.\;���ޠ�D㖇5�h��$�����i�I�Iy���M�@��}�m/�1�[��.��3;�[�{}q�����{���Z�����iz�
O�P�
6���KI�p)n6T�r���S�]��?�A+֐8�_�ty�NhT�A����j5���aŜ�������4����_��R��qD�})����F:��B�����h�Ec�v2y�J�~��4��W��_|q�FuL�
&����`N'�sRq�[��-���O�/���@ �tV��0�D�������h�$���U����|k�ϯ��m�m�ZM�����3Sx�#�؋Q��i��VN�UKPr"�o5��V����‰	�@�%E
��ip�S-_{�]a5�T�G������74��Vк���_{��1E?.k3؉r"��@�f*S��T��qFc��K��9����[��v~U��`�
B7���~��<yq�'`�=���le�s\�J+Ģc�pZ�s�`t�d�9ao�@pc5
���镆kr�;��%�o�ګ�v������Ԓ{��bvf����Yg8v�\$�
����*�Ti璊.
�5O'	{����ػ%�f��+
Z`謹�(����ӣ��~����	4xW���n�Jl�I<�|3�.�Xx[ �l�G����\{{��Ւ/���{���:������U����I��nV���ь�}�Sv�7۠{��+�%���j�����?^}cjo�֟�+l/i�I���QN�ꨓ�d	�
��J�8;��a��~k����sR{N�5���n�Ӫ%�è~��ô�I����x���b8�����O�Kc[ň��켈����c��a-��w��V�ﭮ��;��x�[���q���Ia�r��ࠥͩA���h�
&��}&>�l���
+
+o�������b�Y�^Mk��d���3k���������|R�4��x���O���<L C�V*I?�\\���g�f�K
+o�@�]X�9QD�T��z���.����`��|N֩��G3�MO�f��^��
+��z��)i e�o��N\!��K�@ ��X�$O*�x؞A�&��c�����W����|C={�Wm���;�n�^Bk��>��˴|��:)��Lz��i�Y��[q���Yx����|=(M n�4Ej�c3�+܂&\>��x�����=
!�����"���ο?�.@螝*C���mR:Sp+��I�v�~)6�n�&����;��A��EJ�A�|Z�Щ�����î���7Rw�=X����q�kle4��gޡ��p��K��	�s���@ >nt�{��������z
+��4���턒�>ը���f�{��a����{*��J;ْ��(�\�:��%��$>W�E��7B ��U���^Pl��7�xRԪ��]���̔Gr�eʷD��������)�rט$�,��jnjMO��'t�jI�)E0ۂa�%]T�8_	T���D�76�����N柬�d#uT݆�ͱ#�fj��	����Gݣ��w��K��@ l�-�̶y�h�rQ�� 9��I�e�����!ۏo8!�=5��_��ԭ4�,B_����K��o7.���\�.oE-[���L�/

$rYN�wI'೚��a���W#��>y����J�ǡA��oF�y��h���Y�X�VE��̾�r���6T?��x_��ۯ��@��M�˹�N�q8MY�pѐ��D�:y���,��J�AxZ��Kj�j�lR���x8͝�+U�N'<�n�����`��+m$�"�_c;7�a�UygJ_�񢷟���%K'wc��(�x����9P�}V�|F਻Dy�x����,nw٠�.��[���wJ(ֵ	���k�]���lv�(z���Y���/�;�;�R��鷓����[��t����y<�P>2E�����8���!J�@��X+�3W~A� Yd������c�5�!��{��Lj�n0�oa`�����)ߧ�6ݰۜJR��y�ˑkD-�-���ֺ1y�YO��	���l�l29`kAS3�����;��R	M&�a7�B<%����J7�h�"��<��A��c8�r�mdž�(��+�*��#aܟ�ۤ��X6��No��P�0��ؕJ���g+t�ٜ�)Y��[��	�Rr�-G�&)�0�D�Y�'R»�jjN�K�6Y}�l��L�f�����?�Р(��爐��$}��S���(��E��
�qSw�ͼ�pM�i&=GC/��jq��O*�?P6�5S���+u�r��XB>NՍ+(�q�
u��sw��;GA�n�@��p}t�p�Dg�U�6j�
+����6�g
�W���0ل+]�	j&�&��*����
+T������J�m��X��?���n�@p������*�lq`�c/p����	�t�z��x��*�B�n���#Ř�^�4ܱ��֍^���n�@p��Nݞ;v�&�'�q�v
+�L�>(�Ѭ���!n���&Px�9���n��OF����M��J���������h��-�-n�)3��L�V:��K��aQ���!L��{��M���b�m*gZ��K�I\x�b��(��Mf�0λ���@JnSJ����k��P�@ �}��ۉa+�,�:��:����Cc�3u�`�Χ.�g�i�RU5L�W8DY��w-�~:�ī��g�uu��ǀ���I�ZX���m1O�wJ�Yާy�=ާ���#��syv޻���B��*�-���d֝�*j��
�������A@���D��y���gaZL@k0��լˉ^�Uo\��G�_P���|�gPރ�`��{sZ�wDM��S�P�@ �5�@�Q���4a�VN4��U�C&Bջ�Jr���{�m`��xNPx+8d��Ij�!`�2����K���^�k.��ۯ�����ڪ��6V8�Z�T����+=�Rx��J��ߩN��L��'E	;�ۥ��]�������#�:L��^B�^��M^�p�U�C�Ǵv���xW�b�+�C����X��ٍD�<��o�3��J[Jn�@p+6��$!��i����`�5/�:)�l
+�Izx-VΝf�����&�^iӔ��a�jP�!���6�
cN%YЍ*o�S����D l=��X�[�����|�,{S�A	&�I�A��ѩ�Lv��p��Zx����^y��G0t�M���6��-�ڧ�Z�,�)u�m���	O�='df���g��Xe��=���T�P���LV��|`p��l�v�G���4�����:���Q�/���'([�@��^�m�y�&�=*�L���&GA�g2���fr�.�CU�<�F�M��i
�9�qN��cM0�?]�N���`�/޹<�@X~r��~<�}���k���61��I�"���L(��R�m�ɗ��<yA�Ɏ���$_BN%���*�k�떰���`kq�Z���FFU��Y+]c�oN�z9�_�]��v�5��s�퐎���|G$��u��ԭ�R�����g�nJ�-�n����U�	$�1�m��Pw�
&������V{ϗ�~9���Hp���ٜ����M:_�P*��t`�����m'���܍�
+o��D�[bO�q/l�p��8��;)�<F�y��^Cf��Ϗ��-{{�{����I�{$wJ�ω�qH�h�
�d|)���a�����Qz���x�+���d�ۧz���6��u+��g��̍�m-a��=�s�[���ɱ��B�	�\OV���J n.�9�F�d�3����3�!p.�A�����bꦉ������M�T/�<��I���V#m*�.ɛ���f��h��)�l"��|���2(��飼�WsCAk�
f.􆴳�w����W���h*dK�%w3u�9���{WC�ZR��\�9�I��8��!�@ �
��Z
�m��&t!��n�=��N�E
�52�Eq6k�m�L>V�ٛN�Wpb�,G�EZ�$�+��!����7>�0TB �	녷�pߞA-��3Ķƪ�{��T�0��f����*ֺ?9u���8�	�&8}�*pSI�$u�Ho_�
�,�@ ��U�|`��(Qv(���.1��m��֎>)kÜi�jO/}6���|�}n����z9ѿR��#��
+�5���hɕ����t��"z��D�x��K�i}�t�CsŊ���
n�e�V�/�ܛ�NO&�W�8��˔�����yst���C�0�V�p��r"(�S:�(8n	{���_���2��9T��@����]�gt�L>}5�̽��q0���o���3Q�����¥:hl�`��x���������@ xp�;�&^-)�,x���~睵{m�3��y��n�j��_)��R�c��s�:����-���#Kf
XH�Os>0�����DN���7��'�l�ԇK�U�RB�޳N������������?1uodos�H!��Q^	Q><&�}�΢���O_ n<�\���lNϕS�pj��T|��>��t��N_��G���y�|����ao;hI�}
+�S����4����p�R�[ l��]h[2|İ*iw wW�׭��hV��|��2u������do�d�[�[ �\���'��^I��M�4�L�\��9��S�{������v"Խ���M���Jn��1�k�ᆺ'z�`�H�8\x����~�R������.#`�p<'�D��k7z��v�RwI�4�m�rR���3������s"�
+JO�Y�g��"{Rݥ�uk�є���g���F��~o�@p��E�������p�:�]�Ѩ�6U��j��.�/{��z�[f-�]�wq!�8�c�%%FT^�Ö���^�<y���Ϲ"���@p�+ѐN���,A�Y���
+ē������O4���[<���,}��x���(>���;UՏ��!�D�M�j�|u���{�������>�~�f��}������;O^>��7H�aN�74
^	{K��@ ��+���+*Xx�x�y��7��ڥ�xM�{���:O�����N~/�\K�@p��
��>ʑoSۼAK~	5��u��g㢳k��'/�<>�:�D2���0(�iJ��+;f<0�B��]�-�8�c~~��^�x6
>��}l;I4���S(;���
}��]�)�"���+	a!j}I<!��iQC�eލ��Q�L�A����&����	H����p��.\�N.q����}N>;�4E<���BS�†5���9���˼N�eV��W̱�ۊ'�l|v�vm'`*>���C8i�} �M�)���%ٕ��H�?��[�2l�c��'�C
+��P�e���Y�����l(�\��=�ҷ:jvtk(氂v��,�S]٧��΢*v;��[ l1�p]/��l�`Zv<S6Ii~֣2O|牾
+�$�����c��1{2*V�i�>�QHiT��](�;?�,ۑ�[ lJWl�YKߎ���)v���_u�n}�)�il�:V}^����I߮��N�$��:~��S�I�WõK�n�@����DWv�_ۍ`|�}0�L�����y��'W��<��]�������M氒�{j>��2���a��R~�-�[��I
���ڧ��*�
T^���Oa�c�?�r�;O0�-94Uw�fM�[�Cp��I�$��nK��B��`�Pv������Q2��sUiH%���Yg���o4�����J���	t����s.�&�e��1[l��JgZU�'�<cu�mE(��as���+"=`��<۫�X��[�������<��7���zL}�E�٦A��4I�C=�~r��@ �Ep�`���N���!�Կڑ�F�������xb
+~�ܭ@Ɓ��
+�2I��i\c3?+j��`\r�~"�
e��
�!��8�!�:e�7�����l����¥7<���m�v�ɱ��.�Q�,U�O�'C���S�Ls�s�M��̢[�hl�3���2��: F����?��*�o�[���������w[~���"�V��t��� �X{<���Ƶړ!p�@�}P�Y� �@�~�kڧ���{U6��9�W�vr�]�oU�����`���=�̓��BjWB��`��E!�E�&w ��v�u0l;1��J��fP~f���Ɔ�7���4+k���������-ez����,��@ �*tj�F۬y;;��Iю�v4m�L�*�g�~j��M��W�������������X�8͍��h����zVZ#.�
+q��p����0���0_{�巾g]�'�փb�(�ClS7p��C����g��ច�@ ��(�wCM&��,K;,�28 ɗ�vB-�߂W�|�~�؀��}��w����藆�GE3�u6&O���F����~Z�
+\ �|DM�
]?��[Q�]�~}y��'�8��b43��f8�sU�}�~��˯~��p�r�^�y�U������yyJj�b�����2�nUh!�-�w�_?{ǣ�ߢ�	,_��~2�A�)�q	��
+��^�äQ�����5$7�Q{S��M���}��/_8�$;:U�i�w	Pq�R̄goH��H{|�;B!p�@p#���7��-�yv��'tXI�IV,�j���3ɱ2�NHPJ��p�jy����!6���ÞuczNb?w�߶���.��eR���ʡݑ�.��Jk�'�:p�d�5�uB)��
�Z�7��� 2�{������O?:>&��ݪ����[��)��'9;���!�G�I;�VdS �0\8k�
�6��Z�jZG�W8k���Y?
+�f�vM)^�p���4�;o�Y�/1�8R���'���F����ºωb�n!^�+�jE���9���a~��0���{��=�����f}R��WL���Ї:	�X�6�Edp�@pS��1H�TLM�xs���o��c�-{�_����	�����|4{��d-(��/���{O�Ao	�
+�R�&������Ppe'���9vj�Mt7�u4�n����2�w�9���Lsp���W;�i@� ����F7)�Bkm'eHћ�1EB��&k��4�z��e\V���^��f²�l��'/ [熰w ����W-��.;
+\�D�)�\:�o�L� �ǽC
\ \'T�Nd\r�w���hQe��>�Z����V�kTg�t����1�~�����m���	�<���%]kA�F��#p+�u�+G$zG,��N���bNf���>I����W�)���H��ǫ��Y�EL�Ty�P�!s8<�,��,cF�$�_I�@ �8ل��9��C�QU�f͸�zu�N���p�����'��9����/�4pAAO�V>������M�P�@ �z���iD��AP6Uw�%9-�4�N�<�=
��������ȿs�H��"��bL�4�S�p��F'�����b'p��R~��E(�8�qK�v9�Doh��?����^O�����@���]D�f�}���<�n0��ͪefV`����e�m���	ܷJ��@ �:��&�
+H�BA�p�E�Ur|F'7j�r}	<�B�� OztG��N`���!pE~\9��[~������������6q]*j���;Ո�1,7��{��mE�+�#����T�"p0EA���u��d=�'9��К����'��jPM����ke4���K�>��q���Y�\��	�'1 ?K�W�3of�2x�ڹK�P`o�;��˨��$�->'�›KJ;r�y��&�5�K�&)��Vd�M��7V�l����*p��y���*�:�p�Do�p�/��
޿t����
+��39�'�bڨb�	�IY�l�_N6�N����}��>��ml�*4�zژ��V�5
+�'.��!ao�@pu�\x�P��E�Y�O�n���_o�=����&�H(�el��Β�n�m��9`����r@���������,)�ˆ�0i�R�E��"������.�X�m�ln���z}Q���S�ͨh�������j�h�K#��@ �B��G)CW=;���7vY`�%��(	�,��+�������m��X#Ybo
+26�w2��Ax��N��"��e��{��ㇾ��AM�6�8-j`AK���+!�`�ɋG��['��������Tb�a���h��7�����.e��D���m�@�y���raBܖ�i�
+oT��v��[uW/�����<�s�F�Mӗ�L�
�#�)C��E�	��p�
����R�3�T���&������N�v*����!%�0PL7В���;O`��:S��f�NαazN�!��@�6����06۔����n|IE��u�p�A�{'�g!Z���gَ�vd��A��۷^I�_Z���&jZ�M���N����ۙ���/�%qi�@��(��]�WK��LJ��ݑ�G���**�g�`��޶���X61O䞞?���/1*h�=�G>]ȗ��U*�^�B,��g�������(�p� ������0-^֪8?أ3T���'�|��	��Ks*19Xq�	����5I*�å~��
����z�@ ���;�S���4��Nf2��)�R�
�)݌��D�����lw�}�I6٫ޘ3�D7I�7�
�	�\��흻��N
+o�@����.e�3o|���ne	
+�(��FU=XT=yRa�ͭ&�\x�l��V61���taN1RC��̜�ҫ�Bw�,�����?C�+�<�=�_�.Cecݍ�R&Yh���w�hr��`/ـ�q�z�R�	�&4�`�$rx��5�
+o!p�@�)�A0�������KR�<�ӵ�{�J�ְXy�|��o�L4����-���j���U�٬'�$���0.zas{��&������moi����%˴��P|��)h&�!T����j�u�	m,z��=��ͱiG��xp�W��¥0�{������S��u���.�_Pa�p�.�.E����h
�A��ѩ�Lp.��jr�$���[�4Og���\=�����œt�r���-U�����H�->
‘�2*��(�#'h<�`�XIV�YY���j��T�P3��LV��ls�m�Mh@��v�G��PK�L�w]��7�Ф�D |$�Jۯ�9����;s�޶�-�);��I��0_��LP3aC��f���&�M���"�=�����T���I�W2wS�"��O�
��no�%L�$wS�n��\�
+06Q���+���=�x���k&�6���M̳K��]}����S�`X���
+���DJn�@��(-�n��M
+�������8���~W/��cM��R̈́6�wb�o�=��0U�M��ӄNj��p�R�j_@����"���>t+u��*�SPw�1U�����'�������*_�!�{{gs�=�kjܩY��c�6/��C�
�V�΃��HK��%��H;i4�cOJ�ٻ�j
e����f��b4{}O�G�?o���6�ޮ����1x�/��@O��"�
+�{��;0ݚ°�P .��;XM+�\�8#�o�M&L݊�{�z�M-�M&o�J%��\3�~�-f��8�ΦboE��|�s�0
+{�����;���tcG7��ex�1w�	Q��Uvt�v{1u�D�-���&��@ �jx�$.��K��2'P>N��{��N�-�³`���ß_��C�����v��n�[ \Bގ�5� �k����wNF���@�P�W
+3��uo�n�drK�n�Iω@ �
+��v�B�(5`Pr��UH�t��!h��b�0�gUO˔w��ϥ�[ |n����.켶�4��`/�9QLAMZ�
+Sw�e7.��l�Խ�#�}.������Rަ�vk7�F�9y����)��۶j�����0�����S�����O�h��B��[�T�����K�^���n]M�>+{�Q�24�jO/}6���;�M�x
+�O�2l��2WW[�d6�]�7�{���;ǐ��Cв|��vA9˽Y�����7z7�r�>o�@��Tl�g�o��-eS4��f���xޏ�.Ӑt6��YLʗ_��������;�}��:��X ��`c�
�Hߠ@p��vTl�"c0/�@��}#�00�����Ǯ6X��44���O�0����<�L���c{���y&w���/͵Lʕ˵L�>Z���K��(좗@y���c������V���u8���Ta{Q���@��I�2���6�@K�Xw�b�t����S-��[z�;(@��o�4�u�l�)�x�_��*�ߍ���c&>.&mKԝ�����(��
Q��(�iC�D�UwG�������b������vB��u��������o� �{nnᒤo�2�R�a��ē�v��M"�P`�
BB��Vc8��3�����]���q��ր�n^��2�5���œf��K�&_���_Q-�Z���h����Q�y$}�{�����S�-��p�|�F�ig��h��qo_p �
+�p�їٖ��U�~��Q������j��X%-P�=W��Hぽa�^hJ�qՎ���ԓg0��Ւ����&�k�™'�����4��y钼C��������uf:Ou%.�|���눱U�R�N�-߸|ߝ9��IyH�csW�gBw	�2W�j
+*���Ӆ)�G�����)"�
+��u���v�ɨXb6\k�_T叞|`]Ol��L�ǵDo�n3�}�w
�;ԫ����
�t��x3
�G&Sk�A%7�L欹Sj,z�-��8�(�l��<{��.���W�jv�����Ւ�;��6+�P�	]B���Ƀ�
+�����`�=�v�h<�[�q!��ߔn��U ��(7��z�GI���Ѽ��T7�D_�ǡ��]���a����>;�>ի�rR�A�r���[*�W+QK��ߟϿ<>��ja~��.V��t��KJ�[��������W|�K��ߑ.,o��%��LA�������ڶ�uQ�]D�u��6�'����?ԙ����T�P��>��	~=���Y��4��/�F�{Pr�Z���xk���F�ߙ~k�oR�S݂�]�Rz�r�4�����}���>`4��~l=���H0��7��/
_������\F�_.y�6N������8iGf2�.2�����~|ҳ2�`�ΏT]��Ƞ�<�a���K2}�����Rpr�S��J�;��6r�����-�}�<�ƕyGz�����^����C���~B�.���$_�7%�)&/;.�ˠ����p�{���.�0?K^����
��/��M�攁aԚQ’6:�v��Y9
Q�4e�&8>	]%�
+X�z�y�Y3*��a������r�s�%�'PJ�K6Z�t�y�����^�#��@+~��b7�w*:���v��m�r��YTf�ez�R�6���͐Ç��w���,��c�ƧO̜�ӛi��NƗw�j$�T�r��I��;�N��-^�w���9D��ܭ�#��-o�[5_�a��������-%�{n��v�'������'����
+��X�o�M�;<[�t�=��^�]_�y{���.�3rk�k!��=�]�&�:��\D�Ɣ�����/`��K��X������'$T�1��4z��j�ڶ1�,�iJ(�32��fo��	��w^��S�A�}dHf����U�f�T"%��mV��pީ���g�L\��|m�A�k�6##َ�b��vH���a�g,�֮gM]����	~�/�{����0<�2��A)�EW������k��j�r��g5<ٱZ_��!���X�Ԥݑ�j%�FQ�Mާy!/ ����'G���l�����^���fS�T"%��m�|b{�����s��[��wS�W�=�G��?v3�}}Ym7�_��
��/B:4�q�D��c��Æ2Ԗ�\���'�;��_���س�.���]����䎐��Hk������軜w�������ٔ�ls ���0��!͸��e,J�n<5w|e�������v�u,��C�/�1�|�@zz�2�0t]���h\D�� ��؅��j���QE����e�2�5߲p!2\�"V�w��eӗ.~}�}�J^<*�Ոt�Q/[q˛�`b��iC�����)���:��Z�V�j�%)��]���9p5�6H%���k�>��Y�c����М�7�u��~��۾ގx[���l���f�w����_
��GgiُHM���X�2�稆�҅_��R�s߲��ܞF�wE�DO��Hʈ��,�5z|�R0��+<����}_U�{��4���]ҹ
+|�K��I[�ZC�U�[�2|�����	M%<�r�~ɕ�~���P�>�}�7	�')1��v��v����ӑ���]}bxC4_�����=�+��X��y[J�ޜ~��'$��07��=�|0]dSh��\}�{SeؤA0t�1�_Ҩ�\�����R��_
���e��f��S��}�+;�>���nx\p�`�����WU
^�bx;�;x���~�E���wе8(�6������k�m�ʶ���fp�t�b����� ���}Ýe���m��EZ�ĸF_@h[R���hЃ�Ct�گsN��i;~���!SE��ُ��2����#<�^���ğN�5+&-`�cBbovL���}�B��4TH��[�ls�}��{yH)�gա4Ԑ�o6l�p�q����?a�4v:d��e@@��Z�|�hQ	z{Ml%���P�V�H�eG��8дEs��u��Kd��S�
RG�bާC%8��
+/zCuNM���h%N��2Lm�
+�#闥ZS�+�"�y�jY�RDž��C;�x��7����T�!�o�F&Q�m�2��Z�8��P$��&��]�oA�T@{�����}﯏����6��I���$:5�q�
,/�GL{�sq�	�n��?�ن��@��f0G�� ��7E���m�@���e�Pt�]��S0��`�4p��$MH]�q���h���s��	��\������Q�:��9�@��E�P3�
+�ר��Jv��	y�G�q�G4p����KJ��A���9�������z-�
�V���הz�)�>)��Y������ϋՍ[Ͻ������"I�'ɸ��W\�ߏ((�{���=�	z@�I���u��H�Juz�M�nk텪�����E�}Ce���~}fO��c�b�f��j�n�Z)$?!޻o\B��T��
Û�L2_�Ok����e��W#��W������fೲ� z���
�>��۶�';{��%�y�*�b͗lq�-Vc�M�Mg�_���}Z�����WOoV�����?_y�������vZ$�|�7���RP�|��S^���%��!B�R�U���+zV)��X�6)0P�iDe~<�~���'p�]l͉U��ck�)�$�M�^�3͇^���lS+��C�6O<�፞.ӎ.��=.�xxc�ov�9V\�!&��X&zP������ò���6�!���[�u�4�c��ш��x�
��Ƒhu���"'L�f/��)�$�
�#B�0�lr�/Τ�}���@�@#�oqi|_�������A��P���ȀU+�WV�����S,��*؅W���:��<��-G�����+��~�������r��LJ|X�!.k�k����������r�|���Sݞ�S#�E���0ιڲ]��mMa^6mI���3<:��#9�q��vE������9���G�խ�DJ/�p?���j=�.{$�k4��	�@��Φ� fd�єnp�J��)�&��F䓽��(�l�s���l��xTB9�Y�Fx�hg�"���Ӷr�x�d�׏��)�0���N��)�#�C2p9ǖ��`!��c`�Foc0GlE!�asm����GbU12C��':tYk���K�RʉjV	�@M���S�ό�ɐ������LaҴe��C��Ҵ�`'�:���Q���5Vj�Eu9�)5�4�����(��������P�����I�>rҠr�U����v����!}��9��_��I#�k��y	�θ�6��i�Ş[m03�S��wށ�OW������E�j6M_$7oW����� �g�z� ������-J���H�����wic���"�<�N�E�NqU�c����_�����R��k�V�Zc)�#JO�g��ܴa���������k���DŨx�|0К��v�=�$����d.�Rs��8��ͨ�QZ�ChpWE�5pn���}���W�'!�0~_\�����G�}�����b�M=i��)��,��Yy�O��X���#�3�j����������������Oʃnr�0�Cx�8|������I%��Iq#�+x�2�����b��
ޅ<��O��Xb�paGx��!�~�+y�/t�ـA,w��s�E�R��J�{��I�٭���xw�P�Z�}���F���ezBw:)�p�7��R��uL���bE3�����f�����K:[2$5u�|�튵Κ�>Џ��*\��J�ܑKn,"��ÿ���h��C
����e�7���1WwdM�p����A��O�z�G�U��Y�U�lF��&iDf�~���+�@y�R*��Q[������q��p��4$�
+xJKcN\K���[��l��Cm�O"P^��5�^�q�T���O�C���E���Bm�|�u�X�rM�c�rq
+���)�t��h"�W�S�wqs��{��‘�Ӑ�6ы��>��.F�_Ka��6E��$�o�!���b2�T��R�l�.�����D��qY;E0�EEh�v�l�����5�pe��B୕%�<q}-ȝ��%�$��d�=TE�����؂�f�Fd��g�4B�͆����B�r�=�傥��\������:W+��Vεx����+
�#x��p�?��<��=���X�	�Cn��p�<c�+p�Cћ���n#u�n��lN�ƌ*�b��X�3z��;]�)��s��S���}.��#I�?��c<m���^{O��A�5���8�-
+SM��bԝF�=9�q;չ���J�_����=>)�SCF�I��U5���Y[g�ι��U�HJ���%
+F|�H�Z�}$]�0���Ae�mȎ��h1���-�v�������=�2&��#��2��Ͼ�U�+��ވ5	�]\ND�d�YBf�S��
+���r�C��&%���q�h%��G��G��(���Z�^�[r;�F�N�|����=��,_�6=r
����W	i5
+o���r��ߔ���w��
+�$�閧;�Up�ڈT�I����9Q-%n���0�����ʱJOZt�9�q�*�����R3��Z�:���m�VW�z�2;���-&�P�2����P���44}ɿ��?�f}���h�Q*�z�a,�^�Eݍs���Z�aU$#��>	^<:�	M��	�	������'���tv��چYIF�Lj��X���x�����:]�؀	ͪ����1�@Vӈ��ur���u�܏��1�6Pi��Z�L�	=��ЄIˉP{�ۤ���K_ӹb\:��
+���Y���D8*x3��p�tD	Q����x�l�Z�)��!��K�!z�~$��F[�&/o����b[*�N0����y��l��L!:z����e��C�ol�~��}ơ�Em���u����MӔG�hV��d;�	�kK
+���n�Kq��p$ؐe��@WR�*�����hU����V�Y�B��0|֖3�W��3SN�	ܤzU��Γ̺p
+�n9p�#����s�"�+���,��^����Dڈ%��2X��=�1�Y���7{�ct�Y�8���r"��|�<�!!9}w�ị���ly�@~�z�D�ڻ�^����ET2�8DZ�}���4��[j�5H�A�ױj�*WJ�S��⼲״?k�H����w��ٙ��N��4�i[�]ȼGrv0�P�m�ִl2`]&�����E��r�	!����t�f�t>)�����}����3b�+TQB^I%��CR�xp?����e?�֘��Hu�
+M�e�/Ld�.�(|�N�8J
�,YN7z�֮%%:<~��T����IL��T ��hC��عuw�n�<|1('�A_S�#�_f�on���0�`��.�.�q�D�(�4������J�Q�0dQ��蚽���&ô�	%��`�ť	� Jێm'��.h�LtgT�Y�&^���Y4P��6Jwu��Q��5:��#��[n��VZ�|Nd�L�?И�4B|�h�j�m�]�����3i<�1�3e����Z�5wpD�ކ�����Q-���sk�*��J4�Zï/�%+f\���4��E��6ɠ��̸��l������Aa�M�dtL-��jy��5�~�-3�M+�q����n�۬)���'��1���Z���ۂ۟>PILo�K�B�]z�^|��_��|���E�f���Lb�QR(E�o�U�hV*("������A�����I���0ё��8�2������K�p��ڬx_i�S�+�p��A�V�!����X�_d��2��[����~��鰰�7�N���8|}��|uG�#�����^�Β2ջX�K:�����Ƀ3�J�d��I��y��qi����-~���m�t�aHz|m���l�[���
+�=�!����J)a0�V��D�J���)��ʚ�j8��u`}��_}A1��7;N�B�A�N��J�5m�z���5N8��!_6�b�v)�*����~й�,�N�s)=]��N��Q��yN��1)2GI���ctiC+�Z�n��cY�<q�rɔ8��&��?z�-m1��@�2la����NݲH��/�^���E�.�U\�"!2�i��?���YI�?K�����Ww���ųo2�}IJ-�200�0 �
˿��^թt�22�J�r5*�)1����Zw^�Jx(�l�������h��K��)��f+�Z��(X�u�M(./sr]H����ɼWj�\M6e��^��'�<A��s�ӝ���$�����o��|��a}c�Y�}(����B�?>�3���8n��v��������?�>5��a��+�\J�<�+���\��k�]�z���h*ENJ4����`;�-�A��u� jL �1���z�#m�N@{ڴˠ:�Y�"7�B؟���������Ǥ�sq�Z��]�`�*\s��8٬�ܽ��>�u��:�4�4*L�y�����/�{0)�xg��x�'�_J_�O�q�����d�������׌U@�^a��a�ѼZv��*,������[ı����b�b�Fic/H*�wl̷6bIK��m�N��\�vmL���O����/X����H��=�5<g��t�<��(��$������#9W%���P�M���8�V�L2ς
�$g���B��a[R=��-M�4Cy��c"(���wCak{��K��M���otV9�>�D�[�2�'c#r��/mm�#���T6�LU̧�"���	�Ǩ�n��Ž��_:����?d�Z��].ד{gחO�ҽ��s���;�t]J��n���߭`��0N�8�R�f"�HlW��s�ը�V0�aZڅ;\$�<#C��]1��Ft�L��t�n�R�g
+�N%X�C���hIj���mЛ�[���1)0&�)�ƕ~�_�t���[:�7���K4�wo�{*[^Ѡ8�`]����׉R%���8|m��u��8'����j0.~�y$��V��Dž��L��w��p� ��h���(�r�E˃훲r��5��S�x�������~�����;���T����ݣ�!*���[���:���q��b�'�1r��~w�r~�C��ҕv�r���h�A	Mm��)��b˿х��/*�&h��-I��`��b�ޤ��ަ��ty�˕p恜�e��ކK��ciSz��izЏ��-쁖���B/��b�B��i@�{=Sɬ��@|�*������u�+����0�"C�tCx�U�Ə��1��8y�-d�3[Q'�؋�/���?������RM�<�o_�ik!���ܴ��G�y�ˣU���Gl:϶������bw�@����E���g��0�	#2���eK[��d�����V�7���(���@�`x�IB��:�>��öj%���.�RA�)�W�eCװ��K0�ymY�Z
+݌ާ����C��a�z|�$��nLd�0?B��Z!M��G���\�R&��.KTS秨���'>���-��+��A>�w���'�R�,wZ�q��Ԍ��6b����Y��[�����ӵ8�\�)��bE�(�k( Ǿ3g^����ɜ�����9N.�
��z��p��2�҈�� m�������9s�_D�����ZGFC�}j����E-�_.Zq���hxĤ��an{��Od��Nke*K؅�Tq�X��ǎ%��6��фC�ȒQS�mPIF�\���Z9K��x���;��V��s�����0��HNw7r��9�8�^=�܁����חO0��<����
�ڀ�1=
u�;��o��:�l61\�Ԍ#m�4�*�����銨)\�|���j!N^�������n�aQ���/�焮���}=�����$�I�(mAqf�d��s��g.�/xCd��5�Īͻ�+E��@���!���~����_�h_����e2��U�x��/��/O��2	6x�=1|����b���`�Cd��B��t����9e۫�.�ʽo����I��z�������F���!ǙG�t��0<�됐�n[�+�t<I���O8d�C��o�'|�c�>C������ˊ����n�6f@���6�'�=�ٶ�U�su��7N^dˣ?
����p����ev�:�O������~�fGS&�K�2[�#;��\C}	L!��3���Kƙ�l�WiCda���3��}7d���q���D_�:���1�+n}��D�?_�p����a�F�&��K4S�� ��������Cu`�Q�Єl�<U���b�d�OD�*������^zű�¸C���~�N�̿�Hd��I�|��x��~HW���~ď���O?�#�c��Z�����W�f��V�1/�\*n�
kP��Hi��^��^�ݦ�������#BW�tL]�¤�(m�׫d�#z�����'��%/��Д�?�ϴ�岉��+��N)K1�B�VI���}��Tx2�8��^$`�:�<m���v�5E,��D�S�	t˸D��)�t���Q=�ɧ+���ы7�v%0n���$1y�Ͽ=���ٿ��rDD�3>�#�4����<,�#��	\�1S鞷�1�q-���<A�0���.uH���Q
+38<m�';J;Pk����!"J^�0�z��}�Wd��DAo����B)j�ܲ�Zo�:{]�%�&Oc0�nv0�q�c4��Q>��K�Acy�Dᡈl��&�����5;t���tB��	�*����Y�o�:���k&y���
�@)�+g�P�B6���ǧ�!��&?+�#X�A������yy��;?���f�/�tG_��\����A��Q�����Q�bR�q����\�J��F�Wx2����;�B9����}����mjZ.&?�u��ƨ��n�>�5E�y=���ũt*UH��&R��Н�Y$�0j�+���b��~�;>�;�B���B��-o���f'xN����K�0��-
+�i�-��7�j�\�p��&��!d�G^���-Z�H���p�F���㫗Ct?�)��ĮsEx���䷈d��}D����8c��X~A��w*�F���3���X�l0�s>�d��:�����?�k�����(	���^
S�b�<^U����2�!��8w0�;��m��u�C����|��G�^I}T�r��?����=�@���-)�8<q�s�g�<p�\^l&�F�n���t?�b���+��}�vH�#���/_1�.>��%��m)�~��\��D@�����n���0£�.%A;�qy�Ҵ�]{�k�e�T��{�T0:�W,�G���Hb�P���/��f���I��j{ڛ�+P���j!��D��t�rw^y�_�W7��WIa�_bC�]��%��b0x[�PWOg��3/����RO�r-��`��h��Ɲ�z�Q@n��^f���n'b�lD���sw!���P@IGãjf�A�������L2t�ׇ�~{
+�-Q3pv���|��a޶a�`#���Iתؠ�ު�����s3��ǁ�T`|�������ƾ����K\��F�ҵ=�	��r�o;aJ	���' V=�D�`�B�w2�;���z�V4������� ���!&4�0pt�������s���ʉ���X�ܩ����x�w6uԱ�����+#�N����h
+��e[c�D@bg!�f]Vݵy��d��h�~�C'mJ7��НW^y��k���,t��ɝ\�x'�dPh�n=��\,;U�\*�l�QwdB1������|����S���e��W�R�ط+C����B4��������Ə�1��b�^��НW^y�����Y(�O�>��xR�Ane�B�����[�y��ۆ�Q��Y33{��*��Y�/r�x�>�{��-5��t�ss5H*-�f7"��J|儣Q�)YNӯ
��;�'������6e�����]^qS$vE��&���}�N�=�Yf�nՋ��pX���h��x�ܥw��䢋�!��Ӛ9�}K��K����j6����c�R�+��f��3rdA��Ͳ������Oz���B}Qx������+��e�ھh��M��/�v���W�?� |ڜ���fܱ�N�Mo�
��y>��̅��v��3'œ�	�څ��6"m'�����,�\���cVI'���-��zD��Z�r��
+݁P�W^y���,�7�C��(�2��R=�Y>�e�;�p��6�.����������X�C���{f�~��ýA�4�c�]�]A;�Ԋ�	��t#�H-wZ[����T�*ЕűPM>� kK>�E7�Ƽ��+��n%ep7� \�B�nCԝ��V��p�����	6aQ�a#��z[�/�?��zd����Ń/
+с�}<�#�6�σ��r����f��J�"w��a
+>WK��+��|�*J�+s�Bʭ�@?���K�G^�¡I���|r�頕b8�<�.�F�.~��,T[]nv��9}q��_3#|��	��jI��:�����O!c~{#��"����B�}���+��^�r��� ��C��:T��!`��v�_���Ì��~Q��g=W-�C��5����k��
��,z1s��N�TZ�bj���}X���n]����bu
<��k�c1n�x��������b���o�t�W^y���N����ݻ/N���J��'wz1�ۙ��cN���5��Q�nKn#����g�g�P2\�
+�ွ���	1I�

�Í�:�!䟵�]q�[�Rk�+�c���x�K%	�;WK��+�t
�c��k)b*����3�9�f}��a�)h*�n��)x�pz],�9�c�aޠ(bӓ	�'�V�w���Q��3g�Q�n�D��#
+��ԍ���v�/�+�����W�^a��Å�"�8,��G@����^�����aKP�U��������7�	=yƠ-�gb�����@O���Ȼ�����͎۹T�W^y}dk��(����ʹ�3��aO�3Br�ή�j����D��o+��ݛ��_���x7/[��o>�}�^�}s��U������vrn�RI^y�����5z�>���a�}p��lj+h�]�@o�����F���Aa�8���lz�?>WK�:�,�c.�n��O����y�W^��^�����᡻<�������m�z��c?o�o���A��}�7��۽�cG��y�W^�r^�'�B�F�f�mHn��n	z�%�3>~�4�7�A��G����+��^v��D�$gø����������
��7ǖ����y�W^��b����h|�A/p}3��y�W^����,��-A/4�$#v^y��_��+Y��=����+����+����+��d�?_�hA
+endstream
+endobj
+
+1260 0 obj
+37793
+endobj
+
+1261 0 obj
+<</Length 1262 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 518
+/Height 361
+/BitsPerComponent 8
+/ColorSpace /DeviceGray>>
+stream
+x��w@�m��_�3̔��i/
���HCEB"�e�J�����l+���Ҧ��"�Y���<����(B��s}�x��yz���=��<��8��\�p��7i�g4��m��\�������g��g��_G	��h����������7��Q�F��~偄�������"����#O��9s�Ν;o޼�$�3"���9N��H�|����~���))��!B~KI�p!ł�"�����Zp}� �?��㧤ZDMCKGG��������������z%
+p��(	8d� ������g`bfae���������~���������h@`�,� 	8�(�0�)Q��102���sr��.�'JLLTDXH�1/';3#-�"ʅ��Q L�׆kbB�C��r
-=#3'7�b!aQqI)Y9yE%eeL��J�
+�r�2R���B�y�99ؘ�iiQR���Y���Y�8����D���_*�����b��jm]=�5���tu�Wk�\����$�� &"�������HO�/���0�5��\��|�b��K���5Vi�Yk`dbj�q��fKK�-@����6����]���JC]MYa������7+���/"�RQ�A�J��+��X���o`��l����;v��kg����������=�vl�j��l�����֪j��2��B�1.�71���+ ,X�������OPl���ڊպk
M�-�n߹��������]N�<��q����N�p9~��'{�];�o�071\��z����%b�vF:j*��s�8��ק"���X9yD%+��
M-�Z�����Q��N�=���U������k@������~�|.�?{��	磇�;��e����P_{�2%�� 3=
0��f�F3��ƵXH\FAMC{�������;�p?s���嫁�7nݹ}SttTdxؽ;�n^��{���·����bn�Vg�2EYI�E83T�H`��Y�Ty�j}��[��Χ�\���hDT̃G��RR���30�����$%>~� &*"�p����™S.���ݹu��Zm
Uiq!>NVF��|��aa�	5P,X}�[@TJ^u������}G\=��\
+�y�A��Ĕ���ܼ��¢��L��E��y�9ٙi)���܏�t���lj���-�kV�+�J/�"p���Lf�69!#7����2�5F�v;v=}�R��;���Sӳrr��</+���������G~�����,/{^RT�,7'+=51�At����N�8���z�u:*r��*
+~���!��_`0���ed�BX�o�y�����w#c�ӳ�>+,.-�����ohjnimk�����~�������P_[]UQVZ\��iVzr|l佐��N�vܵ��Pw�*�������rnS���~�6k$P�0�p.Y"�LS��N��'�x_�~7���̧�E��+k��[�::��{z���1�������twuv��676��T�?/����� �^H�����m�o2�[��TB�����hxv0��|O��́#' �1s�
+Iʩi�X�89�y)�VxL|JVnAIYUmCSx��=}��/��^�~=<<��(��ׯ_

�����,�45�V���f"�\�z��A;�MF�ʲ�� ,�v0��rO�8́�%V�T4 !�UY�g�y�Ñ�����F�%e<-(-��kji���E�����ٿ}��=�$�~��-���Y���loi��./-��J��	��{��!����rEi��̨��%~ټp�%��?NO Q�4����ʀQi���;�!��ݏO�~V\VU���D�?������?����D�����a�,:ښ��K
+r2F��t����V��V/���f�R�Ͻ��{=3E��}�'p��@�9He�����2-��v�����V�6�^�z
� <~���A�?�Aq@`�(�~�r���������8/+�Qԝ ߳.�woٰf���(b����X�y�(|*������qs�\�����@LVe����{���HZ������� 0����?��?�!"���wo�:Zk+J�SE��9}�q���6b�H���~�dD�Fhf�{YG����x����	$���@�%�!bd���RX�c�����i��;я���
-=�����	@��?����Oa@P��������y�����[�^'��f��RIZ���	�!͛�F�9���X�yὬ�D@��'<�q{�"mdd�b`df��C*�uf�펜�
+��(52���;0��
��h���3���C�������n\>���b���Rq�	�('�2���5A�\C4@�%5
=#��=��6���8888�x��%��h�X�����w#�aʓ��|����?޿}��eOGK}e�̄�w�݁l�[�(%����@G�-j�2��H�il&�e�W¬�=���aO +;�	��'Pe��@	1Qaa!!aQ	i9
�M;�y�ݍI�|VZU߂2��0&
+�G(@x��5䠹���iڣ��s�N;6�V]*!�����p26+�̋�if(,ݹ6�Ocz4��@:fV��,(,&�d���5c6*�����+����]on���ۅ�7#��s�+�@>@`����G`4D�ۛj^d'��
�x���-ƺ+�dą��;��PNF����fnNvV&h$�k�J; 20�	��m���B�R��J��V�Z=FO Q��u���u&��l���� �IaYMS{O?d����C`���Z*Kr��߸t昃�F���rҒ���KHJI�.�N�Z0/H���	1a��<\�h/+ҹ���`I���' "!�TQU}%x��M>�	�O��́��
����v�p>�*���Ҫ������Q@�>H@�@?x5���\[V��x�����{����Y�������\c��bez���LUI^VJBD��\�@<l���5����'������^c`l�i�Վqzό��`g�g�[;�GO�����ST^��Wo�M*$���vx�������i�ð`��ǝvm57^�FOWW8�����9fe��Q�26\���z�����QB���9��t?�%���gϝGA�	��UP]�Z��������~���{�"m<w���	WW7��^�o�?H��^���
�?����$2@���#v������Q���N�g�c�V��o���	��Xj^6;��l236���PC;����q��s5��H��ў@i���CS+��N����:����iO`A7�_�|	��?(�n�ä̼�JP��`�$����������AWk}EQNʃ��~<\��srpp�w�Бcήn��Aa�u��>�=;�6��#�kb�����H�ҿ#*�t�̧���g&��14����p��	ϋ��]�9vO`ff�́ё���޽��qJV^qym��"|��z��K�2�߻~���Y���?����{�2�e��yyy�9�z����sMS]QF\������b޿#*:��9x�`O����f�=���O��x9���{ѱ�����~���������xI�zZPRQ��֍d�N(�@v���Ζ�򢜴����7������oܼ}74,"2
+xPj^7�]�t��a'�sMk���(?�,*L�s�J��Z� �p�
+��(z��{�\�v+42�Qx�O>�	�'�9���yIqa��< �O���㶮>bV8u��@�04���X�� '=�QltdDDDTt̃��ljɈ�!��~�f���y�C6���R�_"쀆����1�?��0 $.��\k-�x������;���S3s�
+�K_���9Vs �CE%�'`��``���L(���z������yaޓL�SRR�3��<�}�Z"ļ�>�JON����s#����1�][6�R�[��DK�`�O���.�9!3�	Y���L��`=�w"b�ӟ�����Os������!@��D�����e��b���$�����%�i�<Q^�X��\�v6�(-*�}��q'����1'��F:��\�tT��'ŀ�<�b;��8`@��l�n��HO`@ 3'�P��ٞ����z��?[H��
+���`A;�W�M
u5���55�����m��ˠ��j����xQ��43%�~荫^���m7�_��D���n��'u�~�
��"��\��|۞}��/����I9�H[hs[Gwo��z�j|�
+�k�F�^OeV8ؑ�@o7�&�v��0+C��Wg{ksC]UYI~NzBl�
?O��6�W�H��/�Y��1�7�Od�����ٶ=��=.^�����&����7�r�=��6"݁P�?�׏e��Hj�w�-
�&��!ʨ�3C��5�����L���EQnFB̽ �ö[��UeDH0��6��2�7�GPBNMs������O{����&���V�6�tt���װ��gz?mDy������v�����������2Ի`3�4����������7����2�Q����T
+?�J`Ho�������.���7�$f�a=�����?ч�����́^����[0@9��O4R�����VF0/��:��eog[cMY��ػ\�o�]0`���?緟�����������M;��_�$e���4�ž@BC�_��	$������������ȼ�BZ߼��jm�*�K��v��>kS]5anfZ��?W����s�Ҁ��*}�m{����0PR^�؆��%��N�'���?��;F��ư2������+x�P[V��8"��m��5i!.&���f�<�R��������<��t7��C�@b𰷫o�������(}֠F��t��cCEQvB�u��vm)Fj��?Mj�S$P�2q���`�����w�$=^��#}Ğ�om
+�9��/A�=e��h�*~�u������j%��l�05�9b�6��i!����2m�ͻ��z^	A�@�j�� oЃ�Ii#� `��}���%9���/�:lY�R^�����'�	XJ0!5H�(j�1F��t/6)+�Eu#v�3i=�d��;�7����O"�]8��b�rYa.��$& ��;�*��l�#@z�K*�[�v��?��o&�r��«�Aq�㰀sGv��.�g1�'�����_\n��������`opm3��/f�
+��B0�*ʌ�{�〵���	��I2
+���$V�1��p��_0�7��g���AgSeAz�M�� &q2.B�?�AN��бp.QZ�n���'.܉I�.$�On8�
+&}
ey�Q���6�Q�\�Jώ/�q��t?�D������ͻ���ť�T5���`bȿ���#`���Po[��ǡW=�[���FΎ/�q��dX�	 <�ҪZF[�=s9$�qf>���7������/{Z��2��vٻIOMJ�������I.3p2
+�|J�����6���ގI~RTQ�d����~3B(�^t6��%E�=�&���� Sƚ�2�׼!�ư:`��Q�1�rt�p�ajniuSG� bx0 �L
�kK��n_:a�$�"<���ԋ�>;�e�y�̞����KHZU�d���WPأ�g/j[��F�3@"�H
^v7W�D]�<bc��*-���������,2X�6k�)�9�T��'.^��,(�`���L�w~F	`�cBG��'�w�N��1A>.�Og���5oHR0w�"v~I��FV�'.G<�.�lh���)
p#�X��xĪ���׽��,
���%�D�Ƙ�2�5o��Pѱ�+�Z����+8"!������%
��	��$��=bki��j�����"a��8�\>��mz�ŒZQ��6�9_� (�j��z������ ��baƃ�~���27Z������3�,����
��L\B2��l�s�30�1A�Л�x4W�t6��ܿy��q��۷Xl47߸�Y._�F\��#A@�L
+����:s�ޣ�"�+������̠���4'1���'�t��ۻ���a�,�	�y�$������ă��0)P�4ھ�����������!��3x?/����	�|��I77d��'�\��捃��]������E�Bfn��+�8��	�I�/o�N�C�y��:+��$?��s#�����ߕOg�Ll�7;3-b��?b<��V�۸�������� 1�!��GG��plZFң���а����f�Lp��QA^NF�>�; ���JZv:���Iim[�K<'����a�Ac�������$��Q��&��MMAFB�#{ަ��>��@Tn��mN�.߉�,�n�~�C�e!f�ǻ�/�$���Ң��g�����n\���H_k�������}�A��H��2}��.o�Oͯh�x�C0!a����hi���*���K��r��78i��l�ުe�2p�#��d��Tr�;Kf���b	emS�#�#AR������L@X������������
+ |:��k޼N�qڳ��d��reY	�t���Q�΋h��E�VZ�s���(���&8�
����p0G_�X�\���-��yw��;���h��=o�4�)_���0pH/[�wHLzAe3H
+@f�C01���uï��c�r�Қ��7�}ιuڽ�|=��M����v����C��������𹠈��2xR�I
+���K&B1���?��9ޏ3���k�R�Fܾ�w��y�����:+�d���F���
+�Ԑ�SHv��V�SH<�E��<)�}��8�\>�歴�if��{7��O���27�RWX"�GX�5EQ��J���9�u#&��
+�ߠ�_�g��g׼�W���?IK�
��s����m�k5U��������Z5L
�8�����H���,yi�/�v�[]����̤��}N;��ei���-���Y�+`�_��ga��s�afq
�Y�>����Xk޺�[�ˋ�ݏ�ZjrS7k�
+@�(��xǡsA�)�*��@<��S��(�k� �= 2�V�<��\9�v�v�5JR¼Ȭݹ��6��V  V�f��ۥ;��K������i�ljR_W{s� 3)64��g���V��Y�̴Ȑ�_'59�5��f����ÞעS�Zz^����
+#���B7�An����^'�n5�]./)��B�hғ~����k,��.ߍ�M
q~� ��
�D��Ֆ�ƅ߸|�����ڕ *�1Lvr����T�BKWY:w-:
Z���?�x��EjȞ7df~V��;^nvo^��*+��>ك��2��W\Yg�^W��+�x��L��S��=o}�����O��¯_:}�n�����8?'��b@�
��l;p&0*�`8�%�_
� ���o]�tq�6[�BAR��y2�1��
+�Mw���0�������n�{E���/Ⴏ�✔�����lZ�Ji� դ��F
�
7;����W������q�a���g�¯��ڳy����ǀ�ޞ�
+��]@f���C��1�ŵ��@��`�E������+/Q�ߙ�{�i�Hs#��'e�Z!�a��ϝ���]�o@��[����Ⱦ�����c�\=w�~���*�����0R!�������U-�Co�Y�tp����Bui^��{�]���U�������߾;&��`�BZ6���A@���<7�)�0�૿���E~ƣ� /WG+c-)AN&j�I���ԉT���v;��~��7xn8s42kw����� 3>��`��jeI~dG����Nd�Wֵ�?u%<�Y%f�v��>��0�1���a��*�ə��Չ������v����Ex@�y"F��ȋ�����v�����K
u��ҕ�;�^�����f�������u6U�=��Z��	�4p�/�a�:QTA�|�����f����C����=��LWUJ���H�DK'������>��h&��2z�0#�kd9��뛭�ԉ����h��YR�10�< �8��Ġ��"?-�������r���4��N�i�<Jz���Lv�ubYc7^'�P0�k�󓢯{9�X�LF���1��(jo�s�M�u�wxZ03E�����x������bZ 	ӂӁQ��5mx�8sE2���8��]?�}V�+�Ey�i�}SB�贠�s`�<-��"N`�j�,H�	�v���_&-H���xZ@I��bZ��L���kl&��w4��&E�;bc��$��J��}�`�\"�iAhb��a�
+�S�ڒl$&lu������%��U�L)��xZ0��L`?<��\U�r��v�����o9A�5�Hr�'��v+�D�(�Of�����	�g��Y����Mi���������?-��"�	Yqw.�9X�U	"\��
f�)@:Ld5�m�!�aS7~�0�c�_HL��O�>tH�y����B�CHNs�n߻	��xrH����|�
+���8���u�e@��Mf��s
+˯6�%Bҳ�־W�UҌ!&��V����:��L3��/P
+8E�7ڝ��L(�`��:�r��=�m3�f@�-g��QE�M���#Rk�>#���.��$�5řB.3�Re·��0r�)�Z8�D�ն�"Y�><��T���`�:ui6:���(�)P�����VT�����޾�k�-Ό
�:�k�����_F(�b��d!�4��&�^9�y��$
�W����	P�^�S@6"�AMQ��`�Cֆ��� ?�ڐ��8�$�:^����u��CQn,$|WD�) #�f0��R�����d���X%|Ub0:;��2b��;�J2c��?lm�BV	_{pD��u-Fj�2���eWc	>λM5�9�:1 =/ptG(���HȪ�W�-�ϒ¯��ߤ�,�
�F�ȩQ
N		��Ei�Ag�o]�&�����`�@�$r��S@6BC�`g}iփ 1X�\�����+���'��=����ʞ���9��d�R!��N�wHv�S@�B6�#�Ab��{͵D���k(��`�Op
+�MXb�V]����`�
��,�I��țIiE8d%$1�+θ
���j�� =�
+
+f�h��K�#sL�	2^#����!H������vu�Ŭ4_�"�>����KXn�ю������O��0�ѭ��vk�b�����`�*z���:�{��o�i6��x#:��V�%ܽ��TSN��M,=�����]@E��#�Y�x%4!��	^@VB�þ֪���+'�6j+�r1PM�0��_��@�-$��k���ytO6���<�ÿ�#��Q�����y�&V$ ����(��T����;u�N\vI����@>B����κ���kg�g��:�R����x��UVm�w�Mܞ�S@6B����H�&	,)P�0��ʪjm�;���	�X�->ꐜ4�H8��HCF�m7	X�������_\N]�d��qO�{q��M]���4�R$�4W�>���oٿ\*"��r	J*�Xcf��r>�����򆎾Wo��9		�MB^�K�X��%
+�y��u�l��y�>LVV���ߩKf�E�;�TL
+�;ak�Z^���r�����H^hh�琻Op������֞A|�:�	)_��U�7�V96�xEdմ���;���UP^� x���%3)(����x���A�xEe��n�rp�����S\�ЎC@��j
+��Ru=Sk�^���rK��:z_B���J#yAr�1"|&/ B��@`�c��7���m��~�B�S@N"�H�ї�C�%"���|�G&d�׷v�z��Op�LإbsEn�]_��@����� ��9��XyD0|C��W6�����=R���H�O�����d����l>%-���2����褜���D����H��\8bm{�ǿG@j�yi���e�tMw8u)�~��������7��h@�B�૊1��n[�l	k3�"�cHA��)(����z?����~��р<����5�iQ�N�kT$��/@�P0p,Q�2پ�OHt���5- /|���*,9D�	�F���aI�c��i���������������L�&�=M�O��u�%��}�hR�2C^Qy
�-�.^���9�5�L5҉�$�;�	�c����
+&.aYu}������ ��B�:Ԧ���8�>�p��q�� ��I
+@fh���ـ������.2�HZ�~������ͧ�f�� ��+�6�>��w7.����k�Y�l��M\v��w�	�����[N�ތM˯h���! s�:v #�.|v�����]@JMo�������:�����!y�Jz�߆��޷E_m������4,�b��&;��K�y^��;��=y��+�C���6�(���:zT�RC!���8�]��0�����������6�N|w��18ʄc�᧘в�I(k��>v!8:5�d�X�!�jd��l3P��c��H�*��Sx��z��WCr^�w����̅8�.��I�ND7$|��V��'�������惌��֞�o�Cr1 �x���q8ԉT�>M��E +�V`���������Ʈ�����#���L�k�Z,�F��?�D@)ì�X����>��Jj��^���; w!wo_"�T$x���YvT�B��
�LyV�����{<����p���4��͋H@�Dv鍙R�0�+뀬�XAv):���d.�
+@nXU�xf?����H�8���]Pf��Ձ3�����̈́�p��\ߡ�t�?��ލ:�
+�
+�2��[LQ�l���͇Y��q%8�,l�����k����V."TQ�憬�������������_�� o!��p�z�������7�Q]��u�
+�
��V�<z�Flfq-n?��x��ewseA*���;M�=zcV0 P��Pw����{	�e�]�0+�! k���U_{]i��;���I�ѡwc8��g���
+��6m�@ sa�`���</92�ܡƫ�E���ܯ�<�57�:��6�������񠧥�(��M����Ԗ V0Fn�8�^���䕰����|�%���H<x��8���~+Õr"\�Y<2�a�92��nd-:+��D_8��LGYr1�Y�Pұ-]ils��M�k<7$c���� ��m_7�u�e�8�a�.#���KTA����F�t)��U����
��޶��'�C�O�6�T�e�Y8w+��"��@���L)�n��Y���P_{}YnrԵ��v��.�g���?{,+��_�Ұ�-Yӂ��|�B��_ 3�IA~Z�M����V,�!��V0M��WZ���]��r��Ft5Uf<�������8/�BP%��v�/��]H�.�t���q���O˛𴀜E���@Wsuqv|����6�:* 0P�GRñ(�%=������K��*[z_���W(�F�n�)y�t�؞Mk�e�ƍh�8���S�{��’�Z�䐌E��Ԉ5�9���^.v��4�Dyƍ�PT��d�jDJAM�,�|5Ak��IQ7�O8n3\�(��F?^<{�:�J�l���r��C|N��n������aтq��*m�>�.N��"^"��0^��ս�M����~�
ڪR��hR0��cH�|@���\��^\�1��d*x���ח��ܺ�~`�����i@R0�u�q�5��N��+3�V�AA_GCy~Z�m?��6fz�dE@fH9nR��2F����%
+��+���"�� �Ew��>��|��RV:������a͖}g����+x󲧵�9-:�{��r9Q^Vz�s�M
+Ƥ���LEl9nx��y��q[��+��@����٪�S��}=�eOKUaz�M�[֯T�ccX��_A�U��^ -f��W+I�Cf<;����W�K�17���٨�&%��HM�ֈ�[�HZ)���ǀ̄����\���z��z
9n�A�g���:5
+�O��W�q�/r�����ݤ�"����r�! R�� ��'��(d�0U�� ��
�:l<��A	�=�����G�v���&���g�{ھ~�� ;=�/d�(�Ͳ��&�S������"���}~`�:d���=�cQ@��)�����$�/����S� D��� ;��?.Ei�lD�) C�D����w���wx94�Yek�+����������a^���9�t,
+��U&��}�>��O�S����/����:��HCVnP��fuR
+�Pв	�h�<�}�։�S@~"?/�E�a�)�c���V~���_y��Ec�K�}r��y�����)�
5j�
����f���G��)���"�:I���^�v�(��f�>�?6"S��t��8�[�_GO,=$9<t8�௥��k��ju��6��w{����F"
+Zf����r� ��nt����_W��Ln=�!��2y
+K�j
+S���U{4�Wחl?��o_�#��PH���@g]IfL���ݖ���¡� =�tt��Hɯ�����32Ԩs#d�2<=�p�@��%��;�9�ѧ�����FO����d�R��pB��$�F;��BB-��<EL��]r�c�)'����O�xz�·DM����j8{ٍoG G�]�}p�v����Z
+"�,�6dnLw;{�"�G�̀�D,
+R"���ߤJE��P���� @\��nM�̀�Dl4)J�pw��U�b���}���$�Qk��2����!t�›��z�b����j��*����j�&�����G�v��S̟��)n���2��ڶ>l��te�&.��� ��>�5*�<_A\�Έ�V=p& _�J�š��J2���(�����u�fYg��!�Ț�!|�2�i
+&v�0b 3�]�~�>����s��������3^	%m�]G�G��W6u
�1����`T�2�k-�.ݎ�*�i��cy�Ќ_I���`4�<b
+��;�1���:ǀ<DZ)}e������T���KT�6�:{ݸ��_��5�M
p�B�S����=5���]��%�t��VǓ���eW�� ���{I��~�	21&̞�Eq%�
;�
K�y^�R�������腩�_w�4�,X��! ��������伲��>�JA_[uAr���v�D8&t�LbH��-"�a�����flZ~Ec'�q�C���ݫ�֪gI��Oؚ���h�	�̞OI��'��������ݸ���&��ר"7ᮯ�n�B�;�H̀�Tu�v>��UT�܅c@.B����r��>fc�!_N�H��'1�	�������?�.�n��1 �]ox��0��akd���Q�Ƅy��,�����.^�"��1�~�0�E8.�+Ɉ��L֪-���~�b��1a>=�b	EM�m���G&�1��`���P���F_s��QL@R�%�Z�VNn�ף�rJkZ�^��x������\;.�:
+`L�u�<
+j&NA)U�
��N�܈NzZZ��38��!�t}�β	���DF�|��o���KHZMg�����!��s_`����d���I��[}EZ�����[Xf����nŦ�7v�o(�t���W��z�ɧ��;��XxDd���:}�n\fQuK����-Ŋ��P8�`�s�>�����Y@E��+�t���=G=#�f�f�������Iܭ��lL�L��P(г�!���7c��[{���-f��Kd���|��@}�S/Ǡ�ŀb�b	��&�H�Qn9�:;N�Շ����9X�H�~[Z@���s)�9�����s��/����f���px���yv�-��6����j�@���#���d��P����֤��´蠳��K�Ml��g0�z�W �1G�b�p
+f���1�
�r�]v�ۤ�,��o���a��bd���DJAUk�+������1�##3�ƅ�;�W�·R0�6���f�SWÓ�q
+f������ϒ��=���]&�ٔ��V@�B�f�W�#�Dm�#Œ�
+:�J���v�m��(�ʹ�[+���p5�G���O	ߤ3sEس�\��x���	,M�<�x%U��!�E��x�8SEس�^W�w���v��
'�.�KР���Ʉ[��=�3S���@+:{p���R���
	�sq�������3U����|�����$Z�V���;sC�ٲpF���G9eM�����)$��j*�K�<�`�RP&.��u��
+�QG��Br���]|�&��K�f�>���PokMQ惛�.��j~;�[�5�I������H<x������ӄ0t�:��E�sn�Q�lPA�����P��� �� ��u�c��t�%Ь�rC�6%Fnqd;��/g�����=�5�Yqw.�tܲn���
+��
+Fvj��ٲ�L��t�:/g����x�x��N�Պb�,4�`(pu����g���x�8���߾��l,�z��Eg�MkԤ��`��V@X�"��v�s����)" )(�xp��I���5�D���)��
+FQ�����Y��](����"���끮���G���>��DKI����r��_��`l
+p
+f�0޽�n�)y��yt�F=5iA����و0�_;.L$�֖>M��r�ۼn�Rn�IH
��P����p�	V(=���s��ox�p�j�JAƃ�O
G(��/��v?���`&�#R���ܷ�x��$?;!L������t ���`�='��!/�Rbn^r?�c���� '�d�
+Fvp�#�F�����Lrl�T�.{�i��LF�$�&%o��D�7ڝ���lb�)������j�����[~�l�רˊ��bI��Q@�!,��������g��f�S�BR���W�]-5vm�_�T����j���&%��F�&�U&��}�<~Z�܃w��a����P_gsu���� @Vȉ��S-�39I��gl2+w���E#�q6�߅��h�R���MU�9I�7/�@�h�'%)@(�/�}�xɲuV���:�m��Z �h0���PQ��u����
�@@����`r( �Z�t��G@�C��OF�AWk]YA���>�ؘ#N���j���G(��F���{O��&�U������!-|�zD���y�qa�.���a�f9��I��X$��6!#�<=�C�4	e�1���✔ػ�]��M�ԗ�p0�����	01�O`���t�^�ڠ�� +1�֕����Lt�-�F^Q#��OА�c�E�4V��?
+���q�v�����/L'Bb��%���t����GO^4tb�����/�B0x�d�-u�O�c�z��ea��"-��J?%`+��������]��^��W���- ���d��#C��9;Z��T\"�� ���`�xb����~�	��M݃op3��"2�������@#�w����ޭ&���%���L	X2������Q��� ?�������7���Z�+K�ܼ����b�j5Y��L��&���$$в�K��ۺ��?<)���0>��)�2�Ya����$`>G��L�W*I	�1�,�?g�  �a�S�6���}��Н���-��"�����������G!�vm6�V�����M�\lxp��m��Ayc����}�E�4'|h��(��H�'�����v���TdDa4����TA��
������!�Eխ���8S�#6�d`�e�YfRl���g]��l6�Q���ac�����S<8B�C!Y`�ܯ�>�y^�އ�a�B�`6�B��@oW[S-` +�ax��n��n3�G����n�F�"f��m����h|�T��
����lm�)G��p���ÎM�Q#`�����B�m[E�ય�tp�t�!�.��>�����
�P��P]V����9��o�����24���`*�Ja�2�����g��rJ�=�.�@m�����y�ӌ��|θس�t����� 4��fOq4@1@̀�]@JUo�|�hDz�
�P��$�qLX��7`����@[]AJ��d���f@��%�t���#{�q&E�0�F��7�}�����/�r3�E߻~��������P���b����L�����=��=�����|�H��x��-0����^�@S]U�����]>�ؾ=V
u5�e�yؙ@i�d?�PH��������)"���j�����!`=]�-�u��%O�
�
	�9�v�q�V��:*K%�x9��GJ��x{�!C(�|��7�h&��hmn�.�Hyl������NK�u�+�|�,0+���h{�y�=�v�v�AG���w�5�v��TS�)�O#-dh2���L��yq~D ��u�s'��۳}���ju%Y�Z*~� |�����bpdBvQec{���Sg���O�H<!�@}Mŋ������x����K�ݝ��l5_��JMAZL��0�*4�@#�0���������Y��m� 9�;ɝ���(	��I�S��K^���jo��./-�{�����~����.x�vڳ��d��
+�%�<0@~G��|���d�Ӊ����3��j[�@T ��$>��S���D�@m�?ɴ
+�F[�ڛj+Js�R�b"�ݼv�缇�'��f��4�)�J/�fg�G �`�3z����vGW��и�����`hv0y���|z��-л���O�3�@��e_g�-�NMxz+�����S·�[̍��V��K�	�q�2�QSR@��`@��t�������y�;��9E���`v0y��O��~�jhh�ի�o޾�c�8��9(av1|��y~vr\���@����]���mmif����� #!������F�F�a�Q�6�jw��ͨǙ�ϫ�
�p�]��QMVH��������?8@@>���%Ώ�A���W�R�"aMx���AG۝�,Lׯ��PS����dc���Ԇ0'�F�3��b ��������Op��Ԝ�����W��H�7~#�W�X�(�:�Z[��[�:�z��'y"�ߓ}�G�0�q)(��f@PQ��x�N��9����l�6����\��(�DT������	H:0�0�1��R^e��f�����2��V5��0�����|ۏԨ�u�Ѯ��OU��U�u�-�]}�t&10��!�_�I��>1:������03>�߹�@M���@OKc����$@�DF:���`: �a�p	.Q��7��p�̥��O
+�jۺ��U�������9r��6�u���(�Y^^~aɋ�ڦ���&�u�ԡ�&�@�t�1��!����ïy���aa�Ng�����qa^.��=͢�ca@���/.��c�e�A�����Ӟ��6��A�AA�">�������fx�������������_R^���������u����I(�@�� g��	�zZkJ��_�:��f�5��Jr�"��y8٘�@�60#�P)�0q��ʪj�۸���i�kwc2�J*�U��^#�J��Hr�1���?�����F���'i	�G���ED?�O��-zQU��\��������<���C8������@��ީ����E�տ@�ֺ:Y���T���&�r�fB(���l<�KW�l�}����F؃�̼b�������aX���z�!�@*�/�F���W� #D�+�e�<�z38�����w#$��<��kj�B~���O=;"u��nq�����;��O?��
+�����Ԙ7��t�+H���p�23@X����L�L�(ѳp	�/U]��|���S^Wo���jem#
+�K�^��I�F�(�k$*��ZG�+�"�_�>�q��I��.��ޏO�~Cc+h�8��񝇄;�Sc�������PWSS]S������(SF�…gp����~�
:˖��s����B`��I����09`b��R\�c�y��1�������'��eU����nH���[�v�������A�d��`?v��+r�a�]�%�S��s��w<p��i�+�w�⒳�ʪA`�\�������s0���� �8E��ťeUu���l*߷ ���h(˅nۘ���������4�@�������Χ�f`v ��JÖ���O{���G�9��/*k�Z����HX�'����ߌ��k��
���rOwg;��z<�]q������[6[XXZ�ܻ��)�KA�#$�?-x^����k�I���!<}H�� �j*���d���ed�<�jh�RFv�V��ܸ��BN,ee�F��� "F��$嗭^g�m�~g/����1��O�
+K��	�ͭm�]�=� ��$�c?��z{��:;�����U�ϋЫ�
+�<���aij�VOWO��d�]�O��		�yC��u�0�`�O�a��=V��Ax �4t����=��?6�UT^��=8u�[`�M����J����;�m�JyQ^dŜQ�T��Q�����s����rm�m{�;y�������q�iYO��������ohjni�WGGG'��AB�����P_WSUQVZ��¤�؈�7�}=O�F�MF�Z�T�UԖ��1�`�����W����Dp�5x�<��0�x�<��|斦��j@]ޓ�ć�a�C��߸���_V��38<E`��:��#�<�ؘj)K,F�U�&ք3��DXT@쀑�[@LFi����V�C��>W�o�F=�OJ�|������yYyEUuMMmP=&��Z��UU��=/-.������at������=\9��j�^w���������������ƛ���;v����[a�딠�56�;���6�tz�������PW[]Y��� �@\t��kW|�<�yz]
+��(�YY][�˩y�b=<�Aaƃ�>�v�ˤ9�a�39|$��_�����GP\Vy���
��8r>u��/�Ɲ��ظ�I)��9O��������� �Y�Ӝ���Ԥ�G���wC���x"�֛7�C�+�����	�K+���54ߺ���w�c%�����(���5 4�2�t�ѧ�{QZRT��4;=%���k~Ϟr9z����ng}��>L{VV�>5�ݠ-f )�m����U���
Wɋ�n��m�������Ϟ�3��������z3K�=���>�s%��ͻa�1���SR���3H��������� &:2���AW}/�9�^��“4�����������W@t����
��Oa�XK���>+(*�4T�A���`:�U�e�����IVFZrb���wo]�>{��A�=6��;w;v�p�az~yC�T�vC��Y���y���]f:*����&o���,���@����+(&%��Bk���f+�}���N{z���߸y�nhXDdTt�}� �kttTdDX���7o���^�<s���~����պ����4�]AOKCMMC���νXXBVI�ݎ�\܁��"�c>z�������0�x0��́O?%)!�a����{�C��_�:s���]V��L��L̷�8�x�ߍ�(���n��w4���"oW{˵�e��k��������3;�������z ��b�����Qg7����{y�^�r�? 0((�&������W.�z{�?w�����}�{vlݴ�p�.�4��RS.�X��b!
+'� +u
L7[�q��qe-������
��3�Ǐ����~-��e�gO���ذ^Ok�ʕ� ���?�p��I|�����[P+3޹���h����y�6���j!, �3!�-)#���JG�p�FP���������]\�N�{x�>C���'�\]�=t`����;�o�dj�^�+�W�l�hw��9s�̝7��r-p��Lq�]{	�]��{�j��뀆{#�3b:���B�����3']���`�Pg���\UQn�������V�㞁a�k7���q��PgSeQ֣{�g٘�,។]��&BX�PR�C�����SR[�����h�����;lv��wptt�������`��v�͎��,-�7��}��vW�����'�3o0zf6�	�C`��Q�'=�x.��f:~�}/"O�����;����j�4t,W�RLXXXl�����;g䵛"����}�I���آ���(+>,���Mk�a<��ĵ� "�#�c�Y����������������7n��lii���f�M��6�]�������$/Cz����h�+LB��Y��H�(�,_���e���]�v��>�������p?L���wﴶڲy����Z]���r���8�x�EeTVm�w�1��[�w
+�>w]��mo�,�~t���r���(fO�Z�i~�������O@HTBJFNAIEM}��U���ut��֐HOOWG[k���+��T��d������u�4��u@U3�:�*(k��m0۸y��a�^;��L�n�]���`�~������Քd�ą�y9�X�����`��+� ����
6Xw����5G�b��,�S�b��p��8��SC�"r�a>pjZzFf6.��B"b�RҲK�����UH������ �TVFJRBLDH`1/7|�c]��"~�u�!��s�!��l�ƪ��z��SR�!���	��Wi,_���(�Tz�8���r�hX���T�k7�x�������$�������W�mF�����0�"���4!�������o1����������(�����	�/�����`cef���j}�$m�h�Y����%R2K��U!
���5M�ӗ�^"!.*,�|��i��U�|��"�S)��
1����������g��=M#��{;�����\���T�0�:�<��"������T�4�t�L�,�l��\\���<$����`gcea~O� �����h�\�sk�¢�K�e@�?�xPӑ[*�>}�/7;+4*��9����AZk�U���98���򴤲��{�������zې��?��-J�"�-��k�JM���Y�!H���,,0����300B1aB���@OOG�"�������G��$�Ը�y���DDF0!A��sB� ut���:�f���ҪZ��WnE'fb}�o0��$�y�ͳ�F[�ۊ@��LKI�I�(͚5b	�1��4w�a�…���TP��B�>�>��ys��@����'�Cd��Ѐ'��@��DM}��:��(�~Ac
��
+|��ǥ����J�ۺ�_�~�v�����Hw+:�[lq���[K��*�:��?CR𑈖���;���p�@|$�1�Ws���`��]��
+J�����$`<����_�k7�}M�]O^���k��G8�fO���nXO5q�1:�>��Ƀp�����Y����R,�h��+r�i6Q�����y�HI8����Y��A�2�t�<}��F�άY�o�R�|���畛Q��%u�H����m�c�V����Vv����Q7�x�8�@[rA~��p,�;
(	�����#_�F���0�S�AMg��c�}D����u7l�{���ڽؤ�g��X�H���c�V;Ѧ귄7+�+K�e����ݶYl��LK5e;
f�f���������7�3�e:����3�߷�e�X,�TM�p����WB��d痢���h�망����X[=�fE]ei~v��pl�����Rt����4�q��EMο�3�3��Y�`�[�0��H+��7�n��b���G�����Ɩ��m����z���5�V��VV��E��G췛�T�����V}�x&���v!5=+�������f�}�g|�n��/��K��=H���'��$���ݝH[�����丨�A>g�	���Y驧r�ſ\�i:X+�<
+*:f��b2*��M��p=�v��䗔U�64���uV�t8vv ���e����|Ϻ�E�ً�y�S�������
� *�;�2�������0�8���h,�ߪYޒ):m�VS���ZbL��P�,�(.�df�}�Y`(�i������Y)��@AL1�_��~����n���{س���Y�����n����&�s�ߗWHZ͓�4����������\`zblx��
&+\NG��l�>{�6��6�ƌR�	)��j��:	���7��O�f��s�#�U/--��u603����-\�R�͊eRP~��������%4�,9�vG�z������n��abj�������̧������~oOg����͚
+�=?�b2��#�>{xH<�V�{b5Z}��b���U�646��uty�o��GF�|Y���}o<�o�%6�Ŝ��j�
+c���쿄п�o�*4^�7����{���[۟�|�y���G�Uwuv���	V_MNV�2��x��x���m��ģn��;��U���Y�����5u�w4=nq�#G8��x��u��3��]��b?#l�X_�P����$�if,;�܅��+�W�kjo�#`դp�s]�r����3�tI?J��Z�����[Lc��
+J�'돦��,k��|�b+9��'�
+�o%X==Y�T�e�[�C"!��%�՚D0oq��u&'O�њ}�� Y=3Y!�
+cX�����*0o��:�z̔yrp��t��j��G�{+�er!t��Jr�"?	):��U��'$'%h�S�^!�
+c�?�p<����ޭ��&�+��<YM�jR8�����z�쭄sh�����&�+���x+����b?
,��b��+�]#y��/��u[h�(��!����I`h5WV�����[	2J��ޕ�իd�@8Jc�oC���p��M�zX(ƒ��e5W8�T	�l�G�p��¶���#|�a0X(��&�+
+endstream
+endobj
+
+1262 0 obj
+23397
+endobj
+
+943 0 obj
+<</Length 1263 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 518
+/Height 361
+/BitsPerComponent 8
+/ColorSpace [/ICCBased 506 0 R]
+/SMask 1261 0 R>>
+stream
+x���QnܺDў��߃�8�
��ݖ�Ij��u�*8�������;x��������o&�����w�	����������Չ,���+�L�.�F�:�\�V�B}�R��3�op��wP��tu�.�>�)�r]X}:��ԅ�����?R��n�{���ΝշxB]��P�uM�K}m������G]�wW��M݅|��p�yJ��?	�q�;.V���_.�Su����^W�����N!QC����՟���R�R�3��K�՟ ���R�Ш�<�Z���E�O
�P�p�����_-���`m�Ǩ�$�D�)Ï������w;��o���[�[�?t�B�����_<�U�q���=���&�������z�G�|���[��?�����U��R�w�_��F��|��	�W�q�	ua���uO�k�=��xE��~�����>��.vP�b�u����	G���Տ8^�+,�~��Y�va1��VU������x]�v���=Ƿ�������\�.���[�_���nĻ�����慨9�ꚼ����O�+sg�m^Qw����nЭ��8Fݦ˫p��VV��u�������]I}+�+�]���J�שwj�q��V����d��N}�R���O0����P`u����R�r��`Fu7���U7����V��u�PW�E��Q���tS����h�S7�Y�\�T����DVW���8�V����,�W�1�vPw�1�6Q����Q7�O��l�.����������l���ձ�n��Ձ�����i�����il���'�Q�n�o�C���쿥	�.��Z���ԕ��:��+�_�l�n�.���������������\�
+�����:�����Ou��U/���<�n��������z������P'pw�|���`�Q�c��"��K=��1��^�7u�����M��o�5xSg���z
����K=`� X�Yԃ`�fQ�E���E�`�����0��s��o�����0��s��`����0��s��`����9�`0������0X�s��`����E�`0�<������E�`0���9���9�`������_�xg�,��E��a�xg���� ����0X�����?"����0X����w����_�xg�x���xg�x���Y�O΁E�ؘE����X�-�0`K�ǫs`�6��X���d,�N,��ρE������"�l��9����<��������"����9���:|,��Θ���"����9��k9o,�Z,��E�`����"��Q�`����"�0X�~���-�Q�X�E�`�����E0
+������E0
+������E0
+�K���,�Q���E�`�l���,�Õ�`�fv�"�iY����(���"�0$�`�&T-�Q���E���΁Q��J=o��xS��/u�X�~���C����#�:����u$�7U��'�H�n����թ��N]��Rgp/u����F���Z��]�}��:!�[�������W7�w�9�n��s�\]�O���\]�O���Y��ϩ��Y��ϩ��V]�O��V]�O��V]�O��S�3�S��O��S�3�S�3�P]�/�c�M�믫��M��?R�������`u��T��&�:?@!��.?F�"��.?F�"���"?L$���?R�%���
+?X'���
+?^�(����>E*�z��>K�+�b��>Q-�J��>W�.�2�¾B�1�ꪾH3��ꞾN�4��꒾T6���ԑ̨��F�:�t�b���̥n�X?�,�>�����M<�������R_ S�t����W}�Kե;��8�שw���NW�J�[�������8E]����p��VV��0u�!��*�G}I���
�����O��s[�a�S�����|K]�wQ��_ꎼ���������|�����"�C������Oԏ�����B�@�[����_
+����xE�j��ԕ��G���0V?(`1uiq��}��[���/�N]K���̢n#�P?C�W�s��#���կ������	\��P?R�
+uӰ����;���8K�.��~���˹�F�O���".uAWp�s�I���QP�뫉�
��ÿ���D�b�>f�R��!(�s�������H�<���gs�ۆ�?�Oԑ����`��a'w���9��5�h�pQg<N`u���ُ���.�b�>9���8V]�{��
+�A�Q_��u�!�a�B][}=��յ���n�g��u%���NW��+\�������Zݻ3�oP�;x���P�q����\�Vnԩ̫n���I��n�s��,�.�#�Y�����P]�ϩ�����?W�pwV��O������G���
+endstream
+endobj
+
+1263 0 obj
+2565
+endobj
+
+1264 0 obj
+<</Length 1265 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 23
+/Height 23
+/BitsPerComponent 8
+/ColorSpace /DeviceGray>>
+stream
+x����$���g
+endstream
+endobj
+
+1265 0 obj
+15
+endobj
+
+937 0 obj
+<</Length 1266 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 23
+/Height 23
+/BitsPerComponent 8
+/ColorSpace [/ICCBased 506 0 R]
+/SMask 1264 0 R>>
+stream
+x���[KQ���o)�+�E����A|Ph�[jRې��'3&�\f��-��-B$��ĦI+&��_�fV3�%�A��l�^g��yI����r�B�f��K$��x6�M��ٽ�0�C���8�dY�L&��߃jS��h�W�͛���KWuNV�'ˍ����G�aՂ���o����ϼ��+>�^�PB���C�ѵ!���(^��SK�"Q�QAȝ��Fʜ�*�Sw&r�'R\!?
��X�ŗ�&�G�G���%�B��
+�#�`0@7�P�s��G��ugxaY��?G���_
+����G�@�6R��8�C�sYش 䧞7\�����yZ{�������?Bn�l����@�s�Y�t0PGDI�з϶Y�+^v5���;,�<�@����7?���>��:�)'����Ì�/��Q� ��$��6��7i���/�����������O$��I¦!M=k������w��;f�P�܉V�e�#��8R�T*�j�V��P�zh�#�pWQ E;TM<�r���`0X*����%�Ă�}
+endstream
+endobj
+
+1266 0 obj
+538
+endobj
+
+1267 0 obj
+<</Length 1268 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 113
+/Height 46
+/BitsPerComponent 8
+/ColorSpace /DeviceGray>>
+stream
+x���}PTU�����|���
+��%
+�(F�hja2�9`�:���DX)�������P͠i8���H�Q(j��	����ž�ۏ����[�?��{�y���}���C�<����;�X���c&M�aeh~�tT�HVf�_P%ʓnF#Y�ć��G���\=<~-ͻ�h3@���t���DŽe��^��v�N���2�����"[�2�n������4�%n46�aE���5fC��B��n�K��"¹Y����)p�i`�x#x�OO9dE�[D�H��s�t���_}z�<y�P��y���D�a�݉^�Q����D����������I#��T;�O9�'OvQ&��|�y�n�6ϝ����G��}�����{�"����a���Ľ<�%�6�[2�=a*MT�xɦ�v�j"��]*rM�
+��f����[+�j�Z'�.-����5��������x�R�2�CgԼ�p�2I�����oPT���+�)�	�#�W��V��{y�U�����ףl>/�����!x��@�/��P�ΨW���6,�d�ϱw1@2��x�F濪Մf�V܉ۜ<DE�h%Eg7��s�|����Bm����<3��ˮ�����-�˧Qj1��Z���m���=��'[�؅]��/�Ҋ�Ȗ�ӥ^�I���^ĩ�r��*)?M���I�����"<�3M���8��i��+q�f7�`�7io�bW��;�nr��T����p2as���lCd��1'�+�y@�c<���|T���_G��U�Y���~�$���L+%��(:(����Q�/����<��N�U|2S}ه�_Q��B��Y�gó�/��"�Ϛ��r]I��vS%;ks�!��m�5B��u򍳶�`��*��V�۞����Ng� ����H��ْ����ɍ���#�H*�
+�w��DgNJ`��eL�T�Z��Q?K��4Pʮԛ�`��0A��
�����?�"S;�ދ������Y����������Ѽ;�Bf=�j8��I�{�@)�����,e6!^t����K�Kr�����a�����2;V<�GX/�r��H�vc���ǀߌ�#+�V؀K;v�a76�Q﯏�y&}����ܯ���aU���i�I·�/=2�`g?Hɏe�'��1�M{����9�C�Y�V+�5�W}�I;������9T;%��"{�:QT���]����8>��D�Bs,��b�f��`��[��lgt`)�{����o:�
+��LTF1.p�V�3�suG�;P6���J��MTb6#o��R��X�y��_i��B��}��Џy̯F�6y1@�<Z���f3���t)*��GZ����e^�<�Q�M�@得����Gj5��xk� V�^-O>X�8�S�� ���7Ñ�OMR}"L��Փ����i����btt�i����8�͕�o�>�T�fŴX\ז���z�$/oGi����{�/�-`��Qߠ�EX��]��ſ�����|��X��/�6	�r��
+endstream
+endobj
+
+1268 0 obj
+1539
+endobj
+
+934 0 obj
+<</Length 1269 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 113
+/Height 46
+/BitsPerComponent 8
+/ColorSpace [/ICCBased 506 0 R]
+/SMask 1267 0 R>>
+stream
+x��ZyL�g��b���@ۢ�x�"
+^�BQ��1�I���%�Iw�1Yӵ�&�d�����]��Y,� �0���|sq3�� G9���d��y2O>?�r3����7���������~�v��q�q�z��LWq�ڵ���q~�
+�2A`�ƍ7��_^AQiYE�R��a�2��!�����~�ɩ#G���p!����:55��,�B� e�ʒ2�?�����wccb�;VPP�h||tt4������N�T���5���U5�.]>|�������؜��'O�LO�����R�1��*����N��6����w(U��w�
+4����2C�*��h��
+�F�h27utZz�##��]�����g�%n�(`Q'�
�6(T:����j�v9���#�.^��/�ڵ+%%eǎ۷o�
+�d	���Z�������a_ߴ�i�XC��ݻw�ܹȄt��Y�Ikjj����R8� TsSs�����308�t:o߾�|&''#�;�@�B�iӦ%���A|ŸZۨT�!���������;66>88�������! ��(R:_s��m۰/����6k3�)�Jk4a`�C�	L��6ۃ��~�̌N�]>�R���>0	���#qt�j�֭yyy��d0@�
LzLkW��144<11q�…��4��h�r ���Y���P�F�*�
�Z�-�7o�[|%�
LL�m����ojj�f�EFF���0@�Bz��a*�st��p� �Qhji.@zz:�Ro4A`��&��>���:ZXXZE���k|�}>�Ɣ��&�C��LV)x�n�
J�����n���
�����			h�X���n�'i~V>�-� �����+��k!����g�?��4�LA�+���s?m~ll��+!4ya� c�F^<#���ק�h!0�ه�h�N���b��؍Ɓ�����\�xJ���y�Q'���D|]�<X:���J�����<0���G+�j����7'p��ֶ���J[r�ؿo8��cbb�n����ǥν�6/�:2/I`HaGܾp�<>����������d4���A�U�*�����ԩ��{t�kh�D&�BШ����uI>P��IH��<�ά<`��(��F�Aon���)IM�z�Mղe�:�e���>u͜8q"���y�p��CJ@�D�
���!S@�UHl�={�`Ǒ��v�.n��QO0j�⋂��b��a�F�keYۊNA�b�E��H�����ţ��nٲE����6�Ul�ظ�q_\%�Ԟ{�	�y����h}}������W^�q\�x��az��v:�]�J�4b��/16b��G�Kh�G�S@&�Q{1]0��G��y|�I�X-Bm���!����EFV����8��e}�]����o���ѓL�rl�ڣ��D3i(di_����s,Ŀ�+9��#�b:���Zj��:�z�*'G�o_~xx)��q��a�X���;���z�2(^����X{�T�2�^�N7�M�4>mL���"�|Dw��"qd�ԫ�ZmcUVVqbb�V��62Һ��a���ffN�>`Jq����D2���)6����]�	�ȧx���J|b�d$+�-�M��h4���-5��o�c�j��k�Y����f�Tmm�ݱbŊ���v����B��Zx�T,W�Ͱ�rh�a�Zb
+%8 ���rA;+al������WTל>q�����W_-�%Lz�k���s�sr�֭[�?���
+�Vtt4�
+/	X��2I�J�b�����`4��эHơ��UA^�f��/������8p�!3���!=]ŲM<��0�W�LL�-.�T��$���%�V,G�$�_�`��˳X�b��8�&���1����#\"�իWt�Havvuz�,)����͙�p���(�ͦ���'J���J�U���"��pM�#����w#H��oq@�'�y�A[F�b
C9����ʺO?U|��,&��嗕aaF������k�ܹs��!H�h���G�U
�GjO���G(o��WTr��/$��u�������C(+���^��}���U�����6YZj��X
+�^�R��	�*�}��PB�������~{MƎpm���b�޼��2�������[������DQ���]$1�x�©��]�NרTU;V�aC!�T���,/�C_}54�<x�` )��9]���n���w͸}V��Ys�<#����KX��������ʕ���u�͋���}�b>�41�Ҹjժ96����L
+�V(4:��/-OI��
+�Wp�i���U��>�`��o��Qs�]��a�L
+ظq�EN���?�*� �++*z��"���y
�7�l7Î���}hx�O��&/^��Y��|�֭�I���ĩ��gqq��`T\�\����|y�A`���g�z��H���/^�"鬵( 3އ��H�`4\λH'C������*MH��$����&��|�?sf��:~���FR��A���-�/��j��7�4�r(u*�V�X��U��[����y���l��NAh�X��������d�&��R�Z�Y0C�����	��wN��WJ���F����`�����.WNN�R�	*JQ<���LJڻgE�_���Ň�F�0Mӽn��`�v��Y�&�~O��Ann�`n�Y�Z������W�N��=�?�<y�W>x�(.)ѵ��V��Z\V����_�\<�õk�.[�,t{�������
+endstream
+endobj
+
+1269 0 obj
+2778
+endobj
+
+1270 0 obj
+<</Length 1271 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 600
+/Height 360
+/BitsPerComponent 8
+/ColorSpace /DeviceGray>>
+stream
+x���1��� ��go������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������x�ڥy
+endstream
+endobj
+
+1271 0 obj
+232
+endobj
+
+766 0 obj
+<</Length 1272 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 600
+/Height 360
+/BitsPerComponent 8
+/ColorSpace [/ICCBased 506 0 R]
+/SMask 1270 0 R>>
+stream
+x��XY��?����ݴ�wvv�3r�
+"�a�4�1g��Ā�dPA�$AP@A�97�i��D�c��t�q��{>��ZU�z뜷�Ϸ�S��ڰaCLtLRRJJjbTXpt|B腽��\OMMI�4"##3������W�a�W���ܤ|:�σk�O�{!�����������_
,��cb�/X�T�P�B>�A�����������4LN�����D$K����Db����g��q�)m���*)*78Ps(!��7�%��!�@������㎎�&����QE�����׾���w�CW��aD"�A����|��:v�jge�����,��فo� ���;��4�d������X�����LQ�F�`5�o�%� �����H :��4Izt����p`LNN��d�B���:����?�&ܹ����!���|���br�R�'<.�"�Y<����8� ��0�*��v1�Ke2T*��F)�3�4��]
�ЩT�`����9l:������Q)L:M"���+�����:�pa���9���-�H��Y�Vֱ����x��#�?��ڷ#y��,SQi���d��%��ܪU�]��9o b7��2��Ȯ������#��_l'H޵��Gk�����Y��;�*|����5�J�U_ֆahV!~���UOکjvb��߸vq,]��L����'R|��(������~��e�֐c��I�8TUM�C���5Vԣ���M����>g�*R^<�fH�!��#��%���}sY� [:#�o� 
��5ţ��,c+��?��CWw��J�T�^��4K*�ut�F%����)y�WPہyM���Q)�Ծ�3�Ӄ��d�� �
�?}T����#��?i
+�5��=�p5��̿�Bv��'5�bp|�F9���|�v�����)���jg�������5�;�JSa���,A��g�]��q�L��Fd�����C���vѥ�F˨��Y�j���K��R��W����.#�el|�����^�A
+!���Q��ol/MUo6u��3�&U�}�w�T����*��0���N�[�9*�+��'!h�}n��Xcn��b0&��������P��]նo�0���]�m�w�hk��DbqO��C�ϠY
+ioe�E=}�+|z�����zyFF���Ԟ�hc�/#�����3�7߳��Wӷ(h�Φ��;Ft�?��`l�kf9�nQ�È}�^K���[�P���`�xD��n�ww�O"�n���Xpa�]]����t��%�޾����n�q��y6�%�7,*9Q���F�C�8��J�:���W��t��]Ϗ�]���s\���� *E��~ps�ڥ�=g���h�3�J������/X�W;�8��6�����ɂy�U�d�`�Y{{�i3�z�rۥ�p٥V�XI�ʌ�lfjncu<�e���$"G�]�x�xHR>� C��]������|����
+$,������Կ/�s���ّ�,�Eltq��Evz���n��b�1�Y!�a7.,�i�u&"OG�d��#��tu�wz<n�+%��L�}��������K�Ć�S�'9-յr:�B�IHm��u�/�z��<���^I�C�Y�7�9r芟5���Q���U�+���nh&‡R�+2�ii�͵����VƖ��R1����[��n��޽��n�������7=����<��*!Z��s�7����%m=1�vM�6�
�Y��Ymߜ��Xfy?�B�������s�=Jȣkޞ�	8,��;#V�����;s������Q7���xh�7����7mm`F?|j�ƃ�XgحG���9K_4����{��P[�e7��z��Z�:�E%&�u���UQ��<���ɘ�����F'U=����+����������xWxE
+�k6��*	�J(���ݖS�T�0���>��
+��[\PE��8tBkE�k��/��]=���Z�T�[�r��M��
��5�3�2eR[U���YQ/�qQ{���:4��������$�X�o?��������W��{�J��X�>Zs���S��k+��嬐��+�cQ}=7=�:���^w���݌��������v�Y�w�'�;/�ua��Lf���q�BH(�����"9ò��&_��{���<q��6��M�U<�^���������R�d��j_��k/������^�PG���_�~�FrGgcAASH�w[8w����0��Ki���մ�Y5���%S�E=av<���������u�s�v!&�Št��]�?�|���)��39��Q�~��*���ԙ�~�o�;Fvaۮ:�](�J����S����e�WO���A��1��}�&�IOw7f�)�����V��<��4ӵ�R��lH�}����m��a�0P���cPR}{WO�@my���ls�[�[�q�����:�vlC�@k��P$����nWf.�klj��2Uf\�1uf|�������n�{2m�W^a	���Nu�덢+�-��f��S4{)��F_�r?#�Ε��筭��ncSơ�?o�����'�9��ݒy'$:&!�ƕ���.�?����@X_��k���m�"��H��f�=���K	H�Cͷ½p�x>
?K>��jmỦm6�:[��-��BTX��t�d����J�Ɉ:^4�:�o=�;#��	���q��t k��ɞG�_��@����/+E�a��T�6��!�!�{ɂ������7���S#��\�rt��r�B����p��v�c+��p�� p��$*r� �
+q�|2�
;��tN{j1		U�g“�ʩ�q����X��Ϻ� ��,ϤZ��
��N�L�G`�f]\o��zu�2��u�[�3�/t8�s�=�U��٧��C�n�q�JH�{�dT)����x�ᅃȊ��:ⴛn�gð��Fڧ�p��O"<���xK5�g���ޤYVP�l,��}�*|�%^>1{y�ڥ�9���/�Hb�^!�B�角�N
�8PWUՃ�x��#���NU���n�[�+���x�3<�)��&'����Fڞhu�G�=z�B]U����oBF���ܗ
]<��5�О�52FJ,3�_��������QQe�7���D���6��������b�۽�Jynݜ��¢3���k��K�ȡ�&��E��� V�/��D�DLP_��#�9ڛ���a!����v�7�Fkv��O\2�hp��-α��8E�����ș���\b�Gzu���y�r���~��:p����<���Gs��(B.���O+�f���*��Y�{�6!�ب�k��f�^��z� 6i�a
+���u��ŋW�=� +;+�᳊�~�;g�v�{�qJR?ڕW��^tb(�U��cZ�]�^������l��)��'����{�(�A֓�-h8�U����r�֟�ve	~l�'T������s�d�=+���2P9G�L���?�p��r:�-V���n����^������)�z����]gƣf��K��z��:XGD��_�>�z�
+�:X}��sz�fYN��5_�|5��`V�a��i^}	��1���=h,~F�#~Meb��/��=���|D�<�Iɭ���L�[(�C���w����d
+���نu�P�f��@�57���:���ѥ�p�$㒺�X�d�6�i�x��O��v���]O+��K�������=������s5B�u����~��E�go��mO��j�x�fIr\��pL.�'���B!��G̶���d��K��B:a>�ٌ�=X�~(�����r3#�
+��͏����X��zAlĬ/��LkS Sebv�}�7�eJXZ�!	��9�;���(b�B���9��^_%}�^�'�g=m���e���gc�����[�-�տ�[�ۯj�z��i���kQ�6=�]��|@�d܁�6�x1�J�T@rT��;D�.E.�=����A�Q$����_̫J��aiU��_,6��@���^"_����|����P�;���R ��m����.��"&�э�s���9�dz�Z�$(	��p���υR�R��VHd^���Ѡ�~�涜�u�������B���Ӭ"��y���;���6θ���Գ�)T�H(�@�3��'p;�bVw;E�
��X��?E��h�өJ���&�!�A�@,�l���[���NQ�;�1���QA�l�_hl����H��;��_����/[��C�H�dP���^��[��Q/�>��7'�y��������9�|.O�Z=�O�k�����=mhdlbfd`�nc(]���@���:��7�@�u�i����ewO���[Z��v�r�N��H<��`$�_ņC��X���X�>둒.�61���߿�F[�l���!Ƴ��g��[�i8�"�!�"���H��ĥ�kd>��d0FNr����*���s��lgB*b�y3c�����o�շ��������5v?����S�z�g���<v�Auk�Rioo�h}��b�̌,,�l���a������������:�Y�9}ѡ�:�`�a��6bFLĮku��KscScC��K�t�8�F���u�Y��Do����{����N����=9m�34u�9��'���κ������\w������x��r+�nz\>�C H%C7fmY����������N����ʱu3����#��y���w}�o��wmS3c�
���΄d��?Κjd�-���fg��21�������k}�M~u�K��6—��2���� �Jޕ�}��܅�����6��n�B�������WM�3����P6�$�d{�����.2�qmH;�s���+�2h�ҕ�y�,�r,r:���w�����&����q�I����ͮ���|4`������`�ḏM��z{�]���N�dq&\��A�BB�	4��2��S/+Y���ںv�_�8�Ѥ�׃>�����km����n�K������:�,m��L��R��;��[t�F��N���Я'�C�J@%	D�X)E,*�@ �*K�TI��������>��Ջ�*�J&��t����4ƌ�D<�D	׃�J��+�L�<�D"�Q9#URJ8L"O�pa�&Q{C&�	�BՈ1赦AR!�������KWh^���]WS��O��B
+	|P�R)�ѥr�D,䈐�ZD�65�7�vR������;M)�Ip�I��<�L����P���R��� ӇH"��9u
+��������k�/Gv�~�i��o��k��
+�
+ͅAĴU�5�
	�
+vW��t�G�ݽ��$*���fD	�7�6q̍
+["���4�����
��8����R>�G�!�H�it��:$��7��5�uQ�W!�Q���W���b��)�/2�7r�+�FI��	�����<�cY�_˳=IOA^5�D��~�d����A��1���c>�g\W�Y�3���
��O�g��"WPڛQd���P	M����e�	�A������g�ϟ�X� �����@ y���l�
+��Kc0�"�`f������
+$϶�c蜥���JN͉C��-��-��]n��
+?V�m������%�:x�w�������\�x�06��aZ��������g�����	�FGD�w�ЙV(6��d��]�|�v����%����������ٞ7/���a�#W �:��}��vs�_b"J��dL�:����?H<ېzɳ�L�Ș��ɫ��r���O���j@����Gɳ}7���M�n����ɥ"�\�|7��4ݺ���W
�����	�<�I-�|����Q��e]�C\U�ūZF�hx>�����$������F�1yd�@��E~Z:A����us�rh\����g��7��э�,����������
+j���r?��'��æ�>\�=������F�mda�Ic�t���a�/��eM�e����|�|Vy�]7!:�A�����f�ɳ���్�=�x������L���f�yb1�g[O +�B᧖g��1|���L�������W��J.����ܑϸ�%b
+�&W(߿��@�P0��@8�������X� d����j�D�C���MwW�~��{��p\����a�6�@3gc�:ȿ�v����ռ����3�o�3C��O������Q�]:���PWW�AV��G��i��獼�nE!�T����o��'�skҬB�
+�XZ�"X�����*��z]�;W�!���7�����|��,	>���m�-�o<��,�����G�u��<����Ee��Ħ�$ÐJ)��B�X�Pv�B&�D2�B.!a�P�(�b�fM��R*XĆ�&So��|ũ�bĔD�i�
I%�]��]�ho����T������T�t�����1�\]+H%��uJerHmGH�v�l��X$S(ƏH�b>���i]3EmV)����]"���#��[[�H�}�ÊDr�B&I$����'���CC1($�6��q
;s)����̖������v<�?�։�%��٘#�a�қQ�����iPGE�	��F����W�*qR>�s�|�)�v<z������z,�,���������;ng��4�g�;}DUjA�u�y3u�7��<���B%Sxdò����]�z�a�OjH�*a�㘓.{���h|u1�)�����?ڛ���@��Q/�l��������ϕZ
+�u�.�z��<�E�=�r��^r�ӳG^��u�E'���W��}l�7St-n���VC⮗A�����[p�YCSv��J���Gݎ:o�Z�қ�R����γ=?�� +*�.�R�R#�gՖ?�=5�aV���#� �����q�V������`|���j��r���
+հ���������~��6t�
+ϸ��c���f'ޜ�W��h�b�o~�(�4����ha�j�ߙ�:)��.�_��^�����߾L���U8�c��UK�\|���'���*��En{�7y�\M�������'��z���kH�F�_mJm��镥�8�@ȥ��*��d��a(l�:��{Z�x�[ln@ȧ`��oڞ\6��7D�����S���!�\v�����8����QN��麉���C��w�������ɳ�x�J�L�ʖ��}���wH����32���dL$}�J'BE��n�]�x������ٰ�Vu'�rL\����T��ܮb�"L
���O��7{'�X�����^˿�1�!��D���0�ms��HJ�H�����A���P
��{�?���mb�]�O���5e�g˅�#�h���'�,�q:2�N[�F�J�-�ۥ��j5��ΐڱ�&���Ō��B[�+wߛ��R�.���ڛ�����澺�:�/{q��A�?������91�g���{�Y�z��3�ak�����b��QfO,�p)|�*x�ě�/Gz~H%h��(�h!���1.k�����5k}��w�3�_�:�˚�NW�k�^�d>�E]ٺ}���e�2yP��2&n�ʂ�=}�c��X}7�h���k0li��YV��Ν�r"��������Ka�#��V;���w��	�/�ﻜ��ה��]f-&H^��ѷ���m�WG�+���n�p�~>��F+��+N�"�G�U���;4k"l�����'�M��-m��D
+�$h���f\o�z�4!��͐[�!�}����5�T�;�����#��&&5�� y�k��ʋ�32S���{�Ř�^����7�gP{kcB��R�����p']��k�	��%�5�v�t��ER��Gs��,n�cf�h�������^֕��w�I����&j����ׯ*xtp��������f�6�ڢ(��Ɉ{[ d��s�{���VIq]
��w�E��BJH.���E��<,���R�:�\���!��P-=���1���E<@TX%$_ws�iO!O$�Ɵ(#��)���G6���(d�B5)�B\�Ve��B�w�в	Ϊ��*f��=�E�v5�1w\��{�	�#B"�*<�_diiU���M���������y���Y194�H$�
+�2��'�c���N�T4�"�.��Y[{��o����mgoq��Ä�=_|�o�H|��r���}U*Uww7����JgksC}#s��b�\^��je�gbb��|���cuS��ぅ�Ӧk0%�1[.=vZ3�O�A��@O�=4�7*;Ķ��F����r..f��Y����K;G$�����-6���;�߭�A1��� ������7S��-9��Vb��]��A��3��4]##�_�}���w���A�`��B��,n}}}�G����|�����?3,�x�
"ՠ4g�Z<E��!4�V�^�����74��5߲'��坥G�ډ��#�/��R"o�x����G�t��������
+���>1`��i�<�cJ�fR�L&{2D�]:(�
+�L&���	�*D�TR���+=GD�xs�td�ZE��
+�%P�j+�RJ��vv���_�P*�b�B���yr�JX*�^7��T�@?ݍ��{A��Æ�%�!�e�Bfog{g/��W(G�)�J�Woګ��D62	RɅ<�&n�͗���K��/P��)E|j_���H_�$�W"U�V�7��TȂM�>c�u�dʑ�Bİ/,�X�(H�ķw�0�_�T�pcT*���P�d2)��i��˕�2����>i4y��˪�	��>��|�,����X����m�!������Y��>��Z>|O9	���O�����c|Vy����:�������:�`�D�<�|�L�T�U*�J)OJ2�I���go�����)��͟<�1+�������/��ai1{��ؗ�Ixypu��JD+
+'�2����>S`��t�!/������T�'{yTf�Tef��v��{���VM�e����|��:�ni�3y"����컗/wW5�0Dw�i�dܷ� ����>X��_`l�y�S*�O�ac`����梴&6��G?ht��x�-����3���������6FU�|g{7�w���������H����p�tp�2D��O�e����|����N�n����"�H(S��n��VwЅ���p�tp�ZK&�2����>S�<�w�R�X[�Wv����B�q�%�.��PΧ�Yt�����:���@��I�T�@���>3����뻼x�<�x��D����׷H$4�����l+�ʑ<��)�x7����3��[�����:�(���h�ilēh�ɐ���௓H��eX-|�oٽ���� ����|ּ�W��a�4�}:�ϲk��u/'�2����>S>�<�;����1n���	'W��&�2����>S4y��L�&�6����N�Q�d˧��;l(c3�F$��o`�Ǡ��=����� ��{��!lOo����-x�)�g4, H����K#�b��pt�ld��'P�o|7��QIDL�%Q�A��w ���d����Ģ�ilJ��oɳ=o^�����J�T"`��߰2��}/�S�I��޾����st---�����,��9��k}���[�J}ƲUS?���_�k���^�G�l?����m��K�4ec{�_��?��������}1�����M*�'{�q�p)�e�$��=e�"N}ya��Y*�/X��_�~ːJ�^]X�����f�{
+6==akiaj��c�U��n�G���ސ7��������q�7q�}N�8�����6�Țwu��b�[�d����7�A0��Z�_�oz�[󼎭����	�][����(����.|R:8�����������{`rNIaikO���E��GL&���(4q�J!
+���e�cQ�B�c�&S"{��x!�F]H�)-m�F�S)%6F$��/�J*p�"���J���dr���d����T%��
+�$#�� �X�D	D��V%�H��T�er$~�KE��؃:&j��|![����-��<.��{g�*�p`�,[���q��iGׄ籸|.G
+!-�9lu�ڋp�Ĩ�sk��4�-u��ÂK�J�Y8�f�Eb���f���Rp_se�G�v���e1`���M
+���Qr��HN���Ƌ��r)�|���'�l�P*S�p�]���p��P<r�#������"	R!H)�S()a��o�r��o�1�iOa�ݩs�R! �br�Rh���G�~��J��X��r5�)F(h<	���_}R��:|ZE\��L�P}}*j�N�;z����Q�J}�13*%�$��DȤ�m�4T�E�Ï��4��������Q
���-���g>�����HE|.[$�\~�ٍ��I5�Y��d�ڽ3�	v�H�������…8\��F���oz^Հ�\r�T&�
+�L6��)#��-e�%�U �g�i��Áu02 ���������9F���z����io^��L����6V���gt��vq�[q�l�o<�jfnlhz3��+���O_8��/���.�#��/�����7K��k_JO
+�x��N�д!	r{�RK�8���әq6�>s������?������6�|�`\�UQ��q����V�$������_�gns�@po����WK__w�smdѰ���a�B�YKvtd\[�r��Lg}�J�
+��=���ݔ&vn9��`�t��3�J���,m���J j��S�N��������f���{���;������\��.���8�֮ﵾ�f��C.K&��J..��e�93�����?�i�h5m���^'l��We5��E��7�/�7�[s��}�D2���ˡ������~��x�H֒��o�r�o�~��2�Ƨ�E�v��*sjmp�Fg�BgG[���"R�����ܬ;c�N�f|y7/���oh����>��3Xq��yͷ?�r�����;}o���s��͈����zlρb尪1?񐅙���\����5�Z�l9�5�qۈ��9�=�W,iʸ�~dIy7G<T�`n�ohd�Y7���f�e�
����'��T*T��O�WtXn9���!w�
+Hţ��>jg��=m���<�\I�{��C�c_�`��[NMO���}3V���P���E-���)%�ž;�j����8�f�����Q������:�9zg�-�y���~0��>ur��Z�|�JNMΙ�{

��x��Cug\��{]���7���HA�:{v�8��m:sAJQ?,rbb�ϩc���̬Q_��,_��^�F�FƖ�9]��-�.β6��:}���q�6
+$϶�c�����CC���
|W�
��
4�IH"���1_f�tp7U)Y�ǵ��v0�[)+�m��_t$��3q�;#�L"<���=��V������Ѣ~�>XY�1�*%t�P��m�\Bq���q{�����O�*k�s/	9�ʢ2� q�#�`�;Ÿ�LC�g1���?�:݇�++���n��ߝ�W�h}�X��{�6OB�q�+��^SMs?���{L�>��=/��x�0�}:�%cL�?�͌vޒ�?�%��q�*	1�y>���'
�k{E*�F|q�}ݭ��~,�H�
C��ڪ��� =x�������μ�>�N}��O�B�p��K��p]�ٖ�{bq��QW���W�\
+L�K��^ݙ�l���f,�����r���8l���!4���_�`�'M4��ݘ��R�&b��qn�*��/��ɜfn����	/����
��i=�Xo	���
��_�`pC��%�ָ�q�3>�i_z
����o?8�	Y�!lV�˖��A���ʊ��<�7��ɬ�lMP�ir�~��eQ�].JZo�ķ����k{ܣ�cR��;ǻ�Tt|weUc��X�0廟��R�]�Y�,����v9�|��H�zpm��G]l{��W���L�d6���-�/�OK|�,�P��{�H~��d�6����n�H­�jij�Z嶿~y�A;�����w^a9�Y�6s���2��Yp�p�O3��Ĕ���z2Dņ�oٰ���&��E:�H� ��8�ąY�8X�v�	�.�r��Î�0�خ?�E���Q5t{����kU�`n�uG��CRq����N�v��qg��ҳl }�p0��ϡɳ�|�'�ּ��)a����kh,�#/,�R�e=Q$�t�n���`s�:x��<�V.����܍�k)#�S-�|�:gh�v=��y�2���w��(������<�a�n.�k���.쟳��՘�;}C�q�CJJm~��+�i1S��-,�v��*�ও�}iD���q���������!k�>M����,[��904����q�����5:X|�G�F�
N�:��,�ԕ��w�Iِ���g������HG���'WN'���V@-��x32&���7��58��@I�ȇ���a������$��%߉���79'��5��+}�]LRI{���o�;}gd��z/5-��ܹW�*��B\���K�7��^�/�ɭ�����oI4�9�wn��/#kV��7m�8���;�mB�'
+�%��T�K�����X��������8�����X�)�{�r���.��{�{&>!��][G��!���t�A��Pm�R���Z_|�"�E�����+�]H�{�&���B��y54�֝������Z[��.���y�l����n����S��M]��Qٟr�z� ���&Z��m�(m�����4�x0���E�����n�D
+�W&M�[�U_�/<�x�{z��Ϭ��To�%M�;cR3���������{ɷ�]\��z�H�V�t�7g4��j����Xw��ǜţ�=�>��l���0�	ȗц*�=,f7�0�g���En������@$�v*�g;u�i�òx{��[�"�P��C';�S,|2:��a\u4���u
U%;ZW��4><;�hO�)q/�b�����b��������7��?R�݋J�?�a�<�N�[� y��0;�u��O���L��f׏7z��/��l��@�cO���ut���v���),8֔r�)����ϱ�w�)^%��ki�#�4Tua'�x2�}
�>�]ת������}���9H)�y�xi�ꟶ9e���ʻ�9:D�4����Z^�X���F]�*�Z�7G�35�3�T?w�=�[::���{�$�@��c��g���+�{�᠗�e��|3\���gGcqя�]�՝7��D+�Y;�$"6]9��{O�e����WKGM�/=���	�%�V���O�a
+���gutu�_e��ŅO�B� ��5��=�aJR���k�,+��[-;�y���#7��V�E�p(���k?��,�]�z�N���~*�"J	AJ��g�C�����_��o�hJNZ��5���נPٛ��K1���s�����ҷ�x���\���2I}��3V�]�WI(��pT�<����" 5_9]<0Έ�"*�4)�����C�����z��]yb�ǩ�')g�>�zzsۢ�����q)QqZ�;�j�᫱��Gf��J��yz��)�m�.��6�N|
+��ZS/�����}H�}t�g���A
+p0	�ˇ�K������,����� �&�^߲�$G�z;�����c
�������۰��3���Z�_Ԍa�>�H}��5�;���$L�Ә|���U�X�����kh"�-+8�̰�q�S�5:�R���:x#K��Ά�5C
+H"Iy�g��RHB!��Cw�`�	zMOc�}a`�j�\.��/�[�4aY���"����?w
+*g�W���o˧</����Ϭ�aF�����|�aݸ� ��N�s�)#%��`�w3�6��DF74w��2nG}
��qK-�<#ZT����S�sZEB��~��gB9�ėW~�/�3�R�|�g1VRH,G0��I)��}��QA�{��&�u7ҙ�klօ��B���h3��v|��$'KD� p�������!25BR�{�����L&���բP-��.���!�cu���5P���lm]�P�ګ��,tN����7tPFow������q���5w��i��gp�R)ė�u�_��A�����N��
�:�u��7G����?��kG���M�ry2黺��X�iD&�+��赆3L�^�+��^+�g-!i���ȟ���@a��2��[���yB~��_f��F�=�hM>UfFj͸�{;�Q�|O�r���8���r괒>ZO���嶬���`3%�
+Ӟzm���z��9Pn���Y�Cl�=�5揈"Jg�ݴ�� z$c����߮v�8�r�2Vk};�)��v�����s�/�}kY��I[f�
|P�uq����Oo�/������}TxL�&��]��8C�����T���f-�7�����?x��'-<2{9I:�	"Zf���ŏ�
+ٰ4�$<�Ɉ��i�3��?�gR�hg8�����/b6��NK~��8T���Rgj���1����F燠�c�l�<b���դ�A�����vp45�I.�K$����3�u

�����:_t�<�o�|_��_� :�Z�d7^02�Gi�Ɉ�,�u+2�)5��-��ނ������}�����k�x6����u�-}C��{�cS��h4\�2�?���:ZS��_S���w���s=vL�30�ә~.8S,�m``�n�f�5T��NW����U�=囘�M!&��9�Wsn֢�聕����Sg���kO_�� U��}�u��m:�F:b�*+��O7�k���͑+Ѽ���Š�US�V�c��o���}��gw�X��
���Z��a���������{�hM�"���4��1Y�)�9��|xa��������:f3��հ���<e����hQA6�����,�����әi}���=�wJ#�"dIR�Kt����bF�{m�������!���엫u��oet���7?��3���?�5��iȜ������M������*"U]42-��,MX;7,8�'ņ�_���g>����SO$!���P����~�՛w3�Gs�"�J߸�8�ώ���f{���J�8���H���t�⹳���\������O�X�!��ђ��L�-�dX�lr�e���U-�φ�+#c���Mc�"�c�dQTv�-�G.<�
?}��_1��g��חSf��jOs�Idʕ
+�P��f���7�=��H����h�YmZ���K.�qڣ�j�,F�ƜF���+$���t��
�u��#0��*YU���iZ��:�N���a�=sI}�+���;��u3��'�6C.�mu1�Ds;�@�8���>$��E�4����k�J�;�p-nJ�hk�;m�7��t=��9�m	�l��1R‹;3緰 Nw��9��z;��5��ɀ}��HX8�oJ)}�c���3��S���-M6�|���{c:��h��W�+��?U�d�hh(��ɳ���8􁾖���A�[�����ͳ�z����l�Gt����.���9J�T�����r)r��RJ�"!,�b��T��T2�<��G� h�c�V%⑽`$2��Ev����^����^�$|���	��r� ��5�J��4��M
+>{�`��r�8$�
+�}D��x'
+�O$��R����?�TJ�z�2)�"��R�p�����&���?0D��{�J�T��nH� ��D�
�XU�}a��ћ���G�c��D�H
+�A���B�D�Qj�)%C$l���/� �R*ඏ�P��1��p�P�j�N�4U&��H�72��]Sv�+d<��Ha�%��R�e�^b�����M��i*78H��^��^�#_�2䚐(����
+��[r�)*)�1_WD��]�����q<��)r��ׂXL#��Q6��
|��~L/nH:Zg�������|�u����Ix$\��I8�>�
+�Y|���#���`o������[�y;Cģ�b�I����?pQ�X"�H9z�ԯ� .�1��_����P�W�T�g`������H$BiL���P�Ƚ�L�z�F�(��_�2�?���F�.S��j{��E7��A����@���������;lx��������ʳ���������&�ݏj�xYщ�5�0ٌ�g���A;�6L�e����|� y���h�H$�ryB��ƧP �/�MN:�I�����v�������^�'3wn��Ã�Zo���5�&&�&�&&1k6�c����ĆY@����A�:��Z�_���ɡt�xV��S�����N?s�N�X0	1��� �i�-����3��[���յ4&ɪ��)J'<v_��%}Jߛ�y&������$�����j�qхMR4Y�y¡�7���� O�g�&M�� :��2������U��o�-h�aE�P(��XU��~��LJ08�:��� ����>��<۽�)�
r�v�%���_s��&)�t�n�x������L�u0:>���u+���D>��`��
+'�s�^)�4�Bt��������@
�g{�C��y��"�P,�
�-1��͚�Ԣ���ߘg���J���K�
���jl�x7����3����p��I)�a3��NM��G��9���5@����A��g{ҙ�qQ��;&�2����>S>�<۫��EM�e����|���g^��?��.�d�� �s�-����3����X*�%	�.�/�X�!�+L|f��� ���G?��{��tLU"�P,���F�3��!��[O$ߏ���I���i|ه��$
tv�1h,���#�1�
+�=�5���O$���C���	�l���2~���]��Y�K�Z9B�G�A	>��lCC��[v�0E�K�4:�WS�8���D_�`������'�T>y�,��J�z�6,�
!�>L��GW���~�^o����^<��ahV崆���9j��Ž}:ֳTbů�B��A��7<��	�O+�>�����>5`�n//nx��U2VΎr����^q*�®��'������A������.o�ڝ^7k~��2�u�7���hgⓚ����v""FR�H���R�J�"��3D"���Jx��G�4����&��bJ�N�\6�����K�^W�%p�ɣR��H�TP)���b���b�P�@LI�<rocey3W��Q)e"�@��x"�FVTR�����
�T6��*dbjgk����(�[ R��5Ǧ�x�J���,._5Rr�x<��x��2jk�a-����-R��i*kh#��$�	x<i�,F��R�Uw�VfShL*���������׮u�WRYB���x���x��W{KkQc/K8	���}>�;�{��h���yW�:e3��F�����R�㖆F�FI���a�� �çNX�2���Kl�8�^�5U����8tx��$��NJ|��9�-�B���\��%w�������r�wǮ>�(���)~n>C���{�:?m%+y�#O��䵨��j��{w���d��æ���|%$a<�rY0Mo��5N[��v)�
+��MO]��-�N�j�˒9��y����S��t�f��x�G���V+��t��MLg:.>[߃W�if^W����
+��W=�]8{0,�Z3�J�ɿ�iihlhec�R�#��![/��a��ӷ�d��,�������A�E��L
�&�D����\�x�5j���d��#ob��t��M�9�����J#X7Y�~��JXT���e�zȴ���vZ6=|i�Z;���Z�չ1su��\�E����9<��#

!�J	�F�H[n�-+��)�b��|�*�Y�����&��=���%$XK�h�S2*�H`�a4����Z2��h���U����g�P�l���
+�`Y���懢(���g���.'����b��	=��B&�|��^���o�o�$��w�o�Z&��8���1�T:.���
{�)��G1y���upX�"��|-�-R� �<���|8�%�Z�Đ��*K?�s�C� �D������X��z�nF8�U�K��ں�8 (���[����̏��Aa�K{�m>�ߣ�c:h���J���0�"���z����ĵ�������s�3� "��%�Q�x�_��/	��'�蠼.�ԥ��L$4�<�3���J�|l�
+����SzfV��>qю�e�|x[u�ܡ��l��������-ә��|�v�!IE���K)����]JҬ*�5'����$�_�7��_�ƴ=���/O\
��
t?z�B� S:�!8"��w~]��s�<V���7UwI�/��K����9]�)�zr�tB)x>��>oF�l��2��~k��qZ�hx��)N�i���X<�Se��A�pֱ���Ѿ\��5�,�/��1[4���A���b�_�ޒ��G�r��p����4�y n�l?�d!4��x�kZ�G�_�1<�%�Հ,��g΁h���ڨӞG}���M{F~�/3��~��j���1��Z��Z9X����(�"እn\6���3Ñ�/q�,}�w蠜K��8�Y�?�J�q��z�k�,f��ϥXLK�����Mݝ��nL��~�U^w���
+�k� �è#�.�hv�T���g�o��Z�v���lu}Py�6�~��nI����SɳW�0Ӷ��-a�m<V���١�V�/k�"��x>���mgZO9Y�3�E�������S,�,�'�����:����xϳ���.+�g�n-�s�L�'(H�bc`��I����8��:&��iav��~��`���,�������~x;�)�s��2��Zӟvљ��?{�VE��}��=ϻ��a�:&r����P̣c�9���(�,�%���AQ	�$���s·�����̮������>���wW׿��n�,w}J��nێ��~
n@�8��Q��U�|!�����iZX�Mnf��+�n�v���[�c>�O�)e���B�%����~Bc�xJ��U���0����b���	lz��ؼ�LN�tַ�eC{orNK���g�$C���<.���g�'t�P�!Z�{qt�\�z���S$M'~=��6v�mH
+���_�����4�8��v9�/82y_qj��m��q��uF�S�H�njr�c��{C333c�cѩ�nR잿[�Lk�����ٞc�U�y�_����%k�<-Qq�c������cڋ.̀�������zrO8{�Q`�H-��<�aaj��M�~B$/�nnb4��oƛX��-mJ�~�2�Aq���]a_+��<���q͊�M��h2z��M����f�����#:˒�y�i�CW�FMuJ�kU+E�W�.01߸g����b��}.���b_ߘV���_?���lujY�m�do_�/�l��~~T�m�F�}qo��������s@t�~Z�\.���*��-70vY����[�bgj0v���M\�ڜ����2����Yh}~T����'��,]q�&���/H���1���2���uu��ԑ�(3T��V�C�C��u�V�	q�u:8�GA;�t
+��I{���@��D��׾�ě���h��Y��E�+8KC���I��T&}�捳t�T�y��Q��8$�Nn�ts�������վ�ǯ��[��s	D2�'z�F�5ѫ{�[��;��$��d
+���$0H���X���-�3R"�f��:H@�ÊZ̸��g��#sf�	H���\L������E�ٞe
+� 3�)/5��k���oG�������V�g�s�A��C����g��u�%օE">�B"2������A�Ǐ����@�~�h�����r�J�o.�1�=��8�ͣ�	#�%'FJ��a$�?e����|�@:x9,�������/$&M�����Xta_��i$K>�dFLg�:H�������B�t0&0��E�'��ۮ�z�w2J}j��umC���71<�0:����O���5+���^X
+��{�f��+�L��7�l�X�’~����6�u�B���������NN�/�3ݢ��~�?��1�s��5?�Y�T���?xݥ߁���T������/�Wq���[<�CHe<d~F흴ڔ���u]����6R:8}<��4������/8���u�O�8��wQ�-5�-]8ds��]��e�@�9͓�6� ����>��8��Ny\��#kc��a��Q�]`k��nB"� �7��d����P�m���\^�������w��g���	B�G"X��Hh��t��2m�N)ß2�����Pލ�=�Q�GN���u�A��������E�ٞ2� ����>��t�]wI��L����F�������&DR�H"�i�P(�P)dG<rZ8R:8�GXY𲶭�inNn[v&�?e]#��%�>~�K�R�����C�4=\�� �\տ{�%��3���
>�������MbHF$_#�v@H����B&��H�r$�����X�o)	#��EP9����p(�/k�F�$��T���nH�\Too��\�U+�2PH�X��B��( ��2%��(~��N�G�ș7-��8��`C��g�c��lƀ�q��Ŭ���8�\-h(�JI�l�K>Z-t>�i��5���^P&��?��tԨs�����[�yω7�6
�K�U6�?.i���`5���Ǎo�ƴ�eW��<JO�9/w���[��r�a�\���d���RI9�E�k�X�;@�h�w�*�rR׭?Z��(N�v��.S���gp�Q�EK<C�>�
GZLTmVAG����h�3\od5�ƒ�V�jJ�*����ƽN�9ݼ�S���|'���v��Tu�&;����;��p��Ϣ�v�}������e�ԑ)Mn�/3�F��#.��VE~����ﱳ���-H�����R�[���?����q�P�S��_�y�Y�"_ߚ���-(+������d菥�����`tHhΙ����liu��u>�����9����������A������q�G��Xs�е;AS����
h�r�����kB��R.��l,��/�)5T�bp���:W;vZ�J��v��D���RO{Z��Ǘ(�R�E���:Oڛ�Ȭ�%�`P�X�_�Q\����������V�������\�N4J1�q-`��[u<���gR+dS{{�	ķ뱗L�����8�B��j�L� f���'$�@)5���cp�L
+��)�Z�8��AZ��G����B��1�J]�"
+���G�*u?+$�C�A�剥����C��/;~>�	�F�$��!g�q��xB�ͪe�Y|����	 +$B|m��Sk}�[�H:_4��f������(V�u�ûZhBd�ɸ���-�ՙ;���)־6���V�&��ǡ��P�Z���������j�mpI8D�˥��8<_�Eϴ���C Ph�+�C)��HM1�5�@"�r�H���vA�8���N���¡�l���4
+6#U,o�N%�C%�L�:�`v�a�����Ю>O8��*e"BScșUީ��+P����F�O���><��?M%�g�w�Ww���Y��3�л������b����3�JV9TH�J���D5=6�<���#K��/Ѩ�X>x	�T��m
���A���3d�}�V"I��=+�<�T���j��#w;N�D����O^�UY4,t}$�.i2��+|ߡJ�'з�U,*�������j�ѷ̗?{�|m	nR��dј�D�B�;��<:����Pݒzb|	|Z�\��Ժ���h����p9�Ƞ׳8nӜ�L�������q���(�Ս�$2�*-��Ҍ+�^�9�2DƆyE�ȧ1����LJ���'���+G8XM�b&W�+�Py��_��="��'���N%�ERŻeT!���(��gb�W�|Rpu	�*ˠM�Qr��p���WF��Ґ���ˮ�	Y���/� �a����Պy���^-�V�Z����
+
�ȁM
�EPV�����N�q%��+�F�P�����O%7�^�M��mU#I,�|��u���_[66�
n��'߽t �����'{XD{G]�ݗV��J:u�o��G�r#�ʉ߱u���������r��~|�������zʞs��Bݩ��N�zTc+��<IC)bb�oϪè�'�gY��e����}ڨ�s��F�ڴ��v�j�0�������֮ܵ��jk�ˎ��]wCV-7����lcD'���V�Mܵx��դ��W�MB�Ԭ�T?�v�nS�,mE��(4��+~޵�����5.!�<�a���f�wlݷ~�s
��z��h�5���l4�䱩�k��P'-�^�_�ʜ{Q[����f�^�'��,\�1OgWk��OD>�4������<����x�Y*kx���t�٘�k��x��ԠZ	�))l��%�6��3!�,<�v���=�-�o��ɐ�j�z���9�|�=�<�>,fr(������4!9��#�&G���7�<YCӈ�9VF��:�y�kϾ`�Z�)��w�;{��S�w��9+���02ݱe�������a]v��6v�n�>��Ռ���&N&cׯ[��x��F5�g�SVm�s��4	���;$�%W��8��;�l���%�_G��s~���?�����9�a�ۭ3��$1q����y�w������9Ĝ�-'Y��?p!�+�*���7͆K��G�U�����,0�2[�a�[��Y��<�sǘ8x�;����T%��Ș��W�`m�0iay?�70�rO��v�Į��v�yZLm�^[�)�?U!Y��+m?nj��K_?�^��{8X��O?lY�{d~P���X	�np@�f�P
+^��_�=h��q�G�:N�6����L�Zӓs#",�ɔ�'l����w84���
�M��Z�a>nŮ8�H#`��>����z�N�
+[֘��b��PW]=�H*���Ǯ߶��a�-�:��!o��#�+��9�U{�w�����l��x�t4
vԳ��3p�p�޶�|�S����{g��~H>�����9KWi9叏찴��s�?z��Q��_sn�x����vl߻j��^��^8�0���~{X�3�z��.��0��e�ۨ�*XŔ]q��eH^�w쭵�����'�ץ�p����QK��F��]߳����}�Y1�,z�yfV�+��F�K������k��-��ۏk��T��O�<�c���rO�}AOx��˛~)�Y֐}�1_�EW_ٵ�l���4���x���xj����ƛ8yoZ�뽷d(�A+�ɾxf������ڣb�����v������v�Y�nPp��YZ[��/9w����~tx�{{��[�]<�Ìf�@�h���+|�V||]���$o�g�}��g{��b�SR�O������2~�ѝ����?�3*�N���#gˆ��B�b�K���6_��O\�u�e�҇�xds���kڹ�b�Lۀ�l��Q�ӄ�;\�Y������'=d��d����cS�ں�]Yh��I?����`ԟc�6�����ۘ��LJ��o\�zw�B�)��_߬ۓG�a68�K�p��~�w��>�������AK� n_���H����R��3��5я���S�^{� z��%\q���t��BɈ��~�%��8��ԃ+�d�y�Uӧ<�-�k<�����Wf�}��OU#OZ~����O�v�9��j����q�������u�O����>�~��5I�AQpŞ��ws�&����˗�Z�4*I�P#��������LRケ�8y��^w�����d9�V��|񭧽b�����Y�J�U
YQ��n�/��;��F�hmF�8R���[ Qs�s��,�u�f����/�J%��c�_�Efn�޼tә�hW��������Q��
+݁�?�� 2b����ܘ>5���"o��w�r���
-��X��f����^��1ź�Ƚ��i��C�(b]�u�����3�ęN��2��q�������}����l�Y��O���Zus�c��J��o���n�J�;7~ḟ���_6���Q�u���s�>���P���밤�w�-����6�D�|�F������x��Q�7>���>��C!T+a��K����
+�ח�{ǿ��(�d
+E��qx-�報av�ޯT�8lls���Oa�L�	��������v>G�Х뿙T�����󜿿��E5'�}�C9N�v�ة]g�P}'�<0�Ǭ�w�ih�1��f|%��N��3���T���P^�K�{r-�y&�"Im�'�`�J�A��Q��)��������M,z݄1�O%��0���\�uX�<���O�� ��rI��,k$8�q�n�����/�1޲?�/!_�+��[��]g�$���c���Ob1D�2�j��bsi�i~+n�H$��RK#��xn:݀!�gE�;>'o�=�eߡ
+�T§56��Vm��-nqk���=�1�����ID+��:��҄=3,��%�����혊���6-#�p�����ʣ&ZC�n#�J2�?����Q	��:��i''�I-���avq��aa����
�>�eɅ]g�F��ɇ�1-�T���0(�+��|��=�Ҫi��y�m�����;�K"f]=�8�%U���:�e˸Bs+
+*�� 'wǴ���P����ڛZ�1Dbl��-3"����*.�+�}n��ī��#;�Ӷ�f��I?#t����ؠ}�����
+?g1����{��b�շ6�%��ۇӓ�=��������E�^����D>6;���Y�ۥG���J{��q��^X��6Fi-O�XMڪ{��ͮgV�xx�/?�>{9>*����k��=��S=�qž���$(QU�ON�)}��L��uCu��9|χ�'��~�yX�Y|T�����:z����8C��].:��~���z~�y
+AwG-��O��:��<�eX�UK�g��g�qK~���!O@�`I�{�����ዴW��u����"���7=i��;y6�Ř�j|EB��k�&(s��߱���M�nu`b!�6u��s��3�'���ɇ^9%w+������Q��彂��2U��
��}f0z���C�f��0�@��b��.�v�ܭ��g�\�Fօ��WcI���c�ۻ�]��XD���SGO�<��0d�Ox-�'�Բ����ٯ(~�Ĩ�L(cRR��I67���e��rKxd��K���n�[I�~������������$��G\#�y���0݆��v�S)�|v뜅�f�-h�̮>,/e�tT7.�-9�?��x��3j1#�ʡ��A�P�����
+�P��T���t*��ϫ��!�N�������_|�����1��0bl��ѡ���*y�sw����/v��T�ya�}�F��~��\g��ޙx����T��+�<aj�iDfG�u�$��d7>%�M)�sq�ʕk��F��GDF�ZN��C��uQ[�N�p�#�*���?�?z*��6�=��'�~�m�V�X���J$�Ϋ����y�o [L�hor�Y��δ���b�U.֫��c�������p�+���챤�]F�6�x����##/_8wj�ΌF*�5�i�S��۰eG+vp�W)A��������>��Q`��l<w�_�ic��!-L�q;�s'������I�v��U�:H��bs#g|pd�駨�]q��f_/,+>df�렢"dO��h�VY�vt��ӼK������_�z�d(��v~\������a���ؼ��*"�^[?�e�ׂ_��	��fou	Mzsp���sլ�'���߹�}BA
Z9�l��閧��^Q���>�fo^�@�|F��n�A:��ļv�ѣu͌6������>|nԂ��+�O�z��q�Μ��w&1u������p�j@ͨ�kdR����N:�~{tYz��9*:K/��ܫ�fa��hc������`G��p�*\����̪�"Mm��QhD?K&3�B�v�12+�@��������?419��[�ǟ(��$�	��>�֟�G�l|T����`�l�R�LQK���(��&:�]X�֣�]�3t�=Мyj�b}:"|霍�(r�f�'������+�؋fF*޻�#2����3�W�ov��Ӿ�u�g���FQ�-=�}&�#�ᮠc��к���Y�?S+�M�p>�0h"
+�'�֥��p��@����[��~���`"#�/��֘yj�D�W�9�u�n��z�-��tp�br��5so�r���3j{�h4�Q<eSL����r���QI�N��>k��A�1$S7så*,��z˼|�k�^_��ݙ�V��&>�f���G�sH$�"Йx�F�iq%k����+��	����54��K�����=?�=/�wk�>A��K�wЕ4�G���^�r�ɋ��z�c�ɒ!!�Z����H�����kd��Ã�"h��S�<�����1�~�0��� ?1��ʹ�Co����<�){Y�ރ��ɫ~Q*��Я�����)3Ξ	=��CB5a`�r���z�&ŕ�����
�A��}'M
�"�#w9L�	������ڜ���E�X\�>�k����nEl���֎��.�p��ϯ��T�J#�D�s�w�Wz��7��x�3����͍��`Դ�<s�'���%8X��w@�v�>8�'4���z�*]��|���s������̊�/�L����LB��\���P]PKm�MO��cլ����j)?�{����Ҧ��]�}(�z�A�ƛaG�:7��?�\�.H��u��Ç�sV:����ޝw�̾n�0����\6���q�	��Q�y|�B���5�!f����:�7�x�oe����q�Kg��H����;��oy�-(��.��b�j_O[	�VM�.O��v�����5��L>rU𪔩����ذ'���;!!�g�����b9�����I;[::_��]�pA�	G`��t�]E��=:�A�-e���j���23��jas��{=�
+�IG��8���l��:It��S���_���2Z��́q�t������Ֆ���s"��Ma�8]��-sH�c �S&���vq"��Z��=����	�����Tuo��[ru���)�� �5����14-�@o�,v�sPp
+��x���ҳ�������$x�^-�{q��Y)H�%�k$�'��S�i\>������ĺ����έ
+��
	��	��������^Z��_nE�1�P>g�1�����q3�id��E:��i~�Jf��H�}||�,����ut6������n�u~���Dn�#��/��T�=�s�:x�l�^e�湓F\o ��B�
+[���tJj-��evV6�P)ui�����R�`7˘[�������^�@�rJ���
*�����!�08Үk/w�����S��r��)�n��h5�Ȗ��)�c��]7|lː��G��,���q��=<�GBw�U7��ym�u0u�En.=���
�)�ܝ��U�X�Y���.�֝%���w�9t����������1o��[��ڒ2��pRf;�L�jU]�B6Xy��ٸ�\�q��(A�%�5���_u�v�_�2k(M������F��U^�"�*�C]N-eF�5gI:�Be˔
+N�~C�\x�F�����1�?(a�(���_v,\�G��TJ~[ue7�!�a/�=| �RW���ۺT���|�Z
+	�ѐ�w옄�:4����렕���t�-��K�\�
-g���ݎ����V�Ւ����vc���
+f����c��q�?����|�D��o�)z<cc���Xt�_���s�爇�{1 "�^b��%gc���ݹ;�;%�u���������e��u�V�X}jC�O}�w�?
h��SV6�)�!������_���ퟰ$*�����.p���-��x8�\H!��I!{�]��uӢڟ]��m��C�f�F|u�L�C�=T���-}�f�1�����l���~��Y���x��",�j�+""r���g������[���v/�j�7�5}p;�X����9�MEVL3s�I��Qf���"$�#�����y���^%U�~���	��Qܡ�Xl���/Z�6mJ�cһ��u�q�P#m���%��ԙ_	���`n�ag��>	jۿ[��*\������G�tV�Up$bDK]K/�'`ߏ�`���"��vOJn'����x���y�
+MS�Xag������&�
+�b�����aFF�]�+���+ζ뷰�Zz�n��Ws�L�+�!�?�gj6�kay+Uo>�,�\��}N�031;z�'�ݬnH����t����^��@���8�k�����;���y2<rs��ivf�i���c����[Ye�`�rnb��������1�SK��jY˝���&&PB&K����3��p���N�:�ͣ���k�_�$�j:��Zj�f��?�5�����ܻ���|Z��~���Ғw��N���|D�n� ��S;�ɍ�]�ԛ�=�஘Tεs�V�;#���p_+3sǍ۳���M'��i��BbV�y�;�A9R[�a+s�ɳS���)/�:�����t7g��'�7TZ#z�b;Sc#��j��(���u�6|��\}}���\?����|-V�UK.������eV��Sf5��b��%gT�&	��UW6/01�ؐQ>�셷� K�M�f�'��-�K-ķ����]�) ���:m��T4�/��W=��v�fj
�Olus4�����M�{�3ם��J&g��Z�C�y�t�F��]+m�B�����ZN+T�h]7y��gY��
+�CT���+�V�[:�����W�Z)5;n�������^΀V�~������(�z��e���p�����2���JZrQ�F%+�~q�dFc���s�S��|�H
7�/26�X��GR
+z��܊�!�\Ys"64Y8 ɉ�daafd`8~������DZQ�+�O��������;on��ހ���h_OU����6�P��M�׬O�7!��z����B��J��i���ɑkE��E)�F��i�����q��R�j!eӪ�ƦN�ךL�+��N�B	�N-� 1p�R]'%f�{fY��[n�l��;�\6���V~+lY���_fo9�c�Y��ztu����]x-�]߶�����I�-�n.�jb��Qq������d����q4�� 6fY[[�;:X,�?w�f�F��+����=3�ɞyMX}2*VW��	�f���y2�����m�re5w^(���/��3Π���®7��5Ue�3���
+��0S@�������o̢�h��~�(��y��C�R��j��8���z����Z�jɃ+��;�X6��*6cp$��_�����U��4dΝ�����Rj�g�c���N1��y22U: ɽ�nn��̅kP����]tl����Ǟ�����u��3,S>��6����WZU�󍓝�t�\�d�����U��hk=E�yK�<ugi�L3�Z��&''��(�P��Q(2U$�O&>�������:(�ݴ��[Nv����3��k$���b���?@�RpL�Ӷ�%�CW�z"�R)�1���xj1�Fg)��-�	��J�h��1(E<���%P+�,:���
�Bg�w���A��&g�X|�G���P��M�H��؟~���t�3�^1TI�*[0��B.�������8
�W�&l�iy�k �\1�L�kS��"6���N����Rq,��>�P���9*M\��p6;�.:A�����j�O��>C���2>����p�B̢�y��}P�9,��J%�X�w��]w���}C.P��~t��9���]F%�ۋ=&m�����Tj�6�#xm�Z�����B�f��i���d�\��,���n�)�Bh����`p����������q� 	�㪹|�Ju��*��|�H1�3�]�_�d�ۣ1�6�r��X����k�a���P�RŐ
+��{p������NtR��K��^�y"�S0����|Qq��:(��O���߃�G���b$P���F$$��̏8|�hd\RO{���ψ/J����3
+����3���))B�X(�'��B�h�l���]����������-tq�'����������Ү]��~z�b�&���:�
� ����>	Hc��s�m��-T4z��6�xc�I���U�CQ����`H���q�~��|�A������A�CI����:��A������W�tPg۫���H(������9����:(�lV������H6{F��J���1��s�A�������'��>7�����tQ���΁;7���MY���������C�ϲ��8�|�PH��v7T?]�t������Dt����m�gX�T�����|�����Qzy�e���7�;���Dy�+�D�%����r���=�����W������w�o�ن���HDR)�O"���G�_��O@����I|Qq�u��k������_�N�?�*��x�����^�^wiD������7��*������~+�&'^J�@ d1(D4�o|n:h�_í�B�E��žA��c�����P4��u�J�����~���F� �{	�o>CFF��(��M����,�tp�d���ccf�ԍ���Yiobdt�~wuY�@<��EGZM>�Qƀ������7���5�i���+߻F忄J.΋8:e�(��W9of����m�q/���jYMу��G.��$sٶ��fHC�����bxo���> ����)t�24�^�t�"��Ք�'��`?]:���Z���zX����A!)���mB5���Gomi��$)�z�����TLK[G[��B��lkmm�I��"�%{����W!�c�;����i,�f�,h4J	���
+?0R���;t�@c������v��72y��p4J����S�j�[D�4�[��Fuw'��)e|
+�U_׃�˥��aryLLSSwR�2���IV17��[[:�{$*�˛��AF� �w��6Z{kk��є21���������q���HIl�)$"�D$�����<[��DW)��� �d�*>��@$v��[e���5农;��>��qG���"Hz���C�v����zKGש��ڄ]�W/v�>�y¦�w2�^�H�Kg_Ϫ�뀂����1��n���L�PY�3{bwo��<��v��Ï���Xʪ�3��z�(z�R��^s���rk�v�����W��vt�[�˙N���W��}�����ޅ^�o<��4���́�G�m��j�]m��Mk�`m�05�a�P�DN�n��{�m�.�i�C����P��&:n���7Z�a�h�7@F�r5�MJ테�6}��'"��o�X5cv\V�!�����l_8�ì&gV)��CG��]���!M,�3#��_A�����'�r�yﭛƹ=�BEN���،#���9}o��/�ĸZ�ڸ� p辎��ȟ'M[����Z~��o��k�������><W���:u���>�V�mi�jy'��Kj�nD��؎����߯��'���胯uP9tk��=^7k`V-E\��?��Rk��=$�H.�H]	�{�?ne���l��<��C�ԅ����b��:����fόA���N/�~z(?���9a��6��Ͱ9~D�8l��׶�&,���e�������bݬm�]�uF��~�=m����"
2ZZ3����f:�d5�^V���Y�����QG�y�8�B���x�hJ��:[4��#<>8�fi��
+,�^�|r�ĤM^�M�m���Ԗ=�H�B]-b�U
��a��e����ЈȰ����'���M^�h9<��u�􅋖6�
Y���u1�n�e_|�F}}���=y�����_�~���CI��tjՂgQ�L3s�5g�����n�V�K��SH���� �UAպ[Ü�1�WG��J���Mb9|�յ���_�	=��8�I&s7xCF	�����5��2&����.��h�K�m��6�B,d3���=����� ��fWT���lDb>��j���~�x�h"�����A��r&�%"�_�uI)��7q˥�r,���l�X
+i9���jj���R9i�Þapx� 
+�-]��{�
+�<=����|߻�Zi^�W�����$R�.��w�ߓWUC�዇"Xo����|������i0
+���(%Ⴛ��[�8ȍ�Hٷ������2�� ��!:P�9cc���	�՚tn��|��W����[�%0��5��g�l�p��-��Y��-4���s�@h�[F2���(��(����������<�@$�����jƳ[��e���5k$>%|�j�Z���n�ߺ�v-��Z|�n�s�����'����PIg����a)�������p�~���Jr�`�����Z�{��Z	��)���$�����M�-�l�3��E7��t0__�e�oyƵc�n?1���������®W��Vxp�����y\Ձ$��*%��Et>�^�#�j�–˘U�ϻpt�q��Ψ�>�d��w����9�{�X�P��hZ
���_ڵe��GX:G)�?cm�������{����7�"��Y��̇u���	m,�퟼|��a���6�h]�a�y\R�+�U�ٵ�xM�K��a���Y�M�����������h�n�A.uo��#�K�������"Y#�
+��֞�8�P����Us/=��%�O*�=;�I'W��O\0c�ĄEK�P��f�]:+�q���Z�A�[��>�r��.��r�V�7�1��Ϩ|%kh4Z(���
+YUg�̃���a���cV-V��d���J�Iۺ���jO|�Xؗp����������jҦ�^.��E+������f��ev��_cae����>�R��
���f�N��0773��_t����֢��ː���=���j;]���a�����Q
%H�H\���7 g�&.�i�7ڒH��R��Nˬ}�}�Jƺ��g��<�w�F�ț�aw�i��3S���?�_����R�\>�O*����� ���{~���H�Q�r�?8��Q�<чW8�h���&�|:r	�'������h����̗_T��u����9Y����|�|9:�R�:h��Ü,�����h��A��g[�:����O��;wx\.�Mz�b�ؾ>
+����������3�������Fg;x�Q��q��-�.�]��]�](�|�l+���i������
g;22?ps���h������	��(
=j�ɔ6q�r���0'����/}�팭�Sn5��X�a��TB�]��KzI"�����w!�������2���&���HBoɌKڰ$���wn�s%��$A���0'����/8���iQǞ��l�BGec���vĭ܆ �F"����L
+��_�9Y����|���l�a��.	�K(��Uت[�
=��f�A��A���d����E���8._(s(�Ҕ�������<�]!�:Ђ?r|P�ժ������b�Dt�����
+��uq��"��aq��Y��I�뤊�V���nb�8����o�yo�m�:�u$�����/HSR^����l�L&3�
+�p�{D?�����A��
s�������y7�TM(��j#��"!����d����E����	�����S��t�Ü,�����h �s����r8�H�z�l6����|�at������[��:hB�~���ك��uo�ڏ�!�::z��'����������4���g�#9"�P(�?��24��m�H>�8�����mh5Z��#:ø��lbf����N���ݹ��NJ`��YƇ��iϊ�BՇ�P�/����A��T�i9����������`\T��[�f�D�d"��î�kcy�lԓ'����o� ��A)Q��C�\��8�h���=�V�X�����A�464w�^ʠ��fp�
+�������{�����+4�J�Li�we�ϩ����Z�P>��j�|&������S Q���=~p�gE\~K}-���k���^VVC���
>�������L�4׷�b�=���H�����e����|�T,��X����̌�O�.+nk�)^'zD�ކ��J�;��+�̞d��?�ڶ��آ�V�J��I;w�o���A�g�ٿuӖc۝��\BӪ�"TtЌ)^�Ύ6�#2�I�ݤ�6�M��o�}`�gty(OR%nʻu�g����&2�j{J��]6��v���rxZ%��څ��M�������(J��ˎ_����޺���`H�H1�������<�?bԦN�H����[�	�ۚ}�(+�S*6:��@:�q�kp�م�7����f�'�o���s�V&��P9���t3��L��ȥI���Λo�4��$��N�9}YU/Y(�HL|S��]�ˠ�(D�\�Q�%���]��j0l�D�P
�j�
+)������C)3	�1G�vҥtutm��?~+h�P��&��z�f��#ӷ?�����SCe�Z���l�-����}��ӢN��J�����cn�:��;���\J%SG�K��A.�u�^�����_������?����.#���*��ٓw�c{2�^��|)����f�������ϭ���~L����y)�z���\����s-�D5Z��l΍��?��rq�f�ا9��=��*���3W3ZBB��6�������ٶ/��Jer�>f��DŽ~���l<ޫ�ˆ��A�A���~��
:xz��ȋ�vM�u�t�#k"\����_9Y]�g=v$3O���q	Kk^�C#+���.�qt<��4!�l���&��ù��l�����7e��Ka~O{8�-m�k����T2�Lc2�BI�]?��9��������Uu��������<��/�q9t<��@����m�r���������Z�J�������tP��M]}?GDO9��ő{�ډڡ��[��_��A1���t�$�\�ً#A�#��r
+Ny�������O�͉�2=�ł�Ji
s�|¯��u���AU����ij����i���b��Rۇ�C?(�h�އ�<k�B0dJn�s_S���
+]��]��7��3|���C���9v��@��`��t�⅘��������,x��ϓ�H$H$��=r���q�!Ł�ls�p�����j��D�J:��O��Ժes��񃽞��#�f��<���fH��w�J��+}��H��-�������p3�vp�VV��e�d[�����y2X,�G��2Nm�n�W�?���wU�.��������"�Sv�X�[X�جJy�������j2���}|����h��
+�����_��~-�"�R4+~Xl����9�w���jF(m�@���U����/_N\5���A����|I|i:8��aN����_4_�2i�N=����������7o�it����y\�Nc�h,���~N:Ƞ�:8u�0'����ji$��;����Z;y��nh4|����`�q�/���ew�N��%maĄC��-�b
+�#���H� ��j���=�h�G�̒
+������d��OJ9���م9�%ݬ?*������t�JL��a3�by��������čв�#�����6x
iń|g���M�E/J˩���2������[({��������E��;1�����������K�4��P^�����?���	��E݈�VF)�C]]�g���;�"8!	�ޒ���'�VW �,},Q9�����M���	X}ե�uD
+���	M����~?����؇���&��dՁn7wl��v�����GDGH��w�?47rU��Y'{D��2��2�2Οv�4}���[LZ�:��gN�3��y��K׹���,���
������K��`�)n�]�-6��_�+4��;-�?s����r�$���֝�a�dg�=�������E=CdU-�(N9���x@�J��y��q�l���<+0��5��'\\�s��is�8V�Clύw��d��D�z��p�@	����������͝�L�k�������%�I�2�<�Hx�#��4W��Иs�7��tw[�iӉSW�q��8W�'jH�(d�F-8�e7{���>tkE����6��#@�[�b�*�B���z���_�;����ҵ�~����H�_9Ʊ��'���Q�I,�qi��A�L��b8���¡�E��B��{<{����pG�J.�P;bc�eR�\�!ufN���A9�ℳɆ}�ywON���1����̺�ȍ���$�e=����^ <�aj��\�D*p�$
+��bs��I>a3��|��3��M%�����+X=;��߯����_�*~O�mbk��IN�N�?-YQ�dhYgٺ/Z~9�R���>�Ѩ�S�1^�sѲ#O>R���x�ی/>i��;�':Eu�blVU��h?{����/��6FIC���Sm����o*��Ę����D�U$�����rq�6���ϓy�DW�9�&��θ�����������E]^4��z'��"�H""�߉5���b�G �����㻅3l�����7&䬷���'[��=�2
+QZ�xh��YW�R֊�ێD�it���%
+:���#�м�Q��옓���������ۻ�|<摡]ʾc憙�]��3"�c$�G,
R
+�ޗ_)�f�3��cltx����(�f��}�T(?4��J�����7;n�,,�n�]|~
�A�����@:�o�!<�/�9����ɕ��w�<{�1���&����l+��O�3�::@!��S�4�`xbg�+���ںH�W���}�WXփD܏�wv�dk��[��Z��������ك�D��^��붓��:{��3Ӛ𜾴���f��Wd_�`nU�t&���:����#FcբOb7�N/j�y��?��?��}3�F)���+�܍��ĕv")*�JL
+��5oaBck7E$��Z؆�t���xr��
+Yv��Խx����3P����qyu@�����ो1|�'�gbm^fenaye�Ŷ.����q��������4��c���g:���y��͜`ee�2ɳ�_HL�ھz�����ݼ���4H��Ȇ��^S�]�g�n�h4��{6�YYZYO���i2�����{銁���/��jaR�)++K[;{GG��f���L&���-��-�����#���ݷrH"5��$ߍ�۟T3������l,-�l�V����(M�R���?�M&t˨Ń(�������8�B�R��2�t:G)��l��%����߂V&��4�ڥP�d�_�R+dR��;�R��cq�%������2����0��WM��҈I�H렗�0'����/�/'�(��,�aN����_4C�@�禃��s��������t�֍L�E�sy��4Lk�������l�@�������]��)m(��֘�)��0���VD�3������fÜ,�����h ���-�6k=���	w�r�in$�H����H|=8B:�G�:8�|�������.�v�ÍS�R:�RB��彋�շnU&�%�x��6R:�C�:8�b��������8������n�Xu�;��u�}��s�i�
SC
��I����03;��������Q�-ɒlY3k��%'q'=N��v���V���h�(K���3�>��-�3Z]獿�tw��;�[W�n=��r���B/$�������@���^ds?�/Sp�Z\f�r����uT;����&���N�f���a
��3sg攓Eb1���6gl�U([$�iK��1&:�I""lo�<�n� 7���k�<ۻ�v�x|�@����^m��\qVQ��E�ًʛ���~�F.���ik�<�~Ҡ���0�A=h��N�'>_��lJޱ�z���K�3�9b�,�P�m׷�y�ۚ������@y9�6�B�X���3X"�X/7�x���<�����Ú��i�l��j�&̃?N�f���a��ɳ�o�<�a� 7���k0���! O��</Cȃ�� ���0PPz8;w��=����J���h!�4��}OԨ�l���D`�eo��[�yp�4mc
+>�/�&���Z�R*UϞ�X�檆v�R�.��B&j(�J�O�h�����L�]Z\���6��J�P�~�*�������=
�������g{���>6�����9d��#G�����O�Q��zO�&�F�&�;n��i?�x�B�LZ�1n��>$���?�j�ú����d��e���vՊ;�~��R*H����ON>t����o�/�9�7���{%����:��NW�=_���"�'����
���˳mo�jr�|���N��ZW�k�eٝ1Y�
G�
+�0;��5�Ί��+��>|�ⓔW��*-u���&����'�:h���;��A�S����39�ކ9�)	�ii	�9��)�᮹�M2
+ʳ2�2DYhy���������	t�P�T)����[��ꔦ���9791���|SVj{��Mk�Rw�*��VE%e��D����P[Y�G�$��K�co_��*53��H���t	��������@e`�HX�)e�gW�~]TP�Bh�������$���5�J��e%�'���kK��J�o�y���.�<ۡ{�U��b�@(���mQ�y��d���P �ҫ
/���-�wsKm������������RQ[����y�K�~�=m�u�|)���_=2{�҅󦜸�"T��Z��:�	��^��c[0C��u��滵�WlY<u�+�h�&僧�w�͛�.��IO���5�{��vb��%�ݶ���9Y��3�=���g�>���u�|"�P+8��7��~ٲ���6�$�ڴ+�m?iΆ+�|��ٯaM)W~�|u�UT
���Ql������&.�p��M_�
+Q�B�\>�tź�KNZ$Q�6<k�ĩ{7o<�gª��L�����`��z���9�Ϗ6t	u3�|����d�ɾZ2Os�o��J�����1�L\4��S�oo߆΃�gv�y��mO��y��s.���\�Nٳ̈́ė6�{��3��;�h����L��X��_���"�RҔjt�)��%���jD^i{q犳ed�����%��h�_~��KF};�1c�_��i<A���V~�>��,������ɲMN��F�V�zp���^�d�rn���������R�R!��n����ɤB��
�	�����O��J̧R���}�rt�T"�)�rV͆���h��G_�������m+�ΎWV�hwį�1����.�|�w���d�X�u�/��\�mu+�+�ło�F#!�V��Ɲ:��c�h�=�k���k�z��)O���S��Q��0��)5+�����Y�D��G,��Ѓ����cl���i��ˎ�|�N8�|�s����Ї�ҫcFf4����b��������'N�'�-(s��޿a���ν�:�62��.�i��x�3K��0{�|S���J���p�)����5"���s�-K�U������&�td�����ݺ��yz���6��:뱓rT{K���5����A�g���
+�H�A�/��-'|��ߢ�{�����T�槶_2���p2�<�|cZ�o���T�]'3��E��9ell|���3V�v2�Wδ���#Hg����ʈm�{�Y��VD�{4a�)m�=�l��o�H�*y����W�YJD�(:?z\F}���[����6����D�W���7�X�2��,69��#�O�+�,�p�~xS�T&P�3�\gO8�JACŧ�Y������P�h�'�[��>W+b�.����}r��Q#+�,��l�PԞk�d�yU������v��D������U���P���`y�w_�����eŖ3M��'2��K(�9�<{�Ĭܼ��C[~�b�'F-�&����o�+��X5��hd�W7V`5�U��k��n�Մ��B!���8;�|`�݊i��ah�|��cg��E�G7��y!������y+Z8��i�^Ɵq�O)*��e�������O9"���6;�~_PZqYqn��OQ3A9�'�]6{Ńr�\�zij��ku��!��Ԋ�N�\Hj*�Iu���ч�e
d��#1�+����$n��~��!ji����˗YdTY��Z��f\EǕ�G�ݼu�R��z<W��I��ts����yE�N�FCu\6���ܲ�줈����d�E��*;p'ƥ5wxܵ2w�<~���-��ז���/�<�F�y�y|��ז�{KjPW��ǃBj�ݕKgL�6uڌ�G/v	1�h��AF�~�s���e�~�lc5ZJV|z�͝�=QpCl\�މ��r<""m�U�j���/9���)S�-Y�]O�mH�L�޾��9?oqgh\���}0W��9��۶�ӰU1�7N���vr��e��HT:M�V~����g�H$�4�֨��Ӈ�ϝs7 _ʯs�:gΜ�|?o����}��Vo�93�O�:u��}�P���5���;'�͙s,<�w��P(lkk{�*/�n����Q�.�eX؁Es��"���Qk���Q?�V-F��1s�kQĚ���mJ���*"+9.<�
�Uy~;7������w����%^ͳ�㋔*�D_W��Aj�B�x�
�
�ؼ��9��
+�d��30�*���ɷ���ޡC�RـW����>�E�+0n�;�����Ú����r� ���0PP�����f��s�m�zp��An���֠twt�"�uwP�T����|\M#�TO2ԏ˴�~������5�y�?��ɌyuD>>��j�T���&|�����B�x��������,���0�A=����fz�|�a2���D���!��d��f�n��`M	x���(�<�6�{�׉Ԭ�C�]
��;���Gm�i��#��=�s� 7���k�y��Z|~��K(���ˬLg�3�4��o�0���y���Du1��]�Y���`X���޳��q
+_*��{׸��Y��g|�~��jC�~���۩*�<�{� 7���k�y�g�Uv��.��aҾ��J�Z���ym��"���+������@�֋�A��;������\������ќ%e�t���Ńj�Z*���F���_������%���`��z���^wP �P��6���2�n�ʬ���{��D"!}kd2��[�P(p8\ߚ�<���.��(���ÕW�l�b�������H�b=l�x��Z.�f���aM?�E�|�@�ry���������@>y�uܷl������5��l?��C4�vY.���?`�5/��?�����p�t���6�tI�<ۜ�������Z<�ly�4�����C!�6�)�|q�x	�1�)�����2fk�Sx-E�J3<ZKCU������y�~��is��xMq���'�Mo6�۴�*�P/7�׋K��{A��q���
���*��#�Z�Fڐ��_�ʽ�q��~�z�-<�����˳��fv�|�qr'�m��G>4vW������Mt����ӃW螩x���VA�i]�U�<e�CD���Fno�0)-�m��&2C��R������M({ٗ�����������ߊ�I�\V�ÔSi�-��^�4r\nI��=��Mga<��]�����B�l�j:��s�����QCbg����	�y�����!�p�3�x<� v��l�<�jBjF�x��U+��<xxջ�Q�<r���/��]X3q��N�T�1�͗(����`�z����vOS�b�P$l�ss�>�l·&�vX���U@��H<X���<��Y�l��Ү�QK9��ζ�֮�5����$����;��鹳�("�W��a�	��5��Q���fU��¡r�^��
M(k�|���5j�J!�pX��(S[�|����`�E�ޤ���bNC�_��_I����c]7�w�$z�
���lK$���h4��k
+�1Y����j�R�%8UKyM幅M����(K���W�W�����ԃ&&�<ۨ��i=W}g=c��ρm�,=%}K������5���~�u%�y� 
��ѵ�>b���})��=V��Ӝ������r)l����I^ɳ-+QI1�=|	�+��^�E�S�Ճ��I$���C��c(�{�5*�D�c����3���k�l�ɀz��u?R�$��GF�E%Ց�!������g;/����?R��K�X
+������p`���&��_�pt��w)7��/?r���[�o]4��*��>T����ԃֆ�ͥ�,��|��!;����Zy�s�^�ZΦ���W��$�w��V)�2�˗5*Rs=�����:jQO[IQq~aEG0�n�Z.�)��$��jm��T���kj��djS#�%ԝ��������Y��������߻gD���W�5�U���R�Y�&U�d��4Q����ĦF*_���w���K��O���#��[����j���I�B��R��^n�=K\�X���E'��|'�09��r;!�+����Z�l���{�ئ��/Tbzn\\�
�<z���qq+�tۚ����t�:X�4u��q��k�⶷�\ŧ�d��[�Z��謧tV�f8ژ�ڧq�?Hڜa��,�껞w''�6$�R���0����A/?ߚ��q�kI��+��O�k%��-0y��S$��B�x0'����2!��	��an�L��r��K�dHUh��0�,�T�uw1����F<�)�}?�d=������&"W(QH88Bu���gPR+���+AU�����F\��Y���Q�u5��N6k��|6��Immnl P�g��V���kjj��t�3M�X-�a^͌�[5��j�&҆����ft�`�����^^��jh�]J�tɴ7��(�9!.n��]3�H[������|gK��̃��Zkk�|m}��Ui�+��
�x�0x�睮Ku��i����L/����BSH�Ė���*��i�Ȕ���-r^$�!WY$��Ϗӈx
+�Ɨ����`��p�Ϸ{`?�^K{���c�K���z�,�5�3r���!�_4;���MlJKRl����OxTrZfM��2�.,�-SɅ��@����Z�fk��`�QI!2vVB���T\\H`H^%A��H��|jl���W�gb��5y1�f�>�t�~
+�\P�����n�^��TK9�Ύ��q��N&�Ie��{��K
+�B�ⓓ�|��+�Z�(�)��>,I�v�k��=�b���3�$J�R�H4�pt���q
*h �g�������GfV��h�4���-L�_匜��2�]����Hoʵ0~�����h�%B��MA^�!QQ������]�)S-�Ѣ�����8��:��BĊ	r��	�
+
�p	h�b�BK8Jzlx9������[�x�s�#��H������o����x`�d�,z8f��M���<�fJPV��9!�NA���&�H�J���x��
+�����,#re2�B%-�p�O,F�AAWe��]
]J��p�m�`���X�<<��*��ƭ���T
+����5�P���L��ȱI=�R�j�pCC-���T��O�zS.dz����d|��yF
Y"��Dd7��U
"�0q�r!��**��O�ZR��Ӡ���lo�\��kT��ψL�X)�4��gU��R!��Ƭ2��"=�5�X ���VkР�,��)�����F)��b�J%��2����,o�8:W�&W��9Rh��PW��,�@�c�b]��QۇzG+���7cT����]먺rry��{p;�/Т�M�h*�����2!�'�����Ր����Ҵh��T4`��������q���U[+j�</���k���)����$�1��	}(�U���{����=��TMOS��C]�)w	N,��)�>�ޱ��)s�����"�Rl��|i�NP��U�M@����.^i�yLI~�upn�P���NC�
+��:���ZG5Z}�����Glt��ɓ�bژZ�N
��h��Z����k;Gg[+#��\�Dك˳�qi罘�ԨxY16��>5�4o���k��n��u\����%7�͏H��p032�vvvr���qt-j�B���t+�F���L\��yM�;'* 6��
���1��l/�"?��T��yQ�Z.�%2,=��C��	쬋��9!)�,j����Y��E.�7���[4T�?��y��f�!�*��>���V��<�
+[�j��:5���X��y�&c_�Ԇl�X�\���V�]ӨѠO����u
�+���="����d�tbW�T��P��,4�Q��|��
+:����n�B
�d5:Z��w���M�V��z;��%���ƭ����b�m�j�]	��>��9,�H$B���R9��J��s��nQ���Vօ����'��2��y"���UQ+Q����\|s�-���5L��X�B���1��3�L�� ��94����R�����#��H����gK�jr�o4v��C`B�L�;�R!������zu�+���{����Gq�/�P���q�a�`[FP@ĩ��k��,�>R˼Ƀ*�J,��Q�կԠ:�&#����Q9T%Z��T�� ���w	O)�,L�xd�׮�v���71�����[�R�*�p�-kh����.h��K���[Y[K�䩕R
+���$���->��OU��5y��N�-
)�6����81�9�U�5��*�*鍦Z�K�}��Z�ZC,��xػ�٭!n��1YU�x�TIkδ�vϫljm�NO/ q0�Ź�'5�U�L�������P�jT�O�ت7�(J�Qlc�؍-ʉ�lp[|��"�
+[[K
+r��	��JYM���wDaE5�ԭ;��tK����V"Q
+
+�}|#�Z��#�,<�*�t���9��ڿ���{BӍ�5�s3<�Q��C�z��?8��9���%�򺉹Gv�Ϝ�a[�K��D�ʳM �ּ1�vz�3J�2�+Zi��H�3b�]�=�}�"�������Gbcә�U)5�9��`gg'w/���`�Ii�����k�TH8����^>�~>�A�����������aD�T�W'g�co�C(�)�>xX,����GCo�
+�pvv��
��,gig�Jy[en���Gd����[�����X@��_�QJ`�=w�Z�P��������<+.��wMnz�BL6�,6��%S���,N����(h�E�>h�\����[�t��w���z�&�u5B&9+<���?�����0G'砸"���7T�{��Ӫ$ςA�RP��k�ط�*�YQ��>8�==<Y\�X,B��EbAOOS��ǝ���߄΃g���7�.�5T
+�T1�E*�b�L���-
+�T��+4j}�`>g�;�J�L6���j�J*}��X�€�$��b!��c�^�
+� ���P�����EM�g[�i����h��r�C�B����QK�<����G
+��������>y�Ӣ0��6������]����xp���N�|�A�[�����Z�x9y������z������r&[�e[(`����
�NƐ�����C!���>�����.	�!�>����J����\I�������˳�l����a�=")%;&��
����.��n�z�`J��;�O剮�iu}֘�kS�<�*��zB֜��W�������|�<���5AM�N���+��Xy=��l��!���p̃wꞩ���u��w0�鍵���K6�=M5�\��.���m�m�<��v�o�t��n�R^x��={�y0)������?������j]ʒJ("q�ׅ���K��Y���`X�Ńf��f���X���n7(
I&�b��{������5�<�����cS�b��'�y_��������C��3������ԃ
b.�5^����Co.��v>�����o��z�>�·���^�֬V�_��h4���B$!<���ԃ���p�q[aQG� �G���|��<w,.#���.I$�����52����
+���ۨ+���:^٫�Q����+������Z��`E��S�m�̋�a��o������5����?z�`\ ��k��Y���`X3|�l�������J�m>_�>�O�z���=x�� 7���kPZ����Q�z�
���U��M8&��'�Ń1��o�f���a
��K�0�21�!��gfY�1�6�r�d�q��8"���փ��Y���`X�z��߷6����I�M�ڄ��Ʈ.R����{�B�`�cB�x0�<���ԃ�Nv�6��&�i�IdR�H(�j�={��k�y���An����`y�-x8z��M	K*A��;�ӬgN
s,�I�μh���[G�Y���`X�z��Ң��Ò���"���^0w��#w:���XPo���<x�� 7���k���w�>.)�MH,
+�n��-'*���
+k�x0�<8�P��B�P*�j4�J%��r9��C�����A������2Y�����d­��޷N��Hu��{����
+��&�[��2|{
��(z=x�>F	xϠ�iWW��ӧ?~���~��Ō�T��k��7P^Y��u���R<�בp��צu��Wx�X��D��>��H$"�ط��<�J���<�XM�'�����1J������V�^}����������'ؾ	_�H.	�<�X��M���HTJ�~�ī�y�0̃�~�f�
+�ɼu떯�����Ögy�����Aw������~���0l>y�{=xb��>(��<y�;����Y�m���K|��/�y�C�0�?9x-jԃ�<Q�� �?~�@���w�&#��Beȣ�U7%ŕ���e7��9�����C��˔WF�+���ЇJ�����+���L,J��O��R�]T'|��􇘍�	O���.wT���)��Ai|���}��-///�R���������+,�N�	e�z���d1~������w�;�r����A1�s��Y��5v�|&�.�=�/���?��z@̀F����y�NY������G�(Y�G�_ϩ<k�3"¥�[1H�O�Ritt���~�aÆ�������'�<�~u��L�L�j�j����I�����ov�tI�zX2�&��W~��ҟW5v��
N�_�)7�~7{ΚZ�(i�M���/O_� :_�����9����ϯ���OR�X�n���#��B��ň�����K�CC�\���l]�&���x:9'��m����A꠶�Fx{����T�wL��$�f'����$�y�H���[V>��)n�Ԟ��[����]^׍>�u�}��B"�
+C��+�����bdd;����<۶9V��&�k�Kd|���"?��b�C�����Af[���s���.�����1><��Vl�jsHT��O��Ë� �g��i�w^�sp��͇�ѐ�����MkN߹{d�эG.�E�4�p���n�b��bb��Ѩ�]���t��.�y�:�N�D��}��c3���_���
eU�Of��p�¡�7Ϛ8��?�$m�Φ�7��Վ��\�cw�֮Mk�9=�/k*y8�-?n�klfl4�:����G����䁭�W��xt�YS��(�>�����l/\�p�DW��T*�ҋ=o���𫿅FT��m^�yo�e�8>�Ʌ����_
+t�<��,��a��.z�����}�QU�,�r�]�$�������}d���JMgC��F'5�jEk��	��.�D���y�ͅ#?]k薉����S��lttŖ��-�5����b�SP���߼rO1�G��������Ѩl\��=�⛸�s�R�묶�����V)�J��9�m�'_9�U����}��{���+�����X]��Me��>�
��@ߠt��*���hUyS�X��;j��m�-XQ��
+�G>R������We���4�;�Q"��4�j�J������<�h�h��£���6�;Q�-�f���^�wv�2"���-��(x���XgR�DŽ��Q<����y��YsԈ�Uri�������Wn64�2116�{?$�z0��샛��_롸#o��lj��Siw���ͼ��q�I���ӯo[���ܾi���yq՝���%��:���v�o�cKXU��G<t�eW�|�����B�R���<�Ԛp�m���y�'H��,�ǣ&�73�11���ӧL�0a�ؑ��L����.F
�j��ܣ��?X�����ޞ%3g�p��������-�"u:��ia�6�Y�{j�22q��=Υ*�3��V�Dh�0]~Ë.Ѕt��߿b�R"*F����2ڽ��>�(�"Qɤ"�m@��z�%���W	-w��'�ͽ�2F���!L�3Mm��o/�J�7�B&K����W\M 7�_�H"���\�(P�)A�F�t��7�R����iii۷o�y�fII�D"�����:�M�މ8��t厪���'����]���h�v{K��}��Fa���8�]�v��FIz�壿9���ƒh��e��������ԃ�S�gL���]D�ܺ[�gvȴY6��2T� �<ϣ�L.cK��۽~�ch�+��_���m�^�rž�O]�"�D�2����sO���N}�y�CIp>�|��k`H����Ev=
(s��r�	�e�D���R�]���rk���z�kdfq*E�s���g�ퟄcJD��sg^�gf��0$�1��ҢKq�z�󫈄����Z
+Q�E}>q!M4��~���)�ɴ����������ζ��)//��~����`y�W�v�yOI9�)�ʾ~�m�R�=����%��zI0���~wۙ�D4jf���S�n��	��0��۽y���QrN�{�kW*�>aOM3Ҟ�II.G[���\�I�#*YO�_V-^���]��ކ���[6�?z,��A�	�Q~����Ξ��֞��L��\�t��vl7o�l�"�yE�'
+^^'J�P05k�q���[�~���7n\�q,�i4l\��c֯��߀��^��h݊E���Yw1.��X�4��C)H�7��™�����*)�t�[���n��T��9�~ĨU�~V����F�}��<���<���#�ej�H?Y���O���>��� 7���k^ϳ��EOԳ
/r������f������<��� 7���kz�l�/E�|�@$�_L���`4�<������ԃ�w�V�du3��ޥ�|��XRJ���I�z�5x���(X��U+-�M
+���s��'��.<��ߢ�+�b���An�������yl:fBEW,�3:Rݾ�m6������A/+̃&W�Y���`X�z���&��ݔ�t����vz��_ԍo"Ç�-��6������,����GMp�+�h�ՎۜO_!�5ƞY'�zZ������z��ζ��㒵EŮ�>�70�L���3w�B+Q x�E�M�r�������G���s�9)2$%h�r���&�y���6��$2��'
��Q�x���ٍAn���֠4�}3�-&+�ն��
+�X���O�+8�A.���Aw3̃�7�Y���`X�z��5�����X�]w�\6���da>^�����Ƀn��A���`������l?G ry����HI� 7���kty�y|>���
+��|�����A=覒S�gQʨ-͍��S�|K�Җ�����w<�˻u�W��N�]��Go�C���^���_�m߶y��)J)�}�/(P�A		�rC�4DաQt�nB��ޢ��5�(jyGKs�|^CF�}�+������T2�W�URڦ�:��;��j����ێ"+%�
+)	=���v��DIA��O����*_���Q����c�GسgM�ӟ��B��>�
+(à��Yݽ֘#SEܓK-�"f�sc�H��~1���U*i�����𼜨������ܬ4zWif�C%���.� j*!�3<-E6p��[A�tF�_�g`��?�*�}1#7�ۓ@lE���Ɉ�i�N���C�8|�@��7�[$&!�z��"�6������SH/�rzjg���������|"����S�༹3�����@���kVZϘf�*Q2�����r�˹߇��(ѸLo���'�f���&O��_?���)�gN�x���U A��/VR��~�!H7j��Z� 1��kn��%�5;�j)�뱣�S���h��=F������B��h�}^ܥ�dk�Bk�ʳ��j ��
+l���E8�+uM�v���씹jf��O��5��#*��(ݩac���c��M�z��%T~g�Q��z���z�5�����+/]NFU���־;�_碿Cп�sM�Ҵ=G�"kG��=���Pc��{��4�?��L��~2�#�i���hL��񵃦k�������}��M����k�Q�٩�Q���W�Y��@����`p�'-�͘o[�Z�y��n
S�$�E��N����x�C�%HDxB���)3
+��� d���++k���ܽN��/OYC~����[o�r�b��6s�y0�r�5++���k�r:UMhABs�ˡ�[O��l�jCD5a5��U-m����-P�i/�Z�/sE{Wc|b���ŃGv�-o��ڊА\X���~����QyyJykM����yLrWԎ��rZz�G�Ë�wlO�a_�T���������GL�j�8Dކ+�s�x����AiwaF�S���K�w�Fg��)JTC�m��.�Y�!�<�(���<��֎�;���dr��zB�⒒<m�z�5k�>+�Rve�߮��7��x���sJ�CT49�0�����cF/8if����8����VD�<�g��Ӟl�������t�(��D5�g"jH
+4�v�I�L�����t��[���ܜR�-E�K�!��޺�gǎK��e��Q���̌�`2�����|*[�D�yi�Na��v�J�V�<���;ԃn.��6W���1������c��0k/zO��᠗׮b�@
+5����%�,e=����G�۸�G3�\!߸��Es�C;�o?u�/�|�Z�L�����}��V�]R��C[�m���/GV�:@�W�����W���
�pL-��
L��j
����/]8q�Ω��V��1�^�B�o�6z䥫��9a�,R�Z����Z{�b5�
AȤDõ#Ɲ<p��Ǝ�sΕ���5���9�=5�}��I�����\�n��#���P��k}v9r��s6O.7k^@r�Jىh�u��N�Y�� �W�oY���m[�K��`��+Ut�*�"bb����秞��džQC.���ㅽO�o޽q.81U�r0�zPҝ��h�wѴ�7]-��z�݃k6��jp�ȖmeH9�D����ES���z{*�ˊvvx0u�i������3�^t����7�^|� ��y=Z����G��^�,�����[��	r���ˋ;:Y��ҙ��=��[��f�����̜�}Dv�Z�B��A(P��sA=x~��G�隡Bhm���y.w��}�ٺG�Ї
+_��F��nrbҌ�"6�'�2��S�x��-���#zGҒo�y�ε�>%����fWu�o4�y0�v��Ӈ�͚��YDG$�[g��s�^iUj���ݟ��l��\�����bM��1��ܮ�N��ڊ���dS'Y�˼��S���w����ג�6NO�
+�?�3���y���G=��spԴbQ�Ȼ8vBdn��#�Αo��E���k�<��EI����=TZ� 4n����pK,Wk:�nO:nb���B���A��^�>���ãZ�S͖Lٵ�
+|�3c)'JX��?��(F;!���;b�C[*�x���|�2�BE-;s�+B.iW��ؠ}u��_���(�8����&��C�("��A��IJ�%���=��2��W9�:��H
���&��zRV}e�����NO.�h�����7��_		5��������T4�-y4e�kh4����g��S�4��+cOYى%}B��]�A_W�V�΋��/���~#u�،�р�3����=xs�W����J�~��6�9b���._23�e�����)���W(��\�#������d�]�a"��%��]�����S��F�rj�4���Ӷf&�����A:_�փ���
���DVh3�+�X4 ms�8둁9_�z�wZAz(y�WN�<�z�����DU�`�Wi�2��3�e��ʦi���bH�1�^
+-�E��5�ǎ�G����c��+O8h0�!�y];3w	E����������37�ev������֏UT����p�6���_���̤qcnj\�|ejY�FC{��/ڟ��=���SCG��K�p�F�OS����q�,��Z�AI���o���4�z�>�Ƽ&D�KN�;}�[�~��ƌ�/��3=�1�
M�߲0�����Y��H�Ƨ'WJC;Sj6s�GX����)�4�I�i깻�"� (P��r���v���.�I�r
+�頧ۏ����!=x}�W����wi��/���!�"}�%��[�"o��[R�c�/z!��M?�Ԣ��k�	��)y�)?[��+�u$��E"B�6	�[?�{Ϸ�s���{'�,1?|�����>���q\�ԃ�������;2��-����֮�����݈������Y����;�XaN��H	BA��(yg��W�KP��j��|=6�
+5)#����9����;�-$�
���i�W{*Y�\:����W�:^궶?Z7ջ>>��v^TI��
+i�#����ū̥H���}�h�+B�,��Ɩ���_���uO�R5H����Wcbju��K�B�KQe?w�cT�JIUcktѡc3o��j�!��<x���.q7�M�<�����PË˗�����������g��1
�Q��`�tZ'"˿6u�KX�91��
����N�X�ĺ����@��������'֛�߉��>�k�0����Ɵ���2�T},�y�I)O�|3��L�z0�����<X`~���+LqS��e'wvt�r0�aflK�Яe�5.��][HL6�����DL��<y�����̫[O��l�`�l}��Q%��
���g����3y);�,<��N����#�>�GfVO�����&8��t���փ��*��ύ6����_����çQ�u�7?���"���{'d��5�/�w��������<9��4������]~��~q���{��׉[.xx��n�Mh�BAC�����y����DAW����N����iez�{`4_�Y@!%a�t��Hȳuw��k��q�N���u0����[<��1;�cˡ3�
+���gд���§~?��'��aQ�b��s��~����rt�ҭ���ٕ�C��?��M��X�=�{���YqK��;+:��������֖)������8r�&f ��s�~SYٝi{g���&^nFO�]O*����))|A&"j�+�D_�7y٭'.����?2�e�:m���M�q���ִS]�T
+*�b��@��@��n����k|��o�Q�q��{�[�rY�/�]=8=m��߃J2�.���e|O6(���z���Q�ڒb|�xr��Sxp���׮����_,�
��j'�j}MA_ܜr1()B.��%�!V��L3���k6�Z�z���W�il����2q���������N!!�<Xi{j�)����n��؂l�����jBX�HF�n��
+����lٲq�ލ[��x�)�Xv�f��Q��\?^T[�F7*A��������i]vU���`�������ݸ}��#�-�G���U�VmX���Փ-�>��Nl��;���[��|1�ۖd�yŊ�7n:�-�c�����z�Y�]�����;6�ٽ~ۙ��䆺�c�7-]�b������U�烦
+�+O�ںe���w�
+�\Pp~�勶��SOj��A_�N�SJ_lDT4!�����]�w���H�~W�b�o�-�~~�D�q����H�ai����D�GHG{���h����v�
+׈���B%7��݉#���0�M��~~�����E�R������ -�����z��
@�hB����� 7
�-��`?�ش����
z�S����w�޳�����n�nl�OA�n"chw�1�5�T�]B�B�.�R�ێֻ}O�ٻGOIh��<�a��?�$0;^Z<�~>/JH}��֕�2l�[7�,f�ny�z���N��ջi�y�u��������t����nV����ʺ���髧ލ��f��S�ZCϫ���62��zv���uL�hǖ��@��#;�gg�;����P�xT��D��d_�^���N�>��vN���b���V��
+�Mub7��>��m�g��*Fw��S��s�yQ(P��c���>S�;���E�o�̃��_-�KB=��(���-�	��܊o.S��m5_��Q��_�N�~�_��)~���ݎ�_o����M��kC�����ǯ�����ke�Hk�^�~�k��I}��BҦ��B�e�� W__o��Rp^����[Z����B&��e�F�7�Q��2�B�y/]�h�h�*���/��mC��;;i$��|^P�@N%4$��׏/�����B	O �	E�܄W_������jr�FitRWU�@ �&��y����)\�׭����,���]c5cr��W_ރ��5�|�,����,�{�b}�<����N@=��K��3��Нzt��K
+Kő��T*�� ���0�A=hoo�iz�~�1���5k�۹Ӟ�y��������!x������z��������T�ഹ}����%{�^�g�x]]K(|�����	�=��j<
�PTZ�>g��I �/���yo��*�������p��o`��:�uۄ����}}{D�ΆX��#�Sp�A���`�z�����CM��mdpjo�[�%��>��f�ջ�\��N�����	���_��hY%�-�r9��Ox�\��@EUO� x������z��ח/��DB�O<�P���B��F?�����	��Aԃ/�}��Ɂ�A����w����y�A����w�v^ԏ/��0|�X"�JuE(��)*Իղ��'���g�J�R)�������a@=h|�jqx\W*ž֬���ȚȈ�����<:����7xP#d�ګ�|���Ƒ��h���o���%"
+�#��_?��UYZD�^�U�����Y� V��Z�I����������a��l�[g=sJ��7��=���3���1��ïF�7sDz��қ<�i�wvnAZ��݌N>f�b������
n�Y��Q$؎�ן��t��H�r���nů�E�jƗS�gHc���!�6�v .��j���F&��C�ft��d��by��“���K�{P̠d���i�`f��s>3~�.l-̭~x�j��p�+~�W�Dձ��F����?9QN}�9�,�7�?4*<-�^�I*�cC#�b�]��>��@G_����K�WqU��twǔR�T�,J�?rp��e�7���n`y��,Ӎo�M3��E"4���m%~�O�Kj����=�e�ƙ����g�}���c����A���#?3�l��g�x:�LM�E�y0�U
+�MN�?b���f�b�F�g���k��[�}���͇IBI����7^�͎�3m‚#�
t~�^�u���{N��%zC�������~4j��C>S��m�/6F�}s��K(|_�d�RI�{ܤo����l��K������	#}B�o�vO��^�@������y��6K�c5B�U3GM����yy�f׳x�;W|��~��'��}Tډ�R�s���7tLohnjl�~%������tu��5r�;���
�BԡQ��)B=\|�#�3N�3��k�s�<f�����_��K�LG|av���ܿ<8r#�G�|���G}r����jv��ϿXo����(`�wS7��$�&G���}��]+���_��_�߈�k�ت��Ұ5�g}��7_~��z��.,%���C�ͳH�
+u�261
/�+)����W���4�&�M����3A{�O��Vl�;�O��:��x�H'��j:W�Z��v3G~�5��F��u��B�P���
+����7c�|�X�X=k�[�<Q�����,���Lh���Q]m�@���'�Kmo���������C�z��ˁ�4[���ĖJ�GX���׭���A�i�m#򚟞p�q�U���>��h�:������T����3E�̈́���Y�_���Yk���=�u~����>��>Z���e��B��G�����=���o��1�ak���t
�y����Kx}���;�o���Ρ�fL_���+e�����48r$������\Z��oS���cb��=(a1��t&����L��A�eF��i=�����n��W�T����g�ԝ�1�^.����8ZGLT�����������WhQ{w[z\tzO�$��F�qerrF|Trq�\-a�=≴�tg��Mm��z^������%}�lk��)U"�H�׃�����A�/϶����� �6����G���<�<>_ �xB��� ����o��^���8��!9X)R,E����2�	�^�A���u!��06��y|���
&]T3IBS�(b�C�t:�:7�6�!��y��9��uy��7���|��D�k�{>l�"�����C��)���`8�̏�t����/>��^w�A91�l���k�sז����=�'+���4"���:fm�g��6?�_hp��nL;[��f�U�7���D�m�_M������9����܏��:[f���A�������m}�C���\��j6\5ed4��������6��+��^�c�m�(�5�[p�.x��	�?J9��_[��E�i+����7�]�5��Q��9H&��y��<��P�!�h�蠩�������bɿ9�����ӑ&����^�W��t�����U��,���`�(�ژ���֎�����*ݣ��R��l�v�E��r,��Gd9"�(A:�Ў��lGSj �h���h�W�$I��.���\�
+endstream
+endobj
+
+1272 0 obj
+57249
+endobj
+
+1273 0 obj
+<</Length 1274 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 463
+/Height 233
+/BitsPerComponent 8
+/ColorSpace /DeviceGray>>
+stream
+x��������� ��U��������������������������������������������������������������������������������������������������������5��'
+endstream
+endobj
+
+1274 0 obj
+127
+endobj
+
+511 0 obj
+<</Length 1275 0 R
+/Filter /FlateDecode
+/Type /XObject
+/Subtype /Image
+/Width 463
+/Height 233
+/BitsPerComponent 8
+/ColorSpace [/ICCBased 506 0 R]
+/SMask 1273 0 R>>
+stream
+x�흯�����{���h,22..�VEEE�0�T��`b01����̅a鄄�������uN��M�1������|}�����������������������������������������������������������������������������������������������������������d��R$����������c���{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�DF��m��{�B�D����Ù�,�ey8r\`ai�W���8��GM��.��ˮH�ai�������m��0�VE���@�BE��߯g��9[�ͳg_����(2�6�~���h�ųE�$��,���(��S�
+H�ai��~�l�8�0�n�+�������$���4��3
_�&��ug�{������m(�wai�����:�y��.��o6nW�']��(2O3�11�bG�c�YxFچi�N�:����������^������"KWi��VYq9�!_�w:O���d�E�to�|��8<���xr�y0_fm�$E��y�e�O�H�]΢�GgN�g����+��rx��t�����$���!�Շ�Np,��(����I�i����y��~i�}����������Y:[H��<����������w��B�#X5GޖyR3��mK�p�7�Gav��r����)|��p�q��jWO�2��HGپH���0�t��V�w�����m�h|�(;�ӎu:�k|Ofc���:�5��kl7R��(2O2|���1I�;�jD͈.�kŒ��;{:߽��S��}X����I��~������Ӿ�m_��>F�e^��v+��fu�n����/�ai�'~3��F��蟵�:j$��W�:]%��l�.j=
+��^��g��{����Ax�]�Ĉ�Z�^����<I��U��Z���h4��U�g�O�oc3Z?������v4]u�����N�ۯ���0_�� l!�"�$�gQ���$��y��Lg7ٓ���k#���L��q��;F�A������T?�	[wV��/��<u�a��_Q�lު���Ѽ�	ۑ����7f���ן,� ��Z�7�E�q>
+V���(2O�*����_�OC#8��	��?���P=�&���cVKD/i�L�[v�I_=l[v<ﻮ�]_�ּ��Ot0�����(hi�n�*U�ˮ��Ƿ=	el\q�?q���(2/[w��x�A�x�;��֑�ׄ��RKz������}u�Qd<n2��sFW�	�U�-���c�z�~4���m{$7Uul\vm���e�}�>�A�BE�ak4�H7ƣ�i���:�*]Z��	����okdt��8��3Z�w6kp�ύ��{ak<�z貿�R��b:�}�}�����{��?�a�_H�ȼ lG=��u
����mԪ-g�F�ڲ�_6�ۻ]%E՟<j;��,6�z�\��0���d�4�6���k����׼:tmws�_k#Hв�4�̓_{��
����'~J݈�_e65Gmaۚu�
��5F<z�C1���>���|����ѓ`�!t���������L�+a�_H��<)lw+cL쿬r`>�q��3ts��/����6\��h߽��w����C��W>�B��ۓ�M�>�F��3���?��qۻ'��~!E"�[9�Q���rPk_�u�w��[��u#<-l���?���U�7ct���Q<K��l�-��o����k���I6D�ba��}���h�B������V9�Ŀ�Bs����%#��Ϗ8UWd������{��i3c����9��c4k[ء|p�-l�s���j�p{ɒk���a�\d����l��Ep����8�Dm���w���`�C�����ff��ˤ��|Z�+�f���O���'�m���[n͙�}�<��}�#�異�/�Hd��Dx__9|�rc�[����׹K�1~�#�|e>����Njx^�^����ٿ!f~�I����p�1lͦ�3
��:;/iX�z��i�g�.[�����S�ߤ�٪��m�5��]՟ʏ��O���]p[��D�+:�&l�g��V�ܷ*�Ͱ�.PP$f#��Ox����~b��?�e˶O`�����n��"�ܱ����h0��E^��s���]����V^R�[P��p�]ՖR<nV�E]�w�/
+�� 1��s����ۇpƜVp����w�a_,n�y�y)� a[멸r�aߐ��F��n�Ad�=���]�o��.Ӗ�c�.��q��7n��h�~𺰽0����U�{�ˬ�̉��?w
M&�pY�rI����߆�X�]�!��b��j�y�,��&����땠s����#�َ�������A[��m�kض���fڭ�_���dԣ�|���5w_v�2�k��Dۣ����Ϭ��B���M�,�y��g&~��~�Zn�n�A�0i�������kl0i]����\���I�i���2r��=
��߶��h���<��;�1���U�{۽&C}�w'y�]��}��~��h۞W�^��"�y����6_.f���?�5A��4��y�
�"[�a�y��<`��������}�&q^�-���o +���/�B/�iQ��q���l�m��'$�vQe�k�h�nH���YD�.D#s�����a�9��1����–�;��9e�u��.��A��s��-�B�DaKG�f�r4��eO��t�K/��W�^��"�A��Q��l�8S��j,��b�.��F��������/�Hd�t����v��뛵_����k�N�-�/"���S�צ�c��N�n�������nH�� l�w��7��eX���y�{'\���${�c����ߍZ�-�Z�A�.�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#�������E��U��M�w��=������M^�R�/]<���/�Hd�~h�wˎ;_w��=�������#/����{�B�DF��a+9�c�_H���1�� l�#�{��)9���t�x��~!E"#��C�Hؖ�$v'��a�����^�����Uf�y��y� \���Y������pg��~�x��~!E"#��C�Kؖyr}�Xc/�vF�>[t�;����z�!g}N�N��{�B�DF���^�Ip'��D�����d���l	�>�~3�x��~!E"#��C���:��ȏ�t���ȟ6BoQ��ߧa3PO7�Q�mm՛��s��C����R$2r?4]a���*М�l��/37����fN�|_��q�����6¶ϩ�9�c�_H���1�д�m�i�xE����ȼ���w_�����󷁙����s�D����R$2r?4�a{�����ٴ�������˾���aھ��!3:
+ja������/�Hd�~h����q���f���C>�n7�I�«���Mg��W`�m�S�'r��^��"��c��i�r]������zT��F��>�~S�x��~!E"#��C��F�����އu�x�ݍ�s�,�4����o���/�Hd�~hZ���Ǐޡ�ۻ���m�S�)r��^��"��c��ik��Sc����˛{��[�i0n��>�~S�x��~!E"#��C�ڍP��.��8�fC��t���>ݜ���9�c�_H���1������̻#/��[�K�2c�W�(��e5f�#l���o���/�Hd�~hZ�ٖ� ֏`�5�u3�f?3�Ș�����W�,�Z�k�S�'r��^��"��c��i�AV$^�e�f[�c�Q�rW>3ڶ�w��>�/}P����o���/�Hd�~h:�F�M.8���j�7�Z`�KcV�����d�m/��}�D?vZ'5�<�;"�{��)9���U�v��"�7��8��������Y�]ޮ��8���k�~�~?�x��~!E"#��Cc��������EeGA���4�
�*e'e���o���/�Hd�~h�j��$nyS�f�:��
�{��e1�f�:�`����u�7B����R$2r����Vqx��	�x�\��^V���}�Xy��g;n	��N���{�B�DF��p�E�ݞ���Ҙ)�֣d�#�{��)9��Ϻj�~��n�Ո��������/�Hd�^>�75��ہYe>7:r���r��^��"��cx]�8���v��Y���� �I|w� �{��)9�WA}X7��`3p���/�Hd�^�$��uf�޼6�!�{��)9���q�-�;��<�8�x↳$ߡ��Q�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"#���6�x��~!E"�?��,.����������������������������������������������������������������������������������������
+endstream
+endobj
+
+1275 0 obj
+5636
+endobj
+
+508 0 obj
+<</Type /Font
+/Subtype /TrueType
+/BaseFont /PXAAAA+TimesNewRomanPSMT
+/Encoding /MacRomanEncoding
+/FirstChar 32
+/LastChar 255
+/Widths [250 0 0 500 0 0 0 0 0 0 0 0 0 0 250 0 500 500 500 500 500 0 500 0 0 0 0 0 0 0 0 0 0 722 0 666 0 0 0 722 722 333 0 0 610 0 0 0 556 0 0 556 0 0 0 0 0 0 0 0 0 0 0 0 0 443 500 0 500 443 333 500 500 277 0 0 277 777 500 500 500 0 333 389 277 500 500 722 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
+/FontDescriptor 1276 0 R>>
+endobj
+
+1276 0 obj
+<</Type /FontDescriptor
+/FontName /TimesNewRomanPSMT
+/Ascent 891
+/Descent -216
+/ItalicAngle 0
+/StemV 0
+/CapHeight 1356
+/Flags 32
+/FontBBox [-568 -306 2000 1006]
+/FontFile2 1277 0 R>>
+endobj
+
+1277 0 obj
+<</Length 1278 0 R
+/Filter /FlateDecode
+/Length1 36356>>
+stream
+x���y`Tս8~νw����;{&�&�I2!�B  A���EEŒ�nX-�.ZI�j�.V���%`��Gm����Zmk��Q��iy-�����s�LX����}�����{��~>7#�th��{�_�v`�3��
%?B���p�<���iH�DH��W^���S<B�� ��w�-WL�~�!��B���x��
o���C]#A����gu��B>����nzx��}�o��#�6�_�T[�Bh�ǯ]{�����o�y�3k��|�C�y���~=���ו"hB���]>P|�z��x��P����<���1s>�"N�"R�/� -�Mo��!�2]ԁق�6���B�����( C�H������~���^�p{����o�>�S�KgUנ��ե���r#E��(�N��
+G��7Q+�F�N�ڋh~q(�栧Q`;���.�Z�����IT���o��iGȎ��!�Bw��@+
jC����Mx	�Bz.��Ix���8r�����ې�
+�������zV?���/!3���tFA��S��!
+�~t��v��A3�A�s���h��m�A�	��:v���{�ߣ�r]=}�
#ޏƙۦڃdC3�%h-�~��-��UJ����.(}
+��I2���#��5�諰o�S�oX��+�Y�~���z�օ�G7n}V�)�:�kp
�`�Z�@ˠn'z��<:��p/�/�O�rS-%k�V�}���Q�p7z�q�
��
��q~�:U��m0�
�qt���X���Op5\�e>�l-�(=]��EDԈ��h3�݈���
+:��ʨ����T7�N����0�E�z	�}��~4�[0K�a��|)����1�~�� 3���e_g�իT�&�Ɏ�%�JV�����վ��4�z
�p�aFo��33�9p}�y��
{'��;��k����>-�@@Y'����X�?c;�!��Ɵ��	#a�Vb�l�me��������sCܳ�/U�TkU�
+k�>3��RW�D�q�Q
+�Q���M����B����t���hz��z
���>�@8c�
+�~-@ݝ�>�v�����{�5�[�1��\UL=�´1̝̕p=��`�b>`��zv+;��!�qWR��5Wu��)�u�J�+�tvb�z�w�7Sh�=�jꡩ��~_Z^�㏢4��H��(w>	�3���Ы@�A���`@��R�k-�σk!^�2�V��p����F���a�|;�?H�G`nO�o�Cp�G��9~�������3,@s��3Y�3mc:�E̥p]�l�k�bn�z�y�9¼�Z�(�fײ��.���W�7�p��\3������{��	�6��*�jWmT=�z���y~5�����?+�B��N�ExS(�Q�V߇y���e�7�gUV�&�=�';�چ�����Rv{�S��4+�_��U�5����'�f��y	�؀���݋J�Y�����
/e>�Uܗ�af3��P���g�nW}������3�cogo/���TO��TO0?A2w�������1�C?f�b�A=\^�)�
+��[��`�g1w�j�M�	�;6�����8��s�2����;��h�� R��]<�0~�}
+/`t�[��7�7;����1�c���if��[���O�͘�9�����`�LhZ;P���Z�D�?3�B�Uo��8�*�B���c^GM����݅j�Q���Q�y�R���/�ɠ1|5�b-PK�m+�;Z���	�����B7b0kUq��^�(S?��{�ڀ� �8��?��Z�q����F���Ox�5��V��r)��y�x|j.R���t+�y�y77(�C��a�W�Z�<�5tU�a�{wi���=hM髥��J���4��J�Q=ڦ�e���\h�k��_�{�n�E�z�N���
�?K����hgK���ϑ
�#+���)t-���\v�M]��+u����C�KO�X�6�6��zRP�F~Փ���pW09o�qJW�v#��^�Ti�5�yFS���������e3�T�:Q�E#�PP�}^���tح�I2�:�F-
+��c�R��~y4�?���s�I>�
+�^P�?*CQ��mF�~�L���-����J��r�%��fԜN��ay����<�W.���{��	�^H�#4��t0��΍s�Q�/��vܰqG{��n�V�n�\�N�}-$��u��a�,L���i�D=j���>�
+�!#e��k7�v/�i��	{өQܶ>�n�g���	j����F��*2t��/5���1	��O�6�7�]�3ʮ�%�0%�sF7�r��B�涞m�z��Ϋd�ݱc�<�gqυ�A��B�L��G��^X®%2�����g�	/��<Ȝʳ�<�NJ���G����;�q�E�n	�w��#����.�X���x½k�x�YюK�<�Rd��5��>�T^�}c%��_���\M��$�u�u�dD�y���zF��95���F�c}#4�_/��F7�~\5�n��!5A�D�UE����o�?<���%k+%|T�"I%��
�ӣ��hu5�
v�8����
c�hx@�!��Cݰ�k{����� ��{��2�Ë{�y���GJ6�;�������2R3<]s���0�����F�ع?�d��ol��������]K�]�W���;�+k۵��\���\]%����\Vj^@�ҕ=���Tюp�U�s�`��������S���]��>�3���H_\���aL�i	�;F����W�/+�&O���c�9�6%/�ϸ(��t;X0c���ܱCsQ]�;:�rǎ�k�J��²�q��a{v��Oo�X��=�ю{{aq�6�f���S��KV��P�{i�~3m��{����=���4�����UuS@�1�� �
+�K���c�{�E�$b�y�KP� '�_�/CΤ�q�d�%ҙ慓ͨ��YjrAS���{9tVf��**�)H!��|�t��h{��)�E�`v�f�lp�&� ~��7�ɩh<�I+H�J�x��F���;���:v����X�S�fl�ףa���Z�Z��qE��V�����O�ө���.�ۍ1C
+��b���^�c&���T*�ԥ�h��Z8�A��h���tz<H#�LV��Ű��m��~瀓q�1zš��Qo�|�0ϳF؍�r�7�b
67K�ҙ�Sҩ��NM�9C�d�HtaH����3�S�6U&y�tl[�I"��jr��a	�,�B�Rǒ���;Ȇ-A��?����%�-���‹�.Y�̑����ū����3x�ܩg��������SErwO}��r�q�@�T:�7�\�EIŋ^�*j���VZ
+k�x�z��Qߩ��f:��dr�L�䢵v���b�|=FY�5�im}����Bl!�K��U�z���kE`��~��F"��=���Y�F1%�(��؞��3�b�P,��:���+z�A�t&J�N\"�
~����m���G‘P�FF^�z=>����1��9]�9�:�����)�R,���d[�\���$��wu�m�������a7Y�o<� 9�u��
��|<��C�̿���������?[��m�k/�_���"�DӜ��<��xѥ���7����C���O}����C����}6��d�q؉Ӏ�<��=�Xg�s��CN�����'ch����
+���@��EH�A>��U ѵB�/����c�Z�1,:����)f����
+9�V�q��3�G�>UY�d�B	 ��sK��\Ħ"���Y��d�du<�g�֙�v��,�b
+d��O��AK��)��Ѯ���l��_�t�P���F_��̯����-�`����x����-:�ޙy���F�ݞ��y·^�Wq+�U���k��Lי�~Ű����9�k��?p��x�yR���͆}�K屹�.��)�Z�֗wu��;vʂ��0�K�����Q� �ڬ��ӏ�0�jŪkVc�[��$�{��v�u1��l,��nj�?������,k,�-[-�e�E�I�����2�/����Pd=V�P]�2;���7���?3"�
+5�<�j.Ct��3}�u��d�`s���>����;��%�j�
�&O�̎"�s��H�&nu}�����m���c�c@9��`���Q��B�<l/�����y�����
�kΞ�F~�3vǢ�7{����o�c^�iE���>�����o��������ȕW~����F�&
S_X���/8�4���uE�Xi\i�[��mW�{C��Ƅ��Ͽ�?���F@yܪ��9�L�H�h��{������!�aT7OL��{�����s��9�c�Y�d��1���OIf�1����OT��7"��*�n�f�����:��#P�N3#�=i&
��[a�c�����{��y&���%cq�����
��3�7x�����IN�L�M���2
��d�1���C�p0�9^5�b .Y.����
+j��F��s�p@�#�Fj.��d�m�86��IK=�9�Ov�YAJhI��R��=�p��!�YacӾ;��b��[������٠�m������;�|�y��?��������|���C����9q_JT���'6-�j�U��5�ݱ�ʭ�$4\l=��Az��ʮ�FԮW��b��:l��bV��1�����s�NX�ÛhQd9�׉(����� �h�nE�¼Z�yQ��t�x����P�j��Żٽ,Î�+N�B�ˈ��^�4�F^��2\�C��t��� ��D䘖b�r�	ir��T4Q�ٖIr�fI�rW4ԇ���-l
+��\f�zr����<9�g�z_1�~���W'א�x�+�M��R}��͍�/�߉~Q�����l���5�U��
��\<+���zH��Ẍ��<�D*��7�1�g�	;ԺQ�R�(���{�OVsծ�x�*d�,�%gQ,#�=��J�g�g�N���E
+�@D�4�&��Z`B2*�B�{xB((̦�Q����{��Ǣ�0@��Y��HE4�u�k�ס�4�	�R0�6+L��Mys���6�4���>t�S_�&2�{~t�-?�g�w���O�������nފ�w�[���/�����?9�̽Ϭ~��S=�s�-�����7y��2�<�ƪQ�:�(�8�1dB���߇`��0�w��@��5�(���Y���P`�cc�Ȉ(�B������,Y"ib�O�l�'ݺ��1	G��Q/i��@w��-����x�NR�?Z ��<���O���X���/;h�~���%K^o�B�E�|c�4Ͽ(�k\!-����6^)m�� 
s�;�ۤm������v��1�^t�n������2�-�������O����O��]&�P��|~�Wm�x�v��c�#�LV��&�Q�%��2IVӀ	Îa�yM11~+���'*/�>��D�Ȃ�-�j�;�������A1�1������H1Ȋ��p������Ad�>�{�o����8/1��#�6C&�"�p���m�ŒN$M`i���ۤ[�5��G�\_r����zqP��
+Hh
����zB1���ɿ��X7�l��n~7��.�-��pq��3��_}kQ<��Q�3�en���ܽX�r�`j
�3��_	f~�*#�a3�l�?��L��2����u�!�a�V�c����l7ٿ���}����ֱ���e{YUV�L0�Aƃ�Q4�v�UUyY<ƼwД��4ƶܩ߭g�clV�Z��sc\+=�ׄ�cr+@V�Ͳ�Pa��3˜��S����R��C�@a�'���y�e�3��g&��(A�m^�[L�Gy�:�t6D�*�5}��2
H�v,<*`	�glV3��<�����­�ja������_�z��#w�pK����/L�=��ny��;���[��f��Cۧ�|ol�/#�O[>�ϣg_�K_�k�xrd����?+��}�R
בa\qw#9%#�+���7���M�#�רsԥMgo�nӲ�����~��^����zN�ޥ�g�����א9�q�y��ӽ����R�jM���R��*��ɀ_g�0��:����y������m13F�"3�̒y���0'I�2�y�t��ifc>Q����6�1&6V:�H���D�c�
+v�7������l� �w�)����j��w��ky9)Hb�*��W�Y^�D�A�,$��Ԥ�>�$f u�OcmԐ�Ps��Tۙ͡�އ�`Wɦ�b#T*�)�\ڈ�c3�|y�ak	(�C܇ �,��ݩ�m��u����@륌�u���ٓۧn�Ѯ�W����[67Z,�{������_�0�w_�����k���j:��ߟ�ƿ_�™���`�A�Q}E����˔�p�B
E�J$;͏��*f�̻IU�nQ�
)��ݻŏ�X���%�'
C�V	8���Y�3H������hg�H$3��x5j�Rr�G��g	n�O����xM.�Q:�t��<��Y:��*�ݐd���P(��C��'�<��!&��Ö��G�t0\xfð�H�3k�L�V�d�i��#�-!F	��BX�B�=���!>4�Ȋ[����d�N��
�A�f�Ot���3�P:3D�=���a��/�M6OUb�HbBX+��4�Xd�뀼4/�����_�O27�5r2�c��rI١�R���wrKb����f��Ҙ�\ô�"Q��cc�evF��u���,gj��W�֟ϱ�\ЌЌ:�n"^�eesP!��T�
+��Zӆz1�a�!g�c�\���)6���:�q�J\y�R���I�-�8'v��"�FO��ȑf"�@q����,$�y��VO�\�;�dǃ'�ٔK`'����!XO��.�0�Y��`n����E�K-�ͦ��t��&+�@�;+$�Q�#!	�H�Jhs%s#�C�%K>"�phߧ�6�/cV�X!6�7xL3C��G
+�倌rHA��^��x�+���&f�9�d�����⚃b�#�Vk(jh��.���ھ
+$��g�P���T_�X��!�J�`/X��
+`�r�=�����Gm���:�M+dIW{���?��(L�D���k�ʩhW+[�>�$`�f�i3���p��7A�վ�T�f�w^��{K�@�A���y8r��W�_y�]q)S+F��U����U��pF�*�no������W��U���w�����ޫ�}U�!��!���1���'��}U-�Ea&l�U�2� ��[r�܊{��r��rVKe���0�3�6��t�1]XL�����Zh��mx"��7>\�B��O�W�2�q�¶�#(Ʀ?��h��¤4a�
+��X4��8�7�px�ѪX���/qWu�z��WDP�-ݢH�P0������S^��T���l�0�$&;y19!�\k������A`�
ola~��m�v�ס����5C��K}�{�Һn�sS�`�ױ�H�k���<a��h�:��p��a��[NRF#�Bq�La#62Z�*�P%�E���4�;����n�íq�q�q���*�ʀ�Ǜ����3�`�����]�m�m�;�ےOsO�If}�>�/��|y_���iN�ˁD"
b�,��˹r�\ ���Y���[�T�\�BZ�X�='�x�O�R�R�Rwo����Յ��+�V��h=��Vn���5
��,�#��dw�ΎW�\�jr��t���у63���
�������x=�����GJ�G���:�U�3$u�.��Ɠ�U5l��H�X��n�<:�Ê�5�db�3aٴ����a���s��Dlm� �;�_��9S�U:J�
Ȱ(#gr��\�;�qvV�1}�A�e�����P1�,ہ)<VT]�I@���aZR��>,
B�l���KUL�Rס����!YMZW���T2.�
���W��uUD&�iA�ྶE�^{��Ji}����x(�Q_��E�u�\�X���H^���0 4���3��%�¦:?S��x,�6��}6j�{n�ƻ��>��=]�Ό|���.�+�n�RCS|�_^p�ۛ�4:�A
�X�m{.ۺxV]׭W\���G�S�Z@a���_�ce�)��_w���Vp�Ķ1�4�ng��Z4��WѰ��-[BOl!�Z�(M�"]c�f3���N�@�7����FHMm[Wh,�)ђ��H���D*��)j�T��|$4A�n����'�t:n�;i���pJQ�М�P��pL�Ed3�g'�]���q�ĎӢ������1��ㄅz��Z�:Ƽ���@q��i�!
kN�oE��݅���S�}f{��2�©�T�v�=��Ii��5AF�y�K3O;�����4o�
+��;�wh����o�3��5-L�X��͙D:�� ҕ����*mQG��n*H�n�@Яceݠ�t�α��JB[\�\���d�έ��}>�z �8׬430�b�L`�����i3�i�:�N���Ÿ���ս��D%o4Q4��D9%z:�GqT"��/0mH@����@�6��T��l�FPEY��V�iwXh����2"
%�3�͓��C���@l93y�O�l�LM���M2�-����:��z	!�E1��0�VY�^-jD�����E�|/2[����3TE/j�2.�f��ņM|���W9)��nSM�x�A@J�Ȟ�-f"ς�3�y�f
+yr�D�C�b�s�`��D'��蔵E�^�nmQ[�PEb
����)z_��yFy�|N�P_�P���6����n��FNU��l�|��i�
+EL�#�3�|Οx��KZ�1&�fGw�|��Y�0J:[��5M��Ԣ9��q������j�ܴ<���P(Ք�ͧ��$��wN�v���on|hΗq_�+�_�K���OK��#���E�O˘�ϯ",\VYuȩ�f����P�#`F�h�๎�ד�:�Ӂ8Fm��dU���jC��Z�eJ�[�M��6�SЖ�Wikr�2�(1肅.�9�y֯RŢ��7�eN�@/�'H:L�t�X�D	 �8I���8y1�m�b��!���������������
�]�6�쳢�)�&�׷Z��9N�q;����Hj�ӯV�U��?��9#:�����G��0�z�%���Ar\B/��7���W�*�"�O�'����l���(�s7�U.��
+1���حqz�˩�yE����]Z��x�\��V�z�1��z{�y;-�VY\�G�L&�9C���w>�ş~�g��\n���j���-���W6
+U��G��'gnjb>>�-�&�&][���F_�X�{�)���>���LW�{IJT�J�N)<աx*��H��)Hٵ2�!2��e�J?Q��*;���(Q�	)��/`&�%Y�t{+�F�B*�R�@`+7���w���4���v��B��eɣ�V|�>��B7Z;�2;G@
+Fh%������l&A�����x>��pw<Y?bH�
}���x��� ���-�?�ٙ�^0;���go�nQ����{��YA�g��Wے�T�ĥɇa���l��S�\��T���0�=�dd�ՂGK'��T{��H�L�B�I�Yލv��G�W��1�׵���96_�������1-���U�p*`��
�d�̶~��}��
�G����n����2y�,�m���-m���P_�d3�-m��,QF�y@vǒ���Ą��UBT�ժ�<mY$G��J�"��^��eRiRY8�e��P�&"L	r��������߷,v'�ؔ6ힴv�t�o^��i_5�iՕ3?���p��o}����~��k
+��ߞ3P\��?�@���K�QdE>��
+DW�v�H:#� 2��@��-� LT`�|�� X�+�"�l2� ����I@�D���<MI;�+�E���l�j�Zrؘ$2��A��G�f���yr�
�=h��Z8D��"y�! ,	�0*�H�־G�����q�9��J��L�p�Z~�'I�l��l!2�I���_Ld��O:�w��Z:V)wС�8�\�����r�^`�ޢ]�dT���y1@Hp��XU�/���=�K�c�̾Ʊҹ�-`V�jQ����3���t;�;}_g�u��ɼc��t��+k1�����n��e��ӂ�aAê	���'���L�zQ`)�T��b�[��vY����fL<��|��=sRwFcO	'f��d�F`�F^������F�j1�kl[m�m��8���3���o-rD����me��H�x��~$ګ<E�o�o�ﴳ�3V�01&��LN�)�'����0qT<)��3���bS�9g �+,2H���6`�����o���N�2HNF'@#A׆L�E 
m��4�$�_�_
��56��>��s�G�a{��F~Tf:�x�6\�)�n��hU�rDh�~O9�)�Ur�rNSΩiN1��6�Utɦ�nJ
+.��z{{-��r�������n�ce��xÆm+�Ll?|��?�סG_�܆�VI���Kngf�����d��[���#^��'Ҩ���"�؛U��$#V�;���*������'�%�EC�Ԏb����b&j0S�/T��ek��#Q�!c�8�=��<9k���[�OHe�4N�cҫ�:F�{D>����*�������y���J>to+Z�������NM��wI��?~��/�Qf�#�튱s�9���;�;u�G9�Mo
��#�nq��	�	�hZ-�@��T�I2^�p�/����+*����%?�7E����$W�0�xQ�H��c���w�J2�|�W'ǰ���l4I��8B�����<����qKK9���X�{��& ��0`7�0�W�(˳B�Pʅ��u���wj�����'��[&A��V�S�h�j�Em���ʋ�ֈW�a5�4$�,N��S�PBz���!�����Ά���Z2�n�j�k�����W�4������@,�x?bL~s8��D��cV�m��������K͕o͞K�6gNu���{��zه�/����vճ(-�bn��a	����=2�Ұh���c�vr;U�;�p�,�u{�ή�=�xйk�wDu�q��Z����U'V�\uz��-�꤂�>�J��8��Ń�l}p����{�-�Z��%��P�l�U�BbP�-��{�/E��~�`Or�ah��I[�����KA6Xy���H�*Α�x>񱚯@��A���Vlâb�,�"$LЍX�w��1�Fѹ�k�.��v1���"�k!j�*
/��ũ�q�w��;?�E���))�7�v�v�؜��ל��D�P̰�K�R27=`+$~x@���o�����v= ��h�
+WQt��;�𢪁��U\�����3T�ğ3!U�˫r��U{`�U�ȣ^�.�ʰ��A��َ���@��JQL�9��v:F��b�Ղ[jrl7�t��q���t��4�^Y�z"&��a2G������Pk�mw&����@������))9�1�$��OJ��A#P�
+S�|���i��C��1$����ā7���Cg&ȁ;)����!�x��s�i�Z��]+��#���Ġ������kX�5�(��VǖG�z�w�ߋ�
+e4��h��ŋ������R�qvx��
+/^�����hA�|w�/�+L�t|��ŗd{ђ�b�;ڼTJN��*���u�G�=o�Ɓ>��)kS4	`� ��5��>s�b7m��ǝD����2E��e�r��)��6Чp��Wq����9���<����W��W��䍍Ǟ�ә
+sށ���|�㟾|g��T��El��aN�{�����O���
/x�.��o�%�/��}LQ�j�[����ƊV�,p�J��tp��+j���l��@M |�톛�X1{���+g����'����:7o�s�����_A��gvVx��Q!�+iL�5��;�A����'��bB5<����3F�e�Ă�B<���N�,�>�i'�#=V��R
+���Q!=�c��H1R�L�Kc��Z5�j�pGᮂ;���x�ji(ԣ�ɗ∝!�%� =����Th���Z+K�K���x�ݰ'o&(Y�!�1��NI�����_
e�ʖ5[-�X'��
8H���8H��0�Ӕ�@�/H$�&u�tcC�kS�]I'B̢l� x��3ۨT4�� 7���p�H#7�8�x��M򸻱�q�)�X�	�i�5*�P:��i~i~8����X��	�ּ�0��zDg	b��$i\ΈzD�G5ب��ּ��4�HE�(������@�N����4��O�Hs���on�.?��e"�^x�<��l*+���lu{U"�ļ*��[��\�eP��$,���uP9�+�jz<T��S�Jk�Ac�7����Š�)S�lJ��
���\=�V�j��:��-k�f�}��nn_�Zyf�;+d�7�ǤK�.��My/�"��q9;��=�y3���������#�Q�=w}�Z2�N�A��U��')ૉH�!��C��Z����t;9�no��&s�cQpsp+���f��~�T��Z;�����~�Oz��b!)�ʏJ��L��s���)iH�9��UI�������_���{x��!9,dz+^�Z	�)>��z�dfe|pħ�%��(	_�e�����esr\#���D�DNGTr�;�($��Y[��qcS9N��q8Jc%�r�A,�C���hw�����Kg��
+��Y3���"����
+$R�-��N��G�J�褖�����w;1��dĹ�yکr���:E���Ⲙ
+��&�s�/�(����,,�຾���=�u�zƌ����wմN��e<j���V�Uu�h���1���������S����	Pk���/Mì��¬U�c���P���u�tU,��T[7
�:���R�AjV��Y$���B<h,����d�9����LjVt%�[(�Y���*�PY�692�2 �ʌ�&ʀ��9��j�#�sx�1�8�`T�ȓXi*��c�~���nVݎ~ǀcı
+��_��	?O��aH�A8��U�)�f�Gt�[��u���i�J��~(�IbK���1��$t�/������+�9�ҒqNw�	�T�}ں��G��U�,S$L����b��
+w�R�K�Z��n�iق�4�͑
%�GJ#��\��J�4tL��nEJ� i����J۵R@i��Һ�J޶`��Ӽ}�t����"mhH7���$}<�@OIAu�k '�Z�\��t�@Ҵ����O��D�0�>L��܇��ؔ_)�!WS{3�̊�4��J�Y�Qb������s	Q�;�.SH��2�h��e[��˖�5�hJ+4�T��,5����N��ߴ�A��'+�Nd�cR�ƯR�{��4C�лVP	K�-�5�&
+�&���$,��,��Js�4׺����e3uO�HqCYF����چ�������Oh��=�1�%9�a
+���xK�!�zG�]K{^B�P;�Y�s���.'D�_�G��������D�I��H/*r��c�5$�5�P��	���)�w��r �L�sc��@�5�2+�,��u��1ѰP)&�D$D;�� M�4Z��TBgGM����:n�	�d< ���DpA16$2�Hc�4�60
�̾pEkd�������‘�Z(-d^����{zǘ��A��3�Nr�Y�T9j����9�jo�a�Z�+�
+羯:/�":�>�EtA/6C��r�AIL
 �P1��꧝e@��ȹb�)�"nR��7����b��y�A�^S?s��2#��p����5���1U���US��KҮ���-�n�y�FlM2m0ƪ7����kY�-S7,�� 49�����(����T��"ӥPV��R
S����H�3c���T�¥t���(Ys��(%�QE����$�aB2$�E"%I�<JD;UY�Te�ӳ&�4y�O;.؉V#���G�ю|�_�j,	��$��.�<�ib��%mӐ'��Dr���krtUS�')w�PY�Q�c�Vp��g��l٧���^��$�/�! RYq9O6.�کŃ�jh���ܿ1"R�)RJ!R�!�鑖��ERd���G[�h��V��D��4�HbBZ$���V������X ��+t����*�a���!7Z�G'
+�h�C�x������XVf	d~HL�
�þ�?\Vfj�խ9�/
+���G�a�Ѡq�#ˆ�GEl���"'eƓ��E���Db �
'F�	%���Fu@�D���$��
+���by.�b^��*�4��A�#G�T���j3����p�W���$�
ښ�S3,J��k]x�
ZADkG
h2<�x�ky�-S[V\T�1.�7�:��)_���ֹ/}r���D�{�̈|���i^�G�T��g]:������RI��r�爊Z)�ʜ��oE�8`�&����<�!0���:�Jp�8*�$��u���eE���i�v�y؆�����>�{G͛��s����;����w<B@�-p��iw��j{��(<O���#��4k[(r�	��~n��F9��HG���n��ѝ;k!�0D�Mv�V-��^�r��?o_��w�ʞ������	l��r���CV��C�C�Y���m��>s�c�ޘ&��LF��|�-c�RNR�$c�M됑KU!�[����@n�QL�3��7kn6�l��~��z����W�US{%S�����e�QC���bڪ�w��\1b1��篹፭o�|�?ZR�f��/���U���'������'�����qck���`�7{��̽����S�٣�kqTdBXK̠^f��j�2Y\HfJ�-2u2���hZ^�tW>�{"�UI3g��G��)Z?2QC}//�)F�
+#�	$�	Jp/rF�^š��c��-�=H��VC`��k43�`tn-�FZ�2�ɠ��x��&C�*�G�e��h�h���g�T���܉�ʑj�@��53��y�*i���+�g�Zft�V��6]����Ŵ%u������>7���7�)�)3pVd�f�U��B��a.���Ɯ�b��T��H����4��4#�_3�٫a5����rwp �1
+J�� q[W���Uf�5({�rH�Z�9��5HD�)d�-z1���b�hA��qVA��^�5ڌ�/Q�,� ����$��a|Z���_`�Q�	&��:v�:w.ڱz��g��W�:�]S��!n�Ia�3��jõK6�Z�Z��e#lq�-k7����c[m��ԇ����Ql��l`��朆�S�l7�\rő�^�4����9�\�N{	TSH�S��qg�W��������f��@��O*h�^Bb�u�]/�p;Q�ٰ(�9�5�ƫ���:N��	�B���@�;�ņ�0�.�nVoU3j����H)8���A��O
+����L��1�N�g��?=i�;��=�f���L�Qa�8A��k�q��"���
+��rk���4�j�U�0�$��%���,@n_�c��|&P���)d<,���%�����J�O|�wbY:58TqW��3�%�"���2\ț��E-��q΄�p���[��#�6�-���gϚJv�\�>��5������R��vkⲩy��b#v*���3�K�,�ˆ�)���/5\�/�:
+/u
+��VBL����q�q)����Gꌄ�Ւzc� ƍAΜT�-*�I�U�,ƸZp�������ݸ�=�f�f-j9���*1D}�)��p��o��,ӻs�Q4�E���7gTLu�P��e�R�kT�S1�h�0Ǐ7���3��Y�����	��u�n�@e͸�D�x]m��+�Lj�H��c��Z�c�#�⥗P�\)�l�(�b�J[tZ{u+c�IDTAS�I��
�
��ƺ1,+ۀD���p,r,���[�wR�s�ߏ|�Қ[R}�ϤoM��;���m�=��nO���o��U�x�&���ka��ڭf���JxR�Ի4��_9�5'�U���Euk�nJܔ���txo���^]B��?�,�D6����n�T���^���7��2��t�h'�!�9�k9c�F*?�>�d�k"������$޽V{�,,�#3�fr�gr��Z���&~�8bd�c�^q�ݮL@�bjw����qV���L�(�Q-��uM#�"�$��(q_o1�	C���z�V�,����d
H��֪�k��{˞�}C��C���yFV��(Y���[�Ȓ�&Po���E��c$T���L�����T�X���i���/q��Q\��nf7�[��~�6��xw��N�@�I�S<r:�h��l��c��R��^"ژ�dWQ]�*bESd���]Q�Ԃ�)f�(EouQ'��-����{�4r#e��p9�At�RL9-��後fx�^a.�d3y�b4B3c����=��b��{��n�����>|���������~>P�K��.l��v��/�t�	�n\ݱ\�����_�)hs�A���W���M:����֙$���;��/_=?�X��t��ڭ��7�������F��+q
N�a��1���ȃ'�}g|�h��z�huTM��,Xe�Ied��sB�|T�#kA5x�VL�V�8͐��r|����ı
+{w�C�<}r9�'�4�]�����j��鄋X�y@��F�]e�󬘾NP�wk=XEE8UyU��,e%��#����2���@�p-�'��ƥ�ұ�ik>l�����Zu�5x
ô�v�v�^��ds}�v��v7^�[�_�[����E�3�d�6���bX={0k�UF�����
�{�?�X��VϏ�v��d`���o������X�-x؂ɿ���[NXNZxK�����\�R��CC��G-���&�����6m��� �
�Ӹ:[�d�`VG=5c�k��~}?���ꪂ�L���LO��>�v$���~�1�o��U��׭Y�lگ���pF4�I�er��ǩ�G�Dh媊ݶ"���pJ�P��M���Fl�7����3����V�(��
Nޗ2h�v�(�e�M�)Z�����{�O�r�
+��NJ��u"Q�Z�R�EzR�)�Tг�M�-�T�rk��kŘL!O�˶ۘ����&���1���g6�cZg!��U��[�� � ��,�81��q�F�\^�h����*�hYD��"4�U��sdm�'��vŢA�(�$2�F��j��Q؀F16����9L��.w�lX�aF-l�����.��֋�4��&�+�Gm���Ө�뜤�C�x�&���E��#����S�#�KN��=����6��@'��v�1h�
SJ�pK�����a.n�mI^�U\�>0�������ٽ��]���|l��~#\��Dɹ
+����̼\��Cj5r�y��GLp�p3��C@ˆ�%!{��Q�Ԩ=�Z
+�sZ+5�Y-�����f��%��2MȤ����e'���%�O���K4=�U.h������Bkm����C��I6G��Kv7���&s�Yp5����s4��v�<�U���.�W܏zv�����T��5�Ӟ�Շ4���]G�/x�C?w~�����;�[�C�t�?O�dM9�'�qgg9���q8\�M&+�˛7�nACx�P�"ߦ�Ӵ3�n󚼳�y�����lwns�
�N���-�#��Yc�ܥ��n��t�rj�U��x��Z�����"��b��.�s{Z���&�٭9�yS��ܪ� �>�G<"���V��z7�hKFj�ќWWܯH���@�úR���4�_:$��p��Њć��|�V��L�o�	�pO:�w�;ϸ'H<�(�&�	u�V���2N����
+9"�#n��$&�K5�]�����#Zr }�
q��X��b
+ܸ̑pٯ�|@N	��*���<��0&��q��'l?�!jCy��[�ީSG�US-�@4&�sS<�o��Fm4ʙ�g�Ī곒Z$�q���`K�=^��X�o20)b�1 u�)rU��o�	���d���4y~����9��x�JAC'u�ˡ3�ڻ��&�+�޲,��!a�[Y�e��6 G�e���M��.5���Xƒ t!���6u�I�6mMiK��2��BS�M��&�����nC�mڤ��c�<`���<B��_�Od��=��s�=�1W3������A$9�*֜�����`���&Ԡ�=de��kc?������VN��[絵����S��C��y4����Oʟ�E̠0���=[)5ׄB��Un�T�q�t_�/���x��q��>�UY�]X�C��r�Rӭ�[����w;v;�W���v�q<Č�����q��гʳ�*?��
ID�3�tf�Xg�-KK����U��}�	�^�>�>�^e�ow�b����=>�f��۝:�	���X���Q�vȞ�j����n)��K��j|��o����tW<�R���h2�i ��hP�M�R�Ɍ݉��kQJ-���6�ܥ.�;���e�ς~8I_�$���LI��d))��GA�_�e"0!%A�`��N�;�BL�P��^��*�iOZ�j��i�x��E���^7=��p?�~��'�aL�ʯ�v�:����$���A|�3�(n	�hܷ�=w��rԼ�.l:�in�v�"?����؏>�BV�#?�����]��@>p:p6`�o��5�ʮ�����y|�٪�m��B����\l��<��=��=�d�I�U��Ş�W�$��r`�RR��OF���)���t�z���[+|�Ң6�ń�Tw['��W�RF.*�
+#e<5Y�=���u�`�b�S����DKS���#6���3�ivՕ���۪KMg�UZ�5�������/T-�a=�Uϓ�o��>�'VQ,*�X�𔖽�}c�<�=OҖz�W�ҷ�.
+K�ll�XI���Xa��i{�"�����5�
+c�9�0�!,s�4T;Յ&f��i��3��P����B'l��=�=�?���ⅺ����ϢX�Ec�����֐}�]�M��hs.���͍�K�=��-�K}����x�*�*��5g��;Ɲ����2�w�w>�:�.��v�=(9$�X�V�������:m��E�w,��XC��i8�kvYt$��P����B�љ-nk�2c+�i�6=��ܬ(/�knn�X�����0ݾ���d�<��lKˋ�v�{�iuXI{�=�g�C=n%�65��5�"ڻZh�^oT�F��E)miQ������J�����.sQES��.
+�\����b�G�I�p�u�N';*�t
������R�-�S�rZR�i��n��9Z������[��h�>), M�H7ZBuX�Hm:)|�DI��|����ױ�Z�U��~뫿�y�غ��-�U������F�����x�:�C]%�]a�+���X���@�Dׅ�A��I��W�M�XqlO�#���FΘ�AL���������[�V~�s����Y���,�_L���/��y�6[����bR$�ϩ(nӳ+OF�Ƶ��h�og�.�G����Q��[l΁D�=�6(l\��N�dNȜ,��|�P(Q�S�2Tڢ�	���D{�	�ˢs�U�\%%�qv��Dž����SY��X
���r�4P8+��N@Y4��%W��,��3z�O�/�=#B�R�eh�D�B~#��1�Q���^���p�>��	�x���]�������w�:�w[�bo�{N��;.���ҷ��?,{�MX��U�"��͛�UaYrՎ=~qz�|��--��Xw�����:��՗Vm����B�nB����z���LnI�c/U=�跍w�}#����T��y��S�ƚ��d����}�E��?>C��c���|W&��A�.������F�]�Я"�@ox���&�K$�ːZ�n�~�TG.��������	`�$�ɀ��t����M�"CЕB&���m���M��y��ϡ�B&ĴM#��
+��R�kB� dN-!��/[KHE!so'��64��x>@H�̈́�������8!���sBn�m�!K�C�!$��,!=��1BV��;�x}�5#_ F�D�0Y�.���WD����*|���r��N�E��<�x���/�1����1i��O�
��vh��<G7j��4
+�o&�	Co~9��-��Ύ	����ĨV�E�?��:b7�4^�B�
�i�i��l2,�xq�x3Yb8��6����`Lu"�*2��y!�i�
\���<��Λ8�٫��4}B�Cӟ414�k<bh�j<bh~X�C�Q�G�������Z��x����#�ֻ9oa�,.ἕխ���E\�|1�[9��-.V�;|Iq�K��FΗq?c�/��s������6��|�y���9���g8��66p��Mj��y���_���R�x�{	�*���n�Z���l&I��$MF�Y���r����3��<�-Bд�a��dd��?K2<�M�z�,���¥2�t;�JC��'f����)�<ז��Wr���o�eeg�zʤ5h$���w�� �i��d#J	����-�]��W�Us^��KV����Z��$�Y�!�l�-�2V�w�7������R�7d�+�m�Z�#�������[,#NiDu��+ŭC�&o���:��v^�MH���y�0m�lMGгI�RK�c^�����Y���<n,���2z)�^��~��Ǖ�����G��F�1���ң<[x�fⶁ睉i'������Q+}F3���J�վ����~�j����9ފ!n���Q>�w���ZVJ�0��R[������y4w����$�Ѷa����k�m���Q��}h����XRG���H�~�/���u�1`-Qے��͌A�_m�$�y��|�]��j�WE5�͊k��jv9���v���U�0K�V���G_�#����Iyyz$��1�����F�c�l*=�ۇ���M��yE2�ۖ
+���$3��������Ȋ��pbl&�5jYӷ�J�e�Sn	5Η��S�c�Lzc6p���f����J��]���Z������c�����]rz�;�FN��Y��Ie�C��l"O���pzLNC3&�s#ٱT2z''��>�:��S#�䞍S�I��9N�@ֱT&=�W��pߝJ�d��ѦH:'oI�s�$��oLC��ȣɱ-�,�ۆ���wt�C;��c��`��b�����+�F�sCȚM�C���0
+@Ӑ+�AX���,���!�S9�e�u��Ȍ�u��͇X�ǒ�j���y�5_7��S(%���"8�B�C��#��ĕ���	�����H粣��<��Ƃ�����kZ�cZ��	>�0��
��N����?��Yˇ�5Z|D��!�O�O��yo7��n���{������Uk�e��R����*;6/�\���}�ð�qeZW�����ݪ�	8zU	#��N^�۲��(��z3��/���m;�ƴ5#�<\�W��K5��o�'}�+S�
R[{�x��_&�ş�:���
0
+�@������H|�>�i��g���y�o�?� u�G�⋅�J��qa�b�Y�He�nh���nL~��/b��\S�P�B�
*�C�������/Ly}����������4��{�3���NJ�$��4OM;#�=#�O(9
|pp�#i�q2���X�=L"����(�0 
���¯A~��W�;I-�~\|���~L|��/��}�j�/"��~-�9P�D��r��h�ӐW�>��@/������ϗ��1S�����ˀF��!p!t�Lŏ�ü�I���"\�
+5�G��*ܑ�.�~"����n�w���Tmĝ��	���ى�4���a��� "�ĝ����g��������q�V��;~	�l�T4i;)nD����)wUd�r�la�X�vf���䔹�I�Ss�T
+��ڋ�A����{̀�N,x��	�v��D��Ҹ0.������ZrJ��^��,Hi F�7��w�E�Y67���^�>-���(�a�M�D=�d`lmbWyn5�6=`=`�[O[�Z�y�i�Y�9��^64�^�zèa�����=�JXo��lm�ƭ�V�d���7����(��1�\?�@o `'΁	R�Y��@�H�ag��R;�v�^�i�^�z���5�jf�0�L���Rv�����!eCʆ�
Vg�7QC���\v�Q<�k������mftq�Wx3��;���=�h<�������x���A]ړV���A]��G���Եyڔ6�A]�V���A���/�Mt�>��|�n�;�=�-.d��
+��NkF�*��F��o��9��/D"�m�4@'��'!e��|����z�x�-/���c��\�8��ҋh��֦��eXr��v�5�`�*w����縼G�?���L�Z�̭��[��-����yq5��g`	0
+8Љk�Z\-<��'�'�`�6�L"��8Δ8M�v�P�1`�_��3�㸍co�x���l�\f�o�������F�&nm�m�����6x� 5�&�ql`�����9�Kkl��������jl[kl7հ|�0wmB)�V���/���J��l�%�B��n��R�Ns\�q%�����;1���a�mh!���	�T���\,�ny�{��B�A�i�g�i��y�����.ձ��4�[�����	��Q�˅؇������#�&f�E�����K��Z���P��
+�(��~�<郅�>�O�� �U��B���ɞ�-0�A��&�Z����0�j��B���`L�%�|�:V˧����⤂�7��x��y��+]IN���W�Fj95<��Q��?������^xTz�i�o�?�K��9��U��NS������4]U�N�MP�
+N�)iA��V�Ǥ#�Mғ�=�]�?� }γV���tA�P�iV
�-^u�f�;vX�E��P�c(,n�Z=cR�E�t��ai�w�U�>�n@�>��O-�Hs�1k�`\e|��Fc���(��󌥦��Tl*2YL&���3	&b*e׎��ůR�
+j�1��C�V��
+�$`���]B���4_�E����wM/��/��ʛz߿f��O�#��NSҷ���d�R?N(
�{%�;ソ��v�O��
r��+��������.R����Vr�3zK�u�z
_q��u�ElWU�ᮕk�_���Gs���++{�qa����8.�2ҿ�8����s��v�Ϛ�Zaf$�3�"�̌��)n���0Lk;;&kkU�g�Rf���7ڤ����efB5�r_^���a<���W:+"�Νًw6�M*
+L�
+3�\��`RY�Շ/�=�Z�~��r��ˡ���_��(�ll������\�.��T�GC��IO�zOg�>��m�]��dyr�GL!�E��
��M$�?�$;�C�y21x� S'<�d��o��`<�QH���DG�ԡ�%]W��o��%��q6Μ-ae꺎������XY]��C�C����iW�IY���tJ�Z0�W��/.w���'Ǎ5�{*O�[���|�gq�`����v���d�b���uύ5�'�W4�b�g1�'��T��&��2��ꁳ9�e1ikVv�oa�f��c�����~����Y�&�8{>&�c㱉��ؑ�>�뇸�T���@m�v�v�v�ZS�͚c�����Ԋ9�&�ŧ�����?Kfs�!( P����/Y�^KE��[x�h��ɷ��
��w�����/��Dl:]�Vb=[t\bd��%�h4�Q�+ת��v���#.�B[��ݎ�7%'��x�K����#�yN������>��L��L}�?^��pg3��$�����������fr�@����K3,[�љS`)�_r&�
+endstream
+endobj
+
+1278 0 obj
+24015
+endobj
+
+509 0 obj
+<</Type /Font
+/Subtype /TrueType
+/BaseFont /PXAAAB+HelveticaNeue-Bold
+/Encoding /MacRomanEncoding
+/FirstChar 32
+/LastChar 255
+/Widths [278 0 0 0 0 0 0 0 0 0 407 600 278 407 278 371 556 0 556 0 556 0 0 0 0 0 278 0 0 0 600 556 0 685 704 741 741 648 593 759 741 295 556 722 593 907 741 778 667 0 722 649 611 741 630 944 0 667 648 333 0 333 0 500 0 574 611 574 611 574 333 611 593 258 278 574 258 906 593 611 611 611 389 537 352 593 520 814 537 519 519 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 0 0 0 0 1000 0 0 0 278 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
+/FontDescriptor 1279 0 R>>
+endobj
+
+1279 0 obj
+<</Type /FontDescriptor
+/FontName /HelveticaNeue-Bold
+/Ascent 975
+/Descent -217
+/ItalicAngle 0
+/StemV 0
+/CapHeight 714
+/Flags 32
+/FontBBox [-1018 -481 1437 1141]
+/FontFile2 1280 0 R>>
+endobj
+
+1280 0 obj
+<</Length 1281 0 R
+/Filter /FlateDecode
+/Length1 16444>>
+stream
+x��{{x[W���G/K�dɲ$�zY�$˲$[��vǏ<�Y'%Me[��ؖk�I��:%%4P����b
+}s�mz��z������
a���
3�^��������9��$��}���:����k��z�-�PBH��(V?0>��?��%3z�M�?�O�k����}r~j����?A�PE�205srR��?���#$���Tr�c_I�(�'�ѡ�W�ܿ�����ܭ���Aܿ
+�U3��$Q==BH������¢*LH,���\r6���.��$����L6��i!d�Ȟ�/��_~j��c~�%L��j��H	
+�J�)!Z�������ʍ�
+s��j����;���=�^RW�#~ 
��PS8mn���m��]�=���6�������:�6���XIf�]���Hv��J0�{�#��i�D�M��ش���1/�BB;.���S�.�@W�0@��� ���.����yzn�:�P��8t^Q?�w�{H<+��6qV���������"�y�o4������}��E2u�P'�(%�s�8�,s��s����
+��+|#�{F��1`?�7p����=�܀�s�F����z{�J�Y��A%�}��Ξ�����sg���B���\�Dl��~�����;��z��qh�����F!��I��
+R2������A�R�����v -[��
�	2�׆��g�-v�]�;$����
W�y�-��BZG��!\�v�~[�\a;d�a;���ϓ��q���ܹr"QЗ�� �K��� ~���c�"�``���k|�(9��D���j�;t�#U5F����1�<&z&����|D8�'�
��	_ ,d[��k�(�~�Q`Fj\�*��*:�$��FV�N	�f(u���2��6��^�_c���lm�6��Fn��o�޿��]�u���]��橩�1�.E�h��!elZ/���=�K.&
�$RBg6H�T�j/Bs���,�x,Nǎ}�ǾI[��7��q��
�����p�Ms���8+-6���m��� h,��ڳ��*��bG���9���B�UevԞ�o�ɋt�^�JI�0�x�q�D�;u
+=���dQ7�U�E��U��U�ƻ�ϝ�W����W�K��d"�SKc���q�	/]���X�XV_lXgi$�p��0�	-�Y��m��K���y+�-�6�vm�8�{��G{�i�o��lV��l�#������%<�!���p� ���:ж�BK��D��#h�F{�y4��`&N����o0�Ḓ��X�Ki�4�ڰ�t	��^!�ƽAx��
�~�3P��P�%j[�K
CGZ�G����[�5�dE,���X�������\�{�����'=�~v}?_	4d8��}H �«���М��7r���[[�[���[���[���[���[���[KX�}M$��X����LlY*�G2��'��Z��k��^�oehh
+X��WU���}�5��p����ִ��+���ln���_ݔ�铎���#&�<Fw���Su�H�kg<���ոk�p[B})8�/��d�
+������(/J�Z�rR��J9\�"\J��h�c-�63�W��K-����g�yw���{��?�H�O��d���?�o�8y�H���"��y�Z�X�l<B9�X����t�ܹo��(	��&�Z �R�~j&?�jm��x�E�o�4sl���/d�"�+�>�'w�`BI]�q�g��s�e䖢��������a)zX������a)zX������a)zX����Ұ1V�/�oF{�A�a5(5�_3��,�z_Y��h���@�]qF�4�WWwn;�ɋ�C��#^K(l�s�:�|����:�t���3�X}��o�xT/���]ˣ��(��`�(�i̬��6�-F_;"����>�NK���@+�:�:}�r⡇�бZ]x�� @)[��b���'����QMQ
��Q
��Q
��Q
��Q
��Q
��Q
e�jH������O/xz���^��<���O/xz���^���U����*�e�邅V�d��Bޔ̂��݊��.�gM�̊�'X*�^j�����R�����/�g�*������
�����fO���g�G��,m�ӟ�T��M깜�jٝ�r�lۚhh��|��6G�EI|����]��,��`�,c��\��.d2�Å��B�p!c��1\�.d2���1\�.�
+ͫU�j#�2/�հ\+��Z���5P��ܘ]��y@�ؗ������������ۢ~@�gk|{�b	o�;�A�a�M�k;'����DG`�̖��
�"��
��&O�m}	�UInGi�C��S�,#�k.�3��}�����r��f�j�VkWXV,��󝻣WK_m�_i�ޓ{�ן<M���>ѵ7f�.'�n:}ݡӣ!����>����ʑG�##��̶�ڢ%rt,aф�!�7(��驪�ӓ����<��ӄG6G������а,�g�Y���fSL�ap�6���b����c�e[�l-@>��a�S]�����{0����J�Y��h�%`�X��h�%`�X��h�%`�X��`�X�A�D-ޗ�Z!9�:�������m��[o�V��Mی�?�9p]�&;F�����
+V�:�g�sq��Uvw����)Xl���k:�>�2hU2�R��2���$"��G���`]aм��Jx�����W�5�m���i�</y��u�U��ėD$^���m�����pSMY�].��복l'%�j۫�4r1�C���?[V�׺�ʒ�@����[���<�27x��P��۵/^ݼm�V��X5m�P���AU�VqLh!��b�6sLK�|�ˇ�����Hm_����������&�}(�ы9T�nW�s���1{���4H_�?�}H��W��r��Z_���ڲ�I����|*I^*�B����H�kc���[c�W1x����'��~�1�|���/����Xk��F۱Q&�,�o��]d��+��l�H�Q���K!mX�O��K�o�Z���.Ֆ���7#����Y�*k�~'�),���uRT�!��
+Q]��!���u��:Du��Q]���CT�!���u��:)���5S9��T�
+�,�?�O�������,.컓Ň;��8A�X`h�4h`������3׍�=ىPA
+y�x�����"������c�r�SL��m^�c���o-T*<���Y픽�g��Z���/?���.����-���Jl��ڠ����D��o_cho�_��	�W������Ę$
��S%駂~��~*观~*观~*观~*观~*观~*观~��~�r<5�jČnl�T�O�ss�e
Z�D��X�s���b�f��5����,Q��\��^~"������ZK�j�ri�J�Bi���w���3�GZQ���Z�o�-o��M�D��D�zצ��[�6��-��¶`���!X+h���V��mV��Z�U+�jV���X��V`�
+�Z�U+�jV����cU��6(;=*Z@c�$E�M����x��'5��g�W����P��b�s�$`s)
+�s��r ӵ-���ܲ/b�t���f�Mx 22��ig��{g������Zܝ�5�꿩�Y۳��{Wآ4Y�5���DW{�o��I�ik;u�UuN��RS�n�C���7
񯏇���/���r��{,�g�{����lE:}�/A?���2��P&{e������i�
+f9Q�KFYYU��r��h��[~�C�05�/�Fv�۝����p;X}M�̹��j��|B�1���5����O}9;����`f�?�sT�Of "���)Õ�9���_=wnQ8u�m�-�_z脀�2_I�+_C
+��i�2�
+��>٘�X�WH~�,V5�w�{�-���2�>��'�Sk���^����H~޷��N����	�헑�)�c�O�w_�G���������w`u�	��v�.�3��:��"OVxa���)�7����/-�ո񀄟Z�dS�T�	�bu��k�����N}^����#?�z��~��+������������P%�I#�#��9ڼYA���8�
�K&�@P	��ܫ�Fh󆩿X����Y��A���
+�-�
h��KtT�h����}Q��yS_o�A˫=�`T����kMF��`�M��UE'[��R�#���g,��{��@��֤S�٬6{��.�.Ѫ�
+��TSi�)W;��2�_�m�$_c睬�ȅ�t�)^��}��b���>��E�bA�#�}��4��O�=��</,$�6�[��EX���z�:����,.�@O,�l�\��;O/+���s˦r�+�F$�x�E�J��k�O\M�;�2\a���2��:#�w�w��|=;��C5�'bw�nw��J?y9��X'�O
O�����l��`#���*��B��r��r��r�.��������������������ˁ��!��lr�`��)FRr��}b㶟��~Epˁ��o �9u�p��-�	��ʜ����m�U�Sݝ�!��T���t8���E�˶�����V��*�G�"�����Fx�ȴ�a�Z렵Z렵Z렵Z렵Z렵Z�
+Z렵�ל�u']�,��-�_��lN�5��״��W�a�,�X�#��D��3����e™%�j_��`���1��SM�bw��t�Į�����r?B�>��dkbbWS}�a�m�V���9�œ�ND��e%E��ʍ��j~,ٽ,xX5��ZZ/�����3Zjo�m���.*�����C�������\�kz��hg�������ඉ���#U������]XW+9�q��N��ɴ�p.a��F���RX)_+.J���eY>fcQׂ�G
+9�oM�Zlq�ډ�ꁥ��j����g����x�0}��[�+n�����Q������L:�w/�� X���%L"Fx
k�[{+�-�6�vm�8�{��G{�i�o�ۜ
+6�*�\�E�j�x�
J
+�ل9�(M��.cd�m}���B�]�N�r����(V�~�e�j͆�t�m�,V2>�ץ��z�'d/�;]ް���~��P�+����N���	���ש�GѸy������S�P��o��	u��X����`�/8|�%~t���0ж�m
+���#�.�?��.�Hߢ�:)����(y>;7�w����X���jL�n?�EuV�8�X-�(��Rkg,�d
+n��+�F�|�া�%����nh�z�:��-~��!mo�{����/ئ�[KK�ő�o*v���仜��J�̨���R��Fs5o��b�yF.B��t��:1�`Z�X�l�˙E���\��4I���������s�+Nal1E�WcڲԶ������2�W�gt��+��l�5���\�si���S�������I��rMn��F�rX�Ē������HaCD:0�d@>"�\��ڋ���Z�dJ��Y� %C�E�w.Y�]��\X�X�].o�r��2Ԑ�m��i��v���4�Tkm�&[�ߨX��Uֆk�/��-á��ڨ/Z�3\a�[����
+����_�M�L�+|ak����������~>W���5;Q�4��E�eK������!�oh��gl�Gww��w��]�#������'z{S�~�pJ�yw� yV�ymr�k��*�V��K��C���L�r^vv�mC;��F;�v7�G�>����h���sK
+b�>b[_�Z"�t��ȵ/��]"g�\�^�I�U��iWmԩ/sF���濿$��v�p8:G{�#5�GS�[d�E�^w��~���|����Z�R;þ`�T�@M(a��TZ �b�j�B^~�l�J>G�Z�K��r�`�-��+����U��C1�Kx���k����wEQ:�z��8��g��Ѯ�;��]u���l��CsEYu�d��姅��������M����X
+��{���43�H1)v���A��^o�C1��ߘ�}LF-��_�Й��P��G��{��j�i���Pu�u)}�v��#�[.�G".����G��Q�<�=�B�hD��v�q9�Ź��Ⱦ[؏H4�a��e�QՆo|l.Z���3B㖃M��
�p�����0�e�v�eC��`p����<Pa��[�.�Z���`���S�є�W��f�����3�����F�f�Q������UW��A�
+����ӿ��j_�|:i6^�۩2�P,�H���R��.C��8/��X�_,<X��屄*tֲ��iA���G���Gk��bN��(9�lq�.��|����:�ղ��i�H����Y32d�lI.H|�2)��`�2����
����@����F���w.���{f����X=D���`���x�;��{�
+�g
+G���Q�]��azc��(��
�Ǥ��P�9K���/�\�*�A%�Wx��S��2��]Yyhf��g�v��
Sc�7�<BͿ;s���7��o�-pv��N�׾/T�b$�U2�[���-,'h����",~��j����6Z�����cy{���SP��((�V3�o1�:�9��/0{0��ugq1+})�c���|�رc4r�t�:�
���������˥�
+X�R:ʚ/FN�/Ax0gCHa)!|�C�Y�V���meI�8���v�+5�w�y+�����x�I^TL^���w
+?�8@�&�̿�񳚌k2"O�h�%y�f5�%�%��*��~���Y��¹���_�uz>"��~t�S_9Z��Z��OfQOoyu'���~S�w����|�.�?�ǧ�;�~�T]����u?��������0�
+�$
+�t�n�]��"��3�	��Ϭ�.<G�� >�A�}h{���tO��C� ��ԯx?;������Y���&�=���㫯)������e����.B!z1�8I���U�Չg��{1j]�5��0Zq�t�~�|�_Ez��x�&���J�J]
>��7
��Q�;�瀌ϼ��LvnB�D!4f�'D�(!����О#D�EB4BJ D{+!:�Ⱥ')ET)C�C�6J
+��ѯ�/Bw��_c�HH��?�v��Jl�+A[���)4�`��V�d�تR=AH
�ٻ�~L�s?�oq�F\�"�
��#��&!��|u�	����V�	�s k �^
Q4\�J��[8C���d����?+Ŕ���~�`kBEᄇ���w���(�
+� ��4b��K�U�D�I�դB��i
��pJ�u4��Q�K�[���|q+��'K�X����R�#��V�[�F�P�.�JR���4��!�jbU�˴�XT]L[%C@���Z����%�Ü�B�:՘L�_�^N���j�8]��崑�L\��M��˜�`���ങ���t%����V���9�~�T��)��|��]�e־��2����i{W�ܒ�?����Ή������9�>[�g�v�ɹ	�ݙ���NΧ@�-$N�óc[�̂��e���dz&�̥&�㚶�ff����|r.�ʆ�͸��eŅT6�p<5���O�ĉ�T:���9)���3`2��Nϥ009��I���d�Dr!%Nb������xznJ�����l29�ʊ3���\��2��̢�Ίs�|^�O-�N��Iqk*=��K-L�ā���c��,�oN�<�Uf:I�2��M���8Ƥ�$HM���,��Hg�g�'9��HO�����2��s����nO�sә�,u�<�Ȋ'ҹH΃����[
+�Z�v�lQ�7Od ����\j6+n���J�j�Vcoa5�b�S��xR�.�����Ll�YW����NDS-]bK�9��7E[�1�0���=ibOj7��e�dM�f���Z��xb:=>�ׄ��T:2h�s�8�9��͋��Dz<���a
S���,f��aekv2��Y����mc�1M��e��FgDz�4{�֋��b`g2q���;��f��d��}f���;��6�8�e��gs'a�'08��f�%�b�#�!qfj!9?}���6wģY�gQ�ܶ��?����9�5��'�E���3s�T'���)�\.�nR�620�9q|&�d�{��q�����۰��6���Ұ��Ø|c)p�".0���!�`y�I6�ˆ�s���H�ĉ�‚��F�����g���$�#��̂���(�3=��-B�-��Y�^��=/,�\��L'�R�\H�28���T�@���h�\��>|�Ed����9���dPY�$$M��4zDlx�I�����3T�[�ѱut�$�_��C~�\�0C3�cF�g�%�N�~�{�l�A���9���&�_�̠%ї⼯�ׄ7S3�g��E/�#��,	�w��tM�,�c�S����T��~<g2N�L�$�əW6Ä,�,��c<�'%sL�I���,FO��	�+뙔u��'���)����˚Mr�).-�`�K��g��}#3��0c�.'�q�f��Z�L�#��z�@V�t���6�LǸv�u��q$�׭ra���ƴ��u/�b|Nʲ1�+b��{kQ�/$�A�f8�B�,'�-c��q���p�q;c�Mr
�'�����:�R�V.C=��-�9�$�Jr��N *Y�[{a{��:Ht�|&��>p�r�g��d�]���#'[��o���{��~�9j�d���6
^�a�5[�f�Ȓ�^���e��/���K��9����s>�dt3J��]٧�Q�PvH�o���}�u�z�:�al�I��Տ�w~��
+e'Fbm���7�!|�h|T��tl��L�6�!�0���r�J7�Ip#�&���~�(��D�zYa[ƤRH+��k�
+l*�����M0��F�e�w�|���Zb�'o�D�WA&v�P�	��?%�/(
+endstream
+endobj
+
+1281 0 obj
+8959
+endobj
+
+510 0 obj
+<</Type /Font
+/Subtype /TrueType
+/BaseFont /PXAAAC+HelveticaNeue-Italic
+/Encoding /MacRomanEncoding
+/FirstChar 32
+/LastChar 255
+/Widths [278 0 0 0 0 0 0 0 0 0 0 0 278 389 278 0 556 556 556 0 0 0 0 556 556 0 278 0 0 0 0 0 0 667 0 0 704 611 574 759 0 259 519 0 556 0 722 759 648 0 685 648 574 722 611 0 0 0 0 0 0 0 0 0 0 519 593 537 593 537 296 574 556 222 0 481 222 852 556 574 593 0 333 481 315 556 481 759 481 481 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
+/FontDescriptor 1282 0 R>>
+endobj
+
+1282 0 obj
+<</Type /FontDescriptor
+/FontName /HelveticaNeue-Italic
+/Ascent 957
+/Descent -213
+/ItalicAngle -12
+/StemV 0
+/CapHeight 714
+/Flags 96
+/FontBBox [-993 -481 1511 1077]
+/FontFile2 1283 0 R>>
+endobj
+
+1283 0 obj
+<</Length 1284 0 R
+/Filter /FlateDecode
+/Length1 13680>>
+stream
+x��{{t[ǝ�܋�%$�pA�I�x E���ć)�"eQ�	��I�&@=�yx�����lc[q�$=�6��Ij����u��ͮ��7muoc��v�:�6I��k;����$e;��û��ݹs3�����w�4�!z� Ql���j~=�z�5�'�3ϟ��Χ����+�5-�/����_��MB��V...��s��SB�˅��O_�����B��2*�,�!�(�[�W+���\O��{+��<Q����}��/��ӊGq��ŵ�jᛏ����)	ѽ�^*W�%)B2���������3�ϼ��s(��3"��|�?n��+�D��Y�!Z�RW�
b43�Xm��p6�vr7y�>�� -�P����G��x"��}��������!2C�pi��!z^��21m�"���p�f��퇶Ȑ�Y�!���;������\�QT��a)���Ep���Y�xit�8".��(��7
+�f��r�D��'�Wf�;favv�(�%�si�=��<��-4RE��+��ԉ�'�<8�204�����+�O������?;�Vꝑ���E�<fcV�è������tI��C�+�_�侄�����#rfJ�(��[���5�iE��c�C𭉎;1����H�;�����1<���c����������!5a�F
+�y���i����J~#�;���~�=���<��?��#
+"�9!����o�:#8p6u�V�[s����'pw?K�D�7+W�h���i��	���Ϣ�[�$�7�-&��{��Ϲ�}���>�?u��c�on���I���
�*��#�d�N$sB�Aa�����K�56Z��n�A[*�D�E�P�GO�A�\���ׇ9��U�("��E��ڍ\��뛚b�|��no�^��,�J�q�m���8H��-à�(1L�	l�t�7݄j�%��E�V��(�D�ׇY_�|�;(/�ԟT����c�3��-���n��@~�Ÿ�{
�F�6�n�Q�Y�"�E�ϡ<��(Ϣ��R��f�Elƫ$�S;l�,3}�tʫP۬
�@s(l���T��3
+47(�Z{s�/�ku�������3'-�񮞓C���gr'�R��W�ǏGl�X"n596-��[kON�N����ựWq����'~�9�bKG$`t:����hP�T6��\��}�
��2��7�3it�~L��P��g��*i�JW-F���ij�i���i���i���i���i���i՛�P�i4n�?'�n�a�L�6�gI�)�);����-�T�������=�Ւhhl�&Ɔ:J�O���\���;22��z;G#�'B�+���nw{�gpEc����qK���Y‘dϡHt$�j�e�c������>lT<F����_���Ws&����w�|��=��ơ��V_z�ȷ��2�������n.�er1Q�0�dd���A0;f�� ���`v���A0;f��`��A0;� ��%� �+)K��U�!1԰hE�H-ZD+�#�Vъ ZD+�hE��A�"�Vъ���$�o�!g>3����g>3��|f�3����g>3��c��]@q2�=��@�B��<$�l�iev�H��Jrx�>,Y����5p6i��Xf��>�FKs�3�e|R+jV�r*4y:40��'2�#���p�HO���w̎�`(��H��y����oX<�O:��S��I;_��}��٘8T��;�=<����f�,���y
�7�cW�y(1��Q��|���uG�}��=^*U_�D~�e|܃�H�)�t����:��u�.��;�
+Β�p�NJ��:�g�z��ɿ|+���/W�pG���1"���z�0V�Uf�UZ��,��, ��, ��, ��, ��, ��, ��,�87�`���������.�RZ��<]��b���R�QSp���O\�̳�,���CS|{s�Xx�S���ne��O>�<��_��uP`�0��0�E��Y'#_G�V@P䟯]��4W�2\�X�B����4�����"��
���Ui��|�e���g�"y|�!n�T�N�;o�޸C����%���J��l�ܹ��Rn�M� v� �&H�l]�Pˣ��S�@�#�F���a�j�F���a�j�F���a�j�ƚj�F��=AZU:�E��X4�ei"t`^434��>��+-�,�՞Ne�u�d�%��m}3��#Wp�4���:&�=�)d�����.Le��on�<3��~K����dOӡ_�뱧�%��M�Ms��>&a�����`�&��w�c=L7)�i��i0dt@Fdt@Fdt@Fdt@Fdt@Fdt@Fdt5dt@FG��"]��PcL�PPBP�\`Wh�'�{Ym��[�]�Jy�R�ɌF���
+�:<�b�X�4{2�`w�Ҙ<,�������Ul��{�.oe~b��k��?�#$�@�9�U��5�A�}���Z@��?E@�˧/�/�>�o3,�o����P��|ܴ�z��BpF	�sV�����baxmB.��r1-TF[S-TF��Be�P-TF��Be�P-TF��Be�P����x�`��`?E�FZ�1 q�r��D�(WS�����!�ݹ�?:�{�mw��)s�VJ�`������(u{�Ѕ'�Tf� ���4.�C\���ߓ��,N�����]MM$ݜ4G5d��r/9�E���/��{�H�ߵ��U8����8��8�t�ϟݝǓ�G�$ȿ�J�r��5~\yD��Lר�Y�+K���"�2��e���l���-h�@Q]����e��=�W!��t����"ĝ}
+_En'�_�<7�ÐQ�u:^��)�u�Be�9Zzڝ�3��|��
+;�C�]L���^�I�&��h<�t�ڼ�j��t�����+���oIF�t]j�v��v�)j"�W���
+�#�v h�!h�4�@��@��@��@��@��@����/���q7(%�Dd5:�doДb��]׍U*m/t���٭�t�&�^��j�#P�R��b������vx�3qf4���X��K
�#��.~N_H�O�=�>�=Έ�,&���}�N��ە�#���h\��v�d�FS�ā�^���hW�@��n]b���!�-�d/��y�������fM�+�⺔�����̷�7��ṇ���n=LE�#�k/�]�!3L��ݴ��\M�s0�Lr}��ٹ�:w|��x�y�ܬ�w��13�m֘9/���t��q��=W=}������mL3����x�FKI9'��q�l�D��B���h~�{�_�E��~g�m��	�[d��5�K���t5&�ЕLҁI:0I&��$���t`�LҁI:0I�4e�ٰmq��m$Ŷ� IcS���� \/x�����B�{���P�^�}/Ծj������Ծj���O�d�`䨜����^���{Q?������[�߭����������fs�l?��X����I��T�t'�D�sF�
+ŝ���j�͑����n��)7�l	�|�z�A�k�)�*�/3j��m3rb��/g�5[������ಹ�FA����[sC��o	�~^�`6�?oK��i����_�ЪQ��[�<C-,�7�^�f\l��=u��4H�Ј�6�b��~�P�QFQfQ�(Q>����<��
+�i�Ox���l-�
+X�<5��*vw@�vsl��jk����-�����r�0�Ҙ��$�z��w&Fb����T�7�1P����Z�'6�����o򜪺<~81����d�њ�z���o��>r���%,�hdM�*{Y���`�cw�yN0�	�9�<'���`��s�yN0�Yc��sJ9�E~�����#�X�ٙ���T
c�n6K��d�����҉��F���{�njy2ג�ֻ����>.j�sv������}�֬����h'�KM���,֭��Uv�D;o���F&�!�,��q�E�s(�<��
�����ֈ�5�f�!̐�
a~D�����9o��E ��i=�_ZJS�D?�����_�ܑr�7ve&���!�\��t�Awz"1ҏWƟ�6M�ݛ=�ɜ/��^��X|b_멉Ԙ�?h�_ �"6���F&z�У(��T���O��8�0p�p�p�p�p�_
p�\�\��G�]������+�s��,���o��D�v���<�d�,��.nt�G#���@�D_T;c�v%Bv������	��ѵXW/$N��X����=2I�M��ב�v�:�:AvX]����嘙!�t<f��!�ͱ��I�꺜���(̑�8*�����-4�K�Oc�5�Z��nѤ=a�VG����XС�����8՝�n��Vĥ�0$�s�b���V���z�Һs�%ifka� ��v��F$:o'�CzK��d���Ƴ����)#��utz������Dr���:Z���X��Os�����s~���/�������ء���ǹ�s�3�6t���Ov�Z�������wE���&ݣO�̌�����K8B��}�&>����B���P3��Cm�5��#<z��j���꡶z��j���꡶z�������P�����4h�{�g�q�H�#����!Q��jG�욱jly����:��9eJ%w`�_�;4�=+��Yf��u[]́�`s��?��ެix����Lt���{�����Y;k2p�����r��
+vy�̭�x��ϳ����.�w˺K�wF��%��Tl����܃���7�Y:�S��ˍ\{��~��H{�����/>6��=�^�6K�H��#K�������A�<���� ~�σ�y?��A�<���� ~?b֌�5��]�w#��N��K%Uu]�����GQ-ȗ����-��]�6W\��Wgu;���F���6��9hn�P)���ζ�;3�Ս$�g���W�z�3�:]��Q��V_�t�^G�ˢo��������s�Qw}�=ݞl����=�s?���r�#��-��F����'��U�9� `?��!=�K��Ҏ ��i�߭���ƌ��*��)3�3�3�3�3�3�3�3�3�sm�1c�1��F��.�M����e�l�M��	X6�&`�,��e�l�M��	X6I��g�dԱ{2�{�ME�q�1F���:��w,�V�o<<ӘK���������Ǐt��S����ٓ��ZO�&�7t|41I����=|����'�>����^��{��Iw���ݞ�r����}��c9�{i�����Xz™nKOTF+��},A���$(m'�EZ��[`��a�P��å��Z��}�I��d�ZZ�z��Z�P7x��7Rb��s���(9�Ϗt��3ɷ�-����U,<�MՇi��G���6�k��k^6�k�6�k�6�k�6�k�6�k�6�k���l��}g�"��d�3��7XV�ك��F:�2`�@|,��8�Xw�µ��;7?Ӝii��ᤫ1rښ�m�d��O�����xo��w�����1��v�M�`W�'�wju��b�Z괎pS�`����v�]:���2[
��.����!�k�3)+�AV��3j��)��˃
+5����TBZQ;���CZ����.�]C���kw���Yo������'ƫ��V]�h��Re�j�.1.���=u�1��7&:����:���I�36�ӊƝ�
+��Y4�AO,��Rb�}eu�W�'���2�R��.���!�715�\��U��(ԔΩ?ǜ��s�4=�P,����+>zrN���խ��|���x�@:�<��ϧu{���Ԭ��g"
+���Xs��t���o��*/���Yޅ�
+�Wh���HuM�%��������30%�T�Ss֓F��5�Ɋ\ys�������җ'�r���_y����������q�W�k��Bñ�[7%6������22�XX�rt�<�?��{�T����6i
z� &B�]�ii3��:��Yl��g_(3�ks�޷�F���S���w����x�7}U�ꯕ���4(���S�o�#�Iu�Ϫ����mn���B���}�M�!�mࣤ�|t�=|�Q��+�/����G�Cy��8d����.�x�au�g��m��-���>�g���;���<��?JL��r����m�}�$�}�{]�VL���	�\��`���z�}��I;�jC�5�����]��B_�Y��0�WP�%���!�����ˇM�!Z'�ʷ�g=��Ƿa��3(o!m�"xI#��ZЏ����a�?K��AB�<�_�x�u��iB��D�矢���}�"��~�����D�Ԁ����g�����rl�7kț	ىw�$�'j^�m��!�V2�%[E��E�V+�&�y��G���ҊZ�)����E�rK���T�H�9�W�B��E�{�� F�R�1�U�U���jT*1f����j�z�f̞d�hQ��m�k>�l�#1j.1[��/3��A�Mf��9�f��f��M��2��ڼ�l+��*����
f#�!f��c����*�]�Ƭ5R[�Q�Z+���Ym����ō��rEl�o��]�(�L��4���k0�q9Q\+U.�`���o\��=,�6�b�,��+�|���Ӯ�paeE�/���׊�rL�%�,nʅ�s���V;�\�K�J~e�XX�/-��j~~��V@��B��JA,�+��q=�o�6�kKbOO����|�,��ke<^)�K�b�,��γFxd��Q�(��Å�Ba�lac��!ml�߷�/�����Cl�tN���F9ʪV��"����FPX���e��P,���/Rs��P\,ʕ�+%:����_+/66py�XY.mV��
+ցFY<�Q�T0��:|�˯|�@�B�E�֝`�iqp����X�V��(��X/m�(IѸS�Ɲ�h b�
+��|^�,lF����u�T�#&S��B���S�d�#�ّH}h�ZÝ��^�t���'�i�����j~㾏� *�_.�/�ذ�,1W
+qqM�G����ws�X^(�W��5IJpa~e�\<���ey������G��M�ҳt~
�˛g�Ņ"���Aڝb�D���P;_,����|�q�t���w��������
+�+�}i���8_.��eF9$�1���F~}�"�6u���L�嵛M`�V(�X��
�����rG`X�^Z[�
+,���Y�'�k�(�(��h�(�,W���B��B�f��\P �k��.c���o�R�JX�hF�w��/e�]�e,�0�����Uʱ�Je}_<~���X- r<b���GܦĞ�!R�G
+��&�J�k�DqI2�VW1��뙵" q�@��T.��̯�P���L�,<��W�8�$��W�s��I���ehWKd�T��J�m�x'�&]���ة=vz��
+O�Ȃ\�-ߝ��5�PA� לEoy���>DVq}V	5"�V02�m?E���G]��~��<Y@�ܛG�*j�8��-�j廻�+�+z���s�s�h�3��t��-I�=M�Y�W�Â<�UܛG{:���1�;y�f�Ք�z>γ�ҚEy�����6�>�������<�E��FK1�g#(˽W𼈖%����V��{<I���YV��xD�X��cc�w�اH��I�t�]y������D���c+1VE���~.�c��:���^��S����r�h��<�jW�3Eƌ�[Σei	�
+��"��|�<�2C������EQ/�v�eEF ��Ҹ�1f|�J���Uص�ںIb��f~��1x)���9�ʼ݀�ã"3~wm�y�ڸ�kcT^	4һ�Aգ�����S`3�iK)���k��$�$���U���췿�op��<��^%��^�{))]ʃ�堲K�R�W�+���-<y������@��G�H��f��$�>���?�*������*�q
�� ޫۉ����s���}@:H���j�5<6�)����L�t���d�L}���D ��x=���!\��
+endstream
+endobj
+
+1284 0 obj
+7970
+endobj
+
+514 0 obj
+<</Type /Font
+/Subtype /TrueType
+/BaseFont /PXAAAD+HelveticaNeue
+/Encoding /MacRomanEncoding
+/FirstChar 32
+/LastChar 255
+/Widths [278 259 426 556 556 1000 0 278 259 259 0 600 278 389 278 333 556 556 556 556 556 556 556 556 556 556 278 278 600 600 600 556 800 648 685 722 704 611 574 759 722 259 519 667 556 871 722 760 648 760 685 648 574 722 611 926 611 648 0 0 0 0 0 500 222 537 593 537 593 537 296 574 556 222 222 519 222 853 556 574 593 593 333 500 315 556 500 758 518 500 480 333 0 333 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 350 0 0 0 800 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 0 0 0 500 1000 426 426 278 278 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
+/FontDescriptor 1285 0 R>>
+endobj
+
+1285 0 obj
+<</Type /FontDescriptor
+/FontName /HelveticaNeue
+/Ascent 952
+/Descent -213
+/ItalicAngle 0
+/StemV 0
+/CapHeight 714
+/Flags 32
+/FontBBox [-951 -481 1987 1077]
+/FontFile2 1286 0 R>>
+endobj
+
+1286 0 obj
+<</Length 1287 0 R
+/Filter /FlateDecode
+/Length1 23640>>
+stream
+x��|x[�u��@� 	@��A� �'�"�7)��$EZ$e��H��MIYV�M�4�-�i�n��6ɦ�7qVIGR�Ƶ��v��6�&�_�4�6�:��yG��3�e5���~�~��>��Ν{f��?�y\J)'���Ck��6�>��	�Uwm�5���࿉������?�c��)!����K_�������+�����t�W9<���$��]�Y�?��ƕ�������㸿��f�I�cH�� �߶6���{�B�}
+�����t�g�]�Cf�i#����~&��?���鍇+�!�kpD	kk�%�
�QA�T����h��+t�zC��d������[lv��t5��<�-�V_�?�#��X<�_Ovt���{z���94z���cc��'��mo\>�7:�y�������O��5��&��(�k�� e���/�eB|��I���'(�ݙ�t��I�RJs��.�š��%z7�	^8�O<pI�>01�Y|P< ��/^R�����K��t��ӎK�3�6=3�9J&G��<8	w��� �:2�|��%E������{�/���;�Х�Ʀ/=5XA��BMq����jԹ�F#I91�������ԃ�?�����2%rZ��(�C�i���rԳ���@=f!��7z|z5q��h_�R2X�Ҳb���ze\��H��_G����J�7W�u�3�V�\��_��BB�M4|���{o�a�>
�~�����Fm�\Ö[��_Gõ����n��zԹ�i�Z�po�%R��{oP(��*o(R9H�P���Q5I�Z1�� �c�(p�!U�(9W�C`4��1��,Q�=#'�X��(Y�/"���	^����0�H�K4�-��n��I��q����)������@�����|��*�j����Uf�y����HTu���CY�\m[6������c^O k�9��e�I�U�(��j}q9�]L��%���1�@?�6(���Q��2���
+W �N�ĻF�c��/E��BPH�\H�����^cB�k�5)��k
��5)�A������P���UI#�uqr�9�����{��kj��>i>;#��%��#�
�
><�%�Å�EAjw�'T(Hi']T�W�~M�� ��Y�AUפk�܈�kW��9j�S����$���i+���i���a?�	�����ARj%A#�Ptt��q���S��(��d�()�;R{N�V<rC<�=�{
+�R�:��I��Q0խ������V["~��t
+��&X~j�����ُ\��)�]���X����R���Lg�㭣q�&r$�:�t}�i2��k�v��K��ډ	�?���jU����
+1>���n�W�~�=:����iv�p��Zw]�ݣ"�����!��Ĉ�u�c�8}�U�~�-o�
��LR�o�a��v6�2�@1��n�@w��=z�$��S���l��Rl�b��� �)6H�A�
Rl�b��� Ŗ�b�����y<���0���Cxa�!<���0���CX����,%))HIAJ
+RR������ %))HIAJ
+RR�r��C�8���e2Ű4,�Kq�Ǖ�B]�	ƻ�W�8�W�%m��m2�w��M`Xq9�������,�S'�7xn�������R��`�u�����Ky���I/$�0�C׿w�PKi��64�F�-��V\M-�1�3>�i����H��g��{���
+�Ǡ����ܮZnbI�lA3��$ܬv;i��
h�V�2��R£HRIJ I	$)�$%����@�HRIJ I	$)�HRIJt;JV�%��Qw�(�/��J
�=V�����?��7�����]�wof	���n'�
+��<�SE�NQ@TEQ��
+ �����*��
+ �����*��
+ �����*��20����RG�)�Y,��TR�˫��{�+���Q��lb��oy�+̟�f�s(��*n^/�����&�[`�WɕGiט�E����-�G_zi�%j��7�?�]'O�,L|��`�l*�h6cV���u�u���M���N��Y��l���R6L$Ӑ&����(#y�\��0u��1V>�Y�
+R�G�����س,u�����9��+yl��b����ׇi����f៹����H�g�Q�/�vd���Ѻ���5g��XDHf^>H���~ty���~t����?:�G���~t���#b�#,K�2��$ˢ��PY�w+�/%,��m���76��R��O�b�zլRok?Om��?�xz���'�f���zz�N�R'<�ɱ�1�=vpl���1Q�
�M����.B�Z�b�,��Y�,���D0�0�t
+��@��M����³������/�@�+��Jޅ���)�m 'tZ&�:-��:-�Nˠ�2�:-�Nˠ�2�:-�Nˠ�2贌�I'$V��* � ����!f�B=@�1���i�D�u
+�#��Vĥ���h��tF�ְ���6����T�������w8��
�Ը?1�i�/�=a{�3��N��p�LϨ#�����p |8R�4p;�m��h��Э�xe��@���z�>i�M^�B]h�
t��.4Ѕ��@�B]h�
t�������9�R�=�=�C�������IkQ��(7�/7�r�(7�r�(7�r�(7�r�(7�r�(7�r�(7����zw��
+�:֤
+=�{X��Uҁ���=3�(f���
+��+ƞt����s�MWIޅ6y���eݤ�pW[Ͳ�R���RM�o���&�#��)�螎�g�==}ބ��?:k��36\��W�TJ��a��q����P��N[}l<�{��P04�8S�{�[�LZ}
���X�@_*0�Ǚ�&{F��i����e���@#f�D�ۭ�&M���v��1\�����W^�s���3�BO�>D���L<��(�.��:�-��	i�U�,�''�<�`�i�9X<-�y9��<�����r�y9��}^�>/G����������r�y9��}^α�Ei�E�\V^�A_<د��J�Iϲ�I��iԡ�t�}��˦��JԞ8�j��#�}��N���%n����{��}����=h�M��h�J����������1�<�Sm]'�l�u‹�<�	�C��s!���UTY�rV=3�-�Y��
+UZQ{+|���
+�a���wX�;��V�+|��Ú�V�k>n��[�:n��[�I�h�]�]=zt�<�L0�J�k�V��$�Ɨ�c���2���k�|�<+";�3�&6V���P(���V�?��D�7�Y�>���5��96p2^c��G:flչ�c��77�
�ƨ�w��M1A?}����#��{ۆ&=��n�/$���v<S���'}�����������p���*�/i_�'�,[�-���1;`�#�
+z=�ۉ�C��9�䴰12���}t����~_��6�_���J }q_P6BAA�A޳�Q�A�l=D�ѳA�l=D�ѳA�l=��l=�&�̂C�z)ڸE���&����������������������������w����}�K�.���8 ���4sf|+�2uƗ�%e�������H�J�E
+��fz�J�/5=jr�k��#u~�i6֖�u�MGB����{ۢ5�����g��%n�E�-fOT�*ꛭ�8��U�W�O���cu��X{�I��X�����r�ÍFsc��v�G����/�=3B����Y@#��eR'����y��и��и��и��и��и��и��*c^���y�1/0�Ƽ���c^`��y�1/0��c��yy��ޙ�_{*��p�*q�w�w��	��ʗ�$G�@��h��.�oJs��o���O�#�u;�����Ay�h�ՙ�b{�m�tD�cn�Go�}�r��۝]S���nW�M���tޞl��58Rk][�9�*�F�lG)�vJ���YN����0�1�	>��҇�����\A��g�l=��lA��e�2�P�x��`k�7-I��xP�<��R��I���ݟ	^A@O���X���T�o*�*��9%�e�����uw�x�ag0|׍��-ϩ�~V�ّ�Kp����9�����oV�2 EP%x��V���۬�P%}<5����
�������ϯ����E�_�uȳe�-�-_e{[�j��-��H�z��}�Af�����f�T��,�:���+
+�_��^�һ�c=J�����*k�z���Ҟ8h�찳5�{\)_]w�����wz����R�lك�"��}��|�U�_����4}�*Z�ī�D�f��Y=�
+�e�7��g�9��hn ��hn����hn������hn������hn�k.�+���Ic�U,��Lž$aO��'Iؓ$�I�$	{��=Iž$��$	{�d�D�Y�E�Y�E�Y�E�Y�>�W�bfQ�,��E1�(f�̒I�,D�r�t�u_;�G;�M����dÒ��|���K�Ύ��g'v����D!�r�-��v�ɰ4��.uq��G�u�[K�{�,Tl�$_m�y�{&TO�X)W�D�Et�ZBc�k�@ vꞡ���;;��o��i}�p��T(0���n�kYj���KE
�M�o'�QkO�;<�����ֶ�9D��;��4��H�d�b������������#�g:�'�������k�U�C}�q�c�1����w���2�vit���E��"���TO#F���}��p���̏Q��L�����뱯}
2Y�t���Ew�(e=RV�k�j���~�y����P4�e@@A��]=b�e�ky�nU,\��f8e��`ϝ@M�~I'�=k��G0��D.y�U�'R��R�G�����W���O��=�98��6���ǭ�#�K������m�ֺ�=�=�V����I�s%y�o�	����!�V�����IY�ߕ�6���Oao�d����k��f������]��K�|.�(Ll��0h���9M�����oN�Z&�9~�}�9�-:载�j�<�;�F�5y��ֹt������;��׺+���R��0�^`�-���ˤ�;�ʂfk���[�2�E􅾭����y�l	�.�AK]O|�6Y[�Ƃ��?�y�d�'?4&x�ӽ����*���c�ߙ��G$��Ӎ����U�Q�<����义<�au��ь��G4��Q�j.K�r+�p=6���o���B��)D�������s���/K��ù��.&�d�%�]�|�?Kk�,[�W*ؚ3[p����
+�A6���z`P�A=0������z`P����z� ��������-�D���aR�/���!�-�X���G��X��}�;���D�d�h�<��|0Ѥ���Ǘ;�~s��?����{ff��c�������Drm������3�Q�s�;�x�bg(����=�*I
+�,�+V¢HyE�_�'iW��{�Z�?�����z��R��/�}rV�����Ḻ7���;ջ�R��nf;��r�V�/�~I>4��FM�Zu�M�l�+s�>W[�vnu152R������v�ͷ�q��u�>���b�0�����:�y�j�D�4RJaS�Ν��ݹ/ж��=���l�=�O���C�(��A*����P鉴֬�Dz2?�G��s��#����Ga����(�L�ﳾ�@z���A�T�y�\
+�ᛦ�U��1�?֧etlV���f����}3q��^��aZ�#h�}\o��봷t.-�i���t��W#��zP�+=2+�s+���,���3�~Vȯo�*|c��#�2i0��v�_�b�[�7��6Xs�d͵��ڼ5�ška͵��ZXs-���\k��5�ška͵��ZXs�d͋w]�vc�x�����龾�)k�:�z۽SS��֚��t,3�Lfb����+]]+����ݽr��E�i�����9P��{���N����bU��*T]���bZ�B�Uh�
+-V��*�X��;W�<�E4��T��:\*c���,兽2�?_k�P��weW�GG�sߟ{i5�]�۴d��w���`n���bV��3դ�|Q�?`K��Y�&v޺ü�4a�0v2���o��A)PR
+��%�@I)PR
+��%�@I)PR
+���QR
+��r�X!�(��}��2B_l��}�/#�e�����z�8�
+�yP���1�ZX1pȫ�f�Ԗ����%^�%9�8}:|,)�K�w+x:+����=�b��_�~6u(�2br��ܰ�]D��H�.y��d�<m�\���g�����k��x���V<ЊZ�@+h��x���V<�V���G�N�3�h��sϖ0�jS0��PWz]
+WT�M9:��.o]�R%j���AP�Y<��έ��Ͽ<��oKq�2�uu�@SYU�=VW�XK���}'s���`�j�Jv�
���&�;X�k/�gi�g\d[�/�	��S^'&���s&A#�Ptt��q��� 6��;���7�����%��pמq)��c�ϳB����Щ��obj��#���͇���������XDN�o���?�J��F��B}-�ƪ��n(7y����l��x2z�_o2Ե8\k���'�h;ۦ&������B`���ܟQ��չW�?���>��cc\�!��v��p]&�)��$�S"��\+r��eL5���;yfi����}*��r�3g���~��t�[H�z���i����&�0b
+��.��Fxq��л�;��_h����J�7=�$G:� q�es��c���w	�[�����g>$�1����c�����u^��#�4����ȡ楔�t��`ʭ0"p���w|���_�|��On�l�]ԓ�:�ғ�z[���>�K���O��J�z_ij�%��X���a��}�M�4��X�ct27�ۑd�ݷ��v���FuD�k��a~����1�S�d'B��U-.��3�)�~P�w$h	�~z;���$�+H
8/U���t*
�hH�!wH�;$��	x��0O�v0�1O�гUr�kW���Ic��$�2	An(���/��¹T7;��&�¹T�%ҹT��a	���H���muC����1�k���[rd��P3(M�V@w�4��u���\!~&À��C~ ���'A'@ˠ� ����<���wRM��P�Nlk�͇��rUaU�D�b{rpZ|��=:UaCE�V{ש���_o�8\=A���b�
+�����k(�T��*Է';�
��F�7�T%T��^������������*iI�[���D[��6���e�R�[47Ti,��*	�D�[��,v`[�����|ZM��2�)t;RZ�,���(�,z-,zmޢ����P4�e@@A��]=�V�OI�]��
+�s����.U��}+�B"�w�]�w?�]�?`��l�uΤb�f�v�;}�nO��)����1277d�Wi�#g��>O+-�u5
'������q��#c��c�E.���2y����&c�[��a��' ;��i�fk<E����Ӫ��#��ۻl����[���=������s���u4��1�i�L�_�6zF�؞��F`�ϥ8�,oC��'{���&�r�Q]�/I|��W5?�
+��K'1�Q�R},�f�{%Fl~>� �'���
�	�[�W]��}c����3~S1fr7`�%��l�5�1�|M�
+�S�Zh�$[��� ���th���~ �mV�yQc�u�Y�:��M��I#{�a�!���qGL�~ِ���&T7E�4��d�P���\E�o��ɡ�L_�`�>�=�M�����x$l
t9+���᳝����ӒϦ-—��cű����j_�#]M�u,���c��Ʉ�2�*�4�h{�mE�@Iu�������r{����j���::�Q()�}=GF%=hzfG�?ˎK��KܸW�@�	\$���R��8r�@�}�r�@����~ �_0����}$#��J^�������Tr7�H��m�z�8�X@l�b�~cvݰ���L�sö͍Q�Dh��DMC�m�j����5�=�tJh�m�g�o©3�;Z�.��~�Pkk�ؼ?:w��t�GJM���Ѩ�r%�܃�v1��lN������˰u�T�ܕ�:��1�_'{��˜-� ��Q^1�
����x���^.C)�	%����%�֨�$����Is��ޡ�Ukv�P:�Y���߉~����wÎp�l�wjJ8��r��/�������L#��Vʓ��]vv�}m�ܓڛ�ky��J�M3��QΔ�Z�T�L���+��)����픎({�A{u~-�W���eݰ2g�(�.�ahj��;_�|���������ʐ����&����&����K>��T��)�[O;���g.qFZQ���Yj�'syF�3�8���f��IFVJ�5���N~��^�a�ϊ��Ip�k/^+B����
+�<�!�vE{�*Qw���tj����Lն�x"Su����AP]���l��vom�	ڟ��{k��Fs������t��c��ڿNX<~�I��Zn�����.1[Q��7��y�T�����n��Z_�����_g���]ݧzE��Tw��^�
+��p]]x$	�ՅFɳ#--#g�Ʌ�wdA��;+���i�8>.��e_{C�U��be��v�|���(Gv"�4�8��|���Gj��S/Ŏ���E��H�8�|}�H��5�}Qcn^xahԘ��d+��sD0�4x�e��}E�+��[*[�Ry�êmb��5e�
G�f�|�/|$f�R=kL�s���:�G�"�rd�6�B��!i?l���m!`3l����6C�f��!`3l����f�zq5�H>,�b�����鶺���,G���Sn�z��z��.,|D����G[=�z<
�.і
+�M��hnqVS
+g��9w�G�G�5n��.����@KUeSw�v�0e66T�j+KJM��@����Jx�	���t���%Z��o� |����Ϳ�a�ž�a��T�}b�J9L������5)r`�\�k�4�(z�ɩ�i]C���1��T˂��GGs�i�Ք�*�U��oT�9���԰���{�R�$��&���sBq��?l�$���`�tΆq�X��\쁒���`nGr@�t�cp@�m�	�~:�|����[>;��]sOA�8�/���
�����l
��C��������n_2(k�'�裹����Q���b���0��O/��k�}r��Y��ܫ_�*����O��vC����}��_�2��.C�j��%���϶K�jۓ2�Pvb_^�*G�����$::Z�ɫX�0��|�b�%C*vX����K{��o�Ҳ�W��Ҧ+k�ֹJ]_:��]�CM�J��J]k9!La|?/�M��������(nvD��w5�T�I�ʭ�ƾ�Qzo����.�/|s��lv��gwҒ83j9�c6�����"r�%Xo���X�	
|��C�0º(32�nE���F��&�Ŧ��,:���x \YU�4[JK�feYU���������
�z����"FH���^�dSخ�
+A/�\�a��6ՠM
�M=�π��ݳ�7ڮ�pz�N>�]��X��2J�����J͑|�,f�Bjjͯє��%��ke-���̷��颖<)�D�v��Р��mc�P��&T�l���f/?�{��f��KqB�RX�NHqB�R���'�8!�	)NHq�8!ř�f���{8 デ������|�p>x8<���t�<�y�Q��B��71���Q���������P��β�Ӎ��
"Y�D��7Ҙl6����H���|e82���;&"C�9p�M�}���}�o:L-_<r䁥Tj�#G..�hC[�!��j��Ž�G���ph��5���B��й�B���
�_L'���XL&@�g��w�o>հ��U|
es�ϱ�fr�<��v�y�	��|.�lpޓy��g��&�*y�h�{�������$R�fs����?!���^�����O�g�Hy+yE�t�o]�*|�gH?}���3(
�NfT*H�D�^� �-�R}��[�^�d��Rٔi�{7�����>{I�CX	H��-G��':U�j��[_A�������i�ڲE,�ŋ۰,9Di��J9.�z�)Emس����W����-3U��~^醖���'��oV�M���3�����׶��}Z{��ڑd�̧�LW�F��P,���o^mI��9u�/Q��_��-��f�C��U@l��}�P��+�bD����~�D��nZ?W��5(���"O�a�G���/Grv�3�(a���v�Wqy��X5���{����{����H�2o� �蟒5�G��Z�p;�3HP��O�i��q�v��#�?D>/������\�&P����� ��39��#1�������9*|��
+O�����_&GQ���&�£H󑣊e2��#�OQ�HcW��č�<;D�>RήH�FB�n��B-i�ɀ|mdWڌ|��}ps��w������"�,�?g��z�tA��v�R��N�11���5���y����z̲�q}+��ϩ���4���2����E���S�� �nBԸW�	!\5+��@x�A~-�h�n���U�O	�l�?BX�M�VBLxnB^3���c �Z$Ē"���	�k$���i��!6!�v���$D��?Bk��D\�&�����(��!�x��ͨ_�o�Ы�x��E�|�����?�@��ۄ�Ю0�A��#�!����!$z	���!3>�CHG��NܧP��߅�B��u��n��F[{P~/�ُ|A�@�A�y��=Cag���3<jY��쟍�[e3��q�o�cG��G$��N��D�W�/�W"Ϩ̫�F���R!�˼�|GX�yDW�	��҈bE��H��Q��k|n�I<~���C�)1+_�y���2� zU��+I��*��U~�/!:U\��Ĥb-W2m��f8_^���|�j��W)UdyJ���e����<������9���_�<[�ז~��U���oq���|��&��O8_�x���,m%�xz�5���Ɨ��F༖�d7.lf�W���1�L�|�7�#�7)ί/�I��pf=�}a#
���������a1�)f�������jf~;�X��6�^]�k����_��-/oK�Lo�7�J/���ɕ���Y�lϯ�^���EY�_Xɬ��q~q��jZ��.m���L�K(qc3�xn!��,n��I�4���W3��-���/dω�-q={�g�+���bvINgӫgӛ��Mqp��k�[��u�� o2k�$-����Ik� m[<�j%� ���m��������Ʈe3K9qa5��:ooίo-�77q{>���=��+��{���of��Q��
Ⱦk~��+
+彮�ےA������[��-q����n�^�zcBꍉ|o���Jog�ţ�s���������b(�.��N1�ڂѶ`x�|�B*Kt���d�3ϴ��^�߼��ϯdVx?�>XΠ]L��uq};���63[����Lv���{a��V�. k+��s�+7�3��d��ב{��٭�b�=�)�Loe������3ٽ�7��F%����lm��+�[ٳw�Q��jK��y����@�����<���]�C�$GD�������LL`(
nɣ7���f�XBA�
+�u�o}^.��7����@�e(u}��n�kY��om���y6���m.��'��k��/�5�nmg��,F4����MC�,�[m�`f	[���loot�ϟ/��K(J_-Ngo-r��7�V�7��6`\n�]�<�ǘv��Z�,�o�C+�kkhC��؆��B�Ѭ�����������<�@c�+�M9��h������r�l�E̺�����Ds���y�J�o`.����p��D$�d���V����p)�����(�$姇y�YH��R�r�Y�6b߀D=Βap�N���m�ť-�j���wo"�
o��g����TV�R���}�ӽ�m�;�<��]\��h��$��:.�&��mV�4���0�- ?�OZ�8�'�h�*O�B�%�8���R��6n��I:	��e�m�eO�-[��Ӽ�L�[r��x�}C���3����|�$��
��m�V�k,�۱������W$��eu���n��}�\��z9�O�uc��������\��Ɛu���b�6�������}��\�\B>u�����؟s9��Hz��8c5[�-ܔ���_���.�X����Ŵ���m�۲��T��]�B���x&
+���M�=>��,�}I��!e��x��aD��&�g�>�e��}cc�uc��,���{�c��~�5�rf����������/�p�_Լ��"I^B�E�Ҧ)G��]�M?9����ǎ�$K<%��C���1>�����祿�[1��C
�T���!{7��Vb'F<����񿼺/�-7*I=[����e�e�3�x����v�
+endstream
+endobj
+
+1287 0 obj
+12677
+endobj
+
+542 0 obj
+<</Type /Font
+/Subtype /TrueType
+/BaseFont /PXAAAE+HelveticaNeue-Medium
+/Encoding /MacRomanEncoding
+/FirstChar 32
+/LastChar 255
+/Widths [278 0 0 0 0 0 0 278 278 278 0 0 278 389 278 352 556 556 556 556 556 556 556 556 556 556 278 0 0 0 0 556 0 667 704 722 722 630 593 759 722 278 537 685 574 889 722 760 667 760 704 648 593 722 611 944 0 648 0 0 0 0 0 500 0 556 611 556 611 556 315 593 574 241 241 537 241 870 574 593 611 611 352 519 333 574 519 778 537 519 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 444 444 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
+/FontDescriptor 1288 0 R>>
+endobj
+
+1288 0 obj
+<</Type /FontDescriptor
+/FontName /HelveticaNeue-Medium
+/Ascent 975
+/Descent -217
+/ItalicAngle 0
+/StemV 0
+/CapHeight 714
+/Flags 32
+/FontBBox [-576 -287 1987 1160]
+/FontFile2 1289 0 R>>
+endobj
+
+1289 0 obj
+<</Length 1290 0 R
+/Filter /FlateDecode
+/Length1 36964>>
+stream
+x�ͽy|[�u/>�b#	 $/p'H�W��BQ-����E�%n")ˊ�H���)i�׼���痗��&y��hql�&����ؿ$�c�^R;�]�M�"��̹�Iɖ߯���_̝;w�sΜ9sf��X&;�˟��y��� �IƔ��[��~8X
�%��9<��㋌�� =sx���}H���)��B�����;?��/2v��o8鳖��e�:29�>i}���Y:1=2̲�A�;ނ÷Ψ��r�����'��I��𽍱��g���ϳ:���	���&fn��s�}7�'���o�3���0S
Fx�%-=Ú�e�g;r����\�|O�������PI8RZV^�*�}U��&Z[��7465����wtvu�[�ӻa�?���ߦ��|.��&X7+g��n�96��cmlR9�[��(���9X���9�t�qH&��Q��:D5�P�,���r7��&H��Fv���-�Y���o(ʟ�W��<�z�.�tf8ps�y��@�w��r����Qd�l8g(ٰ}�688�y�l`C����9c	����C5�sl��q���๮!�CC-P��1�z�A
Ge
Gy
P�(d��8g�q��3=�s]=C�`0�{����������Yo)|.���6[���r�i��PT1t�����=~���,���~^a�3�d�8V`(�=�����hA/fhA-��G�Wnٱ�Će|0���΄�Z9����(l�
+ۯ���W��ڜ���)��=�R)|fA�:ɝ)$GRQߨu��fa���5��Ҳ�'!�\�˥�@n�f�(�y
+�w7�f��3�ڎ!�a�����J��nS�EkKA�IeK���/�:u�ʟ�~�Z����9�(oK�%���+�9*6�fX5c���n���+�tq�u���1���k�n
+�]�V|�s��N^�i�V+.K�4���P�.���P@:sCj���q��
H@R�3٦4lS�ie#�:���yՆx}Cc̦�r�y���#�-���:�:�����So�x����w���u^��=~	�cŇB+���Q�tl�	4V&;��m��L�T��fH���Ѓ����l:o��gp�-Z��G}��<�R���a���c��	A���Cl�nۋ}e#:�����*��E�h��&���zS�ǫ̥�'3�1���~��1�)�x��z?����J��ww��lOk�>f?Wv*�Y����
��	������a��Jc{
,�l/[�$�|0<�Swߍ�����-�/���{�aV��o݂mA�q� ��̙�O>1Z��MI�\��I��+��Z~[M9p���V��<` ��jG�v[l����,`}�s����Aj��r��h���RR�
�L�nmfd��2k��ȃ��i#v0J�.�c���B_����
���5
@>�RHM�6A2�+@�1�[���J�Ou��T��Z��w�κ����6����{ˁ��?��>K�23��Jµ�Y�^�=v���̱^��rw��C���}}Í��6W@�šoV����/g��"U�_'�3,H�K�3�HJd���ڧ܋�r�"���r����[5��rh�POcļ����������	��f��R����0���|����J_9���y�8��ǞX�n��2(��.��,�8H`��$�j��@�9(�R��S�Qd��s��*)�T�a:�a:0a:0a:�>�I��`�@= 0�F�!��P�����/���K��N
@�����r�(gd!f�
��^������� !M�(���1�E�!� Sx֎\�y�N6���D��`Q��(�@l\XQt�rPEeJ���ah�Lo�@
+bB*̖�jZ*V�o,��(U��K���Y�,pjk׮������-�(�7���4t�9+J<ޚ����Me�][��{����pYt��N�X\����y�_~@Q����8ʗ�)g	�OW׬��{	��`�	�@�8@�<΁M���y��|�9�j�'����l��d# PÕ��IP.8c̃vARE++�彬���c��1/�&�5g�'2�3�#B�J�8��e�0���w���Br�4C��[�B�*�N7��0rC��a�`��|
+i�H���5����R�T�m��*�lʬZܺ3^��3���/��S׾�=����7o
�w+�+��@UC~Y���+�_��:�-G�<�S��ѧu�i��n+�z�
+ڏ��_�M�)���H����%ur/K�ޥ����e�_� ���^4[7e�HGk�B6c�Yֆ-���e���W}�I��~g Gk,�E�ĭ�&���ͭ�D��./��:%x�1���7#�� �@��-I��d��ڇ���d�۷ryCcש��x0�������gb�'J�� r���CW��ԃ\��\c��ϝg5Bz��5*�vL$��S��_S�o&��&�W�τ����Y�}�c��e����~D�`a��W�P]򗼓ze=�WH͘x?9���hħ��	�P�\����=����8�1b}P�Fx���@#V(+ɄC��5�����Q�|�g����9:`t����"����1��c�GGlC)��n.m8��?|�W#,�ԑ%��9��#���<�F	#f\2U!
�8W/'�U�����䃹��FH!I�/
�;
^�"�N	K�+FJ?���/*���腺�P���B]^��uy�.!GԲ;�;+�I�Hאh�[�:�X�����;Y�0��M9������Q���T�m���i]D�5�4���YفXq��6�>2����ֹ��|hs��a[��=��)P/����i��L]�hU�q	��ʊtkL��B��PCo�&�N.4��f�nHaH
�6@2�9gpU�`�.2���<YA�e:���"���@C�B��W�WD����&GtO#2+*�F��f�[x:A�u=\�lW�2��cF~R�q=\�z�y�DO�4�P�
d�&�<A0��X|	*������VȰ!{�؍0��3`x,T\J�U
+�U
+o^
+/Q
+�UJ�U
+�U*8�Z��Ӹ�]�Ҵ�3��e|���W���&Uͻ��~{�/ر�~�H��ۑ�+�k�/���v;��	dgjTkE</\��S��B�J���C�#wn�<3���nC��Oi���>���/*�/�sk
�S}mcO%�"b��%�)Ll�H=���
+�M�������]K�$'5��C�U��O���Fh�,n����	o
+�,!�6�l�Ơ��ظg}�e�\��憥Ϫ�����?�t;���ۣh����K�H���i�cV�	Am'�L�e��>1F���&rhX$��V�dM'�N�#��7E��Nk��()s�K͢�EM�AH��0iʾ�4n}DS��vJD�@!�M �0wK�H=^��O�P��$ �$���6���E���w&fd
+���P,9��Lj�@�eh%��1�+� ��n1�p�iv��(w|�A�/����+'Y/Y/Y/Y/Y/'Y/Y/�^lv�
+k8l�B���V�#V�N��#���K+�ꮎh���:�w]Iok4v||�x,��[�no�����:�X_���7^��׼=�n�]��ۓH�m�Q�{��@M���h��n���V7JX����`�"���K�.s>�C�	x��f�]���iTġ��ěq��8
+��C�8P�"���δp.�C�A�X��c@k�;6�p����44WU0TU��������
+�*�[+d3ϳV����8�N
+`F@pt6�uB�)4R`'��
���dt��:�-e��i��qHB�hTX$Ƞ����)R��0�!<�
φu�N h�患�Q���h�ؔ��D�E�r0!����1���g5�yѺ[��=�}�#ʋ�j�������l����;4������1���OÉr1���,O~Y���7��T����mIϧp���˴H�$��EWqT
+ר��[t'�C8J�U��{���Z������B�7r�N�Nm�4ݓ�ܾL��%�(.�zg���AH�p9!�):� ��$���)B
�D#1Ѡ�Ϊ5�q
�[��N��_��ʖ��ym�K��(���O�4� �K��K��K�вR��i7H�)<b�\��i�0Hsյx�];�����=�lg ?k"=�(7�(/��+��h]XP~ٸ�K����Z��Ȗ�+�U�Wk[~Q��(ȼQ��?��t��D��µʓ�5�'h��2u�Oh�N�^���d}4ӥ����T���x(�	��Lw�C9��.���>����ԐQ�eZ�'�{����fa,�%�����n����nB ^�Bm�9�#�s#~�$�PΟS�M�g钙.�	|��R�Gޥ�V?�K�Rη	�钉r<\�]�z�U*�ҡҍֹ$���xQ�T�)`,f�!�!�vQ��Xk�	������u��!�۳������4�\��An�
��2(�+�b�}�B��
+�K��}=��#�E;0�N�������M�����.
%;Ev���u���R��[��I@ϸ�j?.$E��3h��N�y�����ⵟ3���4|�;J�c(�L}��@+`�Ҏ�dMg�:�kb��M�Z��
+]j]j$]jD华b}#�R�����(��f��Y�84�spp��'�-�
+�r�e3�7��Aץ���?�w?��/r�vg88�r�|�n��Q��m�9#l����G9���` 3�[�����Wt
+òB�WX�Z���<�dU[C��e���x��_�h�����;;�_P�E*�v5lu��������ֆ8L�Yx�M��0��)Q�a��)�GQ�\�ZA��u���{��n�\�s���j~��§e�>��?�טt	��
e)*E���t�Ō\��3
+0�@��$���	K
�&,M8D��1�`i�s���=h��A��A��`����=h�|��bn5�l�|�:���5Ҽ�����\�U]`���f`�{��ݧڎ�XgV~������m�.��D��n-o�gk�=cm��=-8�<=������irE� �a�����i�;�g�$GN��	u�9A��B�r[�j[���u��n1���y4LJo�T�)�0��	9	�|�N6+r��T+�~�t���%%��n_���m���Z��ͷ����o��}�i,һ��aoD�0�&�|���x�S\�4�vRch��C�4������Yr�)�F��©	�劋����#5�H�1��k���Uu�6��ҟ+�����KcOO��m��Mg[��K-���k�SD1��C�W~�t��~�;��K߃��.�~�T~��+p]��f���%(�+#2��)�H>��C�1���7>�td�p��\�>�)��[A�CR��<2y$�J&�1nV��)�B0 A�M˵���	`��K��S)r<�(lG�گ�����Iwrz�����?�%��"�2���[�*BbRy���,'���( �V����t[���t[��m��R(���;�i)z�
zL��KκQ]O��oo�|���(&m�(�*ѝ͕�����ڴx(�T���U���|{�����L�薫:�~8M�� �7I�D	�I��(bY�"��ז9
^���l�R�
+:0�de�һ��t	De���J��n�Q!��	_V�|��
+��ն�����Ƭ�7�C=y�6a1e�~)s*i0+��2���r�$�jb���Py6�`6�`6�`6�`6�`6�J�_�]�q��jGL�qv������e;H^��k5�7�k�;k�%��s����+����~7OҢ[�}qr�L�E�d���l���v�3�ו����Ӏf2͏�*]%Q�I�~A����Z�˪`I����/�L��K`��7	<D`Mx6���z/�I>�/��0lpFf�Y�f*��a��!MOk	"�����,�>���3�z�=�E$��b)��ҳ~G�Men!�9�4p��)�'�.���r��t�Jk�"PI���YE��,0ɱ@[��-b�Z�"e4���h*�F�_��8�zK�jr7�*�4�_�o��3�^�ܟ�p:߇O��m%�6z�~���	�����̉i@�(�tE3X\�U����^Vj��1�W��ޥ��v(���t;����ס����DZ��hYP�-����*}d�R�@蓳-��{U�.$⚠`R]$��C9�FhlH��8N����1��C��rJ	$~:H�~����4E�D!oR�Л8m8��2��fظ�2�;AL���u*��sY7�!��E�J�I!%�"1̲����4����<K�F8�p#�F��;�Ə��.-S3�3�!�@�D/��n�$uf��Ϥ�2��L����ǝ�]� a� �����%��؟��s��.�@=1��$�HF\�1-+�����!e^E�@���~+.[്�<���2��)*�L� ���v�]2����4'�D��Xr7�2�z�@��&P3V��x��t�}t��2� =iG61@Hr�#�z��o�/:�(��W1Τ™T8�
+gRa���?W5��C�;�}��>����ԓ�e�Vk�4��+?�$�A��E{C�[�2���� q�z�H�l$-�,�׈�^%�y�n����+lҗ���4�D��{hh�BʥJ��>䨂4���8e��p1��3���.?/�0�>��n��Zy��̵����*�/����R#��`�9�Q��"ײB?q��9��"�z�X� �/]9m���e�9�����Z��~N�$	��7ĉŠ��ۼ����(��+ؗ��sT�oV�=�)���$����94x�'�
��O.]2 ���ڀ}���<
+}p��sl'�(�(_WV" _�i�VùC.8��.8�i/C�M`Q�p!�50a��epɌ#���eP��y���	�^h=�ry��Q�JE����^;��v������t�z/��@ka��<K�]��|����Kk�&��?.�����/�3h:����H� 7RdzqƸp�2����Ȫ��hzK�4���	����X��=�[�k�Y���}��
h��γ���.�5E�E'\u���	��E�:��E�:z���. �H����Y���"��m�A3ͮ��
+��G�x��М������Ng���G���,��-��\P/W��!ܺ�b�ʭ�ުb�ڛ�W��ˏq���Z��Y�nR]���%�t��ä��[�0���Y����x	�
��btd�=G�9�
+���\&����u�G9���n��M�S�"RL�
+�H��Ot�?����C���O��'~��#��9��v��L��L�FD��	�*�j�Ğ%�f�k�K��;����-�
+����d!���-�Y	����>�J d��R
M�Y�Y�&Y�Y��#�h��`b7u���	���P��K,W	H�D�p�W2�-V�Ш>�~�tWy�`e懽���T\�*y�eNC�޼\�+���-��=�{�ˎ4��`Z��	@��K�;+S6��a��n@d�1���$�}r�X�az�&U��b���4@��x�B���B��#��m[��Wj��aU������j�X�}�/:�+3�0�H8�а��;_���_fb2����vhL�r��'�r@7ZĈ�|�	�Ӆ���yZ�"�W
�9o��WI�.	���w�L��Ɗ�?n��ժ��^�[_�cP�l����;���vc�{��ʝ����i܆�Xx�I��]������8�뾰Ҥ/L�����2���R��GI�E������':X�1gS�夓�M �D��@��7�����F�O�N���� w&M�0���1�5�؃�Q1a-E�:]�0JA�T���D	f���)s�kcm��N�6��p��f��k�����[�/[0�%�[M��b���V�P'����0��M��L��L�����DS�'h��'�ҷ(g�������@Sj�)5ДPQM�����#�v~
��q����$������qN`|�#�Ѐl�M�p�Z��>]�5��8�y(W2~��u�ᲖPv�;��n٫�n�6�l�\0��vW�=5accO�M���c������۲����-���<���hCaözOQ�`Sos�+�
WX{��h
�6�
6x|���l3�����	�(w\��S�Ü@�K^��۲ȗ�4�����^^�g��ĕ/�7�9Z�����<쳩kv���[���Cz�擬�|�,
+s.��`�_��p�!WY��,�!q����eQ���N�aς%���}}вP�ubݺ����奃���p��/�|q��w����c��{��#HS��5�;^��g��}4}y͌s��!�
��ԇ�#���a�`M���y����I� 8H_�s2_=!>'!
�
T�ۢ����~�H1���p���݋�?Z�н"x��X�(�������n��ۧ��L�~�Ư40���_E��iOj�����n�D��H�L�]r���z�v����G��#_�>�0V�7��rt/S�ԙ��$m�<�Խ
��,�y�v�~��I?>C���"�Fw��t�c2h�z4y)��:��$pш�@����V�.�6p?"_�>��4�9{V���N�MI�s �"s�M*�5��>�<#r�6Pj6A��鲗�ny�9�.��^]�B� �YsHC2pb�WW�Mt
+:�^���«%�%���ŘE�/�b�[�z��7!���p�
+w�x�L�L	n�[a��&�8ԿJ:��@?�m�[.#ޜܹ-��~�_%�h������)�7���R��;V,��]�P��@�ֹ>�+$
�7�
+�U�S�Wdн�:���׺d8B�|�����*��
+�r?��X��~�
+������F�&n\��,�C�*�Y�_�r
t9A�|�@��0N"��-{u{�g�}����!�7�w�b�M���sk>�	��3�V�<������	PȿP�yj�O/߅�m�4��b�(y���z�Է
+�.�e&w������v�k.��XV�+�ҽ*���X�P�F�o�7�p��>O�z&I4	�$�oX&��$�uqp�aH�YDt|���9����[���D�L�����Z*e�	���@K����y�;�v$H���V�Ŝ+�:1n![�jHWb^%�Dż�����O/��������Ǖ������|������*��1��pŃ.坅�:xJ`�m5�:A�7)�����,1l�O�{��p�	����'20�i4G`B����E�YȻ�B\
ў��iBt%��Ct� �$����!�Q�k4eS���ܨ��ByY�݁Yi
+n���,f���i�g�[�O�䄝���}@3�|.��P��B�R��il��	'b��yV�<P9?���E&�B��V���N.\��[<��@G���J0�$V�����p�)�G�BXl
+�` ]��5�d��������R<R�u�i�C��
+��vD;���������lA8������؝���9W��M5�B-�s�4��m�v�ٔ������u��١沏9,���w;�����7u_v��*`���yV]s�i��BS=̤�����T���a�W�>��[��-�;��&&��`���%�&R^��@W/��^���L|XH`�Y���kJ|��iٸ�J2O��'@̃
�<`��0O�o
+3���֓N�#`�����dRx�q0�q�k1H���]�GR�#�G����sgͥ)rS���Y5����ݾ���m��\�F��	�OrB
ڦ��p\�4hv�����sY+��6��Re�
lTTm]�?�#�>Z�u�V�C��Sij{�����([���d [�4�i��Zcd@��ݰ�	��P�����Jn�ˣGyh�pO��*���.&���丑�0EW�C�*��/��H;��jN��,h$�r��-T[��,hVʆi�Q[��|��uוڃ�%u�i�٧F��w]��n�,5*�����ͭ��:GS�X��C�-c[*�7D��b�i ���\�T0�+I��`]D��;��#��X��V���P��D�$[U1��.��U#pޢ8J�J�ea����\ �f�����k�>/E\�1#;�w�����Xaf����y�쏴�"sÓ��gl�'m��@��!SLv��
jqmUׁ�*I_v��M�y�kQ0Ý7���U�`�.�:���p��غ��Q�o��T�%Z6�����]J�R,�U��Cdv���>���`���.�5��fz��3E*��ډ9?Cf�8i���d��f�+_��/�$ir�d�R���A�i����Mt�TB��hI	)�R��R1�=`Fl�3p�+U���5���
+##�#����\?=��km��N9_���3P�}ܣ.6�\��(�m��(9B��VKR7��jaQT���"_��R����v�Dze�������Z�����"��֕�Jꊶ���=���J7��5�l���l¤_�s����IC����'��=��)c�ݺ�J�:)�k�I�Mv�3).�p	鶐E����"i͂&fA�dA�dA�dq���J(}�1A�<�Ws�������Xa���q���gUSEm{�j2܁��Ҁr��WL-��
+���<k�:ӱ�s������Lɘ�t�t�E����O�GW���V��
+��t�A{AT�����������߼P��,+,�i��⿓�8>!pɢ��\�R'��
r�w�7�����SN(�I`���P��`���t��x�̐q�yz������Kf|���.L~݅�����
!�m$h��`A����@�l$h6��B��!0')�;�k��j��j��j�Sj��j��j��j���w��c������V�f��{8���7˃r�`khWV�X<��,����"ۺ+����`���K������ �vSc�v�:{%ڳ��p}���yO�e�;��}SO׶�hŖCM�7o,/�ܸ4�u�܎ڣ�(�}x��e�V|��`��N��p�<���WH�*���n��bT,�n�R�U/��ȧ��d��>�PkBFS���v�aڡ?�ԟ�;�����i����م�~p�ρ/��������Z۬��<4�FcEՁ�Y���C�ٽ{�+�퍠c���s$x�oȳ��b���{^ ���yh��H$$JwE	|Q�9b�����n���k��3��9��Y��^�������rL���]X��}6s v�q=�k�iU�)���2r�H�y(J�u���nb�i���毇������8�jπ#�j�M���;?�u���Q�0?��O�aL%ZWW�=]�H�ݰf����%wDH
+��d��ʬ^�z�@3׻M��*�r�m"�8���_Q������%�i�k
�@���Bj�W������$�:�u;�^�1v��AwN� �j�o)۲��o�Y�Z�����O��g��BJ�ѧ]��޺���]��q}�w�]Vp����ȷC	}m(;�L�f��.��������7wD@+Gj.��\��&���"M��5���SD�e��Ϲ�[P$j<C�@��m9��e����ls0yԚ��QDg��
+'G��,u�I�E�v��妢�8u�D	ɌR�(��>B���4V�&M<4�x`4�@y�&M���&*�牂Ƞ|��Ɲ��%�U�(L�ʄ!�W����(�o޾w��[�g#��2�sV5mr�Y啥�7/=�T�c%���-=��74���~̘>�;��z���v]�=��3h��J��=|�1C���v�|���!���hc9W�yW�'Ԃ�+�kS�ZQ�v��s���v�J�^�<j��ϱ�s��^<]z��+O��n�����9/�~���Î�^���Լ��䣝'���7��z��>֯�cx�����pS��5�姭f�����೵
>��#�.�������ܭvB���j�.5�;�+�w�<WI�?�#�uU�x���AM]5����k��X��J��1'���=%��uU��d�֩OHߎ5��>�!ZwkeA7��!a��0ts�9�n�dƮ�h�[��+���Ơn������Us͵��O�=�v4O�������ެ5nf�����YKK�wW:�q�ݭj��K��Q���U.�Ϯ�W�LcP�Gy�Z��'���1���=wB���$��|�Vmw����>*��3�7�0�H�x��`�FpF�>C���Ag�`���LrF�L�"��|З>�K���D�}������A&���؞ �M���3nU��v�H9)��(�v�ORh��h�n�NI�T���6��Y����4�l��������W'�f�ZC�o��MZC(�1Eu�sӫ��o�R�ڰt��;H�8x�[Gc�r��y�$Ǽk�bF��A�������r5�>�����G����cW���SMEeu���LOfQ,��k�U�U�)ՐW���w��巕_
��}��wRO=,�w�7qT-w��N��CΑU����$�Hef�G���,��:[�l'�!�p�P2V�K�A^�)��B�9$�mt�}��H Ja��$�2�� ��9��A�M���^���$'�0#&|͙hmsN��U$�LIf9�w\�Ϩ܈��b���?,!ٶ��n#'p��A�yV�^��-��zN�*��n#p]:G č�h�<��ڐћ�%�R�y�Դ�:�,���j���֚²έZ��ֈ�dZk83X�[T������^Z��]S�+5ټ���L�%�8)o�l�p{EY���r�
+D~}���4�]��Z�զ-��4�_�����U8�SO��P�kD|�SB:��j� ��h�揶̇&�yV��]��wi��w	�`ġ��=|�`u;3�3�!gU�ߪ�RM<0��뜂�tŰ[5:�u�V�?�[U��=*~�)]�x�*�?@����7�g���M�9DL���$]c�J�x]wBOFki�,����
U�Q];*����ׄ����M��Ę�i�{=M�z�R)�.���t���R����H������?�8c܆Z?���W	��m!�x��k\���E����l���Y��nN
+CK��;ԏ�r�jZ�S��z
+�"S���솖k��*�Ч�����<DV��.?�=R���fj�~��b�H�tʑ'B��Q��fr��R
+��P|��<K��
W;���v���A'\eOo�z��@-
�ۄ���`�Aƛ�L�;Ӊ�z���G:�[	��������&�*���P�H���1G	��7�9�bz#��
�/�	�A�﯈t�vMR��@o2�YX��(��%�l��g'����A/�!R��{֒�����j��L3]�}h�m#�f���L]����Y����~u|�K'�n���r;�+�)g���r���^N=w�tTj�g���
�ox����C��"i��%������{�?�J$x��RH9;	�D�\�a/�]&��K���*�����,D�D����u�R��I��J���ȱ0\n~���Ě9:f�QYךcB�������|�t��SH!��>^�	�'i�ty(��J�њ"+�ya�s���I��e��`UH�(�dH��|�;)J}/ױB����Ȝ4�*��՚վ��?!��Bzl����N��@�:���	x��~���.&�J#��Z���8 �E?6���Ƨ���~B]�mzw�J���P��4��V�:��O!����҂�ÿ9;q���~�_�8}����>����=�c�a9�@'䩿���"b��&��~�3��8����H�_ �od���Y�G9�)�uʩ$q?i�f���*��G����_����)�5ʙ"��5�ϒ������SJ�R�rޡ�3T�3�U�2��^���� �W��g�~���|?鵑��bAR#�(���U��W�r��z'�"4op@s��0op���A��rC��[�I�%q���(�e;�\��`z��r,��z����1u�.���u�-D�B����*�Ǭ��
+3+�%$V`;�NŰp�z��'l�HKUi�V`˅)�)K��W^Ĉf�AՔ�,p�����{�%��I1^��M"}:þGǚ��J]PD[�r_������S�Jr��@\)U�Y�9K9��ҡzET�)T��+n��'��CeNP�L\�B2xך�v��W�h�=�\Z�<�$�H���(7	>G�o�i��C,�#t�^��4~~�*�P����Lw��P��\D�X·�k
+n�I��؏�9���ԏ_���+��(�~�ne3D��^O�/�gH��$'��:�|f�I�r�qx�.EI�sH�}�:0����!��3k:0+i�KA�K������C�zd��{R������+W��ʗ�~�4.5+��ߩ�����P�r-Ц�S������6�Z}�oi7�'�D�8��D�-�%�>H��8���"-'wqG�X*���le�*���&Ys@y}vF~�z�2�y<ɢoSm�p���}�c�^��Y6�)���{8,)X9��/�W���z��:p�݅ђ���$\E��a�]zsq�����a"�J7��A��"$���ˮ�5�hЏgRm�D�k� ��0*�YE�$��ҡĵxL������'�B@y�S����kiIB�����:�����gÿ`�#?{]������W_�'������tV&�3<�aEi߸��r��{2?��O���Y�l7�ZŽ�{��U�D���P+YRR�R>$
R��ļb,����Pg��?�0�~�H7B�V�7C�~�ò��	���p
+��l��{(����'��}ip�GY~�p���{��U�rT��:�:��Gx4���Cy
�lc�
+ҿB�=��:
c�
��z���(ễ������h���9n���Gp�����L���Sm��8$�C�c̔�/K�d,��1�+�١����c���^b,'c�_����C~����݌i� =�����z�����"$(=�X,�X�[�šM𽥒�v�����]��̦BHІ��2��w�������u�v�3vA�nz����C�}��2��q3����<u'F����QH��O��3�yx���n�9�A[�9���?�����r��-�]�V����oH��m�M`��1�
�7ߗ��\�[�	g0Ilf��,�-��A�ә�p^�%f�{���5)g�S���_��]b�e�%VY�iXb�6��c���0�����ܦ/K�T�E�Ӡ��$NgN�O%�`6ӯ$��\�$�d�f�^JK3{$�1�~N1��f4�p��
�i�ql�m�G��y>ߺm��5��8p�y��l�Oq����s�/�̱����s9~�c7/�5��wl�oq\��8M��Lj3��4�?70<;��IF���OL�
+$�F�G����#�S��lbxt��D"0}b~3F��cӳ�����#�S�y
;O�$ƆGs��8V1>��95;~��<|��@]4T�GC�|jz�	l�<��2p����	�U=2=Y螘�[�
s��[�Ձ�G�ҹ���ó	|�>8���?�/����)|�S�—�N�V&�G�����ύLL�A��g�����������xm��ĭ3Ќ��������T`x�sxb�C����k���*���(�?�����857���lj��L�����+o��]�M��[��#����ؾ�����1|�z�Pb�pb6�3{b����﷩@��Jh��ĉ��[б�#�)|��#��'��8��C���S���0|=1;>7:>2?>=5'�b^�:�m�y|
+(|urZ4PFObn��T`�����i�Id�g5�#���$%nH�HlM����\����ں��h4Q�
+�V�P�WE�Z�
+��Z���E���4�����y�	Et��񹹲��a!(Ӈ���Q��c'�x��cs�@�O98	����GƑ)��z�����9���
+k���9^YmsC�b�<�
+�qě0>�35,�R43=5
+z&�r	l35<�����/��i,Y	�<7�H��Y���U �ǧ��I�u�t�͏�M���j�Pj�KLL��������M��U���i��Y�z��]�7	�M�Ρ��$z��6$��O@C1�p��a�OONB���S�dA�ޙ�q|���SӐω��<2<;R1�A��|�������	N��Pz�p����s+�����a���/�ge����p��àLJo����ڎ:Vo�
U_x&�	6���	6�6�a�~bc�7�׶����8��R��������O�%��/F��/E_z��u��\Q�J����4v��zc����,�$��
U�m6���͛�1s�~�0c"-�ձ��;�2*��`�DXf��|�B���ϸ˩x����l#k�\��)c����3��S�*W��c!�!QE%lpUEa[y�E~���z��{`�T�]q0hc;�<
+�����l�V�(�T����@������	�t��A� +�����-��\�@��'g16ЁG�w�c3���h���S�-�+��	/W�4~L-~�pO<�S���7:Vޠ»���̵�︀�*��qU��|�ʔ�W��eU��V5(}E��R�b���f�������G9�
+endstream
+endobj
+
+1290 0 obj
+16795
+endobj
+
+543 0 obj
+<</Type /Font
+/Subtype /TrueType
+/BaseFont /PXAAAF+Arial-ItalicMT
+/Encoding /MacRomanEncoding
+/FirstChar 32
+/LastChar 255
+/Widths [277 0 0 0 0 0 0 190 0 0 0 0 277 333 277 0 556 0 0 0 0 556 556 0 0 0 0 0 0 0 0 0 0 666 666 722 722 666 610 777 722 277 500 666 556 833 722 0 666 777 722 666 610 722 0 943 0 666 0 0 0 0 0 0 0 556 556 500 556 556 277 556 556 222 0 500 222 833 556 556 556 556 333 500 277 556 500 722 500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
+/FontDescriptor 1291 0 R>>
+endobj
+
+1291 0 obj
+<</Type /FontDescriptor
+/FontName /Arial-ItalicMT
+/Ascent 905
+/Descent -211
+/ItalicAngle -12
+/StemV 0
+/CapHeight 1466
+/Flags 96
+/FontBBox [-517 -324 1379 997]
+/FontFile2 1292 0 R>>
+endobj
+
+1292 0 obj
+<</Length 1293 0 R
+/Filter /FlateDecode
+/Length1 25184>>
+stream
+x���`TU�0|ι}�^R�N&e�I#	)�@H���	IHD ���"
+�;���0$�PQ����[,�o,�b[tw�L���;	��}������s�S�)�y�9g�0BȀ� �gê��⥫
��:B�ڰ�S�I����ꖶ-[�zU�Y��0��,[�a���14��1,o�o|wϷW 4�jh�p9d�ڙ �4�����\�����ih}�����z�z
+ҽ��׷1I̛M����R���Êw8H�F��n[����Dt+Bo��mMm��� A�?�y���!̣���UF��!�A�PA��
F�Y�Xmv���o\<J@��r��O
+$����`zF(3+;'wD^~�������W�����ȣ>��MEn��?��3G����e������C壱G�<�N�����a$c5�
�:�>�>G;��h>�V��h?�O�gHZ���Bm�������c�2l�Z�+�
4��߅mH�<�u�����_�J�k�&����z�d��V�g!I�%��� ``2�����������\y��ȏ�h��݀@��]���!��3ܼ�;��hID��5C��h���5�a~̸ٻ��E��O)/
�q���ٜF��?��ѿ�<����\����e���#0������
+�Cu�Rt9`�t�<�쌞����o�����/�\����-؃Sp����f��DRB� �ɿ�	·�y�9ʼ�|�|�Nb׳����`�������������ԇ�h��]��aV���*�V�n�ރ���1A��	�{�!����p�K�R��LJ�Q�$~�CjI=�������~�ؙ�j��(�GwFG��7�w����e`�8O�f�j�=_���;��G���'�_�_�?�s|el�.���q���x&���e�o�W��n|�w�ͳ�E�g���4=1I"�$�d��d�Fv���Q�4|�&���_���[�����Ĥ2��)�"��Y�l`63�>_c>bYX?3d3٫��'ط�/��pz��&�v�c�c�2?���/�o�#��F�%,6�W
+�D$��P7p�a��Y��C��Ϣ��N�3�C�Vlb�hs�7]KJI�"N�x-^����:�����C�Cxz8i'YAֳf|�0ۇ;�wX����+�og��ւ�Z����B�;z��UhGϣ{y��u߅R�$4O�kC�F_�wXp���?�u���F�3b@�q���:�R^FW�2�y
��=
�2/'%x	�C����'d�"W��eܻ�}�ӹ�@�����,%6��/��p�hs-�7��ABh2iE�0���#�Rv�F����*���P3�գ��s=�2�!������+�j����s�+d��_��?���?A�EE��2���ݬ��R����=
+��
��J~����M.��5
]����
+�T��h:IB+�8A�����#���[P:�3{�É�ᲱcJG�*).Y��7"7';+3��LKMI$�_bB|���v9v��"�MF�^'����b�Y��S�R�����IY4����!u]
+dU�ӥԩՔ�5�Ps��j������XVJQiV�RP�ޘP"x��j����Q�Ϊp�
+��j�	��P*��'(]�N��\�|GE�h�^W(o�ee��:=�z��\����5��qU�:L�h�Quy*�<�	t]LJE}c��Y�������.\�X҅��!�
+*W���˻���N]��<�cgDFK�B��@c���.����a	A��\{��и��z���8fG��Y��;�)]�fU-�Ӱ�ڀwIJeݎJ�z'Ţ;B�O��M�)PAs�.Q����������xwt����^o�x�G�[��[�w��j�'����7�xŠgxIV�a٢a��ơ@�`�
+��)4u� :1Q`2�A�Ҡ�H�0�b4�
�P
>5��j�eh���vȣh>}��K�ʎ�,{���s�c9|��=� %�A���+��Ƞt!��B�Ǫ�Y�k#�0�&+���jx�fT��匿z]$��@�kˬj-��%q�(���"u���@�c-�2P2�z]����j�9����?��U,Յ��Cq�V>uN`��JŎ�n����ʋ�bP�����#1��1j)P���4Qm�bS��W)�1"�@�jV*��IZX����_��C�R��ņ�5*4<=zXz��;0�J��]�c�nXY%ȝ;*J厺���-K��q�<H��VQ7������uUI,ǣ�Z	8���:���,�>.�a�}nu7���n|MMU�tI8��Д�?����HQ7���>� �@��yD���1��GZ��;$�P�W:]>WZ�W�����C0"�o�[R ��E����0�~B
+{
+T+f�b��C���0�ϑ6s,f1$O`;�2&"�����$��w&���_x�;4]{QY��}�!�W>�,֒l��J���C�e��E�(��k۱�(_`0k(xsd3Ӄ���
+(sD�=������-��H��Ĉ,� �!B��!w����
+�c� �	T�[�	�¹>���\��Y��[K��
+�1��y����5�fJҮz˺�7z�U?��~�y���+aoB�	�N��k�������E9gG�ڊ���TL���G��E�3�<��`D|��E�t�,*��h�kCod�������n�N�����Ž��넭`�Y��m�xh����q8�k��$U�A��3e�|��ٳ,�%*<�T�Fk�ĕI��
���:KGM{������|P{���:��灲��
$�"�˙�WThY�H���i�~����m�����{����y���mh�tYɬ�|��x�'W����~����ye۴��[	��ޝS\����
0˛�/KE��t�s_��=�����.1Y
+�x�<�Z��J�U�n�{�Ź,N�#�R��gd���t*6��f���&<E���o*�F���:������Yf����7B�Oa�ʔ�x��e	rMO���B�H���#}����}�@�۸��(%ZJ�%�K~�6�iqm��"�aw�
+chJ��?SX�������ԑ�"�|ux{�θ~̽��}�o{U���n��ݺ��z��5M�ub��6�<m��|u z]V��=��;:�4�>�]���2�-aǨ�)�ĭ�W4H���⣰b���,�2�ep~qdB%Z�6�׺�
.'�N�[
+PJ"
+*��)��y�WtF�=)e�=Nofb�������i�~�R��I@:}�~8��$��FE�86o��F��R)fx�>O��i�My����<s��K�|٭��VT�ڿvޝ�n�����df���>���;��_�y􋖧��.����\��w�o��D����� �dB�•"�^N�X^4/�9I6�f�D��(�` �Md��cT0�I�Ȇ�@�J���#���I@�1H4<l��Jw�#�C�R�~������ L@~m�m����lwHh*��l�M��ӧ��� �n��n8�`��3�i��Δ}�ݳ�����K�b^w��J| ����m�q�� ?j@��ZQ<x�������8hP���x9���L��:lz.9]o�'$$"�;����`Zb����.Ȓ�ЊDW�!�����<#�.yK2����NL�0FR|����I2��OT��,rU�r�:������7`ֆ6V}1d�dl����}T����PiY��������*JK)��B�؟�J$;/8��x>��VR~Ɵ�D�,�|�ҥ�K�M���uk�����!��_O���=sO�&��s�G�;�:˼�j6Dr��i���f��+�.H��&I��\�lȡ��r�q�Gqhoϭ"�����)�@�����M�F���n������Jf���&��ᑭ�Ӎz\��ZP�5K�x�X	m�Q��7�����Po*O((���|����|��&�=�� y,@9��4u�2�*�
+�ȶB���"�����?�(��/��/�.��w=�ptW��v�}����F��J��wb��o�{��oF?��W/Q��(�(ˌtcx�K�I����{�����Y!���p\�O��9�0�Ê,��˧�1b+��A3��$9���E��J�@<�v�Pj1�ZM��h�,��ۦLj\�rmm�� ���@
+UG�K�"
�a!��'��]����?sŒ]�?~v��i�GM[xi��[�}�	�o�W7����e��	�@֔%?��>�s�j-��������IgF����p:�='J�h4���(�Tİ~���N��H�G<�#d��J���N�XxQڄ��YȠ�Њ����6U� m�ٽ*;���`#5�ET��`Q5`4��,��lR���ṳ���%�]��C�⇢�����0�I0s	=.�a'2�L!�O~�Y:sN��~s�R��kzd:u��1��Y�:�a7��ҦN����ѵ_�������� !��i�[�وæ�U�ƄĐ	��<�x�O_�0��}�ѹe=Էf�r����ZA�G���`�>��a�"Ӥr�g=��)W�@o����G;*e�$/�C	A���_���z�I	"?	b�;�LLB/�2�D"2�cî$oF��谮����PY��D0}O����@S��A��y���q��m� �L�M2R	�E~�gJZ�E�&�R�iU��Zi6fb�\yن諷FO�{�?pß����	�|/ܱ7��>u����}�N�{�����������{<����}3M�b>B��rć�)�$�����k4�~�!Q��P,�X����y�#������� l%��V"dG8`����_��D`�U�e�U�x@�h�0�5T��Y.%��`L�
�ql���T1�S>�g��|����8���ɿ/?}���>iw�o/������UQ��Q�� �Ò�a	�q��S=�j��q8��( C���y3�>u�(l
�!D�Z�I2�~/�ʅ{o"`�an?����5"^P�"��)Dߤ��8���0^�N^+�\s�<�\g�04F��c=c4���^o�u(Bv�=���Y�h�L��Tgh��+���q��c/�ϰﶳ��zg� �]z���Y��� �ko�.6��a�t�8~����r�

�D�-�՟&�crӂq
>���/|���G�����gՏ���5����?��r�-�a_�4���EVp~A��8&��%�tð���e��c9���t��%J���ݜd8�A˥�X�����D.���Fc��v!�i��B��W��8���L%6q[�6YJ�"�\��T:K�|nuXϻ�d����D���@*�nk�@�d}�
1ŔP
E�(_T}�
Z�8TC��`̀N<}��}��%Z}��y,y����w�O�PH�4=l�<��_v'Y�� �~����p����p��5Uv���E�Q5?�Æ�.%Z�0����ӏ_��iH�a\nR.��ŅL�P$���R�<�Z�,��dV���
+���ll�6�Z���{�e���>l}���7n��C/Ѱ{D���
+}��r��a/h���/p�!�&a=��"&0RXI�xժ�;�̰�&�����a�{�@���f�b1�����r��M��XSg�(�v��A8.��[9������XL�N��73��{�vء��d�$A�`�`�X�z�$�$��>�QS��0(/��-9��}<L�Rz�@�)j.5���^�z�U��C=���y��Ubp�M����H�9��5�n`t�0���3�P	m�
���7ʵ��Q�y��SZ�V�ȪM3�6�m���V㳥�.�p�M��
+@G��:��*..��Ŕ]�k;��lNWa�"���8�z`�����	Ҙ]�|}�;F6���}��Mv��~�;q~�S�����m�ʿp��Ϗc��������6���Zm�!��ɬ�6��S�i)�l�"si�"C�e�n�~��(��b�d�e��j�e�l������I'ء��Fc�@�A%�Ԅ�[���(/ A���ko4F��a���&f��J�O��,���t$A�#g�]��$��H'��
+.�O]U*�C�"���<��i����:~[��j	ͼP!���ز"u)e��e�j�t=/8�q۰%������z���*:XC��Tqcu�q���j���~�d���7��C'@����c������Jf�G��z��5��j�����.>�>d#��Q���k��I��m�Iv�و�k6�V�"��őǫZ�fXo�'92r�2~&_Ƿ�[x�o'��A�|AA��z�Y��F����e��E��ͣ���n���_�9���ƽ{�Oi����K���.)^�'��;1�p�§7�5��'��u�v����j>�b7�F��kқ��ޫ�l�'x�Z�~���Z� #���)45A/�)q޸DgʖT.hJ���.O�q����ɻ��ė�Q��Sb�2CL���g<� Γ������aK�EJ_��I���'�M��j���aX��-N윕��5�6�Pcz��3Sd�V��&�|l���ra��U�2���^�B��40,�S�T!���P�I
+��$��nw��9���l��Knٶ2=�0y��wtc+��D?�p��7G����kW]��n��ճ;/��r���{�ݿ+��+�����؋���0�x���mkN���1��z�u@�t�d�u�
+?�hH���"=��D�Z�Nw�+���I�/��Lv�b�h�4��P�j�3)�T��꒶:���~�
+$�T�2�@�br��r
(o�.GS$_����/O�J|W�������0�c�y���+�T�v~v�D����]�ߡ�M��<�G9�F�0u����^����+>��43}Qq�_�K&�-_ӻ�al~�����.n�&q'����e`t�;�_b��+����a28�����'Qkbw���b��"���((�h)Ƞ4M��
��W��B�P,�3R!fia��Ə@���¬���٨����#J�Q	NHpb<2��d���ބ�6�e(�\+1[۬�!�=�R�J�:�j��	޺x����J|n<ɉ;��x&>B��)9K!��\߹�um���!KI��+�R���B*!�	��Ȃ�T��Y݆���BAZ6��@-l����g�v�"ӏ\�u|Dއ��5\|�׷��Њ����޴p_̈́��/�[:s��~���/�?[��]_ugCEIq���;���[f��0�
���?�ha�������խ{��O��@��՝ٽ��8����R3��y���Q5G�`�_��^}��KT0��
+T���X��rQ8b�������8�mVh�zCT���GTO�bf�p'�֏�E~,��as�`�D�o9�C�x����Ox�Z���p�$K��4Y�.t4;���~�3Ų�N끌�HPȲJAPأ��2��$�T"��3��>B��M^|?���6��~'��O���Ԫ��xd^/ġ2t6�i��f���@̉�|����"|��]'�o{�-���=ٷF�:��
�`�lj+\�{ٙ�0i���5�W�󛪞F��9��a��xQ�t�Ih���x�Q�g��َ���4M��+���
+t����S)�qa�����v#�aP
k��c�u�fX��<޸8w�F��&�Qփ�i;ZNH4�%&&Jp�.��Ht�����8ɥ�q��$:F!�n����]�-+����ˀ�G��8��#��䗔x9��;G㞒n�ل=��$��'>����#�y�g�і�r%�4_ ����ۆ�G�vy�TGq��I����rr.�s��&f��՘�F�j�j֩j�b�`��I�@��B��#Dƚ=9��?��|g���I��`�
+>	{-�\�L;��Mo�7=PɌsg}ǁ��O���5X�9���qx�ri���*�z��:����^�3�D�\�<&�D��0���5�<f�-Gd�M�S�l���g�!�����G��p��	.Ϻ)&Kc�0�P�^��r��d��w��o�8�	��|,c��B,��Ϻ!��m}�����y罉�S�����&�&E�Uѹ;�m�?q���G���3�����H�\x��,��K�)�����%�E�e~� 3C��S���$�!�f��y��P����љ�sa�l��+���|��Um;&�_'�(|j�YID�r�-@��a���%ʉ��L��d=��Tճ��P��ge�\� ����ժ�'���X2 �(fcJBJl���8�E�NPO%�FP���	W ����D#_|��#��֏��8��6t��?Y���/�����w>i�z��{��\��@�ճ�>����9V�)aʈ�伦Z�ރW��k��{󌼋�'fY2�..��d�#���t�ن�|x�jq&Ҁ��HY��ay�r�§[rR�R&:�;�:��~̀H�� �L|2��l�0�c*X1b�}>^����3�%�Z�Q|N|Y������xj��;&~P�=R.����@����dU��o��>F�/ ��W[�^����-�jk��\J�}��7Ϸ�ib!v�A͟���a�&�u
O�'༣���v��3�n�zL󾬌U����{�^�x��"��}�f�����?߻8���|$i�
�`ﺭ7�v���Հk'�s�֕0��eq��z�5��ꮳ�Eq�������N{�T��I�ț�Ms�89L��T˲V�^��X=�Vp.�6ߘ���o�F&�DLS����
+jc�
+@]
;���1P�4�T��ڙp����	?�{��;0~��3�x�ū�-\_]}����s�r�|⹽����O�ܾ}+P�J��+��C���{��Y.����&x�fC�x�$8M��t!��h����]8�u�����:n�ӕ:���)�m6�+n�(�'	f���#z��j��y��ռ�̚#8��_V�T%�8NAN�k�z���Rx�	��Ե���H(����EՅU
�"�H�D���o{e���_jZ$��C���K�lj�zu�͓�������}'��+�3�[�my���7�����.|��U��$t�8�S/⣾��b��b�&]��ú=�D@G=/z�T&S�λ��"Z�yc�sJ�q(n,���x�ʹ�����*>����3��p�]S	�9�R
+�Y6��?L�MN��GH����J�M�m4��U�J��JG;5ހVb��F,v��n�?v��ٕ����/.��[��o����kj�D��\�}E�I�l���Uo_sO�����g�<�ܳo�7l߳O;c��3p��—����Cۇv΍S��V��:�����8�����5v:����0a�"a;�dl��� �l�v�S���pHNg5��N�es��!�#.鵝 m�xZ�C,�^����1��A�S;,��Z"�"p��Q�m��@Q�z�\]*I�|!��>w��>w�ꆊ���Ǝ,��_Mx�9�Ν��7�K��=��c�����FF/b�
+JB�8�8J�8jDl_ ��P��#�#�.��6�nɥ�rG�k����Xp/2].��4�O@�������E���7����|�g����-y<��lI��]���qmq��b�0�!)G��B͍���D����rj�#z�t�:��@��x�YDm;�t��2=���m�Pw�bb�m5�vp��)Y�8�~W��i�"�I>-j"\����;��QEEC8�(�1�lmv��T7�QO�����O�	Z��{ߟ��ߵ'�C��k�_��#�uBMת=+�_����2v��9����]g�ԃ3�x��O�?�|��=dΪ��Y�a~�UwM��*��&��M}l����T�>#�p�8W�1��7-�2a����S�S�ճ&b��A�܄������Q��n�J��(Z�Pm�v�X��c��r�[FV6�0.6�Y�1B.gy���
�n��y����H�FеF���C��5�vbT���>p���%�k8p�5�[�)v\\[ہjۇh\�	�b��h�4Zt���UG�%L����)c1��7�̻���־��U;��/�y9Z�;�$Y=pNX���)�=�J�7��S\0C�"�-1>)G�+=!���%q,�@%�L�B��v��@q�s�du�5Aha%Y��ڠ�¾�6�7�k����CZ����-r�
We���Ie�elxl��Ꙛ����!���Њr�8>G�]����VMHSS�Yh��kT4<;ķ�!�)Ԏ��~)�	E'|p���o�dcS�3��J��z���#]�7�t�\�pan!{	{{;{''H,63�>�Ǻ�u\�t5s��ƎЂ�l���Pdy�D#�z�'���<����P)�(�>�|;:�2�7���<8���V$z}`��a�vv(��N�]x��P�F�][��ճC���pH�6�p��Y��c��Q�/p�|p��_�(1]��օSF݃&f���š���ʂv�(��P�2L�B�?_S`*q��g��ut4����_�p'ί���v�-%�g����)�OP)?�W����m������rOp'�~N <DD�
��e@X�I�"[���La=x?˵����wo��;4�Fa��
�4�$��L�E�R�N����"-F$�(	��@�(�4~r-X��� a��Y;�1=D… 6O�����:3O����̰�+؛�T�d�[�W����C�CIOd>��+L��y���KM�g�N�L#�|S��gҁ�0�Lz!�X�K:�~NHL��B3��)f�5`���4Îm6{����Uf��D�eF�;a��,Y��2��6Њ�ї 'V�2��>�9>D��a���Qd�]�Q��Ic��(s�O���B��v�>&8�@��7M1�^��!*�C`����v���
+�p4�iom�5�Y=
�\��u�F���Yk+��*�+�z���f6�����76l���7�<;?��t������}�%O����h	��}���1�d��T���E��d�����$����W,&�����K]��\Ҧ�UL�ʐ�!�&e"8�����e4��BU!��'�
�2DaP���B}�\�<�'�]�8�O�mC��}A��W�zc��}�!����R�{ݪ~�a�jH
���I�6�.`|�AC~�?mʼn�+n�n;z�cr�u�_Ʀ_ոs����.#�-�9��?�V`�F�?f�LHA�#X�s�Z��N~���ڒ��9�L�}�c~�|_���Ǘs�S^k��ݘx���}��.�ެ�pVNJ�{$�B����R������K�T���3��EC�]Q�a,������S_����K_[qtw먎%ߞ�y;�G�p���y���/y~ϭw��m�ذp��Yw����h3;	�gA~�c8��7��ؼ���̍r��U�U��.��6�El�����Y&z���z��}-�
���{ܩ�b<	/���yя��$�����lJЬ/��3�-Ad�/�.�o����tOC�X��ڮJVz�M�PR��S��{m��K9��[�K#�
+�Z���,)m�~�]���j��[jc�T��Ә��;`�:p�C�ڛf�~�e���'���x:��}ꊺ��M���37�O}��ѯL��$3y]���x��n�����f��
+�3��UX€7y��nM`�#���t�K}^�hTb���K�DE|V~�Ó]�|�3�"X��lDvC1���h�$u�MA#O}{����$��Z�ڌ���LY����b7�e����e�%�u����ᗞ�;O��x��9{�T��[;kWs��8��P�}����]7���]�n��;"���G��_Y?��[�O�\��oo����V���c93�۶c��+o;�Θ��,̚ѹ�&��*�$�X��4_f�����$��B2	o��b�d&����b�A���c�i��;�
�Mr�z�h�k�K���׫Cm��y�I.͗Um��q\:並V5��m�����1%nr��6:5��R��Ęޮ���_�. z�~A<9�;f@��˚}���Sr��)Y���i�ڴ�I�F�F�S|M����2�wG�fK��;�zE룰�[�w��Nb�2=��o1�z��J�NՃ�	�\�\�ޯ?`d+�
��z&�O
+XŠg���Ůd�lJ�8��	�/]�@r$w�L��"�j��S�� ��,������9��|���[���Sv�����\���4a��:W��[`�YP��st{��ʢm#͹űC�g��ڑ�_rУr�zv����yGs���~}rJ�o��	g���{�ݲ���Y���]8���m�+��+��[*���ddl�N�|��m����yy���s�͸}�…���W�F� ���)���m��Mw����O�fe��1#�>�b���ћ�����;�'p�H\��Z2DH\��S�4�b�C I��	�*K�$F��]=q�=���6t���ao�w@eu��RO���sdA�d�1tkEۑ�_$��2��bW®��fu'��J�(��f��`E`3iމ�ˢ�w�ms*I0�-@Wk�T������n���>u|�����6lu�"ܢ{�y��tE��Z]�a����9r�e��ux�`v8=v'X��r;=���D��f��9ND��)�.>h1�q�8o��9�U����]]���g�g����z�����H�A�����G�7���ˮ�⼺��b�o:eڪ���/=��?D}�RS���n@ֆT��4x�@ީ�g���e��<�鶤-Go�N�8mO�ߙPw�N�w���HS_ͼ���)���������`�m����=��4F1T�†��k���Ã���IL�(�l����&�k�an"��N$�޴�u�U#Q	`�f����
fZ�.Lp���R�j(K�}O7�K��:*v�![��5E��E/jj�~���y�k��Y07���Ǧ�=Y������|��_Q��B��{�9��x���Yg��l�o5\i�ƽ�{��_�O��t��L�S�/P����,�b�
z���t��n���N*�S[yދL6�]�S�j����m����7x��v�4";iz��ry�Ֆ�8ғƞS:����=��5��Co�D�sa���'�����>۫~h�D���6�����^�4�w���W�+�Z����*�08��+�.8K��+}�Iնk����\l�b���C�6�&fd��I^{�Ѿ�<dIzq�S65��K\�tU��;��խ_���g�:���K�n����T�7cS�n�-����Ö����
�Gޢ�Y�x�)�xG��r[��d2��D�t`y�&�ǬY�!�\3�4^נ���d���
HlN�$�}�!��c�Q��at��d��Q�����c[�ZH�(&E@�x�T���iX��T�C=Ȣ��?t'�4G���.unKW�@�(�"0���n���a��יyA��~t<6��$)=M���K����O���^���e�:��b/�����9�3W6���t�d���K��/6�(M&a�a�1�r�`���h�	2c��u:�u�b��	ßIW-��F�����ɽ9gs@թ��>Jb?1����/5GfO��*�Z�b;�*��$�n��,J�,u�{�ۂ��L��%�7�E�>"{����}����\�SUW��O��""��q��+y�w�wk~���e��!B�={��o�8�[.]��\������ϟ��|o�O��-�K�O@���y�P���u��������$°�:RD�H	T݆Y�G�G�b�ײ��xn��Qn~�����{��g!����F�|	z����	�����A ���P�����
����p=F���.�g����\m�B<����(����,W�F����/ n���w��;��-����eQKo�\�g��`��[�y���]{x��M9���[uI#��FH����
!�V�L�����x�Cȶ!�l���r�!O!��mG(�J���!�BI�%g �燐D(m��D(�3�2��,h/�sAh��򠏂i����s�XK������~)�;���b�j��P)Z�tB���A�`ve�
+�j��9���w���D
�>tj��T,1�m��,r�/c0�1�y��b��Bgl��7�`	�����F��r����\� �r\}&���`r+c0���1�Cf�P摉{&��{-�����`	U��l��x�}�2ЗIx>��+��œ��y���Va��G��`����‚�_�i�x��1��/Ua)�
����5�/n���5Xÿk��`
���_�5�k��
+��]7d�zȷ���`)bT�
����̢x)[�M�/JSb0���l�x&ii��%m^65��L��Va�ڇ�С�?�i��*�T�?��4_Ï����c0����+���e�`������0�_����L۹X���v��`���*�����i�c*����R���Caq��!���K2/Ð��!�
C��0�.�g���
+����&���0h��m�o��C�`�C~�Z#J�﯄x6�-��;�j5�q�^a#�p3��M�:4nF
��iԐzZ+����!W�&��o��ձ�((z�
+�
+B��N���g)��>��-������H6`f����~6��ZlV�]O���Fhu�:��G���_�j�ڢ��<H5C�bTAs��t���=�@n�ڂ���\��cm���jVkg���B�1�S�^�0���ii��.�hIll�Ւ�CWi5ʄ���:Ԓf's \��Põ+U:(ը�ST\m�x�J7ڜ5�.U�ک�Bب淩�m��9�:csnQq���Ֆ���W�8������ͳep���R�M��Fq�ڇ��u�)F~}Z��m��֨iT9�瘠o�T� �O��RԒظ���s��z���w��2��t�k3J���5z�љhs�T��xھ6�F�Y�μU���ꇭzS��N���Po��&��Aj�ڡ5WB�����V�rs��˛��֖��
mMJykG[kG}gskK�2n�Jev�坫��M��:�65f��h�_9��~es��K��<��l���E+5��c5���g�(P�U�
��[�v�k��JuFf��f�W��b���*6�V�Ύ�ƦU�+�֥�9^��E鄲y-͝M�ʜ���&x��1��Ci����uMKgGs������`BG���eʌ�K���,ev�hmzs��֕��3����ZCs�2�~MK#�ZQR�WӺFYU�AY��	z��.mm�T:[����m+��:W�:�!�J� �_��5u�j�C\�A0̶��6��5����qMC'�պ�0�!=@��ҰrM#��20�֖��`s�Ҵj	�=�v��ػZ��ξ�i5�%��4�����(��t6����h�^[׵�l�o��zm��A����l[ө46��h�:˛V�
�P6h�51���a�F^�BMmDgQoxɊ!o����?�7��g�1O1�1=�q���:������Z�����1��Rp�o�}��B��j�
B+��gA�sX��<M��=|���\X�&���%-�����:����o1���b�%��-g��8���ZkX��ߤ�a%8w/+���?��zU��l\�KZT��}�BC�
/���7�:f�Ȇ�O�^q�׿����y<�09�]����=�#���M>�c��]>�B�'�9	���(��,����t��t/V�����xZU��O�b�Q��QZ��O���XO��{�Fi�Z:9���~��54C�O<���B��{	�k����@�7.�|�<�5��P��@X����|=�Aw���r5\��ej����X��w5<��O�a����5lUC�>>�/��|?ǟ��(#�3����L���X���ߞև�
+|�J�/�|e�/b<�2&����gL�a�{"	�C�\.X>�EG�cOF�����e��|�$<
+�`iw���	۝��{�V�$B
+y���SV����苈���_����o_��_��|����^�x�wj����",�ڗ!��;�|�ap������E-Z�(��5�K2����e���2���U@ᄌ��|aߵ��,��<��1�_�/ۧv��u���-H�c�4�,I���7�(���vvvov�v�v
+�G
+�s��9�;E؝ �E�(�&� �DQ�EV$"�N��+v^��ҐUa�Аh��MA]6f*�:g<��u�M]�t�0'��Y���x�e������*M�����BS����c|C
�v����VG��f]G��,���\s}������9ז�ˬc-%�~%���C�[��_��:s�qX���7F��H���4�N�u��Gj��(ПP3��9ʢ���~�b�q�8�j��3��P�l��dN���
+K���?D������h=T&�A��b�^@�d��s*(��8�a���^����#���Kt}4�����	����N�uNhmu��U|>����U�U|j&j��U�bU��d�=1�B�VǨ�1ҞB�G���PE3���ՇE4��|�;嶱�=c�;��a�@�PM�.0�K������dxCY<��h�{s�	�jmdcEY���"�^Zd���8V��<�w�ɐm�>����s
|���y�����gM,�DS�2�L�*����� Tt��&�@^�@�^_�?�efCf)�d����y���86#���"BMh5:����j���+0�
+endstream
+endobj
+
+1293 0 obj
+16846
+endobj
+
+544 0 obj
+<</Type /Font
+/Subtype /TrueType
+/BaseFont /PXAAAG+ArialMT
+/Encoding /MacRomanEncoding
+/FirstChar 32
+/LastChar 255
+/Widths [277 0 0 0 0 0 0 0 0 0 0 0 277 0 277 0 556 556 556 556 556 556 556 556 556 556 277 0 0 0 0 0 1015 0 0 0 722 0 610 777 0 0 500 0 0 0 0 0 666 0 0 0 0 722 0 0 0 0 0 0 0 0 0 0 0 556 556 500 556 556 277 556 556 222 0 500 222 833 556 556 556 0 333 500 277 556 0 0 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
+/FontDescriptor 1294 0 R>>
+endobj
+
+1294 0 obj
+<</Type /FontDescriptor
+/FontName /ArialMT
+/Ascent 905
+/Descent -211
+/ItalicAngle 0
+/StemV 0
+/CapHeight 1467
+/Flags 32
+/FontBBox [-664 -324 2000 1005]
+/FontFile2 1295 0 R>>
+endobj
+
+1295 0 obj
+<</Length 1296 0 R
+/Filter /FlateDecode
+/Length1 27784>>
+stream
+x���y`TE�0^U���������v:�Y:�BDrYh�7	I –	�&��3�����"MTFG���QG\g���F��S��18�{����}i��ܪ�����9�v�0BH���2gqM��_�W�y!l���U����?�>��0en����<�T�)���h�\Þ&B����_WS��?^8��أ0ƀ�Pa.P]�kH(c����&����8'\?��aN
⿞�'�:��fy�b��B�[�ZZR������������
-��tBջh{cs]c�������iu���!,�����	���*�F��X���Lf�,��J3[���������_
+�3P(����������r��7(#$��I������g����?���$_@��dBhڃ��t��/�]{�!ԁ��hz�B�F��f@��h|P�k�w�<�����ף[�ad����h
ZϽw�Gz����	�݉�ė���*Fc�Ԉ����w��?�~�q�w#-r�9�9�R�N�o��q/z���� fi���E��!����y�`t��Gc�)|�D`�:�)v�U�p�x4~zyQ��B�qE����S�s,�QD�� |:���,�).��_D.�����t�?��\�{m��"���J������� ~�4(t�|��X��?�
+�}��Kn���e~d|2�^��F@b7����4�M�#\3R����S������>Ht�4��4���;7�E��7�����J�ߊ����d�
�;�k~7�e
��F�݉�F�b3�'��|�
+o�w��)|F��)d!����5q����3�o�oSlP�!|�;�s��x~|���V/zvv�F����;V`-6�G�<��[��Q���0��w�9��$ D  ��	�fr�5y�����O�=��ҹWĕr�\�j#�
>�y7�����)�+v)�V���(蔷����+�u�tC�M��b����� �.�)/�RX}
|����ۋ��:����!x`f^���r��:��[���(`��+X��xٚ��"2���ύ��4�m��A�&?pJN�9�Í⪸:��[���E�׹���s��+����ϧ�a>�g�K�G�O�O3�)>4�ba��)�K9@9D9A9QY�ܪ<�|SU
��:���-��<��+���H�""~��j��8��›�j�A2˅�d0�.�a���d;�Lscq������+���K��?
+{���\��[�W��cDJ`�?p���:˝�J~'z��`�"Or���(����0z�k«�R���G���q�)�Sp>���#��.*�>B�����r�	ݏk�y�.T�W�O� ي%B�`ï�z~3��D�ݰ���9���U�C�W�]���5��X�i�,7�������FPS|-Z�����C��B�y�n��|>���*3A��>z`(7j��9c�/���x>������AƯ-�'�!L!�h�€A� Ŀ��fğ@��%�{P��`�]�c����c7�F�����Q�$�#�}�f�.�L���v�/��,\QA����ɨ,�%�pwh��lt����f�G�qd_|$��=�&Ɵ���͏/B��Q�;��(#@�(���fTG&�[��X=�a+`Al-�s�<|ꔡrِkJ*X\TX�߿_^�>�����p(#����4���r:�6��l��N�Q�����F�����R4\���ѣ���`
T�����JP5��>Q��u���)CϹ?�)'z�==�(���>�RyP���:���sD�R�v1x,��1Xp �7H���#�(��ʣ#���\^=�ۧ�����E�4Z���E��}�13�8��#H��EE���QWp]A����F'L�^>�T�ɍ��s���(8,j��.h8�&*�*�4R=�
�Cڗ{|�Nͮ��j��53�G��J:�)�:V^p�t	���O�ػ��m.w�K�r��Rt���[4���1�^Y�y$L��X1Y������Q����N����Ӛ�RT��yA5�ƽ9�&������y�.�6O�D�<�ʚ�}V�yҊ�.Yr]��'w�hJ v���t��@]O�Xw
+UL��,�+
+^��H���A��@��
D���n�W��h-P�>�^�YD���QEHJ��A���^]S��B�7���OzX
�Sp4���PQ�����>��:I0�(JP����mM�<@ @	|G��f�E�m��ĵ�f{ڑ����j�r<�b�J[�R-=�W��;��k���=����R>P����D{��`��ӥ���I�VL��*�>��-	E-çs����c���3{:Ӌ�(�c��N�
+���`idT���+5����M���.V�t[r��A���_u}��t�9X0�Sflެ��
X-1��8M���G�T����HS�'*ʆ������U=I��(w��	�n��Ai����5���AIn>D^$/nn,�N1Ng�����-����xA����d�i��D�6M��N0^=��"��2�7��HTRo�`f�*X�J���)�C���"+ЏH�S����6��5h�
tZ���0�J	�\�4��$TVI��;`�ڝ8#⥪KĮR���\�����\ҿ_AQ��*(3(>xj���%�S����u������7¼
+�NB�)M��;�}�ƿ\U�C'�;|��)��M�ʛ���K�S��Y���
+�O�w�;�u�d*d�^�	�h
��t��hʋD"� ;��<����$Б>������j:�Hk���ќ���Ә������D�����1~^���&�&��Z�u�r��u��)�����I��ʅ�9�E���j�
+r��L�ҸQx@y����,y[x[���ݳ���Sc��D��ojA���j%0��{���HdM���2qU8V��TYi�
+��v�M$B0=3l��Lb8���.|cDz��a���抻�^�j��[V]WE��<��Y�c�X�=<������,��~�s@��v�W�8Yo*\ȯ![Ƀ*���� �Z�u�԰�k�������Q�uƿ�M��^FP#(`YvQr�h����)d��P��D?���#
+��0.��32N�����DpQ:�X��Q�M%?�*�AY�\@~��Ɣ������<d���Q'gѽ��娄���+I^R�D��b��)+�L�RV�"@>��GY�A;�|���5@�OGW��$Gd�8�_4"�A���<E�S(������'�)�	uf3a�j����9/k�2�g�ut�v���VK��O�a�f��L磳������#�c��+�W��ku��)���Z�J�J�����{.�uǴ�Y�G�i�O~��_����iD� ����^�[�us���^N�;���Ǜ��;� �#&:M��
�6�u|��E�@Yg:PnsYCxr�d ?޺/�엀�#��%����Ҳ��&3�,d
}#��≄�B)	��pUsee��(*�g�������J1q�{�]�|�����?�qy��/>:ӷg���9�o9��܅�zx����_�����7��N�����Dpe�pZ�S��wz�����j�F�ѧ�d�|^ޗ�Ud�z�Ӆ�Y)�K�0�"�Σ��T� sIY��.�_������D$�&J�,�ޮ/�o����M�<�$�"q��־T�ºA��z��wz�B������0/�d�aG0
��qQ�Ng㝇���E�˙�J,Son�%5HDrRN�ڔ-a�����0�_z�����qv���7�a<!ظ�'m�ۉ�ٗRX��Tg]�T%�V�ʜp�Pz&�	�
+i�M��b;�Y�p��0ECJD%�Q0=<����5{]]0�jֶtnXP�������'έ�u[쳷_��ۜn�޺j���|��[׭��2��v��}}��u<��'�h7��Qq���������t�u��c�1�_�x�N��h9%ҁ���x+����WrG���c|��A<]�I
�I�>�Ph�4�&�	5���_�JӉ�e�RN*�E�mFB�I��""�p��L���Az9`��[��	ڏ)�KT�����L��J/��J(�KJ6��� 2F��
��!���n.��-(����p|ZZ)��}d�N֖��&���p�.�e��m+�4)��[�ę0��{���^~�#V�g��;x���v�P�۽�����c�%$�°?=��4>��k��Bk�y�Wo�H��Y`RFu��G�D�'@2�`d���5��½"ms�}�'-/��ֽ�Q�-NC��S�S��=Ɓt���l��4���`ԃ���ٰ�@�l��E=g��T|@��]�i�� ����B�dB���):�3%$�m��(.BF|/0��vÁ_����TQ�d�m��	�…���P1��tn�j��K��@^�ͪK <�yۃ�n�س��-Y��"�v?7~��DZ���K��m��;N<�P��2;��3�e3c��������6(g���r���������d�d=����(�}V�ƇQH����D�C�t0��`�#in�z���%���U��}���l�!�0O�r��Z�s�ԪZ�]���}[��ݤ�(�32!L
2�G��kP҆L)(h���r���:=��Y����ԩ5cPe�����"F"H)���s�"��j(�|�D��9f9k��N�v:���d�$�4�Į"&5�t��$Ũ�PmW���Lf�	J����
+�#�XLU��")��~g��
�:�=:����3�>�]����y��x�]���O�
���7�˿ͩ�}���]��
+�
+�~a׋Wޯz�����Ԁ��+�Dz�(N�1���W�.�R؏`^�ӷp�(ώh�����?�x��,•Aр׀��2$�xxM�c/u�/SkL�ӻ�T�8��Y-E��8A`6�p�ĺ*q������l�7f������~�a�Mt:P�#(��:����:�02�o_s�'(�|f�O���F���̋���L�S�X����F���T/��}���v��m�}m?yW�"���*)��H�cR��<cJ�'�u�\��i%���ic���v���R��\8/��T�T\d���k�׆?�}�O��W��xߪj�6��W:�@��~�j�v�n��N�릗-�t��v�䦅$�Ѣ����˖t��D:XƎ���[�����̓�H�Q�@v�E#1v��;[���B{{F��ǥ��6b�ֿǥ��)��{�b���VRb���jnBM��8.*L�s)K�A���KZz�^и�cǿX�x㝱���|��
篿}�M���6y��=��y��d?�`��s;�ޟ�{b��8�������n�5g�+���?�v�S�R�,�Ih�g����������JO�����ɢu�IM��19M�m��h��8���&`��H�^�'M:5�)VND���g�jS��}�=�D�E�tv�9��41.��^=�Ϧ��=�\8�=�.o�_��-�/v��t��mq��{Ⱦ�}�����d����}���]+�Lz����I��|�
��!�S�7&$Tr]��0.AZ�Ȧ���m�TOwP5m��%�l"�m�Wz[����z��)����pUe�B�
+3���3�M�ec�26�K�{�j&��0�8����|yk��+���3g�k�k]޾{��x��rɘ5�4��b�;��P��ױOc��=����������9��>̢;��P A�&B)ϕb�אR�k��NU2J�D�'x�L,E6ҡS�Nq��N]y��)�!6Q���-4
+]������dBE�C��Z��Ȍ�׎�6Ű2�`e�:'-�]�P2<4�Y�vC`Z��k+��9�Bs���W�5g�w�soI�#�1�2���L��1��v��h��#d4�*ȑ��8��ZJ��i���a<e�#�Fg�X�In���!(üØ�Ol���0ލ<䑎��9�_���Y-�"���$Β�]��(���}�.�g���C/�Nʪ.�y��
+u�B��T9� ����Kбx����d�yb���)��@�`zFF&�.6�@>�6�YJ�alM�p����9�rW�c_7_�HI��m�촢i�럎�9�El�[o�_}�<{����bO������O�]�_��w�����S>ժ��o�2pU��5r����濳v;.�qC�o�k�=��L���O��gߋ����#���ԟ]���Ͽw�}l��k��y-���'s2]x��_���M�
��'�[� ����촏�<ɏ���i>��I�������\U�DO;���ڜ��x6vV��i�Ģ6R2ds��$�5?t��Mg����'kXЦ�7x��' S�J:����B�y�*A�P�*^p9�N"h5:�^$�[�;'x8G��
�9U���kLfS$�kqU�)��;�`4	��I,��#���g�R��2n�ݧ���ᒻ׿|����퉽�8lK3;v�ē����=����'���`נ����G5�S�
+�J��W�8�����w�%ĭ���-�dm"nɂ���X
+]S��Pt��X4|�S��	��j�R��vk���{���$�=AqxOlО���O�o���n��c#ՙ�F����0;H���ڔ�0>��pf(C�8�Wf5s3/����u��<�(N(�x����-g��%
ְ�L�
+Ϲ!��ٱb���~`����1�J�u��/���0�z�n���	�����aU�CN}Z�ٍ��t�Z$%\�+B��WXM��ԁ��� C̨�s�T,���(��f(
+����H�3
+�y�Cٗ���S�9&nY�5vf�;������c|Oxo`����/����o�8��=���7��7��6n����~�mc'��i���wm5���(������nY�#�V�Tؤ�dԌ
+ZJ�N억�ϨV�5UXK�l�Lڔ��M���*��9�*ɂ%�l�`���F,���/R���$�U�V&�K�jJeW)5ϻ�"eT&�E�sCƒ�*�\� ���n}���ܵjx�-��W\�'|��:|7�S���]έ3-��
+��z�x������0 �3!9�JC7�b1wU/�ܒ�?�S�?��M�\��S@��&ƌc�zD�)!�L���P ��	��A�����/c��6ᛏ>R5������s���Gb���px˚����4~��/�`E�ʚ�q:?]����Si�[l���`�H�:�2��όJ"&8);�5��a��+@bR���^�MR%ٱd�`'��F{����ر;������4)tizХ��8������kM�mpeo�jD7�c�1�0� 	���X��W�X���?�~h|qԞ�oT����ؕ����Ϲ�Wڏ��"�RN�.��几,TL�ȹj�:ǥw�d�srJ�lŞA9��T�r��s��m�o�~���n�-+������p=�u�u$��t�_l�g�Fر�2��n�l���yPE�S)�w���ܜ��$�Z~t�4Ued��>�L�Q���{��Sq��b^F�#?`u��n�&��<C�a�a�!nPl7�5|3{&eHI����ɀ������`�r�N��A�V�W�h'7���LM���f׈5H`�
+dP>��Q �<�]���͠��{j-�.�M�W]3:�
�!S��Z)�/�7�(���` S��{� ��0���u�����8�چ�!gz^�1�@�B�@ݩ��^�I�#0wX`(�v����{=��-Z&�b!=�U���c�S"� p�S�LH�QS�4���V�wp�����B��`�����9Ai 	�:q����=:�et�³�pA��5+Ң�%gn���Q�H?�u�>�03q��G�i�M���qk�Y
zwFH���5�MΦ;*���.����k����b�ؼ��7���&��
��~�z�4�M�
V��"E�BQ���ߟ�-��6����A�R{)8Mc�U�*�tc��F��"�|���q��������[����룴����%)�y�~�2��c����8��
���m^ ���Xc��Ό3Z,jem��M�'l<-�Q�3y�\N�"S�H������iBy ��SۊM�1�R-�B��xށ��"�������eZLi��0c�T6SV��U��w��XW;�;�!b�S`�oT�U��rE3����*�R������5�����e.�`z&gu����<�Ѽo��&9���G�©w/{�wK�=�8�����[O�ľ���[|߱�w�z��˧@�O��u��r�ɘg�a��XFP#}����*�^^�
6���^�v�d^�R��W2?����������У�:���wL�LvT[��!���?.>�֩�.�R�-P,�5���O��j�tv��G�3��26�9##��袪aY��t]��hԢ��腥gTL?�{`ڈc���$3�f4q3�\�e�Vb��LI��I����L�*�{
+O$�Z�JB����/6����ʮ�K����g*��.�?J6�ě*�#�L:l��O�7W�/��g�ƾm���=��u������-��w<w�a�3��ݻӳp�Ko����	4;Ǭ�4<U~\Cx}H_��WY��ד)�I���y�VQ��c�����x���c��֯�p}�$���G�T\+�Tv�R����"E�
+R�i��{�f�~��c�S���A�6Π� �Z�	�HrZg��C�xƄE�l�6��@4)O$�d��cb�U�@9���Č�q��b�D��=����R�9���2��)��+9�����J_��ر�d����+��KҪ����-t�U�����'9k�1+����ý�n�N�yk�7o��/o����e��u�����c�1�y�Pb�a$1�~�Ͼ~�Ҭ����4�,;��k#S�*E�z���[�hP�iU6z
+�m O�P������*~�^v��̓\��C�c�C��3]��5����ra��2�����;��8�׸M�!Q�=^�&OQ�Mi�� 
�w��^H�C�é��*}ꁝ>ee�iufNaT��n?\��i)�Ǭ��b�R��)LQJ�E)/�TB���F��To�X�}��H�rS�y�
'd2�U��T��%_|�'hsJ�DT��LVe�Yn8��;܍�s�<�y�+l��[؀�|�i_?gK�Y2Q7p���v�i��:���g�>�}/J{���n>�	�" a����}V56��\�\��������z�[������x�G��_���s:�W�m$b��4ۭ��ȼ#�#�܃�#���X�^$�x���v�TL\��Y������t*8(7�"|�t�I�v� ����bV1{��s����(�.c
rF"�#�Ā>B��d���UE��R�B�)�ZEp䔂
+,$Qm� �`�`p>s֮����S������>��F���>'m߾��m٘�����F�>�=��ia���ͿՌ�����\��a��� 4�� Wk�
+k�6d�-�
+�4WZ�6l�
�hX�ӎ�NSN�������f����9&s[�\����ܑڑ���)�)���9�9�չm�g3?|�*���N��#�kQ��D�P?v����������^�QS���i춂P�&�t�q`�!;�m>PN��2��`j�ѣ�L�чd����Z���C��ZsP��:��ՈC(ݟq�x�x�7�~c�q<tLb�nJ[c:{pü��_#�mFW$�5@�[d\/�v�K����p�>[��_H89Mp(9h@�����0�s���C��	�ܽ��᭫79
xY���K�|�ѕOԽ���_<���U���\�k�{b(�vFq�\��oy��ʂ�N/�����c����K�{܈G�d�5����(d�o0�:�q��a=Ϫ9\��Ig�r
+��^�Ҫ��Bj�`@a\������1v����Xn�$PS��Ă}̶S�i?��� ��JI��{�JÃ���A��YG�¨���4�wأ����k�ɫ,�.ҷZ%���g�yҕ�Av0)M��*:5�SN|�D��%a&�8ۨ	��x�fWw)u)zY�����`	N���A2:֫@.�
+�E �8R���v�)hbdl���_�lE�҅�,���{��{ٹ���w��>2�	M,rJ�Q=��`�z�z�:�>�>���V"�_ݨnSoOV�W���l,%O8��݂��x��)����G���y^8�_�	�%�\�|�V&S���o����3�Ƨ4O�p�3�
+�����9��K�� �)vD$�U57E���ʦ����O�h��?��|	{澃=kI��6�0M�������,pj]�@}	fH��Q����7��IĈd	��	�o�,TSgJ��UX��j�W�B�z�	}4�57qK5g���
+aeHU"T����+�Ja��R��_�xP����m���[�{�ͬ�(8�'��T�Up�V�BJ��T
+χ�B���ax&��$g"
߉��Z��(B��^$f3WW���6�H|"���x����x\d's��23Ngf3b&8r��F�����bK���#�2��^b�M��@�R��d�"���N��RT��J9�'�[�W��_��#j��T<�T�x�G֨s�JԪ��R ��i%P��.�b_ �FXx`�H��$ď�J��������],�ұb�6qs�Č�(����j�٬�R��]�۝����$��ʄ�P�K\�q+��S���c�v�Q�rGc˺k�e�ʗ�AV�d�
+&�����ٻ���e���2=�x�4jը�+�+�)��]Tp~E��MW�4�K(2:Sh68��#|�)�[�}��VK���N���ёM��HeRF�8�j�BJC$TL�iԜ�����Cq���ɳB�mįз�O�U��� A��c���������xKqY"�T;=���>�`�G�A�KԜ	�m�!r8܆�66��3q2�����gbeώ�{�t�&���OX ʔ��R/%i��*Y�m�`��3��
�/՚�pvx��顲�!���IE�<t<;"�>�0�u�Q��������h�'O�+)[�leGN���Hf�:����Q��T��B��D��\t�+��Ix�`$��eBlr�~�a�Y-a����f�-u %Mt��{����h`��{P;�X��~�-'yjp��_wL��v�wܬ���=؝I~�h֠{゚�/_>᡻��M������j٢��%v�q�Z.r�-OUn)0�
+? �q�wƝ����v3�X��5z�ΐ�d����ZfUh�U���*�L���0�*�̪����j�Q��2S�Zf�h1�ӎsR�sS�y�I�;�Q�q'��H���d�r�ɔ|�����g����a�'%�l���2��^��)�Č��j#�I)�7ʺ~�6�I�Qi�N���{�QcN�>~j�Z�Q9��E⍏.}�z�Qӑ�pt˓|����c�Ww��
K�����G>r&PQ�\x�A{7�B�����"�B!k0+5.�(a�j�P��'ԫT�� � {��\�0W�˝33Փ�*s�}�s�b��V\l^l�uބmjA��������A���S�i�4/�4�ʰfx���al��y�_ɂɀW*�Ȁ�x�כ�PJKF���#����!�t������2��@�;3gSC^F_�*'�����!��ꀠ�n�:�Bz(�s�媪^�L}���5豥�����������D�X�kx(�R^o�����=l��w��uj߸�}����Ă3�Z����?n�>��������N‚6����PЌ|x�|�N�#^#V�|���_����m�i���m�j�c��:�u�J�
��������zq�c����}���7|�|祸d�1b+��#��������D���ٽ4D,ؽ-2�2�h���5՚6
/1Jr�A�'��=;r���/;����b
� {�Ԋ-��B�#é���+ ,^���0{`*���������p* ��p0��JzG�-)�j�Y�K=�&��6>>����,Xz��[���X���'[[����o�8qK���b?�1fP����N���k'�Ju�zŗ��&��<8ςE�B~8?��˷�ڤR��z�I�G�
+k�F��M�U�[H��?�J=V�w���J�_uv%�%��99�<�Ŀ�KĪK��=����K�H|u�a�	��f�EQ��T��G�ԗ�p�a��h���M�=�9�����M����g�>�B?�!�̧[���S�Ș�^��J}�z]���s_��j����W���C�!S	��9S5S=S3S;S7S�@�@�@�@�@�@���4f�323�d��TjkõY��֌��_i�ݓu�����=��x�������͓��) #d%��d
+S@F
+HV6�Jf�2C:
��6^�7�M�!�\�u��ƻf���N����jp�s�~�Vq=��_��l��E,c"�3�R`�������DT�`*ĸ�̴Ei$�kS�z���$��}"[(�yo_�ߍ�.��,̧���3�S�r��Ź$z�K�w����bDW'��]������9tzGN�v9�w
+|��G�q���9�����IY~[>ɧ���LXV���A�P�.@bo��EHF&�F�<���5�<��;��In�ϥ(W�d���ilR�闤D(��%&F"M����/�l!B����&R���&F���L�sZ���*��a�h-"'��%Rg)=X�2�.����:U�ƃ�2�!�{�_L�'z���Q_'�Y�v-ꥠ�G]��"~f8�/)*P�PE=�7h���u�bJe���o^��(���?t`�ݓW??�յԯZ`��y��Z�˫O����.l�qM�ʿv��Q+����7�sN�9�8�M�h2
+���9c���P9͈Mr"z������>.�ͅ��5�CvQ1j���F1�c�9��q��\]^�lT�)�)yg�eTy\yF)(�@u�2q,0�k��Y������n'l���OODH	�Ey�,@N<`�ܟ�C��ݥ�K��iDw)U��U�NB$�H<���VS1�
+{/���1���[���K$˷s�8��Q2gV.�ݹ��Wcs�̓]v��Z�i|D"Y��q��l-�Xp��b�a�]��hB���A
W7���v�Y���񽃩oG�%�&C������6j	�)>�|܁����F����4�w��w�Bꞃ�~STR�Q�W������98��=
�����y�fV������\W9�4����.� �Yki�K"7/�F=/����<H�2y5xsr���&�e���"��^,��V�u�c�Em�ִd�Ļw<�1z���rO��;���8y�&R��Y�N 6������&���i�FN�y]F��,��(ie�dd��ʋ��w;O�SKv�1���7z��*��ޒ,�4�^
'�e#1JY�
+E�)uj�]�4gj3u����"Ã&m�9�2�^i��T�����z�
+a�~�i�u�m�~�i�y��v��]ڣ��a��O�����q�Ϝ���-Z��7�0�3rFW���������hԉ&�Y�8��b	�5V�0�&]H���Ec�/�h:��^��=�%�NRv�����d��-3�f2�|�L̝x�A#NG�
mbؒ%]?�x7A��؟gܐ���
+$���*�����)^��߲�r;�.!'F�i@J�; E���� ���NTD
�+�Ή3�A��gH��/(��yf�p��D�^\b�Ep�VbJ���P%�A�TED��D,>��r����/p��X疎v��
+ml��G����:b��f�[5�06o����YhL㳺\�v�2���?�V9��>�B��!���E�(�Kg��� �U���W`*
+�T���Q���d�yİY��oT�u�G?�d��߸퇽��D�������� W��C�E���V�W���(�>���t�oAS!��T
+i$w�n,�H��5�=���+��#�K(A�y����#P��\i�M�r$�
+���0H�+h�m��6�)���AAK�f�C[�π������m4��D_|!n h�v%B��i~��nBz;BƧ2A?� ���l�"d���9��"�{����o��� ��5B���3/!���L��>���7�|����Fh��e�u
^��5@��Z�;y��5*E�EJ01D���!���Ӑ���� B͎c�Z�r��Mî(L��&a݈nM�<�9��ȇ�H�2`UV��؞�U�>���h3Iͥ'O��=|Q�(����>	�T,I��S,M�<�y<	+�Q�;	п3	+Q��XV!��M�jT.�����
+�̥S���C��,�V��&�����J`���PeO€CU[�6'a���$8T]N€C5J€C�/	չIp��$	5�������u�c���M?��:V?��73X�k���`�f�[Y�Glc�<�`;�?�`��e{X�7���\`������_ap�
�a���*�~C��l.C>�u��!f{1\�v����g�@S�|T�XԀ�@jE+P#�W��Ӽ��Y���2-���&A�<�����:(��2�k��P����E�mZ
+P
��|�A�zJ?�;$��ْ�_BE0r?��,�́�ho@sa��^c��;������7��{�l?5�Z��ka��l5����?�u	1q�T���+�)	M��]%f^�yl��=��D��6�f��uճ�}��+��~Sz���Ml���z<�u.�1m�èӀf'�2��̇J��u�Lͬ���p2�KَԐ�%h Р��Fb�]�R�?	%h0�����5@^���|+z0%AM3[SkGK.�5l�F6�b���g�1RY��璞U$�H���W�F�s���9l�>nb���=$�i�90�R��Z&Q?��c���6��g'���c/�����F���}3�-S��K;���W�kp/ѝ$����K�%?��Z������I��	5WQ�.))?���V跔�IW�����О����C}wK���
��̯��6,ih]�X'
ohnlh�i�oX�W�h�4�~���iR]K]�ھC��kM���tQMs�A�RJ��V���KE}�������inhi�ۚ�z�n웿�Ս����E��Z�kj��4/���ǵI�K�Vh������V��Z�Z7/��kh���Y�ӰtIks}]K��4HO���h���~�<i�ܹ�s�>Ҥ��0˸�9�մ�Jj`�9�5�䚥KjaR�����
K��5+��-u�"��܆%�Rk�T[�Ҹ`QRcs=T΁�:(kZ�ƺ����t�W��,�9��!�����j�j��i���i>,��P�/��hi-�DJ-�aɢRV}�T�x6�ݫ���rvֽ����	�N�5��(�fi�[Lq�\��6ܴdQCM��H�Il��C�����K[�ںe��g~ݢƫ1�tp��&5 �X\����s��Sm��J"��Z�!n�<w�!�0���Z�k��U�V��Z��V�U��'����/�}xU�E0No����s�Y�������
+~
�%WͰ��O���|�bB���(��!F[�뚓z����D,�3������!4���v����yH��n���q�\Z�`�����m�ơ}8W�c�y����A��,�~�Z�|
�6H{!�t���U���i;��K��_�ɹ�^�9�
+R����Ai����CX?Z��i
�c�.��s��S�kw������˚���*v����D9vb�qm�۠D������efn�4���h���j��I��7B��	d���Ά��'$kdμ?#����#�����nכ�jH�|���O�$]�ҵ�`��>�:�w��1H�;|>$�5�<�9�e��C:�4�� 	�<|����2��Q�2H� m�t�W���}�E�7?b9�� �7�E�l�=ȍ�,@g�YX���%���K�Ppx��ٞ�I���}6pT(
u�KGCP����������N��~)��1�yE!Xɛ0�H�4R5�FH@o�6j��
�HQH�e���$r���F� ɐ&@R�3�0M'9��j'"� `��#+_'/��5�V�
+�ʓ��v�
�B;�{D(E(�]A^؟a�LJ����!σTi<�Y��B�1��^�7� G�I����sV>�U!y�_�ht
@�m������A��Y��{��Yx��h^� ��-�f����,<c@4��d���22���bi���X�	�t`�&ē��}�ӵ��='0������mGq�$��(n��m�ඵ���݈�"�͋�|�M�mG�@@E�;��,����$nۃ�Zp[��p[n�p��I�������R���!�}�$�
��@'��4�8����������2}NY�������Kp�K@���9H<�%`��`��`�#�e�fA:�+HqH�N��oe��<He�fAZ�+H[�W�jH.q/[X^r���y	>�?i���&zň8����F��H1���٤2ub��o��}�G�jrيҀے������������P��x�:\��8�@�®��WE�B�%OC�����ù���@�:���{������������R'���oA���ozo���ש����N�a�u=���s�u]
��o��A�j�(�B/k�K4��W��?)<�?���[`̃�2���D�"z�A?XB$��b��lҠ�
8��ϗs��)�+�+(�ʀүLSz�V�Y%�*�J�R��"*��үXDh��*��5Os��"�9I<�!XE�u(j�*H��a�"z|��-E/Ovb��QEp��+PŔaс��Ne|R�8RUN�a�>�彩�(�ԉє�8N��{�o�B����e��;++�Ӿ��Yfb*9���d��ѭ�*8-z_���ѧ�*����UVDE\��_,q����qC���h=7dDeeE'���!	������S��L�!I�K�{(�/�C�Z@?��X��Z�����גQ>b_F��P���z�9�>��coC'Y���6�':�u�z���˺`7�.^�f]���%/����.���8�So���|���<�����
�D����sf����A��ޱl�3�6[��ͩL�b�z�������V�FD�GH����晴ypp�>4�|��}3���������GM(,�j��{�*���M��ҹF�Bs1mE�*�sӹFɣ�\������ThX��r?�j�_�=��av�qc���-��`��B�HeT�C�M}��J�@�h�����&�-���xW�I�jSp��.mY����#�Z��Z�R�'�H�����\3����h��h����)�P[M����j�;���}�r�丞����֩�Ɏ�N��ɒ=�n#G�cه[QK%�UL!�
+�$��0�R�xh��
��nI��\v$�|��=�R��$��Ek�L�	���P��G���X+��/mhL�
+endstream
+endobj
+
+1296 0 obj
+17582
+endobj
+
+576 0 obj
+<</Type /Font
+/Subtype /TrueType
+/BaseFont /PXAAAH+FontAwesome
+/FirstChar 1
+/LastChar 11
+/Widths [928 928 857 857 1000 1000 857 1142 857 857 1000]
+/FontDescriptor 1297 0 R
+/ToUnicode 1298 0 R>>
+endobj
+
+1297 0 obj
+<</Type /FontDescriptor
+/FontName /FontAwesome
+/Ascent 857
+/Descent -142
+/ItalicAngle 0
+/StemV 0
+/CapHeight 0
+/Flags 4
+/FontBBox [0 -142 1286 857]
+/FontFile2 1299 0 R>>
+endobj
+
+1298 0 obj
+<</Length 1300 0 R
+/Filter /FlateDecode>>
+stream
+x�]��j�0�ໟ���P�m�B��B�a��?JjXl�8���l5t�C§H2��.�KkM��#8�A���:��栀J�%��ڨ�F�V�����n�"����k�>Sr�a��g�$<�4c���t)�f�`iA��j��A�¿�(öm�S��e�z�*��Ę߇QN�䅂 ���.����kC��9���^�DH�<��?7�%z_e����GW��ȳ+�i�}������<�-�Z��n�C���q�F{Psi�v�{�����3��܅�/��%
+endstream
+endobj
+
+1300 0 obj
+274
+endobj
+
+1299 0 obj
+<</Length 1301 0 R
+/Filter /FlateDecode
+/Length1 3804>>
+stream
+x��VMl�~�K��G�����RekI�+�iE��HU�����F���0cJZYB$� i+�zQM�&Fa�F�:A�EF� ���%i��P>H(�^Z�-P���U��.e�M���%����̛y3;@��&�믍�ʲ���
+��O͜���������N���kw��
+�8&3��f�ӄ���'�fk/6ay�fJ��d�e�ӳ���p�k���׊�Y�?��O�O��[.Uk�cN��%@��5�@y�w�����������0<��٘㥘�L�V��-���jY�U6�E�`�X�a;��$���VS�V��BG,��H�̞XDM��XJ%�H�x'ѳ(d=)u�K�AO�z��y��k5����E~�Jߕ�Wɯ�z���v+'gd+�.I;	�Zu;�K�Z�O4��Q��^�sҎ�VNQH}�NRo��V+��R�ϹMH�AL�#��"jDm&BG�SG��E
+�(��'�~�ك݊�eS/�v���浹��ܵks|�?���M�}^��k��|~��
�9_@�\�mt0j�D�El�Ƚ�M1��E[}�Z��P�򃶺@e�Cn�n���)D��*�������A��A7�l�I�O)͜�J��^"u؈�ó�FO*�
+q.-����r�<)�zPFp�R�ؔ�L��3��������)������B���:kd��#�?�<xii��~����%7l ��+�N*�-�-��D
+��@=#�9���	�|R8�QPq?n����
+*���@X!��l���M.���YCh�=��f���F�d�e$��:�,9@R�4Da�	����5:�K{��+m��A�7���h���\ _4�~����@��`�����o��w��ݛ�H���\tb���i�V�{���T&,��t&Eb=1�R5���~c�-z�_���y�M��
+�m������y��]抵��B���21ek���,��{V����)�a�������P���E���+T�řV���L�>SpSJ�ߍ�l*>K��㵃��z�CuE���f���N�囹D�t=E��h��N�a;��(�>����i9!���������rn��,��� ��p�D�t��cW#�m'Γo�Ay�L��x��,X&n��ryش)n#G��?w.o�8�1�������u����F
eiIg�ؤ���
��
5�C��x���/�b�[>b�Zu�\���g��J���3r	�]r�xZ���[::Z�7${/oSQ,TЭYFX�A���v�7�.Md�D�FQ}2�Rq�8l:�)����ܒ��u�zki�\�/�Gd��-5�%��^?t�����]�Đ���NlL�Æ��e��s�q�$!�N�f�]&���n�d1ΝB4��NQ�2l�#�P������9r���{�M�M�&E\ݺpcq������.��-��˶�sg��Ǐ/�	�Y�as�S%T�
+7�n1�Wle��
{:vgq�/����/4��;�E�9��痩F���^v�~��[R�@/dؿ�m�~>M�	e��_u:�~q���`��j���|�?�u�@����G#���审�Ʉ��{[��k��7��=,�1_���%���~x��.������{v���:�
29�`�s�9����䲃���~�`?l���� l�p��"�g+RL@�8?zp��<��v�J8�!�~�X@��*9�`D���B�[p�vr�88�xO����B��LA
o���g�@��"L`�)��!��
`�&�*�l
l�����K峕�SS5�`ጡ=S(N��R�vg�����uU��Q5*g�	TB{�8��̱�J0�-����9�Z�Ef%��4ZP��`�8uz�P��G�Y�#�=�������<ÈG����ώ�;::t���#�_m�c̫*zK�j�F߲���8fT�ӥ����v�bN~�ɇ�]���� N��4�+1:�z�,UTgQðIl+�t&�����kL�t���E�PZc�a8�RĖr��f����Q���I���JZm����j�ר㓥
+�D�Z�0a�*/j�Z�2=v�
)�j��F�It�Y�o��Դ��|Y-��Z�ƥ�xr���#sv3�`�V+�%�Լ�=�t��!����Rd�O��9�3�d�j$���������
+endstream
+endobj
+
+1301 0 obj
+2146
+endobj
+
+577 0 obj
+<</Type /Font
+/Subtype /TrueType
+/BaseFont /PXAAAI+Menlo-Regular
+/FirstChar 1
+/LastChar 95
+/Widths [602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602]
+/FontDescriptor 1302 0 R
+/ToUnicode 1303 0 R>>
+endobj
+
+1302 0 obj
+<</Type /FontDescriptor
+/FontName /Menlo-Regular
+/Ascent 928
+/Descent -235
+/ItalicAngle 0
+/StemV 0
+/CapHeight 1493
+/Flags 5
+/FontBBox [-558 -374 717 1041]
+/FontFile2 1304 0 R>>
+endobj
+
+1303 0 obj
+<</Length 1305 0 R
+/Filter /FlateDecode>>
+stream
+x�]�͊�0�ὯB��b��s�4�(S��M{�-g�m�"w_��)t��
+I�A�S>��~q�ylNyq]?�s��os��9_�����}������ZOE�^>�oK��n,�{W�\7o�|w���?����s?\����Ӻ>�Mӟ|����ppm��}��o�5�r��xl��~�?�w���u����ӌm�Mu��z��b_U�y9yh������浞ף~=ZU�:��-�V������6tbG�;�w�'t�ޡ��ݰ��ݠ3�Ew켶���~���/�{�~O�����=���_�����~���/�{�~O�����=���_��+́~�9Я0��@���W��
+s�_a�+́~�9Я0��@���W�����W���o����o����o����o����o0���op
+���op
+��9鏛�����T�#�J�S�p*�N�?©�G���aV�#�Y��+�~�?¯�G����ҟ�W��F���O��	~�?�o�'����џ�7��F���O��	~�?�o�'�
�P�͓ٛ��waJ���	�c�5o󼎼m�n�S���$��	���_
+�S|
+endstream
+endobj
+
+1305 0 obj
+601
+endobj
+
+1304 0 obj
+<</Length 1306 0 R
+/Filter /FlateDecode
+/Length1 19372>>
+stream
+x��|y\TG�oխ����4k/�
(;��DQ���
+*b��1n��р��'1J�c��e�QL\��Q��c��EC���I�w�ކ`&��}������ٞ�u�V�:u�:�:ua���"�bj����cˠ�}��e����H:(��8}'f�� ��½}������a��Jy�`���_�_��^��@��-n
+����.E�|8)c��O������NF���z_��?M^2W4i�L���9����U��L�/E���-����J4�~�������о_B��0b�a#BXd��QR�5Z��`4�->�~�ր����P���suq�GDv�����=9%�GZzό^��x�f>үր�ك:���#F��ؘ�9���Oț�8��O:-S���r�n�:>
�<��v
�4^�Byj��U�G�!��T(5�osx'�V��/+�7h!9���"���i~��#'�����i��c�4�l�E�E�:p\}�\������~���g3zC�I�
+俌��rtm宣qP>���<�>p3���^�thw�mC��*Ԍ��k��U�����`MA;�fa+�\��[��P�A��\0
+��]�0N������eh4�@� q���먒Cd���͢/��\�R��K�I�y�2n1?	ס��s
+�� �y���F
+Äa0��P�C��T�E����o�(�g�>�d?mE;����I2�^��	���O���TY8��vp�q9H{�YL��T�#T����>�I��|�!(vC�-Ix�a�0�s���zψlj\gL��n&�Q����K
�Ⴥ�z!���U���u�?=�=xx��[����?�T�ʁ"��j���O~�z���7{R�cj�c�i�+}�iZzLRE���9�xcn~Pր��@*D����G��~�x�h����J�hGH�52Ǖ�X�X���ޑ�(��r�Wx0m}n�`TN!|��q�{r�;��rsY�:Ƈ����3�f��A4�Gvԓ��9#r�K��{��;����G������ͅV�IẼ0�+�d6t��I�*�ף���;���t����0�}:�
+�~_��V4 �#q�o����G�.g0�p9]N�3��mfS�$u���ϡZ�/"�$d?�x��D���U��.�$ Ӆ�-�>f���4;x�:��~E�$�/?������ֈh���Fl>�Si�
+<�d��5 ׀�%�
+�
+�'�$3qi���Ʌ��{�φ%�������'�5P�?:L^&�����?pS��25 �,�	��
+qJ�<�lv�(\f�/��/Dm�.��W�_�`dG���~gI5H+��%^�:��:�P�B����UW?o+\%�0����ևz��΂�$�'�$�9er�����N���$q���3�v�m�͔{�JAm����(�]�л8n��3�p�>����j����w0���j�N���>	j���q�j�H��P�'M�I]x�o�����]6�#+m��>q��i3�bU���b���0�DجF"ś.X3Z���-��k7Pܻ�M7��4�|��M�us��bJ����8�{x�ـ�|�ad�8"ن��X�NIMN�T�m�@��}s������E����S�OO=q�����ѝ�{a���^?����Ȃ����_�����?�c�خ�zgr��}�_��N������۶}�f���{D
-
+B6X/��2�j�(J����-_�d+����*((h�t�E@����v�z�c }^_}�;@\�A�4n�]�]<������~(
+�@�@%@�j����:	��&�����(
��=^�ى�Nd삡�-Dh!kX��Z�"����E`-kX�L^3���à�0(;���à�0(;R��Ղ6�
;h�ڰ�6�HPFk���Ap�0ꞗ � +3E�W#��1L^|��S�8\a��=%)��*ۀ+,G`��??�
+�
�5{Ȱ�5
�=�cc�Y���E����.|t���C��ZӰƳ0&&���5
�ϰ����=��5�c��);��O��'��h!<�5s<��Y�w��y�I{�%pE7��
�����:��`��u1�\l��:��T+�(3U�� �(��I	Ֆ0���Ve���(K"q�T|j�3 2���}T�g�Jo
+����0]jijm2�N��|�}37Jc�u��͏?�G�_��i�K&��P��3�bn�3Nj�I̫��v�!�r��1m�ׁj�+%�7A٩�q*�µ��8hp]�Qg~J�^_���k}We�\�����	�Ol�6!:�e"�m��
+YR�?�|U����_w#��U�Xߊp��s��N�~/�j��C�"y��Z��*��A��(�
�U���ѿm���Ɛ��"X����D+>J�*	X%�$`�̙�90g�L��	�3s&`Τ�G	X-�EJ�A�g���X]�\rwK*[�jUYm��-��k���_���o�c_\�M-�\@���r�r��S��mwL-8�S���Ԃcj�1���ZpL-8�S���Ԃ� ��.W���ϗ�\)���� �T҉�Zhƕ�4��[����l��(%���Ȍ�*r	�#=A^H���86	2�m�!���������(��%�N�%7̙�Ss���o����,:��N����d᝕x'�q�_K��X��������>����g��������󰼂7�2�5g�6"�����HЀ���ES3�
+���f�,�z7��F����=���Z�����D�٠��f"�����?N����g:�z&�t.�_�]���2jh7���z:���%��yp,&_�-�m]���@?N\�'�Z��Ζ�?��SW�
+��rh-�m��^Fe��n7��$�%��7��-��e�^
���������J(�"�GAOLeF%x�F��6j5���F�`�F�Q#بl�6j5���F�`�F�у`bjD���f���V�I+��|�
+>i���OZ�'���V�I+��|�
+>im�I+��U���^����vX��,�+�+�3�,>P���}��׊ù�����۷�X�K���P�?�Х�i�,ū�S�Y}o+��)/��Y_�OЏ�
˸o�@�g'd	g��]��+���N%�1�!�7@�B�;�Y6�t�/:�SZO���<���g{d�
+<]OB�OW�D! 0�X�ݢ(d��/�}�xT�!����5�D���Z�Z[�%@hI��r�}e��|kbn��NNA�2�b�2�7NJ���o�x!�z��C8 9?ks��sg�7�"����h���;�c{/�~t���G�OH���IG���ɻ�)�D@^�j?M�z��Z��;v�T����=]�}�
���l$�wyA�- �i�5��$C��,|���TB{N�-�wMT�w�����x��w��ڻw�m�;6��m,(�{��XXG��=��w�]N&w���tͮ�E�EFt8.���Ee�0�]>��z��c=�#B���c��L֪�N�l*^4�L��2Z�P{��,��ʟ%�d���9��%/,�����{'����ߑZ�^�;p��Lw����;���RhP�d.7m���s�h��F��8�	C&��Mr�	4v�W_�	$`���i������u����56�[l�_�����	'��桗Gl����&��޼�Bo9$&����v�6�u�`�. �K�Vk��&�+<.G�j�*S�;̆��a��}�nSkKK�5��(���I�(�X�, M.x#r&�cU(��+}6=�n|ݜO��}����]�w�zy�-+W�]+�;莠W�7����?����x^�7��f|�Ń{��z��a>ٚ(�dO���Gܼ�g
+�Q"��0d�@�&�N0��[��Qn��v��W�n��Tm�B�{+�(�/Z::�"��t�:B���T[�l5{�t]����،j�_p���x��yޘ6�͝ݥ�n:��ݎ��?z}���t�\���ϖ���,=�rӏg���ie��^�F<?��di�e%������k�+�m�ܷb�s{W�s:O<�ڗ'kO�)K�zj��ҕ����1e�c�zz�|DT���I_��h��C��j�>"��0�MȦ�Z̴2Ͳ
ޑg�]D���bfX���$���8���+7o��\s����86�?��?�����-\U�T�����N�?kn���zZL���v���b%���ߏ�-a��Ŗ���
++s;<x8��~
��'��j��n�����r?o��HꜫP�C�O�5g[{�=霱�4��!�@�?����a��i�y@�ܕ�6�%�b`��X�TE^_�0�"�f���Vn���Ws~8�%�������N�=B���w��;����|	9-����h��8X��ᝌ��+���tϿ�"
+�C�:~M�H1Y2Z:d�I�L�
I��O'��½��`�&�M�������	�:&�(d���.���Q�(@ 
+��.��D@"��P�(@ 
+�Q�(@����c�Y���9���9���9���9���9���9������9en:���v�	�&��®VMDgdt�0��n����Ǖ��?ܻ��}����~�ɋ�ŏ7�Κ�r�Y�ϸW�|������R��.��a{J�о�їh^�3���+�o_�������>�~<|�Ǭ^}v4ҕ��}0��F�j�?��_>�w�P��
��r�Ӡ���ȍ,��[�% �-��M4* ��
rn&��R5��0(�U�('��B�F�P��2����A���J��N%��{%�q�'H`�><�Z�':^-���x��Cy�8e��$.���ѿ��'��i�3���j�����p]��⟀�`�{����"O�?L�2�le2~5�~5��W�W�W�W�W�W�W�W�W�W�W�W�W��_a��e�*(�x
+�<�)�Ox
+�S@l�P��h���@����B.1�jA!2�0fq�˃�x� yic��(vf��^p;;���?�C}�s���ϫVn�����~Y�j���.��fq�j{sن���t��Ǟ������?s��?!$@<D����7�^�j�C��T��"5A>�:� ����PQ �
��P�ڛ3`��e���;�ӫ��C��:�n���9{���v�Ux.��k�v=��C�������l��`�Gz�8��'V�עj���j�$�$�)����@\��9��NL1�.��,MWl���:��M��cp?z���s���x�����8����������C�à�m�,�Y��#bF��Q�}�et�,j�ml�ǽݺ���9um�����?��Q��g������:)n��Mk�~���[�fT��t���0o�(��B�$�:䡹��t(�'QL�1���@zAI��7�hv%;��#N/��h��Љ�Q����o��ȴ���m��ո�Mfrʙ���L�I�lw�M�d�|�u������)�t]���2�l-��_R��Xޓv칕,�&�)O��>��2'))�u����O�}
+jk�2�Eq?����OB��ܿ��a[�W�N%6	��u�oN��n��۵��'I/�Nk=���{���+������|I_3��Xu�
+��|�QU�Yk���%�%��^h�7�ˇ`��^�.g L,aY4�hA�t7��ϓ{����iү��B���:txRC�ǩr�U�A�ܰ5T	!h�FT	<��P����鈲P�$z��K��gK�I���p!\��eq�qcU9�|n�P�Z�6p��%0CNb�"�h1J
+W��l2@ �'c�1G��E��%�q���-�s����Cܘ�4p��nk�s������|�/�
xtlJxl#	��h�Afܵ�xy���i�\k��|�Y��.���th�bKz9=�Y��lGlIEH�WXv$�0��ך��H+g��:�Y�#���U��	�;01�����l&����z�p�M�ݽ/�Zoӽ���|��5�Ȩ�;Rt�e�zm��J&�^2�J��8�0�������OhK[�'������{�������օ	2��"��G]m$�~Uƚ���K-��
+�n��=]�ާS��[��f͚�mk����v��ֶ���8ѯw4Яq ΦKi)~
+��kp)-��g��By
�AQ��\mB��[L�#!Q�Ìl�$_f��J:��dZ�q���}>
+Ɖ+oT�e�:ﻇ9����SB\ۙ-ee�w}y��?�v+Xg!�Q�Y�Y;��d6W?y4��&�X@�!!f9�nj��f�O�&vh�l�$��Y'\����3�ź�զv
s����ZB?�5���k��]�9��A!h���,�݄'���I��#?ƒԾ���Z^0��E�!fb ��Dޜ૱��Ce�51����s��D�2����AI�c��'lQ򡧜K�P7�˰9#O�w販�Ƶw��B��˛6V?ý�[�������	���h�!.���ӫW���A���'O/��3h�6�M��$��n�ej�6;����}9�ڌ�@/���*sM�M��K(<8͐�+���G��yk�5�q9��1��0�-c[�4�����Iv�Z�� ���^��sr{���������Kk�Y�?(��[�i���XeL���eOL-p$|�f�11�d�[�l�"G`\c�E���`w�<J(�c�E,��P����œ+�#������4�4��(r��e�Z���K�u�X�Ăx���1�6�͜��jn��T�NL>����K9�If�,����7��%c�.qu�Ҳ2�f�=�?��E����{fd��0��m-��>=��{�>�Ȓ��*�P�x�b�CAnv�w� �2�����Ε��ٖժ�;�����mAn��a{�������w��suBԽ(��w�d_С��~��5�Q�V�aN���T���RI��p:��n���@�S�ӪtZ�Z��آ�P��J�k�h2?�:�)&�����/���̐&ډ��k�H��C��=4�q�֪
�7�M�TE���p]2�N��t��*]�]���F�q\ˏƋ㥑���m�n��@WB�%�EZ�9)������ʺ�V����So������K|�(����U��M�r=�r*�scN`©�
+��T�D~�Dౄ���2$�l{�Y�5�?N���$��?���Ϩ���"ns�ɶ)�s�Y\҃1䢸l�w���,���C���eN�srIx��[4G\R�kk忝]`9�s���!��X[�g��fvN�`wV�#�󙠂^��7=;��޳�A�p@�d�,͹uK\��?*E^��yt|d��݁�8����q�K�{�L7�?�[ ڿ��:�s���ҭ�����y��w|����?q�Gc]�n�orwEv�����At����x׫G�7��s�~��ۢ(�2�F���Z�ě�u���c�9�n��9tF	��*,�r�ۡ]-5z�4�����zw3�f�jb���� �zۛ�4��6�	���;��a���r��Z�N�Zkm@m`m�!w$7R��v�=��'ˋ���g���녿.���u|�@�7J_y��O?�՛'?�PN��^�.鉹��?�uH��]���������%)�""F�Lܬ��w`�9�/�5�{�tjRaTW����î�2 @'�AY�0��Dy�Ur�]wN�`9�,��G0�$Uk�V�_��lmۗ�ۧ�������؆.���/6_��9�ddl^~����cGm`��at�q��Q�'HW�?bB�G�+��B��6����v���&z��G�`[ծI�=�/#i+��ݘ�mX���zu�־iQQ���O�n���M��왫={3�,9, �Iы�|�*��C#�N�<��f�v ������I��)(ƿ��d\CClM���7NM�F�k������֒s�#��l5��~��NK�~�B�����a�B��<ޜ)�1�伯2�ġ���D�#}�17\C�W	?��(kï]O0]�bT���/Uo��s����xz�~��>��^�im٫*�b��Չio��Ұ�a�G��=�s����3�䃺��LX��/�
+�� �p>R�ި�5]�h�(�(;�5�#��DӔ��;N�Y*��87u(^IW4�f��
ѷfČ���q�\将��]F����D�l�jb)��WW��+�<�f<y�[D uD��9��;[�kך�45�}y����Ǘ�
���:M�59��[�r��ʵ+�4��fȮQSjyvm�֢�7�fW�5pig>��̙�>��[ikH�������'�tX�T8}̸M
+`����	P"X�07�k0'�Az����e�'�^F��J���̊�PH��}���3�XY�А�{�+{��m�����z�m����⤩W��nB�"{�G�?����Έ��+e�� _wV~����I�A�>����xV��+�x�����\�:ѫ����OhM��$���oA��t1����{��	�T��~bj2l'GU�,Z�挼h@;lj�(0�Zk�O� o�}E�ܒr9����K��8p1_�U���c�w,_���ƾW^�{�UVe_oY!�[%��`�㭀Ĕ��Q�ݻ�WcQ���`6Z��
�5������G��K�9�ʟT�\w!E��M�r�XnU�@XO�@1H
+PE�!R�IzB�N�RU�H��+�J�H!_(J%d�P"�H!���4�/��0�J��k}[��st\[������߂���@�ʬ��T���KHy�D+?д�֓�g��<�Ό����Ko�����Om?��yƛ�a���a诞���Q�K(4X��t�|4�$!�Q5Tfj04���cc����ۚѪ�)�،k��C`�g{���B�/ū���xm�>�>}��	��'������B�X*��Jե�Rm���2�2�2�2�2�2����yr��ĝ�7O�r/�ZS�;9kx��i���^~�9�ϐi�����蕶�����/��m���\v�'M����Ϡ�����?��k��~��?�v�����렜{+,�Bǰ��b�G,~����[��ihD�77���g�����3��|����wɕ�?n�x����wЏ�?�����vz���F:�
�����	鈏��|�
��8@�����oG�tw�Ӌ��`!�oOM����(8b͆����r�X�.����X|�%��������bˀLX��X|,�h��d����[��,S�(�^��.<dMYٺueek����i'�{
+�́\��t��Q�8"�?N;��׻�;G3�V����Q�IK��T�G%�("�oMr6���>3�x�ۄL�dv v��Q<N2ś=ȃ1y���p<�4�l��
+���^����K�_��{{U�E)�$�ۧ﷝�']\�"����`/"��z<r��M!Xmv[f�-@�"��r|��-�;Pa�+܍��P%��h�hȖD߰��J8}(�`�w�r�)�О�]�@�4�������֎Z�l�[��mh�h���3�^��������Ը]|ھ���r�v,�u��jLN��[���W��_Ny��@�*�9��O�AP�~d�GU�5*���4Y#���Ml�a�0�CK����w҉��z��A�9z�����)�w��&U��^��O����h�Q��A�������Y��4���n����f�}z��	{�xu7�����\����'�_U�3�X�O�7���lZ���b��DlEHd{ף;u����K�9���خ��0��X�GET</pn���y�>֕�6ަ��8��z��=������_aT��@�h5 �d�,�`UV%�`�`8����s�A�,�'@r��I^�U�Z;��P.����B�:X����Q8�ʅ]Ů�K�K�R�41MJRe�����Y�A�1��Xm�n:WH���L�4�"n��D��z�6ƨ	�X#P�k�(.J���245���\�P�Yƭ %�
+~��f�&��֞��,��X�_v�O�տ�����lk$���r�۶)�:tY�Ԣ=���J$0	/���c+b�=k�j
f�����n35�y�9�-q�*�!���&/r��h�ù�[�d����H�q���H��A��&��ǏѨ`�j�hD�0	?��f�@4�Z�>�#�Im߶5�whn @g�g��@,Y	c��ZO�ՠg����:���V�@�ф��l��F����4��A]!3���MF=�NZT�lC�W�{�=,����c�Ӝ2T�a�O�y�"�2�,��@}�!��Ümζ��5,�)J�d�
+�Le#��@쀩a��'l)1a�}���ߦ���mb?�u����4̫���;�B�?��Ú��Q�_P���H�ak�7�������P1Q�RHU2H5�䨦����d�J��^�bX;�$1m˹U���Um��Sv�^��#nY���x�X�����S"_�c*��(g�p�ɧ![
+{�w�,/�'!�\<�P^��uϲ�K�n(��'���'�>�XE�3[.�(z�r�Ә���r�Fz��$غ�s�cX�+��r_���:n�Z~�U1��z��^�1$�na��f��v�$_%�*c��V^�7{��׾��NT�P`g�c�=����,L�KW.��$��<��*kpI=�m[��2m}zu�sE'.oy�ɣ���w�n�`�B�����V�p.\�Mw�؄��}��+����ã����`mޣ�Ĕ�T��>��C�st�kl��"�s��?xߙ,���8��+��2�W|%Ysl���T�{�,�@��j�
+�/"�����g���q�ũ�݋���ey�礨��nD>n̸��������|����ڰШznUț�f�R
eq���>B����?��s���kV
��@P#�A�ȟ�@�>h6���
+�2���,�V�u޺Jo}9�*���5��P��D�@n�]޶��ǁ�{����@E��'@]�|�z�.���~�Y�����撼�Fz�����c@˼t���&�A��[^�y�hT�x&\��cd������4P=Ȑ׋@z�sF��y�Wa�ؿo�	"^�	|T�-L�V��0��~@s�^�!-@P��t���v1�K���u�@� d�}�a�n鎐�Y�|k�g�П?\�9@����P`4�T�m�����:�P(�g�G��� �����w��kaـ�}���àO�q_�w��� �d���&�"2����,]�O7X�AQ K4�
}ƀNb�!��<��g�0����@OI���$Bɠ�d<Ka���?��@��I����,�*�j`mA�X��v�Ԉv���N�%��R�`|�[&��X)����-��ox�,�x�[�`]=���K�nx�$�	�a^
��`�-����-k�@�-kQ:W�-��Zn�#�sK��(X���H��Os��;w�4G���������ǔ��ɋ�fϙ�Ȝ\�ph��Zd.��`޴�E�
+���g;F�6�#�͟6oѴ�ء���.9m��ٓ��e����#!16>?aZbO`�����P��re�CL
+�;&;Fϛ�?�h�Y��靆3�p���M��HqQQ�G�=�X!Z���C��dT�AMr�Õ��P7
��9P.��B�w�)�r>��Cy!�O�@i*�:zj��5���B�<U��.�[���Ձ�@i�@sd�����)�!�q��bh?��<ij��)�~���{QF2Y�����w���N�C�P�
=N��ei��
+��S�1���-��h�g.JGq�Y,b�_�M�r1�3�M��j2����rʿI+��ڴ��q��Y�y����P.���2�����Eк�w�n�WW��E0�P�<x
+����NX?��b��[�!��U��C��/�P���U÷Y.��o#������������r�c�j�`-J�o��O-�R��M�$�E�� �y���5�\�=��PJږ�VJ�Sr/��z�����|�B������w��
+w+��R���p�N.���o���~�~�G~�#���%?$�����*�"�P���������r�z�p��\�'�R�����7�|L����,�%%�<D�~(\�G�$W��?(�Lɥ�~�%J.��ϫ�g��	�Q�����d9�8�4�Ms:�@���4�yJ>Ґs�����z�p&�|�O>���*r��-���%'����Gɻ�ߦ�(9F�QJޡ��;�K�֑ƿ)���<����K�Ç���<r��r����"
�}��(����ț�k%o䓽��oRo!�E����F^��UJ^��:J��6{�nyy�Yx9��2��^�^ZN^�!�d'%/PR�|�P�O��$<H�3��h�J�C'�)٦'5[c�J�ƒj迺�T={H���Y��g�gK�-ϸ�-yd���Lɟ)����gܤ�Qٗl��n�%��**�I9(��M֛�:J�R����efa5%ef�'JVQ�9SxzYII�����
+J�ZN��ȓ�,3���,�d%脅F��#���Yp��o!�=�<J��d.%�sF	�UdNQ�0g)�$�)��HfRR�H
+���tJ�Q�O��)6a*%S�I�b#�)�D��L�&H^>�p�����d���E���������@�D2��Q���d�r2��G}�0J��a(%C���dPv�0(�d?b�����@J�݀|�wY�H���*���G2��#�H���̾F!�L28w}=����m�G���G'x�ӀKᮏN-�ё>
����{S�D�u�dP�3��S�
+N�'=���I*%)1�B
+%ɃI�� ��`��$J�a"%	�8!���8(��X��{��D�1�$��c�F��B��f�V�Q��B%ݠe77�ʥ])��$��p#q�g
+������(	3�0J�����8b�}0�A�6JB)	݆P�H�(	�$�+p�f��?������k">��ǗX��J�0rs&1A&31)�3t��H���z�`���;=�N�!z��>^�&:f[���
�DC�ڟ�LD�D�"%�/!08r�pP���E�!�Dp�/ۀ������o��'�/n>��
+endstream
+endobj
+
+1306 0 obj
+13136
+endobj
+
+583 0 obj
+<</Type /Font
+/Subtype /TrueType
+/BaseFont /PXAAAJ+Menlo-Bold
+/Encoding /MacRomanEncoding
+/FirstChar 32
+/LastChar 255
+/Widths [602 602 0 0 0 0 0 0 602 602 602 602 602 602 602 0 602 602 602 602 602 602 0 0 0 602 0 602 602 602 602 0 602 602 0 602 0 0 0 0 0 0 0 602 0 0 0 0 0 0 602 602 0 0 0 0 0 0 0 602 0 602 602 602 0 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 0 602 602 602 602 602 602 602 602 0 602 0 602 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 602 0 0 0 0 0 0 0 0 0]
+/FontDescriptor 1307 0 R>>
+endobj
+
+1307 0 obj
+<</Type /FontDescriptor
+/FontName /Menlo-Bold
+/Ascent 928
+/Descent -235
+/ItalicAngle 0
+/StemV 0
+/CapHeight 1495
+/Flags 33
+/FontBBox [-445 -394 731 1051]
+/FontFile2 1308 0 R>>
+endobj
+
+1308 0 obj
+<</Length 1309 0 R
+/Filter /FlateDecode
+/Length1 12360>>
+stream
+x��zy\T�����s�}evfD��A$��M��(.#
+8�,*�Dp�{0MC���Z5�ן!��Gb�1
}�Mlb�?kbbhL�����f1p�}ϝA���������{��=��|�@�@-@o�XTUR��R~7��	@��V6���?;�"<TQ����׿\@��B��eM������ am�����ݽ����cd4/	����`UC�u��g�/���e5�J��m�H����U%���U'@r�]�%U�q�������7�h��R��ں�Zq�S���b?���p����o�zRQ�Uj
huz�фf�X#l`w�3�42��c 6.\�!�DoR�Дa�i��������=r�������E<�(�	σ�\!�a>����L2B��z�38Z5V�Q�%�˂�P�s�ϖb��n������=C7(3W�6��*c?�7�Qx�nx	:�����K2a�!֫��G�-ɅRz���p�~��<�z�A:�B/�W�s�n؏�礫���'w�6�9���0�X����PF�ӽ�n8)W{�W�b�߸"��{�W,&G��l��6��A��p����k8��098B����ҭ�w�s�XXéD*�h�ŕnxK�_6�j�t߮��Ђ�S%K"E���̝�wJYg`f���B���u]f��ft�\]7n�(c��N)��z՝�����&{��M�Q��<5)/�uRq��*�&��0�O�S������w�]���<����G
�u�T��Q�,!v��� /�P]���5i.פʼNR�mscK�暌�L�/�����M)���
+��!��'ʷ���Y��=���(���,/,��9Q���1,	cX�`@�Ȑ6��I�f�,�lɋ��ƸݮI��ft�ʋq�*�MJ��\�ل4�a�‚"
+�tB�m����ٲm[�6�#��S� ���@x���;����P�Z<�>�q{�Hga�m᪙������ ��Št�(� :�O�|���RA_wO_&�{�z�2",n��mqE诧1��v���/�����Z��@\���LP�$�f�5������f����73���P�ѱ��5�aK�����r�<�:��+[���������Ij��n���3��eY�۬NO��=šC�nli�x��=?�'[��~��^����Oɫ�9�lě?�W��N
"�!��n�-�Y��&�<#��#�}y���<y����l�a�?�J^��Cr�Ӌ��%��;,���"H �.�d3���.��iyP�>��^�w$0[��/�x������l�n���VF&1����*y8ɑ,Y�q$G|�-"�
+Xӳ��~�$+�K6?[|z�}�ww�J�箾cw�'�J��i�V5LD�S<:�]�9��v�-�´�g���
+�Լ�tY�v7���v[�K�(���� ��a��7�����%����1%p�V�T$Zܤ��b7�rF�'��!��\Dj��Y+Y��ZA^�	=����
+\�Ғ����BL���������W0�q
+��a��{�f~�}}�!$��{ٯ�#�b͍�Ĺ�Qu��x�����Fp����wc[����8A�����Bф��F
+B.��B�J�&��O <���i���.�@��s�ED�@TI#&#�E�@X��B;�!����!������O�� ��Lj�C�Rī��l��[-f�3D�Y�����1D�؜$)9i͗_}��_�%)�U,^�b���T,I!>�/d#��dk�Z� ٠o�N����3m��>�3Y�R�����E5�����FQh��TШQ�F
+D�6����Uῦ��ER�������!�$���/��iD{Ϸ>ʲ0��ɨ�8x �I�������q�$z%�(
+`^mi24ڪ�Q�P�ZԻ�i0S}�������)� +wF}���nQ�Uf�ř��N��#;rƑ�I�!�
+�+�/�m�
+?䘰�Z�;ubS�}�]��̂ωi���WZ������乛&�U�C"�S��`ς�+���f<gӐ��pW ���kuB��6V��Ф�5W��	)
E�$["�,Q=IЧ �HzO҇�}�Sn�����Ⱡ@g<��D���dK<	��}�����g�Z����}D�{g�a��j�{e�mlܱC�K���U4l(�'��ܦ��c_��rR"��2k�7+�u�u+��H j�J
^�:U�Dh���`T��A�7������(����-��"/�!n�d�=J\�g�IS4�>p�}<�)�8F�����d"�W�@�p2�cnQݨ��67�
B#��T��7�Ek�sX���+a�)bc�Hw���n��H�K��:Н�����s�wW�z�`��_<tߓ3�s����h`�~�W�7��hSR6�[�39Y�O͍�t�#��!'���Z�%��I\��&�1W;�*K�9��C,��
ȣ,R�=�՜19F����-˅&˩$��m�7�{��'��|?);}��^b�����a�c$gay���ŋmĐ�v�g„����GY%kf��•�7l߾a���R���(&�?����Y�����*����[����o�����%�A��O�Q�I��أ\GP%6��1�$̒���De�=vѦB��� ������v�v���c��%�M�����ߐ'�H�B�d�����'q��RV�Z"vljs?Rw3E���@tsT�^l����}zd�
+�;�
+sġ�8n��M8A
+
+C�]g�}����"�W��R=ƉP�����F�&f]�Ԭ�[��צ:��צff'Ճ촁3�����N}z6:�~T���~G���r���=7䏸K"�Z�c����Y~�S9��灟'θx����陊��r�g+^�NZ|��ӯ�kِǶ�;!3�'͟�r�ϊ�J2������ey]K�c~vf�o^�k�/e�O�O�{�{�����! ;�r�}���F��Tl_�F�dEԮ$�$QFL�T˳��P�;�TA� �I�V�J%��b��:󵩝�YS;�3����w�q��s���KF�2�W1�
������Y2H����P����j�l2J��Vד�Bi�����u7w7�-�';E*ɣ��|�b� �6�s��z*Y��8���gr�WGAz :�j��Ъ�1�j�i]t�[	rl4?�a�
���-�8��t��Q�����{栕���#�s��Mk�������HML$�F�DNLd]�'���Ƅɡm��4�]%�,�F-ɒJ�%
�,[M�
+Y��W�-
+eZ�oQ���� Nω4�
+���%^.[�O�
+��c$n��Deq��J��d:K!��.�o��i�1a����UB�!&��7!mg�6z��H-*Z�aRGq�EpP�Q�������Rj�sje�������d�	DO�'ߙk	��3�o;����'N�#�+��{"�c�49m���K�Ն��.`����}���M����+�	>!M�ا�I�����-�\XU�@�uk8L���8�]pڒ!�h��[2D`Y��Q�W㮍ֶjj�rut���$�5C��#�������27u��o�ˠ
+�J�z _�q$f
n�	䇡<��K�����ߗ/�.^Z7k��G�?�5��+�_V�8c��6�ľ7>����<wƸ���=��K�#H���E�w�����C�ezV�����
+a=4��4�AT�n�|
+���WEn�Yv79D���������y'O>♮��j�PZ��Z�b�D��^�J>�R��f�βx��t&~�l����ҡ�\����ϕ�X'��T�H*t�\����c� �%�G�/�oث_���|�C��w������o��(�W���ų��N��:R��u>[\�~��>�Q	N�^��b��ؒtm�]��j�sn҃'�Ii�A�Х'P�-%	��&�_?�PIs�jF�~˟����H�p�p���u�-��lѶ�[�A:4�C�C�{�����("��,���;+��dc��r/X?�ކ�a�g*{�#�7�U�vi����`�]1m�3?�-hm�g���>�yה�Qׇ&}��Y;�
+���X�ӛhd��M���δ5�!
+V�^vDg�qE婳�H�H�"<�
+I�<��eVW/\��G��{�|ϩ��tv�$
+��wu�GF���e�){����:�ty����M� 5l�7������:��#g���0i9���#�l��N"t�S�O����6�sSS�Ćq?wX��3��Ç����t�F��!�@�Q����T����D�&�-]J�b"~�����?��k/Q�	��:I"��{��T���浱}�⢯���;TRJF�HK2��),0N�|��ϫ
b`Z���l���f����T�kw�>��q�)�H]z������b� �[��o߲�#ݔ���;��RE�*qzE�J�	;O���DhȞ'ʻ�~-�ז7�r�
#�I��q���j��Q�Ieê5�Q�G1Fp9F��@4��*�F�m�
�%Y������6�5���t�o��a���3�ؕ̎_,�
�&v$����L�*1����'��ߔ����u����7C��JY�x7�#V\SC���q��d�	�El��2Ѡgk�.�#q)Ix��~��p����r�K,���Bs�w���-�<�ܦgg��z��/_>���x���6�xѬ_=�ve�����������+Ll��㻏?Ǟf��[L,��W�m�1��B��y�m��W(C�"��@�тU"�����-���Q�-Gy���-k	��Ŗ���!�����Ϙ��'���%O���G��;��ɶ�E��pkq�܊����z��
v�B��^�:�@�2r�q����y�����o�ܼ�~_�#��R�zI�������^aؑP���
+h>�c��L��JF��F�m�]�s�U�:��ƪ�#��J<
���\-^���X������<���Yi>;/Lg�oj����tv�d�"S~.�*�/p�UR(��
�EI"�5�!�C6Ϣ�����r8��X�t�xI1Y�
+�)�;S�ޓm�o�f�``��/f����p�ɸ���j�F�mZ�N#:0*��b�V,���)��?/7p��K?c�g�'����o_�X����Y�G��?���#�&���S����.�5fW�YSl��&�(y�i��c��l|��N��
+�%��ymr����<��_����<���q�.�%�T.�K�Һt>���s�"}Q�X_�/ޗ0^=^3^;^7^?�2�:>b�m�=�H��(�<��5��ʤp�]q�#5W�������������˫�W��{륭�[ͳ���Z3wv�@�X�0�ޙ�v��G@F��1�Æ���
�27���Y��6K���Y��ʇX'��5�kp_8����v����"5k:u�S"�����t!
+H��;!X��X���q`���
+�b�\��}Bw�p���~b"c٫Xr���J��8�披po�r	�ǩ��:���1ʯD��"�����C��&���G�"����PEJCվ�.Y{�����!�2{����f��9���N�U)��F5Z�ѐ>P���I�5�I�鶄�f(��m�p��2Z�-ڞ���Uc�G�Դ�	㒖U��G�+�bC�u��{&���X�^0���A��O��j��V� �v[Sd�B0��^���kt	1*�0��!������a(�'�dž�	R]��4'E��IѦ�R�)�cZ��泧9RbS�R�SR\C݉��"2��$<ݗ=���>�,�?�4�Ҳ����x���=U%�,^2u���{>�Y�?ű7`Dv�3�Ԗ�������@Ψ1�w�bMڿe���M
�#Sڇ�����jm�r=<����F�kc���b ����h��Y�Z�������������\�:���
+b/�{v(�\��m�NKv�=�a*6�:	�[6ɯ�Bfr3�J� ޼��+�$�ʎ_��…��M�
+��8TTу{�@>[qO*^���E�~ߪ�%
+��̯�$Ȥ>~1�e�-���������Js$A�kYQ/σ9t�X(�����w[�^�8�KR�vU,��^;]��,Ҥ���D�Ո��D����ie/�%�Z�4�AO@��"�j*�.�Z���:�]�Zo��1ݖ��[7&�ӷ]� �A
�?`ӒH 	B���hcu	��$'�S��d��T�H�
+U+�M�ͰE��z��qx��w���O��SKV�ԭ#�k��>_����-��g��!!{�
:��a��/s��=ȷL�d~$��[	������-�e�BР�Z�HD5��۲�L����K�n˿�θ����S)�[5��4T�T��U�\sgD�h��m&{ؑ��#d�@�xB,�t����p�Ɏ�銟���n����r0���0M`2�
�2
8�G�z
:�t��<b��2
z�F��6��L��������X�%k��p�JF�Jx�3��ًp��>��U�f�:�\,��dDӾG.��#N��u^����0�H���(�]'{5�f{�Nr�)��k`=���D4x�����l��"Z����K��)�M��_�:�k���͐���q$D$���{Q�Jǫ!1������7n�ҧ�i_�\������m/����׿\��������v��C�-�욣�pyp+<2�1�I��G�D�E!j}�����X��Q�j��x�"D'�1��D�	?rr�\��傏[œd8ä礓��88�xI%Ǜ�w�6?XrWeS��OU�7ng�S_���m;s`�=⡃gw�=���QC�����O��Jh�����1�����m����;�r�k�/H調�P����UU,�������nx��O�x���|��!��&b{	>+��
+>� ��P���6���c����F؍�aB+�;�����О����0�<��GJ~���������{��#
Ё0#�7a4B'��0�ya@�B
+'�'c��
+��g�oc�-b_Z cu(w�1Fp��qN݁p@��E�E"���f�~�#�6�F��f�8M8f�}-�uX�k�E��m#��7"��8�pލ�
Y��cQW��h�3i��v��k��]�����b8H�r�7�f��zF�I�5)	����H��am�M�-�Z����#ᶌ���m�/������m��|�؈��7��U��+ф�Zr7�	�u0JXn�a���;kj��*\O����	����]S���n��#]�M��%+���T/vM,	~w	���+&V6�7ԕ�T���LX�̕��Ի�����V����[^��fbͲ2���ѮLzFYf�4��9<#{xfƭ��Yed��w+�]%��u%e�U%uK]5��0�rqIÊ���;k��j�]7�0*���P�%P��H�e4�2��{��58Z�}���z-��
+�řjl5@�\p��+#�pfb^��W(����]]0[u�v!T+���"�Rܿ�p�ח`��;8�p�����>����Dه����[Kq�1��4��;.��j��*a1���Q�rs��ӑ����(��g��IW���c��Y�s��\�`��?�f��KWެ�5�rY��U+t�)2��k�]�c+��8��W������ʰ�B�W!h1�ύ���|=(��"�N2z�}�}�:������?A�����_��c~�l�l�����YJ�F�_E���葧
ґ��i=���0��O�O*���A�jL��C�`=��/�t�����.��������
���	R�]��	t���Ҿ���~��џ]�{��'�m��{i{$}�џ0���m+7Km���6�aݹ�,���f��"^����t��VF�l.����[Z��y��Ets@|�K7m4I���F��N�3ڊ�Z��e]��RF�E��is];��A�k�t5.X��M����*FW2�Po��
�ny�T���tZ���ʹ&�VW����ZV$U��U-�J����.�K��%�Yr�Vnxi�	����X\F+p��xZn�e�.b��ђfZ��2:��4��lt���J�Z���U��ѹ~:��ٳt�l3����3R~;�9�,�t�fz���-����{��4F�2zϔ�v:%��}��u�Nn���"�I�4/��I'�x?g�c���������h��F���;tR��消w��1gd���CG"q##i��H){*�e�FD�,�gFJ�2��ә�4�pHy�I�q(=�O�Hítx�hĴT��f�i]`/u�QJ5��.r
+{�d�4�H�u����b�T:�D��Ҥ�H))�z��JQ4���c�Cbm�?u�FH�qԅ�4!�&%D�x|�3�K��4�Fc�#�|p�Ј�Q):�F�h�R��(��4�/Fڨs*u :G;��P[��B6�:�����,שg�~j2H�fjĞ���!��u&IOu&��q�J/aU�q�BUz��jD,�$YK�.8.JX�tD�b;֣���7%���S�R�E�6�$��_���ý���!?
+endstream
+endobj
+
+1309 0 obj
+8565
+endobj
+
+588 0 obj
+<</Type /Font
+/Subtype /TrueType
+/BaseFont /PXAAAK+Monaco
+/Encoding /MacRomanEncoding
+/FirstChar 32
+/LastChar 255
+/Widths [600 0 0 600 0 0 0 0 0 0 0 0 0 0 0 0 0 600 0 600 0 0 0 0 0 0 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 0 600 600 600 600 600 0 0 0 600 0 0 600 600 600 600 600 0 600 600 600 600 0 0 600 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
+/FontDescriptor 1310 0 R>>
+endobj
+
+1310 0 obj
+<</Type /FontDescriptor
+/FontName /Monaco
+/Ascent 1000
+/Descent -250
+/ItalicAngle 0
+/StemV 0
+/CapHeight 0
+/Flags 32
+/FontBBox [-609 -420 804 1222]
+/FontFile2 1311 0 R>>
+endobj
+
+1311 0 obj
+<</Length 1312 0 R
+/Filter /FlateDecode
+/Length1 11560>>
+stream
+x��zy|T����o��f�2{&�M^�B�@H�A(�L�F��!	d�X@�P$`�
+.�jP�CX�\�H�ZZ�Ʒ_��V[�
+d�{ޛA�������y��{�y��s�����:Xtd���܉5�c����eAW�8;��>�g��/�5���}��}��ii��g��n���,
+�7�|t���m�;4�� q���t�v����ݸ�uA={#���^�R[ߠ2HNl���[/��c������wD���[y�mE�-{ǝ*l�Cz����̏���"S7t��D���ߝ�^���Z�0MfX�lv���?����SU��2A6�,���),��u�*� ��Ђ�>�µG�`�
+X�W��ҧ��'���HH�a��^���G���H����>Ȃ�$�p���J����>2������͔>���������
+��%f�'夗����<B��S���n\G�l��a����3�,{��gx���fsdA��HO��#3�1r�Z����	ޡ4�Iz;}2|0����H{du$9#_�C�B�\c;R�p>@>"��zS�̊dF�p�����C̅y�:�v|nN�_�+�D�J�H	�KnGnޢj5�N���~�$#0�L����e�L�=b�Q��9�V�b5܁�%:��J�A�p�j���&Q@9�*��JUQ��������s�zf3�~$�U��TD�<��R��<^.H�T	90�q�
+��a,���}�G�B>���k�^��5�ru��|}���HM��1���d�$kH?9L~CN�?�����W�4�!ju��@��R���L�O������}% 0��<��+l���oßE~��6ik�X��nܱAx��)�#���H�����HLH���#��8��I%�Gj�"҂Ԭ$k�҇4���H��K9�Jj3��z�z�ziJ��q/ʑ���e���bܓf���`N��'*��{m�$<Go0�=��;�t>��ԏ��P+;��0��<�'�$��Sc�4a�&��1RE%R�>��h-D���y��e��2��P�OQ	8�z����v��N�r:�������>�G��M��>F��p'J.
�?*7';+3#=m�Ԕ�$)�'
+	�x���t�mqV��d4�uZ���T,CS2ʤ�:1�RdR�)S2�T���u�E�*�'(�)h⍘~�\�-L�
���B(���$1�Z�$��o�F��R�F�W��
+̤(
=6|>|B,s.*��N,�w-�)�+���(FMf�@+����U��X�eA�TZtI���\V��ySuY�������RC��Acz�qe� WT���b���l�e�Գ9d���t]��X��� ]_#/aN:�Ҡ��!gfF�<9�:�.	�S=��Ț}�5��5�0�6ǰ�"v�J.�����6M�6��V�fY\�l\_&Zf �J@*�{��A�4YZԳ�%��	¬n_���@��.{�TK�`�G��/��=�������Ƒ̌��	>�@��Ir=��\����h�_�*x��`=m�5��i*��H@���o�qг`�ᯆ ��(���xY�l�I{���L��'7���zTɦ/@�-��68~����p�q��YHZ�ґ����Hm&1�AQ��j|�f|6
+��7nS�
����:�������� U'��tu�6WYsu���u��%���kF��Z�h|����e<�2��@=�z!?�	����z@
��[p8OV��R��3�#͇P~�X�r/Gi׈=b����\\�j�$+5zj������x�S��k<��@M�x�g�<���S�3,�ͰX�'F���p�SfV�T\S�	�KkpS�J^B���z�j�q�(�zU�3Fs�<.
���Yf�8EMOO��Z�RO��G6�hm���XG�	�Bd�Leh�����O�!Y5��Ԅ�i��*(���1�k�|����̯�T^°^�
+��~�����V�*/E\� � ��U���Ӈ�L_�����[n�Hb�q>��nN��} <��Jez�r���)��Y��y0����"7G3F7�]��S��a
v��5�t&�hә�Ŧ��M���]������������]���Z�1�x�u���3h�v��f��.���vs��k������x
,B�dN���<G�].�ݦ1
+m�_����
+��n���W�t��>�X�4
��58�]��w�p����J_e:�!�)W�l)(���[��k~�՗���rɳI���%�\�����c�¿'s;��$���m��-�0�Ȋ-Ꮦmi
���d�fҷ���eS8�9\K���Ѯ����P�z��_�!�C<���0�P��<���'��'ɓԗ�Y�ۮRфaJ,,˱�9F�/��t�Y��W7��p��U�!��0HDBGաv���¡��!T���bG�E�9��6�l \���yfd4�7�ўӏ��+s��_�ܒ��v˥M}}����)f��R�����|�0/q��������
�S�%Լ��R
����h�4���ø%�h�	���u�z`�m�kl�����W�^!'l��Ӷ�ُ�Q��^���e	$yն8��k��B���:�‚@��������Y�.�,�{�6D�?g[�Ԛ-
+��/�L?�<�/>�e)�v��7�ͷ�
+��c��y���N�I�Q@JD�䉘�����Ĕ{���v�/�5���~~��^x�x�Z��������|6�X�����=��~}�����Y<8uDǣ
슍��#�h5�O���,��
��[��6�6�����,�t�%;7�ML�=&o�L}L-,���<���$Vgו�Ο_ZRG�B�o�t+ꛅ8��XZ��i�f��L;��v6��{هt���{���^��a��{D�p�~U��!~�~��r�s�Lf5�s�.�
+L&m(r�o�M�HK�ЬV��x�o��2��
Z���	KS�!Dr�n�Y=O���{������mM���!r̯Y��2�d���MT��6�����"�
+B�o�*�˺��w
�:/~��B%�(C������@�P���������ҝV�> 
+�q㢻�bym�d�S�<�d+q�D�J���_%���,�q��?SYVe�B��/����ꩻ���@E$�9�|&�F�k(7K\��!9d��n���>[S�'�#�3�0-x������.r4ldv�_P�+0z5�	t2o�;�v�e�X��
+`r&˜�V�Y-�����%�bm�&cg�}w�'�
M��Z���j��?B	�f��:/7e�o�W�f�9Βn���e�|����K�I�x6!ܜ3����_�ڵ0uN��"��IB%#P�J"��(��t@40���$k���aw��R
+mFKC�͏��Y����|�\��x8��]�`�޳�f���˛��/���}Z�������g����/�>�;(�����G�*0���O���u����=�}�^�8د>��Y��'��Z��شN+ƺ�4g��P�Z�".�`�
+�l�/��ѕ�],��q+���bbr��d)�ݲ��j��q�gK�����⽄�O%OY*�k���HQ��RI��)���.�±(.IE*�}ڸ��֯���$�����7���_����26�s��O�
+Fut�Z�'<�j�vh�8��N�a������Y�����>ͫY���uN��k�I�9�\p<����p.�ے��zQE�\�����ls�����-�D(�xc�3ɦ�8ڒFoV�c�W�(�~m2r�D�T2l �8��X����]����i?�뗷-<���ɉ]���}D�;LfN�_xs���O�cd}X���Q,������/9��T��~������hWqV����8��P�1�]�pM<��"��nѕy�l@BE>r�%��T���U����d�:MpxdM�0�\p�]i�f�s��ٿm/�B%��J�KY+I��M�%q����9��u���[9�}�B>����}���9������v�F�m�mPGo��`v�u���A�I�i���(���4��^a0)��*QZ�㶲6��܂��lU��
+	�7���h�˜�.���s1�tyi�9�I�S,���E��W���kb�h::4/瑥�N
+�ӿ�#)TT2����3�������?�箋���+��G�vQ�?k[��r�������Hx(������n#Oy6>�3��>�.�Uf�V(�[�g��P)�R�)h���>��T�X�:����h�8M���`����F��j���>I.���楤Λ��2�>�w����P\T�E��v#
��z�A����]����
+d��{m\1��{�e����5:������M���I-���Kӕ\N��Q�1�ɹ�'�#e�LFb���5��F���iIR��w;L+�+=+��I�u�:�:��������M;���^�^�E���k���$�'y44���r�7TQ%{���V
&���)f�B�Ҋ�*D�폟���S�1���Ik<���P�8pp
+W��Rs���5\��e��充]�]&�vB���&Pf�*�6�Gq�^RD���~tڗ�����>}}�M|����,ܮK������y��Lm�����p��n?t��u�����B�[�K[F�o�I�Ǣ`�"Ŷ����0ب�.��������t�N�h�m�^5�v;(�@��9����f����
]�9�DM��O6��8}.1��Xou&+�Zs%ka�*���78��&�@��op��<1iP�����T��������z����x����ÝQ��}iW,g����j��@�'ǩ��q�w�?�9�=�?a8a:a>n=w�~�q��g��!�r��'�O�s,o�T�N�1�MM�n�-��&��Y�t�︚�"�iġ��N����:]�)��0��8Ƣx�X,��'�JL�Sc�
+}'�t!|��>#b��g[����hT��
+�G"�}}�^=y���W��yE����.Ǒc���_R����2=�Z�^��g?�>t\�x�,�%�n�s1�`$��*�*Z��M.D�Q0��Ϳ4Sf��Mva�&�P�ʿ+rD!rl!rDQb˿	+�V�ư������'�W����e.���QNfh�����M@k�^Ei4@���(h�A���V�,��[^�y��
+����cЈL��~�F�52�J���*�h�^ů��,�G���������=�~;5�g�n��;vߪ��.���H�HR��G%fC6ɦ�GNPOЌI#4&6J�I�o3���ۥ�����R��ZB�#�P��9�>�����I�մFmT��^5�\��nt�!F�G8
+a��e��q�o)4k��͆fc@��C��[׭�6t;���B���`/����7uo�S*�D��a\����9ǣ��.)�#!��0�H#���\�:ԖL����0���fbnWZ�3�cpm̬���?b~6T|��O��)�|���v��V�5>�T.��%�%�鱸r�*��>I���C��H�e�۵T�Gj9.�ᥦdS)��c��ԡ:��;��qWۥ��^������a��?����'�֏/X�������xs�+S'��4S��y7��6���=yvQaRRvVqee뽇����t{sܕ~kl`��V�i`]<�N�O�5&u�Q"�5v	OM͢��B�g~��"�s�%���jV+�;�X;�BSޡ�%K�3��6��Xr����B�
+I,q�"�J�U^���
+3�]c;�.D���ѿdꆭ�cm?���>r4\����u��(?� ?��Z�'��G��ޱR�߬R"��
+���F	��(���^�j4��;ԏ�i5Ɣgb��t-�D
�K�71Ř�'�1��S9��o���v�Ѽ(�cƚ�Q�?��e
��Srޯdj/o����y�WT�p7F����M{'�����eni~;R5�K���T�Ĵ���C�nj7���i.�V
p'طٿi��}�uKl>�D-dF�c�dߢ��j��h
KT�)�c�Z�h��,D����T*s:�ZMh4�Jΰ0�%��t�Å��ZӇ�?��Jq;�ڛ�
��E_�~�'�I��'�x�<^�)��?�W��>復Rq������N򼲿b8�ye`�?�{7���4�E30j`#�Л���F�C����A�iz/�4���s�=͜fmj�4�0��i�batEd�i0є��0����ma�BY4x�3Z�o
+/fg���V��e�q:��`��`L�k�2�.��,�ʫêcxY
+�c���
&�_(���S9�+!J��_���Ԙ�+��>R}8<c㿎�-�^����L&�� ]~����6�p��OR>y��y��̑����/��W��x���������,\yBժ���P_���<��0�^�;T���o~.�5�`��r˽�k�e����b��,+�܉�Q,ݱ�>,7�p.aم��=�9��Zm�B�Ffz1�W����r��@j��h��hW{@�c�=V�]��u����f�����q���3�,
+w.\CU���Lx�l�9���T^�������
+[Q���ƾL�B1�A�?�`qމ�*��Da"���Lp��f��Z�e�(�����Q�TUT:j��6�;�aa������
+��9��+�N�yY�MJ��
+lFXC���e��ت�|��qʳ��0�~v�k��*��2�+tҹ2��(�cw��9��rrƉ��ږĩ�d���8�uigGs���.
+���:�ɝ+���aqΊ΀�\kg���e�1��ܴLl](No]V��U��х��|�#�(6t��V4��SZ�����e�bɢ�K���X�zkV��Y��Υ�+��	�ج���@�qTNn^f���Q��C��h��M�Ha{IkKK�2�v[���E�/�o
�q|���X���ص�mo�X�����V����a)̂�4A'B�7��c�߃���|�󫜳9�\���#���n�f�n\�:�I`r�iL3�׏�2n��oxN�/�/�_>/��Q�~_v�U�f=��d/�ޚ���%�o��D�=1g���0��D6D�g��'_�/��H�����<����^G:�
�,g�0 ��,4��{E>�;�Q�M�M�k�N�'��\��r�y�P�Kx	K�d�+�Q���'/�ð�~��	�Gb�����
+G� @!
+d�_�ǧB�)k�z��8<��3��l�'��IY���?I~$x u����'�e9D��33�IZ�
$�����rH8+H�_LJ��g�J������4F؉���=��Y8�/<ѠT�G�Ǥ��Q)$O�'�	��zi��,�� Z͎>?%:^!U%R�Ǟɒ20�!D���Q�hg�\��B�T"��x��a�S�T�����q�3�^?�[���r�9\o:כ��&pq��7�^�kx�W�O��Dž"g��r�S�����wF�M(_�E?�$<��'ƕՕ:0TE��m�*v[����s���ӿ�9�ɴ��GP�K1,
+D�>�JN�6Gz��^y��#�7:���6�:���&8J"ޚi�Gg�?� �ȓe��)����w�]e��~zGi�54\l�A�\�h�� ��@?&��H�xI�)/O���$/��o_�PV�O��G�����D��Lg������F!�^A�$D/)(�H
+�DN)�����(&61�]��)�^����L�?qՒ��wFuRY�K]pS�"gpM�(�[�*�RJ]ÂEr]����%R��o����*O�J��ֲ9�������ˤ�Қ�Y3��nXk㵵�f~�d3�ɪ䵲��g�IΒ�j��j����g)k�5Ϟ��n��l���v��E�O�
+endstream
+endobj
+
+1312 0 obj
+7879
+endobj
+
+912 0 obj
+<</Type /Font
+/Subtype /TrueType
+/BaseFont /PXAAAL+Menlo-Italic
+/Encoding /MacRomanEncoding
+/FirstChar 32
+/LastChar 255
+/Widths [602 602 0 0 0 0 0 602 0 0 602 602 602 602 602 602 602 602 602 0 0 0 0 0 0 602 0 0 602 0 602 0 0 602 602 0 0 602 602 602 0 602 0 0 602 0 0 0 0 0 0 602 602 0 602 0 0 0 0 602 0 602 0 0 0 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 0 602 602 602 602 602 602 602 602 602 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
+/FontDescriptor 1313 0 R>>
+endobj
+
+1313 0 obj
+<</Type /FontDescriptor
+/FontName /Menlo-Italic
+/Ascent 928
+/Descent -235
+/ItalicAngle -11
+/StemV 0
+/CapHeight 1493
+/Flags 97
+/FontBBox [-420 -374 746 1027]
+/FontFile2 1314 0 R>>
+endobj
+
+1314 0 obj
+<</Length 1315 0 R
+/Filter /FlateDecode
+/Length1 13112>>
+stream
+x��zy|TE�pխ[�v�����$��;�NYI!-BaGd�!�,�	KH�@��q ��8� ����F3b��q�P���������}
+I坺�	 ��?�o�9��[�N�s�,Ս0BH��#��@EmY��qc�����be�땾&B�S�c���k�E��C��_������h�(��j��*������a5Сۥ��h'��6����|�S��*��@=9��-[U/���Dh0�D�%e�U��?��G��_��-o�[��A(=���/������Nh�|�;�È��a	��?,���T�5ZE��!d@F�Lf�,V�#qD�H^F!'<�cb�\�xO�71iP�������9$+{�^���=�E�����a:�7�#�ׁz��#�&<�D7jC{�o��t�W�6�uB
+3�>T��OBﻨ>;��݇Ρ�h+څJ�<�^L(���e!��8:��Q�P
��F��}�4Z."z+��gB
+�:�#TNO�]�N(O�oP9� COK6ك?RwӁ_���T���o$��R�#6�/Q��&�h!z��Fm��I�x�X�~�T�mR@�	�b)�l�K�#<����:(̠S�T�c5��G}����
+�\��n� �#���I���3�H�,h���p���V��\�܎vH&�Z�Ց|��c�%�Z�܌�#����H�R]�.�;���?���V�;-�gM�Ivu�i]a�]���iE��w��.��t�^�g�4�YZ��iE��sc�CXǖ�C��"��tC������S'�fZџ0�V�}(?�0� 2o.kR]���p)4���1�
5%�5V7��S����2�r�k�����RK��R��,Z�ς"w���9P�*.��#�x���!U��^ҧNvu��iEӋ���;����N��5��������Nwq1�6@)��"B4���P1����.T�eK��qw�߲Ź�j��u`���#�T��;6��OS��{�N��q{�@g1g���~,P�.NmP
�)��}`�d�׋g�tk�]��2�O]�L�.���i5��^��]#������9�)~�n���<
�\#����
+�L�3�2��F
RR2��l�X�[vN<P�D�n,c?�ӽKٻ8�7�Tc�� O	oI�@��c9�V�*���`���c��T
+��.�Ӏ��#>*FfT�C�sH2�? 
+���A�!�#��`��A�@M�)����)T��ð�hRΥ�l�W|���DZ�ml�8�3�m�{��o�]s�����������C�~��;�[�MH��8�i;[%*���pJ��&g�Xݹn+I,�/�٘���,ߍ_,7��O�������ʏìK�'^���/r޹	���Y<|({�W��?l:�]*�Q��"�A84��3?s��o���p�iUNs@�z��-ޅ5���.�����b�7��=����>���&�Dө�_��3A'��8�H��=�Ǥ?�Œ�}�����++�CGh-�*�#�1u�a" Y�D�Y��rq8�"�8Q���?�˺���@�8|[ضW�lj�{���W�P�M�Ѱ{�z����2ހ�<x���;6��ߋ���V�Z��}����#؏�
+���A�X��#�PA�˨B��4	Qd��!Eg:u��tܒgv�"�
A�.�[�M�+���x�1��fc���w��{p�	�p����NqŔ��+�;�� ���{9�l��
�gt��N�a���<X
+�%u���*,e"HZ]�r7�•��A��D�Qb��J�M_�
+/��sQ��DO�$���Y�v�$����W�7�M"�/�}�����e�/���>p���[<��s��gH֫���q����6gT���)@�|P��I*���LazS� mE\٠�+�������Ӆ�M�>~����2�-<;k�J��sc�$�Հ=�9C��S(Ȓ=xRâ��X���n���w��W���]��+��L}k͉�S���{L~�lX���ؚ���g�x�pvV/x��ʯf�����l�C�5V='E�U\-6��~eF�4J+e��E�l깘�ɽ|ё���8��{�!3����v����ہ�ބK���Tl�+A��E�q��8�˚�92���'3�+���6�|;�v�.8A'������L(e�J���D��`���r��+�j2]K���:ʵ��J:�*�*�FUR9���:��p��J8�������mO34��
+y�J
+�Ț�eZۀV
XlZ��#j��0uY\:�W��e�&-��E�
+E[a��+�5qإ�iCTg�F�Q�D"�-��6���*��ݢ��\U��O���3t̊�1	���*^wP�c�݆�1�]�c��ۚ�.?�ǺfV���� ��y#{��c#��{�=�oQ�P�Fn_7����ݻ߷9[�_���5��.�Q�����C:�"�@(B:��
����(����0L����Ù�Vl���a�'����ނB��ջ�F8��g���u���S���@�%�G�f�S5T��@���rz���k4�-�E��@˿$Ńב:w��B��������	���*
S���3����ى4%{�x/����&�x�X1(��X�Z��+�e�j�D���ɖ�Hi0��`�!c�԰S��~�o��J��!hr�%�=p���/�Z17�VO���=�_��vy�_�IǴ��L��mz���ԩ��Ƕ�/�N9�w����~*9Q��1�Z;x���FΜ>tOٲ����׃7w��ϻT���NjT��E�STi��Z��)XIw;�=A����O��q	�fo��>wϫn��){8{u]g��!軧º�
�G��G_�O�@E�SI�f^P�.�lA���aL8��C~&��rKB����Ag����hY1����]l���kmK#*�x-Z*Vx��U�b�8�S��i1Ȗ�A�!?~����k���%Z�CP~jQ��p���$����dk�-ٞ���	��S�H�#�Ah$x�^���
���Bk���^n�����A�qX=����$�c�c���q�Pg_lJ��̜'?(߰�����쳚�+��߮򽢍U�xV�=O��{ۈ}��
J�zj�����N���2�$��۱���G;0?�!#�?V侕p��T� YS/aY�Tc:u�TP(��eܤ<��l�����f)}�,����4E]�MX:��L�'a*p'"�q�s�4�	x�Vx��˻���:k���@�1
+?��؎7�Q�����m�4����h(&�B*�
������o��o���v�����i~�m#�0_�^>_V�dw���=��C�(+���|C�~�?m�؆Լe��(ȹ�P:��_�v�����hj4�('b���zj0��f�5
>�E{
Qf-��m�%���ߒ��V���h'�#H6G%)NN�dG�i�ɘ��������Kf豨��5�2E�|�uOP��$���r2���9I�����]l׷�=����4v��!t��C��?�#���l����jʂvl�@<���'��
&�籚p��!%����?IԼ�pM�^�� �����{W�Y�Y�j���B���l�8�����)�:�V=����o��,wߓ�}0)i�vWM����$xq/��b6	�H<�N&j
P��s	�n�I�ج��^����-H�bG-�U�M	[��=^���X$]DB�'Q�蜧�t=j�|�%��^oְk\P�D�B�QI\9g���C�fn���-�#�U�;4c”�k�7�G��ו��b�����
+��k�Hf�d;�t��u���.�v�a)�a�6�2�XѬ���bm�o"U�82Fꌒ��;��gb�/�����
I���5?rR��ħJ>�Ǣ{��X�q�w�w/�1|���K�43;)����
�+�(OI9�V\<㣚���i�>�^>F��nmT"#�(���n�Y���<j��|��x�-QU�M֭v�-�(Yl�c�t1��(\�Z��[�'$Ӎ������������)ڔ>dXu�ݛ3���\`'�;�������N>���!r~֬�ϗ�__R4��Vm2c~��ZP��mؽx�Y\Oˁ�b3�>��)ţ��ʬ�bOKX�RK������\щ
+�#]�)I=� 's�qA�եLT��&F�Cu�N�#uںȺ�:g]t]�2��*�o��+���)��jh:�*�X����_�Z8���#�}�Iڽ���2a��cZ���ގ��������%��_5�5Զ����
ր�?򵢅�<��t��L:��:-�8����^�Y�-h�AjUa6����x�O�EF��@)/�U�LJ/d��$�,�5Ӏ Ar2�ψ�#��sq�+���(����1v:'�_9*�~;����'��l��ʓ�f�	��4!���=@	�R�nL�!ଌ�q��+�(�	�ܘ����)dP*�mtŤj�}Vx$jqE�X�`�]�mi�iRtL�QL���=�as�Nۅ6���b��Vz�sKm�ٖ��<�E�~&hGn���ژ>$��r�G�k��f<>�;�w�~���{f��C�&L���jW�3�����Ӆ�ٳ}�-ٷ�F;���Y1�O[�ua�ڲ��6��d=d���PT	�2�%��R��\���sm4�4�pt�A#��0A+-�M��l0Q�9L&��p\�	�!{�������q����5
0�'S��a!݇$ ���JbvK��9��=�n
+��@��g˷��	�z'	/����鳎��m�l���ʷ��5W�-�#D.�~���k����z]��u~�"��-��f�*	��6Q���|�a
+�4V����Nus�;B���#�뒘뀇�w6��j��1\ӳ$�>����i��'�����|��)�Br�+���7p�L�"/��<��������Ai��ͤU���f1x2@yʭ��&�h���Ѣ���E5������ŔAb�)8�Q�����h�ù�<�⾜�O�m���~eO��/�>��>��t���Ӹ!>���*��j�F�t�Y+V�U
��mU$E4���L����p����I�W���>�;���J����3��l-�\i6��)x����8���_��d�ى���q¸�lT0�L��������g���dĹnUU%�fK��Yc�ؐQo��D/ie�I�-�����`X
+�.�\4�h�*�Z�۸�S��8��"Y.�磸�������u���x�g�e�=��N�ƾ��ƥ�S���hgT$����p������
¨E�sC�
�7����^�;®���Ub--�dSBk|�����k%����N�=ܨ ��xm�(N	O���ӥt�EM#,�^�0����aĥ���v�l�oT� &w��^B�}�AaR��n�^�\����z������,�o����l��gO.Hi��l5g�4=�y�����:����R������_��(l��"b��
�{�	ʖ:n�5~ٻN,-1jr����4���l�����^����(���s�f;x6ີK�����V@�R{ա���%/�7٫b�:#�EĪaJ��h&��<����&&]�}��w��`^��3&���G�2c�]��y��~ܰb͆
{>~o��v�ʳ'Z�ai�*5��c�P�:�G���z<��!6�Eb�M-��JL�g�!�N���勱��cZ4��UxiMĉ��F�t"I`x:�-AG�/�|Ӎ�>�6�}�M�?��pZ ���{��k��w�T�~1}Sڐ���ز���mIi�Q���6�钕k
+&�=��K׭+)*���i#��g@�^>��G��Jj���S���'FT��j|�$2�
+�&m��VͲ֬�i,�`Z��el�'��_T.Ш`.pM�b{Z�}���(p&0h�����թ����{V,=��^�G�I����������a�QO�.�"\u�]>�����,\"B$Ua�ؒ��R5إs�e��e�,'�ť��}��ˍ�6��6���R�
��p�#��${Rx���D�o�/FŸX(N^��‚��h5^-4��W'���w��]Ѷ8{\�ӑ�\(	�p�=#<���h<^�0r������\��M
+]��?1�3�wwn~�Q����}zizW�w�fn��mQ�lX�5����eT�..
+����ϟ�x���4ή*�{��η����@*�c(����FDF �SM���<yy:�Q��lFܪ�������@M ��w0�l�2�?r��Gt_̺�]e̓�[�%+A��'���FI�Z�~���~��6���8e$}������>:gG������
�Tu���s�V,��l�O�7$ZEG4zj4جb�+	�YI�ff}z37��[Un5�
�a�K`J��h3�8GT(Et/F���g���
ޤ�N
�]�f_��ֶ�p���s��.w����'>��]Z��-�7?⮻?-��ھ��lǽIs�>�̎�>��1↸Lpc��_sK؍��j��t`�D$�N�<��t?fͶb�X=���F��K����ک�ӣo��tN���N/t
+��u�odܲF�@�F#s:�Ht�}
+XP
�P�N��+�:���44�߅�H��T>���_3U�)F%�ĉq�`e��"�)��}\y\��U�U�@�"�l�n0I���P�x:F��+!%��"R��Q*t��*�Z�Bw�f��^�[�ݡ�O~�ٯ���s��-*g���2b��!x��,���`R�0���|�]��ݮ�t}G@>X����?AtS"|�_�O���*�:8�uk8�$Y�D�eɧ�"5 ;��A�,�I�����U��Ư�L��Zq�V�Tk���Cx��ټ�	C���3x�X�{��5�"�
+=[���g�7�
�[��q7��|�A��Y�n�/( ܇���W�fcĦ�y���j����d�Uk�j L��&�Ȩ�ܭ�p���u�d�����(L��e��G��~S�p���+F��y������f��쫉S&ힳ�@�ڳ�̽��Z��&\?5|C>�d����@�HJ�&B�x�wX��؍G�tw��Š���nb���M����7��r��Y��?�8�{�QK�zC�^~T�8�go/�?j� ��uO�����'{��30��~��#�D5��c�I<
�����p���@i	� �(
+B�N(��l��[��P	��&�ɇ�u�	���h(�1M����v���s�w��PgP�X�@3���}G�������C���q`F=��H`�0�`�G���@�!�ӵ��`��}�g�B���S��_qA��:��<z��������E��)Bf�,]އ��a��#�.#~�!�4�"��܅P�s8�PL*�����8xǵ!7̋���s�R��SP
Xg���+�^�QuԨ��$�����~�1T`��P��x��P]��/T��C]����P]����uxh�?Bu�|Ϳ1�0ӂ�Bu-�`s���	���OX����“c��W/[0�����++33�uG}��*��%�����0W�jWA��څuK�F����
+������ayò���� �;/v���,wͨZ^�leUe��UK�Ml([��B�����\C��3+�Te��K��I�y���j_��,w��
+��UVՖ-[䪫�n+S�/kX��j����ں%��6���`�Be�M��Z�妠�h1�-Gw�s	��w�]��\���g�F�@���
+ʻ��J�	#+�s��_������Wu�B�-��`���_=�(�������e�Zr�|xw�:��O���wR���{*a��]�A_`��T�+V�
+�*5�C�|�����a7
�G>��F�����;��z�3�*B�*�Z�o=��&��ՙ��N?_�cKT:��<���^}+T�ˡ��������!^)��}��G�}p/��8��€�޿�,#����+#�0��nr��S��S��#/�0���I>`�}F�3�wy������7y����H7#�e�W��W�����9~\|�X1}���z��K��X19�_J$/͠/^!G3�Fg������b�yX�y(}'�}������U�?�$�U�?1����v1�<������(�|:�v^!OG��;�S��ȓ���IF����w��O��^F�(��'줽�<�#�A�1�#{U�FU�nF~�ȮB3�M	';��N�0#;v������<�H[umcd#��<��V��Ȗ0�����
+�_OZfyiK%ٴ�(����_ϡ�����_�祿�C~���_1�a'Y��1r/�2����J�TI��j_3Y�H##+Y�H�rm�"�
d��,�7ӥ�H���1���ZF/���+ɢ�&�(�,4�
+�ad>\F��"2Z�He:���*v�r�B�����e��ΛCK�����{�t�2�/�ed#��=�(��KJ`F���H��2�5�K
+��nF
+�9�Lg22�L�32����jM��$w22e�<��NfdR3�h v���32���Y��hz�8��F��ɨ��>�FF��파`�6F|y3�o'�>���$��\F�1�s�=J��bd#��d��h���W���H*4Rm$EG3�l#�I�h�N�Ȉ�I�Y$�#��4�B\��h\%�5��h��d�h�D�Eg��:�I��DR��I"^��CN^Έ���Xa�ʈ�oa�hͣ�i'1‚FF�D
�$�=#:xW��(�h��M8�EB��0����4BLD��LW�8� �����؊S���߹���?�p��B
+endstream
+endobj
+
+1315 0 obj
+8848
+endobj
+
+924 0 obj
+<</Type /Font
+/Subtype /TrueType
+/BaseFont /PXAAAM+GLYPHICONSHalflings-Regular
+/FirstChar 1
+/LastChar 5
+/Widths [1000 1000 1000 1000 1000]
+/FontDescriptor 1316 0 R
+/ToUnicode 1317 0 R>>
+endobj
+
+1316 0 obj
+<</Type /FontDescriptor
+/FontName /GLYPHICONSHalflings-Regular
+/Ascent 1083
+/Descent -102
+/ItalicAngle 0
+/StemV 0
+/CapHeight 0
+/Flags 4
+/FontBBox [-145 -83 1250 1083]
+/FontFile2 1318 0 R>>
+endobj
+
+1317 0 obj
+<</Length 1319 0 R
+/Filter /FlateDecode>>
+stream
+x�]�Mj�0��>�����$Ӕ.B�LȢ?4�[I
�mg��WV�)ta��zO~H������=z�c��:q�k�N։�cu�V|�Y!��oK¹s�M�K����Nȷh0Z7����Sݯ!���.A!��4�E�W5#H�;C}��#y��[@��.�0�\����P4E�Bs����׫w�0�oIY���n���2����>sIR��T����K^�-�^c��-���Z������/�&x
+endstream
+endobj
+
+1319 0 obj
+247
+endobj
+
+1318 0 obj
+<</Length 1320 0 R
+/Filter /FlateDecode
+/Length1 2808>>
+stream
+x��V]lU>��������������v����v�[ڲEAQ+�QK����--$<����> �>B4&*Pb��@�L| F&$�@���bb��;;�R0�3{��Ιs�|���;�
+�
+l���ўq*�a�|@|��S1H���D�08�{���/�P��o��{���
����<7�e5�B��C�S��)��_P����@�dum�g�8l��M�c;zF��-{�,�;8>6952H������F(q�2A����ׇB
+[1�b�@��Q
s��뙣�x�c�Q�p�q���s�Dnv�no�V{뚽5)��x��
�y9E�b�>\�#�@fo�^2��I�ȵo6W��RMu<тz;�#��%���3��	S�?�$�P��LF�u��D�^ׅ#�@�`�q� {
��
+Dn^֕�A�C^���aE��,���С���L����i�@��F�(�H6!.PeH�ݦz��[�Ξ/M�ĵ���(�٧�o�%dzɣ�ԅ�|j/9�� ����:��#[?2����ú%�ĸ�f;	�v�LI�k�,�[֒M3M\��r+���\;#g��ע��2-�O�Z���ģ}"GS5�x�ꎶ}�Y\,���mؐ	��i|VP.�5��>\�5R�ݹ����[WJ�\�]O_���A��?J8ۼ?�`���Y3$�	5fά�9��W<����o�H�$i3Rt/f�9� $��#�}��Nu����l�#͠��+J�j62%��e��4I�/�QYJ&r-�si"q%���VE
+4�(�|���LkM�d�@�(�$�4MJ2n���
+��#W�����=W�H��`e�����N���5��J)N���l��@��l��Ǭ�����hu-�4��G��tj�ѬDz@ L-�Y~�*R�B���$RUd�c	�K%�,�\J}�*U������#�Z=�j�W�Yo�r�������n��L央Zr|"��t�	)�P��+�D�7PQ)�>�M'"��X�eC%TUk,�D<.�W���TF
�Yq�����b�/hy�z3��|̥ZI3.�喉���Z�O��#.UU�0��י���:t�E��W����ӓ�ޞ�7Ϳ'^�7�ϩ҅q�9��-7�/:_�;�D�C
+����>��	8IRd�8$�lB�Jߝ��vr��>{w���˨�0�3y��)hp����9�
+E����,A�|��2��v!���*�R��n�Y�?��3��9|
�����A9=533��/���p�؎�t��(<c0���0C0��܏pd�O�,�m�4O@��y�O#��۱71X#x�e���~��q�Fه�k�[`#�����)،~k1������4��N��4ad#���}�ޅq���uo������bK➳���cvs�h�h��u�:��S�k�O/D�!��F1�v��}��߼
;��{�B3j��e��_��[g�;��#����{�a=�V�F�3�.d�
�s��BO�����zm+���3m�.�kw��c���y+�{m�����������^)��e
+endstream
+endobj
+
+1320 0 obj
+1548
+endobj
+
+1321 0 obj
+<</Producer (Prince 11.3 \(www.princexml.com\))
+/Keywords ()
+/Title (| Jekyll theme for documentation)>>
+endobj
+
+xref
+0 1322
+0000000000 65535 f 
+0000000016 00000 n 
+0000040819 00000 n 
+0000045363 00000 n 
+0000046162 00000 n 
+0000047595 00000 n 
+0000052637 00000 n 
+0000057980 00000 n 
+0000061561 00000 n 
+0000064832 00000 n 
+0000067975 00000 n 
+0000070068 00000 n 
+0000071950 00000 n 
+0000075383 00000 n 
+0000077067 00000 n 
+0000079334 00000 n 
+0000082661 00000 n 
+0000085696 00000 n 
+0000088487 00000 n 
+0000089888 00000 n 
+0000091332 00000 n 
+0000093881 00000 n 
+0000096587 00000 n 
+0000099752 00000 n 
+0000102172 00000 n 
+0000104058 00000 n 
+0000105551 00000 n 
+0000107025 00000 n 
+0000109408 00000 n 
+0000111274 00000 n 
+0000113227 00000 n 
+0000114724 00000 n 
+0000116605 00000 n 
+0000119490 00000 n 
+0000121918 00000 n 
+0000123325 00000 n 
+0000125359 00000 n 
+0000126965 00000 n 
+0000128806 00000 n 
+0000131872 00000 n 
+0000134700 00000 n 
+0000137118 00000 n 
+0000140473 00000 n 
+0000143156 00000 n 
+0000145905 00000 n 
+0000148862 00000 n 
+0000151967 00000 n 
+0000153328 00000 n 
+0000155747 00000 n 
+0000158110 00000 n 
+0000160274 00000 n 
+0000163047 00000 n 
+0000165316 00000 n 
+0000167757 00000 n 
+0000169651 00000 n 
+0000172189 00000 n 
+0000174350 00000 n 
+0000176126 00000 n 
+0000177417 00000 n 
+0000179430 00000 n 
+0000180473 00000 n 
+0000182644 00000 n 
+0000186246 00000 n 
+0000188907 00000 n 
+0000192108 00000 n 
+0000192730 00000 n 
+0000194780 00000 n 
+0000195812 00000 n 
+0000198188 00000 n 
+0000199671 00000 n 
+0000201833 00000 n 
+0000204206 00000 n 
+0000206878 00000 n 
+0000208320 00000 n 
+0000210130 00000 n 
+0000213409 00000 n 
+0000216148 00000 n 
+0000220009 00000 n 
+0000221860 00000 n 
+0000224037 00000 n 
+0000226753 00000 n 
+0000229177 00000 n 
+0000231290 00000 n 
+0000234113 00000 n 
+0000235834 00000 n 
+0000238735 00000 n 
+0000240477 00000 n 
+0000242547 00000 n 
+0000244722 00000 n 
+0000247588 00000 n 
+0000249901 00000 n 
+0000252390 00000 n 
+0000254755 00000 n 
+0000258894 00000 n 
+0000262278 00000 n 
+0000264639 00000 n 
+0000267504 00000 n 
+0000270046 00000 n 
+0000272168 00000 n 
+0000274452 00000 n 
+0000277531 00000 n 
+0000280204 00000 n 
+0000283220 00000 n 
+0000286965 00000 n 
+0000289880 00000 n 
+0000293116 00000 n 
+0000295142 00000 n 
+0000297722 00000 n 
+0000300607 00000 n 
+0000303964 00000 n 
+0000306906 00000 n 
+0000310350 00000 n 
+0000312816 00000 n 
+0000313924 00000 n 
+0000316327 00000 n 
+0000319253 00000 n 
+0000324902 00000 n 
+0000327575 00000 n 
+0000328278 00000 n 
+0000329861 00000 n 
+0000332957 00000 n 
+0000335217 00000 n 
+0000337814 00000 n 
+0000339904 00000 n 
+0000342030 00000 n 
+0000344371 00000 n 
+0000346829 00000 n 
+0000347951 00000 n 
+0000350371 00000 n 
+0000352928 00000 n 
+0000356621 00000 n 
+0000358835 00000 n 
+0000361288 00000 n 
+0000363830 00000 n 
+0000364895 00000 n 
+0000367235 00000 n 
+0000370157 00000 n 
+0000372378 00000 n 
+0000374660 00000 n 
+0000376859 00000 n 
+0000379233 00000 n 
+0000380098 00000 n 
+0000383003 00000 n 
+0000385023 00000 n 
+0000386029 00000 n 
+0000388117 00000 n 
+0000390247 00000 n 
+0000393202 00000 n 
+0000396313 00000 n 
+0000399291 00000 n 
+0000402069 00000 n 
+0000405139 00000 n 
+0000406968 00000 n 
+0000409568 00000 n 
+0000412639 00000 n 
+0000415264 00000 n 
+0000418335 00000 n 
+0000419529 00000 n 
+0000420981 00000 n 
+0000427625 00000 n 
+0000431325 00000 n 
+0000433727 00000 n 
+0000436581 00000 n 
+0000439525 00000 n 
+0000442106 00000 n 
+0000445036 00000 n 
+0000448411 00000 n 
+0000451544 00000 n 
+0000453766 00000 n 
+0000455169 00000 n 
+0000457084 00000 n 
+0000459769 00000 n 
+0000461895 00000 n 
+0000464370 00000 n 
+0000467039 00000 n 
+0000468222 00000 n 
+0000470155 00000 n 
+0000472663 00000 n 
+0000476038 00000 n 
+0000477600 00000 n 
+0000479386 00000 n 
+0000481668 00000 n 
+0000483989 00000 n 
+0000486929 00000 n 
+0000488671 00000 n 
+0000490665 00000 n 
+0000493481 00000 n 
+0000497157 00000 n 
+0000502484 00000 n 
+0000510214 00000 n 
+0000515067 00000 n 
+0000517318 00000 n 
+0000518498 00000 n 
+0000040752 00000 n 
+0000000082 00000 n 
+0000000171 00000 n 
+0000000274 00000 n 
+0000002794 00000 n 
+0000003316 00000 n 
+0000003690 00000 n 
+0000003850 00000 n 
+0000003978 00000 n 
+0000004917 00000 n 
+0000005904 00000 n 
+0000006624 00000 n 
+0000007859 00000 n 
+0000009033 00000 n 
+0000011296 00000 n 
+0000011654 00000 n 
+0000012399 00000 n 
+0000013587 00000 n 
+0000013965 00000 n 
+0000014730 00000 n 
+0000016401 00000 n 
+0000016654 00000 n 
+0000017306 00000 n 
+0000019547 00000 n 
+0000020557 00000 n 
+0000021760 00000 n 
+0000022001 00000 n 
+0000023302 00000 n 
+0000024178 00000 n 
+0000024666 00000 n 
+0000024904 00000 n 
+0000025148 00000 n 
+0000025788 00000 n 
+0000027226 00000 n 
+0000027712 00000 n 
+0000028084 00000 n 
+0000028596 00000 n 
+0000029214 00000 n 
+0000029734 00000 n 
+0000030104 00000 n 
+0000031775 00000 n 
+0000033648 00000 n 
+0000034558 00000 n 
+0000035062 00000 n 
+0000035445 00000 n 
+0000036084 00000 n 
+0000036989 00000 n 
+0000037265 00000 n 
+0000038940 00000 n 
+0000039093 00000 n 
+0000040608 00000 n 
+0000001056 00000 n 
+0000001198 00000 n 
+0000001327 00000 n 
+0000001451 00000 n 
+0000001569 00000 n 
+0000001687 00000 n 
+0000001825 00000 n 
+0000001945 00000 n 
+0000002089 00000 n 
+0000002221 00000 n 
+0000002339 00000 n 
+0000002455 00000 n 
+0000002567 00000 n 
+0000002686 00000 n 
+0000000394 00000 n 
+0000000504 00000 n 
+0000000624 00000 n 
+0000000745 00000 n 
+0000000909 00000 n 
+0000002991 00000 n 
+0000003089 00000 n 
+0000003211 00000 n 
+0000003470 00000 n 
+0000003578 00000 n 
+0000004089 00000 n 
+0000004193 00000 n 
+0000004317 00000 n 
+0000004437 00000 n 
+0000004556 00000 n 
+0000004701 00000 n 
+0000004818 00000 n 
+0000005076 00000 n 
+0000005198 00000 n 
+0000005312 00000 n 
+0000005434 00000 n 
+0000005550 00000 n 
+0000005675 00000 n 
+0000005791 00000 n 
+0000006063 00000 n 
+0000006163 00000 n 
+0000006282 00000 n 
+0000006410 00000 n 
+0000006522 00000 n 
+0000006816 00000 n 
+0000006923 00000 n 
+0000007043 00000 n 
+0000007176 00000 n 
+0000007302 00000 n 
+0000007445 00000 n 
+0000007585 00000 n 
+0000008022 00000 n 
+0000008124 00000 n 
+0000008256 00000 n 
+0000008382 00000 n 
+0000008525 00000 n 
+0000008644 00000 n 
+0000008771 00000 n 
+0000008911 00000 n 
+0000009200 00000 n 
+0000009313 00000 n 
+0000009436 00000 n 
+0000009551 00000 n 
+0000009676 00000 n 
+0000009823 00000 n 
+0000009949 00000 n 
+0000010076 00000 n 
+0000010190 00000 n 
+0000010311 00000 n 
+0000010434 00000 n 
+0000010775 00000 n 
+0000010937 00000 n 
+0000011062 00000 n 
+0000011198 00000 n 
+0000010642 00000 n 
+0000010546 00000 n 
+0000011444 00000 n 
+0000011545 00000 n 
+0000011801 00000 n 
+0000011905 00000 n 
+0000012022 00000 n 
+0000012251 00000 n 
+0000012139 00000 n 
+0000012546 00000 n 
+0000012675 00000 n 
+0000012810 00000 n 
+0000012958 00000 n 
+0000013073 00000 n 
+0000013192 00000 n 
+0000013334 00000 n 
+0000013471 00000 n 
+0000013746 00000 n 
+0000013855 00000 n 
+0000014120 00000 n 
+0000014230 00000 n 
+0000014353 00000 n 
+0000014485 00000 n 
+0000014611 00000 n 
+0000014883 00000 n 
+0000015004 00000 n 
+0000015134 00000 n 
+0000015285 00000 n 
+0000015420 00000 n 
+0000015559 00000 n 
+0000015682 00000 n 
+0000015806 00000 n 
+0000015919 00000 n 
+0000016036 00000 n 
+0000016165 00000 n 
+0000016292 00000 n 
+0000016564 00000 n 
+0000016812 00000 n 
+0000016920 00000 n 
+0000017049 00000 n 
+0000017175 00000 n 
+0000017466 00000 n 
+0000017564 00000 n 
+0000017681 00000 n 
+0000017796 00000 n 
+0000017925 00000 n 
+0000018051 00000 n 
+0000018260 00000 n 
+0000018728 00000 n 
+0000018898 00000 n 
+0000019022 00000 n 
+0000019155 00000 n 
+0000019318 00000 n 
+0000019443 00000 n 
+0000018177 00000 n 
+0000018423 00000 n 
+0000018520 00000 n 
+0000018631 00000 n 
+0000019728 00000 n 
+0000019837 00000 n 
+0000019954 00000 n 
+0000020073 00000 n 
+0000020212 00000 n 
+0000020326 00000 n 
+0000020441 00000 n 
+0000020703 00000 n 
+0000020815 00000 n 
+0000020946 00000 n 
+0000021166 00000 n 
+0000021329 00000 n 
+0000021496 00000 n 
+0000021635 00000 n 
+0000021908 00000 n 
+0000022151 00000 n 
+0000022253 00000 n 
+0000022363 00000 n 
+0000022508 00000 n 
+0000022638 00000 n 
+0000022751 00000 n 
+0000022908 00000 n 
+0000023051 00000 n 
+0000023173 00000 n 
+0000023450 00000 n 
+0000023558 00000 n 
+0000023677 00000 n 
+0000023814 00000 n 
+0000023949 00000 n 
+0000024079 00000 n 
+0000024326 00000 n 
+0000024439 00000 n 
+0000024565 00000 n 
+0000024815 00000 n 
+0000025059 00000 n 
+0000025297 00000 n 
+0000025411 00000 n 
+0000025541 00000 n 
+0000025661 00000 n 
+0000025936 00000 n 
+0000026038 00000 n 
+0000026155 00000 n 
+0000026267 00000 n 
+0000026376 00000 n 
+0000026499 00000 n 
+0000026630 00000 n 
+0000026748 00000 n 
+0000026869 00000 n 
+0000026991 00000 n 
+0000027109 00000 n 
+0000027377 00000 n 
+0000027488 00000 n 
+0000027604 00000 n 
+0000027861 00000 n 
+0000027977 00000 n 
+0000028246 00000 n 
+0000028359 00000 n 
+0000028484 00000 n 
+0000028752 00000 n 
+0000028867 00000 n 
+0000029002 00000 n 
+0000029115 00000 n 
+0000029376 00000 n 
+0000029492 00000 n 
+0000029630 00000 n 
+0000029892 00000 n 
+0000029996 00000 n 
+0000030253 00000 n 
+0000030356 00000 n 
+0000030465 00000 n 
+0000030586 00000 n 
+0000030754 00000 n 
+0000030938 00000 n 
+0000031080 00000 n 
+0000031220 00000 n 
+0000031385 00000 n 
+0000031526 00000 n 
+0000031651 00000 n 
+0000031934 00000 n 
+0000032054 00000 n 
+0000032175 00000 n 
+0000032464 00000 n 
+0000032613 00000 n 
+0000032752 00000 n 
+0000032919 00000 n 
+0000033069 00000 n 
+0000033236 00000 n 
+0000033386 00000 n 
+0000033547 00000 n 
+0000033817 00000 n 
+0000033920 00000 n 
+0000034052 00000 n 
+0000034179 00000 n 
+0000034318 00000 n 
+0000034449 00000 n 
+0000034721 00000 n 
+0000034832 00000 n 
+0000034952 00000 n 
+0000035219 00000 n 
+0000035327 00000 n 
+0000035612 00000 n 
+0000035726 00000 n 
+0000035846 00000 n 
+0000035975 00000 n 
+0000036695 00000 n 
+0000036849 00000 n 
+0000036253 00000 n 
+0000036359 00000 n 
+0000036474 00000 n 
+0000036594 00000 n 
+0000037153 00000 n 
+0000037423 00000 n 
+0000037570 00000 n 
+0000037775 00000 n 
+0000037924 00000 n 
+0000038085 00000 n 
+0000038290 00000 n 
+0000038439 00000 n 
+0000038600 00000 n 
+0000038805 00000 n 
+0000039441 00000 n 
+0000040456 00000 n 
+0000039212 00000 n 
+0000039325 00000 n 
+0000039594 00000 n 
+0000039833 00000 n 
+0000039954 00000 n 
+0000040080 00000 n 
+0000040281 00000 n 
+0000042287 00000 n 
+0000042659 00000 n 
+0000042681 00000 n 
+0000045340 00000 n 
+0000850737 00000 n 
+0000875775 00000 n 
+0000885824 00000 n 
+0000844877 00000 n 
+0000045667 00000 n 
+0000046140 00000 n 
+0000894847 00000 n 
+0000046361 00000 n 
+0000047572 00000 n 
+0000048100 00000 n 
+0000048237 00000 n 
+0000048375 00000 n 
+0000048513 00000 n 
+0000048651 00000 n 
+0000048789 00000 n 
+0000048927 00000 n 
+0000049065 00000 n 
+0000049203 00000 n 
+0000049341 00000 n 
+0000049479 00000 n 
+0000049617 00000 n 
+0000049755 00000 n 
+0000049893 00000 n 
+0000050031 00000 n 
+0000050169 00000 n 
+0000050307 00000 n 
+0000050445 00000 n 
+0000050583 00000 n 
+0000050721 00000 n 
+0000050859 00000 n 
+0000050997 00000 n 
+0000051135 00000 n 
+0000051272 00000 n 
+0000051408 00000 n 
+0000908657 00000 n 
+0000926552 00000 n 
+0000944453 00000 n 
+0000051545 00000 n 
+0000052615 00000 n 
+0000053058 00000 n 
+0000053197 00000 n 
+0000053336 00000 n 
+0000053475 00000 n 
+0000053614 00000 n 
+0000053753 00000 n 
+0000053892 00000 n 
+0000054031 00000 n 
+0000054170 00000 n 
+0000054309 00000 n 
+0000054448 00000 n 
+0000054587 00000 n 
+0000054726 00000 n 
+0000054865 00000 n 
+0000055004 00000 n 
+0000055143 00000 n 
+0000055282 00000 n 
+0000055421 00000 n 
+0000055560 00000 n 
+0000055699 00000 n 
+0000055838 00000 n 
+0000055977 00000 n 
+0000056116 00000 n 
+0000057957 00000 n 
+0000058349 00000 n 
+0000058525 00000 n 
+0000058725 00000 n 
+0000058863 00000 n 
+0000059001 00000 n 
+0000963050 00000 n 
+0000966089 00000 n 
+0000059165 00000 n 
+0000061538 00000 n 
+0000061915 00000 n 
+0000062087 00000 n 
+0000062259 00000 n 
+0000980789 00000 n 
+0000062493 00000 n 
+0000064809 00000 n 
+0000065166 00000 n 
+0000065335 00000 n 
+0000990401 00000 n 
+0000065567 00000 n 
+0000067952 00000 n 
+0000068289 00000 n 
+0000068425 00000 n 
+0000070045 00000 n 
+0000070364 00000 n 
+0000071927 00000 n 
+0000072222 00000 n 
+0000075360 00000 n 
+0000075709 00000 n 
+0000075907 00000 n 
+0000077044 00000 n 
+0000077303 00000 n 
+0000079311 00000 n 
+0000079664 00000 n 
+0000079802 00000 n 
+0000079940 00000 n 
+0000080078 00000 n 
+0000082638 00000 n 
+0000082991 00000 n 
+0000083129 00000 n 
+0000083267 00000 n 
+0000083405 00000 n 
+0000085673 00000 n 
+0000086034 00000 n 
+0000086206 00000 n 
+0000086393 00000 n 
+0000086574 00000 n 
+0000086713 00000 n 
+0000088464 00000 n 
+0000088837 00000 n 
+0000088975 00000 n 
+0000089152 00000 n 
+0000089290 00000 n 
+0000089427 00000 n 
+0000089866 00000 n 
+0000090124 00000 n 
+0000091309 00000 n 
+0000091650 00000 n 
+0000091836 00000 n 
+0000092044 00000 n 
+0000092181 00000 n 
+0000093858 00000 n 
+0000094211 00000 n 
+0000094349 00000 n 
+0000094527 00000 n 
+0000094698 00000 n 
+0000096564 00000 n 
+0000096929 00000 n 
+0000097145 00000 n 
+0000097345 00000 n 
+0000097517 00000 n 
+0000097713 00000 n 
+0000097909 00000 n 
+0000098081 00000 n 
+0000099729 00000 n 
+0000100062 00000 n 
+0000100250 00000 n 
+0000100421 00000 n 
+0000102149 00000 n 
+0000102420 00000 n 
+0000104035 00000 n 
+0000104294 00000 n 
+0000105528 00000 n 
+0000105881 00000 n 
+0000106057 00000 n 
+0000106245 00000 n 
+0000106429 00000 n 
+0000107003 00000 n 
+0000107355 00000 n 
+0000107526 00000 n 
+0000107717 00000 n 
+0000107908 00000 n 
+0000109385 00000 n 
+0000109754 00000 n 
+0000109892 00000 n 
+0000110030 00000 n 
+0000110169 00000 n 
+0000110308 00000 n 
+0000110445 00000 n 
+0000111252 00000 n 
+0000111576 00000 n 
+0000111715 00000 n 
+0000113204 00000 n 
+0000113523 00000 n 
+0000114701 00000 n 
+0000115026 00000 n 
+0000115231 00000 n 
+0000116582 00000 n 
+0000116951 00000 n 
+0000117119 00000 n 
+0000117284 00000 n 
+0000117463 00000 n 
+0000117648 00000 n 
+0000117833 00000 n 
+0000119467 00000 n 
+0000119792 00000 n 
+0000119957 00000 n 
+0000121895 00000 n 
+0000122244 00000 n 
+0000122412 00000 n 
+0000123303 00000 n 
+0000123639 00000 n 
+0000123887 00000 n 
+0000125336 00000 n 
+0000125583 00000 n 
+0000126942 00000 n 
+0000127189 00000 n 
+0000128783 00000 n 
+0000129108 00000 n 
+0000129287 00000 n 
+0000131849 00000 n 
+0000132206 00000 n 
+0000132388 00000 n 
+0000132526 00000 n 
+0000134677 00000 n 
+0000134996 00000 n 
+0000137095 00000 n 
+0000137448 00000 n 
+0000137615 00000 n 
+0000137780 00000 n 
+0000137918 00000 n 
+0000140450 00000 n 
+0000140819 00000 n 
+0000141044 00000 n 
+0000141270 00000 n 
+0000143133 00000 n 
+0000143452 00000 n 
+0000145882 00000 n 
+0000146259 00000 n 
+0000146440 00000 n 
+0000146622 00000 n 
+0000146804 00000 n 
+0000148839 00000 n 
+0000149192 00000 n 
+0000149401 00000 n 
+0000149568 00000 n 
+0000149733 00000 n 
+0000151944 00000 n 
+0000152289 00000 n 
+0000152480 00000 n 
+0000152661 00000 n 
+0000153306 00000 n 
+0000153618 00000 n 
+0000153843 00000 n 
+0000155724 00000 n 
+0000156055 00000 n 
+0000158087 00000 n 
+0000158406 00000 n 
+0000160251 00000 n 
+0000160620 00000 n 
+0000160836 00000 n 
+0000161010 00000 n 
+0000163024 00000 n 
+0000163343 00000 n 
+0000165293 00000 n 
+0000165630 00000 n 
+0000165863 00000 n 
+0000167734 00000 n 
+0000168077 00000 n 
+0000169628 00000 n 
+0000169993 00000 n 
+0000170131 00000 n 
+0000170270 00000 n 
+0000170409 00000 n 
+0000172166 00000 n 
+0000172497 00000 n 
+0000174327 00000 n 
+0000174664 00000 n 
+0000174880 00000 n 
+0000176103 00000 n 
+0000176434 00000 n 
+0000177395 00000 n 
+0000177677 00000 n 
+0000179407 00000 n 
+0000179751 00000 n 
+0000180451 00000 n 
+0000787076 00000 n 
+0000180790 00000 n 
+0000182621 00000 n 
+0000182978 00000 n 
+0000183170 00000 n 
+0000183375 00000 n 
+0000186223 00000 n 
+0000186555 00000 n 
+0000188884 00000 n 
+0000189246 00000 n 
+0000189461 00000 n 
+0000192085 00000 n 
+0000192417 00000 n 
+0000192708 00000 n 
+0000192942 00000 n 
+0000194757 00000 n 
+0000195088 00000 n 
+0000195790 00000 n 
+0000196048 00000 n 
+0000198165 00000 n 
+0000198538 00000 n 
+0000198737 00000 n 
+0000198936 00000 n 
+0000199120 00000 n 
+0000199257 00000 n 
+0000199649 00000 n 
+0000199973 00000 n 
+0000200180 00000 n 
+0000201810 00000 n 
+0000202147 00000 n 
+0000202395 00000 n 
+0000204183 00000 n 
+0000204540 00000 n 
+0000204788 00000 n 
+0000205036 00000 n 
+0000206855 00000 n 
+0000207138 00000 n 
+0000208297 00000 n 
+0000208628 00000 n 
+0000210107 00000 n 
+0000210444 00000 n 
+0000210607 00000 n 
+0000213386 00000 n 
+0000213735 00000 n 
+0000213914 00000 n 
+0000216125 00000 n 
+0000216444 00000 n 
+0000219986 00000 n 
+0000220306 00000 n 
+0000221837 00000 n 
+0000222174 00000 n 
+0000222353 00000 n 
+0000224014 00000 n 
+0000224345 00000 n 
+0000226730 00000 n 
+0000227061 00000 n 
+0000229154 00000 n 
+0000229485 00000 n 
+0000231267 00000 n 
+0000231598 00000 n 
+0000234090 00000 n 
+0000234421 00000 n 
+0000235811 00000 n 
+0000236142 00000 n 
+0000238712 00000 n 
+0000239043 00000 n 
+0000240454 00000 n 
+0000240785 00000 n 
+0000242524 00000 n 
+0000242856 00000 n 
+0000244699 00000 n 
+0000245049 00000 n 
+0000245274 00000 n 
+0000247565 00000 n 
+0000247908 00000 n 
+0000249878 00000 n 
+0000250221 00000 n 
+0000252367 00000 n 
+0000252725 00000 n 
+0000252864 00000 n 
+0000253003 00000 n 
+0000254732 00000 n 
+0000255150 00000 n 
+0000255287 00000 n 
+0000255425 00000 n 
+0000255563 00000 n 
+0000255701 00000 n 
+0000255839 00000 n 
+0000255977 00000 n 
+0000256115 00000 n 
+0000256253 00000 n 
+0000256391 00000 n 
+0000256529 00000 n 
+0000256667 00000 n 
+0000258871 00000 n 
+0000259301 00000 n 
+0000259439 00000 n 
+0000259577 00000 n 
+0000259714 00000 n 
+0000259852 00000 n 
+0000259990 00000 n 
+0000260128 00000 n 
+0000260266 00000 n 
+0000260404 00000 n 
+0000260542 00000 n 
+0000260680 00000 n 
+0000260818 00000 n 
+0000262255 00000 n 
+0000262592 00000 n 
+0000262730 00000 n 
+0000264616 00000 n 
+0000264965 00000 n 
+0000265166 00000 n 
+0000267481 00000 n 
+0000267824 00000 n 
+0000270023 00000 n 
+0000270376 00000 n 
+0000270515 00000 n 
+0000270653 00000 n 
+0000270791 00000 n 
+0000272145 00000 n 
+0000272506 00000 n 
+0000272644 00000 n 
+0000274429 00000 n 
+0000274790 00000 n 
+0000274929 00000 n 
+0000277508 00000 n 
+0000277852 00000 n 
+0000280181 00000 n 
+0000280525 00000 n 
+0000283197 00000 n 
+0000283563 00000 n 
+0000283751 00000 n 
+0000283941 00000 n 
+0000284131 00000 n 
+0000286942 00000 n 
+0000287262 00000 n 
+0000289857 00000 n 
+0000290189 00000 n 
+0000293093 00000 n 
+0000293425 00000 n 
+0000295119 00000 n 
+0000295439 00000 n 
+0000297699 00000 n 
+0000298083 00000 n 
+0000298250 00000 n 
+0000999251 00000 n 
+0000298445 00000 n 
+0000300584 00000 n 
+0000300904 00000 n 
+0000303941 00000 n 
+0000304286 00000 n 
+0000306883 00000 n 
+0000307274 00000 n 
+0000307469 00000 n 
+0000307662 00000 n 
+0000307895 00000 n 
+0000310327 00000 n 
+0001009142 00000 n 
+0000310661 00000 n 
+0000312793 00000 n 
+0000313138 00000 n 
+0000313902 00000 n 
+0000314227 00000 n 
+0000314365 00000 n 
+0000316304 00000 n 
+0000316708 00000 n 
+0000316875 00000 n 
+0000783643 00000 n 
+0000317041 00000 n 
+0000319230 00000 n 
+0000781145 00000 n 
+0000319620 00000 n 
+0000324879 00000 n 
+0000325354 00000 n 
+0000325572 00000 n 
+0000325790 00000 n 
+0000778144 00000 n 
+0000716527 00000 n 
+0000519969 00000 n 
+0000521422 00000 n 
+0000325979 00000 n 
+0000327552 00000 n 
+0000327886 00000 n 
+0000328256 00000 n 
+0000605606 00000 n 
+0000328536 00000 n 
+0000329838 00000 n 
+0000330188 00000 n 
+0000330409 00000 n 
+0000332934 00000 n 
+0000333266 00000 n 
+0000335194 00000 n 
+0000335526 00000 n 
+0000337791 00000 n 
+0000338161 00000 n 
+0000338299 00000 n 
+0000338438 00000 n 
+0000339881 00000 n 
+0000340219 00000 n 
+0000340357 00000 n 
+0000342007 00000 n 
+0000342345 00000 n 
+0000342484 00000 n 
+0000344348 00000 n 
+0000344668 00000 n 
+0000346806 00000 n 
+0000347144 00000 n 
+0000347414 00000 n 
+0000347929 00000 n 
+0000348188 00000 n 
+0000350348 00000 n 
+0000350692 00000 n 
+0000352905 00000 n 
+0000353271 00000 n 
+0000353436 00000 n 
+0000353574 00000 n 
+0000353748 00000 n 
+0000356598 00000 n 
+0000356924 00000 n 
+0000357112 00000 n 
+0000358812 00000 n 
+0000359150 00000 n 
+0000359338 00000 n 
+0000361265 00000 n 
+0000361610 00000 n 
+0000363807 00000 n 
+0000364128 00000 n 
+0000364873 00000 n 
+0000365192 00000 n 
+0000367212 00000 n 
+0000367570 00000 n 
+0000367764 00000 n 
+0000367958 00000 n 
+0000370133 00000 n 
+0000370455 00000 n 
+0000372354 00000 n 
+0000372689 00000 n 
+0000374636 00000 n 
+0000374959 00000 n 
+0000376835 00000 n 
+0000377169 00000 n 
+0000379209 00000 n 
+0000379555 00000 n 
+0000380075 00000 n 
+0000380403 00000 n 
+0000380567 00000 n 
+0000382979 00000 n 
+0000383313 00000 n 
+0000384999 00000 n 
+0000385361 00000 n 
+0000385501 00000 n 
+0000385641 00000 n 
+0000386006 00000 n 
+0000564395 00000 n 
+0000386289 00000 n 
+0000388093 00000 n 
+0000388458 00000 n 
+0000388639 00000 n 
+0000390223 00000 n 
+0000390595 00000 n 
+0000390788 00000 n 
+0000390981 00000 n 
+0000391169 00000 n 
+0000393178 00000 n 
+0000393524 00000 n 
+0000396289 00000 n 
+0000396611 00000 n 
+0000399267 00000 n 
+0000399626 00000 n 
+0000402045 00000 n 
+0000402392 00000 n 
+0000405115 00000 n 
+0000405438 00000 n 
+0000406944 00000 n 
+0000407267 00000 n 
+0000409544 00000 n 
+0000409867 00000 n 
+0000412615 00000 n 
+0000412937 00000 n 
+0000415240 00000 n 
+0000415599 00000 n 
+0000418311 00000 n 
+0000418661 00000 n 
+0000418800 00000 n 
+0000418939 00000 n 
+0000419506 00000 n 
+0000419815 00000 n 
+0000420957 00000 n 
+0000421307 00000 n 
+0000421500 00000 n 
+0000421693 00000 n 
+0000427601 00000 n 
+0000428056 00000 n 
+0000431301 00000 n 
+0000431623 00000 n 
+0000433703 00000 n 
+0000434038 00000 n 
+0000436557 00000 n 
+0000436919 00000 n 
+0000437112 00000 n 
+0000437330 00000 n 
+0000439501 00000 n 
+0000439835 00000 n 
+0000442082 00000 n 
+0000442423 00000 n 
+0000442605 00000 n 
+0000445012 00000 n 
+0000445384 00000 n 
+0000448387 00000 n 
+0000448767 00000 n 
+0000448960 00000 n 
+0000449203 00000 n 
+0000449391 00000 n 
+0000449583 00000 n 
+0000451520 00000 n 
+0000451883 00000 n 
+0000452076 00000 n 
+0000452269 00000 n 
+0000453742 00000 n 
+0000454076 00000 n 
+0000455146 00000 n 
+0000455407 00000 n 
+0000457060 00000 n 
+0000457413 00000 n 
+0000457581 00000 n 
+0000459745 00000 n 
+0000460086 00000 n 
+0000460322 00000 n 
+0000461871 00000 n 
+0000462181 00000 n 
+0000464346 00000 n 
+0000464731 00000 n 
+0000464906 00000 n 
+0000465073 00000 n 
+0000465241 00000 n 
+0000467015 00000 n 
+0000467349 00000 n 
+0000468199 00000 n 
+0000522192 00000 n 
+0000468530 00000 n 
+0000470131 00000 n 
+0000470465 00000 n 
+0000472639 00000 n 
+0000473019 00000 n 
+0000473199 00000 n 
+0000473379 00000 n 
+0000473559 00000 n 
+0000473725 00000 n 
+0000476014 00000 n 
+0000476355 00000 n 
+0000476518 00000 n 
+0000477577 00000 n 
+0000477898 00000 n 
+0000479362 00000 n 
+0000479727 00000 n 
+0000479931 00000 n 
+0000481644 00000 n 
+0000482015 00000 n 
+0000482214 00000 n 
+0000482418 00000 n 
+0000482617 00000 n 
+0000483965 00000 n 
+0000484384 00000 n 
+0000484523 00000 n 
+0000484662 00000 n 
+0000484800 00000 n 
+0000484939 00000 n 
+0000485078 00000 n 
+0000485217 00000 n 
+0000485356 00000 n 
+0000485495 00000 n 
+0000485634 00000 n 
+0000485773 00000 n 
+0000485912 00000 n 
+0000486906 00000 n 
+0000487227 00000 n 
+0000488647 00000 n 
+0000488981 00000 n 
+0000490641 00000 n 
+0000490963 00000 n 
+0000493457 00000 n 
+0000493791 00000 n 
+0000497133 00000 n 
+0000497657 00000 n 
+0000497795 00000 n 
+0000497933 00000 n 
+0000498071 00000 n 
+0000498210 00000 n 
+0000498349 00000 n 
+0000498488 00000 n 
+0000498627 00000 n 
+0000498766 00000 n 
+0000498905 00000 n 
+0000499044 00000 n 
+0000499183 00000 n 
+0000499322 00000 n 
+0000499461 00000 n 
+0000499599 00000 n 
+0000499738 00000 n 
+0000499877 00000 n 
+0000500017 00000 n 
+0000500157 00000 n 
+0000500297 00000 n 
+0000500437 00000 n 
+0000502460 00000 n 
+0000503113 00000 n 
+0000503252 00000 n 
+0000503391 00000 n 
+0000503530 00000 n 
+0000503669 00000 n 
+0000503808 00000 n 
+0000503947 00000 n 
+0000504086 00000 n 
+0000504226 00000 n 
+0000504366 00000 n 
+0000504506 00000 n 
+0000504646 00000 n 
+0000504785 00000 n 
+0000504925 00000 n 
+0000505064 00000 n 
+0000505203 00000 n 
+0000505343 00000 n 
+0000505483 00000 n 
+0000505623 00000 n 
+0000505763 00000 n 
+0000505903 00000 n 
+0000506042 00000 n 
+0000506181 00000 n 
+0000506320 00000 n 
+0000506459 00000 n 
+0000506598 00000 n 
+0000506737 00000 n 
+0000506942 00000 n 
+0000507082 00000 n 
+0000507222 00000 n 
+0000507362 00000 n 
+0000507502 00000 n 
+0000507706 00000 n 
+0000507910 00000 n 
+0000508050 00000 n 
+0000508190 00000 n 
+0000508330 00000 n 
+0000508470 00000 n 
+0000510190 00000 n 
+0000510666 00000 n 
+0000510806 00000 n 
+0000510946 00000 n 
+0000511086 00000 n 
+0000511226 00000 n 
+0000511366 00000 n 
+0000511506 00000 n 
+0000511646 00000 n 
+0000511786 00000 n 
+0000511926 00000 n 
+0000512066 00000 n 
+0000512206 00000 n 
+0000512346 00000 n 
+0000512486 00000 n 
+0000512626 00000 n 
+0000512832 00000 n 
+0000513038 00000 n 
+0000515043 00000 n 
+0000515377 00000 n 
+0000517294 00000 n 
+0000517616 00000 n 
+0000518475 00000 n 
+0000518784 00000 n 
+0000518919 00000 n 
+0000519054 00000 n 
+0000519189 00000 n 
+0000519324 00000 n 
+0000519459 00000 n 
+0000519594 00000 n 
+0000519729 00000 n 
+0000520237 00000 n 
+0000520372 00000 n 
+0000520507 00000 n 
+0000520642 00000 n 
+0000520777 00000 n 
+0000520912 00000 n 
+0000521047 00000 n 
+0000521182 00000 n 
+0000521692 00000 n 
+0000522169 00000 n 
+0000563873 00000 n 
+0000563898 00000 n 
+0000564372 00000 n 
+0000605064 00000 n 
+0000605089 00000 n 
+0000605583 00000 n 
+0000693262 00000 n 
+0000693287 00000 n 
+0000716502 00000 n 
+0000754520 00000 n 
+0000754545 00000 n 
+0000778119 00000 n 
+0000780909 00000 n 
+0000780933 00000 n 
+0000781123 00000 n 
+0000781881 00000 n 
+0000781904 00000 n 
+0000783619 00000 n 
+0000786620 00000 n 
+0000786644 00000 n 
+0000787053 00000 n 
+0000844525 00000 n 
+0000844550 00000 n 
+0000844854 00000 n 
+0000850713 00000 n 
+0000851439 00000 n 
+0000851641 00000 n 
+0000875750 00000 n 
+0000876544 00000 n 
+0000876747 00000 n 
+0000885800 00000 n 
+0000886553 00000 n 
+0000886759 00000 n 
+0000894823 00000 n 
+0000895664 00000 n 
+0000895861 00000 n 
+0000908632 00000 n 
+0000909434 00000 n 
+0000909638 00000 n 
+0000926527 00000 n 
+0000927288 00000 n 
+0000927488 00000 n 
+0000944428 00000 n 
+0000945157 00000 n 
+0000945349 00000 n 
+0000963025 00000 n 
+0000963262 00000 n 
+0000963450 00000 n 
+0000963826 00000 n 
+0000963803 00000 n 
+0000966065 00000 n 
+0000966635 00000 n 
+0000966831 00000 n 
+0000967534 00000 n 
+0000967511 00000 n 
+0000980764 00000 n 
+0000981524 00000 n 
+0000981718 00000 n 
+0000990377 00000 n 
+0000991066 00000 n 
+0000991254 00000 n 
+0000999227 00000 n 
+0000999978 00000 n 
+0001000176 00000 n 
+0001009118 00000 n 
+0001009346 00000 n 
+0001009554 00000 n 
+0001009903 00000 n 
+0001009880 00000 n 
+0001011544 00000 n 
+0001011568 00000 n 
+
+trailer
+<</Info 1321 0 R
+/Size 1322
+/Root 1 0 R
+/ID [<8C8D5D67F99E42C1B65FC0D80BCB6253> <8C8D5D67F99E42C1B65FC0D80BCB6253>]>>
+startxref
+1011692
+%%EOF
diff --git a/pdf/product1.pdf b/pdf/product1.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9b39f5f3568daa05e0e003f288193595cb6f0d5c
Binary files /dev/null and b/pdf/product1.pdf differ
diff --git a/pdf/product2.pdf b/pdf/product2.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e7c09629e42a0b231fc6f515ef9fc09cd45a3e60
Binary files /dev/null and b/pdf/product2.pdf differ
diff --git a/pdfconfigs/config_mydoc_pdf.yml b/pdfconfigs/config_mydoc_pdf.yml
new file mode 100644
index 0000000000000000000000000000000000000000..3a61d05a3f803da70d47dedc2e02063b034c127b
--- /dev/null
+++ b/pdfconfigs/config_mydoc_pdf.yml
@@ -0,0 +1,20 @@
+destination: _site/
+url: "http://127.0.0.1:4010"
+baseurl: "/mydoc-pdf"
+port: 4010
+output: pdf
+product: mydoc
+print_title: Jekyll theme for documentation — mydoc product
+print_subtitle: version 6.0
+output: pdf
+defaults:
+  -
+    scope:
+      path: ""
+      type: "pages"
+    values:
+      layout: "page_print"
+      comments: true
+      search: true
+
+pdf_sidebar: mydoc_sidebar
diff --git a/pdfconfigs/config_product1_pdf.yml b/pdfconfigs/config_product1_pdf.yml
new file mode 100644
index 0000000000000000000000000000000000000000..04ba870f4d39f0fb85b6c8aa9ff55f3f2b544981
--- /dev/null
+++ b/pdfconfigs/config_product1_pdf.yml
@@ -0,0 +1,20 @@
+destination: _site/
+url: "http://127.0.0.1:4011"
+baseurl: "/product1-pdf"
+port: 4011
+output: pdf
+product: product1
+print_title: Product 1 documentation
+print_subtitle: version 1.0
+output: pdf
+defaults:
+  -
+    scope:
+      path: ""
+      type: "pages"
+    values:
+      layout: "page_print"
+      comments: true
+      search: true
+
+pdf_sidebar: product1_sidebar
diff --git a/pdfconfigs/config_product2_pdf.yml b/pdfconfigs/config_product2_pdf.yml
new file mode 100644
index 0000000000000000000000000000000000000000..725537d6914b403d32c0f95eb2795edfef578e5b
--- /dev/null
+++ b/pdfconfigs/config_product2_pdf.yml
@@ -0,0 +1,20 @@
+destination: _site/
+url: "http://127.0.0.1:4012"
+baseurl: "/product2-pdf"
+port: 4012
+output: pdf
+product: product2
+print_title: Product 2 documentation
+print_subtitle: version 1.0
+output: pdf
+defaults:
+  -
+    scope:
+      path: ""
+      type: "pages"
+    values:
+      layout: "page_print"
+      comments: true
+      search: true
+
+pdf_sidebar: product2_sidebar
diff --git a/pdfconfigs/prince-list.txt b/pdfconfigs/prince-list.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0ca0247b80005648a4494a2bae6669104592d836
--- /dev/null
+++ b/pdfconfigs/prince-list.txt
@@ -0,0 +1,82 @@
+---
+layout: none
+search: exclude
+---
+
+
+ {% assign sidebar = site.data.sidebars[site.pdf_sidebar].entries %}
+
+   {% for entry in sidebar %}
+
+   {% for folder in entry.folders %}
+      {% if folder.output contains "pdf" %}
+              {% for folderitem in folder.folderitems %}
+                 {% if folderitem.output contains "pdf"  %}
+                    {{site.url}}{{site.baseurl}}{{folderitem.url}}
+                          {% for subfolders in folderitem.subfolders %}
+                             {% if subfolders.output contains "pdf" %}
+                                        {% for subfolderitem in subfolders.subfolderitems %}
+                                           {% if subfolderitem.output contains "pdf" %}
+                                              {{site.url}}{{site.baseurl}}{{subfolderitem.url}}
+                                           {% endif %}
+                                        {% endfor %}
+                             {% endif %}
+                          {% endfor %}
+                {% endif %}
+             {% endfor %}
+      {% endif %}
+  {% endfor %}
+ {% endfor %}
+
+
+
+{% comment %}
+
+ {% assign sidebar = site.data.sidebars[page.sidebar].entries %}
+
+   {% for entry in sidebar %}
+   {% for folder in entry.folders %}
+   {% if folder.output contains "web" %}
+   <li>
+       <a href="#">{{ folder.title }}</a>
+       <ul>
+           {% for folderitem in folder.folderitems %}
+           {% if folderitem.output contains "web" %}
+           {% if folderitem.external_url %}
+           <li><a href="{{folderitem.external_url}}" target="_blank">{{folderitem.title}}</a></li>
+           {% elsif page.url == folderitem.url %}
+           <li class="active"><a href="{{folderitem.url | remove: "/"}}">{{folderitem.title}}</a></li>
+           {% elsif folderitem.type == "empty" %}
+           <li><a href="{{folderitem.url | remove: "/"}}">{{folderitem.title}}</a></li>
+
+           {% else %}
+           <li><a href="{{folderitem.url | remove: "/"}}">{{folderitem.title}}</a></li>
+           {% endif %}
+           {% for subfolders in folderitem.subfolders %}
+           {% if subfolders.output contains "web" %}
+           <li class="subfolders">
+               <a href="#">{{ subfolders.title }}</a>
+               <ul>
+                   {% for subfolderitem in subfolders.subfolderitems %}
+                   {% if subfolderitem.output contains "web" %}
+                   {% if subfolderitem.external_url %}
+                   <li><a href="{{subfolderitem.external_url}}" target="_blank">{{subfolderitem.title}}</a></li>
+                   {% elsif page.url == subfolderitem.url %}
+                   <li class="active"><a href="{{subfolderitem.url | remove: "/"}}">{{subfolderitem.title}}</a></li>
+                   {% else %}
+                   <li><a href="{{subfolderitem.url | remove: "/"}}">{{subfolderitem.title}}</a></li>
+                   {% endif %}
+                   {% endif %}
+                   {% endfor %}
+               </ul>
+           </li>
+           {% endif %}
+           {% endfor %}
+           {% endif %}
+           {% endfor %}
+       </ul>
+    </li>
+      {% endif %}
+       {% endfor %}
+       {% endfor %}
+{% endcomment %}
diff --git a/pdfconfigs/titlepage.html b/pdfconfigs/titlepage.html
new file mode 100644
index 0000000000000000000000000000000000000000..3534bc257da8f6fadf956637868af49e42358003
--- /dev/null
+++ b/pdfconfigs/titlepage.html
@@ -0,0 +1,22 @@
+---
+type: title
+search: exclude
+permalink: /titlepage.html/
+---
+<div class="printTitleArea">
+    <div class="printTitle">{{site.print_title}}</div>
+    <div class="printSubtitle">{{site.print_subtitle}}</div>
+    <div class="lastGeneratedDate">Last generated: {{ site.time | date: '%B %d, %Y' }}</div>
+    <hr />
+
+    <div class="printTitleImage">
+        <img src="{{site.url}}/{{site.baseurl}}/images/company_logo_big.png" alt="Company Logo"/>
+    </div>
+
+    <div class="copyrightBoilerplate">
+        <p>&copy; {{ site.time | date: "%Y" }} {{site.company_name}}. This is a boilerplate copyright statement... All rights reserved. No part of this publication may be reproduced, distributed, or transmitted in any form or by any means, including photocopying, recording, or other electronic or mechanical methods, without the prior written permission of the publisher, except in the case of brief quotations embodied in critical reviews and certain other noncommercial uses permitted by copyright law.
+        </p>
+
+    </div>
+
+</div>
diff --git a/pdfconfigs/tocpage.html b/pdfconfigs/tocpage.html
new file mode 100644
index 0000000000000000000000000000000000000000..5affb96f515f868b04a8e7a137db52064c44101b
--- /dev/null
+++ b/pdfconfigs/tocpage.html
@@ -0,0 +1,44 @@
+---
+type: frontmatter
+search: exclude
+permalink: /tocpage.html/
+---
+
+<!-- new page -->
+<div id="navig">
+    <h1>Table of Contents</h1>
+
+    {% assign sidebar = site.data.sidebars[site.pdf_sidebar].entries %}
+
+    <ul id="mysidebar" class="nav">
+        {% for entry in sidebar %}
+        {% for folder in entry.folders %}
+        {% if folder.output contains "pdf" and folder.type != "frontmatter" %}
+        <li class="sectionHead">{{ folder.title }}
+            <ul>
+                {% for folderitem in folder.folderitems %}
+                {% if folderitem.output contains "pdf" and folderitem.type != "frontmatter"%}
+                <li><a href="{{folderitem.url | prepend: site.baseurl}}">{{folderitem.title}}</a>
+                    {% for subfolders in folderitem.subfolders %}
+                    {% if subfolders.output contains "pdf" and subfolders.type != "frontmatter" %}
+                <li class="sectionHead">{{ subfolders.title }}
+                    <ul>
+                        {% for subfolderitem in subfolders.subfolderitems%}
+                        {% if subfolderitem.output contains "pdf" and subfolderitem.type != "frontmatter"%}
+                        <li><a href="{{subfolderitem.url | prepend: site.baseurl}}">{{subfolderitem.title}}</a></li>
+                        {% endif %}
+                        {% endfor %}
+                    </ul>
+                </li>
+                {% endif %}
+                {% endfor %}
+                </li>
+                {% endif %}
+                {% endfor %}
+            </ul>
+        </li>
+        {% endif %}
+        {% endfor %}
+        {% endfor %}
+    </ul>
+</div>
diff --git a/search.json b/search.json
new file mode 100644
index 0000000000000000000000000000000000000000..a7f7dd0fe10ccd9d6d408874727a5669694b89bd
--- /dev/null
+++ b/search.json
@@ -0,0 +1,33 @@
+---
+title: search
+layout: none
+search: exclude
+---
+
+[
+{% for page in site.pages %}
+{% unless page.search == "exclude" %}
+{
+"title": "{{ page.title | escape }}",
+"tags": "{{ page.tags }}",
+"keywords": "{{page.keywords}}",
+"url": "{{ page.url | remove: "/"}}",
+"summary": "{{page.summary | strip }}"
+}
+{% unless forloop.last and site.posts.size < 1 %},{% endunless %}
+{% endunless %}
+{% endfor %}
+
+{% for post in site.posts %}
+
+{
+"title": "{{ post.title | escape }}",
+"tags": "{{ post.tags }}",
+"keywords": "{{post.keywords}}",
+"url": "{{ post.url | remove: "/" }}",
+"summary": "{{post.summary | strip }}"
+}
+{% unless forloop.last %},{% endunless %}
+{% endfor %}
+
+]
diff --git a/sitemap.xml b/sitemap.xml
new file mode 100644
index 0000000000000000000000000000000000000000..38a04d6c4e8bc6480ab557d57eb429c340b240e6
--- /dev/null
+++ b/sitemap.xml
@@ -0,0 +1,24 @@
+---
+layout: none
+search: exclude
+---
+
+<?xml version="1.0" encoding="UTF-8"?>
+<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
+  {% for post in site.posts %}
+  {% unless post.search == "exclude" %}
+  <url>
+    <loc>{{site.url}}{{post.url}}</loc>
+  </url>
+  {% endunless %}
+  {% endfor %}
+
+
+  {% for page in site.pages %}
+  {% unless page.search == "exclude" %}
+  <url>
+    <loc>{{site.url}}{{ page.url}}</loc>
+  </url>
+  {% endunless %}
+  {% endfor %}
+</urlset>
\ No newline at end of file
diff --git a/tooltips.html b/tooltips.html
new file mode 100644
index 0000000000000000000000000000000000000000..40bab9b7914c0f11353ea91ff73460ba1428a153
--- /dev/null
+++ b/tooltips.html
@@ -0,0 +1,80 @@
+---
+layout: none
+search: exclude
+---
+
+<html>
+<head>
+<title> Tooltip Demo</title>
+<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
+<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
+<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
+
+<script type="text/javascript">
+$(document).ready(function(){
+
+/*Bootstrap popovers are initialized with the following script. In the options, I'm setting the placement to be on the right, the trigger to be hover rather than click, and to allow HTML from the JSON data source. */
+
+    $('[data-toggle="popover"]').popover({
+        placement : 'right',
+        trigger: 'hover',
+        html: true
+    });
+
+/* Set the location where mydoc_tooltips_source.json is. */
+var url = "tooltips.json";
+
+$.get( url, function( data ) {
+
+ /* Bootstrap popover text is defined inside a data-content attribute inside an element. That's 
+ why I'm using attr here. If you just want to insert content on the page, use append and remove the data-content argument from the parentheses.*/
+
+    $.each(data.entries, function(i, page) {
+        if (page.doc_id == "basketball") {
+            $( "#basketball" ).attr( "data-content", page.body );
+        }
+
+        if (page.doc_id == "baseball") {
+            $( "#baseball" ).attr( "data-content", page.body );
+        }
+        if (page.doc_id == "football") {
+            $( "#football" ).attr( "data-content", page.body );
+        }
+
+        if (page.doc_id == "soccer") {
+            $( "#soccer" ).attr( "data-content", page.body );
+        }
+
+
+        });
+    });
+
+ 
+});
+</script>
+
+<style>
+body {padding-left:50px;}
+</style>
+
+</head>
+<body>
+
+<h1>Tooltip Demo</h1>
+
+<p>This page is purposely separated out from the rest of theme so you can see the bare minimum code to add to a page, without all the other theme's code getting in the way.</p>
+
+<p>Content in the tooltips (actually "popovers" according to Bootstrap lingo) can be pulled in dynamically by placing the JSON file on a remote host. </p>
+
+<div class="alert alert-info" role="alert"><b>Note:</b> Make sure you view the file source so you can read the notes I've added in code comments.</div>
+
+<!-- the glyphicon class provides the info icon.-->
+
+<p>Basketball <span class="glyphicon glyphicon-info-sign" id="basketball" data-toggle="popover"></span></p>
+
+<p>Baseball <span class="glyphicon glyphicon-info-sign" id="baseball" data-toggle="popover"></span></p>
+
+<p>Football <span class="glyphicon glyphicon-info-sign" id="football" data-toggle="popover"></span></p>
+
+<p>Soccer <span class="glyphicon glyphicon-info-sign" id="soccer" data-toggle="popover"></span></p>
+
diff --git a/tooltips.json b/tooltips.json
new file mode 100644
index 0000000000000000000000000000000000000000..cee21d3fcc893c225bb6fe641fe87069aad3f327
--- /dev/null
+++ b/tooltips.json
@@ -0,0 +1,19 @@
+---
+layout: null
+search: exclude
+---
+
+{
+"entries":
+[
+{% for page in site.tooltips %}
+{
+"doc_id": "{{ page.doc_id }}",
+"body": "{{ page.content | strip_newlines | replace: '\', '\\\\' | replace: '"', '\\"' }}"
+} {% unless forloop.last %},{% endunless %}
+{% endfor %}
+]
+}
+
+
+
diff --git a/update.sh b/update.sh
new file mode 100755
index 0000000000000000000000000000000000000000..42a3bece578b3f1dc0f23932a761072689512e49
--- /dev/null
+++ b/update.sh
@@ -0,0 +1,4 @@
+git add .
+git status
+git commit -m "content update"
+git push
\ No newline at end of file
diff --git a/var/build.sh b/var/build.sh
new file mode 100644
index 0000000000000000000000000000000000000000..137b92c47c0f910f9d4aca2c33e6760b559742a1
--- /dev/null
+++ b/var/build.sh
@@ -0,0 +1,10 @@
+#!/usr/bin/env bash
+apt-get update && \
+apt-get install -y libfontconfig zip npm git apt-transport-https ca-certificates curl openssl && \
+npm i -g npm && \
+npm cache clean -f && \
+npm install -g n && \
+n stable && \
+node --version && \
+npm --version && \
+bundle install
\ No newline at end of file