diff --git a/README.md b/README.md index 4e3f8fc..fd80133 100644 --- a/README.md +++ b/README.md @@ -26,3 +26,14 @@ Before programming C, install `global` and `libclang` in your distro. After doin Finally, `cd` to the root of your project and run `gtags`. You now have functioning irony C completion. Before programming Java, install `eclim`, and `eclipse`. + +## XFCE Themes + +In the root there is a themes folder with a nice theme called `Nord`. Run the provided +`install.sh`. + +## Swapping Caps Lock and Escape in XFCE + +```sh +/usr/bin/setxkbmap -option "caps:swapescape" +``` diff --git a/xfce-themes/nord-xfce-terminal-develop/CHANGELOG.md b/xfce-themes/nord-xfce-terminal-develop/CHANGELOG.md new file mode 100644 index 0000000..9c18815 --- /dev/null +++ b/xfce-themes/nord-xfce-terminal-develop/CHANGELOG.md @@ -0,0 +1,18 @@ +

+ +

+ +--- + +# 0.1.0 (2016-12-24) +## Features +Implemented the main olor theme file [`nord.theme`](https://github.com/arcticicestudio/nord-xfce-terminal/blob/develop/src/nord.theme). (@arcticicestudio, #1, 5f426da8) + +Implementd a [`install.sh`](https://github.com/arcticicestudio/nord-xfce-terminal/blob/develop/install.sh) shell script for an automated installation . (@arcticicestudio, #2, 8848292e) + +Detailed information about features and install instructions can be found in the [README](https://github.com/arcticicestudio/nord-xfce-terminal/blob/develop/README.md#installation) and in the [project wiki](https://github.com/arcticicestudio/nord-xfce-terminal/wiki). + +


htop

+ +# 0.0.0 (2016-12-22) +**Project Initialization** diff --git a/xfce-themes/nord-xfce-terminal-develop/LICENSE.md b/xfce-themes/nord-xfce-terminal-develop/LICENSE.md new file mode 100644 index 0000000..34bd797 --- /dev/null +++ b/xfce-themes/nord-xfce-terminal-develop/LICENSE.md @@ -0,0 +1,22 @@ +MIT License (MIT) + +Copyright (c) 2016-present Arctic Ice Studio (http://arcticicestudio.com) +Copyright (c) 2016-present Sven Greb (http://svengreb.de) + +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/xfce-themes/nord-xfce-terminal-develop/README.md b/xfce-themes/nord-xfce-terminal-develop/README.md new file mode 100644 index 0000000..7d5c58b --- /dev/null +++ b/xfce-themes/nord-xfce-terminal-develop/README.md @@ -0,0 +1,57 @@ +

+ +

+ +

An arctic, north-bluish clean and elegant XFCE Terminal color theme.

+ +

Designed for a fluent and clear workflow.
+Based on the Nord color palette.

+ +--- + +

Font: Source Code Pro 12px.

+ +## Getting started +### Installation +#### Manual +Copy the [`nord.theme`](https://github.com/arcticicestudio/nord-xfce-terminal/blob/develop/src/nord.theme) file to the local configuration directory `~/.local/share/xfce4/terminal/colorschemes`. + +#### Install Script +The included `install.sh` shell script can be used for an automated installation. +If no option is specified, the default theme file is `src/nord.theme`. + +A list of available options can be shown with the `--help` option. +```shell +./install.sh --help +``` +Syntax: `install.sh [OPTIONS]` + +| Option | Description | +| --- | --- | +| `-h`, `--help` | Shows the help | +| `-v`, `--verbose` | Verbose output | +| `-t `, `--themefile ` | Use the specified theme file | + +### Activation + 1. Open the *Edit* menu and select *Preferences* + 2. Switch to the *Colors* tab + 3. Select `Nord` from the *Presets* drop-down menu + +![][scrot-readme-color-preset] + +## Screenshots +

htop

+ +## Development +[![](https://img.shields.io/badge/Changelog-0.1.0-81A1C1.svg?style=flat-square)](https://github.com/arcticicestudio/nord-xfce-terminal/blob/v0.1.0/CHANGELOG.md) [![](https://img.shields.io/badge/Workflow-gitflow--branching--model-81A1C1.svg?style=flat-square)](http://nvie.com/posts/a-successful-git-branching-model) [![](https://img.shields.io/badge/Versioning-ArcVer_0.8.0-81A1C1.svg?style=flat-square)](https://github.com/arcticicestudio/arcver) + +### Contribution +Please report issues/bugs, feature requests and suggestions for improvements to the [issue tracker](https://github.com/arcticicestudio/nord-xfce-terminal/issues). + +

+ +

Copyright © 2016-present Arctic Ice Studio

+ +

+ +[scrot-readme-color-preset]: https://raw.githubusercontent.com/arcticicestudio/nord-xfce-terminal/develop/src/assets/scrot-readme-color-preset.png diff --git a/xfce-themes/nord-xfce-terminal-develop/install.sh b/xfce-themes/nord-xfce-terminal-develop/install.sh new file mode 100755 index 0000000..225ef66 --- /dev/null +++ b/xfce-themes/nord-xfce-terminal-develop/install.sh @@ -0,0 +1,123 @@ +#!/usr/bin/env bash +# Copyright (c) 2016-present Arctic Ice Studio +# Copyright (c) 2016-present Sven Greb + +# Project: Nord XFCE Terminal +# Repository: https://github.com/arcticicestudio/nord-xfce-terminal +# License: MIT + +set -e + +_ct_error="\e[0;31m" +_ct_success="\e[0;32m" +_ct_warning="\e[0;33m" +_ct_highlight="\e[0;34m" +_ct_primary="\e[0;36m" +_ct="\e[0;37m" +_ctb_subtle="\e[1;30m" +_ctb_error="\e[1;31m" +_ctb_success="\e[1;32m" +_ctb_warning="\e[1;33m" +_ctb_highlight="\e[1;34m" +_ctb_primary="\e[1;36m" +_ctb="\e[1;37m" +_c_reset="\e[0m" + +__help() { + printf "${_ctb}Usage: ${_ct_primary}install.sh ${_ctb_subtle}[OPTIONS]\n" + printf " ${_ctb_highlight}-h${_ct},${_ctb_highlight} --help ${_ct}Help\n" + printf " ${_ctb_highlight}-v${_ct},${_ctb_highlight} --verbose ${_ct}Verbose output\n${_ctb_reset}" + printf " ${_ctb_highlight}-t${_ct},${_ctb_highlight} --themefile \ +${_ct}Use the specified color theme file\n${_ctb_reset}" +} + +__cleanup() { + trap '' SIGINT SIGTERM + unset -v _ct_error _ct_success _ct_warning _ct_highlight _ct_primary _ct + unset -v _ctb_error _ctb_success _ctb_warning _ctb_highlight _ctb_primary _ctb _c_reset + unset -v NORD_XFCE_TERMINAL_SCRIPT_OPTS THEME_FILE VERBOSE LOCAL_INSTALL NORD_XFCE_TERMINAL_VERSION + unset -f __help __cleanup __log_error __log_success __log_warning __log_info + unset -f __validate_file __local_install +} + +__log_error() { + printf "${_ctb_error}[ERROR] ${_ct}$1${_c_reset}\n" +} + +__log_success() { + printf "${_ctb_success}[OK] ${_ct}$1${_c_reset}\n" +} + +__log_warning() { + printf "${_ctb_warning}[WARN] ${_ct}$1${_c_reset}\n" +} + +__log_info() { + printf "${_ctb}[INFO] ${_ct}$1${_c_reset}\n" +} + +__summary_success() { + __log_success "Local installation completed" + __cleanup + exit 0 +} + +__summary_error() { + __log_error "An error occurred during the installation!" + __log_error "Exit code: $1" + __cleanup + exit 1 +} + +__local_install() { + __validate_file + if [ ! -d $LOCAL_INSTALL_DIR ]; then + mkdir -p $LOCAL_INSTALL_DIR + if [ $? -eq 0 ]; then + if [ $VERBOSE = true ]; then __log_info "Created local directory $LOCAL_INSTALL_DIR"; fi + else + __log_error "Could not create local directory $LOCAL_INSTALL_DIR" + __summary_error 1 + fi + fi + cp -f $THEME_FILE $LOCAL_INSTALL_DIR + if [ $? -eq 0 ]; then + if [ $VERBOSE = true ]; then __log_success "Copied color theme file to $LOCAL_INSTALL_DIR"; fi + __summary_success + else + __log_error "Could not copy color theme file to $LOCAL_INSTALL_DIR" + __summary_error 1 + fi +} + +__validate_file() { + if [ ! -f $THEME_FILE ]; then + __log_error "Color theme file not found: $THEME_FILE" + __summary_error 1 + fi +} + +trap "printf '${_ctb_error}User aborted.${_ctb_reset}\n' && exit 1" SIGINT SIGTERM + +NORD_XFCE_TERMINAL_SCRIPT_OPTS=`getopt -o vht: --long verbose,help,themefile: -n 'install.sh' -- "$@"` +THEME_FILE=src/nord.theme +VERBOSE=false +LOCAL_INSTALL_DIR=~/.local/share/xfce4/terminal/colorschemes +NORD_XFCE_TERMINAL_VERSION=0.1.0 + +eval set -- "$NORD_XFCE_TERMINAL_SCRIPT_OPTS" +while true; do + case "$1" in + -v | --verbose ) VERBOSE=true; shift ;; + -h | --help ) __help; exit 0; break ;; + -t | --themefile ) + THEME_FILE="$2"; shift 2 ;; + -- ) shift; break ;; + * ) break ;; + esac +done + +__local_install + +__cleanup +exit 0 diff --git a/xfce-themes/nord-xfce-terminal-develop/src/assets/nord-xfce-terminal-banner.ai b/xfce-themes/nord-xfce-terminal-develop/src/assets/nord-xfce-terminal-banner.ai new file mode 100644 index 0000000..8d3f78c --- /dev/null +++ b/xfce-themes/nord-xfce-terminal-develop/src/assets/nord-xfce-terminal-banner.ai @@ -0,0 +1,21898 @@ +%PDF-1.5 %âãÏÓ +1 0 obj <>/OCGs[5 0 R 33 0 R 60 0 R 87 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream + + + + + application/pdf + + + Nord Xfce Terminal Banner + + + + + Arctic Ice Studio + + + + + Copyright (C) 2016 Arctic Ice Studio + + + + + 2016-10-02T18:15:03+02:00 + 2016-10-02T18:15:03+02:00 + 2016-10-02T18:13:28+02:00 + Adobe Illustrator CS6 (Windows) + + + + 256 + 120 + JPEG + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAeAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7 FXYq7FXy9/zld/ymWkf9s4f8n5MthyYSeb6P+WnnzWtNh1PStFubuwuOXo3EYBVuDFGpU9mUjJWE Ujf+VN/mh/1Ll3/wK/1x4gtJZr/kDzn5es0vNa0i4sbV3ESzyr8HMgkLUE7kA4ghafQf/OPX5tnW 7JPKmtzV1izT/cfcOfiuYEH2CT1kjH3rv1BOVziyBe2ZBk+d/wA7PyDmeeTzH5OtDIZmrf6PCNwz H+9gUdiftIOnUbdLIy72JDyL/lVX5k/9SzqP/SPJ/TJ8QY07/lVX5k/9SzqP/SPJ/THiC07/AJVV +ZP/AFLOo/8ASPJ/THiC0hdU/L/zvpNhLqGp6He2djDx9W5mhdI15sEWrEUFWYDGwtPTv+cUf+Uy 1f8A7Zx/5Px5GfJMX1DlTN2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2Kvl7/nK7 /lMtI/7Zw/5PyZbDkwk9e/5x9/8AJQ6B/wBHf/UbNkJ82Q5PQ8ilL9f0HTNf0a70fVIRPY3kZjmQ 9fEMp7MpAZT2OIKvi/zr5S8wflz5yFsJnjltnFzpOox/D6kYaqSL4MKUYdj7ZeDYazs+qPyk/Muz 89eXVuG4xaxZ8Y9TtFPRyNpUHXhJQkeBqO2VSFMwWcZFLsVdirsVeef85Bf+Sh1//o0/6jYclDmg 8nkP/OKP/KZav/2zj/yfjyc+TGL6hypm7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXy9/zld/ymWkf9s4f8n5MthyYSevf84+/+Sh0D/o7/wCo2bIT5shyeh5FLsVYf+aX5dWHnny3 Jp8vGLUbflLpl4R/dzU+yxG/B6UcfT1AwxNIIfJflrzB5l/LjzqbgRtBf2EjW+oWMhossdaSRNTY hqVVvkwy4iww5Ps/yt5m0rzNoVrrWlyepaXS8gDTkjjZo3A6Mp2OUkU2JrgV2KuxV55/zkF/5KHX /wDo0/6jYclDmg8nkP8Azij/AMplq/8A2zj/AMn48nPkxi+ocqZuxV2KuxV2KuxV2KuxV2KuxV2K uxV2KuxV2KuxV2KuxV2KuxV8vf8AOV3/ACmWkf8AbOH/ACfky2HJhJ69/wA4+/8AkodA/wCjv/qN myE+bIcnoeRS7FXkf5c/mz9Z8+eYvJWtTf6RDqt+NFuHP241uZP9GJPdB9j2+HsMmY7WxBQ//OQP 5Tf4j01vMujQ8tdsI/8ASYUHxXNum5AHeSMbr3I23PHGEqUh47+Sn5qTeSdd+rXrs/l3UXVb6Pc+ i/RbhB4jo9Oq+4GTlG0AvsOCeGeGOeB1lhlUPFIhDKysKqykbEEZSzX4q7FXnn/OQX/kodf/AOjT /qNhyUOaDyeQ/wDOKP8AymWr/wDbOP8Ayfjyc+TGL6hypm7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq 7FXYq7FXYq7FXYq7FXy9/wA5Xf8AKZaR/wBs4f8AJ+TLYcmEnr3/ADj7/wCSh0D/AKO/+o2bIT5s hyeh5FLsVfF/5xeXNd8r/mTqN5KWi+v3k2qaZeREiqyzGVeLdnjY0Pgd/DLomwwL6M/Jj80oPO+g endsqeYNPVU1CEUHqDotwgHZ/wBoDo3tTK5RpkC8i/5yH/Kb9DXr+bdFhppN5J/uRgQbW9w5+2AO kcp+5vmMnCTGQTP/AJxz/NowyReSdbmrDIaaJcufsuT/ALzMT2Y/3fv8PdaCceqYl9HZWydirzz/ AJyC/wDJQ6//ANGn/UbDkoc0Hk8h/wCcUf8AlMtX/wC2cf8Ak/Hk58mMX1DlTN2KuxV2KuxV2Kux V2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2Kvl7/nK7/lMtI/7Zw/5PyZbDkwk9e/5x9/8AJQ6B/wBH f/UbNkJ82Q5PQ8il2KsV/Mn8v9M87+W5tKuqRXSVl068p8UM4Gx90bo69x7gEEGkEPkHTdQ80flz 529UKbXVtLlMdzbt9iRP2kb+aOReh+RHbLuYYcn2L5a8weXfP3lBL2FFuNO1GJob2zkoxRiKSwSD xFfpFCNiMpIpm+bdU/LS88i/nN5Zthyl0e71eyl0u6bqU+tR1jc9OcdaHxFD3pll2GNbvrXKmbsV eef85Bf+Sh1//o0/6jYclDmg8nkP/OKP/KZav/2zj/yfjyc+TGL6hypm7FXYq7FXYq7FXYq7FXYq 7FXYq7FXYq7FXYq7FXYq7FXYq7FXy9/zld/ymWkf9s4f8n5MthyYSevf84+/+Sh0D/o7/wCo2bIT 5shyeh5FLsVdiryf8+PymXzZpB1rSoh/iLTozxRetzAu5iP+Wu5T7u+04ypBDwj8nvzNuvIvmP8A 0ku2h3rCPU7YVJWhoJlX+ePv4jbwyco2xBfXV/pWheZLLT7iUJd28M9tqenXMZBAkhdZYpI3Fdm6 HxUnKuTNNcCuxV55/wA5Bf8Akodf/wCjT/qNhyUOaDyeQ/8AOKP/ACmWr/8AbOP/ACfjyc+TGL6h ypm7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXy9/zld/ymWkf9s4f8n5MthyYS evf84+/+Sh0D/o7/AOo2bIT5shyeh5FLsVdirsVfNv8AzkV+Ugs5pfOmiQ0tZmrrNsg/u5GNPrCg fsuT8fgd+5pZCXRjIKX/ADjr+bP6PuY/JutzUsbl6aRcOdopXP8AcEn9mRvs+Dbd9mceqIl9L5Wz dirzz/nIL/yUOv8A/Rp/1Gw5KHNB5PIf+cUf+Uy1f/tnH/k/Hk58mMX1DlTN2KuxV2KuxV2KuxV2 KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2Kvl7/nK7/lMtI/7Zw/5PyZbDkwki/yy/5yC8teUvI+m+X7 3Tr2e5svX9SWH0vTPq3EkwpydTsJAOmCULKQWUf9DXeTf+rRqP3Qf9VMHAV4nf8AQ13k3/q0aj90 H/VTHgK8Tv8Aoa7yb/1aNR+6D/qpjwFeJ6R5C/MLy9530g6hpEjK0TcLqzloJoW7c1BIowFVYGh+ YORIpILIri3gubeW3uI1lt5kaOaJwGV0cUZWB6gg0OBL46/Of8rp/I3mD1rJWbQL9i+nzbkxN1aB 2/mT9k91965dGVsCHpHkD/nJnR7Xy3BZ+bUupdVtf3X1u3RZBNGo+B35OhD9m8evfImCRJkn/Q0H 5bf761H/AJER/wDVXBwFeJif5q/nx5I80+QdU0HTI71b689D0jNEiR/urmOVqsJGP2UPbDGJBUlJ /wDnFH/lMtX/AO2cf+T8eGfJEX1DlTN2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV 2KvNPzS/JS18/avaalNqz6e1rb/VhGkIlDDmz8ql0/myUZUgi2F/9Claf/1Ms3/SKv8A1VyXiI4X f9Claf8A9TLN/wBIq/8AVXHxF4Xf9Claf/1Ms3/SKv8A1Vx8ReF3/QpWn/8AUyzf9Iq/9VcfEXhT zyd/zj3d+Udch1jR/NU0c8fwyxNaqY5oyfijkX1d1P4dRvgM7UB7HkGSUebPKukeadAutE1WPna3 K0DjZ43G6SRnsyncfcdq4QaV4v8A9Claf/1Ms3/SKv8A1VyfiMeF3/QpWn/9TLN/0ir/ANVcfEXh d/0KVp//AFMs3/SKv/VXHxF4Waflb+Slr5B1e71KHVn1Brq3+rGN4REFHNX5VDv/AC5GUrSBT0vI pdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsV dirsVdirsVdirsVdirsVdirsVdiqS28stpc3N07lrSS4aOdSaiMigWQeC9m+g+OWkWAOrjRJiSel p1lTkoOzZje34JJAkSg8P3S5KXINcPqP46LpdV06J2R7hAy7PQ14n/KI6fTiIFJyxHVECaIxesHX 0qcvUqOPHrWvSmCmVirUmv7NZ1gMymZqUjBqd+lQOlffHhKOMXVrZ9SsIJDHLMqyD7SdSK+IFafT hESUHJEcysM8c11aPDIJInWQhkNVP2fDGqBRxWRSMyLY8jmu778tfzDH1ueSXyN5qlpHJK7Mthfm vw1YnjG/6v8AU3nzDHknP5secNTtI7Tyh5aPPzb5iJitqGn1a3NRLcsRutFB4n2J/ZwRCSWN/mVr Fl5B/LEeVdJ1zh5idYEM8kxF4yzSfvrjqXUNxYVH2R06YRuUHZmv5cWPkvTtIu38t6y2q2YcG8u5 rv60EdEBNXOyfCakZE2kKn/K3fyz+v8A1H/Ell69acvU/dVrT++/uv8AhseErbLVdGQOrBkYclYG oIO9QcCWJyfm3+Wsd/8AUH8x2QuK8T+8rGD0oZR+7H/BYeEotlcckcsaSxOHjcBkdSCrKRUEEdQc CUq80eV9P8yaaNOv5LiKASLKGtZWgk5KCAOab0+LphBpXj35rflto/lrQ9OvNLv9TWa51O1s5TJe zOPSmLc6Anrt1ycTbEhnFv8Akn5StriK4S81UvC6yKGv5itVNRUE7jbI8SaTOT82/wAtY7/6g/mO yFxXif3lYwelDKP3Y/4LBwlbZFfavpdhpr6neXcUGnIqyPdu4EQRiArc+lDyFMCUHc+b/K1tfWdh Pqtql9f8Pqdr6qmWT1fsFUB5UbsaUw0toXUPzC8kadp41C81u0itDJJCsnqBuUkRpIiqtWYoeoA2 xootU07z15O1HSJ9Ys9ZtJdNtqfWbn1VVYq9BJy4lCe3LrjRTahoP5keRdfvjYaRrVtd3u/G3Vir txFTwVwvOg3+GuJBRaGvtNtH/M3TdQbXFhuotOliTy/+1Mhdibj7Y+z0+wenXHoqY3vnnyfYw3c1 3rNpDHYzfVrsvKoMc3++iK157fZ640U2s8uefvJvmWRotD1e3vZkXm0CNxlC1py9Nwr096YkEItG 675l0DQLUXWtahBp8DHijzuE5N4KDux+WICUv8u/mL5I8x3H1bRdZt7y6oWFuGKSkDqRG4ViB3oM SCEWxrVrq5X8+tDtlmcW76JO7QhjwLCV6MV6Vw9F6s505FdLxHAZGuJQyncEGlQcMujXjHP3tWTt bTfo+UkgDlaSN1aMdUJ7sn6qe+Mt91gaPCfgh5mlEmopExR5p4Yg46qHRFZh7hSSMkOjA36q7x+h NIIIYIlhhQJGgoqjoMrJtvjEAUEqvYhbC/hjHGC4tZZgg6LIo4vT/W5qfn88sibr3tExVjoQVdEG n6KzQDlKkRfkeryla8m+bZH6pMwOCGyLtLWO2gWJN6bu5+0zH7TMe5JyJNs4xoUg2tVi1uGaP4Um jlMqjoXHGjfMjr8hkr9LWY1MEdUyyDcwz84bjyzD+Xmrf4iX1LKSP04IlIErXJ/uBETX4w4rWmwB rtXJR5oLzr8gA1r5o1S282JOnniS0tmtHvCCx00RJxSL/KFF5itdvFWyUkBkX/ORGl6Y/kxL57SF r369ZxfWjGhl9MyH4OdOXHfpXBDmkrPzY0y1e58reQ9Jgj0uw80X7tqn1JEg529mqPKh4BRVg4/4 HGPepZ2/kHyY+iHQzo1oNMKen9XESigpTkGpy5/5deVd65GytPKPzAstS8h/lLp/lO61ppLXUNSW wk1MRsGg02TlI6lVMjtxC0oo3XYDtkhuUHkmNr+YX/ONttoI0FJrVtM9P03hfT7ti+1ObP6HIv35 1rXfGpLYRn/OPuuWlzpuvaJp129/o2jX5GjXTh1Y2dxV44yHCv8AAVbqO+MwkPWMgl5n+fv/ACi+ jf8AbcsP1vkooKz/AJyF159N8l21iLprKDWr6GwvrxQSY7RgzztRQzH4UoQBuKjGA3UpVa/mF/zj bbaCNBSa1bTPT9N4X0+7YvtTmz+hyL9+da13w1JFhh9hrlpc/kv5/wBE0+7a/wBF0a5jGjXTh1b6 ncTq8cZEgV/hKnqO/hhrcL0ep/ln+Wnl/S9F07V7+1j1HzLdRRXdzql0qzSpKyBlWFmB9NYweK8K bDIkpAY1+Q3lPR7iHXdevbdLu+GrXVraNMokEEUbhyIg1eBd5GLEe2GRQFC/8jeXpP8AnIOCy+rI ul3GlLrF1pqrxtprqKWSCNpIhRG4/b6dfmcb2Wt0x/PvTtM0vRtC1+xtIrfVNO1e0FvcwosbhDyJ SqjdTwGxxipTDWP/AFoLQf8Ath3H/J18HRPVIvy18n6Nqn5k+etZ1OBLySx1WWGxgmAeKJ5GZpJQ jVXmQqgHtTCTsgBH/mlo2naT528h+YtNt47TUZtah066lhURmWG6ojB+I+Ki8hv44x5FSifOVr5G 0r8wV81ed9ZtHt4rJYNI0W4jMrRNy5PcCJfULknkAfT/ABAwC62SWHfmZ5v8oardeW9W8r2FwNRs 9XtSdbWzltYfSYkek0siRl+ZAovgD7gyiEEs21j/ANaC0H/th3H/ACdfI9E9XoGmAj63X/lok/hj Lowx9feqX1p9Zh4q3pzIecEvdHHQ/LsR3GMTSZxseaWW4ubxL9hH6V2k0TBG2HqQohpXurFaV8Dk zQruaY3K++x9iOXWdO4n1plt5F+3DMQjqfDi3X5jr2yPAW0ZY9TSFuC91b315wZIhbSRWwYEMwIJ Z+J3AYgUr4e+SGxA82uXqBPkjpbcXOnNbk8fVi4cvAlaV+jIA0bbTG415KMOr2oQLeyJa3KD97FK wTcdShanJfAjCYHoxGUddipJcSXWrQTIpFokcqxuQRzY8SWFf2RSgPfDVR82IlcweiaEgAkmgG5J ytveQaTbz/md5/Ou3kTr5K8sSmPR7eUFReXgoTcMp6ouxFf8kfzjJ8gx5p9+bnkrUNVs7XzJ5d/d ebvLzfWNPkUfFNGu8lu38wYV4g96joxwRKSGK/mJ5ri85fk5Z6rawPFcNqFol5ZlWLwzpJ+8Qila b1B8CMIFFB5Mp/N/y/rlxBovmfQLc3mseV7v63HZD7U9vIAJ41puWIRdhvStN6YIlJQsn/OQfkD9 G+rA91NrJHBNBFvMLsz9oj8JSte/I/ftjwFbSXVfKP5i6r+V9lqeoO9x500/U08wWlk9KxiNvgtV 8OMfxcevL4cNi0UncX/OQX5fLpvq30txZ6ugCz6G9tMbpZ6f3QHHgd+hLD3pg4Cm07/LO986anpV 3rHmgNbHUblptK0p0RHtbP8A3WjlVVmZu/Pfp06YDShmGBLzX8+YpZPLGjiNGcjW7EkKCTQF99sl FBR/5xeWdX1ryxb3eiJ6mt6DewarYQjrI9uTWMe/FqjxIAxiVKXw/wDOQX5fLpwkv5bmy1dAFn0R 7aY3SzU/ugOIQmvQlh70x4CtpB5kufPGr/kr5r1XzIjwyak6y6TpBjRZLWz9eP00coquznqee/y6 YRVo6PWvLoI8v6YCKEWkAIP/ABjXIFkwX8hopY/LGsCRGQnW74gMCDQlN98lJAddRS/9DD2kvBvS HlkrzoeNfrkhpXxx6L1Q/wDzkXFLL5IsViRnYataEhQSaASb7Yw5qURq8Up/P7QpAjGMaJcAvQ8Q fVfauPRervymilTzP+YJdGUPrblCQQCKHcVxl0UO/OSKWTUPIRRGcJ5msGfiCaAMdzTtjHqpY5Jr GheTfzl8xap52t2ig1VbVvL+tyQvNDGsUfGSJGUOUatAaD9nsDh5jZHVLvza8+P5u0izn8r6fd6h 5b0S/t77VNWWF0RmjYqkUKyBWenIlzSg+HxwxFKSyn69Hq351+WNWtI5PqV15flljeRGQgPI5UMD 9k0PQ5Honq9VyKXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FVvpRep6vBfVI486DlTrSvhiq7FVpiiMg lKKZAKB6DkB4VxVdirsVdirsVWmKIyCUopkAoHoOQHhXFV2KuxV2KuxV2KuxV2KuxVbJHHIhSRQ6 HqrAEH6Diq4AAAAUA2AGKuxV/9k= + + + + + + uuid:22f89834-5847-485c-8b22-903550d5ab1a + xmp.did:C3BC849FB888E611B6A48BFF43593540 + uuid:5D20892493BFDB11914A8590D31508C8 + proof:pdf + + uuid:8c3548a0-e885-4a62-beb8-86304c32529a + xmp.did:C1BC849FB888E611B6A48BFF43593540 + uuid:5D20892493BFDB11914A8590D31508C8 + proof:pdf + + + + + saved + xmp.iid:A2407A3A5E74E611B3038A8245A8D27E + 2016-09-06T20:17:53+02:00 + Adobe Illustrator CS6 (Windows) + / + + + saved + xmp.iid:C3BC849FB888E611B6A48BFF43593540 + 2016-10-02T18:13:28+02:00 + Adobe Illustrator CS6 (Windows) + / + + + + + + Document + Print + + + False + False + 1 + + 888.000000 + 200.000000 + Pixels + + + + Cyan + Magenta + Yellow + Black + + + + + + Standard-Farbfeldgruppe + 0 + + + + Weiß + RGB + PROCESS + 255 + 255 + 255 + + + Schwarz + RGB + PROCESS + 29 + 29 + 27 + + + CMYK Rot + RGB + PROCESS + 227 + 6 + 19 + + + CMYK Gelb + RGB + PROCESS + 255 + 237 + 0 + + + CMYK Grün + RGB + PROCESS + 0 + 150 + 64 + + + CMYK Cyan + RGB + PROCESS + 0 + 159 + 227 + + + CMYK Blau + RGB + PROCESS + 49 + 39 + 131 + + + CMYK Magenta + RGB + PROCESS + 230 + 0 + 126 + + + C=15 M=100 Y=90 K=10 + RGB + PROCESS + 190 + 22 + 34 + + + C=0 M=90 Y=85 K=0 + RGB + PROCESS + 230 + 51 + 42 + + + C=0 M=80 Y=95 K=0 + RGB + PROCESS + 233 + 78 + 27 + + + C=0 M=50 Y=100 K=0 + RGB + PROCESS + 243 + 146 + 0 + + + C=0 M=35 Y=85 K=0 + RGB + PROCESS + 249 + 178 + 51 + + + C=5 M=0 Y=90 K=0 + RGB + PROCESS + 252 + 234 + 16 + + + C=20 M=0 Y=100 K=0 + RGB + PROCESS + 222 + 220 + 0 + + + C=50 M=0 Y=100 K=0 + RGB + PROCESS + 149 + 193 + 31 + + + C=75 M=0 Y=100 K=0 + RGB + PROCESS + 58 + 170 + 53 + + + C=85 M=10 Y=100 K=10 + RGB + PROCESS + 0 + 141 + 54 + + + C=90 M=30 Y=95 K=30 + RGB + PROCESS + 0 + 102 + 51 + + + C=75 M=0 Y=75 K=0 + RGB + PROCESS + 47 + 172 + 102 + + + C=80 M=10 Y=45 K=0 + RGB + PROCESS + 0 + 161 + 154 + + + C=70 M=15 Y=0 K=0 + RGB + PROCESS + 54 + 169 + 225 + + + C=85 M=50 Y=0 K=0 + RGB + PROCESS + 29 + 113 + 184 + + + C=100 M=95 Y=5 K=0 + RGB + PROCESS + 45 + 46 + 131 + + + C=100 M=100 Y=25 K=25 + RGB + PROCESS + 41 + 35 + 92 + + + C=75 M=100 Y=0 K=0 + RGB + PROCESS + 102 + 36 + 131 + + + C=50 M=100 Y=0 K=0 + RGB + PROCESS + 149 + 27 + 129 + + + C=35 M=100 Y=35 K=10 + RGB + PROCESS + 163 + 25 + 91 + + + C=10 M=100 Y=50 K=0 + RGB + PROCESS + 214 + 11 + 82 + + + C=0 M=95 Y=20 K=0 + RGB + PROCESS + 231 + 29 + 115 + + + C=25 M=25 Y=40 K=0 + RGB + PROCESS + 203 + 187 + 160 + + + C=40 M=45 Y=50 K=5 + RGB + PROCESS + 164 + 138 + 123 + + + C=50 M=50 Y=60 K=25 + RGB + PROCESS + 123 + 106 + 88 + + + C=55 M=60 Y=65 K=40 + RGB + PROCESS + 99 + 78 + 66 + + + C=25 M=40 Y=65 K=0 + RGB + PROCESS + 202 + 158 + 103 + + + C=30 M=50 Y=75 K=10 + RGB + PROCESS + 177 + 127 + 74 + + + C=35 M=60 Y=80 K=25 + RGB + PROCESS + 147 + 96 + 55 + + + C=40 M=65 Y=90 K=35 + RGB + PROCESS + 125 + 78 + 36 + + + C=40 M=70 Y=100 K=50 + RGB + PROCESS + 104 + 60 + 17 + + + C=50 M=70 Y=80 K=70 + RGB + PROCESS + 67 + 41 + 24 + + + + + + Graustufen + 1 + + + + C=0 M=0 Y=0 K=100 + RGB + PROCESS + 29 + 29 + 27 + + + C=0 M=0 Y=0 K=90 + RGB + PROCESS + 60 + 60 + 59 + + + C=0 M=0 Y=0 K=80 + RGB + PROCESS + 87 + 87 + 86 + + + C=0 M=0 Y=0 K=70 + RGB + PROCESS + 112 + 111 + 111 + + + C=0 M=0 Y=0 K=60 + RGB + PROCESS + 135 + 135 + 135 + + + C=0 M=0 Y=0 K=50 + RGB + PROCESS + 157 + 157 + 156 + + + C=0 M=0 Y=0 K=40 + RGB + PROCESS + 178 + 178 + 178 + + + C=0 M=0 Y=0 K=30 + RGB + PROCESS + 198 + 198 + 198 + + + C=0 M=0 Y=0 K=20 + RGB + PROCESS + 218 + 218 + 218 + + + C=0 M=0 Y=0 K=10 + RGB + PROCESS + 237 + 237 + 237 + + + C=0 M=0 Y=0 K=5 + RGB + PROCESS + 246 + 246 + 246 + + + + + + Strahlende Farben + 1 + + + + C=0 M=100 Y=100 K=0 + RGB + PROCESS + 227 + 6 + 19 + + + C=0 M=75 Y=100 K=0 + RGB + PROCESS + 234 + 91 + 12 + + + C=0 M=10 Y=95 K=0 + RGB + PROCESS + 255 + 222 + 0 + + + C=85 M=10 Y=100 K=0 + RGB + PROCESS + 0 + 152 + 58 + + + C=100 M=90 Y=0 K=0 + RGB + PROCESS + 39 + 52 + 139 + + + C=60 M=90 Y=0 K=0 + RGB + PROCESS + 130 + 54 + 140 + + + + + + + + + Adobe PDF library 10.01 + + + True + http://arcticicestudio.com + + + + + + + + + + + + + + + + + + + + + + + + + +endstream endobj 3 0 obj <> endobj 7 0 obj <>/Resources<>/Properties<>>>/Thumb 92 0 R/TrimBox[0.0 0.0 888.0 200.0]/Type/Page>> endobj 89 0 obj <>stream +/OC /MC0 BDC +0.533 0.753 0.816 rg +/GS0 gs +q 1 0 0 1 267.6216 46.0332 cm +0 0 m +1.35 0 l +23.309 -31.004 l +23.399 -31.004 l +23.399 0 l +24.299 0 l +24.299 -32.129 l +22.949 -32.129 l +0.99 -1.125 l +0.9 -1.125 l +0.9 -32.129 l +0 -32.129 l +h +f +Q +q +0 200 888 -200 re +W n +q 1 0 0 1 306.0513 14.2646 cm +0 0 m +6.165 0 9.495 5.354 9.495 11.204 c +9.495 16.964 6.165 22.409 0 22.409 c +-6.255 22.409 -9.54 16.964 -9.54 11.204 c +-9.54 5.354 -6.255 0 0 0 c +0 23.309 m +6.75 23.309 10.395 17.504 10.395 11.204 c +10.395 4.859 6.75 -0.9 -0.045 -0.9 c +-6.795 -0.9 -10.44 4.859 -10.44 11.204 c +-10.44 17.504 -6.795 23.309 0 23.309 c +f +Q +q 1 0 0 1 321.0815 13.9043 cm +0 0 m +-0.9 0 l +-0.9 23.129 l +0 23.129 l +0 17.414 l +0.09 17.414 l +0.945 20.834 3.645 23.849 9.18 23.669 c +9.18 22.77 l +2.835 23.084 0 18.134 0 13.095 c +h +f +Q +q 1 0 0 1 340.4756 36.6738 cm +0 0 m +-6.345 0 -8.955 -5.896 -8.955 -11.25 c +-8.955 -17.189 -5.985 -22.409 0 -22.409 c +5.939 -22.409 9.359 -17.234 9.359 -11.25 c +9.359 -4.096 5.625 0 0 0 c +9.359 9.359 m +10.259 9.359 l +10.259 -22.77 l +9.359 -22.77 l +9.359 -16.29 l +9.27 -16.29 l +8.1 -20.34 4.725 -23.31 0 -23.31 c +-6.12 -23.31 -9.855 -18.225 -9.855 -11.25 c +-9.855 -4.771 -6.39 0.899 0 0.899 c +4.905 0.899 8.189 -1.936 9.27 -6.12 c +9.359 -6.12 l +h +f +Q +0.18 0.204 0.251 rg +q 1 0 0 1 366.1699 46.0332 cm +0 0 m +3.6 0 l +12.69 -13.455 l +22.094 0 l +25.514 0 l +14.535 -15.659 l +26.144 -32.129 l +22.454 -32.129 l +12.69 -17.954 l +2.79 -32.129 l +-0.675 -32.129 l +10.89 -15.569 l +h +f +Q +q 1 0 0 1 403.5195 34.7383 cm +0 0 m +-4.59 0 l +-4.59 -20.834 l +-7.425 -20.834 l +-7.425 0 l +-11.385 0 l +-11.385 2.385 l +-7.425 2.385 l +-7.425 4.5 l +-7.47 8.505 -6.345 11.295 -1.8 11.295 c +-0.99 11.295 -0.315 11.25 0.585 11.114 c +0.585 8.685 l +-0.181 8.819 -0.811 8.91 -1.485 8.91 c +-4.635 8.91 -4.545 6.93 -4.59 4.41 c +-4.59 2.385 l +0 2.385 l +h +f +Q +q 1 0 0 1 422.5986 29.834 cm +0 0 m +-0.765 3.465 -2.88 5.579 -6.569 5.579 c +-12.015 5.579 -14.714 0.63 -14.714 -4.32 c +-14.714 -9.27 -12.015 -14.22 -6.569 -14.22 c +-3.06 -14.22 -0.18 -11.475 0.18 -7.605 c +3.015 -7.605 l +2.25 -13.185 -1.395 -16.604 -6.569 -16.604 c +-13.68 -16.604 -17.549 -10.979 -17.549 -4.32 c +-17.549 2.34 -13.68 7.964 -6.569 7.964 c +-1.62 7.964 2.205 5.31 2.835 0 c +h +f +Q +q 1 0 0 1 446.2686 27.1338 cm +0 0 m +-0.136 4.274 -2.79 8.279 -7.38 8.279 c +-12.015 8.279 -14.58 4.229 -15.029 0 c +h +-15.029 -2.385 m +-14.984 -6.524 -12.825 -11.52 -7.38 -11.52 c +-3.24 -11.52 -0.99 -9.09 -0.09 -5.58 c +2.744 -5.58 l +1.529 -10.845 -1.53 -13.904 -7.38 -13.904 c +-14.76 -13.904 -17.864 -8.234 -17.864 -1.62 c +-17.864 4.5 -14.76 10.664 -7.38 10.664 c +0.09 10.664 3.06 4.14 2.835 -2.385 c +h +f +Q +q 1 0 0 1 462.5137 46.0332 cm +0 0 m +25.469 0 l +25.469 -2.61 l +14.264 -2.61 l +14.264 -32.129 l +11.204 -32.129 l +11.204 -2.61 l +0 -2.61 l +h +f +Q +q 1 0 0 1 502.1572 27.1338 cm +0 0 m +-0.136 4.274 -2.79 8.279 -7.38 8.279 c +-12.015 8.279 -14.58 4.229 -15.029 0 c +h +-15.029 -2.385 m +-14.984 -6.524 -12.825 -11.52 -7.38 -11.52 c +-3.24 -11.52 -0.99 -9.09 -0.09 -5.58 c +2.744 -5.58 l +1.529 -10.845 -1.53 -13.904 -7.38 -13.904 c +-14.76 -13.904 -17.864 -8.234 -17.864 -1.62 c +-17.864 4.5 -14.76 10.664 -7.38 10.664 c +0.09 10.664 3.06 4.14 2.835 -2.385 c +h +f +Q +q 1 0 0 1 508.8174 37.123 cm +0 0 m +2.609 0 l +2.609 -5.444 l +2.699 -5.444 l +4.14 -1.71 7.289 0.495 11.475 0.315 c +11.475 -2.52 l +6.345 -2.25 2.835 -6.029 2.835 -10.845 c +2.835 -23.219 l +0 -23.219 l +h +f +Q +q 1 0 0 1 522.9922 37.123 cm +0 0 m +2.609 0 l +2.609 -3.914 l +2.744 -3.914 l +4.229 -1.125 6.659 0.675 10.35 0.675 c +13.409 0.675 16.154 -0.81 17.009 -3.869 c +18.404 -0.81 21.329 0.675 24.389 0.675 c +29.474 0.675 32.083 -1.979 32.083 -7.47 c +32.083 -23.219 l +29.248 -23.219 l +29.248 -7.604 l +29.248 -3.779 27.809 -1.71 23.759 -1.71 c +18.854 -1.71 17.459 -5.76 17.459 -10.079 c +17.459 -23.219 l +14.624 -23.219 l +14.624 -7.47 l +14.669 -4.319 13.364 -1.71 9.765 -1.71 c +4.859 -1.71 2.88 -5.399 2.835 -10.26 c +2.835 -23.219 l +0 -23.219 l +h +f +Q +560.521 37.123 2.835 -23.219 re +560.521 46.033 2.835 -4.545 re +f +q 1 0 0 1 568.7568 37.123 cm +0 0 m +2.835 0 l +2.835 -4.005 l +2.925 -4.005 l +3.959 -1.215 7.064 0.675 10.35 0.675 c +16.874 0.675 18.854 -2.744 18.854 -8.279 c +18.854 -23.219 l +16.019 -23.219 l +16.019 -8.729 l +16.019 -4.725 14.714 -1.71 10.124 -1.71 c +5.624 -1.71 2.925 -5.13 2.835 -9.674 c +2.835 -23.219 l +0 -23.219 l +h +f +Q +q 1 0 0 1 607.8145 26.5938 cm +0 0 m +-0.09 0 l +-0.449 -0.675 -1.71 -0.9 -2.475 -1.035 c +-7.289 -1.89 -13.274 -1.845 -13.274 -6.39 c +-13.274 -9.225 -10.754 -10.979 -8.1 -10.979 c +-3.779 -10.979 0.046 -8.234 0 -3.689 c +h +-15.119 3.42 m +-14.849 8.864 -11.024 11.204 -5.714 11.204 c +-1.619 11.204 2.835 9.944 2.835 3.735 c +2.835 -8.595 l +2.835 -9.675 3.375 -10.305 4.5 -10.305 c +4.815 -10.305 5.175 -10.215 5.4 -10.125 c +5.4 -12.51 l +4.771 -12.645 4.32 -12.689 3.556 -12.689 c +0.676 -12.689 0.226 -11.069 0.226 -8.64 c +0.136 -8.64 l +-1.845 -11.654 -3.869 -13.364 -8.324 -13.364 c +-12.599 -13.364 -16.108 -11.25 -16.108 -6.569 c +-16.108 -0.045 -9.764 0.18 -3.645 0.9 c +-1.305 1.17 0 1.485 0 4.05 c +0 7.875 -2.744 8.819 -6.074 8.819 c +-9.584 8.819 -12.194 7.2 -12.284 3.42 c +h +f +Q +616.365 46.033 2.835 -32.129 re +f +q 1 0 0 1 466.5596 64.0342 cm +0 0 m +-43.391 55.545 l +-43.391 70.957 l +4.699 8.785 l +30.543 8.785 l +30.543 96.33 l +-12.922 96.33 l +-22.317 105.729 l +39.939 105.729 l +39.939 0 l +h +f +Q +q 1 0 0 1 421.4399 169.7627 cm +0 0 m +43.393 -55.541 l +43.393 -70.951 l +-4.698 -8.783 l +-30.541 -8.783 l +-30.541 -96.328 l +12.922 -96.328 l +22.321 -105.729 l +-39.939 -105.729 l +-39.939 0 l +h +f +Q +EMC +Q + +endstream endobj 92 0 obj <>stream +8;Z\u9+lk2$q$@AN,keu3/i2N?)Mg]LTk9]@T@crLQ-PR7$.FpU +$"46EFs8)BQm@!P(+AU:8goOJjT1F($_>Wi!jtF5N9QLo.%$t-Lio!T7#Z17--ETq +=XGs]:7QID18Dg'4&@Ij4TjrGctbP_R5f5'R!\1^ITabYS^7*)qBKQ8XSk4)lrAlI +Y4(f.jrTL?^GjI1V4g-4fP.)+!1/*e"9~> +endstream endobj 93 0 obj [/Indexed/DeviceRGB 255 94 0 R] endobj 94 0 obj <>stream +8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 +b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` +E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn +6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( +l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> +endstream endobj 87 0 obj <> endobj 95 0 obj [/View/Design] endobj 96 0 obj <>>> endobj 91 0 obj <> endobj 90 0 obj <> endobj 97 0 obj <> endobj 98 0 obj <>stream +%!PS-Adobe-3.0 +%%Creator: Adobe Illustrator(R) 16.0 +%%AI8_CreatorVersion: 16.0.0 +%%For: (sven) () +%%Title: (nord-xfce-terminal-banner.ai) +%%CreationDate: 10/2/2016 6:15 PM +%%Canvassize: 16383 +%%BoundingBox: 265 -196 623 -30 +%%HiResBoundingBox: 265.1924 -195.7256 622.8076 -30.2373 +%%DocumentProcessColors: Cyan Magenta Yellow Black +%AI5_FileFormat 12.0 +%AI12_BuildNumber: 682 +%AI3_ColorUsage: Color +%AI7_ImageSettings: 0 +%%RGBProcessColor: 0 0 0 ([Passermarken]) +%AI3_Cropmarks: 0 -200 888 0 +%AI3_TemplateBox: 444.5 -100.5 444.5 -100.5 +%AI3_TileBox: 48 -406 840 206 +%AI3_DocumentPreview: None +%AI5_ArtSize: 14400 14400 +%AI5_RulerUnits: 6 +%AI9_ColorModel: 1 +%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 +%AI5_TargetResolution: 800 +%AI5_NumLayers: 1 +%AI9_OpenToView: 197 51 3 1385 955 2 0 0 144 116 0 0 0 1 1 0 1 1 0 1 +%AI5_OpenViewLayers: 3 +%%PageOrigin:138 -496 +%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 +%AI9_Flatten: 1 +%AI12_CMSettings: 00.MS +%%EndComments + +endstream endobj 99 0 obj <>stream +%%BoundingBox: 265 -196 623 -30 +%%HiResBoundingBox: 265.1924 -195.7256 622.8076 -30.2373 +%AI7_Thumbnail: 128 60 8 +%%BeginData: 6398 Hex Bytes +%0000330000660000990000CC0033000033330033660033990033CC0033FF +%0066000066330066660066990066CC0066FF009900009933009966009999 +%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 +%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 +%3333663333993333CC3333FF3366003366333366663366993366CC3366FF +%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 +%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 +%6600666600996600CC6600FF6633006633336633666633996633CC6633FF +%6666006666336666666666996666CC6666FF669900669933669966669999 +%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 +%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF +%9933009933339933669933999933CC9933FF996600996633996666996699 +%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 +%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF +%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 +%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 +%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF +%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC +%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 +%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 +%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 +%000011111111220000002200000022222222440000004400000044444444 +%550000005500000055555555770000007700000077777777880000008800 +%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB +%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF +%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF +%524C45FD29FF7D2727282728272827282728272827A8FD07FF7D05282728 +%2728272827282728272827282728272827A8FD52FFA800FD052705272727 +%0527272705A8FD07FF7D0027052727270527272705272727052727270527 +%7DFD52FF7D272728272827272728FD0727FD08FF7D052705272727052727 +%27052727270527272705A8FD52FF7E002727A87EA884A87DA8A8A8522727 +%272EFD08FFA87D7E7DA87D7E7DA87D7E7DA87D847D2805277DFD52FF7D27 +%272EFD0AFF522727277DFD17FF272705A8FD52FF84002727FD0BFF272705 +%277DFD15FFA82805277DFD52FF7D27272EFD0BFFA827270528A8FD15FF27 +%2827A8FD52FFA8002727FD0CFF7D00270052FD14FFA82700277DFD52FF7D +%272752FD0DFF590028057DFD14FF272827A8FD52FFA8002727FD0EFF2E00 +%27007DFD13FF2800277DFD52FF7D272728FD0EFFA827272827A8FD12FF27 +%2705A8FD52FF7E002727FD0FFF7D27052727FD11FFA82805277DFD52FF7D +%27272EFD10FF5327272752FD11FF272705A8FD52FF84002727FD0BFF537D +%FD04FF2827272752FD0FFFA82805277DFD52FF7D27272EFD0BFF7D00A8FD +%04FFFD04277DFD0FFF272827A8FD52FFA8002727FD0BFF590527FD04FFA8 +%00270527A8FD0DFFA82700277DFD52FF7D272752FD0BFF7E052752FD04FF +%7D05280552FD0EFF272827A8FD52FFA8002727FD0BFF5927272753FD04FF +%520027F853FD0DFF2800277DFD52FF7D272728FD0BFFA9FD04277DFFFFFF +%A8522728007EFD0CFF272705A8FD52FF7E002727FD0CFF8400270527A8FF +%FFFFA827052700A8FD0AFFA82805277DFD52FF7D27272EFD0DFF7D052805 +%52FD04FF7D2727277DFD0BFF272705A8FD52FF84002727FD0EFF52002700 +%7DFD04FF5227F87DFD0AFFA82805277DFD52FF7D27272EFD0EFFA8522727 +%00A8FD04FF2E057DFD0BFF272827A8FD52FFA8002727FD0FFF7E27052700 +%A8FFFFFFAF007DFD0AFFA82700277DFD52FF7D272752FD10FF7D27272728 +%FD04FF7E7DFD0BFF272827A8FD52FFA8002727FD11FF5227272752FD10FF +%2800277DFD52FF7D272728FD12FF2E2727277DFD0FFF272705A8FD52FF7E +%002727FD12FFAF272700277DFD0DFFA82805277DFD52FF7D27272EFD13FF +%A805282728A8FD0DFF272705A8FD52FF84002727FD14FF7D00270052FD0C +%FFA82805277DFD52FF7D27272EFD15FF520028057DFD0CFF272827A8FD52 +%FFA8002727FD15FFA8280027007EFD0AFFA82700277DFD52FF7D272752FD +%16FFA828272727FD0BFF272827A8FD52FFA8002727FD17FF7DFD0427FD0A +%FF2800277DFD52FF7D272728527D537D527D537D527D537D527D537DFD08 +%FF5227272752A87DA87DA87DA87DA8272705A8FD52FF7E00272727F82700 +%27F8270027F8270027F827F853FD08FFFD04270027002700270027002727 +%277DFD52FF7DFD0427282727272827272728272727282727007DFD08FF27 +%2727282727272827272728272700A8FD52FFA82752285227522852275228 +%522752285227522852277DFD07FFA8275227522852275228522752282E7D +%FDFCFFFDFCFFFDFCFFFD36FFA8FD07FFA9FD1AFF7D53FD05FFA852A8FF7D +%527DFD14FFA852535259525352527DFD19FF7E7DFD12FF847DFFA884A8FD +%05FFAFA9FD14FFA8FD05FFA8277DFD04FF2852FFA8277DA8FD14FFA8A87D +%A8522E7DA87DA8FD19FF7D28FD12FF7D27FFFFAFAFAFFD05FFA9FD14FFAF +%FD06FF7D27A8FFFF7D27FFFFA827FD1AFFA852FD31FF7D52FFA8FFFFA9FD +%04FFA8AFFFFFA8AFA8A9A8FFFFFFA8AF84FFFFAFA8A9A8FFA8FD07FF2E52 +%FFA800A8FFA827272E7EFFFF52522759A8FFFFFF53522853A8FD09FF7D52 +%FD04FF53522853A8FFFF7DA8A828A87DA87D52277EFF7D275253FFFFA87D +%FF7E7E7E52275284FFFFFF7D5227527DFFFF7D28FFFFAFFFA9AFFD04FFA9 +%FFAFAFFFFFFFAFA9FFA8AFAFFFFFAFAFFFFFFFA8FD09FF277D277EFFFFA8 +%7D277DA8FF2753A8A82852FFFF5252A8AF5252FD09FF8452FFFFFF5252A8 +%AF5252FFFF2852287DA87D277DA8A8275252FFA8287DFF7D52FFA827527D +%FF5227A8FF7D287DFF7D287DFF7D52FFA8FFFFFF84FFFFFFA9AFFFA9AFFD +%04FFAFFFAF84FFFFAFA8FD04FFAF84FD08FFA8F853FD04FFA852FFFF5252 +%FD04FF27A8A827A8FFFFFF287DFD08FF7D52FFFF7E27A8FFFFFF287DFF2E +%27FFFFFF2852FFFFFF5927FFFFFF7D52FF7E2EFF7D27A8FFFFFF277DFF52 +%7DFFFFFF7D52FF7E2EFFFFA8FFFFFF84FFFFFFA8FFA9FD05FFA9FFAFFFFF +%FFA9FD06FFAFFD08FF7D272EFD04FFA828FFFF52A8FD06FF7D52FFA8FFFF +%8427FD08FFA852FFFF7D52FFA8FFFF8428FF287EFFFFFF527DFFFFFF537D +%FFFFFFA828FF7D52FF842EFD04FF537DFFA8FFFFFFA85252FF7D52FFA8AF +%FD04FF84FFAFAFA8FD07FFA8AFA8FFFFAFAFFD05FFA8FD07FF84277D2E52 +%FFFFFF7D52FFFF27A9FD06FF52272728272E2752A8FD07FF7D52FFFF5227 +%2728272E2752A8527DFFFFFF287DFFFFFF7D52FFFFFF7D2EFF7D28FF7D52 +%FD04FF527DFFA8525228532852FF7D28FFFFA9FD05FFAFFFA8FFAFFD05FF +%AFFFAFFFFFFFA9FD06FFAFFD07FF2E59FFA827A8FFFFA82EFFFF52A8FD05 +%FFA87D52FD05FFA8FD08FFA852FFFF7D52FD07FF2EA8FFFFFF527DFFFFFF +%597DFFFFFFA828FF7D53FFA852FD04FF7D7DFF277DA8FFFFA852FF7D53FF +%A8AFFD05FFAFA8AFAFAFFD05FFAFA8AFA9FFFFAFA8FD04FFAF84FD06FF53 +%27FFFFFF5327A8FF7D52FFFF2E59FD04FF27A87D2EFD04FF7D52FD08FF7D +%52FFFF7D2EFD04FF7D52FF527DFFFFFF2E7DFFFFFF7D52FFFFFF7D52FF7D +%28FF7D52FD04FF527DA827FD04FF5252FF7D28FFFFAFFD06FFAFA8FFA8AF +%FD04FFA8FFA8FD04FFAFFD04FF84AFFD05FFA805A9FD04FF2752FFA827FF +%FFA8057EFFFF5252FFFF277DFFFF7D277EFD08FF7D28FFFFFF277DFFFF7D +%27A8FF27A8FFFFFF527DFFFFFF5352FFFFFF7E27FF7D52FF8452FD04FF52 +%53FF277DFFFF7D2727FF7D52FFA8FD07FFA8A9FFFFA8AFA8A984FFFFAFA8 +%FFFFFFA8A9A8AF84FFA8FD05FF277DFD05FFA827A8A852A8FFFFA8275227 +%52A8FFFFA8282E27277DFD09FF7D53FFFFFFA8282E27277DFFFF527EFFFF +%FF52A8FFFFFF7D52FFFFFF7D52FFA852FF7D59FD04FF527DFFA8272E2753 +%A8527DA852FD36FFA8FD07FFA8FD13FFA8FD25FFA8FDFCFFFD8BFFFF +%%EndData + +endstream endobj 100 0 obj <>stream +ale) /UnicodeString (xmlnode-nodename) , +; (scale) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b2) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b3) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b1) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b3) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(A) /UnicodeString (xmlnode-nodevalue) , +(yChannelSelector) /UnicodeString (xmlnode-nodename) , +; (yChannelSelector) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(R) /UnicodeString (xmlnode-nodevalue) , +(xChannelSelector) /UnicodeString (xmlnode-nodename) , +; (xChannelSelector) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feDisplacementMap) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(matrix) /UnicodeString (xmlnode-nodevalue) , +(type) /UnicodeString (xmlnode-nodename) , +; (type) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , +(values) /UnicodeString (xmlnode-nodename) , +; (values) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b4) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b3) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b4) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feColorMatrix) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(stdDeviation) /UnicodeString (xmlnode-nodename) , +; (stdDeviation) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b5) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b4) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b5) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(freeze) /UnicodeString (xmlnode-nodevalue) , +(fill) /UnicodeString (xmlnode-nodename) , +; (fill) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(none) /UnicodeString (xmlnode-nodevalue) , +(accumulate) /UnicodeString (xmlnode-nodename) , +; (accumulate) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(replace) /UnicodeString (xmlnode-nodevalue) , +(additive) /UnicodeString (xmlnode-nodename) , +; (additive) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(linear) /UnicodeString (xmlnode-nodevalue) , +(calcMode) /UnicodeString (xmlnode-nodename) , +; (calcMode) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(stdDeviation) /UnicodeString (xmlnode-nodevalue) , +(attributeName) /UnicodeString (xmlnode-nodename) , +; (attributeName) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(5s) /UnicodeString (xmlnode-nodevalue) , +(dur) /UnicodeString (xmlnode-nodename) , +; (dur) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(always) /UnicodeString (xmlnode-nodevalue) , +(restart) /UnicodeString (xmlnode-nodename) , +; (restart) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0s) /UnicodeString (xmlnode-nodevalue) , +(begin) /UnicodeString (xmlnode-nodename) , +; (begin) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(5) /UnicodeString (xmlnode-nodevalue) , +(to) /UnicodeString (xmlnode-nodename) , +; (to) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(from) /UnicodeString (xmlnode-nodename) , +; (from) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(animate) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feGaussianBlur) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(-8) /UnicodeString (xmlnode-nodevalue) , +(dy) /UnicodeString (xmlnode-nodename) , +; (dy) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c1) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c1) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feOffset) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(fractalNoise) /UnicodeString (xmlnode-nodevalue) , +(type) /UnicodeString (xmlnode-nodename) , +; (type) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(10) /UnicodeString (xmlnode-nodevalue) , +(numOctaves) /UnicodeString (xmlnode-nodename) , +; (numOctaves) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0.05) /UnicodeString (xmlnode-nodevalue) , +(baseFrequency) /UnicodeString (xmlnode-nodename) , +; (baseFrequency) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(noStitch) /UnicodeString (xmlnode-nodevalue) , +(stitchTiles) /UnicodeString (xmlnode-nodename) , +; (stitchTiles) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c2) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c1) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c2) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feTurbulence) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(8) /UnicodeString (xmlnode-nodevalue) , +(scale) /UnicodeString (xmlnode-nodename) , +; (scale) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c2) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c3) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c1) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c3) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(A) /UnicodeString (xmlnode-nodevalue) , +(yChannelSelector) /UnicodeString (xmlnode-nodename) , +; (yChannelSelector) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(R) /UnicodeString (xmlnode-nodevalue) , +(xChannelSelector) /UnicodeString (xmlnode-nodename) , +; (xChannelSelector) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feDisplacementMap) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(matrix) /UnicodeString (xmlnode-nodevalue) , +(type) /UnicodeString (xmlnode-nodename) , +; (type) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , +(values) /UnicodeString (xmlnode-nodename) , +; (values) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c4) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c3) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c4) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feColorMatrix) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(stdDeviation) /UnicodeString (xmlnode-nodename) , +; (stdDeviation) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c5) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c4) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c5) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feGaussianBlur) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c5) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMergeNode) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b5) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMergeNode) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(a) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMergeNode) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMerge) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(50 50) /UnicodeString (xmlnode-nodevalue) , +(filterRes) /UnicodeString (xmlnode-nodename) , +; (filterRes) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , +(filterUnits) /UnicodeString (xmlnode-nodename) , +; (filterUnits) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_Pixelspiel_1) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(remove) /UnicodeString (xmlnode-nodevalue) , +(fill) /UnicodeString (xmlnode-nodename) , +; (fill) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(indefinite) /UnicodeString (xmlnode-nodevalue) , +(repeatDur) /UnicodeString (xmlnode-nodename) , +; (repeatDur) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(none) /UnicodeString (xmlnode-nodevalue) , +(accumulate) /UnicodeString (xmlnode-nodename) , +; (accumulate) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(replace) /UnicodeString (xmlnode-nodevalue) , +(additive) /UnicodeString (xmlnode-nodename) , +; (additive) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(spline) /UnicodeString (xmlnode-nodevalue) , +(calcMode) /UnicodeString (xmlnode-nodename) , +; (calcMode) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(filterRes) /UnicodeString (xmlnode-nodevalue) , +(attributeName) /UnicodeString (xmlnode-nodename) , +; (attributeName) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(10s) /UnicodeString (xmlnode-nodevalue) , +(dur) /UnicodeString (xmlnode-nodename) , +; (dur) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(always) /UnicodeString (xmlnode-nodevalue) , +(restart) /UnicodeString (xmlnode-nodename) , +; (restart) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0s) /UnicodeString (xmlnode-nodevalue) , +(begin) /UnicodeString (xmlnode-nodename) , +; (begin) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1 1;20 15;200 200; 15 20;1 1 ) /UnicodeString (xmlnode-nodevalue) , +(values) /UnicodeString (xmlnode-nodename) , +; (values) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(animate) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(7) /UnicodeString (xmlnode-nodevalue) , +(stdDeviation) /UnicodeString (xmlnode-nodename) , +; (stdDeviation) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feGaussianBlur) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(in) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(compositeOut) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(k3) /UnicodeString (xmlnode-nodename) , +; (k3) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0) /UnicodeString (xmlnode-nodevalue) , +(k4) /UnicodeString (xmlnode-nodename) , +; (k4) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0) /UnicodeString (xmlnode-nodevalue) , +(k1) /UnicodeString (xmlnode-nodename) , +; (k1) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(k2) /UnicodeString (xmlnode-nodename) , +; (k2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(arithmetic) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(compositeOut1) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(compositeOut) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(compositeOut1) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMergeNode) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMerge) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(50 50) /UnicodeString (xmlnode-nodevalue) , +(filterRes) /UnicodeString (xmlnode-nodename) , +; (filterRes) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , +(filterUnits) /UnicodeString (xmlnode-nodename) , +; (filterUnits) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_Pixelspiel_2) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(remove) /UnicodeString (xmlnode-nodevalue) , +(fill) /UnicodeString (xmlnode-nodename) , +; (fill) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(indefinite) /UnicodeString (xmlnode-nodevalue) , +(repeatDur) /UnicodeString (xmlnode-nodename) , +; (repeatDur) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(none) /UnicodeString (xmlnode-nodevalue) , +(accumulate) /UnicodeString (xmlnode-nodename) , +; (accumulate) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(replace) /UnicodeString (xmlnode-nodevalue) , +(additive) /UnicodeString (xmlnode-nodename) , +; (additive) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(linear) /UnicodeString (xmlnode-nodevalue) , +(calcMode) /UnicodeString (xmlnode-nodename) , +; (calcMode) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(filterRes) /UnicodeString (xmlnode-nodevalue) , +(attributeName) /UnicodeString (xmlnode-nodename) , +; (attributeName) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(10s) /UnicodeString (xmlnode-nodevalue) , +(dur) /UnicodeString (xmlnode-nodename) , +; (dur) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(always) /UnicodeString (xmlnode-nodevalue) , +(restart) /UnicodeString (xmlnode-nodename) , +; (restart) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0s) /UnicodeString (xmlnode-nodevalue) , +(begin) /UnicodeString (xmlnode-nodename) , +; (begin) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(50 50;20 20;50 50) /UnicodeString (xmlnode-nodevalue) , +(values) /UnicodeString (xmlnode-nodename) , +; (values) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(animate) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(7) /UnicodeString (xmlnode-nodevalue) , +(stdDeviation) /UnicodeString (xmlnode-nodename) , +; (stdDeviation) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feGaussianBlur) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(yellow) /UnicodeString (xmlnode-nodevalue) , +(lighting-color) /UnicodeString (xmlnode-nodename) , +; (lighting-color) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(diffuseConstant) /UnicodeString (xmlnode-nodename) , +; (diffuseConstant) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(resultScale) /UnicodeString (xmlnode-nodename) , +; (resultScale) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(5) /UnicodeString (xmlnode-nodevalue) , +(surfaceScale) /UnicodeString (xmlnode-nodename) , +; (surfaceScale) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(diffuse) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(diffuse) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(remove) /UnicodeString (xmlnode-nodevalue) , +(fill) /UnicodeString (xmlnode-nodename) , +; (fill) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(indefinite) /UnicodeString (xmlnode-nodevalue) , +(repeatDur) /UnicodeString (xmlnode-nodename) , +; (repeatDur) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(none) /UnicodeString (xmlnode-nodevalue) , +(accumulate) /UnicodeString (xmlnode-nodename) , +; (accumulate) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(replace) /UnicodeString (xmlnode-nodevalue) , +(additive) /UnicodeString (xmlnode-nodename) , +; (additive) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(linear) /UnicodeString (xmlnode-nodevalue) , +(calcMode) /UnicodeString (xmlnode-nodename) , +; (calcMode) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(lighting-color) /UnicodeString (xmlnode-nodevalue) , +(attributeName) /UnicodeString (xmlnode-nodename) , +; (attributeName) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(15s) /UnicodeString (xmlnode-nodevalue) , +(dur) /UnicodeString (xmlnode-nodename) , +; (dur) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(always) /UnicodeString (xmlnode-nodevalue) , +(restart) /UnicodeString (xmlnode-nodename) , +; (restart) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0s) /UnicodeString (xmlnode-nodevalue) , +(begin) /UnicodeString (xmlnode-nodename) , +; (begin) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(yellow;green;blue;indigo;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , +(values) /UnicodeString (xmlnode-nodename) , +; (values) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(animate) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(60) /UnicodeString (xmlnode-nodevalue) , +(elevation) /UnicodeString (xmlnode-nodename) , +; (elevation) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(180) /UnicodeString (xmlnode-nodevalue) , +(azimuth) /UnicodeString (xmlnode-nodename) , +; (azimuth) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feDistantLight) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(10) /UnicodeString (xmlnode-nodevalue) , +(specularConstant) /UnicodeString (xmlnode-nodename) , +; (specularConstant) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(15) /UnicodeString (xmlnode-nodevalue) , +(specularExponent) /UnicodeString (xmlnode-nodename) , +; (specularExponent) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(red) /UnicodeString (xmlnode-nodevalue) , +(lighting-color) /UnicodeString (xmlnode-nodename) , +; (lighting-color) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(15) /UnicodeString (xmlnode-nodevalue) , +(surfaceScale) /UnicodeString (xmlnode-nodename) , +; (surfaceScale) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(specularOut) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(remove) /UnicodeString (xmlnode-nodevalue) , +(fill) /UnicodeString (xmlnode-nodename) , +; (fill) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(indefinite) /UnicodeString (xmlnode-nodevalue) , +(repeatDur) /UnicodeString (xmlnode-nodename) , +; (repeatDur) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(none) /UnicodeString (xmlnode-nodevalue) , +(accumulate) /UnicodeString (xmlnode-nodename) , +; (accumulate) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(replace) /UnicodeString (xmlnode-nodevalue) , +(additive) /UnicodeString (xmlnode-nodename) , +; (additive) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(linear) /UnicodeString (xmlnode-nodevalue) , +(calcMode) /UnicodeString (xmlnode-nodename) , +; (calcMode) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(lighting-color) /UnicodeString (xmlnode-nodevalue) , +(attributeName) /UnicodeString (xmlnode-nodename) , +; (attributeName) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(15s) /UnicodeString (xmlnode-nodevalue) , +(dur) /UnicodeString (xmlnode-nodename) , +; (dur) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(always) /UnicodeString (xmlnode-nodevalue) , +(restart) /UnicodeString (xmlnode-nodename) , +; (restart) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0s) /UnicodeString (xmlnode-nodevalue) , +(begin) /UnicodeString (xmlnode-nodename) , +; (begin) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(indigo;green;yellow;blue;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , +(values) /UnicodeString (xmlnode-nodename) , +; (values) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(animate) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(60) /UnicodeString (xmlnode-nodevalue) , +(elevation) /UnicodeString (xmlnode-nodename) , +; (elevation) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(180) /UnicodeString (xmlnode-nodevalue) , +(azimuth) /UnicodeString (xmlnode-nodename) , +; (azimuth) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(light) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feDistantLight) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feSpecularLighting) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(in) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(specularOut) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(specularOut) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0) /UnicodeString (xmlnode-nodevalue) , +(k3) /UnicodeString (xmlnode-nodename) , +; (k3) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0) /UnicodeString (xmlnode-nodevalue) , +(k4) /UnicodeString (xmlnode-nodename) , +; (k4) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(k1) /UnicodeString (xmlnode-nodename) , +; (k1) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0) /UnicodeString (xmlnode-nodevalue) , +(k2) /UnicodeString (xmlnode-nodename) , +; (k2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(arithmetic) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(diffuse) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(litPaint) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(k3) /UnicodeString (xmlnode-nodename) , +; (k3) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0) /UnicodeString (xmlnode-nodevalue) , +(k4) /UnicodeString (xmlnode-nodename) , +; (k4) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0) /UnicodeString (xmlnode-nodevalue) , +(k1) /UnicodeString (xmlnode-nodename) , +; (k1) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(k2) /UnicodeString (xmlnode-nodename) , +; (k2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(arithmetic) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(specularOut) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(litPaint1) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(litPaint) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(litPaint1) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMergeNode) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMerge) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , +(filterUnits) /UnicodeString (xmlnode-nodename) , +; (filterUnits) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_Schatten_1) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(2) /UnicodeString (xmlnode-nodevalue) , +(stdDeviation) /UnicodeString (xmlnode-nodename) , +; (stdDeviation) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feGaussianBlur) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(4) /UnicodeString (xmlnode-nodevalue) , +(dy) /UnicodeString (xmlnode-nodename) , +; (dy) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(4) /UnicodeString (xmlnode-nodevalue) , +(dx) /UnicodeString (xmlnode-nodename) , +; (dx) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feOffset) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMergeNode) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMergeNode) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMerge) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(140%) /UnicodeString (xmlnode-nodevalue) , +(width) /UnicodeString (xmlnode-nodename) , +; (width) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(130%) /UnicodeString (xmlnode-nodevalue) , +(height) /UnicodeString (xmlnode-nodename) , +; (height) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , +(filterUnits) /UnicodeString (xmlnode-nodename) , +; (filterUnits) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_Schatten_2) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(-15%) /UnicodeString (xmlnode-nodevalue) , +(y) /UnicodeString (xmlnode-nodename) , +; (y) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(-15%) /UnicodeString (xmlnode-nodevalue) , +(x) /UnicodeString (xmlnode-nodename) , +; (x) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(6) /UnicodeString (xmlnode-nodevalue) , +(stdDeviation) /UnicodeString (xmlnode-nodename) , +; (stdDeviation) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feGaussianBlur) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(8) /UnicodeString (xmlnode-nodevalue) , +(dy) /UnicodeString (xmlnode-nodename) , +; (dy) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(8) /UnicodeString (xmlnode-nodevalue) , +(dx) /UnicodeString (xmlnode-nodename) , +; (dx) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feOffset) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMergeNode) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMergeNode) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMerge) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , +(filterUnits) /UnicodeString (xmlnode-nodename) , +; (filterUnits) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_Statisch) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(fractalNoise) /UnicodeString (xmlnode-nodevalue) , +(type) /UnicodeString (xmlnode-nodename) , +; (type) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(10) /UnicodeString (xmlnode-nodevalue) , +(numOctaves) /UnicodeString (xmlnode-nodename) , +; (numOctaves) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0.5) /UnicodeString (xmlnode-nodevalue) , +(baseFrequency) /UnicodeString (xmlnode-nodename) , +; (baseFrequency) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(noStitch) /UnicodeString (xmlnode-nodevalue) , +(stitchTiles) /UnicodeString (xmlnode-nodename) , +; (stitchTiles) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c2) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c1) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c2) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(remove) /UnicodeString (xmlnode-nodevalue) , +(fill) /UnicodeString (xmlnode-nodename) , +; (fill) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(indefinite) /UnicodeString (xmlnode-nodevalue) , +(repeatDur) /UnicodeString (xmlnode-nodename) , +; (repeatDur) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(none) /UnicodeString (xmlnode-nodevalue) , +(accumulate) /UnicodeString (xmlnode-nodename) , +; (accumulate) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(replace) /UnicodeString (xmlnode-nodevalue) , +(additive) /UnicodeString (xmlnode-nodename) , +; (additive) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(linear) /UnicodeString (xmlnode-nodevalue) , +(calcMode) /UnicodeString (xmlnode-nodename) , +; (calcMode) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(baseFrequency) /UnicodeString (xmlnode-nodevalue) , +(attributeName) /UnicodeString (xmlnode-nodename) , +; (attributeName) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(5s) /UnicodeString (xmlnode-nodevalue) , +(dur) /UnicodeString (xmlnode-nodename) , +; (dur) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(always) /UnicodeString (xmlnode-nodevalue) , +(restart) /UnicodeString (xmlnode-nodename) , +; (restart) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0.7) /UnicodeString (xmlnode-nodevalue) , +(to) /UnicodeString (xmlnode-nodename) , +; (to) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0.5) /UnicodeString (xmlnode-nodevalue) , +(from) /UnicodeString (xmlnode-nodename) , +; (from) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(animate) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feTurbulence) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(in) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(c2) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(100%) /UnicodeString (xmlnode-nodevalue) , +(width) /UnicodeString (xmlnode-nodename) , +; (width) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(100%) /UnicodeString (xmlnode-nodevalue) , +(height) /UnicodeString (xmlnode-nodename) , +; (height) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , +(filterUnits) /UnicodeString (xmlnode-nodename) , +; (filterUnits) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_Verwirbelung_3) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0%) /UnicodeString (xmlnode-nodevalue) , +(y) /UnicodeString (xmlnode-nodename) , +; (y) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0%) /UnicodeString (xmlnode-nodevalue) , +(x) /UnicodeString (xmlnode-nodename) , +; (x) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(turbulence) /UnicodeString (xmlnode-nodevalue) , +(type) /UnicodeString (xmlnode-nodename) , +; (type) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(8) /UnicodeString (xmlnode-nodevalue) , +(numOctaves) /UnicodeString (xmlnode-nodename) , +; (numOctaves) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0.05) /UnicodeString (xmlnode-nodevalue) , +(baseFrequency) /UnicodeString (xmlnode-nodename) , +; (baseFrequency) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(noStitch) /UnicodeString (xmlnode-nodevalue) , +(stitchTiles) /UnicodeString (xmlnode-nodename) , +; (stitchTiles) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(turb) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feTurbulence) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(in) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(turb) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(100%) /UnicodeString (xmlnode-nodevalue) , +(width) /UnicodeString (xmlnode-nodename) , +; (width) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(100%) /UnicodeString (xmlnode-nodevalue) , +(height) /UnicodeString (xmlnode-nodename) , +; (height) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , +(filterUnits) /UnicodeString (xmlnode-nodename) , +; (filterUnits) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_Verwirbelung_5) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0%) /UnicodeString (xmlnode-nodevalue) , +(y) /UnicodeString (xmlnode-nodename) , +; (y) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0%) /UnicodeString (xmlnode-nodevalue) , +(x) /UnicodeString (xmlnode-nodename) , +; (x) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(fractalNoise) /UnicodeString (xmlnode-nodevalue) , +(type) /UnicodeString (xmlnode-nodename) , +; (type) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(4) /UnicodeString (xmlnode-nodevalue) , +(numOctaves) /UnicodeString (xmlnode-nodename) , +; (numOctaves) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0.4) /UnicodeString (xmlnode-nodevalue) , +(baseFrequency) /UnicodeString (xmlnode-nodename) , +; (baseFrequency) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(noStitch) /UnicodeString (xmlnode-nodevalue) , +(stitchTiles) /UnicodeString (xmlnode-nodename) , +; (stitchTiles) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(turb) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feTurbulence) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(in) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(turb) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +%AI10_EndSVGFilter +%AI5_End_NonPrinting-- +%AI5_Begin_NonPrinting +Np +%AI14_BeginSymbol +(Band) 0 A +0 Xw +u +u +0 R +0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 XA +0 1 0 0 0 Xy +0 J 0 j 0.25 w 4 M []0 d 0 XR +-0.42334 -31.8975 m +4.87061 -31.9658 5.97314 -18.1826 8.73291 -16.7441 c +11.8765 -15.1064 24.7114 -21.1904 27.8599 -15.5557 c +30.6411 -10.5781 18.8638 -3.11133 18.8462 0.030273 c +18.8286 3.30273 30.4067 11.1465 27.645 15.9443 c +24.8657 20.7705 12.2778 14.6582 9.19971 16.3799 c +6.23877 18.0342 5.10596 31.9492 -0.256348 31.8984 c +-5.50293 31.8496 -6.28662 17.9482 -9.00049 16.4707 c +-12.0151 14.8291 -24.7808 21.0078 -27.8267 15.5566 c +-30.7314 10.3574 -18.8931 2.71582 -18.8027 -0.560547 c +-18.7183 -3.60156 -30.3389 -11.0625 -27.8315 -15.5605 c +-25.0493 -20.5498 -12.3228 -14.7246 -9.16309 -16.4902 c +-6.33252 -18.0723 -5.55518 -31.832 -0.42334 -31.8975 c +s +%_/ArtDictionary : +%_(0.509492) /String (BBAccumRotation) , +%_(ALL) /String (ShapeBlendMat +endstream endobj 101 0 obj <>stream +chToBefore) , +%_(K) /String (ShapeBlendPathType) , +%_(B) /String (ShapeBlendPathID) , +%_; +%_ +1.39502 -31.4248 m +6.63721 -31.1768 6.93018 -17.5137 9.58252 -15.9063 c +12.5522 -14.1064 25.5288 -19.4097 28.3091 -13.7988 c +30.7876 -8.79736 18.7622 -2.06738 18.5825 1.02686 c +18.3843 4.27148 29.3618 12.6611 26.3013 17.2646 c +23.2534 21.8779 11.2153 15.1289 8.11475 16.6494 c +5.14502 18.1104 3.30811 31.7861 -1.95654 31.4463 c +-7.17627 31.1094 -7.21436 17.3076 -9.83301 15.6592 c +-12.6782 13.8682 -25.5645 19.291 -28.2793 13.875 c +-30.8687 8.66504 -18.8301 1.74902 -18.5742 -1.46826 c +-18.3315 -4.52197 -29.2939 -12.5601 -26.4678 -16.9272 c +-23.4106 -21.6514 -11.3047 -15.1958 -8.14209 -16.752 c +-5.26709 -18.1665 -3.69971 -31.6733 1.39502 -31.4248 c +s +3.21338 -30.9521 m +8.40381 -30.3882 7.88721 -16.8481 10.4321 -15.0674 c +13.228 -13.1113 26.3433 -17.6265 28.7573 -12.0415 c +30.9312 -7.01367 18.6675 -1.02197 18.3179 2.02344 c +17.9487 5.24023 28.3062 14.168 24.9585 18.585 c +21.6304 22.9756 10.1528 15.5996 7.03076 16.9189 c +4.05225 18.1865 1.51025 31.6201 -3.65771 30.9951 c +-8.8501 30.3672 -8.14209 16.6709 -10.6646 14.8467 c +-13.3403 12.9111 -26.3638 17.5811 -28.731 12.1934 c +-31.021 6.98047 -18.7612 0.781738 -18.3452 -2.37695 c +-17.9414 -5.44385 -28.2573 -14.0591 -25.1035 -18.2935 c +-21.7817 -22.7539 -10.2847 -15.6641 -7.12012 -17.0137 c +-4.19971 -18.2588 -1.84375 -31.5156 3.21338 -30.9521 c +s +5.03271 -30.4795 m +10.1704 -29.5991 8.84619 -16.187 11.2817 -14.2295 c +13.9048 -12.1211 27.1548 -15.8408 29.2056 -10.2847 c +31.0718 -5.22754 18.5688 0.023438 18.0542 3.02051 c +17.5063 6.20996 27.2593 15.6787 23.6147 19.9053 c +20.0151 24.0791 9.08838 16.0635 5.9458 17.1875 c +2.95654 18.2568 -0.290039 31.4492 -5.35791 30.543 c +-10.5259 29.6191 -9.07178 16.04 -11.4976 14.0352 c +-14.0063 11.9619 -27.1538 15.8662 -29.1841 10.5127 c +-31.165 5.29004 -18.6895 -0.186523 -18.1167 -3.28418 c +-17.5469 -6.3667 -27.2295 -15.5605 -23.7397 -19.6602 c +-20.1641 -23.8608 -9.26221 -16.1313 -6.09912 -17.2754 c +-3.12939 -18.3496 0.01123 -31.3564 5.03271 -30.4795 c +s +6.85107 -30.0073 m +11.937 -28.8105 9.80615 -15.5293 12.1313 -13.3911 c +14.5854 -11.1348 27.9644 -14.0532 29.6548 -8.52734 c +31.2114 -3.44043 18.4683 1.06836 17.7905 4.01758 c +17.064 7.17871 26.2144 17.1914 22.272 21.2256 c +18.4028 25.1846 8.02588 16.5322 4.86182 17.4561 c +1.86279 18.332 -2.08984 31.2734 -7.05908 30.0908 c +-12.2002 28.8672 -10.0034 15.4131 -12.3296 13.2236 c +-14.6738 11.0176 -27.9399 14.1484 -29.6362 8.83105 c +-31.3057 3.59766 -18.6128 -1.1543 -17.8877 -4.19238 c +-17.1489 -7.28809 -26.2095 -17.0659 -22.3755 -21.0264 c +-18.5542 -24.9736 -8.23828 -16.5942 -5.07764 -17.5371 c +-2.05908 -18.4375 1.8667 -31.1982 6.85107 -30.0073 c +s +8.66943 -29.5347 m +13.7036 -28.0215 10.769 -14.875 12.981 -12.5527 c +15.2681 -10.1519 28.77 -12.2632 30.104 -6.77051 c +31.3472 -1.65186 18.3657 2.11328 17.5259 5.01465 c +16.6187 8.14746 25.1704 18.7061 20.9282 22.5459 c +16.7915 26.29 6.9624 17.0029 3.77686 17.7256 c +0.770508 18.4072 -3.88867 31.0938 -8.75928 29.6396 c +-13.875 28.1123 -10.938 14.79 -13.1616 12.4111 c +-15.3447 10.0762 -28.7241 12.4307 -30.0884 7.14941 c +-31.4434 1.9043 -18.5332 -2.12158 -17.6597 -5.10059 c +-16.7476 -8.20996 -25.1978 -18.5791 -21.0122 -22.3931 c +-16.9517 -26.0933 -7.21289 -17.0547 -4.05615 -17.7988 c +-0.986816 -18.5225 3.72217 -31.04 8.66943 -29.5347 c +s +10.4878 -29.0625 m +15.4702 -27.2324 11.7349 -14.2236 13.8306 -11.7144 c +15.9536 -9.17139 29.5708 -10.4731 30.5522 -5.01367 c +31.479 0.137695 18.2622 3.1582 17.2622 6.01074 c +16.1733 9.11621 24.1294 20.2217 19.5854 23.8662 c +15.1812 27.3984 5.90186 17.4746 2.69189 17.9951 c +-0.322754 18.4844 -5.68555 30.9092 -10.4595 29.1875 c +-15.5479 27.3516 -11.8779 14.1699 -13.9941 11.5996 c +-16.021 9.1377 -29.5059 10.7119 -30.541 5.46777 c +-31.5786 0.210938 -18.4487 -3.08643 -17.4302 -6.0083 c +-16.3418 -9.12988 -24.1909 -20.0991 -19.6479 -23.7598 c +-15.355 -27.2188 -6.18701 -17.5117 -3.03467 -18.0605 c +0.085449 -18.604 5.57861 -30.8813 10.4878 -29.0625 c +s +12.3071 -28.5894 m +17.2368 -26.4429 12.7056 -13.5732 14.6792 -10.876 c +16.6421 -8.19287 30.3667 -8.68262 31.0005 -3.25732 c +31.606 1.92676 18.1587 4.20117 16.9985 7.00781 c +15.7261 10.084 23.0874 21.7393 18.2417 25.1865 c +13.5737 28.5078 4.83936 17.9521 1.60791 18.2646 c +-1.41504 18.5664 -7.48047 30.7217 -12.1602 28.7354 c +-17.2178 26.5879 -12.8223 13.5527 -14.8262 10.7881 c +-16.7007 8.20215 -30.2842 8.99316 -30.9932 3.78613 c +-31.7109 -1.48389 -18.3633 -4.05078 -17.2021 -6.9165 c +-15.9336 -10.0474 -23.1885 -21.6284 -18.2842 -25.1265 c +-13.7612 -28.3525 -5.16113 -17.9653 -2.01318 -18.3223 c +1.15967 -18.6821 7.43408 -30.7231 12.3071 -28.5894 c +s +14.1255 -28.1172 m +19.0034 -25.6543 13.6792 -12.9253 15.5288 -10.0376 c +17.3364 -7.21533 31.1597 -6.89355 31.4497 -1.5 c +31.73 3.71582 18.0493 5.24219 16.7339 8.00391 c +15.2729 11.0488 22.0513 23.2666 16.8989 26.5068 c +11.9692 29.627 3.77686 18.4229 0.522949 18.5332 c +-2.5083 18.6426 -9.27344 30.5322 -13.8608 28.2842 c +-18.8862 25.8213 -13.7705 12.9375 -15.6582 9.97559 c +-17.3838 7.26758 -31.0591 7.27441 -31.4453 2.10547 c +-31.8398 -3.17725 -18.2739 -5.0127 -16.9731 -7.82471 c +-15.5215 -10.9634 -22.1895 -23.165 -16.9204 -26.4927 c +-12.1699 -29.4927 -4.13574 -18.4155 -0.991699 -18.584 c +2.23096 -18.7568 9.28955 -30.5649 14.1255 -28.1172 c +s +-31.8979 0.423828 m +-31.9663 -4.87012 -18.1831 -5.97266 -16.7446 -8.73242 c +-15.1069 -11.877 -21.1909 -24.7109 -15.5562 -27.8594 c +-10.5786 -30.6406 -3.11182 -18.8633 0.029785 -18.8457 c +3.30225 -18.8281 11.145 -30.4063 15.9438 -27.6445 c +20.77 -24.8652 14.6577 -12.2773 16.3784 -9.19922 c +18.0327 -6.23828 31.9487 -5.10547 31.8979 0.256836 c +31.8491 5.50391 17.9478 6.28711 16.4702 9.00098 c +14.8286 12.0166 21.0073 24.7813 15.5552 27.8271 c +10.3569 30.7334 2.71436 18.8936 -0.561523 18.8027 c +-3.60205 18.7188 -11.0635 30.3398 -15.5615 27.832 c +-20.5503 25.0498 -14.7251 12.3232 -16.4907 9.16406 c +-18.0728 6.33301 -31.8325 5.55664 -31.8979 0.423828 c +s +%_/ArtDictionary : +%_(2.080288) /String (BBAccumRotation) , +%_(ALL) /String (ShapeBlendMatchToAfter) , +%_(K) /String (ShapeBlendPathType) , +%_(A) /String (ShapeBlendPathID) , +%_; +%_ +U +0 1 0 1 0 Xy +1 w 0 0 Xd +6 () XW +U +%_/ArtDictionary : +%_; +%_ +9 () XW +%AI10_EndSymbol +%AI14_BeginSymbol +(Gerbera) 0 A +0 Xw +u +0 1 0 0 0 Xy +0 J 0 j 1 w 4 M []0 d 0 XR +-22.9814 23.0918 m +23.0869 23.0918 L +23.0869 -23.1484 L +-22.9814 -23.1484 L +-22.9814 23.0918 L +n +u +0 O +0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa +-15.7139 -6.50977 m +-20.2578 -7.62598 -21.2402 -6.50195 Y +-20.6367 -5.49707 -19.6787 -4.70801 -18.5508 -4.08789 C +-16.125 -3.96582 -13.3047 -3.6377 -11.4512 -3.39355 C +-12.916 -4.33398 -14.4395 -5.4873 -15.7139 -6.50977 C +f +23.0869 -1.17676 m +20.4414 -1.67383 17.75 -1.7959 V +16.7598 -0.983398 13.0898 -0.301758 10.1641 0.126953 C +12.6641 0.158203 15.6621 1.24707 17.4707 2.01953 C +19.6484 1.40039 24.2246 -0.06543 23.0869 -1.17676 C +f +0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa +7.04102 0.587891 m +7.05469 0.69043 7.06641 0.793945 7.07324 0.897461 C +7.1582 0.959961 L +7.46484 0.717773 7.80859 0.525391 8.19922 0.397461 C +7.86621 0.438477 7.56445 0.476563 7.30371 0.505859 C +7.04102 0.587891 L +f +0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa +17.7891 -2.07129 m +18.9648 -2.31348 21.1777 -2.93848 19.3105 -3.99121 C +16.6006 -5.44824 14.0205 -5.25293 V +12.1582 -3.99316 10.4531 -2.97266 10.2578 -2.85449 C +13.4219 -2.97363 16.9766 -2.25 17.7891 -2.07129 C +f +8.00684 -6.40723 m +7.21973 -5.61133 L +10.3213 -7.62012 15.0313 -9.30078 17.1914 -10.0146 C +18.041 -10.9932 19.7852 -13.2559 17.29 -12.7529 C +15.2676 -12.2578 13.8457 -11.7061 V +13.5645 -11.3193 13.3691 -11.0625 Y +8.00684 -6.40723 L +f +0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa +-0.451172 -19.1201 m +0.838867 -15.8408 0.922852 -12.1455 0.746094 -9.50586 C +0.922852 -10.4248 L +1.47461 -11.957 1.95703 -13.2256 2.37891 -14.2842 C +1.8418 -17.6172 -0.050781 -28.1025 -1.44531 -20.3643 C +-0.87793 -20.085 -0.451172 -19.1201 Y +f +0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa +-3.27344 -14.1943 m +-3.25781 -15.1602 -3.19629 -16.0225 -3.11914 -16.7676 C +-3.46875 -17.665 -4.04688 -18.4482 -4.99023 -18.4639 C +-4.70313 -17.8193 -4.42188 -17.0713 -4.16406 -16.3057 C +-3.27344 -14.1943 L +f +0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa +-7.0957 -17.874 m +-6.66211 -17.5527 -5.06348 -13.4971 -3.77734 -10.0986 C +-2.69141 -7.91797 L +-3.09961 -9.87598 -3.25391 -11.7314 -3.27148 -13.3682 C +-3.51172 -14.2393 -3.82031 -15.2881 -4.16406 -16.3057 c +-4.42188 -17.0713 -4.70313 -17.8193 -4.99023 -18.4639 c +-5.86133 -20.417 -6.80273 -21.418 -7.46289 -19.041 C +-7.5957 -17.7646 L +-7.50586 -17.585 L +-7.29395 -17.8193 -7.0957 -17.874 Y +f +0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa +-9.00781 -5.44336 m +-9.72461 -6.16895 -10.3086 -6.91211 -10.8008 -7.64551 C +-13.8926 -10.6865 -18.5605 -14.9951 -17.3164 -12.0049 C +-16.9219 -10.7217 -16.1123 -9.56738 V +-14.21 -8.58105 -11.8115 -7.10742 -9.80664 -5.82715 C +-9.00781 -5.44336 L +f +0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa +-16.8711 -1.46973 m +-17.7715 -1.83984 -18.3477 -2.10742 Y +-22.2119 -4.05273 -13.6797 -2.78809 -8.87109 -1.97852 C +-9.66113 -2.31348 -10.543 -2.81055 -11.4512 -3.39355 C +-13.3047 -3.6377 -16.125 -3.96582 -18.5508 -4.08789 c +-22.543 -4.28809 -25.4375 -3.91211 -21.125 -1.6416 C +-19.9023 -1.68652 -18.2852 -1.58887 -16.8711 -1.46973 C +f +0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa +-10.2598 0.666016 m +-9.97266 0.658203 -9.70117 0.648438 -9.44727 0.644531 C +-9.81836 0.611328 -10.2051 0.558594 -10.5977 0.490234 C +-10.2598 0.666016 L +f +0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa +-10.2598 0.666016 m +-10.5977 0.490234 L +-12.8291 0.09375 -15.3291 -0.836914 -16.8711 -1.46973 C +-18.2852 -1.58887 -19.9023 -1.68652 -21.125 -1.6416 c +-23.0957 -1.57129 -24.0293 -1.1377 -21.3535 0.15918 C +-19.0176 0.761719 -16.4473 1.18945 V +-14.3574 0.859375 -12.0176 0.72168 -10.2598 0.666016 C +f +-11.0742 5.49121 m +-11.0703 5.45508 -11.0645 5.41895 -11.0645 5.37988 C +-12.7461 5.75781 -14.6699 5.9873 -16.3691 6.12598 C +-20.71 7.70996 -25.6426 9.85645 -21.0781 10.0303 C +-20.8164 9.98535 -20.3867 9.9043 V +-19.084 9.24316 -17.3867 8.77344 -16.2539 8.50293 C +-14.6387 7.44336 -12.71 6.3623 -11.0742 5.49121 C +f +0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa +-16.2539 8.50293 m +-17.3867 8.77344 -19.084 9.24316 -20.3867 9.9043 c +-21.3574 10.3975 -22.1055 10.9912 -22.2285 11.6836 C +-20.9023 12.0576 -19.6094 11.7773 V +-19.6309 10.9854 -18.1738 9.76465 -16.2539 8.50293 C +f +0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa +-15.1787 14.3545 m +-18.3906 14.6943 -16.4688 12.6445 -13.4902 10.3525 C +-13.5352 10.3447 -13.5723 10.3311 -13.6172 10.3232 C +-22.3291 17.3193 -16.9551 15.7822 V +-15.7813 15.292 -14.5107 14.5928 V +-14.0508 14.1357 -13.5645 13.6807 -13.0996 13.2568 C +-14.3203 13.9346 -15.1787 14.3545 Y +f +0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa +-6.62988 8.85645 m +-8.45313 10.5479 -11.2109 12.21 -13.0996 13.2568 C +-13.5645 13.6807 -14.0508 14.1357 -14.5107 14.5928 c +-16.5859 16.6592 -18.0527 18.7119 -13.8496 17.2354 C +-11.7578 15.6807 -9.82422 13.751 V +-8.73828 12.0361 -7.56836 10.2822 -6.63867 8.91211 C +-6.63672 8.89453 -6.62988 8.87402 -6.62988 8.85645 C +f +0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa +-0.939453 9.01855 m +-1.24219 8.9873 -1.53711 8.92871 -1.82422 8.8623 C +-2.51953 12.1738 -3.60938 14.6729 -4.6543 16.4463 C +-5.64453 19.8721 -6.08203 22.9033 -4.27539 22.2646 C +-3.95898 21.5615 -3.51172 20.4736 V +-3.50781 17.1719 -1.78711 11.5791 -0.9375 9.01855 C +-0.939453 9.01855 l +f +2.5332 8.50195 m +4.48828 14.5791 4.71094 17.874 4.49219 19.623 C +5.43164 21.1934 8.29688 25.6357 8.20215 21.3076 C +7.93359 18.0361 7.16406 15.2324 V +5.10156 12.6943 3.21289 9.5127 2.61133 8.47266 C +2.58594 8.48145 2.55859 8.49121 2.5332 8.50195 C +f +0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa +9.19336 11.3242 m +11.5527 14.7021 12.7754 18.0752 Y +12.7549 18.0996 12.7324 18.1152 12.7129 18.1396 C +14.5234 19.5459 17.9258 21.7617 15.3027 16.207 C +13.666 15.1846 11.4648 13.2559 9.48828 11.3857 C +9.19336 11.3242 L +f +0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa +17.9961 13.2959 m +15.6357 10.5537 13.3594 9.40625 V +15.2129 11.5254 16.5977 13.7021 17.2754 14.8545 C +18.3672 15.2686 19.7227 15.5215 17.9961 13.2959 C +f +0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa +8.19922 0.397461 m +7.80859 0.525391 7.46484 0.717773 7.1582 0.959961 c +7.13184 0.981445 7.10449 0.995117 7.08008 1.0166 C +7.10742 1.44336 7.10742 1.87598 7.06055 2.31348 c +7.03711 2.54785 6.99805 2.78125 6.95313 3.00879 C +16.1221 4.71094 L +16.75 4.91797 17.3242 5.13574 17.8457 5.3623 C +18.8652 5.35742 19.9453 5.32227 21.1172 5.22949 C +22.6172 4.90332 19.0938 2.76172 V +18.4541 2.43848 17.4707 2.01953 v +15.6621 1.24707 12.6641 0.158203 10.1641 0.126953 C +9.44531 0.232422 8.77539 0.322266 8.19922 0.397461 C +f +10.2578 -2.85449 m +10.2441 -2.84766 10.2324 -2.83984 Y +6.41406 -1.64746 L +6.72461 -0.96582 6.93652 -0.231445 7.03418 0.539063 C +7.11914 0.530273 7.20898 0.516602 7.30371 0.505859 c +7.56445 0.476563 7.86621 0.438477 8.19922 0.397461 c +8.77539 0.322266 9.44531 0.232422 10.1641 0.126953 c +13.0898 -0.301758 16.7598 -0.983398 17.75 -1.7959 c +17.8457 -1.87402 17.9229 -1.95215 17.9648 -2.03613 C +17.9004 -2.0498 17.7891 -2.07129 v +16.9766 -2.25 13.4219 -2.97363 10.2578 -2.85449 C +f +0.00885 0.504875 0.439429 0.000671 0.945098 0.596078 0.517647 Xa +6.64648 -5.22266 m +5.11133 -3.88965 L +5.06934 -3.84473 5.02734 -3.80078 4.98926 -3.75293 C +5.57813 -3.14551 6.05859 -2.43066 6.41406 -1.64746 C +10.2324 -2.83984 L +10.2441 -2.84766 10.2578 -2.85449 v +10.4531 -2.97266 12.1582 -3.99316 14.0205 -5.25293 c +17.0996 -7.33008 20.5918 -10.0508 18.3477 -10.3818 C +17.9102 -10.2529 17.1914 -10.0146 v +15.0313 -9.30078 10.3213 -7.62012 7.21973 -5.61133 c +7.02344 -5.48438 6.83008 -5.35449 6.64648 -5.22266 C +f +0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa +4.97168 -3.77051 m +5.11133 -3.88965 L +6.64648 -5.22266 L +8.00684 -6.40723 L +13.3691 -11.0625 L +13.5645 -11.3193 13.8457 -11.7061 v +14.9102 -13.1689 17.2852 -16.6162 15.6914 -16.1445 C +10.8838 -15.3545 7.77148 -10.5186 V +4.18164 -4.46582 L +4.46094 -4.25293 4.72852 -4.02246 4.97168 -3.77051 C +f +0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa +2.92188 -5.23926 m +3.36914 -5.02539 3.79004 -4.76465 4.18164 -4.46582 C +7.77148 -10.5186 L +11.9043 -22.0254 8.44531 -18.5127 V +6.65039 -17.2959 5.87305 -15.5918 V +6.03711 -14.0361 3.9668 -8.10938 2.92188 -5.23926 C +f +0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa +0.746094 -9.50586 m +0.604492 -7.40332 0.296875 -5.97266 Y +0.089844 -5.9209 L +0.263672 -5.91797 0.436523 -5.91406 0.615234 -5.89453 c +1.32813 -5.82227 2.00586 -5.6377 2.63574 -5.37109 C +2.74219 -5.75293 2.88281 -6.27441 3.04883 -6.89453 c +3.75391 -9.9209 4.66602 -13.5625 5.04688 -15.0713 C +5.47852 -17.1543 5.69922 -18.7441 5.38281 -18.833 C +5.13477 -21.1543 2.37891 -14.2842 v +1.95703 -13.2256 1.47461 -11.957 0.922852 -10.4248 C +0.746094 -9.50586 L +f +0.00885 0.504875 0.439429 0.000671 0.945098 0.596078 0.517647 Xa +-3.27148 -13.3682 m +-3.25391 -11.7314 -3.09961 -9.87598 -2.69141 -7.91797 c +-2.53711 -7.16895 -2.34375 -6.41016 -2.10938 -5.6416 C +-1.4082 -5.84863 -0.669922 -5.94531 0.089844 -5.9209 C +0.296875 -5.97266 L +0.604492 -7.40332 0.746094 -9.50586 v +0.922852 -12.1455 0.838867 -15.8408 -0.451172 -19.1201 C +-0.87793 -20.085 -1.44531 -20.3643 v +-1.82617 -20.5527 -2.26758 -20.4385 -2.68945 -19.5127 C +-2.94531 -18.4668 -3.11914 -16.7676 v +-3.19629 -16.0225 -3.25781 -15.1602 -3.27344 -14.1943 c +-3.27734 -13.9277 -3.27344 -13.6475 -3.27148 -13.3682 c +f +0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa +-3.51367 -5.0625 m +-3.07422 -5.30176 -2.60938 -5.49414 -2.125 -5.6377 C +-2.34766 -6.25 -3.00391 -8.05273 -3.77734 -10.0986 c +-5.06348 -13.4971 -6.66211 -17.5527 -7.0957 -17.874 C +-7.29395 -17.8193 -7.50586 -17.585 v +-8.00195 -17.041 -8.57715 -15.5225 -6.95508 -11.4072 C +-6.69336 -10.6318 -6.27539 -9.61621 V +-5.20117 -7.82813 -4.30078 -6.20117 -3.81641 -5.30566 C +-3.71484 -5.21094 -3.61523 -5.13184 -3.51367 -5.0625 C +f +-5.14063 -3.93457 m +-5.12305 -3.9248 -5.10547 -3.91699 -5.08789 -3.90332 C +-4.65039 -4.32422 -4.16797 -4.69043 -3.64453 -4.99023 C +-3.69336 -5.08105 -3.75195 -5.18652 -3.81641 -5.30566 c +-4.30078 -6.20117 -5.20117 -7.82813 -6.27539 -9.61621 c +-8.60938 -13.4951 -11.752 -18.0879 -13.1738 -17.377 C +-14.1445 -15.8682 -11.9453 -13.54 V +-11.9336 -13.5186 -11.918 -13.4873 V +-9.70313 -11.5059 -6.16602 -5.66602 -5.14063 -3.93457 C +f +0.00885 0.504875 0.439429 0.000671 0.945098 0.596078 0.517647 Xa +-8.55664 -5.01855 m +-6.96875 -3.9873 -5.85352 -3.22559 Y +-5.85156 -3.1582 -5.86035 -3.10254 -5.86035 -3.04004 C +-5.63086 -3.34082 -5.38184 -3.62402 -5.1123 -3.88477 C +-5.12109 -3.90332 -5.13086 -3.91797 -5.14063 -3.93457 c +-6.16602 -5.66602 -9.70313 -11.5059 -11.918 -13.4873 c +-12.4238 -13.9434 -12.8613 -14.1982 -13.1836 -14.1543 C +-13.0664 -11.0186 -10.8008 -7.64551 v +-10.3086 -6.91211 -9.72461 -6.16895 -9.00781 -5.44336 c +-8.86523 -5.30176 -8.70996 -5.16211 -8.55664 -5.01855 C +f +0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa +-8.87109 -1.97852 m +-7.99805 -1.83301 -7.25 -1.7041 -6.7207 -1.60645 C +-6.48438 -2.12012 -6.19629 -2.59961 -5.86035 -3.04004 C +-5.86035 -3.10254 -5.85156 -3.1582 -5.85352 -3.22559 C +-6.96875 -3.9873 -8.55664 -5.01855 v +-8.94824 -5.27441 -9.36719 -5.54492 -9.80664 -5.82715 c +-11.8115 -7.10742 -14.21 -8.58105 -16.1123 -9.56738 c +-18.7207 -10.9209 -20.3867 -11.3555 -18.7598 -9.08887 C +-17.4746 -7.9248 -15.7139 -6.50977 v +-14.4395 -5.4873 -12.916 -4.33398 -11.4512 -3.39355 c +-10.543 -2.81055 -9.66113 -2.31348 -8.87109 -1.97852 C +f +-6.7207 -1.60645 m +-7.25 -1.7041 -7.99805 -1.83301 -8.87109 -1.97852 c +-13.6797 -2.78809 -22.2119 -4.05273 -18.3477 -2.10742 C +-17.7715 -1.83984 -16.8711 -1.46973 v +-15.3291 -0.836914 -12.8291 0.09375 -10.5977 0.490234 c +-10.2051 0.558594 -9.81836 0.611328 -9.44727 0.644531 C +-8.77734 0.628906 -8.24609 0.62793 -7.91992 0.62793 C +-7.71387 0.600586 -7.52148 0.557617 -7.33984 0.50293 C +-7.23145 -0.244141 -7.01953 -0.952148 -6.7207 -1.60645 C +f +0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa +-7.39941 2.29004 m +-7.43945 1.80566 -7.43945 1.31055 -7.38672 0.808594 c +-7.38477 0.795898 -7.38281 0.786133 -7.38184 0.777344 C +-7.43945 0.726563 -7.48828 0.680664 -7.55859 0.628906 C +-7.68945 0.62793 -7.91992 0.62793 v +-8.24609 0.62793 -8.77734 0.628906 -9.44727 0.644531 c +-9.70117 0.648438 -9.97266 0.658203 -10.2598 0.666016 c +-12.0176 0.72168 -14.3574 0.859375 -16.4473 1.18945 c +-18.8242 1.56543 -20.873 2.18945 -21.3477 3.22559 C +-24.4268 5.11426 -20.5215 4.92188 V +-17.5635 3.96387 -10.7656 3.00684 -7.99023 2.6416 C +-7.75977 2.53027 -7.56055 2.41113 -7.39941 2.29004 C +f +0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa +-10.7148 5.2998 m +-8.91016 4.34863 -7.55078 3.69434 Y +-7.44434 3.72168 -7.35742 3.75098 -7.26367 3.78125 C +-7.22266 3.74023 -7.18555 3.69824 -7.14844 3.65527 C +-7.24609 3.2998 -7.31836 2.93262 -7.36426 2.55859 C +-7.53906 2.58301 -7.74609 2.61035 -7.99023 2.6416 c +-10.7656 3.00684 -17.5635 3.96387 -20.5215 4.92188 c +-22.0771 5.4248 -22.5771 5.92871 -20.8574 6.3418 C +-18.8604 6.32813 -16.3691 6.12598 v +-14.6699 5.9873 -12.7461 5.75781 -11.0645 5.37988 c +-10.9453 5.35742 -10.8301 5.32813 -10.7148 5.2998 C +f +-6.43066 5.37988 m +-6.70703 4.89258 -6.93555 4.37598 -7.10156 3.83105 C +-7.15137 3.81348 -7.20996 3.7959 -7.26367 3.78125 c +-7.35742 3.75098 -7.44434 3.72168 -7.55078 3.69434 C +-8.91016 4.34863 -10.7148 5.2998 v +-10.834 5.3623 -10.9512 5.42578 -11.0742 5.49121 c +-12.71 6.3623 -14.6387 7.44336 -16.2539 8.50293 c +-18.1738 9.76465 -19.6309 10.9854 -19.6094 11.7773 c +-19.5996 12.1357 -19.2949 12.4072 -18.5723 12.5479 C +-15.6387 11.2861 -12.6299 9.7041 V +-10.5059 8.1377 -8.08203 6.55469 -6.59961 5.61133 C +-6.53906 5.5332 -6.47949 5.45508 -6.43066 5.37988 C +f +0.00885 0.504875 0.439429 0.000671 0.945098 0.596078 0.517647 Xa +-15.1787 14.3545 m +-14.3203 13.9346 -13.0996 13.2568 v +-11.2109 12.21 -8.45313 10.5479 -6.62988 8.85645 c +-6.60352 8.83105 -6.57715 8.80957 -6.55078 8.78613 C +-6.01172 7.99219 -5.56348 7.3418 -5.26953 6.9209 C +-5.69727 6.4873 -6.06641 5.99902 -6.37793 5.4707 C +-6.44727 5.51563 -6.52344 5.56152 -6.59961 5.61133 c +-8.08203 6.55469 -10.5059 8.1377 -12.6299 9.7041 c +-12.9219 9.9209 -13.2109 10.1377 -13.4902 10.3525 c +-16.4688 12.6445 -18.3906 14.6943 -15.1787 14.3545 C +f +0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa +-4.01367 7.93555 m +-4.46875 7.64453 -4.89063 7.30469 -5.26953 6.9209 C +-5.56348 7.3418 -6.01172 7.99219 -6.55078 8.78613 c +-6.58008 8.82715 -6.60938 8.87109 -6.63867 8.91211 c +-7.56836 10.2822 -8.73828 12.0361 -9.82422 13.751 c +-12.5723 18.0918 -14.7461 22.1445 -10.9219 18.8311 C +-8.57715 16.3887 -6.61719 13.6357 V +-5.59473 11.3779 -4.52539 9.22559 -4.02344 8.22949 C +-4.01758 8.12793 -4.01074 8.03027 -4.01367 7.93555 C +f +-3.91016 8.00098 m +-3.94434 8.06543 -3.9834 8.14258 -4.02344 8.22949 c +-4.52539 9.22559 -5.59473 11.3779 -6.61719 13.6357 c +-8.61914 18.0449 -10.4375 22.8203 -7.45898 19.999 C +-6.10938 18.915 -4.6543 16.4463 v +-3.60938 14.6729 -2.51953 12.1738 -1.82422 8.8623 C +-2.57715 8.6875 -3.27539 8.39258 -3.91016 8.00098 C +f +0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa +0.370117 9.45996 m +0.328125 9.31348 0.28125 9.17383 0.230469 9.03418 C +-0.154297 9.05859 -0.542969 9.06055 -0.9375 9.01855 C +-1.78711 11.5791 -3.50781 17.1719 -3.51172 20.4736 c +-3.51367 22.1982 -3.04883 23.2959 -1.74609 23.0127 C +0.099609 18.8721 0.626953 14.585 V +0.333984 12.5459 0.333984 10.6064 0.370117 9.45996 C +f +0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa +2.5332 8.50195 m +1.85547 8.78613 1.13672 8.96387 0.387695 9.02637 C +0.382813 9.1543 0.376953 9.2998 0.370117 9.45996 c +0.333984 10.6064 0.333984 12.5459 0.626953 14.585 c +1.00586 17.2383 1.87305 20.0537 3.78613 21.4941 C +4.30273 21.1357 4.49219 19.623 v +4.71094 17.874 4.48828 14.5791 2.5332 8.50195 C +f +0.00885 0.504875 0.439429 0.000671 0.945098 0.596078 0.517647 Xa +9.19336 11.3242 m +9.02344 11.082 8.84863 10.8418 8.66992 10.6006 C +6.94141 8.93164 5.50293 7.44043 4.94531 6.85449 C +4.27734 7.54004 3.48438 8.09277 2.61133 8.47266 C +3.21289 9.5127 5.10156 12.6943 7.16406 15.2324 c +9.21094 17.7559 11.4229 19.6318 12.7129 18.1396 c +12.7324 18.1152 12.7549 18.0996 12.7754 18.0752 C +11.5527 14.7021 9.19336 11.3242 v +f +0.010529 0.592309 0.518242 0.000092 0.933333 0.517647 0.439216 Xa +6.4043 4.70996 m +6.03711 5.5127 5.54492 6.24023 4.94531 6.85449 C +5.50293 7.44043 6.94141 8.93164 8.66992 10.6006 c +8.93652 10.8594 9.20898 11.1211 9.48828 11.3857 c +11.4648 13.2559 13.666 15.1846 15.3027 16.207 c +16.8984 17.2021 17.9609 17.335 17.7461 15.6895 C +17.582 15.376 17.2754 14.8545 v +16.5977 13.7021 15.2129 11.5254 13.3594 9.40625 c +12.3691 8.27539 11.2539 7.16309 10.0273 6.23828 C +8.5332 5.62305 7.25 5.06348 6.41992 4.69141 C +6.4043 4.70996 L +f +0.014282 0.702541 0.579614 0.00119 0.917647 0.415686 0.368627 Xa +6.95313 3.00879 m +6.83789 3.60059 6.65234 4.16016 6.41406 4.68945 C +6.41406 4.69043 6.41797 4.69141 6.41992 4.69141 c +7.25 5.06348 8.5332 5.62305 10.0273 6.23828 c +15.0898 8.32227 22.5234 10.999 22.541 8.76855 C +21.4844 6.92871 17.8457 5.3623 v +17.3242 5.13574 16.75 4.91797 16.1221 4.71094 C +6.95313 3.00879 L +f +0.01529 0.77731 0.613703 0.000793 0.909804 0.337255 0.32549 Xa +2.69531 -5.34863 m +2.77148 -5.31543 2.8457 -5.27637 2.92188 -5.23926 C +3.9668 -8.10938 6.03711 -14.0361 5.87305 -15.5918 c +5.83008 -15.999 5.63574 -16.1113 5.22852 -15.7842 C +5.16016 -15.5127 5.04688 -15.0713 v +4.66602 -13.5625 3.75391 -9.9209 3.04883 -6.89453 c +2.92285 -6.35449 2.80371 -5.83398 2.69531 -5.34863 C +f +*u +1 D +0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 Xa +7.04102 0.587891 m +7.03809 0.571289 7.03711 0.554688 7.03418 0.539063 c +6.93652 -0.231445 6.72461 -0.96582 6.41406 -1.64746 c +6.05859 -2.43066 5.57813 -3.14551 4.98926 -3.75293 c +4.98438 -3.75977 4.97852 -3.76465 4.97168 -3.77051 c +4.72852 -4.02246 4.46094 -4.25293 4.18164 -4.46582 c +3.79004 -4.76465 3.36914 -5.02539 2.92188 -5.23926 c +2.8457 -5.27637 2.77148 -5.31543 2.69531 -5.34863 c +2.67773 -5.35547 2.65625 -5.3623 2.63574 -5.37109 c +2.00586 -5.6377 1.32813 -5.82227 0.615234 -5.89453 c +0.436523 -5.91406 0.263672 -5.91797 0.089844 -5.9209 c +-0.669922 -5.94531 -1.4082 -5.84863 -2.10938 -5.6416 c +-2.11328 -5.6416 -2.11914 -5.6377 -2.125 -5.6377 c +-2.60938 -5.49414 -3.07422 -5.30176 -3.51367 -5.0625 c +-3.55859 -5.04004 -3.60156 -5.01465 -3.64453 -4.99023 c +-4.16797 -4.69043 -4.65039 -4.32422 -5.08789 -3.90332 c +-5.0957 -3.89941 -5.10352 -3.89063 -5.1123 -3.88477 c +-5.38184 -3.62402 -5.63086 -3.34082 -5.86035 -3.04004 c +-6.19629 -2.59961 -6.48438 -2.12012 -6.7207 -1.60645 c +-7.01953 -0.952148 -7.23145 -0.244141 -7.33984 0.50293 c +-7.35156 0.59375 -7.37109 0.683594 -7.38184 0.777344 c +-7.38281 0.786133 -7.38477 0.795898 -7.38672 0.808594 c +-7.43945 1.31055 -7.43945 1.80566 -7.39941 2.29004 c +-7.39063 2.37988 -7.375 2.46973 -7.36426 2.55859 c +-7.31836 2.93262 -7.24609 3.2998 -7.14844 3.65527 c +-7.13379 3.71191 -7.11719 3.77344 -7.10156 3.83105 c +-6.93555 4.37598 -6.70703 4.89258 -6.43066 5.37988 c +-6.41406 5.4082 -6.39648 5.44043 -6.37793 5.4707 c +-6.06641 5.99902 -5.69727 6.4873 -5.26953 6.9209 c +-4.89063 7.30469 -4.46875 7.64453 -4.01367 7.93555 c +-3.97949 7.95898 -3.94531 7.98145 -3.91016 8.00098 c +-3.27539 8.39258 -2.57715 8.6875 -1.82422 8.8623 c +-1.53711 8.92871 -1.24219 8.9873 -0.939453 9.01855 c +-0.9375 9.01855 l +-0.542969 9.06055 -0.154297 9.05859 0.230469 9.03418 c +0.282227 9.03125 0.333984 9.03125 0.387695 9.02637 c +1.13672 8.96387 1.85547 8.78613 2.5332 8.50195 c +2.55859 8.49121 2.58594 8.48145 2.61133 8.47266 c +3.48438 8.09277 4.27734 7.54004 4.94531 6.85449 c +5.54492 6.24023 6.03711 5.5127 6.4043 4.70996 c +6.40527 4.70215 6.41016 4.69824 6.41406 4.68945 c +6.65234 4.16016 6.83789 3.60059 6.95313 3.00879 c +6.99805 2.78125 7.03711 2.54785 7.06055 2.31348 c +7.10742 1.87598 7.10742 1.44336 7.08008 1.0166 c +7.07813 0.977539 7.07813 0.9375 7.07324 0.897461 c +7.06641 0.793945 7.05469 0.69043 7.04102 0.587891 c +f +*U +u +1 Ap +0 D +0.191653 0.388464 0.961883 0.078523 0.788235 0.588235 0.101961 Xa +6.82813 1.34082 m +5.91602 2.53223 L +6.3877 3.97656 L +5.6875 5.0752 L +4.51953 5.72266 L +3.50586 6.32031 L +2.97266 7.81348 L +1.68262 8.0918 L +0.611328 7.85254 L +-0.129883 7.53125 L +-1.4248 7.91504 L +-2.49609 7.19336 L +-4.00977 7.38184 L +-4.74121 6.23242 L +-5.58691 5.32617 L +-6.20117 4.24707 L +-6.93555 3.16309 L +-6.81836 2.09863 L +-6.66895 1.34082 L +-6.89063 0.008789 L +-6.30176 -1.15527 L +-5.60547 -2.17773 L +-5.17773 -3.4209 L +-4.06152 -4.04688 L +-2.8457 -4.33301 L +-1.80078 -4.89648 L +-0.852539 -5.06152 L +-0.129883 -4.84277 L +1.11621 -4.98535 L +2.35938 -4.8125 L +3.74023 -4.68262 L +4.36914 -3.42871 L +5.28125 -2.60742 L +6.30371 -1.73926 L +6.63477 -0.469727 L +6.23633 0.621094 L +6.82813 1.34082 L +f +U +0 0 Xd +6 () XW +0 O +0.148074 0.268009 0.638117 0.028626 0.862745 0.721569 0.427451 Xa +4.53906 1.3418 m +4.53906 3.91895 2.44922 6.00977 -0.129883 6.00977 c +-2.70898 6.00977 -4.79883 3.91895 -4.79883 1.3418 c +-4.79883 -1.2373 -2.70898 -3.32813 -0.129883 -3.32813 c +2.44922 -3.32813 4.53906 -1.2373 4.53906 1.3418 c +f +0.095918 0.167697 0.394507 0.005707 0.917647 0.827451 0.654902 Xa +2.97266 1.3418 m +2.97266 3.05469 1.58398 4.44336 -0.129883 4.44336 c +-1.84375 4.44336 -3.23242 3.05469 -3.23242 1.3418 c +-3.23242 -0.37207 -1.84375 -1.76172 -0.129883 -1.76172 c +1.58398 -1.76172 2.97266 -0.37207 2.97266 1.3418 c +f +0 Ap +0.148074 0.268009 0.638117 0.028626 0.862745 0.721569 0.427451 Xa +4.91992 -0.042969 m +4.47656 -0.80957 L +4.91992 -1.57617 L +5.80469 -1.57617 L +6.24609 -0.80957 L +5.80469 -0.042969 L +4.91992 -0.042969 L +f +3.73242 4.50586 m +3.29102 3.74023 L +3.73242 2.97461 L +4.61719 2.97461 L +5.06055 3.74023 L +4.61719 4.50586 L +3.73242 4.50586 L +f +0.171875 4.11035 m +-0.269531 3.34473 L +0.171875 2.5791 L +1.05664 2.5791 L +1.5 3.34473 L +1.05664 4.11035 L +0.171875 4.11035 L +f +-0.619141 -0.834961 m +-1.06152 -1.60254 L +-0.619141 -2.36816 L +0.265625 -2.36816 L +0.707031 -1.60254 L +0.265625 -0.834961 L +-0.619141 -0.834961 L +f +-2.53906 -3.18359 m +-2.98242 -3.94824 L +-2.53906 -4.71582 L +-1.6543 -4.71582 L +-1.21289 -3.94824 L +-1.6543 -3.18359 L +-2.53906 -3.18359 L +f +-5.50684 -1.2041 m +-5.94922 -1.97168 L +-5.50684 -2.73828 L +-4.62207 -2.73828 L +-4.17969 -1.97168 L +-4.62207 -1.2041 L +-5.50684 -1.2041 L +f +-5.30859 2.94824 m +-5.75195 2.18066 L +-5.30859 1.41504 L +-4.42383 1.41504 L +-3.98242 2.18066 L +-4.42383 2.94824 L +-5.30859 2.94824 L +f +-5.93848 3.36914 m +-6.38086 2.60254 L +-5.93848 1.83496 L +-5.05371 1.83496 L +-4.61133 2.60254 L +-5.05371 3.36914 L +-5.93848 3.36914 L +f +-4.48242 5.09961 m +-4.92383 4.33398 L +-4.48242 3.56738 L +-3.59766 3.56738 L +-3.1543 4.33398 L +-3.59766 5.09961 L +-4.48242 5.09961 L +f +-1.31641 3.91211 m +-1.75977 3.14551 L +-1.31641 2.37988 L +-0.431641 2.37988 L +0.009766 3.14551 L +-0.431641 3.91211 L +-1.31641 3.91211 L +f +0.462891 0.946289 m +0.021484 0.180664 L +0.462891 -0.584961 L +1.34766 -0.584961 L +1.79102 0.180664 L +1.34766 0.946289 L +0.462891 0.946289 L +f +2.44141 3.71582 m +1.99805 2.94922 L +2.44141 2.18262 L +3.32617 2.18262 L +3.76855 2.94922 L +3.32617 3.71582 L +2.44141 3.71582 L +f +2.24414 -0.637695 m +1.80078 -1.40332 L +2.24414 -2.16895 L +3.12891 -2.16895 L +3.57031 -1.40332 L +3.12891 -0.637695 L +2.24414 -0.637695 L +f +U +9 () XW +U +%_/ArtDictionary : +%_; +%_ +9 () XW +%AI10_EndSymbol +%AI14_BeginSymbol +(Leuchtendes Orange) 0 A +0 Xw +u +u +1 Ap +0 O +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +12.1064 -0.000977 m +12.1064 6.68408 6.68555 12.106 0 12.106 c +-6.68652 12.106 -12.1064 6.68408 -12.1064 -0.000977 c +-12.1064 -6.68652 -6.68652 -12.1064 0 -12.1064 c +6.68555 -12.1064 12.1064 -6.68652 12.1064 -0.000977 c +Bb +1 (Unnamed gradient 42) 0 0 90 1 1 0 0 1 0 0 1 Bg +-0.000001 24.2124 28.2128 0.000001 -7761.1064 8078.894 Xm +-0.000001 27.2124 28.2128 0.000001 -7761.1064 8051.6816 Bc +-0.000001 14.9627 28.2128 0.000001 -7761.1064 8078.894 Bm +0 0.272051 28.2128 0.000001 -7761.1064 8093.8569 Bm +0 8.56957 28.2128 0.000001 -7761.1064 8094.1289 Bm +-0.000001 27.2124 28.2128 0.000001 -7761.1064 8102.6982 Bc +f +0 BB +12.1064 -0.000977 m +12.1064 6.68408 6.68555 12.106 0 12.106 c +-6.68652 12.106 -12.1064 6.68408 -12.1064 -0.000977 c +-12.1064 -6.68652 -6.68652 -12.1064 0 -12.1064 c +6.68555 -12.1064 12.1064 -6.68652 12.1064 -0.000977 c +Bb +1 (Unnamed gradient 10) 0 0 90 1 1 0 0 1 0 0 1 Bg +-0.000001 24.2124 28.2128 0.000001 -7761.1064 8078.894 Xm +-0.000001 27.2124 28.2128 0.000001 -7761.1064 8051.6816 Bc +-0.000001 14.9627 28.2128 0.000001 -7761.1064 8078.894 Bm +0 5.07979 28.2128 0.000001 -7761.1064 8093.8569 Bm +0 3.76183 28.2128 0.000001 -7761.1064 8098.9365 Bm +-0.000001 27.2124 28.2128 0.000001 -7761.1064 8102.6982 Bc +f +0 BB +2 0.7 0 0 0 Xy +12.1064 -0.000977 m +12.1064 6.68408 6.68555 12.106 0 12.106 c +-6.68652 12.106 -12.1064 6.68408 -12.1064 -0.000977 c +-12.1064 -6.68652 -6.68652 -12.1064 0 -12.1064 c +6.68555 -12.1064 12.1064 -6.68652 12.1064 -0.000977 c +Bb +1 (Unnamed gradient 8) 0 0 -90 1 1 0 0 1 0 0 1 Bg +-0.000001 -24.2124 -28.2128 0.000001 -7732.8936 8103.1064 Xm +-0.000001 -27.2124 -28.2128 0.000001 -7732.8936 8130.3188 Bc +0 -4.92231 -28.2128 0.000001 -7732.8936 8103.1064 Bm +0 -3.45891 -28.2128 0.000001 -7732.8936 8098.1841 Bm +0 -3.99105 -28.2128 0.000001 -7732.8936 8094.7251 Bm +-0.000001 -11.8401 -28.2128 0.000001 -7732.8936 8090.7339 Bm +-0.000001 -27.2124 -28.2128 0.000001 -7732.8936 8078.894 Bc +f +0 BB +u +*u +0 Ap +0 0 0 0 1 1 1 Xa +0 1 0 0 0 Xy +0 -10.3066 m +5.68311 -10.3066 10.3066 -5.68359 10.3066 -0.000977 C +10.3066 5.68213 5.68311 10.3062 0 10.3062 C +-5.68311 10.3062 -10.3066 5.68213 -10.3066 -0.000977 C +-10.3066 -5.68359 -5.68311 -10.3066 0 -10.3066 C +F +1 D +0 -12.1064 m +-6.68652 -12.1064 -12.1064 -6.68652 -12.1064 -0.000977 C +-12.1064 6.68408 -6.68652 12.106 0 12.106 C +6.68555 12.106 12.1064 6.68408 12.1064 -0.000977 C +12.1064 -6.68652 6.68555 -12.1064 0 -12.1064 C +0 -12.1064 L +f +*U +U +0 0.6 0 0 0 Xy +0 0 Xd +6 () XW +1 Ap +0 D +0 R +0.0065 0.4589 0.819943 0.000244 0.952941 0.611765 0.231373 XA +0 1 0 0 0 Xy +2 w 1 M 12.1064 -0.000977 m +12.1064 6.68408 6.68555 12.106 0 12.106 c +-6.68652 12.106 -12.1064 6.68408 -12.1064 -0.000977 c +-12.1064 -6.68652 -6.68652 -12.1064 0 -12.1064 c +6.68555 -12.1064 12.1064 -6.68652 12.1064 -0.000977 c +s +U +1 w 10 M 0 0 Xd +6 () XW +%_12.1064 -0.000977 m +%_12.1064 6.68408 6.68555 12.106 0 12.106 c +%_-6.68652 12.106 -12.1064 6.68408 -12.1064 -0.000977 c +%_-12.1064 -6.68652 -6.68652 -12.1064 0 -12.1064 c +%_6.68555 -12.1064 12.1064 -6.68652 12.1064 -0.000977 c +%_n +1 (Anon) XW +U +%_/ArtDictionary : +%_0 /Bool (AI13PatternEnableGuides) , +%_2 /Int (AI13PatternExportType) , +%_; +%_ +9 () XW +%AI10_EndSymbol +%AI14_BeginSymbol +(Prozessrechteck) 0 A +0 Xw +u +u +0 Ap +0 O +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +-20.7314 10.4146 m +-20.8004 10.4146 -20.8564 10.3586 -20.8564 10.2896 C +-20.8564 -10.29 L +-20.8564 -10.359 -20.8004 -10.415 -20.7314 -10.415 C +20.7295 -10.415 L +20.7985 -10.415 20.8545 -10.359 20.8545 -10.29 C +20.8545 10.2896 L +20.8545 10.3586 20.7985 10.4146 20.7295 10.4146 C +-20.7314 10.4146 L +Bb +1 (Unnamed gradient 1) 0 0 90 1 1 0 0 1 0 0 1 Bg +-0.000001 20.8296 45.7109 0.000002 -7769.8564 8080.5854 Xm +-0.000001 23.8306 45.7109 0.000002 -7769.8564 8056.7549 Bc +-0.000001 12.8722 45.7109 0.000002 -7769.8564 8080.5854 Bm +0 0.234042 45.7109 0.000002 -7769.8564 8093.4575 Bm +0 7.37228 45.7109 0.000002 -7769.8564 8093.6919 Bm +-0.000001 23.8306 45.7109 0.000002 -7769.8564 8101.064 Bc +f +0 BB +-20.7314 10.4146 m +-20.8004 10.4146 -20.8564 10.3586 -20.8564 10.2896 C +-20.8564 -10.29 L +-20.8564 -10.359 -20.8004 -10.415 -20.7314 -10.415 C +20.7295 -10.415 L +20.7985 -10.415 20.8545 -10.359 20.8545 -10.29 C +20.8545 10.2896 L +20.8545 10.3586 20.7985 10.4146 20.7295 10.4146 C +-20.7314 10.4146 L +Bb +1 (Unnamed gradient 21) 0 0 90 1 1 0 0 1 0 0 1 Bg +-0.000001 20.8296 45.7109 0.000002 -7769.8564 8080.5854 Xm +-0.000001 23.8306 45.7109 0.000002 -7769.8564 8056.7549 Bc +0 10.4148 45.7109 0.000002 -7769.8564 8080.5854 Bm +0 10.4148 45.7109 0.000002 -7769.8564 8091 Bm +-0.000001 23.8306 45.7109 0.000002 -7769.8564 8101.415 Bc +f +0 BB +2 0.51 0 0 0 Xy +-20.7314 10.4146 m +-20.8004 10.4146 -20.8564 10.3586 -20.8564 10.2896 C +-20.8564 -10.29 L +-20.8564 -10.359 -20.8004 -10.415 -20.7314 -10.415 C +20.7295 -10.415 L +20.7985 -10.415 20.8545 -10.359 20.8545 -10.29 C +20.8545 10.2896 L +20.8545 10.3586 20.7985 10.4146 20.7295 10.4146 C +-20.7314 10.4146 L +Bb +0 0 0 0 Bh +1 (Unnamed gradient 19) 0 0 0 1 1 0 0 1 0 0 0.5 Bg +16.4836 0 0 -8.2418 -7747.001 8091 Bm +f +0 BB +2 0.7 0 0 0 Xy +-20.7314 10.4146 m +-20.8004 10.4146 -20.8564 10.3586 -20.8564 10.2896 C +-20.8564 -10.29 L +-20.8564 -10.359 -20.8004 -10.415 -20.7314 -10.415 C +20.7295 -10.415 L +20.7985 -10.415 20.8545 -10.359 20.8545 -10.29 C +20.8545 10.2896 L +20.8545 10.3586 20.7985 10.4146 20.7295 10.4146 C +-20.7314 10.4146 L +Bb +1 (Unnamed gradient 16) 0 0 -90 1 1 0 0 1 0 0 1 Bg +-0.000001 -20.8296 -45.7109 0.000002 -7724.1455 8101.415 Xm +-0.000001 -23.8306 -45.7109 0.000002 -7724.1455 8125.2456 Bc +0 -9.37332 -45.7109 0.000002 -7724.1455 8101.415 Bm +-0.000001 -11.4563 -45.7109 0.000002 -7724.1455 8092.0415 Bm +-0.000001 -23.8306 -45.7109 0.000002 -7724.1455 8080.5854 Bc +f +0 BB +u +*u +0.749172 0.600427 0 0 0.333333 0.403922 0.682353 Xa +0 1 0 0 0 Xy +20.7295 -10.29 m +20.7295 10.2896 L +-20.7314 10.2896 L +-20.7314 -10.29 L +20.7295 -10.29 L +F +1 D +20.7295 -10.54 m +-20.7314 -10.54 L +-20.8696 -10.54 -20.9814 -10.4282 -20.9814 -10.29 C +-20.9814 10.2896 L +-20.9814 10.4277 -20.8696 10.5396 -20.7314 10.5396 C +20.7295 10.5396 L +20.8677 10.5396 20.9795 10.4277 20.9795 10.2896 C +20.9795 -10.29 L +20.9795 -10.4282 20.8677 -10.54 20.7295 -10.54 C +20.7295 -10.54 L +f +*U +U +0 1 1 0 0 Xy +0 0 Xd +6 () XW +U +0 1 0 0 0 Xy +0 0 Xd +6 () XW +%_1 Ap +%_0 D +%_20.7295 10.2896 m +%_-20.7314 10.2896 L +%_-20.7314 -10.29 L +%_20.7295 -10.29 L +%_20.7295 10.2896 L +%_n +1 (Anon 195) XW +U +%_/ArtDictionary : +%_0 /Bool (AI13PatternEnableGuides) , +%_2 /Int (AI13PatternExportType) , +%_; +%_ +9 () XW +%AI10_EndSymbol +%AI14_BeginSymbol +(Schnittmarken \(9-Slice\)) 0 A +0 Xw +u +0 Ap +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +100 99.9995 m +-100 99.9995 L +-100 -100 L +100 -100 L +100 99.9995 L +n +0 O +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz +-79 -118 m +-91 -118 l +-91 -130 l +-79 -130 l +-79 -118 L +f +0.764004 0.669215 0.607538 0.832273 0 0 0 ([Passermarken]) 0.1 1 Xz +-67 -118 m +-79 -118 l +-79 -130 l +-67 -130 l +-67 -118 L +f +0.690608 0.595209 0.559747 0.655817 0 0 0 ([Passermarken]) 0.2 1 Xz +-55 -118 m +-67 -118 l +-67 -130 l +-55 -130 l +-55 -118 L +f +0.621576 0.524865 0.504448 0.480934 0 0 0 ([Passermarken]) 0.3 1 Xz +-43 -118 m +-55 -118 l +-55 -130 l +-43 -130 l +-43 -118 L +f +0.559442 0.453803 0.448554 0.326848 0 0 0 ([Passermarken]) 0.4 1 Xz +-31 -118 m +-43 -118 l +-43 -130 l +-31 -130 l +-31 -118 L +f +0.493935 0.388128 0.386419 0.204318 0 0 0 ([Passermarken]) 0.5 1 Xz +-19 -118 m +-31 -118 l +-31 -130 l +-19 -130 l +-19 -118 L +f +0.410864 0.319738 0.323857 0.110109 0 0 0 ([Passermarken]) 0.6 1 Xz +-7 -118 m +-19 -118 l +-19 -130 l +-7 -130 l +-7 -118 L +f +0.327337 0.246494 0.256504 0.044678 0 0 0 ([Passermarken]) 0.7 1 Xz +5 -118 m +-7 -118 l +-7 -130 l +5 -130 l +5 -118 L +f +0.231479 0.170962 0.180972 0.008301 0 0 0 ([Passermarken]) 0.8 1 Xz +17 -118 m +5 -118 l +5 -130 l +17 -130 l +17 -118 L +f +0.119753 0.084596 0.094972 0 0 0 0 ([Passermarken]) 0.9 1 Xz +29 -118 m +17 -118 l +17 -130 l +29 -130 l +29 -118 L +f +0.75079 0.216068 0 0 0 0.623529 0.890196 Xa +-130 -91 m +-118 -91 l +-118 -79 l +-130 -79 l +-130 -91 L +f +0 R +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ +0.5 w -130 -91 m +-118 -91 l +-118 -79 l +-130 -79 l +-130 -91 L +s +*u +0 O +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz +1 w -123.7041 -85.6074 m +-123.6943 -85.6318 -123.6816 -85.6475 -123.6631 -85.6582 c +-123.6484 -85.668 -123.624 -85.6719 -123.5928 -85.6719 c +-123.5586 -85.6719 -123.5342 -85.666 -123.5215 -85.6475 c +-123.5078 -85.6328 -123.5 -85.5986 -123.5 -85.5488 c +-123.5 -85.458 -123.499 -85.375 -123.498 -85.2969 c +-123.4971 -85.2217 -123.4961 -85.1875 -123.4961 -85.1982 c +-123.4961 -85.1543 -123.5049 -85.127 -123.5186 -85.1094 c +-123.5322 -85.0947 -123.5576 -85.0898 -123.5977 -85.0898 c +-123.6572 -85.0898 -123.6953 -85.1309 -123.7148 -85.2148 c +-123.7197 -85.2432 -123.7266 -85.2607 -123.7285 -85.2773 c +-123.7451 -85.3428 -123.7881 -85.3994 -123.8516 -85.4434 c +-123.918 -85.4844 -123.9971 -85.5068 -124.083 -85.5068 c +-124.2451 -85.5068 -124.375 -85.4482 -124.4717 -85.3301 c +-124.5713 -85.2119 -124.6191 -85.0557 -124.6191 -84.8564 c +-124.6191 -84.6582 -124.5703 -84.498 -124.4697 -84.3799 c +-124.3721 -84.2627 -124.2422 -84.2031 -124.0791 -84.2031 c +-124.0254 -84.2031 -123.9727 -84.2119 -123.917 -84.2266 c +-123.8613 -84.2402 -123.8096 -84.2637 -123.7549 -84.2949 c +-123.7314 -84.3066 -123.6973 -84.3291 -123.6563 -84.3584 c +-123.6123 -84.3896 -123.5801 -84.4043 -123.5635 -84.4043 c +-123.5342 -84.4043 -123.5098 -84.3945 -123.4922 -84.377 c +-123.4717 -84.3574 -123.4619 -84.334 -123.4619 -84.3076 c +-123.4619 -84.2813 -123.4727 -84.2529 -123.4941 -84.2285 c +-123.5166 -84.2041 -123.5547 -84.1719 -123.6133 -84.1357 c +-123.6914 -84.0859 -123.7666 -84.0498 -123.8457 -84.0264 c +-123.9209 -84.0029 -124.0029 -83.9912 -124.0908 -83.9912 c +-124.3154 -83.9912 -124.501 -84.0713 -124.6465 -84.2285 c +-124.7949 -84.3887 -124.8672 -84.5908 -124.8672 -84.8389 c +-124.8672 -85.084 -124.7939 -85.2891 -124.6445 -85.4492 c +-124.4951 -85.6123 -124.3076 -85.6934 -124.083 -85.6934 c +-124.0234 -85.6934 -123.9629 -85.6875 -123.8984 -85.6709 c +-123.8369 -85.6572 -123.7734 -85.6348 -123.7041 -85.6074 c +f +*U +0.008942 0.971435 0.039033 0 0.901961 0 0.494118 Xa +-130 -79 m +-118 -79 l +-118 -67 l +-130 -67 l +-130 -79 L +f +0 R +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ +0.5 w -130 -79 m +-118 -79 l +-118 -67 l +-130 -67 l +-130 -79 L +s +*u +0 O +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz +1 w -124.1309 -72.7041 m +-123.8369 -73.5596 l +-123.8252 -73.5898 -123.8086 -73.6133 -123.7861 -73.6299 c +-123.7637 -73.6445 -123.7305 -73.6523 -123.6875 -73.6523 c +-123.4639 -73.6523 l +-123.4355 -73.6523 -123.4131 -73.6436 -123.3994 -73.6289 c +-123.3818 -73.6113 -123.377 -73.5879 -123.377 -73.5596 c +-123.377 -73.5244 -123.3867 -73.501 -123.4033 -73.4883 c +-123.4229 -73.4727 -123.458 -73.4678 -123.5068 -73.4678 c +-123.5293 -73.4678 l +-123.4922 -72.2236 l +-123.46 -72.2236 l +-123.4004 -72.2236 -123.3594 -72.2158 -123.3408 -72.2031 c +-123.3203 -72.1904 -123.3096 -72.166 -123.3096 -72.1299 c +-123.3096 -72.0967 -123.3184 -72.0723 -123.334 -72.0537 c +-123.3525 -72.0381 -123.376 -72.0293 -123.4053 -72.0293 c +-123.79 -72.0293 l +-123.8438 -72.0293 -123.8799 -72.0381 -123.8975 -72.0518 c +-123.917 -72.0654 -123.9277 -72.0938 -123.9277 -72.1299 c +-123.9277 -72.165 -123.916 -72.1895 -123.8926 -72.2021 c +-123.8701 -72.2158 -123.8252 -72.2236 -123.7627 -72.2236 c +-123.7041 -72.2236 l +-123.7314 -73.3984 l +-124.001 -72.6123 l +-124.0146 -72.5752 -124.0332 -72.5469 -124.0508 -72.5322 c +-124.0723 -72.5186 -124.1035 -72.5107 -124.1426 -72.5107 c +-124.1797 -72.5107 -124.21 -72.5186 -124.2314 -72.5332 c +-124.249 -72.5469 -124.2676 -72.5762 -124.2803 -72.6123 c +-124.5537 -73.3984 l +-124.5781 -72.2236 l +-124.4883 -72.2236 l +-124.4336 -72.2236 -124.3965 -72.2148 -124.374 -72.2012 c +-124.3516 -72.1875 -124.3408 -72.1602 -124.3408 -72.1299 c +-124.3408 -72.0938 -124.3506 -72.0654 -124.3711 -72.0518 c +-124.3887 -72.0381 -124.4248 -72.0293 -124.4795 -72.0293 c +-124.8633 -72.0293 l +-124.8926 -72.0293 -124.917 -72.0381 -124.9346 -72.0537 c +-124.9492 -72.0713 -124.958 -72.0957 -124.958 -72.1299 c +-124.958 -72.166 -124.9482 -72.1904 -124.9268 -72.2031 c +-124.9063 -72.2158 -124.8672 -72.2236 -124.8086 -72.2236 c +-124.7773 -72.2236 l +-124.7383 -73.4678 l +-124.7607 -73.4678 l +-124.8105 -73.4678 -124.8447 -73.4727 -124.8652 -73.4883 c +-124.8828 -73.501 -124.8926 -73.5244 -124.8926 -73.5596 c +-124.8926 -73.5879 -124.8867 -73.6113 -124.8691 -73.6289 c +-124.8545 -73.6436 -124.832 -73.6523 -124.8047 -73.6523 c +-124.5781 -73.6523 l +-124.5371 -73.6523 -124.5049 -73.6445 -124.4824 -73.6299 c +-124.459 -73.6133 -124.4434 -73.5898 -124.4316 -73.5596 c +-124.1309 -72.7041 L +f +*U +0.045655 0 0.888395 0 1 0.929412 0 Xa +-130 -67 m +-118 -67 l +-118 -55 l +-130 -55 l +-130 -67 L +f +0 R +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ +0.5 w -130 -67 m +-118 -67 l +-118 -55 l +-130 -55 l +-130 -67 L +s +*u +0 O +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz +1 w -123.834 -60.2227 m +-123.7637 -60.2227 -123.7188 -60.2148 -123.6982 -60.2021 c +-123.6807 -60.1895 -123.6699 -60.165 -123.6699 -60.1289 c +-123.6699 -60.0889 -123.6807 -60.0635 -123.6982 -60.0498 c +-123.7188 -60.0361 -123.7568 -60.0283 -123.8164 -60.0283 c +-124.4668 -60.0283 l +-124.5264 -60.0283 -124.5645 -60.0361 -124.585 -60.0498 c +-124.6016 -60.0635 -124.6123 -60.0889 -124.6123 -60.1289 c +-124.6123 -60.165 -124.6016 -60.1895 -124.582 -60.2021 c +-124.5605 -60.2148 -124.5156 -60.2227 -124.4473 -60.2227 c +-124.249 -60.2227 l +-124.249 -60.6748 l +-124.7041 -61.4541 l +-124.7275 -61.4541 l +-124.7832 -61.4541 -124.8203 -61.46 -124.8408 -61.4766 c +-124.8594 -61.4902 -124.8691 -61.5156 -124.8691 -61.5518 c +-124.8691 -61.5859 -124.8633 -61.6104 -124.8447 -61.625 c +-124.8291 -61.6426 -124.8008 -61.6484 -124.7646 -61.6484 c +-124.7041 -61.6484 l +-124.3906 -61.6484 l +-124.3379 -61.6484 -124.3027 -61.6436 -124.2822 -61.6289 c +-124.2656 -61.6123 -124.2559 -61.5879 -124.2559 -61.5518 c +-124.2559 -61.5156 -124.2666 -61.4902 -124.2891 -61.4766 c +-124.3125 -61.46 -124.3516 -61.4541 -124.4102 -61.4541 c +-124.4561 -61.4541 l +-124.126 -60.8594 l +-123.7803 -61.4541 l +-123.8369 -61.4541 l +-123.8857 -61.4541 -123.9209 -61.46 -123.9404 -61.4766 c +-123.9609 -61.4902 -123.9678 -61.5156 -123.9678 -61.5518 c +-123.9678 -61.5889 -123.9619 -61.6172 -123.9434 -61.6309 c +-123.9287 -61.6436 -123.8857 -61.6484 -123.8213 -61.6484 c +-123.7861 -61.6484 l +-123.5684 -61.6484 l +-123.498 -61.6484 -123.4531 -61.6436 -123.4355 -61.6299 c +-123.415 -61.6133 -123.4053 -61.5879 -123.4053 -61.5518 c +-123.4053 -61.5156 -123.415 -61.4902 -123.4355 -61.4766 c +-123.4531 -61.46 -123.4932 -61.4541 -123.5459 -61.4541 c +-123.5684 -61.4541 l +-124.0342 -60.6572 l +-124.0342 -60.2227 l +-123.834 -60.2227 L +f +*U +0.996765 0.965789 0.0878 0.011505 0.192157 0.152941 0.513726 Xa +-130 -55 m +-118 -55 l +-118 -43 l +-130 -43 l +-130 -55 L +f +0 R +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ +0.5 w -130 -55 m +-118 -55 l +-118 -43 l +-130 -43 l +-130 -55 L +s +*u +0 O +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz +1 w -124.6768 -49.6074 m +-124.667 -49.6318 -124.6543 -49.6475 -124.6357 -49.6582 c +-124.6211 -49.668 -124.5967 -49.6719 -124.5654 -49.6719 c +-124.5313 -49.6719 -124.5068 -49.666 -124.4941 -49.6475 c +-124.4805 -49.6328 -124.4727 -49.5986 -124.4727 -49.5488 c +-124.4727 -49.458 -124.4717 -49.375 -124.4707 -49.2969 c +-124.4697 -49.2217 -124.4688 -49.1875 -124.4688 -49.1982 c +-124.4688 -49.1543 -124.4775 -49.127 -124.4912 -49.1094 c +-124.5049 -49.0947 -124.5303 -49.0898 -124.5703 -49.0898 c +-124.6299 -49.0898 -124.668 -49.1309 -124.6875 -49.2148 c +-124.6924 -49.2432 -124.6992 -49.2607 -124.7012 -49.2773 c +-124.7178 -49.3428 -124.7607 -49.3994 -124.8242 -49.4434 c +-124.8906 -49.4844 -124.9697 -49.5068 -125.0557 -49.5068 c +-125.2178 -49.5068 -125.3477 -49.4482 -125.4443 -49.3301 c +-125.5439 -49.2119 -125.5918 -49.0557 -125.5918 -48.8564 c +-125.5918 -48.6582 -125.543 -48.498 -125.4424 -48.3799 c +-125.3447 -48.2627 -125.2148 -48.2031 -125.0518 -48.2031 c +-124.998 -48.2031 -124.9453 -48.2119 -124.8896 -48.2266 c +-124.834 -48.2402 -124.7822 -48.2637 -124.7275 -48.2949 c +-124.7041 -48.3066 -124.6699 -48.3291 -124.6289 -48.3584 c +-124.585 -48.3896 -124.5527 -48.4043 -124.5361 -48.4043 c +-124.5068 -48.4043 -124.4824 -48.3945 -124.4648 -48.377 c +-124.4443 -48.3574 -124.4346 -48.334 -124.4346 -48.3076 c +-124.4346 -48.2813 -124.4453 -48.2529 -124.4668 -48.2285 c +-124.4893 -48.2041 -124.5273 -48.1719 -124.5859 -48.1357 c +-124.6641 -48.0859 -124.7393 -48.0498 -124.8184 -48.0264 c +-124.8936 -48.0029 -124.9756 -47.9912 -125.0635 -47.9912 c +-125.2881 -47.9912 -125.4736 -48.0713 -125.6191 -48.2285 c +-125.7676 -48.3887 -125.8398 -48.5908 -125.8398 -48.8389 c +-125.8398 -49.084 -125.7666 -49.2891 -125.6172 -49.4492 c +-125.4678 -49.6123 -125.2803 -49.6934 -125.0557 -49.6934 c +-124.9961 -49.6934 -124.9355 -49.6875 -124.8711 -49.6709 c +-124.8096 -49.6572 -124.7461 -49.6348 -124.6768 -49.6074 c +f +*U +*u +-123.4248 -48.7041 m +-123.1309 -49.5596 l +-123.1191 -49.5898 -123.0996 -49.6133 -123.0771 -49.6299 c +-123.0547 -49.6445 -123.0244 -49.6523 -122.9814 -49.6523 c +-122.7578 -49.6523 l +-122.7266 -49.6523 -122.707 -49.6436 -122.6904 -49.6289 c +-122.6758 -49.6113 -122.668 -49.5879 -122.668 -49.5596 c +-122.668 -49.5244 -122.6777 -49.501 -122.6973 -49.4883 c +-122.7139 -49.4727 -122.749 -49.4678 -122.8008 -49.4678 c +-122.8203 -49.4678 l +-122.7832 -48.2236 l +-122.7539 -48.2236 l +-122.6914 -48.2236 -122.6533 -48.2158 -122.6318 -48.2031 c +-122.6143 -48.1904 -122.6035 -48.166 -122.6035 -48.1299 c +-122.6035 -48.0967 -122.6094 -48.0723 -122.6279 -48.0537 c +-122.6436 -48.0381 -122.667 -48.0293 -122.6992 -48.0293 c +-123.084 -48.0293 l +-123.1348 -48.0293 -123.1709 -48.0381 -123.1914 -48.0518 c +-123.2109 -48.0654 -123.2188 -48.0938 -123.2188 -48.1299 c +-123.2188 -48.165 -123.207 -48.1895 -123.1836 -48.2021 c +-123.1641 -48.2158 -123.1191 -48.2236 -123.0537 -48.2236 c +-122.9951 -48.2236 l +-123.0254 -49.3984 l +-123.2949 -48.6123 l +-123.3086 -48.5752 -123.3242 -48.5469 -123.3447 -48.5322 c +-123.3662 -48.5186 -123.3945 -48.5107 -123.4365 -48.5107 c +-123.4736 -48.5107 -123.5039 -48.5186 -123.5225 -48.5332 c +-123.543 -48.5469 -123.5586 -48.5762 -123.5742 -48.6123 c +-123.8477 -49.3984 l +-123.8721 -48.2236 l +-123.7793 -48.2236 l +-123.7275 -48.2236 -123.6875 -48.2148 -123.668 -48.2012 c +-123.6455 -48.1875 -123.6348 -48.1602 -123.6348 -48.1299 c +-123.6348 -48.0938 -123.6445 -48.0654 -123.6621 -48.0518 c +-123.6826 -48.0381 -123.7188 -48.0293 -123.7734 -48.0293 c +-124.1543 -48.0293 l +-124.1865 -48.0293 -124.2109 -48.0381 -124.2256 -48.0537 c +-124.2432 -48.0713 -124.249 -48.0957 -124.249 -48.1299 c +-124.249 -48.166 -124.2422 -48.1904 -124.2207 -48.2031 c +-124.2002 -48.2158 -124.1611 -48.2236 -124.1025 -48.2236 c +-124.0713 -48.2236 l +-124.0322 -49.4678 l +-124.0547 -49.4678 l +-124.1045 -49.4678 -124.1387 -49.4727 -124.1563 -49.4883 c +-124.1768 -49.501 -124.1865 -49.5244 -124.1865 -49.5596 c +-124.1865 -49.5879 -124.1777 -49.6113 -124.1631 -49.6289 c +-124.1484 -49.6436 -124.126 -49.6523 -124.0957 -49.6523 c +-123.8721 -49.6523 l +-123.8281 -49.6523 -123.7988 -49.6445 -123.7764 -49.6299 c +-123.7529 -49.6133 -123.7344 -49.5898 -123.7227 -49.5596 c +-123.4248 -48.7041 L +f +*U +0.001648 0.996399 0.976776 0.001984 0.890196 0.023529 0.07451 Xa +-130 -43 m +-118 -43 l +-118 -31 l +-130 -31 l +-130 -43 L +f +0 R +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ +0.5 w -130 -43 m +-118 -43 l +-118 -31 l +-130 -31 l +-130 -43 L +s +*u +0 O +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz +1 w -125.1035 -36.7041 m +-124.8096 -37.5596 l +-124.7979 -37.5898 -124.7813 -37.6133 -124.7588 -37.6299 c +-124.7363 -37.6445 -124.7031 -37.6523 -124.6602 -37.6523 c +-124.4365 -37.6523 l +-124.4082 -37.6523 -124.3857 -37.6436 -124.3721 -37.6289 c +-124.3545 -37.6113 -124.3496 -37.5879 -124.3496 -37.5596 c +-124.3496 -37.5244 -124.3594 -37.501 -124.376 -37.4883 c +-124.3955 -37.4727 -124.4307 -37.4678 -124.4795 -37.4678 c +-124.502 -37.4678 l +-124.4648 -36.2236 l +-124.4326 -36.2236 l +-124.373 -36.2236 -124.332 -36.2158 -124.3135 -36.2031 c +-124.293 -36.1904 -124.2822 -36.166 -124.2822 -36.1299 c +-124.2822 -36.0967 -124.291 -36.0723 -124.3066 -36.0537 c +-124.3252 -36.0381 -124.3486 -36.0293 -124.3779 -36.0293 c +-124.7627 -36.0293 l +-124.8164 -36.0293 -124.8525 -36.0381 -124.8701 -36.0518 c +-124.8896 -36.0654 -124.9004 -36.0938 -124.9004 -36.1299 c +-124.9004 -36.165 -124.8887 -36.1895 -124.8652 -36.2021 c +-124.8428 -36.2158 -124.7979 -36.2236 -124.7354 -36.2236 c +-124.6768 -36.2236 l +-124.7041 -37.3984 l +-124.9736 -36.6123 l +-124.9873 -36.5752 -125.0059 -36.5469 -125.0234 -36.5322 c +-125.0449 -36.5186 -125.0762 -36.5107 -125.1152 -36.5107 c +-125.1523 -36.5107 -125.1826 -36.5186 -125.2041 -36.5332 c +-125.2217 -36.5469 -125.2402 -36.5762 -125.2529 -36.6123 c +-125.5264 -37.3984 l +-125.5508 -36.2236 l +-125.4609 -36.2236 l +-125.4063 -36.2236 -125.3691 -36.2148 -125.3467 -36.2012 c +-125.3242 -36.1875 -125.3135 -36.1602 -125.3135 -36.1299 c +-125.3135 -36.0938 -125.3232 -36.0654 -125.3438 -36.0518 c +-125.3613 -36.0381 -125.3975 -36.0293 -125.4521 -36.0293 c +-125.8359 -36.0293 l +-125.8652 -36.0293 -125.8896 -36.0381 -125.9072 -36.0537 c +-125.9219 -36.0713 -125.9307 -36.0957 -125.9307 -36.1299 c +-125.9307 -36.166 -125.9209 -36.1904 -125.8994 -36.2031 c +-125.8789 -36.2158 -125.8398 -36.2236 -125.7813 -36.2236 c +-125.75 -36.2236 l +-125.7109 -37.4678 l +-125.7334 -37.4678 l +-125.7832 -37.4678 -125.8174 -37.4727 -125.8379 -37.4883 c +-125.8555 -37.501 -125.8652 -37.5244 -125.8652 -37.5596 c +-125.8652 -37.5879 -125.8594 -37.6113 -125.8418 -37.6289 c +-125.8271 -37.6436 -125.8047 -37.6523 -125.7773 -37.6523 c +-125.5508 -37.6523 l +-125.5098 -37.6523 -125.4775 -37.6445 -125.4551 -37.6299 c +-125.4316 -37.6133 -125.416 -37.5898 -125.4043 -37.5596 c +-125.1035 -36.7041 L +f +*U +*u +-123.125 -36.2236 m +-123.0547 -36.2236 -123.0127 -36.2158 -122.9922 -36.2031 c +-122.9717 -36.1904 -122.9609 -36.166 -122.9609 -36.1299 c +-122.9609 -36.0898 -122.9717 -36.0645 -122.9922 -36.0508 c +-123.0127 -36.0371 -123.0508 -36.0293 -123.1104 -36.0293 c +-123.7578 -36.0293 l +-123.8203 -36.0293 -123.8584 -36.0371 -123.8789 -36.0508 c +-123.8955 -36.0645 -123.9063 -36.0898 -123.9063 -36.1299 c +-123.9063 -36.166 -123.8955 -36.1904 -123.873 -36.2031 c +-123.8516 -36.2158 -123.8096 -36.2236 -123.7412 -36.2236 c +-123.543 -36.2236 l +-123.543 -36.6758 l +-123.998 -37.4551 l +-124.0215 -37.4551 l +-124.0742 -37.4551 -124.1143 -37.4609 -124.1318 -37.4775 c +-124.1533 -37.4912 -124.1631 -37.5166 -124.1631 -37.5527 c +-124.1631 -37.5869 -124.1543 -37.6113 -124.1387 -37.6289 c +-124.1201 -37.6436 -124.0947 -37.6523 -124.0586 -37.6523 c +-123.998 -37.6523 l +-123.6846 -37.6523 l +-123.6289 -37.6523 -123.5938 -37.6445 -123.5762 -37.6299 c +-123.5566 -37.6133 -123.5469 -37.5889 -123.5469 -37.5527 c +-123.5469 -37.5166 -123.5576 -37.4912 -123.5801 -37.4775 c +-123.6035 -37.4609 -123.6455 -37.4551 -123.7041 -37.4551 c +-123.75 -37.4551 l +-123.417 -36.8604 l +-123.0742 -37.4551 l +-123.1309 -37.4551 l +-123.1797 -37.4551 -123.2148 -37.4609 -123.2344 -37.4775 c +-123.252 -37.4912 -123.2617 -37.5166 -123.2617 -37.5527 c +-123.2617 -37.5898 -123.2529 -37.6182 -123.2373 -37.6318 c +-123.2227 -37.6445 -123.1797 -37.6523 -123.1123 -37.6523 c +-123.0771 -37.6523 l +-122.8623 -37.6523 l +-122.792 -37.6523 -122.7471 -37.6445 -122.7266 -37.6309 c +-122.709 -37.6172 -122.6992 -37.5889 -122.6992 -37.5527 c +-122.6992 -37.5166 -122.709 -37.4912 -122.7266 -37.4775 c +-122.7471 -37.4609 -122.7842 -37.4551 -122.8398 -37.4551 c +-122.8623 -37.4551 l +-123.3281 -36.6582 l +-123.3281 -36.2236 l +-123.125 -36.2236 L +f +*U +0.838651 0.115511 0.962341 0.010986 0 0.588235 0.25098 Xa +-130 -31 m +-118 -31 l +-118 -19 l +-130 -19 l +-130 -31 L +f +0 R +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ +0.5 w -130 -31 m +-118 -31 l +-118 -19 l +-130 -19 l +-130 -31 L +s +*u +0 O +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz +1 w -124.6768 -25.6074 m +-124.667 -25.6318 -124.6543 -25.6475 -124.6357 -25.6582 c +-124.6211 -25.668 -124.5967 -25.6719 -124.5654 -25.6719 c +-124.5313 -25.6719 -124.5068 -25.666 -124.4941 -25.6475 c +-124.4805 -25.6328 -124.4727 -25.5986 -124.4727 -25.5488 c +-124.4727 -25.458 -124.4717 -25.375 -124.4707 -25.2998 c +-124.4697 -25.2217 -124.4688 -25.1875 -124.4688 -25.1982 c +-124.4688 -25.1543 -124.4775 -25.127 -124.4912 -25.1123 c +-124.5049 -25.0947 -124.5303 -25.0898 -124.5703 -25.0898 c +-124.6299 -25.0898 -124.668 -25.1309 -124.6875 -25.2158 c +-124.6924 -25.2432 -124.6992 -25.2607 -124.7012 -25.2773 c +-124.7178 -25.3428 -124.7607 -25.3994 -124.8242 -25.4434 c +-124.8906 -25.4844 -124.9697 -25.5068 -125.0557 -25.5068 c +-125.2178 -25.5068 -125.3477 -25.4482 -125.4443 -25.3301 c +-125.5439 -25.2119 -125.5918 -25.0557 -125.5918 -24.8564 c +-125.5918 -24.6582 -125.543 -24.498 -125.4424 -24.3799 c +-125.3447 -24.2627 -125.2148 -24.2031 -125.0518 -24.2031 c +-124.998 -24.2031 -124.9453 -24.2119 -124.8896 -24.2266 c +-124.834 -24.2402 -124.7822 -24.2637 -124.7275 -24.2949 c +-124.7041 -24.3066 -124.6699 -24.3291 -124.6289 -24.3584 c +-124.585 -24.3896 -124.5527 -24.4043 -124.5361 -24.4043 c +-124.5068 -24.4043 -124.4824 -24.3955 -124.4648 -24.377 c +-124.4443 -24.3574 -124.4346 -24.334 -124.4346 -24.3076 c +-124.4346 -24.2813 -124.4453 -24.2529 -124.4668 -24.2285 c +-124.4893 -24.2041 -124.5273 -24.1748 -124.5859 -24.1357 c +-124.6641 -24.0859 -124.7393 -24.0498 -124.8184 -24.0264 c +-124.8936 -24.0029 -124.9756 -23.9912 -125.0635 -23.9912 c +-125.2881 -23.9912 -125.4736 -24.0713 -125.6191 -24.2285 c +-125.7676 -24.3887 -125.8398 -24.5908 -125.8398 -24.8389 c +-125.8398 -25.084 -125.7666 -25.2891 -125.6172 -25.4492 c +-125.4678 -25.6123 -125.2803 -25.6934 -125.0557 -25.6934 c +-124.9961 -25.6934 -124.9355 -25.6875 -124.8711 -25.6709 c +-124.8096 -25.6572 -124.7461 -25.6348 -124.6768 -25.6074 c +f +*U +*u +-123.125 -24.2236 m +-123.0547 -24.2236 -123.0127 -24.2158 -122.9922 -24.2031 c +-122.9717 -24.1904 -122.9609 -24.166 -122.9609 -24.1299 c +-122.9609 -24.0908 -122.9717 -24.0645 -122.9922 -24.0508 c +-123.0127 -24.0371 -123.0508 -24.0293 -123.1104 -24.0293 c +-123.7578 -24.0293 l +-123.8203 -24.0293 -123.8584 -24.0371 -123.8789 -24.0508 c +-123.8955 -24.0645 -123.9063 -24.0908 -123.9063 -24.1299 c +-123.9063 -24.166 -123.8955 -24.1904 -123.873 -24.2031 c +-123.8516 -24.2158 -123.8096 -24.2236 -123.7412 -24.2236 c +-123.543 -24.2236 l +-123.543 -24.6768 l +-123.998 -25.4551 l +-124.0215 -25.4551 l +-124.0742 -25.4551 -124.1143 -25.4609 -124.1318 -25.4775 c +-124.1533 -25.4912 -124.1631 -25.5166 -124.1631 -25.5527 c +-124.1631 -25.5869 -124.1543 -25.6113 -124.1387 -25.6289 c +-124.1201 -25.6436 -124.0947 -25.6523 -124.0586 -25.6523 c +-123.998 -25.6523 l +-123.6846 -25.6523 l +-123.6289 -25.6523 -123.5938 -25.6445 -123.5762 -25.6299 c +-123.5566 -25.6133 -123.5469 -25.5889 -123.5469 -25.5527 c +-123.5469 -25.5166 -123.5576 -25.4912 -123.5801 -25.4775 c +-123.6035 -25.4609 -123.6455 -25.4551 -123.7041 -25.4551 c +-123.75 -25.4551 l +-123.417 -24.8604 l +-123.0742 -25.4551 l +-123.1309 -25.4551 l +-123.1797 -25.4551 -123.2148 -25.4609 -123.2344 -25.4775 c +-123.252 -25.4912 -123.2617 -25.5166 -123.2617 -25.5527 c +-123.2617 -25.5898 -123.2529 -25.6182 -123.2373 -25.6318 c +-123.2227 -25.6445 -123.1797 -25.6523 -123.1123 -25.6523 c +-123.0771 -25.6523 l +-122.8623 -25.6523 l +-122.792 -25.6523 -122.7471 -25.6445 -122.7266 -25.6309 c +-122.709 -25.6172 -122.6992 -25.5889 -122.6992 -25.5527 c +-122.6992 -25.5166 -122.709 -25.4912 -122.7266 -25.4775 c +-122.7471 -25.4609 -122.7842 -25.4551 -122.8398 -25.4551 c +-122.8623 -25.4551 l +-123.3281 -24.6582 l +-123.3281 -24.2236 l +-123.125 -24.2236 L +f +*U +0.682979 0.586877 0.579919 0.66952 0.196078 0.196078 0.188235 Xa +-130 -19 m +-118 -19 l +-118 -7 l +-130 -7 l +-130 -19 L +f +0 R +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ +0.5 w -130 -19 m +-118 -19 l +-118 -7 l +-130 -7 l +-130 -19 L +s +*u +0 O +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz +1 w -125.6494 -13.6074 m +-125.6396 -13.6318 -125.627 -13.6475 -125.6084 -13.6582 c +-125.5938 -13.668 -125.5693 -13.6748 -125.5381 -13.6748 c +-125.5039 -13.6748 -125.4795 -13.666 -125.4668 -13.6475 c +-125.4531 -13.6328 -125.4453 -13.5986 -125.4453 -13.5488 c +-125.4453 -13.458 -125.4443 -13.375 -125.4434 -13.2998 c +-125.4424 -13.2217 -125.4414 -13.1875 -125.4414 -13.1982 c +-125.4414 -13.1543 -125.4502 -13.127 -125.4639 -13.1123 c +-125.4775 -13.0947 -125.5029 -13.0898 -125.543 -13.0898 c +-125.6025 -13.0898 -125.6406 -13.1309 -125.6602 -13.2158 c +-125.665 -13.2432 -125.6719 -13.2607 -125.6738 -13.2773 c +-125.6904 -13.3428 -125.7334 -13.3994 -125.7969 -13.4434 c +-125.8633 -13.4873 -125.9424 -13.5068 -126.0283 -13.5068 c +-126.1904 -13.5068 -126.3203 -13.4482 -126.417 -13.3301 c +-126.5166 -13.2119 -126.5645 -13.0557 -126.5645 -12.8564 c +-126.5645 -12.6582 -126.5156 -12.498 -126.415 -12.3799 c +-126.3174 -12.2627 -126.1875 -12.2031 -126.0244 -12.2031 c +-125.9707 -12.2031 -125.918 -12.2119 -125.8623 -12.2266 c +-125.8066 -12.2402 -125.7549 -12.2637 -125.7002 -12.2949 c +-125.6768 -12.3066 -125.6426 -12.3291 -125.6016 -12.3584 c +-125.5576 -12.3896 -125.5254 -12.4043 -125.5088 -12.4043 c +-125.4795 -12.4043 -125.4551 -12.3955 -125.4375 -12.377 c +-125.417 -12.3574 -125.4072 -12.334 -125.4072 -12.3076 c +-125.4072 -12.2813 -125.418 -12.2529 -125.4395 -12.2285 c +-125.4619 -12.2041 -125.5 -12.1748 -125.5586 -12.1357 c +-125.6367 -12.0859 -125.7119 -12.0498 -125.791 -12.0264 c +-125.8662 -12.0029 -125.9482 -11.9912 -126.0361 -11.9912 c +-126.2607 -11.9912 -126.4463 -12.0713 -126.5918 -12.2285 c +-126.7402 -12.3887 -126.8125 -12.5908 -126.8125 -12.8389 c +-126.8125 -13.084 -126.7393 -13.2891 -126.5898 -13.4502 c +-126.4404 -13.6123 -126.2529 -13.6934 -126.0283 -13.6934 c +-125.9688 -13.6934 -125.9082 -13.6875 -125.8438 -13.6709 c +-125.7822 -13.6572 -125.7188 -13.6348 -125.6494 -13.6074 c +f +*U +*u +-124.3975 -12.7041 m +-124.1035 -13.5596 l +-124.0918 -13.5908 -124.0723 -13.6143 -124.0498 -13.6299 c +-124.0273 -13.6445 -123.9971 -13.6523 -123.9541 -13.6523 c +-123.7305 -13.6523 l +-123.6992 -13.6523 -123.6797 -13.6436 -123.6631 -13.6289 c +-123.6484 -13.6113 -123.6406 -13.5879 -123.6406 -13.5596 c +-123.6406 -13.5244 -123.6504 -13.501 -123.6699 -13.4883 c +-123.6865 -13.4736 -123.7217 -13.4678 -123.7734 -13.4678 c +-123.793 -13.4678 l +-123.7559 -12.2236 l +-123.7266 -12.2236 l +-123.6641 -12.2236 -123.626 -12.2158 -123.6045 -12.2031 c +-123.5869 -12.1904 -123.5762 -12.166 -123.5762 -12.1299 c +-123.5762 -12.0967 -123.582 -12.0723 -123.6006 -12.0537 c +-123.6162 -12.0381 -123.6396 -12.0293 -123.6719 -12.0293 c +-124.0566 -12.0293 l +-124.1074 -12.0293 -124.1436 -12.0381 -124.1641 -12.0518 c +-124.1836 -12.0654 -124.1914 -12.0938 -124.1914 -12.1299 c +-124.1914 -12.165 -124.1797 -12.1895 -124.1563 -12.2021 c +-124.1367 -12.2158 -124.0918 -12.2236 -124.0264 -12.2236 c +-123.9678 -12.2236 l +-123.998 -13.3984 l +-124.2676 -12.6123 l +-124.2813 -12.5752 -124.2969 -12.5498 -124.3174 -12.5322 c +-124.3389 -12.5186 -124.3672 -12.5107 -124.4092 -12.5107 c +-124.4463 -12.5107 -124.4766 -12.5186 -124.4951 -12.5332 c +-124.5156 -12.5498 -124.5313 -12.5762 -124.5469 -12.6123 c +-124.8203 -13.3984 l +-124.8447 -12.2236 l +-124.752 -12.2236 l +-124.7002 -12.2236 -124.6602 -12.2148 -124.6406 -12.2012 c +-124.6182 -12.1875 -124.6074 -12.1611 -124.6074 -12.1299 c +-124.6074 -12.0938 -124.6172 -12.0654 -124.6348 -12.0518 c +-124.6553 -12.0381 -124.6914 -12.0293 -124.7461 -12.0293 c +-125.127 -12.0293 l +-125.1592 -12.0293 -125.1836 -12.0381 -125.1982 -12.0537 c +-125.2158 -12.0713 -125.2217 -12.0957 -125.2217 -12.1299 c +-125.2217 -12.166 -125.2148 -12.1904 -125.1934 -12.2031 c +-125.1729 -12.2158 -125.1338 -12.2236 -125.0752 -12.2236 c +-125.0439 -12.2236 l +-125.0049 -13.4678 l +-125.0273 -13.4678 l +-125.0771 -13.4678 -125.1113 -13.4736 -125.1289 -13.4883 c +-125.1494 -13.501 -125.1592 -13.5244 -125.1592 -13.5596 c +-125.1592 -13.5879 -125.1504 -13.6113 -125.1357 -13.6289 c +-125.1211 -13.6436 -125.0986 -13.6523 -125.0684 -13.6523 c +-124.8447 -13.6523 l +-124.8008 -13.6523 -124.7715 -13.6445 -124.749 -13.6299 c +-124.7256 -13.6143 -124.707 -13.5908 -124.6953 -13.5596 c +-124.3975 -12.7041 L +f +*U +*u +-122.418 -12.2236 m +-122.3477 -12.2236 -122.3027 -12.2158 -122.2852 -12.2031 c +-122.2646 -12.1904 -122.2539 -12.166 -122.2539 -12.1299 c +-122.2539 -12.0908 -122.2646 -12.0645 -122.2852 -12.0508 c +-122.3027 -12.0371 -122.3438 -12.0293 -122.4033 -12.0293 c +-123.0508 -12.0293 l +-123.1104 -12.0293 -123.1484 -12.0371 -123.1689 -12.0508 c +-123.1885 -12.0645 -123.1992 -12.0908 -123.1992 -12.1299 c +-123.1992 -12.166 -123.1885 -12.1904 -123.166 -12.2031 c +-123.1445 -12.2158 -123.0996 -12.2236 -123.0313 -12.2236 c +-122.8359 -12.2236 l +-122.8359 -12.6768 l +-123.2881 -13.4551 l +-123.3115 -13.4551 l +-123.3672 -13.4551 -123.4043 -13.4639 -123.4248 -13.4775 c +-123.4463 -13.4912 -123.4531 -13.5166 -123.4531 -13.5527 c +-123.4531 -13.5869 -123.4473 -13.6113 -123.4287 -13.6289 c +-123.4131 -13.6436 -123.3877 -13.6523 -123.3516 -13.6523 c +-123.2881 -13.6523 l +-122.9775 -13.6523 l +-122.9219 -13.6523 -122.8867 -13.6445 -122.8662 -13.6299 c +-122.8496 -13.6143 -122.8398 -13.5889 -122.8398 -13.5527 c +-122.8398 -13.5166 -122.8506 -13.4912 -122.873 -13.4775 c +-122.8965 -13.4639 -122.9355 -13.4551 -122.9941 -13.4551 c +-123.04 -13.4551 l +-122.71 -12.8604 l +-122.3672 -13.4551 l +-122.4209 -13.4551 l +-122.4727 -13.4551 -122.5078 -13.4639 -122.5244 -13.4775 c +-122.5449 -13.4912 -122.5547 -13.5166 -122.5547 -13.5527 c +-122.5547 -13.5908 -122.5459 -13.6182 -122.5273 -13.6318 c +-122.5127 -13.6445 -122.4727 -13.6523 -122.4053 -13.6523 c +-122.3701 -13.6523 l +-122.1523 -13.6523 l +-122.082 -13.6523 -122.04 -13.6445 -122.0195 -13.6309 c +-121.999 -13.6172 -121.9922 -13.5889 -121.9922 -13.5527 c +-121.9922 -13.5166 -121.999 -13.4912 -122.0195 -13.4775 c +-122.04 -13.4639 -122.0771 -13.4551 -122.1328 -13.4551 c +-122.1523 -13.4551 l +-122.6182 -12.6582 l +-122.6182 -12.2236 l +-122.418 -12.2236 L +f +*U +0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 Xa +-130 -7 m +-118 -7 l +-118 4.99902 l +- +endstream endobj 102 0 obj <>stream +130 4.99902 l +-130 -7 L +f +0 R +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ +0.5 w -130 -7 m +-118 -7 l +-118 4.99902 l +-130 4.99902 l +-130 -7 L +s +*u +0 O +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz +1 w -124.4131 -0.223633 m +-124.3203 -0.223633 l +-124.2686 -0.223633 -124.2314 -0.214844 -124.209 -0.201172 c +-124.1865 -0.1875 -124.1758 -0.161133 -124.1758 -0.129883 c +-124.1758 -0.09375 -124.1855 -0.06543 -124.2031 -0.051758 c +-124.2236 -0.038086 -124.2598 -0.029297 -124.3145 -0.029297 c +-124.7822 -0.029297 l +-124.8115 -0.029297 -124.835 -0.038086 -124.8525 -0.053711 c +-124.8672 -0.072266 -124.876 -0.09668 -124.876 -0.129883 c +-124.876 -0.161133 -124.8672 -0.1875 -124.8477 -0.201172 c +-124.8311 -0.214844 -124.7998 -0.223633 -124.7588 -0.223633 c +-124.7148 -0.223633 l +-124.625 -0.223633 l +-124.625 -1.45508 l +-124.7148 -1.45508 l +-124.7842 -1.45508 -124.8291 -1.46387 -124.8457 -1.47656 c +-124.8662 -1.49023 -124.876 -1.51563 -124.876 -1.55273 c +-124.876 -1.58496 -124.8672 -1.60938 -124.8525 -1.62793 c +-124.835 -1.64355 -124.8115 -1.65234 -124.7822 -1.65234 c +-124.3145 -1.65234 l +-124.2598 -1.65234 -124.2236 -1.64453 -124.2031 -1.62988 c +-124.1855 -1.61426 -124.1758 -1.58887 -124.1758 -1.55273 c +-124.1758 -1.5166 -124.1875 -1.49121 -124.2119 -1.47754 c +-124.2363 -1.46387 -124.2832 -1.45508 -124.3516 -1.45508 c +-124.4131 -1.45508 l +-124.4131 -0.897461 l +-123.8447 -1.45508 l +-123.8594 -1.45508 l +-123.8906 -1.45508 l +-123.9336 -1.45508 -123.9668 -1.46387 -123.9873 -1.47852 c +-124.0078 -1.49316 -124.0156 -1.51758 -124.0156 -1.55273 c +-124.0156 -1.58789 -124.0098 -1.6123 -123.9922 -1.62988 c +-123.9775 -1.64453 -123.9531 -1.65234 -123.918 -1.65234 c +-123.5166 -1.65234 l +-123.4844 -1.65234 -123.4609 -1.64355 -123.4453 -1.62793 c +-123.4268 -1.60938 -123.418 -1.58496 -123.418 -1.55273 c +-123.418 -1.5166 -123.4287 -1.49219 -123.4512 -1.47754 c +-123.4727 -1.46387 -123.5098 -1.45508 -123.5654 -1.45508 c +-123.5859 -1.45508 l +-124.1152 -0.942383 l +-124.0352 -0.927734 -123.957 -0.87793 -123.8838 -0.790039 c +-123.8105 -0.705078 -123.6953 -0.516602 -123.541 -0.223633 c +-123.5166 -0.223633 l +-123.459 -0.223633 -123.4219 -0.21582 -123.4014 -0.202148 c +-123.3818 -0.189453 -123.3711 -0.165039 -123.3711 -0.129883 c +-123.3711 -0.09668 -123.3809 -0.072266 -123.3984 -0.053711 c +-123.4131 -0.038086 -123.4365 -0.029297 -123.4688 -0.029297 c +-123.5996 -0.029297 l +-123.627 -0.029297 -123.6484 -0.03418 -123.6621 -0.039063 c +-123.6748 -0.046875 -123.6875 -0.060547 -123.7041 -0.083984 c +-123.71 -0.09668 -123.7627 -0.189453 -123.8555 -0.362305 c +-123.9072 -0.460938 l +-123.9648 -0.567383 -124.0225 -0.647461 -124.0801 -0.700195 c +-124.1377 -0.753906 -124.1982 -0.786133 -124.2617 -0.793945 c +-124.4131 -0.651367 l +-124.4131 -0.223633 L +f +*U +0 R +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ +0.3 w 4 M -100 -154 m +-100 -118 L +S +-154 -100 m +-118 -100 L +S +-154 99.9995 m +-118 99.9995 L +S +-100 153.9995 m +-100 117.9995 L +S +100 -154 m +100 -118 L +S +154 -100 m +118 -100 L +S +154 99.9995 m +118 99.9995 L +S +100 153.9995 m +100 117.9995 L +S +0 0 0 0 0 0 0 ([Passermarken]) 1 1 XZ +1.25 w 10 M -121 -127 m +-121 -123.6855 -123.6855 -121 -127 -121 c +-130.3145 -121 -133 -123.6855 -133 -127 c +-133 -130.3145 -130.3145 -133 -127 -133 c +-123.6855 -133 -121 -130.3145 -121 -127 C +s +-136 -127 m +-118 -127 L +S +-127 -136 m +-127 -118 L +S +-124 -127 m +-124 -125.3428 -125.3428 -124 -127 -124 c +-128.6572 -124 -130 -125.3428 -130 -127 c +-130 -128.6572 -128.6572 -130 -127 -130 c +-125.3428 -130 -124 -128.6572 -124 -127 C +s +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ +0.25 w -121 -127 m +-121 -123.6855 -123.6855 -121 -127 -121 c +-130.3145 -121 -133 -123.6855 -133 -127 c +-133 -130.3145 -130.3145 -133 -127 -133 c +-123.6855 -133 -121 -130.3145 -121 -127 C +s +-136 -127 m +-118 -127 L +S +-127 -136 m +-127 -118 L +S +0 O +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz +1 w -124 -127 m +-124 -125.3428 -125.3428 -124 -127 -124 c +-128.6572 -124 -130 -125.3428 -130 -127 c +-130 -128.6572 -128.6572 -130 -127 -130 c +-125.3428 -130 -124 -128.6572 -124 -127 C +F +0 R +0 0 0 0 0 0 0 ([Passermarken]) 1 1 XZ +0.25 w -130 -127 m +-124 -127 L +S +-127 -130 m +-127 -124 L +S +1.25 w 133 -127 m +133 -123.6855 130.3145 -121 127 -121 c +123.6855 -121 121 -123.6855 121 -127 c +121 -130.3145 123.6855 -133 127 -133 c +130.3145 -133 133 -130.3145 133 -127 C +s +118 -127 m +136 -127 L +S +127 -136 m +127 -118 L +S +130 -127 m +130 -125.3428 128.6572 -124 127 -124 c +125.3428 -124 124 -125.3428 124 -127 c +124 -128.6572 125.3428 -130 127 -130 c +128.6572 -130 130 -128.6572 130 -127 C +s +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ +0.25 w 133 -127 m +133 -123.6855 130.3145 -121 127 -121 c +123.6855 -121 121 -123.6855 121 -127 c +121 -130.3145 123.6855 -133 127 -133 c +130.3145 -133 133 -130.3145 133 -127 C +s +118 -127 m +136 -127 L +S +127 -136 m +127 -118 L +S +0 O +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz +1 w 130 -127 m +130 -125.3428 128.6572 -124 127 -124 c +125.3428 -124 124 -125.3428 124 -127 c +124 -128.6572 125.3428 -130 127 -130 c +128.6572 -130 130 -128.6572 130 -127 C +F +0 R +0 0 0 0 0 0 0 ([Passermarken]) 1 1 XZ +0.25 w 124 -127 m +130 -127 L +S +127 -130 m +127 -124 L +S +1.25 w -121 126.9995 m +-121 130.314 -123.6855 132.9995 -127 132.9995 c +-130.3145 132.9995 -133 130.314 -133 126.9995 c +-133 123.6851 -130.3145 120.9995 -127 120.9995 c +-123.6855 120.9995 -121 123.6851 -121 126.9995 C +s +-136 126.9995 m +-118 126.9995 L +S +-127 117.9995 m +-127 135.9995 L +S +-124 126.9995 m +-124 128.6577 -125.3428 129.9995 -127 129.9995 c +-128.6572 129.9995 -130 128.6577 -130 126.9995 c +-130 125.3433 -128.6572 123.9995 -127 123.9995 c +-125.3428 123.9995 -124 125.3433 -124 126.9995 C +s +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ +0.25 w -121 126.9995 m +-121 130.314 -123.6855 132.9995 -127 132.9995 c +-130.3145 132.9995 -133 130.314 -133 126.9995 c +-133 123.6851 -130.3145 120.9995 -127 120.9995 c +-123.6855 120.9995 -121 123.6851 -121 126.9995 C +s +-136 126.9995 m +-118 126.9995 L +S +-127 117.9995 m +-127 135.9995 L +S +0 O +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz +1 w -124 126.9995 m +-124 128.6577 -125.3428 129.9995 -127 129.9995 c +-128.6572 129.9995 -130 128.6577 -130 126.9995 c +-130 125.3433 -128.6572 123.9995 -127 123.9995 c +-125.3428 123.9995 -124 125.3433 -124 126.9995 C +F +0 R +0 0 0 0 0 0 0 ([Passermarken]) 1 1 XZ +0.25 w -130 126.9995 m +-124 126.9995 L +S +-127 123.9995 m +-127 129.9995 L +S +1.25 w 133 126.9995 m +133 130.314 130.3145 132.9995 127 132.9995 c +123.6855 132.9995 121 130.314 121 126.9995 c +121 123.6851 123.6855 120.9995 127 120.9995 c +130.3145 120.9995 133 123.6851 133 126.9995 C +s +118 126.9995 m +136 126.9995 L +S +127 117.9995 m +127 135.9995 L +S +130 126.9995 m +130 128.6577 128.6572 129.9995 127 129.9995 c +125.3428 129.9995 124 128.6577 124 126.9995 c +124 125.3433 125.3428 123.9995 127 123.9995 c +128.6572 123.9995 130 125.3433 130 126.9995 C +s +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 XZ +0.25 w 133 126.9995 m +133 130.314 130.3145 132.9995 127 132.9995 c +123.6855 132.9995 121 130.314 121 126.9995 c +121 123.6851 123.6855 120.9995 127 120.9995 c +130.3145 120.9995 133 123.6851 133 126.9995 C +s +118 126.9995 m +136 126.9995 L +S +127 117.9995 m +127 135.9995 L +S +0 O +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz +1 w 130 126.9995 m +130 128.6577 128.6572 129.9995 127 129.9995 c +125.3428 129.9995 124 128.6577 124 126.9995 c +124 125.3433 125.3428 123.9995 127 123.9995 c +128.6572 123.9995 130 125.3433 130 126.9995 C +F +0 R +0 0 0 0 0 0 0 ([Passermarken]) 1 1 XZ +0.25 w 124 126.9995 m +130 126.9995 L +S +127 123.9995 m +127 129.9995 L +S +U +%_/ArtDictionary : +%_197.8555 231 110.5449 77 0 0 /RealMatrix +%_ (AI13Pattern9SliceScalingGridKey) , +%_5 /Int (AI13PatternRegistrationType) , +%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , +%_1 /Bool (AI13PatternEnableGuides) , +%_1 /Int (AI13PatternExportType) , +%_; +%_ +9 () XW +%AI10_EndSymbol +%AI14_BeginSymbol +(Vektorschmutz) 0 A +0 Xw +u +*u +0 O +0 g +0 1 0 0 0 Xy +0 J 0 j 1 w 4 M []0 d 1 XR +-11.3574 -86.7866 m +-10.793 -89.4727 -15.4346 -89.1089 -13.957 -86.7866 C +-12.5186 -86.9419 -12.3418 -86.3398 -11.3574 -86.7866 C +f +1 D +-12.6572 -68.2666 m +-11.2783 -67.8735 -9.88281 -67.8027 -10.707 -65.9917 C +-9.05078 -66.3726 -7.44141 -65.2837 -6.1582 -64.3677 C +-3.79492 -64.9385 -2.38281 -64.4775 -0.634766 -63.7188 C +0.092773 -66.4565 2.7998 -67.2148 4.8877 -68.5928 C +4.33496 -70.1587 4.71777 -71.4795 6.18848 -71.8408 C +6.63086 -75.0127 4.25098 -76.2808 5.53906 -79.3145 C +2.26563 -80.0469 1.27246 -83.0615 -1.28516 -84.5127 C +-1.54395 -83.7969 -1.93652 -83.2158 -2.90918 -83.2129 C +-3.79004 -83.4155 -3.71875 -84.5708 -4.85938 -84.5127 C +-5.29688 -82.9834 -7.01074 -82.5635 -8.75781 -83.2129 C +-9.75781 -80.9639 -11.4736 -79.4307 -13.6309 -78.3398 C +-11.9395 -76.8096 -13.7754 -74.4907 -14.6064 -73.4658 C +-13.9512 -71.3237 -12.3818 -70.8555 -12.6572 -68.2666 C +f +42.5791 -77.6885 m +45.6094 -76.7646 48.2686 -78.8965 48.4277 -81.9136 C +45.8135 -82.4434 42.8291 -80.8945 42.2539 -78.3398 C +42.5068 -78.2676 42.6318 -78.0674 42.5791 -77.6885 C +f +71.8213 -65.0171 m +71.8926 -66.2061 72.2686 -66.2642 71.8213 -67.292 C +70.0195 -67.2939 69.0898 -69.0283 67.2725 -69.5664 c +65.5225 -70.085 63.2939 -69.27 62.0742 -70.8662 C +61.4893 -69.6191 60.1084 -69.2959 58.5 -69.8911 C +58.0635 -67.188 54.7363 -67.373 54.9258 -64.043 C +54.3604 -64.0674 53.916 -63.9702 53.627 -63.7183 C +53.3838 -62.7183 54.5176 -63.0933 54.2764 -62.0942 C +53.9902 -61.188 52.6641 -61.3223 52.6523 -60.144 C +54.583 -59.4771 54.668 -56.9619 55.251 -54.9463 C +57.209 -54.1953 57.7441 -52.0244 59.7998 -51.3711 C +57.1992 -50.397 55.0156 -49.0073 54.9258 -45.522 C +61.9707 -42.0322 62.3916 -53.894 69.8721 -52.021 C +71.3594 -55.4282 74.9307 -58.4331 72.7959 -62.7432 C +73.2021 -63.5293 74.4346 -63.4883 74.4199 -64.6934 C +73.6445 -64.8901 72.0645 -64.2842 71.8213 -65.0171 C +f +-48.7227 -29.6016 m +-50.5732 -30.0254 -52.0967 -30.7764 -53.9209 -31.2266 C +-53.8418 -29.2427 -50.0107 -29.2964 -48.7227 -29.6016 C +f +76.6953 -2.95801 m +77.5898 -1.7959 80.2607 -2.29883 80.2695 -3.93311 C +79.5303 -5.62207 76.6504 -4.80811 76.6953 -2.95801 C +f +-34.751 51.9531 m +-36.1426 51.752 -36.0762 53.0103 -37.3516 52.9272 C +-38.8779 52.397 -39.0049 50.4663 -39.624 49.0283 C +-40.9492 48.7871 -40.7441 50.0752 -42.2246 49.6792 C +-43.1924 49.2373 -43.5732 48.2109 -44.1738 47.4043 C +-47.1523 47.998 -47.8145 46.2793 -49.373 45.4541 C +-49.9424 45.9673 -50.0459 46.9463 -50.9971 47.0791 C +-54.1035 45.7832 -54.4688 49.8662 -57.8203 48.3779 C +-58.8926 52.085 -61.7568 54.1812 -65.9434 53.9023 C +-66.0586 55.8594 -63.748 55.3882 -63.3438 56.8271 C +-62.7783 59.666 -64.377 60.3423 -64.6445 62.3501 C +-63.5605 64.1689 -62.7607 66.8403 -62.3691 70.1484 C +-60.6885 70.0923 -60.3916 71.4199 -59.7695 72.4224 C +-58.0381 72.207 -56.9258 72.6113 -56.5215 73.7222 C +-56.166 75.4854 -57.1768 75.8823 -57.1709 77.2959 C +-55.6338 76.5581 -54.4297 75.4873 -52.2959 75.3472 C +-50.8623 76.4023 -49.9131 77.9463 -46.7734 77.2959 C +-46.5967 76.2822 -45.999 75.687 -45.1484 75.3472 C +-44.1582 75.7632 -44.2793 77.293 -42.874 77.2959 C +-41.7959 76.6504 -43.4063 73.6094 -41.25 73.397 C +-39.8867 73.335 -40.2451 74.9922 -38.6504 74.6973 C +-38.2949 73.209 -38.2949 72.6113 -38.6504 71.123 C +-36.5146 69.8042 -36.041 72.7261 -34.751 72.0981 C +-34.7578 70.6953 -36.3701 70.9004 -36.376 69.498 C +-34.8945 67.4961 -36.8584 63.6709 -34.751 62.0254 C +-33.3076 61.3022 -28.6191 63.0171 -26.6279 61.375 C +-33.1543 63.166 -38.3291 57.3921 -34.751 51.9531 C +f +39.0059 51.3032 m +40.627 53.6611 43.1963 52.0361 46.8027 52.6021 C +45.8857 50.502 41.5166 50.8052 39.0059 51.3032 C +f +-26.6279 64.2993 m +-24.3379 64.7163 -21.9385 65.0254 -19.4805 65.2744 C +-20.459 63.7573 -24.7148 63.8013 -26.6279 64.2993 C +f +-75.6914 73.397 m +-76.9385 70.96 -79.9707 72.8701 -80.2393 74.6968 c +-80.5762 76.981 -78.0098 77.583 -77.9648 79.5708 C +-73.6738 80.9727 -74.0176 75.71 -72.1162 73.7217 C +-72.2852 73.2417 -72.5977 72.9028 -72.7676 72.4219 C +-74.3037 72.186 -74.9023 72.8857 -75.6914 73.397 C +f +36.7305 78.271 m +36.8066 80.1182 40.0166 80.2891 40.9541 80.2212 C +40.3887 78.729 38.416 78.6431 36.7305 78.271 C +f +25.6836 88.6675 m +25.0264 85.8594 24.0225 83.3965 22.4346 81.5195 C +23.0615 84.3584 24.1738 86.7104 25.6836 88.6675 C +f +u +58.1748 -40.6484 m +58.1748 -41.9492 L +56.3633 -42.5352 56.6504 -42.3032 54.9258 -41.2993 C +53.708 -42.2144 52.8369 -41.5161 51.6768 -42.2744 C +51.1289 -40.8721 50.2041 -39.8481 47.7783 -40.3242 C +46.6455 -37.6333 43.5371 -35.6572 43.5537 -32.2012 c +43.5625 -30.3833 45.4561 -28.582 44.2041 -27.0029 C +38.8252 -32.6563 26.0928 -26.6914 19.5098 -28.627 C +20.3438 -31.1504 21.5869 -33.2661 22.4336 -35.7754 C +23.6406 -36.0972 25.0879 -37.5039 24.0586 -39.0244 C +19.6953 -37.54 19.8066 -31.5791 15.2861 -30.251 C +13.5273 -32.2202 11.5596 -32.7754 9.43652 -34.8003 C +9.2002 -39.5703 6.9248 -41.9111 5.21289 -44.873 c +4.50586 -46.0972 4.77344 -47.8184 2.93945 -47.7974 C +2.75684 -47.3291 2.43164 -47.0039 1.96484 -46.8232 C +1.70898 -44.9434 2.86914 -44.478 2.61426 -42.5981 C +-0.729492 -40.7754 -6.375 -43.0981 -10.0576 -44.873 C +-10.4521 -42.853 -9.32129 -42.3604 -9.4082 -40.6484 C +-12.8008 -38.9243 -14.9375 -41.4224 -18.1807 -39.999 C +-19.9697 -41.1333 -20.6484 -43.3804 -23.0547 -43.8984 C +-25.2207 -45.7393 -25.5283 -49.438 -28.2529 -50.7212 C +-28.332 -48.501 -27.25 -48.2539 -26.3027 -46.8232 c +-25.2246 -45.1924 -24.1855 -42.3682 -23.0547 -40.9731 c +-21.5771 -39.1543 -19.6816 -38.5391 -19.8047 -36.75 c +-19.9727 -34.2949 -22.8379 -34.166 -25.0039 -32.8501 C +-27.0322 -23.853 -37.2998 -26.624 -44.499 -28.9512 C +-40.2969 -26.7642 -34.8027 -25.8682 -31.1768 -23.103 C +-33.583 -21.1782 -35.8438 -19.105 -37.3496 -16.2803 C +-39.2607 -16.4282 -39.7441 -18.0029 -42.2246 -17.5791 C +-42.5098 -15.7793 -40.4717 -16.3003 -39.9502 -15.3052 C +-44.9912 -14.144 -47.0557 -18.5449 -52.6211 -17.5791 C +-52.6992 -18.043 -53.1572 -18.1279 -53.2715 -18.5552 C +-53.4854 -19.7432 -52.5693 -19.8013 -52.6211 -20.8281 C +-54.0566 -21.9072 -55.1797 -23.4492 -54.8945 -25.377 C +-57.1963 -26.4351 -59.1523 -27.8359 -59.4453 -30.9014 C +-61.0361 -31.1924 -60.3223 -29.1792 -62.0439 -29.6021 C +-62.9199 -32.3042 -64.5283 -30.4912 -66.918 -31.5522 C +-67.2988 -31.0654 -67.3223 -30.2222 -67.8916 -29.9263 C +-71.4014 -30.7261 -71.4199 -28.0391 -73.416 -27.3271 C +-75.623 -28.1514 -76.6699 -29.9351 -79.2646 -28.9512 C +-79.1748 -27.2012 -76.2041 -28.3291 -75.6914 -27.0029 C +-76.8789 -23.9673 -77.7354 -20.5981 -79.2646 -17.9053 C +-77.918 -17.0522 -77.1309 -15.1401 -77.9648 -13.0313 C +-75.9502 -11.1763 -73.9092 -9.01416 -73.0908 -6.85742 C +-71.9033 -6.64307 -71.8447 -7.56104 -70.8174 -7.50732 C +-69.7979 -6.79199 -68.8008 -6.05713 -68.542 -4.58203 C +-65.3779 -6.28516 -61.8545 -6.12012 -58.4707 -6.85742 C +-57.9297 -7.29102 -58.3613 -8.69824 -57.8203 -9.13232 C +-56.8174 -9.21191 -55.9834 -9.46094 -55.2207 -9.78223 C +-54.3906 -10.1953 -55.5225 -11.373 -54.8945 -11.4063 C +-50.4414 -10.8032 -43.4395 -11.4561 -39.9502 -8.48242 C +-38.9336 -4.98633 -38.1934 -1.521 -39.9502 1.91504 C +-40.5146 2.31787 -42.1074 1.66699 -43.5244 1.91504 C +-44.3545 1.66211 -44.0752 0.299805 -45.1484 0.291016 C +-50.8291 1.32471 -54.7422 4.12793 -56.5215 9.06396 C +-56.1826 10.7837 -55.8857 12.5459 -55.8701 14.5869 C +-54.3213 17.8018 -50.8535 19.1006 -48.7227 21.7349 C +-48.0625 20.4199 -45.6143 20.6299 -44.499 21.4106 C +-40.8447 19.541 -37.2588 17.603 -36.0508 13.2881 C +-31.1826 13.293 -31.0244 18.0078 -27.9277 19.7856 C +-28.8125 24.6406 -30.2988 28.895 -31.502 33.4326 C +-29.1084 31.5107 -28.2148 27.5337 -27.6035 23.0347 C +-26.2539 22.6519 -25.3271 21.8447 -24.0293 21.4106 C +-23.209 22.2148 -21.8311 22.4609 -21.7539 24.0098 c +-21.7266 25.229 -22.9443 25.2017 -23.0547 26.2837 C +-19.2773 25.8677 -13.2021 25.5137 -13.6309 31.4829 C +-11.7676 32.0469 -12.4063 30.1079 -11.0322 30.1826 C +-7.94727 32.4316 -7.26758 41.6729 -9.08203 44.8037 C +-11.0283 42.3828 -10.7676 38.5488 -14.6064 38.9561 c +-18.4111 39.3599 -19.1299 44.8418 -16.5557 48.0527 C +-13.2314 49.1567 -10.2676 51.2749 -8.43262 47.4038 C +-4.99609 50.4307 -7.16309 57.7808 -10.3828 59.75 C +-11.7129 60.0449 -13.0117 60.3711 -13.3057 61.6997 C +-13.0527 61.772 -12.9287 61.9717 -12.9824 62.3496 C +-11.8154 63.0249 -9.46777 62.519 -7.78418 62.6748 C +-6.89746 64.2798 -5.62598 65.5 -5.50879 67.873 C +-6.41504 68.9229 -9.17188 69.833 -8.43262 71.4468 C +-7.57813 69.79 -4.04004 69.3086 -2.25977 70.4727 C +-2.13184 71.645 -1.83887 72.6519 -1.60938 73.7217 C +0.733398 74.5928 2.58984 76.6929 5.53906 75.9961 C +6.37891 76.998 5.97852 79.2388 7.16309 79.896 C +9.04395 80.0439 8.46875 77.7358 10.4121 77.9458 C +11.1719 78.9199 10.083 81.7417 12.0371 81.52 C +13.3477 81.0986 12.7578 78.7759 13.6621 77.9458 C +16.3779 77.231 17.9609 78.0029 20.4844 77.9458 C +20.8652 78.4316 20.8877 79.2749 21.46 79.5708 C +21.6533 78.9917 20.5068 78.2217 21.46 77.9458 C +22.8213 77.9917 22.9092 79.312 24.708 78.9209 C +24.6787 77.5308 24.0576 76.541 24.708 75.3467 C +30.9482 74.98 31.5498 68.9736 34.7813 65.5986 C +38.7578 64.875 41.4102 67.1978 43.8789 66.8999 C +42.7266 66.21 40.8789 66.2168 40.3047 64.9497 C +40.9883 64.084 42.6816 63.7266 41.9287 62.3496 C +39.8594 62.23 39.2168 63.5371 38.0303 64.2988 C +36.9971 63.6006 34.9238 63.9409 34.457 62.6748 C +34.084 60.2446 35.5498 59.6528 36.4063 58.4507 C +36.1523 56.8638 35.0557 56.1187 35.1055 54.228 C +35.3291 52.9336 37.4805 53.5688 37.3809 51.9526 c +37.2949 50.6309 35.2578 51.2588 34.457 50.6528 C +34.0459 48.2759 34.626 48.0308 34.7813 45.7788 C +32.5859 45.1577 30.6357 44.293 30.8818 41.231 C +28.3301 40.8589 26.0967 40.168 26.334 37.0068 C +25.7441 36.188 24.1992 36.3247 23.7344 35.3818 C +24.1084 35.2769 24.8525 33.9648 24.0586 33.7568 C +23.334 35.7266 19.5908 34.269 18.5352 33.4326 C +17.2656 33.6797 17.2715 35.2017 15.6104 35.0566 C +15.4707 34.439 14.9111 34.2407 14.9609 33.4326 C +17.2178 31.8979 21.668 32.5576 24.0586 31.1577 C +24.0361 27.6748 22.3955 24.2329 24.3838 20.7607 C +24.71 20.7617 24.7695 20.498 25.0332 20.436 C +25.5586 20.9937 26.3926 21.2427 27.6328 21.0859 C +30.4756 25.1279 35.4619 25.2188 39.3301 27.9087 C +37.251 24.1279 28.3848 24.3486 29.583 16.2119 C +27.458 15.7129 27.9014 19.146 26.334 18.1606 C +27.0645 15.5337 29.9111 15.0249 31.207 12.9629 C +39.0576 10.688 44.1572 17.8477 51.6768 15.2368 C +53.8691 6.26563 37.6543 8.11963 37.0557 1.58984 c +36.6855 -2.45117 40.3271 -1.20703 42.9043 -2.30811 C +42.1152 -4.88721 38.2607 -2.88916 37.0557 -4.58203 C +36.9111 -7.43506 39.6836 -7.37012 41.2793 -8.48242 C +40.7529 -11.6504 43.29 -11.8813 44.5293 -14.0063 C +43.7422 -15.71 40.7344 -15.1934 40.3047 -17.2539 C +42.0732 -19.8262 44.6143 -25.3242 48.7529 -22.4541 C +50.6123 -23.9512 51.8916 -22.4053 53.3018 -21.1543 C +54.4609 -22.6011 55.7393 -21.8452 57.5264 -21.479 C +59.6865 -24.2852 64.9189 -26.4292 63.0488 -31.2261 C +63.1572 -32.5254 64.3936 -32.6973 64.3486 -34.1514 C +61.9717 -35.9971 61.6953 -39.9453 58.1748 -40.6484 C +f +0 D +6.83789 33.7568 m +7.83105 33.4438 9.875 33.646 9.7627 35.3818 C +8.57422 36.167 7.02637 35.0029 6.83789 33.7568 C +f +28.2832 18.1606 m +29.7998 18.7017 29.7832 20.7769 30.5566 22.0596 C +28.957 21.6558 26.5938 19.8486 28.2832 18.1606 C +f +U +9 () XW +1 D +-14.6064 35.3813 m +-17.0771 36.9204 -20.4551 39.2783 -21.4297 41.2305 C +-19.0449 39.3916 -16.2207 37.9912 -14.6064 35.3813 C +f +-25.9785 61.7002 m +-25.3076 61.1143 -21.165 62.3994 -20.4551 60.7251 C +-22.4258 60.7109 -26.2666 60.5371 -25.9785 61.7002 C +f +*U +%_/ArtDictionary : +%_0 /Int (AI10 compound shape mode) , +%_; +%_ +U +%_/ArtDictionary : +%_40.1348 120.4043 133.0009 44.3336 0 0 /RealMatrix +%_ (AI13Pattern9SliceScalingGridKey) , +%_5 /Int (AI13PatternRegistrationType) , +%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , +%_0 /Bool (AI13PatternEnableGuides) , +%_1 /Int (AI13PatternExportType) , +%_; +%_ +9 () XW +%AI10_EndSymbol +%AI5_End_NonPrinting-- +%AI5_Begin_NonPrinting +Np +%AI8_BeginPluginObject +(Adobe Brush Manager Order) +(Adobe Brush Manager Order) +( Adobe Calligraphic Brush Tool/ Rund - 5 Pt./ Adobe Calligraph) - +(ic Brush Tool/ Rund - 15 Pt./ Adobe Calligraphic Brush Tool/ O) - +(val - 3 Pt./ Adobe Calligraphic Brush Tool/ Oval - 5 Pt./ Adob) - +(e Calligraphic Brush Tool/ Flach - 5 Pt./ Adobe ArtOnPath Brus) - +(h Tool/ Kohle - Feder/ Adobe ArtOnPath Brush Tool/ Trennlinie/) - +( Adobe dBrush Brush Tool/ Verwischt/ Adobe PatternOnPath Brush) - +( Tool/ Hier schneiden/) . +%AI8_EndPluginObject +%AI5_End_NonPrinting-- +%AI5_Begin_NonPrinting +Np +%AI8_BeginPluginObject +(Adobe dBrush Brush Tool) +(Verwischt) +(0 4 0.5 0.75 0.33 0.75 1.5 6 AI_BristleBrushLibary_CS5 05_Roun) - +(d_Fan) . +%AI8_EndPluginObject +%AI5_End_NonPrinting-- +%AI5_Begin_NonPrinting +Np +%AI8_BeginPluginObject +(Adobe Calligraphic Brush Tool) +(Flach - 5 Pt.) +(1 5 5 0 0 90 90 0 0 0 0) . +%AI8_EndPluginObject +%AI8_BeginPluginObject +(Adobe Calligraphic Brush Tool) +(Oval - 3 Pt.) +(1 3 3 26 74 15 15 0 1 0 0) . +%AI8_EndPluginObject +%AI8_BeginPluginObject +(Adobe Calligraphic Brush Tool) +(Oval - 5 Pt.) +(1 5 5 10 90 -65 35 0 1 1 0) . +%AI8_EndPluginObject +%AI8_BeginPluginObject +(Adobe Calligraphic Brush Tool) +(Rund - 15 Pt.) +(1 15 15 100 100 0 0 1 0 1 0) . +%AI8_EndPluginObject +%AI8_BeginPluginObject +(Adobe Calligraphic Brush Tool) +(Rund - 5 Pt.) +(1 5 5 100 100 0 0 0 0 0 0) . +%AI8_EndPluginObject +%AI5_End_NonPrinting-- +%AI5_Begin_NonPrinting +Np +%AI8_BeginPluginObject +(Adobe ArtOnPath Brush Tool) +(Kohle - Feder) +(2 / Unnamed 6/ / / / / 0 1 / 1 1 1 0 1 0 0 0 1 1 0 0 0 0 1) . +%AI8_EndPluginObject +%AI8_BeginPluginObject +(Adobe ArtOnPath Brush Tool) +(Trennlinie) +(2 / Unnamed Brush Pat 1/ / / / / 5 0.85098 0.396078 0.168627 /) - +( 1 1 1 0 1 0 0 0 1 1 0 1 25 25 1) . +%AI8_EndPluginObject +%AI5_End_NonPrinting-- +%AI5_Begin_NonPrinting +Np +%AI8_BeginPluginObject +(Adobe PatternOnPath Brush Tool) +(Hier schneiden) +(2 / New Pattern 4/ New Pattern 11/ New Pattern 11/ / / 0 0 / ) - +(1 1 1 0 1 0 0 0 1 1 0 0 0 0 0) . +%AI8_EndPluginObject +%AI5_End_NonPrinting-- +%AI5_Begin_NonPrinting +Np +%AI9_BeginArtStyles +/KnownStyle : +(Abenddämmerung) /Name , +/ActiveStyle : +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/CompoundFilter : +(Stack Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Stroke Style Filter) 0 0 /Filter , +1 /Visible , +2 /FillOrStroke , +/Dictionary : /NotRecorded , +/StrokeStyle : 0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 0 Xd +/Def ; + (StrokeStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Conduit Filter) 0 0 /Filter , +1 /Visible , +; + /Part , +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +Bb +0 0 0 0 Bh +2 (Unnamed gradient 4) 0.0109 0.2935 0 1.2449 1 0 0 1 0 0 1 Bg +0 BB +/Def ; + (FillStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Adobe Transform) 1 0 /Filter , +1 /Visible , +(Transform Each.aip) /PluginFileName , +(Transformieren) /Title , +/Dictionary : /NotRecorded , +0 /Bool (transformPatterns) , +100 /Real (scaleV_Percent) , +1 /Real (scaleH_Factor) , +0 /Real (moveV_Pts) , +0 /Bool (reflectY) , +0 /Bool (reflectX) , +100 /Real (scaleH_Percent) , +0 /Bool (scaleLines) , +0 /Real (moveH_Pts) , +0 /Real (rotate_Radians) , +4 /Int (pinPoint) , +1 /Real (scaleV_Factor) , +0 /Real (rotate_Degrees) , +0 /Bool (randomize) , +0 /Int (numCopies) , +; /Dict ; + /Part , +/BasicFilter : +(Adobe Transform) 1 0 /Filter , +1 /Visible , +(Transform Each.aip) /PluginFileName , +(Transformieren) /Title , +/Dictionary : /NotRecorded , +0 /Bool (transformPatterns) , +100 /Real (scaleV_Percent) , +1 /Real (scaleH_Factor) , +0 /Real (moveV_Pts) , +0 /Bool (reflectY) , +0 /Bool (reflectX) , +100 /Real (scaleH_Percent) , +0 /Bool (scaleLines) , +0 /Real (moveH_Pts) , +0 /Real (rotate_Radians) , +4 /Int (pinPoint) , +1 /Real (scaleV_Factor) , +0 /Real (rotate_Degrees) , +0 /Bool (randomize) , +0 /Int (numCopies) , +; /Dict ; + /Part , +/BasicFilter : +(Adobe Fuzzy Mask) 1 0 /Filter , +1 /Visible , +(FuzzyEffect.aip) /PluginFileName , +(Weiche Kante) /Title , +/Dictionary : /NotRecorded , +20 /Real (Radius) , +; /Dict ; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 0 0.74 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + /Part , +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +Bb +0 0 0 0 Bh +2 (Unnamed gradient 41) -0.0109 -0.3587 0 0.695 1 0 0 1 0 0 1 Bg +0 BB +/Def ; + (FillStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Adobe Transform) 1 0 /Filter , +1 /Visible , +(Transform Each.aip) /PluginFileName , +(Transformieren) /Title , +/Dictionary : /NotRecorded , +0 /Bool (transformPatterns) , +100 /Real (scaleV_Percent) , +1 /Real (scaleH_Factor) , +0 /Real (moveV_Pts) , +0 /Bool (reflectY) , +0 /Bool (reflectX) , +100 /Real (scaleH_Percent) , +0 /Bool (scaleLines) , +0 /Real (moveH_Pts) , +0 /Real (rotate_Radians) , +4 /Int (pinPoint) , +1 /Real (scaleV_Factor) , +0 /Real (rotate_Degrees) , +0 /Bool (randomize) , +0 /Int (numCopies) , +; /Dict ; + /Part , +/BasicFilter : +(Adobe Transform) 1 0 /Filter , +1 /Visible , +(Transform Each.aip) /PluginFileName , +(Transformieren) /Title , +/Dictionary : /NotRecorded , +0 /Bool (transformPatterns) , +100 /Real (scaleV_Percent) , +1 /Real (scaleH_Factor) , +0 /Real (moveV_Pts) , +0 /Bool (reflectY) , +0 /Bool (reflectX) , +100 /Real (scaleH_Percent) , +0 /Bool (scaleLines) , +0 /Real (moveH_Pts) , +0 /Real (rotate_Radians) , +4 /Int (pinPoint) , +1 /Real (scaleV_Factor) , +0 /Real (rotate_Degrees) , +0 /Bool (randomize) , +0 /Int (numCopies) , +; /Dict ; + /Part , +/BasicFilter : +(Adobe Fuzzy Mask) 1 0 /Filter , +1 /Visible , +(FuzzyEffect.aip) /PluginFileName , +(Weiche Kante) /Title , +/Dictionary : /NotRecorded , +2 /Real (Radius) , +; /Dict ; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 3 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + /Part , +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +Bb +0 0 178.8818 1 Bh +2 (Unnamed gradient 5) -0.0035 -0.2872 0 1.2987 1 0 0 1 0 0 1 Bg +0 BB +/Def ; + (FillStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Adobe Transform) 1 0 /Filter , +1 /Visible , +(Transform Each.aip) /PluginFileName , +(Transformieren) /Title , +/Dictionary : /NotRecorded , +0 /Bool (transformPatterns) , +100 /Real (scaleV_Percent) , +1 /Real (scaleH_Factor) , +0 /Real (moveV_Pts) , +0 /Bool (reflectY) , +0 /Bool (reflectX) , +100 /Real (scaleH_Percent) , +0 /Bool (scaleLines) , +0 /Real (moveH_Pts) , +0 /Real (rotate_Radians) , +4 /Int (pinPoint) , +1 /Real (scaleV_Factor) , +0 /Real (rotate_Degrees) , +0 /Bool (randomize) , +0 /Int (numCopies) , +; /Dict ; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 1 0.45 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + /Part , +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +Bb +0 0 0 0 Bh +2 (Unnamed gradient 18) -0.0177 -0.3511 0 1.1983 1 0 0 1 0 0 1 Bg +0 BB +/Def ; + (FillStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Adobe Transform) 1 0 /Filter , +1 /Visible , +(Transform Each.aip) /PluginFileName , +(Transformieren) /Title , +/Dictionary : /NotRecorded , +0 /Bool (transformPatterns) , +100 /Real (scaleV_Percent) , +1 /Real (scaleH_Factor) , +0 /Real (moveV_Pts) , +0 /Bool (reflectY) , +0 /Bool (reflectX) , +100 /Real (scaleH_Percent) , +0 /Bool (scaleLines) , +0 /Real (moveH_Pts) , +0 /Real (rotate_Radians) , +4 /Int (pinPoint) , +1 /Real (scaleV_Factor) , +0 /Real (rotate_Degrees) , +0 /Bool (randomize) , +0 /Int (numCopies) , +; /Dict ; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 1 0.47 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + /Part , +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +Bb +0 0 0 0 Bh +2 (Unnamed gradient 14) -0.0035 -0.3723 0 1.3543 1 0 0 1 0 0 1 Bg +0 BB +/Def ; + (FillStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 0 0.52 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + /Part , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0 0 0 0 1 1 1 Xa +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +/Def ; + (FillStyle) , +; /Dict ; + /Part , +; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + +/Execution ; + /Def ; +/KnownStyle : +(Abgerundete Ecken 2 Pt.) /Name , +/ActiveStyle : +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Adobe Round Corners) 1 0 /Filter , +1 /Visible , +(Round Corners.aip) /PluginFileName , +(Ecken abrunden) /Title , +/Dictionary : /NotRecorded , +2 /Real (radius) , +; /Dict ; + /Part , +/CompoundFilter : +(Stack Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Stroke Style Filter) 0 0 /Filter , +1 /Visible , +2 /FillOrStroke , +/Dictionary : /NotRecorded , +/StrokeStyle : 0 R +0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 XA +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +1 0 Xd +/Def ; + (StrokeStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Conduit Filter) 0 0 /Filter , +1 /Visible , +; + /Part , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0 0 0 0 1 1 1 Xa +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +/Def ; + (FillStyle) , +; /Dict ; + /Part , +; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + +/Execution ; + /Def ; +/KnownStyle : +(Anon) /Name , +/ActiveStyle : +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/CompoundFilter : +(Stack Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Conduit Filter) 0 0 /Filter , +1 /Visible , +; + /Part , +/BasicFilter : +(Stroke Style Filter) 0 0 /Filter , +1 /Visible , +2 /FillOrStroke , +/Dictionary : /NotRecorded , +/StrokeStyle : 0 R +0.0065 0.4589 0.819943 0.000244 0.952941 0.611765 0.231373 XA +0 1 0 0 0 Xy +0 J 0 j 2 w 1 M []0 d 0 XR +1 0 Xd +/Def ; + (StrokeStyle) , +; /Dict ; + /Part , +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Adobe Stroke Offset) 1 0 /Filter , +1 /Visible , +(StrokeOffset.aip) /PluginFileName , +(Konturverschiebung: Live-Effekt) /Title , +2 /FillOrStroke , +/Dictionary : /NotRecorded , +(Inside) /String (DisplayString) , +/StrokeStyle : 0 R +0 0 0 0 1 1 1 XA +0 1 0 0 0 Xy +0 J 0 j 1.8 w 1 M []0 d 0 XR +1 0 Xd +/Def ; + (StrokeStyle) , +1 /Bool (StrokeOffsetInside) , +; /Dict ; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 0 0.6 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + /Part , +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +Bb +2 (Unnamed gradient 8) 0 0 -90 1 1 0 0 1 0 0 1 Bg +0 BB +/Def ; + (FillStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 2 0.7 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + /Part , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +Bb +2 (Unnamed gradient 10) 0 0 90 1 1 0 0 1 0 0 1 Bg +0 BB +/Def ; + (FillStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +Bb +2 (Unnamed gradient 42) 0 0 90 1 1 0 0 1 0 0 1 Bg +0 BB +/Def ; + (FillStyle) , +; /Dict ; + /Part , +; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + +/Execution ; + /Def ; +/KnownStyle : +(Anon 1510) /Name , +/SimpleStyle : +0 O +0.505455 0.098695 0.171084 0.001251 0.533333 0.752941 0.815686 Xa +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +/Paint ; + /Def ; +/KnownStyle : +(Anon 174) /Name , +/SimpleStyle : +0 O +0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 Xa +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +/Paint ; + /Def ; +/KnownStyle : +(Anon 195) /Name , +/ActiveStyle : +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/CompoundFilter : +(Stack Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Conduit Filter) 0 0 /Filter , +1 /Visible , +; + /Part , +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Adobe Stroke Offset) 1 0 /Filter , +1 /Visible , +(StrokeOffset.aip) /PluginFileName , +(Konturverschiebung: Live-Effekt) /Title , +2 /FillOrStroke , +/Dictionary : /NotRecorded , +(Outside) /String (DisplayString) , +/StrokeStyle : 0 R +0.749172 0.600427 0 0 0.333333 0.403922 0.682353 XA +0 1 0 0 0 Xy +0 J 1 j 0.25 w 5 M []0 d 0 XR +1 0 Xd +/Def ; + (StrokeStyle) , +0 /Bool (StrokeOffsetInside) , +; /Dict ; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 0 1 1 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + /Part , +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +Bb +2 (Unnamed gradient 16) 0 0 -90 1 1 0 0 1 0 0 1 Bg +0 BB +/Def ; + (FillStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 2 0.7 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + /Part , +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +Bb +0 0 0 0 Bh +2 (Unnamed gradient 19) 0 0 0 1 1 0 0 1 0 0 0.5 Bg +0 BB +/Def ; + (FillStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 2 0.51 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + /Part , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +Bb +2 (Unnamed gradient 21) 0 0 90 1 1 0 0 1 0 0 1 Bg +0 BB +/Def ; + (FillStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +Bb +2 (Unnamed gradient 1) 0 0 90 1 1 0 0 1 0 0 1 Bg +0 BB +/Def ; + (FillStyle) , +; /Dict ; + /Part , +; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + +/Execution ; + /Def ; +/KnownStyle : +(Interaktiv X spiegeln) /Name , +/ActiveStyle : +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/CompoundFilter : +(Stack Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Stroke Style Filter) 0 0 /Filter , +1 /Visible , +2 /FillOrStroke , +/Dictionary : /NotRecorded , +/StrokeStyle : 0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 0 Xd +/Def ; + (StrokeStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Conduit Filter) 0 0 /Filter , +1 /Visible , +; + /Part , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 0 Xd +/Def ; + (FillStyle) , +; /Dict ; + /Part , +; + /Part , +/BasicFilter : +(Adobe Transform) 1 0 /Filter , +1 /Visible , +(Transform Each.aip) /PluginFileName , +(Transformieren) /Title , +/Dictionary : /NotRecorded , +0 /Bool (transformPatterns) , +100 /Real (scaleV_Percent) , +1 /Real (scaleH_Factor) , +0 /Real (moveV_Pts) , +0 /Bool (reflectY) , +1 /Bool (reflectX) , +100 /Real (scaleH_Percent) , +0 /Bool (scaleLines) , +0 /Real (moveH_Pts) , +0 /Real (rotate_Radians) , +3 /Int (pinPoint) , +1 /Real (scaleV_Factor) , +0 /Real (rotate_Degrees) , +0 /Bool (randomize) , +1 /Int (numCopies) , +; /Dict ; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + +/Execution ; + /Def ; +/KnownStyle : +(Laub_GS) /Name , +/ActiveStyle : +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/CompoundFilter : +(Stack Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Stroke Style Filter) 0 0 /Filter , +1 /Visible , +2 /FillOrStroke , +/Dictionary : /NotRecorded , +/StrokeStyle : 0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 0 Xd +/Def ; + (StrokeStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Conduit Filter) 0 0 /Filter , +1 /Visible , +; + /Part , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +(Laub) 0 0 1 1 0 0 0 0 0 [0 0.7 -0.7 0 -2200.8872 13353.1689] p +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +/Def ; + (FillStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0.021942 0.098024 0.918059 0 1 0.866667 0 Xa +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +/Def ; + (FillStyle) , +; /Dict ; + /Part , +; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + +/Execution ; + /Def ; +/KnownStyle : +(Pompadour_GS) /Name , +/ActiveStyle : +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/CompoundFilter : +(Stack Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Stroke Style Filter) 0 0 /Filter , +1 /Visible , +2 /FillOrStroke , +/Dictionary : /NotRecorded , +/StrokeStyle : 0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 0 Xd +/Def ; + (StrokeStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Conduit Filter) 0 0 /Filter , +1 /Visible , +; + /Part , +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +1 /Bool (UseEvenOdd) , +/FillStyle : 0 O +(Pompadour) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +/Def ; + (FillStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 1 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + /Part , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +1 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0.651484 0.148959 0.001282 0 0.317647 0.682353 0.886275 Xa +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +/Def ; + (FillStyle) , +; /Dict ; + /Part , +; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + +/Execution ; + /Def ; +/KnownStyle : +(Schlagschatten) /Name , +/ActiveStyle : +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/CompoundFilter : +(Stack Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Stroke Style Filter) 0 0 /Filter , +1 /Visible , +2 /FillOrStroke , +/Dictionary : /NotRecorded , +/StrokeStyle : 0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 0 Xd +/Def ; + (StrokeStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Conduit Filter) 0 0 /Filter , +1 /Visible , +; + /Part , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 0 Xd +/Def ; + (FillStyle) , +; /Dict ; + /Part , +; + /Part , +/BasicFilter : +(Adobe Drop Shadow) 1 0 /Filter , +1 /Visible , +(Drop Shadow.aip) /PluginFileName , +(Schlagschatten) /Title , +/Dictionary : /NotRecorded , +1 /Bool (pair) , +2 /Real (vert) , +50 /Real (dark) , +2 /Real (horz) , +1 /Int (csrc) , +1 /Bool (usePSLBlur) , +/FillStyle : 0 O +0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 Xa +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +/Def ; + (sclr) , +0.75 /Real (opac) , +3 /Real (blur) , +1 /Int (blnd) , +16 /Int (Adobe Effect Expand Before Version) , +; /Dict ; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + +/Execution ; + /Def ; +/KnownStyle : +(Weich abgeflachte Kante) /Name , +/ActiveStyle : +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/CompoundFilter : +(Stack Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Stroke Style Filter) 0 0 /Filter , +1 /Visible , +2 /FillOrStroke , +/Dictionary : /NotRecorded , +/StrokeStyle : 0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 0 Xd +/Def ; + (StrokeStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Conduit Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +; /Dict ; + /Part , +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +Bb +2 (Unnamed gradient 51) 0.0226 0 135.0003 1.2757 1 0 0 1 0 0 1 Bg +0 BB +/Def ; + (FillStyle) , +; /Dict ; + /Part , +/BasicFilter : +(Adobe Fuzzy Mask) 1 0 /Filter , +1 /Visible , +(FuzzyEffect.aip) /PluginFileName , +(Weiche Kante) /Title , +/Dictionary : /NotRecorded , +10 /Real (Radius) , +; /Dict ; + /Part , +; + /Part , +/CompoundFilter : +(Chain Style Filter) 0 0 /Filter , +1 /Visible , +/BasicFilter : +(Adobe Offset Path) 1 0 /Filter , +1 /Visible , +(Offset Path.aip) /PluginFileName , +(Pfad verschieben) /Title , +/Dictionary : /NotRecorded , +7 /Real (ofst) , +4 /Real (mlim) , +2 /Int (jntp) , +; /Dict ; + /Part , +/BasicFilter : +(Fill Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +0 /Bool (UseEvenOdd) , +/FillStyle : 0 O +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +0 1 Xd +Bb +2 (Unnamed gradient 54) 0 0 -45.0002 1 1 0 0 1 0 0 1 Bg +0 BB +/Def ; + (FillStyle) , +; /Dict ; + /Part , +; + /Part , +; + /Part , +/BasicFilter : +(Blend Style Filter) 0 0 /Filter , +1 /Visible , +/Dictionary : /NotRecorded , +/BlendStyle : 0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +/Def ; + (BlendStyle) , +; /Dict ; + /Part , +; + +/Execution ; + /Def ; +/KnownStyle : +([Standard]) /Name , +/SimpleStyle : +0 O +0 0 0 0 1 1 1 Xa +0 R +0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 XA +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +1 1 Xd +/Paint ; + /Def ; +%AI9_EndArtStyles +%AI5_End_NonPrinting-- +%AI5_BeginPalette +0 0 Pb +0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz +([Passermarken]) +Pc +0 0 0 0 1 1 1 Xa +(Weiß) +Pc +0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 Xa +(Schwarz) +Pc +0.001648 0.996399 0.976776 0.001984 0.890196 0.023529 0.07451 Xa +(CMYK Rot) +Pc +0.045655 0 0.888395 0 1 0.929412 0 Xa +(CMYK Gelb) +Pc +0.838651 0.115511 0.962341 0.010986 0 0.588235 0.25098 Xa +(CMYK Grün) +Pc +0.75079 0.216068 0 0 0 0.623529 0.890196 Xa +(CMYK Cyan) +Pc +0.996765 0.965789 0.0878 0.011505 0.192157 0.152941 0.513726 Xa +(CMYK Blau) +Pc +0.008942 0.971435 0.039033 0 0.901961 0 0.494118 Xa +(CMYK Magenta) +Pc +0.17554 1 0.904204 0.07599 0.745098 0.086275 0.133333 Xa +(C=15 M=100 Y=90 K=10) +Pc +0.003632 0.899077 0.849912 0 0.901961 0.2 0.164706 Xa +(C=0 M=90 Y=85 K=0) +Pc +0 0.797818 0.941039 0.001312 0.913725 0.305882 0.105882 Xa +(C=0 M=80 Y=95 K=0) +Pc +0.001892 0.501549 0.97351 0.000214 0.952941 0.572549 0 Xa +(C=0 M=50 Y=100 K=0) +Pc +0 0.348089 0.850645 0 0.976471 0.698039 0.2 Xa +(C=0 M=35 Y=85 K=0) +Pc +0.054566 0 0.886961 0 0.988235 0.917647 0.062745 Xa +(C=5 M=0 Y=90 K=0) +Pc +0.198093 0.004028 0.946899 0 0.870588 0.862745 0 Xa +(C=20 M=0 Y=100 K=0) +Pc +0.49955 0 0.994995 0 0.584314 0.756863 0.121569 Xa +(C=50 M=0 Y=100 K=0) +Pc +0.746487 0 0.995239 0 0.227451 0.666667 0.207843 Xa +(C=75 M=0 Y=100 K=0) +Pc +0.852354 0.169528 1 0.034516 0 0.552941 0.211765 Xa +(C=85 M=10 Y=100 K=10) +Pc +0.902007 0.328862 0.959106 0.261204 0 0.4 0.2 Xa +(C=90 M=30 Y=95 K=30) +Pc +0.748501 0 0.747158 0 0.184314 0.67451 0.4 Xa +(C=75 M=0 Y=75 K=0) +Pc +0.783505 0.110475 0.44947 0.004547 0 0.631373 0.603922 Xa +(C=80 M=10 Y=45 K=0) +Pc +0.698512 0.160403 0 0 0.211765 0.662745 0.882353 Xa +(C=70 M=15 Y=0 K=0) +Pc +0.84799 0.496101 0.001801 0 0.113725 0.443137 0.721569 Xa +(C=85 M=50 Y=0 K=0) +Pc +1 0.932494 0.097414 0.010742 0.176471 0.180392 0.513726 Xa +(C=100 M=95 Y=5 K=0) +Pc +1 0.984619 0.300084 0.228214 0.160784 0.137255 0.360784 Xa +(C=100 M=100 Y=25 K=25) +Pc +0.754849 0.993286 0.022736 0.003998 0.4 0.141176 0.513726 Xa +(C=75 M=100 Y=0 K=0) +Pc +0.504448 0.995972 0.008453 0.00296 0.584314 0.105882 0.505882 Xa +(C=50 M=100 Y=0 K=0) +Pc +0.277195 0.983795 0.289403 0.177462 0.639216 0.098039 0.356863 Xa +(C=35 M=100 Y=35 K=10) +Pc +0.087526 0.996979 0.47953 0.017273 0.839216 0.043137 0.321569 Xa +(C=10 M=100 Y=50 K=0) +Pc +0 0.945342 0.193301 0.00058 0.905882 0.113725 0.45098 Xa +(C=0 M=95 Y=20 K=0) +Pc +0.216587 0.233188 0.379309 0.044099 0.796078 0.733333 0.627451 Xa +(C=25 M=25 Y=40 K=0) +Pc +0.312474 0.397589 0.43888 0.187289 0.643137 0.541176 0.482353 Xa +(C=40 M=45 Y=50 K=5) +Pc +0.424475 0.449012 0.55465 0.344823 0.482353 0.415686 0.345098 Xa +(C=50 M=50 Y=60 K=25) +Pc +0.444495 0.53402 0.578546 0.504479 0.388235 0.305882 0.258824 Xa +(C=55 M=60 Y=65 K=40) +Pc +0.193301 0.373053 0.629145 0.074159 0.792157 0.619608 0.403922 Xa +(C=25 M=40 Y=65 K=0) +Pc +0.24979 0.475837 0.732998 0.162539 0.694118 0.498039 0.290196 Xa +(C=30 M=50 Y=75 K=10) +Pc +0.306889 0.577478 0.779446 0.294591 0.576471 0.376471 0.215686 Xa +(C=35 M=60 Y=80 K=25) +Pc +0.340551 0.624384 0.865385 0.409461 0.490196 0.305882 0.141176 Xa +(C=40 M=65 Y=90 K=35) +Pc +0.375372 0.678492 0.965057 0.525902 0.407843 0.235294 0.066667 Xa +(C=40 M=70 Y=100 K=50) +Pc +0.468452 0.683467 0.780606 0.716243 0.262745 0.160784 0.094118 Xa +(C=50 M=70 Y=80 K=70) +Pc +Bb +2 (Weiß, Schwarz) 0 0 0 1 1 0 0 1 0 0 1 Bg +0 BB +(Weiß, Schwarz) +Pc +Bb +2 (Orange, Gelb) 0 0 0 1 1 0 0 1 0 0 1 Bg +0 BB +(Orange, Gelb) +Pc +Bb +2 (Verblassender Himmel) 0 0 0 1 1 0 0 1 0 0 1 Bg +0 BB +(Verblassender Himmel) +Pc +Bb +0 0 0 0 Bh +2 (Sehr weiche schwarze Vignette) 0 0 0 1 1 0 0 1 0 0 1 Bg +0 BB +(Sehr weiche schwarze Vignette) +Pc +(Laub) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p +(Laub) +Pc +(Pompadour) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p +(Pompadour) +Pc +1 (Graustufen) 1 Pg +0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 Xa +(C=0 M=0 Y=0 K=100) +Pc +0.66363 0.566125 0.55111 0.600732 0.235294 0.235294 0.231373 Xa +(C=0 M=0 Y=0 K=90) +Pc +0.593744 0.492622 0.488838 0.418311 0.341176 0.341176 0.337255 Xa +(C=0 M=0 Y=0 K=80) +Pc +0.531518 0.433936 0.42591 0.279881 0.439216 0.435294 0.435294 Xa +(C=0 M=0 Y=0 K=70) +Pc +0.47129 0.36878 0.36878 0.174716 0.529412 0.529412 0.529412 Xa +(C=0 M=0 Y=0 K=60) +Pc +0.397436 0.307927 0.320073 0.100069 0.615686 0.615686 0.611765 Xa +(C=0 M=0 Y=0 K=50) +Pc +0.328893 0.24802 0.257694 0.045808 0.698039 0.698039 0.698039 Xa +(C=0 M=0 Y=0 K=40) +Pc +0.2551 0.187503 0.19794 0.016297 0.776471 0.776471 0.776471 Xa +(C=0 M=0 Y=0 K=30) +Pc +0.171847 0.120424 0.133059 0.001312 0.854902 0.854902 0.854902 Xa +(C=0 M=0 Y=0 K=20) +Pc +0.083955 0.058015 0.068391 0 0.929412 0.929412 0.929412 Xa +(C=0 M=0 Y=0 K=10) +Pc +0.041901 0.031647 0.036683 0 0.964706 0.964706 0.964706 Xa +(C=0 M=0 Y=0 K=5) +Pc +1 (Strahlende Farben) 1 Pg +0.001648 0.996399 0.976776 0.001984 0.890196 0.023529 0.07451 Xa +(C=0 M=100 Y=100 K=0) +Pc +0.008301 0.746029 1 0 0.917647 0.356863 0.047059 Xa +(C=0 M=75 Y=100 K=0) +Pc +0.022705 0.091249 0.917052 0 1 0.870588 0 Xa +(C=0 M=10 Y=95 K=0) +Pc +0.834714 0.101381 1 0.007813 0 0.596078 0.227451 Xa +(C=85 M=10 Y=100 K=0) +Pc +1 0.87863 0.075715 0.005524 0.152941 0.203922 0.545098 Xa +(C=100 M=90 Y=0 K=0) +Pc +0.602258 0.894011 0 0.000824 0.509804 0.211765 0.54902 Xa +(C=60 M=90 Y=0 K=0) +Pc +PB +%AI5_EndPalette +%AI5_Begin_NonPrinting +Np +%AI9_BeginArtStyleList +([Standard]) +(Schlagschatten) +(Abgerundete Ecken 2 Pt.) +(Interaktiv X spiegeln) +(Weich abgeflachte Kante) +(Abenddämmerung) +(Laub_GS) +(Pompadour_GS) +%AI9_EndArtStyleList +%AI5_End_NonPrinting-- +%AI5_Begin_NonPrinting +Np +%AI10_BeginSymbolList +(Prozessrechteck) +(Vektorschmutz) +(Leuchtendes Orange) +(Schnittmarken \(9-Slice\)) +(Band) +(Gerbera) +%AI10_EndSymbolList +%AI5_End_NonPrinting-- +%AI9_BeginDocumentData +%_/Document : +%_/Dictionary : +%_/XMLNode : +%_/Dictionary : +%_; (xmlnode-attributes) , +%_/Array : +%_/XMLNode : +%_/Dictionary : +%_; (xmlnode-attributes) , +%_/Array : +%_/XMLNode : +%_/Dictionary : +%_/XMLNode : +%_/Dictionary : +%_; (xmlnode-attributes) , +%_/Array : +%_; (xmlnode-children) , +%_2 /Int (xmlnode-nodetype) , +%_(&ns_vars;) /String (xmlnode-nodevalue) , +%_(xmlns) /String (xmlnode-nodename) , +%_; (xmlns) , +%_; (xmlnode-attributes) , +%_/Array : +%_/XMLNode : +%_/Dictionary : +%_/XMLNode : +%_/Dictionary : +%_; (xmlnode-attributes) , +%_/Array : +%_; (xmlnode-children) , +%_2 /Int (xmlnode-nodetype) , +%_(binding1) /String (xmlnode-nodevalue) , +%_(varSetName) /String (xmlnode-nodename) , +%_; (varSetName) , +%_/XMLNode : +%_/Dictionary : +%_; (xmlnode-attributes) , +%_/Array : +%_; (xmlnode-children) , +%_2 /Int (xmlnode-nodetype) , +%_(none) /String (xmlnode-nodevalue) , +%_(locked) /String (xmlnode-nodename) , +%_; (locked) , +%_; (xmlnode-attributes) , +%_/Array : +%_/XMLNode : +%_/Dictionary : +%_; (xmlnode-attributes) , +%_/Array : +%_; (xmlnode-children) , +%_1 /Int (xmlnode-nodetype) , +%_ /String (xmlnode-nodevalue) , +%_(variables) /String (xmlnode-nodename) , +%_; , +%_/XMLNode : +%_/Dictionary : +%_/XMLNode : +%_/Dictionary : +%_; (xmlnode-attributes) , +%_/Array : +%_; (xmlnode-children) , +%_2 /Int (xmlnode-nodetype) , +%_(&ns_vars;) /String (xmlnode-nodevalue) , +%_(xmlns:v) /String (xmlnode-nodename) , +%_; (xmlns:v) , +%_/XMLNode : +%_/Dictionary : +%_; (xmlnode-attributes) , +%_/Array : +%_; (xmlnode-children) , +%_2 /Int (xmlnode-nodetype) , +%_(&ns_custom;) /String (xmlnode-nodevalue) , +%_(xmlns) /String (xmlnode-nodename) , +%_; (xmlns) , +%_; (xmlnode-attributes) , +%_/Array : +%_; (xmlnode-children) , +%_1 /Int (xmlnode-nodetype) , +%_ /String (xmlnode-nodevalue) , +%_(v:sampleDataSets) /String (xmlnode-nodename) , +%_; , +%_; (xmlnode-children) , +%_1 /Int (xmlnode-nodetype) , +%_ /String (xmlnode-nodevalue) , +%_(variableSet) /String (xmlnode-nodename) , +%_; , +%_; (xmlnode-children) , +%_1 /Int (xmlnode-nodetype) , +%_ /String (xmlnode-nodevalue) , +%_(variableSets) /String (xmlnode-nodename) , +%_; , +%_/XMLNode : +%_/Dictionary : +%_/XMLNode : +%_/Dictionary : +%_; (xmlnode-attributes) , +%_/Array : +%_; (xmlnode-children) , +%_2 /Int (xmlnode-nodetype) , +%_(&ns_sfw;) /String (xmlnode-nodevalue) , +%_(xmlns) /String (xmlnode-nodename) , +%_; (xmlns) , +%_; (xmlnode-attributes) , +%_/Array : +%_/XMLNode : +%_/Dictionary : +%_; (xmlnode-attributes) , +%_/Array : +%_; (xmlnode-children) , +%_1 /Int (xmlnode-nodetype) , +%_ /String (xmlnode-nodevalue) , +%_(slices) /String (xmlnode-nodename) , +%_; , +%_/XMLNode : +%_/Dictionary : +%_/XMLNode : +%_/Dictionary : +%_; (xmlnode-attributes) , +%_/Array : +%_; (xmlnode-children) , +%_2 /Int (xmlnode-nodetype) , +%_357.6152 /Real (xmlnode-nodevalue) , +%_(width) /String (xmlnode-nodename) , +%_; (width) , +%_/XMLNode : +%_/Dictionary : +%_; (xmlnode-attributes) , +%_/Array : +%_; (xmlnode-children) , +%_2 /Int (xmlnode-nodetype) , +%_165.4883 /Real (xmlnode-nodevalue) , +%_(height) /String (xmlnode-nodename) , +%_; (height) , +%_/XMLNode : +%_/Dictionary : +%_; (xmlnode-attributes) , +%_/Array : +%_; (xmlnode-children) , +%_2 /Int (xmlnode-nodetype) , +%_-195.7256 /Real (xmlnode-nodevalue) , +%_(y) /String (xmlnode-nodename) , +%_; (y) , +%_/XMLNode : +%_/Dictionary : +%_; (xmlnode-attributes) , +%_/Array : +%_; (xmlnode-children) , +%_2 /Int (xmlnode-nodetype) , +%_265.1924 /Real (xmlnode-nodevalue) , +%_(x) /String (xmlnode-nodename) , +%_; (x) , +%_/XMLNode : +%_/Dictionary : +%_; (xmlnode-attributes) , +%_/Array : +%_; (xmlnode-children) , +%_2 /Int (xmlnode-nodetype) , +%_1 /Bool (xmlnode-nodevalue) , +%_(bottomLeftOrigin) /String (xmlnode-nodename) , +%_; (bottomLeftOrigin) , +%_; (xmlnode-attributes) , +%_/Array : +%_; (xmlnode-children) , +%_1 /Int (xmlnode-nodetype) , +%_ /String (xmlnode-nodevalue) , +%_(sliceSourceBounds) /String (xmlnode-nodename) , +%_; , +%_; (xmlnode-children) , +%_1 /Int (xmlnode-nodetype) , +%_ /String (xmlnode-nodevalue) , +%_(sfw) /String (xmlnode-nodename) , +%_; , +%_; (xmlnode-children) , +%_1 /Int (xmlnode-nodetype) , +%_ /String (xmlnode-nodevalue) , +%_(metadata) /String (xmlnode-nodename) , +%_; , +%_; (xmlnode-children) , +%_9 /Int (xmlnode-nodetype) , +%_ /String (xmlnode-nodevalue) , +%_(#document) /String (xmlnode-nodename) , +%_; (#document) , +%_0 /Real (BleedLeftValue) , +%_0 /Int (CropAreaActive) , +%_/Array : +%_/Dictionary : +%_7747 8091 /RealPoint +%_ (RulerOrigin) , +%_0 /Int (DisplayMark) , +%_(Zeichenfläche 1) /UnicodeString (Name) , +%_1 /Real (PAR) , +%_888 -200 /RealPointRelToROrigin +%_ (PositionPoint2) , +%_0 0 /RealPointRelToROrigin +%_ (PositionPoint1) , +%_1 /Bool (IsArtboardDefaultName) , +%_; , +%_; (ArtboardArray) , +%_/Dictionary : +%_36 /Real (padd) , +%_0 /Bool (mask) , +%_1 /Bool (spot) , +%_0 /Bool (alis) , +%_72 /Int (dpi.) , +%_4 /Int (colr) , +%_; (AI Auto Rasterize) , +%_0 /Bool (AI11 document knockout group) , +%_0 /Bool (AI11 document isolate blending) , +%_0 /Bool (AI9 paper simulation) , +%_1 /Int (AI9 artboard color) , +%_2 /Int (AI9 transparency grid size) , +%_52428 /Int (AI9 artboard color 2 blue) , +%_52428 /Int (AI9 artboard color 2 green) , +%_52428 /Int (AI9 artboard color 2 red) , +%_65535 /Int (AI9 artboard color 1 blue) , +%_65535 /Int (AI9 artboard color 1 green) , +%_65535 /Int (AI9 artboard color 1 red) , +%_16383 /Int (AIDocumentCanvasSize) , +%_1 /Bool (AI11 Preserve Text Editability) , +%_42 /Int (AI11 Document Setup Language Popup) , +%_([Mittlere Auflösung]) /UnicodeString (AI11 Document Setup Flattener Preset Name) , +%_150 /Real (AI9 Mesh Rasterization Resolution) , +%_300 /Real (AI9 Output Rasterization Resolution) , +%_5 /Real (GlobalRepulsion) , +%_0 /Real (BleedRightValue) , +%_0 /Real (BleedTopValue) , +%_6553 /Int (PerspectiveGrid_LeftRed) , +%_1 /Bool (AI10 flattener clip complex regions) , +%_75 /Int (AI10 flattener raster-vector balance) , +%_8431 8316 /RealPoint +%_ (PerspectiveGrid_RightPlaneCellExtent) , +%_1 /Bool (AI10 flattener preserve overprints) , +%_100 /Real (kAIParametersSubsetFontsRatioKey) , +%_8191 7941 /RealPoint +%_ (PerspectiveGrid_LeftPlaneTopPoint) , +%_7711 8191 /RealPoint +%_ (PerspectiveGrid_LeftVanishingPoint) , +%_8191 7941 /RealPoint +%_ (PerspectiveGrid_RightPlaneTopPoint) , +%_0 /Int (PerspectiveGrid_RulerOriginIndexSecond) , +%_8191 8441 /RealPoint +%_ (PerspectiveGrid_LeftPlaneBottomPoint) , +%_7951 8316 /RealPoint +%_ (PerspectiveGrid_LeftPlaneCellExtent) , +%_8191 8441 /RealPoint +%_ (PerspectiveGrid_RightPlaneBottomPoint) , +%_0 /Int (PerspectiveGrid_RulerOriginIndexFirst) , +%_8671 8191 /RealPoint +%_ (PerspectiveGrid_RightVanishingPoint) , +%_0 /Int (PerspectiveGrid_RightPlaneVisibilityState) , +%_0 -500 /RealPoint +%_ (PerspectiveGrid_RelativeFloorVanishingPoint) , +%_0 /Int (PerspectiveGrid_FloorPlaneVisibilityState) , +%_0 /Int (PerspectiveGrid_LeftPlaneVisibilityState) , +%_0 /Int (PerspectiveGrid_Unit) , +%_0 /Real (BleedBottomValue) , +%_1 1 /RealPoint +%_ (PerspectiveGrid_Scale) , +%_2 /Int (PerspectiveGrid_Type) , +%_1 /Int (AI12_SpotColorMode) , +%_/Dictionary : +%_/Array : +%_; (SelHatDocInterIDsArray) , +%_/Array : +%_; (SelHatDocLocalNamesArray) , +%_; (SelHatDocTableDict) , +%_0 /Real (PerspectiveGrid_FloorOffset) , +%_45874 /Int (PerspectiveGrid_FloorGreen) , +%_45 /Real (PerspectiveGrid_LeftFaceAngle) , +%_26214 /Int (PerspectiveGrid_LeftGreen) , +%_8191 8441 /RealPoint +%_ (PerspectiveGrid_StationPoint) , +%_480 /Real (PerspectiveGrid_ViewingDistance) , +%_580 /Real (PerspectiveGrid_RightExtent) , +%_65535 /Int (PerspectiveGrid_RightRed) , +%_0 /Int (PerspectiveGrid_RightBlue) , +%_580 /Real (PerspectiveGrid_LeftExtent) , +%_1 /Int (kAIParametersWhichProfileKey) , +%_32767 /Int (PerspectiveGrid_FloorBlue) , +%_0 /Bool (kAIParametersCompression) , +%_50 /Real (PerspectiveGrid_RightOpacity) , +%_0 /Int (kAIParametersEmbedProfileKey) , +%_32767 /Int (PerspectiveGrid_RightGreen) , +%_1 /Bool (kAIParametersPDFCompatibility) , +%_45 /Real (PerspectiveGrid_RightFaceAngle) , +%_50 /Real (PerspectiveGrid_LeftOpacity) , +%_0 /Bool (AI10 flattener outline text) , +%_30 /Real (PerspectiveGrid_CellSize) , +%_0 /Bool (AI16 flattener anti alias) , +%_(14.0.0) /String (kAIFullDocumentVersionStr) , +%_1 /Bool (AI10 flattener outline strokes) , +%_4 /Int (AI9 Flattening Quality Level) , +%_50 /Real (PerspectiveGrid_FloorOpacity) , +%_15 /Real (PerspectiveGrid_CellCount) , +%_250 /Real (PerspectiveGrid_HorizonHeight) , +%_32767 /Int (PerspectiveGrid_FloorRed) , +%_58981 /Int (PerspectiveGrid_LeftBlue) , +%_; /Recorded , +%_/Dictionary : /NotRecorded , +%_1 /Int (LastArtboardID) , +%_([Medium Resolution]) /String (AI12 AI Flattener Preset Name) , +%_0 /Bool (AI16 AI Anti Aliasing) , +%_1 /Bool (AI12 AI Clip Complex Regions) , +%_1 /Bool (AI12 AI Outline Strokes) , +%_0 /Bool (AI12 AI Outline Text) , +%_75 /Int (AI12 AI Raster/Vector Balance) , +%_1 /Int (AI12 AI Overprints) , +%_([Medium Resolution]) /String (AI11 EPS Flattener Preset Name) , +%_0 /Bool (AI16 EPS Anti Aliasing) , +%_1 /Bool (AI11 EPS Clip Complex Regions) , +%_1 /Bool (AI11 EPS Outline Strokes) , +%_0 /Bool (AI11 EPS Outline Text) , +%_75 /Int (AI11 EPS Raster/Vector Balance) , +%_1 /Int (AI11 EPS Overprints) , +%_1 /Bool (AI9 no overprint in composite) , +%_/Dictionary : /NotRecorded , +%_ /String (/attributes/job.pagerange) , +%_1 /Int (/attributes/job.printall) , +%_1 /Int (/attributes/job.skipblank) , +%_0 /Int (/attributes/job.reverseorder) , +%_0 /Int (/attributes/job.collate) , +%_() /UnicodeString (/attributes/job.artboardrange) , +%_1 /Int (/attributes/job.printallartboards) , +%_; (AI11 Print JobInfo Dict) , +%_/Dictionary : /NotRecorded , +%_([Standard]) /UnicodeString (/attributes/collectionName) , +%_1 /Int (/attributes/stl.defaultprinter) , +%_() /UnicodeString (/attributes/stl.printername) , +%_() /UnicodeString (/attributes/stl.ppdmodelname) , +%_1 /Int (/attributes/stl.defaultppd) , +%_() /UnicodeString (/attributes/stl.customppd) , +%_0 /Int (/attributes/ppr.custom) , +%_1 /Int (/attributes/ppr.default) , +%_612 /Real (/attributes/ppr.width) , +%_792 /Real (/attributes/ppr.height) , +%_0 /Real (/attributes/ppr.image.left) , +%_0 /Real (/attributes/ppr.image.top) , +%_612 /Real (/attributes/ppr.image.right) , +%_792 /Real (/attributes/ppr.image.bottom) , +%_(Durch Treiber definiert) /UnicodeString (/attributes/ppr.name) , +%_0 /Real (/attributes/cppr.width) , +%_0 /Real (/attributes/cppr.height) , +%_0 /Real (/attributes/cppr.woffset) , +%_0 /Real (/attributes/cppr.hoffset) , +%_0 /Int (/attributes/cppr.trans) , +%_0 /Int (/attributes/job.designation) , +%_2 /Int (/attributes/job.printbounds) , +%_1 /Int (/attributes/job.printofile) , +%_0 /Int (/attributes/job.printasbitmap) , +%_() /UnicodeString (/attributes/job.name) , +%_0 /Int (/attributes/clr.mode) , +%_0 /Int (/attributes/clr.convertspots) , +%_0 /Int (/attributes/clr.overprintblack) , +%_720 /Int (/attributes/crd.orientation) , +%_0 /Int (/attributes/crd.fliphorz) , +%_5 /Int (/attributes/crd.position) , +%_0 /Real (/attributes/crd.org.h) , +%_0 /Real (/attributes/crd.org.v) , +%_100 /Real (/attributes/crd.scale.h) , +%_100 /Real (/attributes/crd.scale.v) , +%_0 /Int (/attributes/crd.scplcy) , +%_1 /Int (/attributes/crd.sccnst) , +%_0 /Int (/attributes/crd.tiling) , +%_0 /Real (/attributes/crd.overlap.h) , +%_0 /Real (/attributes/crd.overlap.v) , +%_0 /Int (/attributes/pgmk.enabled) , +%_0 /Int (/attributes/pgmk.style) , +%_() /UnicodeString (/attributes/pgmk.customfile) , +%_() /UnicodeString (/attributes/pgmk.jobtitle) , +%_0.25 /Real (/attributes/pgmk.deflinewidth) , +%_0 /Int (/attributes/pgmk.bleed) , +%_0 /Int (/attributes/pgmk.crop) , +%_0 /Int (/attributes/pgmk.pageinfo) , +%_0 /Int (/attributes/pgmk.registration) , +%_0 /Int (/attributes/pgmk.colorbars) , +%_0 /Real (/attributes/pgmk.bleedoff.left) , +%_0 /Real (/attributes/pgmk.bleedoff.top) , +%_0 /Real (/attributes/pgmk.bleedoff.right) , +%_6 /Real (/attributes/pgmk.marksoff.left) , +%_6 /Real (/attributes/pgmk.marksoff.top) , +%_6 /Real (/attributes/pgmk.marksoff.right) , +%_1 /Int (/attributes/fnt.dlmode) , +%_0 /Int (/attributes/fnt.dlprfonts) , +%_0 /Int (/attributes/fnt.subst) , +%_3 /Int (/attributes/ps.level) , +%_0 /Int (/attributes/ps.binary) , +%_0 /Int (/attributes/ps.negative) , +%_0 /Int (/attributes/ps.compression) , +%_0 /Int (/attributes/ps.contone) , +%_0 /Int (/attributes/ps.l1compat) , +%_300 /Real (/attributes/ps.shaderes) , +%_0 /Int (/attributes/ps.setflatness) , +%_1 /Real (/attributes/ps.flatness) , +%_75 /Int (/attributes/xp.balance) , +%_300 /Int (/attributes/xp.rresolution) , +%_150 /Int (/attributes/xp.gresolution) , +%_0 /Int (/attributes/xp.converttext) , +%_1 /Int (/attributes/xp.convertstroke) , +%_1 /Int (/attributes/xp.clip) , +%_0 /Int (/attributes/xp.antialiasing) , +%_0 /Int (/attributes/xp.opco) , +%_0 /Int (/attributes/xp.opse) , +%_0 /Int (/attributes/xp.opdu) , +%_([Mittlere Auflösung]) /UnicodeString (/attributes/xp.name) , +%_0 /Int (/attributes/rdrs.enabled) , +%_0 /Int (/attributes/rdrs.func) , +%_1 /Real (/attributes/rdrs.flatteness) , +%_() /UnicodeString (/attributes/rdrs.annot) , +%_ /String (/attributes/rdrs.custom) , +%_1 /Int (/attributes/cm.mode) , +%_(Coated FOGRA39 \(ISO 12647-2:2004\)) /UnicodeString (/attributes/cm.profile) , +%_2 /Int (/attributes/cm.inteint) , +%_1 /Int (/attributes/cm.preservecmyk) , +%_0 /Int (/attributes/cm.preserveother) , +%_0 /Real (/attributes/pgmk.bleedoff.bottom) , +%_6 /Real (/attributes/pgmk.marksof +endstream endobj 103 0 obj <>stream +f.bottom) , +%_1 /Int (/attributes/pgmk.bleedoff.useDocBleeds) , +%_0 /Int (/attributes/job.bitmapresolution) , +%_; (AI11 Print Attribute Dict) , +%_0 /Bool (AI15 Document PixelPerfect) , +%_42 /Int (AI11 Document Setup Language Popup) , +%_150 /Real (AI12 AI Gradient and Mesh Resolution) , +%_300 /Real (AI12 AI Line Art and Text Resolution) , +%_150 /Real (AI11 EPS Gradient and Mesh Resolution) , +%_300 /Real (AI11 EPS Line Art and Text Resolution) , +%_0 /Bool (AISaveMultipleArtboards) , +%_/Dictionary : /NotRecorded , +%_0 /Int (/attributes/inklst.count) , +%_; (AI11 Ink List Dict) , +%_(Adobe PDF-Vorgabe.joboptions) /String (AI12 Job Options Name) , +%_7842 /Int (AI12 Job Options Size) , +%_1 /Bool (PerspectiveGrid_Snap) , +%_/Binary : /ASCII85Decode , +%4?O&[+M4?:L\'M@ruc7FE2M8%144#00sDjDg,0$@;^.*@<,ps@sK2/ +%@;L!r%144#00sJtBgHQL@<4eSCi=>cD..'gF!,('Cia.s$6UHE6#LdY6#:7DF%:7ZGtDj]B4Z-,AmoLsAISth+>6#uFD4$WBjl'W +%Df0JbD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC.VCi=>cD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC:]@6#sC^g^o+>6&qDIdI!B-8j$AS-#n$6UHE6Xadu +%9j(+cEc5Q(Ch4_;VJ#h;ccak>VJ#i+EfLh%144#010/a7ri$`:i^JdBl%?'-r+\uALS&q+7Co^+n%,`+>6*#Ci=>[6W6Qn@:s.>Bk)6-4?O&[+F<4+>E,2D?g=%144#+7Co^+OB5+6>`77Rdo+6*#Ci=>cD..'g +%6tp.Q+?Vaq$6UH6+>68a@;Tt"ATJtu%144#+F<4+6S]@:OCt +%EZd%g2`OB5+n%,`+?hsu$6UHE +%6Z6dZE_1+VB4XJLGA_J1D/a<&<+p;`F(fK.A06*#Ci=>cD..'g6uR9eF(&p)Ch6RkE+L.F:2b#]%144#010Yo +%DfSEd@:s.@Bl%m&EZd#)CghEs7;cURA7Z2W+6*#Ci=>cD..'g9keKC +%ATMd+F`_>9DBLYk0F\@3+>6*#Ci=>cD..'g9keKCATMd+F`_>9DGY7fBk)E202G4M$6UHE6Z6dZE_1+VB4XtPF)Pl;FD5Z2+>G`- +%%144#010YoDfScfFED57B6-OVCh4_;.1HV,+>6*#D/`p*BjtdmBlnVoAThX$+>GK+%144#010YpE,oN2F&-7[ARfh'+>6N&Ado(i +%+>6*#D/aN,F)t/dB4Z-,FE2M8%144#010YqG%G]98SqmKATLgh8T&'MG\(D.FE2M8%144#010bk@2FT;R2Dd*A2DHm>2_m'@2Dd*A2Dm0B2E2Dm0B2E2`*3B2F]AS2_m'@1.3fM1c-m?2DHm>2`*3B +%2Dm0B2E2FB/P2`!-A1,(C92)$^<1c-m?1c@$A1.3fM1c-m?2F]AS2F9)O2`39C2FK5Q2Dm0B2FT;R2`*3B1.2`*3B2Dm0B2E75Q\P2`*3B2Dm0B +%2_m'@1,(C92E2`*3B2F]AS2_m'@1,(C92F]AS2Dd*A2Dm0B +%2_m'@1,(C92E2`WQG2F]AS2`39C2`*3B2_Zp>2_m'@2F]AS +%2E*2FK5Q2FK5Q1,(C92`EEE2E2_m'@2DQs?2Dm0B2E2`*3B2Dm0B2E2FT;R2FT;R2`*3B +%1,(C92E6,oFCes(6>U4NA9/l8Eckq&$6UHE6tLIO@rt(\Ecu#8+>>E&0JG17%144#019_X +%BQ\0$DII6qF!,RFF_)!h+6-$GA_J1D/a<&9lFof8SqmKATJu+@;L!r%144#01B_eARn)CCdr>\FE8RHEckq&$6UHE7;ZLFA4gcL:N1DiDf0V=AmoLsAISth +%+>60#@V'(GE+NodH#R=;AmoLsAISth+>60#BllaA6W[]:DJ=!$F!,('Cia.s$6UHE7;cURA7\,HCi=>cD..'gF!,RFF_)!h+66*@OB5+n%,`+6bo@;Tt"ATJtu%144#+F<4+66* +%@66*@Bk)6-4?O&[+F<4+>E,2D?g=%144# +%+7Co^+OB5+66*@6M`%144#01U%kGtDj]B4XtPF)Pl;FD5Z2+>G`-%144#01g"hB4XeKD/XH?+>GQ, +%3&NWQ%144#01o&07kubP0LKbpDfS-2;b:h7B4XJF@rrhU4:MW?+6].Ch6[^A9;K-1,Us!$6UHT4q.iA+>6>`77T*e0JGk4Ci=>cD..'g6tp.Q+?Vaq$6UH6+>6T7@;KY"Gp"h!%144#+6T7@;KY" +%Gp"h!%144#+6GtGZ/`oF(KGi@rrhJ0JEqC+f@%144#5!BD_+6H-DJr*`@:s.@Bl%m&EZd#)CghEs7;cURA7Z2W+9DBL_h0F\@3+>6H- +%DJr*`@:s.GBl6g[F)Pl;FD5Z2:iC/a@sK1M:J2-(+n%,`+>6Me9cu/"$6UHE:N1DiD/"<-+D,%uF(Gdf+6<(@r-9uAOglWA7]gPEbT'*+D,%uF(Gdf+6JuD.Rd-@:Njk>7Co^+6E"B45:q%144#+&S=r<,Y<,9h\#pDKJfkH=\42@;L!r%144#+\ASuTuFD5Z2+>6Q0 +%Ecc>1Bljdk+6Z,EbTE,6Z6jaASuT4FE2M8%144#+6`9AOUHFARo=_A5I;bAnc'mF!,('Cia.s$6UH6+6<(@r-9uAOq)cATDU$DJO;9AmoLsAISth+6<(@r-9uAP$c]ATD3hFD5o0+D,%uF(Gdf+6<(@r-9uAPdDcAnc'mF!,('Cia.s$6UH6+6GtEbf_tASGdjF0F\@3+6H3CijB.ARoL`87?CHCh[d"+>6`9APZcMARfg\ATW$.DJ+#"$6UH6+n%,`+6PZ7T`H/FDuAE8T&W] +%DKJ]qDe<^"AQ*/VARfh#EZd#15n+/D+6Q"B4XeGEbf_cBl%?'02c_*@;\JEAmoguF:AR"+6Q3ATMF'G%F*QBln', +%B-;;:F_)!h+6`9AOLHHF_t]-F@'eTARlp*Eckq&$6UH6+?hsu$6UHs%144#02P&+=@-h8ARn,GGZ8T\EbTAW +%Dg5&iAohO*+Bo9^+=63+6PZ7T`H/FDuAE6Z6jQBln'-DFnAMDKKT) +%Bk;<--n,T4+6PZ7T`Q"B5)F/Ed:DgD.Oh<.1HV,+>6PZ7T`T#F@'eTARn,G +%GZ8TUARoL`6>q)kFE2M8%144#02P&+=B'62mCia.s$6UHE:ddcT<,u\i6>q*JDbXeRBjj>HGY_p`F(KG9>7Co^+=63+6Q3ATMF'G%FHmATDa1Bl8#kATW$.DJ+#5FE2M8%144#02lt$Ecb,dB4W2?%144#02m"&F(KG_Df0Z<+EVXHAISth +%+>6]7@;^-uATC7_DI[d&Df/-aAoAeF:i^,gATDs*%144#03(A;@;]UB7nIT1D]g]2ASl@/AISth+>6`9APdDcCi +%_; (AI12 Job Options Data) , +%_/Dictionary : /NotRecorded , +%_([Illustrator-Standard]) /UnicodeString (/attributes/collectionName) , +%_1 /Int (/attributes/AI11PDF_PreserveIllustratorEditingCapabilities) , +%_300 /Int (/attributes/AI11PDF_MonochromeDownsampleResolution) , +%_1 /Int (/attributes/AI12PDF_OutputIntentProfileNamePolicy) , +%_75 /Int (/attributes/AI10 flattener raster-vector balance) , +%_0 /Real (/attributes/AI11PDF_BleedLeft) , +%_1 /Int (/attributes/AI12PDF_Standard) , +%_0 /Int (/attributes/AI11PDF_TrimMarks) , +%_0 /Int (/attributes/AI11PDF_PageInfo) , +%_0 /Real (/attributes/AI11PDF_BleedTop) , +%_0 /Real (/attributes/AI11PDF_BleedBottom) , +%_0 /Int (/attributes/AI11PDF_RegMarks) , +%_1 /Int (/attributes/AI11PDF_CompressArt) , +%_0 /Real (/attributes/AI11PDF_BleedRight) , +%_(Dies sind die Standardeinstellungen beim Speichern einer Illustrator-Datei als PDF-Dokument. Verwenden Sie diese Einstellungen, wenn Sie die Datei später in Illustrator oder in einem Layoutprogramm wie z. B. InDesign bearbeiten möchten oder der endgültige Verwendungszweck der Datei unbekannt ist.) /UnicodeString (/attributes/AI12PDF_Description) , +%_0 /Int (/attributes/AI11PDF_FastWebView) , +%_1 /Int (/attributes/AI11PDF_BleedLink) , +%_1 /Int (/attributes/AI11PDF_Overprint) , +%_0 /Int (/attributes/AI11PDF_ColorBars) , +%_0 /Int (/attributes/AI12PDF_Trapped) , +%_1 /Int (/attributes/AI14PDF_DocBleed) , +%_1 /Int (/attributes/AI11PDF_ColorDownsampleKind) , +%_0.25 /Real (/attributes/AI11PDF_TrimMarkWeight) , +%_() /UnicodeString (/attributes/AI12PDF_OutputCondition) , +%_1 /Int (/attributes/AI12PDF_DestinationPolicy) , +%_() /UnicodeString (/attributes/AI12PDF_DestinationName) , +%_() /UnicodeString (/attributes/AI12PDF_RegistryName) , +%_0 /Int (/attributes/AI11PDF_PrinterMarkType) , +%_0 /Int (/attributes/AI16 flattener anti alias) , +%_6 /Int (/attributes/AI11PDF_GrayCompressionKind) , +%_1 /Int (/attributes/AI11PDF_GenerateThumbnails) , +%_0 /Int (/attributes/AI11PDF_FlattenTransparency) , +%_0 /Int (/attributes/AI12PDF_UsePrintTiling) , +%_256 /Int (/attributes/AI11PDF_GrayTileSize) , +%_100 /Int (/attributes/AI11PDF_SubsetFontRatio) , +%_1 /Int (/attributes/AI11PDF_GrayDownsampleKind) , +%_3 /Int (/attributes/AI11PDF_Compatibility) , +%_0 /Int (/attributes/AI10 flattener outline text) , +%_256 /Int (/attributes/AI11PDF_ColorTileSize) , +%_() /UnicodeString (/attributes/AI12PDF_OutputIntentProfileName) , +%_225 /Int (/attributes/AI11PDF_ColorDownsampleImageAbove) , +%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkTop) , +%_1 /Int (/attributes/AI11PDF_PreserveAcrobatLayers) , +%_4 /Int (/attributes/AI11PDF_MonochromeCompressionKind) , +%_225 /Int (/attributes/AI11PDF_GrayDownsampleImageAbove) , +%_1 /Int (/attributes/AI11PDF_ColorCompressionQuality) , +%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkRight) , +%_() /UnicodeString (/attributes/AI12PDF_OutputConditionIdentifier) , +%_1 /Int (/attributes/AI10 flattener clip complex regions) , +%_150 /Int (/attributes/AI11PDF_GrayDownsampleResolution) , +%_6 /Int (/attributes/AI11PDF_ColorCompressionKind) , +%_([Mittlere Auflösung]) /UnicodeString (/attributes/AI11PDF_FlatteningPresetName) , +%_150 /Real (/attributes/AI9 Mesh Rasterization Resolution) , +%_450 /Int (/attributes/AI11PDF_MonoDownsampleImageAbove) , +%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkLeft) , +%_1 /Int (/attributes/AI12PDF_ColorConversionPolicy) , +%_1 /Int (/attributes/AI11PDF_MonochromeDownsampleKind) , +%_150 /Int (/attributes/AI11PDF_ColorDownsampleResolution) , +%_300 /Real (/attributes/AI9 Output Rasterization Resolution) , +%_1 /Int (/attributes/AI11PDF_GrayCompressionQuality) , +%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkBottom) , +%_1 /Int (/attributes/AI10 flattener outline strokes) , +%_1 /Int (/attributes/AI12PDF_ProfileInclusionPolicy) , +%_; (PDFPresetCollection) , +%_0 /Bool (PerspectiveGrid_ShowHide) , +%_1 /Int (AI9 Document Setup panel) , +%_0 /Int (PerspectiveGrid_ActivePlane) , +%_; /NotRecorded , +%_; +%AI9_EndDocumentData +%AI11_BeginTextDocument +/AI11TextDocument : /ASCII85Decode , +%+>5`7+?Vb/0/+M-+?ht30/+M240/+M24k&!+c.Q!+c.(!)rqs!-A3O!%e1N!,MXW!)*B7.3L9!+>=p%4s3$Q+?ht34?O`>0H`J?+>5`8+>6*#DerBuE+MLW +%DKI!S0H`J?+>5Dk./s5H8-!3$C]JVYAH6fPB`MWC@/s%&AH6iQAH5C(;ufhsF9#hO/HAHEF=A=c1*A7n5!C)Q4s3$Q+?Vb/0/+M2 +%40/+M24k&!+c.Q!+c.(!)rqs!-A3O!%e1K!,hjS!+>kF +%.3L9!+>=p%4s3$Q+?ht34?O`>0H`J?+>5`8+>6*#DerBuE+MLWDKI!S0H`J?+>5Dk./s5H9`TG=EWBeR@/sg<:]PM9DZD?h;?18. +%B)m&SC]IlDE[`+a1*A7n5!C)Q4s3$Q+?Vb/0/+M240/+M24=p%4s3$Q+?ht3>p)5Jm4?O`>0HaRB4?O`>0H`J?+>5Dk./s5q+>5Sp4?O`>0HaRB4?O`>0H_eC +%s8FnT2(9Y$0d&1n5!C)O4G!&4s2sM+>5Dk./s8G3W;#f+>5Gl0d&YD+?Vb/0/+Lsrr;sZr];PO0/4S( +%+?ht34?O`>0H_eCs8G1\4XhL,0d&1n5!C)O4G!&4s2sM+>5Dk./s8G62j/!+>5Gl0d&YD+?Vb/0/+Ls +%rr;sbr^/+W0/4S(+?ht34?O`>0H_eCs8NB)#UplL0d&1n5!C)O4G!&4s2sM+>5Dk./s8H>Q7nV+>5Gl +%0d&YD+?Vb/0/+Lsrr4)X+;cOM0/4S(+?ht34?O`>0H_eCru`:(*%G!&4s2sM+>5Dk +%./s6#$8;f9+>5Gl0d&YD+?Vb/0/+Lsrr4Y\0FTBQ0/4S(+?ht34?O`>0H_eCs"Fp:%OiMR0d&1n5!C)O4G!&4s2sM+>5Dk./s6#'JL4M+>5Gl0d&YD+?Vb/0/+Lsrr;sUr\c2J0/4S)+?ht34?O`>0H_eCs8G"W3%5t'0d&4o5!C)O4.3L8u+>P''4s2sM+>5Dk./s8G4T7Gl+>5Gl1*AbE+?Vb/0/+Lsrr;s]r]VbR0/4S)+?ht34?O`>0H_eCs8G:_5Udg/ +%0d&4o5!C)O4P''4s2sM+>5Dk./s8G7/fS'+>5Gl1*AbE+?Vb/0/+Lsrr +%0H_eCs8P7^4XhL,0d&4o5!C)O4Y1.3L8u+>P''4s2sM+>5Dk./s5h)'BeG+>5Gl1*AbE+?Vb/0/+Lsrr4)]+<;mR +%0/4S)+?ht34?O`>0H_eCs"Fa5#q6uM0d&4o5!C)O4P''4s2sM+>5Dk./s6#%585?+>5Gl1*AbE+?Vb/ +%0/+Lsrr4Y_0FoTT0/4S)+?ht34?O`>0H_eCs"G$=&LehU0d&4o5!C)O4P''4s2sM+>5Dk./s8H&-!.h +%+>5Gl1E\kF+?Vb/0/+Lsrr<")s'@,s0/4S*+?ht34?O`>0H_eCs"H_m5q*p00d&7p5!C)O4Y-(4s2sM +%+>5Dk./s6#75..Z+>5Gl1E\kF+?Vb/0/+Lsrr4ZB0LmQ70/4S*+?ht34?O`>0H_eCs"I"u8LYc80d&7p5!C)O4Y-(4s2sM+>5Dk./s6#K.qp,+>5Gl1E\kF+?Vb/0/+Lsrr4[+0SLqu0/4S*+?ht34?O`>0H_eCs"K3^LFF?!0d&7p5!C)O +%4Y-(4s2sM+>5Dk./s6#SM6T`+>5Gl1E\kF+?Vb/0/+Lsrr4[D0V0^90/4S*+?ht34?O`>0H_eCs"L-# +%Td_*;0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#V(e_p+>5Gl1E\kF+?Vb/0/+Lsrr4[M0W-?B0/4S*+?ht3 +%4?O`>0H_eCs"LE+W@8rC0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#j"TLB+>5Gl1E\kF+?Vb/0/+Lsrr4\6 +%0]a`+0/4S*+?ht34?O`>0H_eCs"NUik:%N,0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#oe?(g+>5Gl1E\kF +%+?Vb/0/+Lsrr4\M0`ELD0/4S*+?ht34?O`>0H_eCs"FU1"XtQI0d&7p5!C)O4b3)4s2sM+>5Dk./s8H +%+9*E3+>5Gl1a"tG+?Vb/0/+Lsrr0H_eCs"O=(q^EX@0d&=r5!C)O4k9* +%4s2sM+>5Dk./s8H%f["f+>5Gl2BY1I+?Vb/0/+Lsrr4YR0EN[G0/4S-+?ht34?O`>0H_eCs8NN-$n3;P0d&Ct5!C)O45Dk./s5h'd+5?+>5Gl3$:CK+?Vb/0/+Lsrr4)e+=8N[0/4S/+?ht34?O`>0H_eCs8N6%"=YHH0d&J! +%5!C)O45Dk./s8Hjo=Ek+>5Gl3?ULL+?Vb/0/+Lsrr>5e0/4S(0H`PC+?Vb/0/+Lsrr4)r+>bMi +%0/4S(0H`PC+?Vb/0/+Lsrr4YP0E(H+?Vb/0/+Lsrr2sA!.H@>0/4S(2BY1I+?Vb/0/+Lsrr2tl!<4Jj +%0/4S(2BY1I+C-*R4s3$Q+?ht3>p(dT+BosN4=p%4s4,R5!C)B1E\eB+>5Dk>9H$j+>5Dk4?O`>0H_eCrr?1%@/t'CFT?7Y +%DZFYTDZE<.@/t0FCB.cCCB/K++>5Sp4?O`>0H`%l0/4S34#3'+>5Jm./s8H#Upl[4s2sM+>5Dk/M8n'0/=Xu +%rr0H_r"2'=P-+=R6h+;cOM5!C)O4#3'+>5Jm./s5h*%5Dk/M8n'0/=Xurr4YX.3Lf<+?Vb/0/+M#/i=b)1*A"Es"Fd/+?ht34?O`>0H_r"2'=P-+=R6h0FTBQ5!C)O4#3'+>5Jm +%./s6#%OiMa4s2sM+>5Dk/M8n'0/=Xurr4Y`.3Lf<+?Vb/0/+M#/i=b)1*A"Es"G-9+?ht34?O`>0d&'=P-+=R6hrs:+s5!C)O +%4#3'+>5Jm./s8H4XhL;4s2sM+>5Gl/M8n'0/=Xurr<"(.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`1.+?ht34?O`>0d&'=P- +%+=R6h+<;mR5!C)O4#3'+>5Jm./s6##q6u\4s2sM+>5Gl/M8n'0/=Xurr4Y[.3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fm2+?ht3 +%4?O`>0d&'=P-+=R6h0FoTT5!C)O4#3'+>5Jm./s6#&Lehd4s2sM+>5Gl/M8n'0/=Xurr4Ye.3Lf<+?Vb/0/4S$/i=b) +%1*A"Es8NQX+?ht34?O`>0d&'=P-+=R6h0EN[G5!C)O4#3'+>5Jm./s8H$n3;_4s2sM+>5Gl/M8n'0/=Xurr4YQ.3Lf< +%+?Vb/0/+M#/i#:,0/4S$/i#:,0/=XurrFul +%0d'[C4?O`>0HaRB0d&=r>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)p+?ht34?O`>0H`+n0/4SR +%+?Vb/0/+MQ+>P&o+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4P'F+>5Gl4?O`> +%0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D1E]sG0/4S34>E%+>>E%+>,Mo +%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*ACr>p(dT+?Vb/0/+M245Dk +%>9G[D2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>P&u+C-*C0d&S@+>5Dk4?O`> +%0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1*AP!>p(dT+?Vb/0/+M245Gl +%1E\kF+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&o +%0HaXD0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;++C-*C0d&S@+>5Dk4?O`>0HaRB +%0J5%%0J5%%0J5%%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;,+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF +%+?ht35!C)O4GYp>p(dT+?Vb/0/+M245Dk>9G[D0f1"Y +%+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&o2'?0I0/4S34>E% +%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht3 +%5!C)p+?ht34?O`>0H`.o0/4SR+?Vb/0/+MQ+>Y,p+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O +%4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,t+C-*C0d&S@+>5Gl4?O`> +%0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1E\V!>p(dT+?Vb/0/4S345Gl +%1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y-#+C-*C +%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9G^E0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p +%1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% +%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O +%4Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht34?O`>0H`1p0/4SR+?Vb/ +%0/+MQ+>b2q+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0d&S@ +%+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GaF2]uBK0/4S34>E%+>>E%+>>E%+C-*C +%0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>b2q2'?0I0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk +%>9GaF0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`4q0/4SR+?Vb/0/+MQ +%+>k8r+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=Xs>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S( +%+?ht35!C)Q4s2sM+>5Dk>9GdG1a$'H0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9! +%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2BZ9J0/4S34,E, +%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9#+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q +%+?ht34?O`>0HaRB2'=k$>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl +%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u' +%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q +%4s2sM+>5Dk>9GdG0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f'qX+>5Gl +%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u' +%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q +%4s2sM+>5Dk>9GdG0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s4,R5!C)O4t>q0d'[C +%4?O`>0HaRB2BX^s>p(dT+?Vb/0/+M245Dk>9GgH1E]sG0/4S34>E%+>>E%+>,Mo>p)b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q +%+?ht34?O`>0HaRB2BXk">p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl +%4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GgH3$;KL0/4S34>E%+>>E% +%+>,Mo>p)5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB2BX_. +%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&% +%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB2BX_0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH +%0f'qX+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB2BX_2+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% +%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/ +%0/+MQ+>t>s2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk +%>9GjI0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sn!>p(dT+?Vb/0/+M245Dk>9GjI1a$'H0/4S34>E%+>>E%+>,Mo>p(dT+>P'' +%4s3$Q+?ht34?O`>0HaRB2]st#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI3$;KL0/4S34>E% +%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]t+'>p(dT+?Vb/0/+M245Dk>9GjI0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(Dt1*BjF0/4S3 +%4>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh2+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%% +%/i=bW+>5Gl1*AbE+?ht35!C)O4G\q>p(dT+?Vb/0/+M245Dk>9GjI0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(Dt2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GmJ0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB3$:"">p(dT+?Vb/0/4S345Dk>9GmJ2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?1K&+C-*C +%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB3$:1'>p(dT+?Vb/0/4S345Dk>9GmJ3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB +%3$9q0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9GmJ0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ +%0/+MQ+?1Ju1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q5+C-*C0d&S@+>5Gl4?O`> +%0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S340HaRB3?U%!>p(dT+?Vb/0/4S345Dk>9GpK1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U1%>p(dT+?Vb/ +%0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&% +%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GpK3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB +%3?U=)>p(dT+?Vb/0/4S345Dk>9GpK0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP +%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> +%0HaRB3?U%4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G\q>p(dT+?Vb/0/4S345Dk>9GpK0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q +%4s3$Q+?Vb/0/+MQ+?:Q!2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Dk>9GXS+>Y-G+>5Gl +%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm2'?0I0/4S34>E%+>,E,+>,E, +%+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GPm2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/ +%0/+MQ+>GPm3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_1+C-*C0d&S@+>5Gl4?O`> +%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.& +%>p)5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`))+>5Gl>9H$j+>5Dk>9GXT +%+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXT+?(EK+>5Gl4?O`>0d&S@+>5Dk +%>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXT+>G_r>p(dT+?Vb/0/4S345Gl +%1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Dk>9GXU +%+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2'?0I0/4S34>E% +%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q +%4s3$Q+?Vb/0/+MQ+>GVo3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk3+C-*C0d&S@ +%+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.& +%>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%% +%0J5%%0eP.&>p)5Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3 +%4?O`>0HaRB0esk+2BZ9J0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f'q*0d'[C +%4?O`>0HaRB0f'q,+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/ +%0/4S345Dk>9GXV+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I +%0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXV+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk +%>9GXV+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 +%4?O`>0HaRB0f'q,1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1a$'H0/4S34>E%+>>E%+>GK&+C-*R +%4s3$Q+?ht34?O`>0HaRB0f'q,2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f'q, +%2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Dk>9GXW+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP +%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q +%+?Vb/0/+MQ+>G\q2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>G\q3$;KL0/4S3 +%4>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.& +%>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%% +%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f1"-2BZ9J0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f:(,0d'[C4?O`>0HaRB0f:(.+C-*C0d&S@+>5Gl +%4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/ +%0/+MQ+>G_r2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>G_r2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>G_r3$;KL0/4S34>E%+>>E%+>,Mo +%>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GXX+>GVo>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT +%+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Dk>9GXY+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.3+C-*C0d&S@+>5Gl4?O`> +%0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0fC.5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT +%+>P''4s3$Q+?ht34?O`>0HaRB0fC.6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXY+>GPm>p(dT+?Vb/0/4S34Gbs0eskW+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht3 +%5!C)Q4s2sM+>5Dk>9GXY+>G\q>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht3>p)5Dk4?O`>0H_eCrr>OhGlVa_D#duEF9$@^FT>PE@/t'CFT?7YDZFYTDZE<.@/t0FCB.cCCB/K++>5Sp +%4?O`>0H`%l0/4S34#3'+>5Jm./s8H#Upl[4s2sM+>5Dk/M8n'0/=Xurr0H_r"2'=P-+=R6h+;cOM5!C)O4#3'+>5Jm./s5h*%5Dk/M8n'0/=Xurr4YX.3Lf<+?Vb/ +%0/+M#/i=b)1*A"Es"Fd/+?ht34?O`>0H_r"2'=P-+=R6h0FTBQ5!C)O4#3'+>5Jm./s6#%OiMa4s2sM+>5Dk/M8n'0/=Xu +%rr4Y`.3Lf<+?Vb/0/+M#/i=b)1*A"Es"G-9+?ht34?O`>0d&'=P-+=R6hrs:+s5!C)O4#3'+>5Jm./s8H4XhL;4s2sM +%+>5Gl/M8n'0/=Xurr<"(.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`1.+?ht34?O`>0d&'=P-+=R6h+<;mR5!C)O4#3'+>5Jm +%./s6##q6u\4s2sM+>5Gl/M8n'0/=Xurr4Y[.3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fm2+?ht34?O`>0d&'=P-+=R6h0FoTT5!C)O +%4#3'+>5Jm./s6#&Lehd4s2sM+>5Gl/M8n'0/=Xurr4Ye.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NQX+?ht34?O`>0d&'=P- +%+=R6h0EN[G5!C)O4#3'+>5Jm./s8H$n3;_4s2sM+>5Gl/M8n'0/=Xurr4YQ.3Lf<+?Vb/0/+M#/i#:,0/4S$/i#:,0/=Xu +%rrFul0d'[C4?O`>0HaRB0d&=r>p(dT+?Vb/ +%0/4S345Gl0d&YD+?ht35!C)p+?ht34?O`>0H`+n0/4SR+?Vb/0/+MQ+>P&o+C-*C0d&S@+>5Dk +%4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D1*BjF0/4S34>E%+>>E%+>>E%+C-*C +%0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&q+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D +%1a$'H0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0H`J?+>5Dk>9GUP +%0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9G[D2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q +%4s3$Q+?Vb/0/+MQ+>P'!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D3?VTM0/4S3 +%4>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4GPm>p(dT+?Vb/0/+M24P&o0d'aE0/4S34>E%+>>E%+>>E%+C-*C0d&7p5!C)Q4s3$Q+?Vb/ +%0/+MQ+>P&o1*BjF0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4GYp>p(dT+?Vb/0/+M2 +%4P&o1a$'H0/4S34>E%+>,Mo/i=bW+>5Gl +%1E\kF+?ht35!C)O4G_r>p(dT+?Vb/0/+M24P&o +%2BZ9J0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)p+?ht34?O`>0H`.o0/4SR+?Vb/0/+MQ+>Y,p+C-*C +%0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G^E1E]sG0/4S34>E%+>>E% +%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\Ot>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9G^E3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\\#>p(dT+?Vb/0/4S345Dk>9G^E0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D.+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

G\q>p(dT+?Vb/0/4S345Dk>9G^E0f:(Z+>5Gl +%4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9G^E0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1, +%1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4b2o0d'[C4?O`>0HaRB1a"Lq>p(dT+?Vb/0/4S34b2u+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`> +%0HaRB1a"_">p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4G_r>p(dT+?Vb/0/4S3 +%4p(dT+>b3)4s3$Q+?ht34?O`>0HaRB1a"M2+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E, +%+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk2'=P,+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I +%0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG1*BjF0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ +%+>k8t+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=^u>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4k9I+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>G!& +%4s3$Q+?ht34?O`>0HaRB2'=e">p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG3$;KL0/4S34>E% +%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q +%+?ht34?O`>0HaRB2'=V-+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V.+C-*C +%0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% +%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q +%+?ht34?O`>0HaRB2'=V1+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V2+C-*C +%0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% +%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GgH0d'aE0/4S34>E%+>,Mo +%/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)k9I+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u, +%2'=M12'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GgH2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q +%+?Vb/0/+MQ+>t?%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t?&+C-*C0d&S@+>5Dk4?O`> +%0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s0HaXD0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM +%+>5Dk>9GgH0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GVo>p(dT+?Vb/0/+M240HaRB2BX_1+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/ +%0/+MQ+>t>s1a$'H0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f:(Z+>5Gl4?O`>0H`J?+>5Dk +%>9GUP0H_u*+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB2BX_4+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S++?ht3 +%5!C)Q4s4,R5!C)O40HaRB2]sgt>p(dT+?Vb/0/+M245Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI1a$'H0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4k9I+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I +%0/4S(+?ht35!C)Q4s2sM+>5Dk>9GjI2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ +%+?(E&+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI3?VTM0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4GPm>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4GYp>p(dT +%+?Vb/0/+M24>E%+>,Mo +%/i=bW+>5Gl1*AbE+?ht35!C)O4G_r>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)p+?ht34?O`>0H`=t0/4SR+?Vb/0/+MQ +%+?1Ju+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GmJ1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$:($>p(dT+?Vb/0/4S345Gl0d&YD+?ht3 +%5!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GmJ3$;KL0/4S3 +%4>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$:4(>p(dT+?Vb/0/4S345Dk>9GmJ0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1*BjF +%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% +%0eP.&>p)G\q>p(dT+?Vb/0/4S345Dk>9GmJ +%0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GpK0d'aE0/4S34>E% +%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ +%0/+MQ+?:Q%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3?U7'>p(dT+?Vb/0/4S3 +%45Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD +%5!C)Q4s3$Q+?Vb/0/+MQ+?:Q)+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT +%+?Vb/0/4S345Dk>9GpK0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& +%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%5 +%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Dk>9GpK0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q +%+C-*R4s2sM+>5Dk0ea_'0d'[C4?O`>0HaRB0ea_)+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM +%+>5Dk>9GXS+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GPm2]uBK0/4S34>E%+>>E%+>>E%+C-*C +%0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_1 +%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%% +%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`> +%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG +%+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)) +%+>5Gl>9H$j+>5Dk>9GXT+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXT+?(EK +%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXT+>G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3) +%4s3$Q+?ht3>p)p(dT+?Vb/0/4S34GVo1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk/+C-*C0d&S@ +%+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0esk1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% +%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0esk2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Dk>9GXU+>GPm>p(dT+?Vb/0/4S345Dk>9GXU+>GVo>p(dT+?Vb/0/4S345Dk>9GXU+>GYp>p(dT+?Vb/0/4S345Dk>9GXU+>G\q>p(dT+?Vb/ +%0/4S345Dk>9GXU+>G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)

*+BosN4p(dT+?Vb/0/4S34GYp1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q0+C-*C0d&S@+>5Gl4?O`>0HaRB +%0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0f'q2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P'' +%4s3$Q+?ht34?O`>0HaRB0f'q3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT +%+?Vb/0/4S345Dk>9GXV+>GPm>p(dT+?Vb/0/4S345Dk>9GXV+>GVo>p(dT+?Vb/0/4S345Dk>9GXV +%+>GYp>p(dT+?Vb/0/4S345Dk>9GXV+>G\q>p(dT+?Vb/0/4S345Dk>9GXV+>G_r>p(dT+?Vb/0/4S345Dk>9GXV+>Gbs>p(dT+?Vb/0/+M24G\q0/4SR +%+?Vb/0/+MQ+>G\q0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/ +%0/4S345Dk>9GXW+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I +%0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXW+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk +%>9GXW+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 +%4?O`>0HaRB0f1"-1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1a$'H0/4S34>E%+>>E%+>GK&+C-*R +%4s3$Q+?ht34?O`>0HaRB0f1"-2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G\q +%0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4G_r0/4SR+?Vb/0/+MQ+>G_r +%0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q +%5!C)Q4s3$Q+?Vb/0/+MQ+>G_r2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>G_r +%2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>G_r3$;KL0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG +%+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GXX+>GVo>p(dT +%+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB/ho+= +%+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34Gbs1E]sG0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q +%4s2sM+>5Dk>9GXY+>b3H+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT +%+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXY+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs0ea_U+>5Gl +%4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB0fC./1*BjF0/4S34,B(2'=M,2'=M/ +%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R +%5!C)p+?ht35!C)B1E\Ir5!C)Q4s3$Q+?Vb/0/+M24kL!-8-_!*K;1!,DRW!,V^S!,_dT!*TA6!,_dP +%!+>kC!-K_50/Xk74=ok0d&S@+>5Dk>9H$j+>5Dk/M8n'0/=Xurr +%0H_r"2'=P-+=R6hs'$op5!C)O4#3'+>5Jm./s5h(b$Rk4s2sM+>5Dk/M8n'0/=Xurr4)\.3Lf<+?Vb/0/+M#/i=b)1*A"E +%s"F^-+?ht34?O`>0H_r"2'=P-+=R6h0FB6O5!C)O4#3'+>5Jm./s6#$n3;_4s2sM+>5Dk/M8n'0/=Xurr4Y^.3Lf<+?Vb/ +%0/+M#/i=b)1*A"Es"G!5+?ht34?O`>0H_r"2'=P-+=R6h0GGrY5!C)O4#3'+>5Jm./s8H#q6u\4s2sM+>5Gl/M8n'0/=Xu +%rr0d&'=P-+=R6h+;lUN5!C)O4#3'+>5Jm./s5h*@W*p4s2sM +%+>5Gl/M8n'0/=Xurr4YY.3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fg0+?ht34?O`>0d&'=P-+=R6h0F]HR5!C)O4#3'+>5Jm +%./s6#%k/Vb4s2sM+>5Gl/M8n'0/=Xurr4Ya.3Lf<+?Vb/0/4S$/i=b)1*A"Es"G0:+?ht34?O`>0d&'=P-+=R6hrsgJ#5!C)O +%4#3'+>5Jm./s6#!\#6U4s2sM+>5Gl/M8n'0/=Xurr0H_r"1,U1- +%0d&,U1-1*A"Es8Nud+?ht34?O`>0H_r"1,U1-0d&,U1-1*A"Es8O#e+?ht34?O`>0H_r"1,U1-0d&,U1-1*A"Es"O=! +%+?ht34?O`>0H_r"1,U1-0d&,U1-1*A"Eru_k%+?ht3>p)5Jm4?O`>0H`J?+>5Dk>9H$j+>5Dk0d&,(+BosN4k9I+>5Gl4?O`>0d&S@+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s4,R5!C)O4P&m0d'[C4?O`>0HaRB1*A:o +%>p(dT+?Vb/0/+M24P&p+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% +%0J5%%0J5%%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A@q>p(dT+?Vb/0/+M24P&r+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>P&u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%% +%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1*AP!>p(dT+?Vb/0/+M24P'"+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0ea_U+>5Gl4?O`>0H`J?+>5Dk +%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;++C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>Y-( +%4s3$Q+?ht34?O`>0HaRB1*A;,+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0f'qX +%+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;.+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% +%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht3 +%4?O`>0HaRB1*A;0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0fL4\+>5Gl4?O`> +%0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)0H`.o0/4SR+?Vb/0/+MQ+>Y,p+C-*C0d&S@+>5Gl4?O`>0HaRB +%0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G^E1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 +%4?O`>0HaRB1E\Ot>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`> +%0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9G^E3$;KL0/4S34>E%+>>E%+>GK& +%+C-*R4s3$Q+?ht34?O`>0HaRB1E\\#>p(dT+?Vb/0/4S345Dk>9G^E0ea_U +%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1*BjF0/4S34>E%+>>E% +%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D.+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G\q>p(dT+?Vb/0/4S345Dk>9G^E0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GOQ +%1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9G^E0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht3 +%5!C)Q4s4,R5!C)O4b2o0d'[C4?O`>0HaRB1a"Lq>p(dT+?Vb/0/4S34b2u+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1a"_">p(dT+?Vb/ +%0/4S345Gl1*AbE+?ht35!C)O4G_r>p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB1a"M2+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q +%+C-*R4s2sM+>5Dk2'=P,+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM +%+>5Dk>9GdG1*BjF0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8t+C-*C0d&S@+>5Dk +%4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=^u>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4k9I+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB +%2'=e">p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk +%>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG3$;KL0/4S34>E%+>,E,+>,E,+C-*C0d&1n +%5!C)Q4s3$Q+?Vb/0/+MQ+>k9%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V- +%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V.+C-*C0d&S@+>5Dk4?O`>0HaRB +%0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!& +%4s3$Q+?ht34?O`>0HaRB2'=V0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V1 +%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V2+C-*C0d&S@+>5Dk4?O`>0HaRB +%0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!& +%4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GgH0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht3 +%5!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)b3H+>5Gl4?O`>0H`J? +%+>5Dk>9GUP0H_u*+>,Mo>p)k9I+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u,2'=M12'?0I0/4S(+?ht3 +%5!C)Q4s2sM+>5Dk>9GgH2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>t?%+C-*C +%0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t?&+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I +%5!C)Q4s3$Q+?Vb/0/+MQ+>t>s0HaXD0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0ejeV+>5Gl +%4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GVo>p(dT+?Vb/0/+M240HaRB2BX_1+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s1a$'H0/4S3 +%4>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT +%+>b3)4s3$Q+?ht34?O`>0HaRB2BX_4+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GgH +%0fL4\+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)0H`:s0/4SR+?Vb/0/+MQ+?(Dt+C-*C0d&S@ +%+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI1E]sG0/4S34>E%+>,Mo/i=bW +%+>5Gl1*AbE+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB +%2]st#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk +%>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI3$;KL0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE +%+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh/+C-*C +%0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* +%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh2+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM +%+>5Dk>9GjI0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh4+C-*C0d&S@+>5Dk +%4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT +%+>P''4s3$Q+?ht34?O`>0HaRB2]sh6+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+C-*R4s2sM+>5Dk3$9k/ +%+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB3$:"">p(dT+?Vb/ +%0/4S345Dk>9GmJ2'?0I0/4S34>E%+>,E,+>,E,+C-*C +%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?1K&+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB +%3$:1'>p(dT+?Vb/0/4S345Dk>9GmJ3?VTM0/4S34>E% +%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9GmJ0f'qX+>5Gl4?O`>0d&S@+>5Dk +%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 +%4?O`>0HaRB3$9q5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/ +%0/4S340HaRB3?U%!>p(dT+?Vb/0/4S3 +%45Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GpK2]uBK +%0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?:Q(+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% +%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ +%+?:Q!0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%3+C-*C0d&S@+>5Gl4?O`>0HaRB +%0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9GpK0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB3?U%7+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl +%1a"tG+?ht35!C)p+?ht34?O`>0H`)(+>5Gl>9H$j+>5Dk>9GXS+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-( +%4s3$Q+?ht34?O`>0HaRB0ea_++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT +%+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0ea_U+>5Gl4?O`>0d&S@ +%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q +%4s3$Q+?Vb/0/+MQ+>GPm0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f1"Y+>5Gl +%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u* +%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R +%4s2sM+>5Dk0eje(0d'[C4?O`>0HaRB0eje.+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`> +%0HaRB0eje0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0eje*2'?0I0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GSn0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&% +%0HaXD0/4S++?ht35!C)Q4s4,R5!C)O4GVo0/4SR+?Vb/0/+MQ+>GVo0d'aE0/4S34>E%+>,Mo/i=bW +%+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU +%+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXU+?(EK+>5Gl4?O`>0d&S@+>5Dk +%>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXU+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q +%4s3$Q+?Vb/0/+MQ+>GVo3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+0HaXD0/4S3 +%4>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1*BjF0/4S34>E%+>>E%+>GK& +%+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+ +%1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+2'?0I0/4S34,B( +%2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht3 +%5!C)Q4s4,R5!C)O4GYp0/4SR+?Vb/0/+MQ+>GYp0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht3 +%5!C)O4p(dT+?Vb/0/4S345Dk>9GXV+>k9I+>5Gl4?O`> +%0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXV+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&% +%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXV+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ +%+>GYp3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 +%4?O`>0HaRB0f'q,1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,2'?0I0/4S34>E%+>>E%+>,Mo>p(dT +%+>b3)4s3$Q+?ht34?O`>0HaRB0f'q,2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34G\q +%1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% +%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0f1"3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q +%+?ht34?O`>0HaRB0f1"4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/ +%0/4S345Dk>9GXW+>GPm>p(dT+?Vb/0/4S345Dk>9GXW+>GVo>p(dT+?Vb/0/4S345Dk>9GXW+>GYp +%>p(dT+?Vb/0/4S345Dk>9GXW+>G\q>p(dT+?Vb/0/4S345Dk>9GXW+>G_r>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)O +%45Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34G_r1E]sG0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>b3H+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1, +%1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O +%4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/ +%0/4S345Dk>9GXX+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u* +%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB +%0f:(.1*BjF0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r0f1"Y+>5Gl4?O`>0d&S@ +%+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4Gbs0/4SR+?Vb/0/+MQ+>Gbs0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S34p(dT +%+>b3)4s3$Q+?ht34?O`>0HaRB0fC.2+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ +%+>Gbs2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs3$;KL0/4S34>E%+>>E%+>,Mo>p(dT +%+>b3)4s3$Q+?ht34?O`>0HaRB0fC.7+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GXY+>GVo>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3) +%4s3$Q+?ht3>p)5Mn1a"tG+?ht35!C)O4kC!-J9Y!,hjT!,hj@!+c.J!,DRC!,DRW +%.3L9$+?Vb/0/+M&+>5Gl4?O`>0HaRB4?O`>0H_r"2'=P-+=R6hrs1%r5!C)O4#3'+>5Jm./s8H4"2:94s2sM+>5Dk/M8n' +%0/=Xurr<"&.3Lf<+?Vb/0/+M#/i=b)1*A"Eru`.-+?ht34?O`>0H_r"2'=P-+=R6h+<2gQ5!C)O4#3'+>5Jm./s6##Upl[ +%4s2sM+>5Dk/M8n'0/=Xurr4YZ.3Lf<+?Vb/0/+M#/i=b)1*A"Es"Fj1+?ht34?O`>0H_r"2'=P-+=R6h0FfNS5!C)O4#3' +%+>5Jm./s6#&1J_c4s2sM+>5Dk/M8n'0/=Xurr4Yd.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NBS+?ht34?O`>0d&'=P-+=R6hs#heR +%5!C)O4#3'+>5Jm./s8H>q$m[4s2sM+>5Gl/M8n'0/=Xurr4)Y.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`=2+?ht34?O`>0d&&# +%2'=P-+=R6h0F90N5!C)O4#3'+>5Jm./s6#$Rm2^4s2sM+>5Gl/M8n'0/=Xurr4Y].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fs4 +%+?ht34?O`>0d&'=P-+=R6h0G,`V5!C)O4#3'+>5Jm./s6#'e(7h4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6hrsU>!5!C)O4#3'+>5Jm./s6#!@]-T4s2sM+>5Dk/M8e9+>5Gl/M8e9 +%+>5Jm./s8H)CZdm4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s8H)^umn4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s6#q^EXO4s2sM +%+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s5h&1J_c4s4,R5!C)B1*A\A+>5Dk4?O`>0HaRB4?O`>0H`(m0/4SR+?Vb/0/+MQ+>Fur+C-*C +%0d&S@+>5Gl4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G[D0d'aE0/4S3 +%4>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4P'F+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&% +%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D1E]sG0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AFs>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S) +%+?ht35!C)Q4s2sM+>5Dk>9G[D3$;KL0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;*+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% +%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q +%4s2sM+>5Dk>9G[D0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;-+C-*C0d&S@ +%+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo +%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk +%>9G[D0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;1+C-*C0d&S@+>5Dk4?O`> +%0HaRB/i=b(2'=M/+C-*R4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G^E0d'aE0/4S34>E%+>,Mo +%/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ +%+>Y,t+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1E\V!>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q +%4s3$Q+?Vb/0/+MQ+>Y-#+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/ +%0/4S345Dk>9G^E0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD +%5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D/+C-*C +%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p +%+?ht34?O`>0H`1p0/4SR+?Vb/0/+MQ+>b2q+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk +%>9GaF2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>b3"+C-*C +endstream endobj 104 0 obj <>stream +0d&S@+>5Gl4?O`> +%0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1a"M1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C +%0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>b2q2BZ9J0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O +%4k8p0d'[C4?O`>0HaRB2'=Ur>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4P'F+>5Gl4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG1E]sG0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!& +%4s3$Q+?ht34?O`>0HaRB2'=b!>p(dT+?Vb/0/+M24k9"+C-*C +%0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=h#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q +%4s2sM+>5Dk>9GdG3?VTM0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0HaXD0/4S3 +%4>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0d'aE0/4S34>E%+>,E, +%+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1*BjF0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q +%+?Vb/0/+MQ+>k8r1E]sG0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1a$'H0/4S3 +%4>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2'?0I0/4S34>E%+>,E, +%+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2BZ9J0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q +%+?Vb/0/+MQ+>k8r2]uBK0/4S34,E,+>,E,+>,E,+C-*R4s3$Q+?ht3>p)5Gl>9H$j+>5Dk +%>9GgH0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk +%>9GUP0H_u*+>,Mo>p)b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)k9I+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u,2'=M12'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GgH2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>t?%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q +%4s3$Q+?Vb/0/+MQ+>t?&+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s0HaXD0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GVo>p(dT+?Vb/0/+M240HaRB2BX_1+C-*C0d&S@+>5Dk +%4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s1a$'H0/4S34>E%+>,Mo/i=bW+?ht35!C)Q +%4s2sM+>5Dk>9GgH0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB2BX_4+C-*C0d&S@ +%+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GgH0fL4\+>5Gl4?O`>0H`J?+>5Dk>9GOU+>,Mo/i=bW +%+?ht35!C)Q4s4,R5!C)O40HaRB2]sgt>p(dT+?Vb/0/+M245Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI1a$'H0/4S3 +%4>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4k9I+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M, +%2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GjI2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/ +%0/+MQ+?(E&+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI3?VTM0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4GPm>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4GYp +%>p(dT+?Vb/0/+M24>E% +%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4G_r>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4Get>p(dT+?Vb/ +%0/+M24,Mo>p)0H`=t0/4SR+?Vb/0/+MQ+?1Ju+C-*C0d&S@+>5Gl4?O`>0HaRB +%0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GmJ1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 +%4?O`>0HaRB3$:($>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`> +%0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GmJ3$;KL0/4S34>E%+>>E%+>GK& +%+C-*R4s3$Q+?ht34?O`>0HaRB3$:4(>p(dT+?Vb/0/4S345Dk>9GmJ0ea_U +%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1*BjF0/4S34>E%+>>E% +%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G\q>p(dT+?Vb/0/4S345Dk>9GmJ0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP +%0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q +%+?ht3>p)5Gl>9H$j+>5Dk>9GpK0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O +%4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q%+C-*C0d&S@+>5Gl4?O`> +%0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3?U7'>p(dT+?Vb/0/4S345Gl +%1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q)+C-*C +%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GpK0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q! +%1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% +%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Dk>9GpK0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0ea_'0d'[C4?O`> +%0HaRB0ea_)+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXS+>Y-G+>5Gl4?O`>0d&S@ +%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n +%5!C)Q4s3$Q+?Vb/0/+MQ+>GPm2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GPm +%3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% +%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`> +%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`))+>5Gl>9H$j+>5Dk>9GXT+>k9I+>5Gl +%4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXT+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% +%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXT+>G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht3 +%5!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34GVo1E]sG0/4S3 +%4>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:, +%>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0esk1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`> +%0HaRB0esk2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Dk>9GXU+>GPm>p(dT+?Vb/0/4S345Dk>9GXU+>GVo>p(dT+?Vb/0/4S345Dk>9GXU+>GYp>p(dT+?Vb/ +%0/4S345Dk>9GXU+>G\q>p(dT+?Vb/0/4S345Dk>9GXU+>G_r>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)*+BosN4p(dT+?Vb/0/4S34GYp1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q +%+?ht34?O`>0HaRB0f'q2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0f'q3+C-*C +%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Dk>9GXV+>GPm>p(dT+?Vb/0/4S345Dk>9GXV +%+>GVo>p(dT+?Vb/0/4S345Dk>9GXV+>GYp>p(dT+?Vb/0/4S345Dk>9GXV+>G\q>p(dT+?Vb/0/4S345Dk>9GXV+>G_r>p(dT+?Vb/0/+M245Dk>9GXV+>Gbs>p(dT+?Vb/ +%0/+M24G\q0/4SR+?Vb/0/+MQ+>G\q0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXW +%+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXW+?1KL+>5Gl4?O`>0d&S@+>5Dk +%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 +%4?O`>0HaRB0f1"-0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1E]sG0/4S34>E%+>>E%+>GK&+C-*R +%4s3$Q+?ht34?O`>0HaRB0f1"-1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-2'?0I +%0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GOQ +%1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4G_r0/4SR+?Vb/0/+MQ+>G_r0d'aE0/4S34>E% +%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q +%+?ht34?O`>0HaRB0f:(1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r2'?0I +%0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>G_r2]uBK0/4S34>E% +%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>G_r3$;KL0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q +%+?ht34?O`>0HaRB0f:(6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GXX+>GVo>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3 +%>p)p(dT+?Vb/0/4S34Gbs1E]sG0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXY+>b3H+>5Gl4?O`> +%0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O +%4p(dT+?Vb/0/4S345Dk>9GXY+?:QM+>5Gl4?O`> +%0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u* +%+C-*R4s3$Q+?ht34?O`>0HaRB0fC./1*BjF0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ +%+>Gbs0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4Get0/4SR+?Vb/0/+MQ +%+>Get0d'aE0/4S34,Mo/i=b(2'?0I5!C)Q4s3$Q+C-*R4s2sM+>5Dk0fU:/0d'[C4?O`>0HaRB0fU:1+C-*C +%0d&S@+>5Gl4?O`>0HaRB/i=b(2'=M/+C-*R4s3$Q+?ht3>p)5Mn1*AbE+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC +%+?Vb/0/+M'+?ht34?O`>0H`+n5!C)O4Y-(4s4,R5!C)B1a"nC+>5Dk>9H$j+>5Dk4?O`>0H_eCrr>Ri@/t"D +%+>5Dk./s5H+TPar!%\+&!'1*A!'^Hh!.=jA+;>q9+<;RY+Tiko0EEj/0Ej-:0FKQD0FoiL0GQ9-0LIN_0Lmfg0Oleh0SM390TIiV +%0Ushf0V0tl0V^=u0W-V(0Z,U)0]b"O0^^Xf0_R3t0`3X'0`M(QrrrE/rs\o;ru1nVru_8(s'7&r0/4Rtrr2t'-idHOHN9f@V]Zg! +%*&%XP$8;lB%PSGJ&hk%""9/N(#lc%I49&ObjXD<*1*A"Eru`!u,p4N`+>5Mn./s6#!AFTT%0$ed+>5Po0d&YD+?ht35!C)O4qE+=8N[0/F_!rr4YQ0EV7_rsgJ#0/Oe,+?ht35!C)Q4s4,R +%0/4SR+?Vb/0/+M&+?ht34?O`>0H`(m5!C)p+?ht30/Xk74kD!+c.O!$D8F +%!+c.E!+Q"B!+c.J!+l4L!-/'V!+>kL!*q#r0/aq84Y,n0d&2+/heD$1*C1;Cia/10/F__@;L!r+>5PoFE2M8+>5Sp1,gg> +%+>5Vq0eP.&0/k"./heD$3$9mt00(.//heD$0ea_(/heD$0eje*+>5H)+>=ok0f'q++>5H++>=ok0f:(-+>5H-+>=ok0fL4//heD$ +%0fU:tEckq90/5I0AmoLsAKWW]0HbIXF_)[K1,0n`@;L!r+>5K*+D,%uF(HII1,C%b@;L!r+>5K,+D,%uF(HII1,U1d@;L!r+>5K. +%+D,%uF(HII1,g=tEckq90/>L0AmoLsAKWW]3?VpBCia/10/G:)0H`#)0d((:Cia/10/G@+AmoLsAKWW^1E^:5N2+>=ok1b^%a@;L!r+>5Q++>P&m1bp1-+>5Q-+?Vb/0/+M$2'>(H+>5Q.+>P&m +%1c6C2+>5Q0+?(Dr1cHO2+>5Q2+>=ok1cZ[10eP.&0/YF+/MSk3+>5T,+>=ok2)6:d@;L!r+>5T.+?Vb/00)$802lS%E,9)^@;0V$ +%+>5Dk4?O`>0H`(m0/4SR+>GK&+>>E%+>>E%+>>E%+C-*R4s3$Q+>5T/+?Vb/00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR +%+>GK&+>>E%+>>E%+>>E%+C-*R4s3$Q+>5T0+?Vb/00)$801/#s<+U;r6>U4NA7]d(5!C)B2)ZS!Eckq90/Y[2AmoLsAKWW`3$<<` +%F_)[K2)udk@;L!r+>5W,+D,%uF(HII2DH=.+>5W.+>=ok2DZI1/heD$2DcO5/heD$2DlU2/heD$2Du[^+C-*C2E)a_+C-*C2E2g5 +%+>5W5+>=ok2_Z@.+>5Z.+>b2o2_lL0/heD$2_uR1/heD$2`)Xh@;L!r+>5Z2+D,%uF(HII2`;dj@;L!r+>5Z4+EVXHAKWWb3$<<` +%F_)[K2`W!C45Dk0d&,(+BosC/heD&/heD&/heD%/heDR+?ht35!C)B3%uIe@;L!r+>5]/ +%+>=ok3&2U4/heD$3&;[5/heD$3&Dai@;L!r+>5]3+>=ok3&VmA4p)5Vq4?O`>0HaRB4?O`>0H`J?+>5Dk./s5H>6%CuDZFeXD#duE +%C]J#HEr[<_5lb?oEr]VKF9$UeAcQ`LEWBqV@/tBL>q$mL2'>"D+>5Dk0H`#'+>>E%+>5Jm0J5%%0/F_)/heD$1a"J)0H`#++>>E% +%+>5Vq0d&,.+>GK(+>5\s0H`#/+EVXHAKWW\0H`7r0/51(1*A5)1*A=p0/57*0H`#'1a"S4/heD$0f:(qEckq90/5@-/i=b)0fL4Z +%+>,Vr0eP.&0eP7<+C-*C0fU:[+>>E%+>>E%+>>E%+C-*C0f^@\+>GK&+>GK&+>GK&+C-*C1,'h/+>5K)+D,%uF(HII1,9t++>5K+ +%+D,%uF(HII1,L+-+>5K-+>=ok1,g=/DJF.AmoLsAKWW]3$9klBl"nF1-$Ih@;L!r+>5N)+?Vb/5!C)B1GL".2D-[+0/G@+ +%4?O`M4s2L71E\@o0/GF-0H`#)2'=Rq0/GL/05bK?+>5N0+>=ok1H6Lh@;L!r+>5N2+>=ok1b^%-+?ht35!C)Q4s4,R0/4SR+?Vb/ +%0/+M&+?ht3>p)5\s4?O`>0HaRB4?O`>0H`J?+>5Gl4?O`>0HaRB3&E?L/iYUH0d&G22DZs>0KD'N+?2243%d0G3ADX91,^p@ +%0JGLG2]t(62DHg>0f1[E+?2,71G1@83B&l>3&!6F/i#.<1H$@81,^p@0JGLG2]t(62DHg>0f1[E+?2,71G1@83B&l>3&!6F/i#.< +%1H$@81,^p@0JGLG2]t(62DHg>0f1[E+?2,33A*'A1H7<93&!6F/i#.<1H$@81,:jB1,1RE2]t(62DHg>0f1[E+?2,33A*'A1H7<9 +%3&!6F/i#.<1H$@81,:jB1,1RE2]t(:0fUdF1-%'33&36L/i#.;3&_s>1bgsB3&3KK+?2,33A*'A1H7<93&E?L/iYUH0d&G21-$sB +%0f(dJ+?2243%d0G3ADX91,:jB1,1RE2]t(:0fUdF1-%'33&3BJ/het>2`Dj=1bgsB3&3KK+?2,71G1@83B&l>>p)5Jm4?O`> +%0H`(m0/=YS+>GK&+>>E%+>>E%+>GK&+>#E1/hf%83B&'82(ggF0f_*6>p(dZ+>Gi.0H`#.+>Gi.0H`PC+?ht35!C)p+?ht35!C)B +%0d&S@+>5Dk4?O`>0H`J?+>5Dk1a"G++BosN40H_eCrr<-M+>5Gl./s5H2(9Y34s2sM +%+>5Dk./s6#!%B$D0d%nDrr=c&+?ht34?O`>0H_eCrrB/M+>5Gl./s5H1FXG14s4,R5!C)B0d&.m0/=Y(+>5Mn/i>UE+>5Po/i,:> +%+>5Sp/i>UE+>5Vq/i,:>+>5Yr/iOn+3$<<`F_)[K3?VNK4?O`>0H`%l0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h +%+;lUN5!C)O4Ful0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk1*A5)+=R6h!37Ok0/=Xu +%rr2u1.3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M)+>5Gl./s5HX!o/E1*A"ErrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht3 +%4?O`>0H`1p0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O4k8p0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk2BXY-+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+?:kn0/Oe"rr4*%.3Lf<+?Vb/0/+M- +%+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`=t0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X +%.3L9#+=R6h+;lUN5!C)O45Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0esk)0d%nD +%ru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f'q*0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po +%./s5h)(?[l4s2sM+>5Dk0f1"+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f:(,0d%nDru`:1 +%+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fC.-0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h +%)(?[l4s2sM+>5Dk0fU:/0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,9t*0d%nDru`@3+>5Jm +%./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,C%+0d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l +%4s2sM+>5Dk1,U1-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk1,pC00d%nDru`@3+>5Jm./s5h +%*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk1-$I10d%nDs"GHB+>5Jm./s6#*[r3q4s2sM+>5Dk1GBq)0d%nDs"Fj1+>5Jm +%./s6#%4ND`4s2sM+>5Dk0ea_'0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0eje(0d%nDru`:1 +%+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fL4.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h +%)(?[l4s2sM+>5Dk0f^@00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,'h(0d%nDru`@3+>5Jm +%./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,0n)0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk +%4s2sM+>5Dk1,L+,0d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`4/+>5Po./s5h)(?[l4s2sM+>5Dk1,^7.0d%nDru`:1+>5Jm./s5h +%*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,g=/0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM +%+>5Dk1GL"*0d%nDru`@3+>5Jm./s5h*%5Po./s5h)(?[l4s2sM+>5Dk1GU(+0d%nDru`:1+>5Jm./s5h*@W*a +%1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1G^.,0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk +%1Gg4-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1Gp:.0d%nDru`:1+>5Jm./s5h*@W*a1E\+F +%ru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H$@/0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H-F0 +%0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H6L10d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H?R20d%nDrrB)K+>5Jm./s5H]."jU1E\+Frr>/1+>5Po./s5H4t.U<4s2sM+>5Dk1b^%*0d%nD +%ru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1bg++0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frr>/1+>5Po +%./s5H4t.U<4s2sM+>5Dk1bp1,0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1c$7-0d%nDru`:1 +%+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1c-=.0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h +%3[l184s2sM+>5Dk1c6C/0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1c?I?4s2sM+>5Dk1cHO@ +%4s2sM+>5Dk1cQUA4s4,R0/51(2BXY-2'>"D+>5Dk./s5H8-!c4D?+_XDuaGLC]J9#+?ht30/5@-AmoLsAKX0#+>5Gl>9H$j+>5Dk +%4?O`>0H_eCrr>doDZFeXA,m_P=9)q5@fU'?+95@@AH6`ND#e8MD?+)FC]Fnn+>5Sp4?O`>0HaRB4?O`>0H`J?+>5Dk4?O`>0H_eC +%s!]'D2'>"D+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#*+>>E%+>5Sp0J5%%0/G:)4?O`M4s2L70d&;1/heD$1G^.-+>5N.+>=p%4s2L: +%+>=p%4s3$Q+>5Gl0f^@?4s4,R5!C)B2BY+E+>5Dk>9H$j+>5Dk4?O`>0H`J?+>5Dk./s5q+>5Sp0H`#,+?Vb/0/+M&+>5Gl1c6m> +%+>5Vq0eP.&00(.//heD$2)?@;45Gl +%>9GXQ0H_u*1G^gC+>,T11-%06/iYRC2E;mc+?ht35!C)B2)ZS!Eckq90/bX00eb46+?ht35!C)Q4s2L5+>b3)4s2sM+>5Dk4?O`> +%0H`J?+>5Dk./s5q+>5Sp0H`#,+?Vb/0/+M(+>5Gl1c6m>+>5Vq0eP.&00(.//heD34s3$Q+?ht30/4S(+?ht34?O`>0H`J?+>5Dk +%4?O`>0H_eCs!]'D2'=Rq0/aq84Ful0d&;1/heD$2BX_,0H`#/+>>E%+>5T.+?Vb/00)$801/#s<+U;r:gn'UF5Gl>9GXQ0H_u&3&!-K+>,E'1H@35/i#:<3B/-e+?ht35!C)B2)ZS!Eckq90/bX0 +%0eb46+?ht35!C)Q4s2L5+>G\q5!C)p+?ht30/5.'4?O`>0H`1p0/=YlEckq95!C)Q4s2L5+?Vb/0/+MQ+?Vb/0/+M&+?ht3>p(dU +%+BosN4+>=ok2BZ3H4?O`>3B8387Na?=0H`%l0/+M24Yf+2`W`U+C-*C2'=Xs0/aqW+?Vb/00)$802`oG0d'[C0J5%%0J5%%1Gq*D2DI$I2'=\2/iPdJ +%3?VTM0/aqW+?Vb/00)$802`oG0d'[C0J5%%0J5%%1Gq*D2DI$I2'=\2/iPdJ3?VTM0/Xk-+>5Vq>9H$j+>5`8+>6D20/5.'1GUR; +%1-%3I+>5H++>#B./i,@=0K:1.0f:(6/iGL>1*A5(+?Vb/0/+MQ+>>E%+>Yc*0etaH1*BjF5!C)B0d'[C0J5%%/Mf=<1Gpj?3$:"7 +%2_I!C1cI973A*3G0JXbV+>5Vq>9H$j+>5`8+>6Y90/5=,4?O`>0H`)1+>5Jm0H`#++D,%uF(HIX4s2L:+BosN45Gl +%>9GUP0H_r'2_HmD0JGI/3&iNH1G^m23A*3G0JXbV+>5Sp>9Ga]+?2%t3&;[83?VTM0/t(Y+?2&50eP491c%$43&36F/ibpK0f1"4 +%0f1mC2)I6O2'=k62_ZjE2`!?J+C-*C0esk'1H-pB2)$^D+>5H*+?;&41GCR,0/>4(0H`PC+?Vb/00)$801R-<0H`J?+>5Dk>9Gmb +%/i,:>2'=S*0HaXD5!C)B0d'[C0J5%%/Mf=<1Gpj?3$9q2/i>=C2`Dj>/iGL>1*BjF0/XkV+>G!E+>5\s>9Gm[1c[0G1cIBO+?2,3 +%1G1[J1bgg03&*3B&`P1E]sG0/5.'4?O`>0HaRB4?O`>0H`1p0/Oe,+>5_t0H`#'0H`%l5!C)p+>5Gl>9GXC +%>p)5H)+>#B./i,@=0K:1.0f'q4/iGL>1*A5*0H`%l5!C)O45Dk4?O`>0HaRB0eb:63&EEH2BX\+0HaXD5!C)B +%0d'[C0J5%%/Mf=<1Gpj?3$9t62(gmD0JPI.3A*3G0JXbV+>5Sp>9Gd^+?)"t2E2g<0H`(m2)?@60H`>2+?)8&2`)X93?U4<+?)5% +%0d'aE0/t(Y+?2)60eP=<3&!963&36F/ibpK0f1"41bgpA3ArfT2]t(82_ZjE2`!?J+C-*C3?VNK3&*@C0K1+61,:X<3B8oN +%1a"b71H$j>0ekUB+?2,80J5@E1H%$3>p(dT0H`J?+>5Dk>9H$j+>5Dk2'=P/+>P&m3?U!u0/5.'0H`PC+C-*C0d'[C0f1"Y+?ht3 +%0/51(FE2M8+>5H)+>#B./i,@=0K:1.0f'q4/iGL>1*A5*0H`%l5!C)p+?ht3>p)p)5Dk1E\>*+>GW(0H`#(+D,%uF(HII1E^:=ok3?U". +%0H`#'0H`&%0H`#'0d&1n0/54)0H`#'1E\@o0/5:+0H`#'2'=Rq0/5@-0H`#'2]se,0H`#'3$<<`F_)[K0f^@g@;L!r+>5K(+EVXH +%AKWW]0d((:Cia/10/>:*AmoLsAKWW]1E^:@,AmoLsAKWW]2'?L>Cia/10/>F.AmoLsAKWW]2^!3_F_)[K1,pCg@;L!r +%+>5K1+D,%uF(HII1GBq*+>5N*+D,%uF(HII1GU(b@;L!r+>5N,+D,%uF(HII1Gg4d@;L!r+>5N.+>Ful1H$@0/heD$1H-F3+>5N1 +%+>bhr0/GU20H`#*0Hat9Cia/10/PC+1*A5,1*A7n0/PI-4?O`>0H_u*+?ht30/PL.1*A5,2'=Xs0/PR02]sb12]sds0/PX20H`#* +%3?Tn./heD$2)$.)0eP.&0/YI,0H`#+1*C1;Cia/10/YO.4?O`>3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0J5%% +%0J5%%0J5%%>p)3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0J5%%0J5%%0J5%%>p)3B8386U=:CAU&;`Ch7KpATAnW4s2L92B[*^F_)[K2)cXi@;L!r+>5T3+EVXHAKWW`3?VpBCia/10/bL,AmoLsAKWWa +%0d&.m0/bR.0H`#,1E\D)0H`#,1a"V-0H`#,2'=S*0H`#,2BZ3H>p(dY2]up(dY3$9mt0/bg50H`#-0H`%l0/kU.1a"G11*A8' +%0H`#-1E\A(0H`#-1a$C=Cia/10/ka2AmoLsAKWWb2BZU?Cia/10/kg4FE2M8+>5Z5+EVXHAKWWb3?UFH+>5`8+>6Z-D/a<&:gn'U +%F5Gl>9GXQ0H`)&0H`)&0H`&%0HaXD5!C)Q4s2L<0Hat9Cia/10/t[/0H`#.1*AA*0H`#.1E\J+0H`#.1a$C= +%Cia/10/tg30H`#.2BY+E+>5`8+>6Z-D/a<&6ZmHlDf%sT@5]5+>GQ(/heD$3&i%&Eckq95!C)B1E\eB+>5Dk0H`#' +%+>>E%+>5Jm0J5%%0/F_)/heD$1a"J)0H`#++>>E%+>5Vq0d&,.+>GK(+>5\s0H`#/+EVXHAKWW\0H`7r0/51(1*A5)1*A=p0/57* +%0H`#'1a"S4/heD$0f:(qEckq90/5@-/i=b)0fL4Z+>,Vr0eP.&0eP7<+C-*C0fU:[+>>E%+>>E%+>>E%+C-*C0f^@\+>GK&+>GK& +%+>GK&+C-*C1,'h/+>5K)+D,%uF(HII1,9t++>5K++D,%uF(HII1,L+-+>5K-+>=ok1,g=/DJF.AmoLsAKWW]3$9klBl"nF +%1-$Ih@;L!r+>5N)+?Vb/5!C)B1GL".2D-[+0/G@+4?O`M4s2L71E\@o0/GF-0H`#)2'=Rq0/GL/05bK?+>5N0+>=ok1H6Lh@;L!r +%+>5N2+>=ok1b^%-+?ht35!A~> +7747 8091 /RulerOrigin , +; +/AI11UndoFreeTextDocument : /ASCII85Decode , +%+>5`7+?Vb/0/+M-+?ht30/+M240/+M24=p%4s3$Q+?ht34?O`>0H`J?+>5`8+>6*#DerBuE+MLWDKI!S0H`J?+>5Dk./s5H9`TG= +%EWBeR@/sg5Jm0H`PC+?ht35!C)p+?ht30/Xk74kD +%!$D8/!,)@@!-/'J!+Q"N!+c.N!$D8?!-A3d!,MXH!*q#r0/aq84Ful0d&2+/heD$1*C1;Cia/10/F__@;L!r+>5PoFE2M8 +%+>5Sp1,gg>+>5Vq0eP.&0/k"./heD$3$9mt00(.//heD$0ea_(/heD$0eje*+>5H)+>=ok0f'q++>5H++>=ok0f:(-+>5H-+>=ok +%0fL4//heD$0fU:tEckq90/5I0AmoLsAKWW]0Hat9Cia/10/>7)AmoLsAKWW]1*C1;Cia/10/>=+AmoLsAKWW]1a$C=Cia/10/>C- +%AmoLsAKWW]2BZU?Cia/10/>I/AmoLsAKWW]3$;gACia/10/>O1AmoLsAKWW^0H`%l0/G=*AmoLsAKWW^1*C1;Cia/10/GC,AmoLs +%AKWW^1a$C=Cia/10/GI.0d&,*2BX\+0H`#)2]sju0/GR10H`#)3?U!u0/P@*AmoLsAKWW_0d&4o0/PF,0H`#*1E\eB+>5Dk/i=b8 +%4s2L81a"Or0/PO/1*A5,2BXq$0/PU10H`#*3$9mt0/P[3/MSk3+>5T++>#<#0H`#+0d&.m0/YL-AmoLsAKWW`1E\eB+>5`8+>6Z- +%D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L91a"nC+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L92'>"D+>5`8+>6)J8Q98GF@'eTDId=!+?ht30/YX1FE2M8+>5T2+D,%u +%F(HII2)l_#Eckq90/Ya4AmoLsAKWWa0Hat9Cia/10/bO-0H`#,1*A7n0/bU/0eP.&0/bX01bLI)0/b[10J5%%0/b^2>9I2o0/ba3 +%>9I2o0/bd40H`#,3?U!u0/kR-0H`#-0d&:q0/kX/0J5%%0/k[00J5%%0/k^1AmoLsAKWWb2'?L>Cia/10/kd3AmoLsAKWWb2^!3_ +%F_)[K2`Mq%Eckq90/km64?O`>3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>;7V-"MF`M%95!C)B +%3&_s70JG+5+>5]6+EVXHAKX0#+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+C-*R4s2L:+?Vb/0/+MQ+?Vb/0/+M24kH!,)?T!)il>!-nQ\!+c.9.3L9$+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#* +%+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K +%0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLs +%AKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L7 +%0d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ0H`%l5!C)p+?ht35!C)B0d&S@+>5Dk4?O`>0H`J?+>5Dk0H`#'+BosN40H_eCrr<-M+>5Gl./s5H2(9Y34s2sM+>5Dk./s6#!%B$D0d%nDrr=c&+?ht34?O`>0H_eCrrB/M+>5Gl./s5H1FXG14s4,R +%5!C)B0d&.m0/=Y(+>5Mn/i>UE+>5Po/i,:>+>5Sp/i>UE+>5Vq/i,:>+>5Yr/iOn+3$<<`F_)[K3?VNK4?O`>0H`%l0/4Rtrr4)\ +%.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Ful0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h +%)(?[l4s2sM+>5Dk1*A5)+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M)+>5Gl./s5HX!o/E1*A"E +%rrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`1p0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O +%4k8p0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk2BXY-+=R6h!37Ok0/=Xurr2u1.3L9" +%+=R6h+?:kn0/Oe"rr4*%.3Lf<+?Vb/0/+M-+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`=t +%0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O45Jm./s5H]."jU1E\+Fru`.- +%+>5Po./s5h)(?[l4s2sM+>5Dk0esk)0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f'q*0d%nD +%ru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0f1"+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po +%./s5h)(?[l4s2sM+>5Dk0f:(,0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fC.-0d%nDru`=2 +%+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0fU:/0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h +%)(?[l4s2sM+>5Dk1,9t*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,C%+0d%nDru`@3+>5Jm +%./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,U1-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l18 +%4s2sM+>5Dk1,pC00d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk1-$I10d%nDs"GHB+>5Jm./s6# +%*[r3q4s2sM+>5Dk1GBq)0d%nDs"Fj1+>5Jm./s6#%4ND`4s2sM+>5Dk0ea_'0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po +%./s5h)(?[l4s2sM+>5Dk0eje(0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fL4.0d%nDru`:1 +%+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f^@00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h +%)(?[l4s2sM+>5Dk1,'h(0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,0n)0d%nDru`@3+>5Jm +%./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,L+,0d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`4/+>5Po./s5h)(?[l +%4s2sM+>5Dk1,^7.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,g=/0d%nDru`:1+>5Jm./s5h +%*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1GL"*0d%nDru`@3+>5Jm./s5h*%5Po./s5h)(?[l4s2sM +%+>5Dk1GU(+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1G^.,0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1Gg4-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk +%1Gp:.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H$@/0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H-F00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H6L1 +%0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H?R20d%nDrrB)K+>5Jm./s5H]."jU1E\+Frr>/1 +%+>5Po./s5H4t.U<4s2sM+>5Dk1b^%*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1bg++0d%nD +%rrB)K+>5Jm./s5H]."jU1E\+Frr>/1+>5Po./s5H4t.U<4s2sM+>5Dk1bp1,0d%nDru`@3+>5Jm./s5h*%5Po +%./s5h(b$Rk4s2sM+>5Dk1c$7-0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1c-=.0d%nDrrB)K +%+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk1c6C/0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h +%)(?[l4s2sM+>5Dk1c?I?4s2sM+>5Dk1cHO@4s2sM+>5Dk1cQUA4s4,R0/51(2BXY-2'>"D+>5Dk./s5H8-!c4D?+_XDuaGLC]J9# +%+?ht30/5@-AmoLsAKX0#+>5Jm4?O`>0H`(m0/4S(1+k7'0/=Y^@;L!r+>5MnAmoLsAKWW_+EVXHAKWW`+>Pl.0H`#,+>GK&+>5Yr +%0eP.&0/t(.+>5_t0J5%%0/5.'0J5%%0/51(0d&,(1*A7n0/57*0H`#'1a"Ip0/5=,0H`#'2BX[r0/5C.0J5%%0/5F/FE2M8+>5H0 +%+D,%uF(HII1,'h_@;L!r+>5K)+D,%uF(HII1,9ta@;L!r+>5K++D,%uF(HII1,L+c@;L!r+>5K-+D,%uF(HII1,^7e@;L!r+>5K/ +%+D,%uF(HII1,pCg@;L!r+>5K1+D,%uF(HII1GBq*+>5N*+D,%uF(HII1GU(b@;L!r+>5N,+D,%uF(HII1Gg4d@;L!r+>5N.+>Ful +%1H$@0/heD$1H-F3+>5N1+>=ok1H?R3+>5Q*+D,%uF(HII1bg+.+>5Q,+>=ok1c$7:4,Mo5!C)B1c-=1+>5Q/+>P&m1c?I8 +%+>5Q1+>=ok1cQU3+>5Q3+>#<#0H`#+0H_r%/heD$2)-4-+>5T-+D,%uF(HII2)?@;45Dk +%0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)HF<45Dk0d&,(+BosC/heD%/heD% +%/heD%/heDR+?ht35!C)B2)QL=45T1+EVXHAKWW`2]u^@Cia/10/Y^3FE2M8+>5T4+D,%u +%F(HII2D?7c@;L!r+>5W-+>=ok2DQC/+>5W/+>GK&+>5W0+>b])+>5W1+>>E%+>5W2+Boso+>5W3+Boso+>5W4+>=ok2E;m6+>5Z- +%+>=ok2_cF3+>5Z/+>>E%+>5Z0+>>E%+>5Z1+D,%uF(HII2`2^i@;L!r+>5Z3+D,%uF(HII2`Dk$Eckq90/kj5FE2M8+>5Z6+?Vb/ +%00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR+>GK&+>GK&+>GK&+>>E%+C-*R4s3$Q+>5].+D,%uF(HII3&)O0+>5]0+>YW( +%+>5]1+>YW(+>5]2+D,%uF(HII3&Mg4+>5]4+?Vb/00)$802lS%E,9)QF`VYCD+8)FFEMV8+?ht30/tm50eb:60H`#.3$<<`F_)[Z +%4s2L7+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#*+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q +%0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%% +%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLsAKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e +%@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L70d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ +; +%AI11_EndTextDocument +%%EndSetup +%AI5_BeginLayer +1 1 0 1 0 0 1 0 79 128 255 0 50 0 Lb +(nord-xfce-terminal-banner) Ln +%_/ArtDictionary : +%_/XMLUID : (nord-xfce-terminal-banner) ; (AI10_ArtUID) , +%_; +%_ +1 A +0 Xw +1 Xw +/AI11Text : +0 /FreeUndo , +0 /FrameIndex , +0 /StoryIndex , +/Art : +X= +0 A +0 Xw +1 Ap +0 D +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +622.8076 -187.7617 m +265.1924 -187.7617 L +265.1924 -153.9658 L +622.8076 -153.9658 L +622.8076 -187.7617 L +n +X+ +; /ConfiningPath , +2 /TextAntialiasing , +; + +%_/ArtDictionary : +%_/XMLUID : (text-src) ; (AI10_ArtUID) , +%_; +%_ +0 0 Xd +6 () XW +1 A +u +0 A +*u +0 Ap +0 O +0.505455 0.098695 0.171084 0.001251 0.533333 0.752941 0.815686 Xa +267.6216 -153.9668 m +268.9717 -153.9668 L +290.9307 -184.9707 L +291.021 -184.9707 L +291.021 -153.9668 L +291.9209 -153.9668 L +291.9209 -186.0957 L +290.5708 -186.0957 L +268.6118 -155.0918 L +268.522 -155.0918 L +268.522 -186.0957 L +267.6216 -186.0957 L +267.6216 -153.9668 l +f +*U +*u +306.0513 -162.4268 m +312.8008 -162.4268 316.4458 -168.2314 316.4458 -174.5313 c +316.4458 -180.876 312.8008 -186.6357 306.0059 -186.6357 c +299.2563 -186.6357 295.6113 -180.876 295.6113 -174.5313 c +295.6113 -168.2314 299.2563 -162.4268 306.0513 -162.4268 c +f +1 D +306.0513 -185.7354 m +312.2158 -185.7354 315.5459 -180.3809 315.5459 -174.5313 c +315.5459 -168.7715 312.2158 -163.3262 306.0513 -163.3262 c +299.7964 -163.3262 296.5117 -168.7715 296.5117 -174.5313 c +296.5117 -180.3809 299.7964 -185.7354 306.0513 -185.7354 c +f +*U +*u +0 D +321.0815 -186.0957 m +320.1816 -186.0957 L +320.1816 -162.9668 L +321.0815 -162.9668 L +321.0815 -168.6816 L +321.1714 -168.6816 L +322.0264 -165.2617 324.7261 -162.2471 330.2612 -162.4268 c +330.2612 -163.3262 L +323.9165 -163.0117 321.0815 -167.9619 321.0815 -173.001 C +321.0815 -186.0957 l +f +*U +*u +349.835 -153.9668 m +350.7349 -153.9668 L +350.7349 -186.0957 L +349.835 -186.0957 L +349.835 -179.6162 L +349.7451 -179.6162 L +348.5752 -183.666 345.2002 -186.6357 340.4756 -186.6357 c +334.3555 -186.6357 330.6206 -181.5508 330.6206 -174.5762 c +330.6206 -168.0967 334.0854 -162.4268 340.4756 -162.4268 c +345.3804 -162.4268 348.665 -165.2617 349.7451 -169.4463 c +349.835 -169.4463 L +349.835 -153.9668 l +f +1 D +340.4756 -163.3262 m +334.1309 -163.3262 331.5205 -169.2217 331.5205 -174.5762 c +331.5205 -180.5156 334.4907 -185.7354 340.4756 -185.7354 c +346.415 -185.7354 349.835 -180.5605 349.835 -174.5762 c +349.835 -167.4219 346.1001 -163.3262 340.4756 -163.3262 c +f +*U +*u +0 D +0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 Xa +366.1699 -153.9668 m +369.77 -153.9668 L +378.8599 -167.4219 L +388.2642 -153.9668 L +391.6841 -153.9668 L +380.7046 -169.626 L +392.314 -186.0957 L +388.624 -186.0957 L +378.8599 -171.9209 L +368.96 -186.0957 L +365.4951 -186.0957 L +377.0596 -169.5361 L +366.1699 -153.9668 l +f +*U +*u +403.5195 -165.2617 m +398.9297 -165.2617 L +398.9297 -186.0957 L +396.0947 -186.0957 L +396.0947 -165.2617 L +392.1348 -165.2617 L +392.1348 -162.877 L +396.0947 -162.877 L +396.0947 -160.7617 L +396.0498 -156.7568 397.1748 -153.9668 401.7197 -153.9668 c +402.5293 -153.9668 403.2041 -154.0117 404.1045 -154.1475 c +404.1045 -156.5771 L +403.3389 -156.4424 402.709 -156.3516 402.0342 -156.3516 c +398.8848 -156.3516 398.9746 -158.332 398.9297 -160.8516 c +398.9297 -162.877 L +403.5195 -162.877 L +403.5195 -165.2617 l +f +*U +*u +422.5986 -170.166 m +421.834 -166.7012 419.7188 -164.5869 416.0293 -164.5869 c +410.584 -164.5869 407.8848 -169.5361 407.8848 -174.4863 c +407.8848 -179.4355 410.584 -184.3857 416.0293 -184.3857 c +419.5391 -184.3857 422.4189 -181.6406 422.7783 -177.7715 c +425.6133 -177.7715 L +424.8486 -183.3506 421.2041 -186.7705 416.0293 -186.7705 c +408.9189 -186.7705 405.0498 -181.1455 405.0498 -174.4863 c +405.0498 -167.8262 408.9189 -162.2021 416.0293 -162.2021 c +420.9785 -162.2021 424.8037 -164.8564 425.4336 -170.166 C +422.5986 -170.166 l +f +*U +*u +431.2393 -175.251 m +431.2842 -179.3906 433.4434 -184.3857 438.8887 -184.3857 c +443.0283 -184.3857 445.2783 -181.9561 446.1787 -178.4463 c +449.0127 -178.4463 L +447.7979 -183.7109 444.7383 -186.7705 438.8887 -186.7705 c +431.5088 -186.7705 428.4043 -181.1006 428.4043 -174.4863 c +428.4043 -168.3662 431.5088 -162.2021 438.8887 -162.2021 c +446.3584 -162.2021 449.3281 -168.7266 449.1035 -175.251 C +431.2393 -175.251 l +f +1 D +446.2686 -172.8662 m +446.1328 -168.5918 443.4785 -164.5869 438.8887 -164.5869 c +434.2539 -164.5869 431.6885 -168.6367 431.2393 -172.8662 C +446.2686 -172.8662 l +f +*U +*u +0 D +462.5137 -153.9668 m +487.9824 -153.9668 L +487.9824 -156.5771 L +476.7773 -156.5771 L +476.7773 -186.0957 L +473.7178 -186.0957 L +473.7178 -156.5771 L +462.5137 -156.5771 L +462.5137 -153.9668 l +f +*U +*u +487.1279 -175.251 m +487.1729 -179.3906 489.332 -184.3857 494.7773 -184.3857 c +498.917 -184.3857 501.167 -181.9561 502.0674 -178.4463 c +504.9014 -178.4463 L +503.6865 -183.7109 500.627 -186.7705 494.7773 -186.7705 c +487.3975 -186.7705 484.293 -181.1006 484.293 -174.4863 c +484.293 -168.3662 487.3975 -162.2021 494.7773 -162.2021 c +502.2471 -162.2021 505.2168 -168.7266 504.9922 -175.251 C +487.1279 -175.251 l +f +1 D +502.1572 -172.8662 m +502.0215 -168.5918 499.3672 -164.5869 494.7773 -164.5869 c +490.1426 -164.5869 487.5771 -168.6367 487.1279 -172.8662 C +502.1572 -172.8662 l +f +*U +*u +0 D +508.8174 -162.877 m +511.4268 -162.877 L +511.4268 -168.3213 L +511.5166 -168.3213 L +512.957 -164.5869 516.1064 -162.3818 520.292 -162.5615 c +520.292 -165.3965 L +515.1621 -165.127 511.6523 -168.9063 511.6523 -173.7217 c +511.6523 -186.0957 L +508.8174 -186.0957 L +508.8174 -162.877 l +f +*U +*u +522.9922 -162.877 m +525.6016 -162.877 L +525.6016 -166.791 L +525.7363 -166.791 L +527.2217 -164.002 529.6514 -162.2021 533.3418 -162.2021 c +536.4014 -162.2021 539.1465 -163.6865 540.001 -166.7461 c +541.3965 -163.6865 544.3213 -162.2021 547.3809 -162.2021 c +552.4658 -162.2021 555.0752 -164.8564 555.0752 -170.3467 c +555.0752 -186.0957 L +552.2402 -186.0957 L +552.2402 -170.4814 L +552.2402 -166.6563 550.8008 -164.5869 546.751 -164.5869 c +541.8457 -164.5869 540.4512 -168.6367 540.4512 -172.9561 c +540.4512 -186.0957 L +537.6162 -186.0957 L +537.6162 -170.3467 L +537.6611 -167.1963 536.3564 -164.5869 532.7568 -164.5869 c +527.8516 -164.5869 525.8721 -168.2764 525.8271 -173.1367 c +525.8271 -186.0957 L +522.9922 -186.0957 L +522.9922 -162.877 l +f +*U +*u +560.5215 -153.9668 m +563.3564 -153.9668 L +563.3564 -158.5117 L +560.5215 -158.5117 L +560.5215 -153.9668 l +f +560.5215 -162.877 m +563.3564 -162.877 L +563.3564 -186.0957 L +560.5215 -186.0957 L +560.5215 -162.877 l +f +*U +*u +568.7568 -162.877 m +571.5918 -162.877 L +571.5918 -166.8818 L +571.6816 -166.8818 L +572.7158 -164.0918 575.8213 -162.2021 579.1064 -162.2021 c +585.6309 -162.2021 587.6104 -165.6211 587.6104 -171.1563 c +587.6104 -186.0957 L +584.7754 -186.0957 L +584.7754 -171.6064 L +584.7754 -167.6016 583.4707 -164.5869 578.8809 -164.5869 c +574.3809 -164.5869 571.6816 -168.0068 571.5918 -172.5508 c +571.5918 -186.0957 L +568.7568 -186.0957 L +568.7568 -162.877 l +f +*U +*u +592.6953 -169.9863 m +592.9658 -164.542 596.79 -162.2021 602.1006 -162.2021 c +606.1953 -162.2021 610.6494 -163.4619 610.6494 -169.6709 c +610.6494 -182.001 L +610.6494 -183.0811 611.1895 -183.7109 612.3145 -183.7109 c +612.6299 -183.7109 612.9893 -183.6211 613.2148 -183.5313 c +613.2148 -185.916 L +612.585 -186.0508 612.1348 -186.0957 611.3701 -186.0957 c +608.4902 -186.0957 608.04 -184.4756 608.04 -182.0459 c +607.9502 -182.0459 L +605.9697 -185.0605 603.9453 -186.7705 599.4902 -186.7705 c +595.2158 -186.7705 591.7061 -184.6563 591.7061 -179.9756 c +591.7061 -173.4512 598.0508 -173.2266 604.1699 -172.5059 c +606.5098 -172.2363 607.8145 -171.9209 607.8145 -169.3564 c +607.8145 -165.5313 605.0703 -164.5869 601.7402 -164.5869 c +598.2305 -164.5869 595.6201 -166.2061 595.5303 -169.9863 C +592.6953 -169.9863 l +f +1 D +607.8145 -173.4063 m +607.7246 -173.4063 L +607.3652 -174.0811 606.1045 -174.3066 605.3398 -174.4414 c +600.5254 -175.2959 594.54 -175.251 594.54 -179.7959 c +594.54 -182.6309 597.0605 -184.3857 599.7148 -184.3857 c +604.0352 -184.3857 607.8604 -181.6406 607.8145 -177.0957 C +607.8145 -173.4063 l +f +*U +*u +0 D +616.3652 -153.9668 m +619.2002 -153.9668 L +619.2002 -186.0957 L +616.3652 -186.0957 L +616.3652 -153.9668 l +f +*U +U +%_/ArtDictionary : +%_/XMLUID : (text) ; (AI10_ArtUID) , +%_; +%_ +0 0 Xd +6 () XW +1 A +u +0 A +0 O +0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 Xa +466.5596 -135.9658 m +423.1685 -80.4209 L +423.1685 -65.0088 L +471.2588 -127.1807 L +497.1025 -127.1807 L +497.1025 -39.6357 L +453.6377 -39.6357 L +444.2422 -30.2373 L +506.499 -30.2373 L +506.499 -135.9658 L +466.5596 -135.9658 L +f +%_/ArtDictionary : +%_/XMLUID : (character-half-right) ; (AI10_ArtUID) , +%_; +%_ +421.4399 -30.2373 m +464.833 -85.7783 L +464.833 -101.1885 L +416.7417 -39.0205 L +390.8989 -39.0205 L +390.8989 -126.5654 L +434.3618 -126.5654 L +443.7612 -135.9658 L +381.5005 -135.9658 L +381.5005 -30.2373 L +421.4399 -30.2373 L +f +%_/ArtDictionary : +%_/XMLUID : (character-half-left) ; (AI10_ArtUID) , +%_; +%_ +U +%_/ArtDictionary : +%_/XMLUID : (logo) ; (AI10_ArtUID) , +%_; +%_ +9 () XW +LB +%AI5_EndLayer-- +%%PageTrailer +gsave annotatepage grestore showpage +%%Trailer +%%EOF + +endstream endobj 105 0 obj <>stream +%!PS-Adobe-3.0 +%%Creator: Adobe Illustrator(R) 16.0 +%%AI8_CreatorVersion: 16.0.0 +%%For: (sven) () +%%Title: (nord-xfce-terminal-banner.ai) +%%CreationDate: 10/2/2016 6:15 PM +%%Canvassize: 16383 +%%BoundingBox: 265 -196 623 -30 +%%HiResBoundingBox: 265.1924 -195.7256 622.8076 -30.2373 +%%DocumentProcessColors: Cyan Magenta Yellow Black +%%DocumentFonts: HelveticaNeueLTStd-UltLt +%%+ HelveticaNeueLTStd-Lt +%%+ HelveticaNeueLTStd-Roman +%%DocumentNeededFonts: HelveticaNeueLTStd-UltLt +%%+ HelveticaNeueLTStd-Lt +%%+ HelveticaNeueLTStd-Roman +%AI5_FileFormat 12.0 +%AI12_BuildNumber: 682 +%AI3_ColorUsage: Color +%AI7_ImageSettings: 0 +%%RGBProcessColor: 0 0 0 ([Passermarken]) +%AI3_Cropmarks: 0 -200 888 0 +%AI3_TemplateBox: 444.5 -100.5 444.5 -100.5 +%AI3_TileBox: 48 -406 840 206 +%AI3_DocumentPreview: None +%AI5_ArtSize: 14400 14400 +%AI5_RulerUnits: 6 +%AI9_ColorModel: 1 +%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 +%AI5_TargetResolution: 800 +%AI5_NumLayers: 1 +%AI9_OpenToView: 197 51 3 1385 955 2 0 0 144 116 0 0 0 1 1 0 1 1 0 1 +%AI5_OpenViewLayers: 3 +%%PageOrigin:138 -496 +%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 +%AI9_Flatten: 1 +%AI12_CMSettings: 00.MS +%%EndComments +%%BeginProlog +%%EndProlog +%%BeginSetup +[ +39/quotesingle 96/grave 128/Euro 130/quotesinglbase/florin/quotedblbase/ellipsis +/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE 145/quoteleft +/quoteright/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark +/scaron/guilsinglright/oe/dotlessi 159/Ydieresis /space 164/currency 166/brokenbar +168/dieresis/copyright/ordfeminine 172/logicalnot/hyphen/registered/macron/ring +/plusminus/twosuperior/threesuperior/acute/mu 183/periodcentered/cedilla +/onesuperior/ordmasculine 188/onequarter/onehalf/threequarters 192/Agrave +/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute +/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde +/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave +/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute +/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex +/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute +/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex +/udieresis/yacute/thorn/ydieresis +TE +%AI55J_Tsume: None +%AI3_BeginEncoding: _HelveticaNeueLTStd-UltLt HelveticaNeueLTStd-UltLt +[/_HelveticaNeueLTStd-UltLt/HelveticaNeueLTStd-UltLt 0 0 1 TZ %AI3_EndEncoding AdobeType +%AI55J_Tsume: None +%AI3_BeginEncoding: _HelveticaNeueLTStd-Lt HelveticaNeueLTStd-Lt +[/_HelveticaNeueLTStd-Lt/HelveticaNeueLTStd-Lt 0 0 1 TZ %AI3_EndEncoding AdobeType +%AI55J_Tsume: None +%AI3_BeginEncoding: _HelveticaNeueLTStd-Roman HelveticaNeueLTStd-Roman +[/_HelveticaNeueLTStd-Roman/HelveticaNeueLTStd-Roman 0 0 1 TZ %AI3_EndEncoding AdobeType +%AI5_Begin_NonPrinting +Np +%AI8_PluginGroupInfo +(Adobe Vectorized Object) (Nachgezeichnetes Bild) (Vectorize.aip) +%AI8_PluginGroupInfo +(Adobe Flare Plugin) (Flare) (flare.aip) +%AI8_PluginGroupInfo +(Adobe Deform Plugin) (Adobe H\374llen-Zusatzmodul) (Envelope and Warp.aip) +%AI8_PluginGroupInfo +(Adobe Planar Group) (Adobe-Zusatzmodul Interaktiv malen) (Live Paint.aip) +%AI8_PluginGroupInfo +(Adobe Perspective Plugin Group) (Adobe Perspective Plugin Group) (Perspective.aip) +%AI8_PluginGroupInfo +(Adobe Path Blends) (Adobe Angleichungen-Zusatzmodul) (Live Blends.aip) +%AI8_PluginGroupInfo +(Adobe Symbolism) (Adobe Symbolism) (Symbolism.aip) +%AI8_PluginGroupInfo +(Adobe PatternOnPath Brush Tool) (Adobe Musterpinsel-Zusatzmodul) (ArtOnPath.aip) +%AI8_PluginGroupInfo +(Adobe PatternOnPath Brush Tool) (Adobe Musterpinsel-Zusatzmodul) (ArtOnPath.aip) +%AI8_PluginGroupInfo +(Adobe ArtOnPath Brush Tool) (Adobe Bildpinsel-Zusatzmodul) (ArtOnPath.aip) +%AI8_PluginGroupInfo +(Adobe ArtOnPath Brush Tool) (Adobe Bildpinsel-Zusatzmodul) (ArtOnPath.aip) +%AI8_PluginGroupInfo +(Adobe Calligraphic Brush Tool) (Adobe Kalligrafiepinsel-Zusatzmodul) (Calligraphic Brush Tool.aip) +%AI8_PluginGroupInfo +(Adobe Scatter Brush Tool) (Adobe Spezialpinsel-Zusatzmodul) (Scatter Brush Tool.aip) +%AI8_PluginGroupInfo +(Adobe Scatter Brush Tool) (Adobe Spezialpinsel-Zusatzmodul) (Scatter Brush Tool.aip) +%AI8_PluginGroupInfo +(Adobe Pattern Editor Plugin Group) (Adobe Pattern Editor Plugin Group) (Swatch Libraries.aip) +%AI8_PluginGroupInfo +(Pathfinder Suite) (Adobe Zusammengesetzte Form) (PathFinder Suite.aip) +%AI5_End_NonPrinting-- +%AI5_Begin_NonPrinting +Np +20 Bn +%AI5_BeginGradient: (Orange, Gelb) +(Orange, Gelb) 0 5 Bd +[ +< +05040404050404040303030304040404030302040303030202020204040404040404050505050504 +040405050505 +> +< +BBBCBEBFC0C1C2C3C4C5C6C7C8C8C9CACBCDCECFD0D1D2D4D5D6D6D7D8D9DADBDCDDDEDFE0E1E2E3 +E3E4E5E6E7E8 +> +< +D6D6D5D5D5D6D6D6D5D5D5D5D5D5D6D6D6D5D5D5D5D4D4D5D5D5D5D5D5D5D5D5D6D6D6D5D5D4D4D3 +D3D4D4D4D3D3 +> +< +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +000000000000 +> +< +E9E9E9E9E8E8E8E8E8E8E8E8E7E7E7E7E7E7E7E6E6E6E6E6E6E6E6E5E5E5E5E5E5E5E4E4E4E4E4E4 +E4E4E3E3E3E3 +> +< +5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A4947464544434241403F3E3D3C3B3A393837 +363534333231 +> +< +32323232323131313131313131313030303030303030302F2F2F2F2F2F2F2F2F2E2E2E2E2E2E2E2E +2E2D2D2D2D2D +> +4 %_Br +< +02020203030202020103020201010102020201010102020202010103020202010103030202020203 +0303030303050505 +> +< +858687888A8B8D8E8F9091939495969798999B9C9D9E9FA0A2A3A5A5A7A8A9AAABACAEAFB0B1B2B3 +B4B5B6B7B8B9BABB +> +< +D8D8D8D8D8D7D7D7D6D7D6D6D7D7D6D7D7D7D7D7D6D7D7D7D6D6D5D5D5D4D4D3D3D4D4D4D5D5D5D5 +D5D5D5D5D5D6D6D6 +> +0.000549 +< +F1F1F1F0F0F0F0F0F0EFEFEFEFEFEFEEEEEEEEEEEEEDEDEDEDEDEDECECECECECECEBEBEBEBEBEBEA +EAEAEAEAEAE9E9E9 +> +< +8F8E8D8C8B8A898887868584838281807F7E7D7C7B7A7978767574737271706F6E6D6C6B6A696867 +666564636261605F +> +< +34343434343434343434343433333333333333333333333333333333333333333333333332323232 +3232323232323232 +> +4 %_Br +< +02020103020202010302020203020201010201010000020202010302020100020101010001010100 +0101010000020101010102020202030302 +> +< +3A3B3D3D3F404243444647494A4B4D4E4F505253545657585A5C5C5E5F6263646667686A6B6C6E6F +70717374767778797A7C7D7F8081828385 +> +< +EFEFEFEFEFEFEEEEEEEEEEEEEEEDEDECECECECECEBEBECECEBEBEBEBEAEAE9E9E9E9E8E7E8E7E6E5 +E5E4E3E2E2E1E0DFDEDDDDDCDBDADAD9D8 +> +< +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000 +> +< +FDFDFDFCFCFCFCFCFBFBFBFBFAFAFAFAFAF9F9F9F9F9F8F8F8F8F7F7F7F7F7F6F6F6F6F6F5F5F5F5 +F4F4F4F4F4F3F3F3F3F3F2F2F2F2F1F1F1 +> +< +C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0AFAEADACAAA9A8A7A6A5A4A3A2A1A0 +9F9E9D9C9B9A999897969594939291908F +> +< +00010203040506060708090A0B0C0D0E0F10111213141415161718191A1B1C1D1E1F202121222324 +25262728292A2B2C2D2E2E2F3031323334 +> +4 %_Br +< +0C0C0B0A090908080807070909090808080807070707070606060505050404040403030303030202 +04040303030303030303030303030303030303020202020202020202020202020202020202020202 +0202 +> +< +0000000001030406080A0A0B0D0F10121213151719191A1C1C1D1F1F202222242425272729292A2A +2B2B2D2D2E2E2E3030313131333333333535353737373737383838383838383A3A3A3A3A3A3A3A3A +3A3A +> +< +D7D8DADBDDDEDFE0E0E2E2E3E4E5E5E5E5E6E6E6E7E7E7E8E8E9E9E9E9EAEAEAEAEAEAEAEAEBEBEB +EBEBECECECECECEDEDEDEDEDEDEDEDEEEEEEEEEEEEEEEEEEEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEF +EFEF +> +0 +< +FFFFFFFFFFFFFFFFFFFFFFFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFEFE +FDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFD +FDFD +> +< +EFEEEDECEBEAE9E8E7E6E6E5E4E3E2E1E1E0DFDEDDDDDCDBDBDAD9D9D8D7D7D6D6D5D4D4D3D3D2D2 +D1D1D0D0CFCFCFCECECDCDCDCCCCCCCCCBCBCBCACACACACAC9C9C9C9C9C9C9C8C8C8C8C8C8C8C8C8 +C8C8 +> +< +262524232221201F1F1E1D1C1B1A1919181716161514131312111110100F0E0E0D0D0C0C0B0A0A0A +09090808070706060605050504040403030303020202020201010101010101000000000000000000 +0000 +> +4 %_Br +[ +0.019867 0.908171 0.827268 0.000092 0.890196 0.192157 0.176471 2 1 6 50 100 %_BS +%_0.019867 0.908171 0.827268 0.000092 0.890196 0.192157 0.176471 2 1 6 50 100 Bs +0.018158 0.73431 0.838254 0.000549 0.913725 0.372549 0.196078 2 1 6 50 88.764 %_BS +%_0.018158 0.73431 0.838254 0.000549 0.913725 0.372549 0.196078 2 1 6 50 88.764 Bs +0.009644 0.520867 0.847471 0.000549 0.945098 0.560784 0.203922 2 1 6 50 66.8539 %_BS +%_0.009644 0.520867 0.847471 0.000549 0.945098 0.560784 0.203922 2 1 6 50 66.8539 Bs +0.006928 0.22623 0.937102 0 0.992157 0.784314 0 2 1 6 50 28.0899 %_BS +%_0.006928 0.22623 0.937102 0 0.992157 0.784314 0 2 1 6 50 28.0899 Bs +0.048554 0 0.843168 0 1 0.937255 0.14902 2 1 6 28 0 %_BS +%_0.048554 0 0.843168 0 1 0.937255 0.14902 2 1 6 28 0 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Sehr weiche schwarze Vignette) +(Sehr weiche schwarze Vignette) 1 3 Bd +[ +0.760098 +0.688655 +0.631525 +0.871 +0.086275 +0.078431 +0.070588 +4 %_Br +0.760098 +0.688655 +0.631525 +0.871 +0.086275 +0.078431 +0.070588 +4 %_Br +[ +0.760098 0.688655 0.631525 0.871 0.086275 0.078431 0.070588 2 0 6 56.0729 57.4443 %_BS +%_0.760098 0.688655 0.631525 0.871 0.086275 0.078431 0.070588 2 0 6 56.0729 57.4443 Bs +0.760098 0.688655 0.631525 0.871 0.086275 0.078431 0.070588 2 0.651245 6 31.8603 79.7713 %_BS +%_0.760098 0.688655 0.631525 0.871 0.086275 0.078431 0.070588 2 0.651245 6 31.8603 79.7713 Bs +0.760098 0.688655 0.631525 0.871 0.086275 0.078431 0.070588 2 0.95 6 50 100 %_BS +%_0.760098 0.688655 0.631525 0.871 0.086275 0.078431 0.070588 2 0.95 6 50 100 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Unnamed gradient 1) +(Unnamed gradient 1) 0 4 Bd +[ +< +C7C7C7C5C5C5C4C3C3C2C2C1C0C0BFBFBFBDBDBDBCBBBBBABABAB8B8B7B7B6B6B5B5B5B4B3B3B2B2 +B1B1B1B0AFAFAFAEAEADADACACABAAAAAAA9A8A7A7A6A5A5A5A4A4A3A3A3A2A2A1A1A0A09F9F9F9F +9E9E9D9D9C9B9B9A9A9A999999989897979797969595 +> +< +A2A09F9E9C9B999896959392908F8D8C8A898786848381807E7D7B7A7977767472716F6E6C6B6A68 +66656361605E5D5B5A58575452514F4E4C4B4947454442413F3D3C3A3837353332302E2D2B2A2826 +252321201E1D1B18161413110F0D0C0A080605040200 +> +< +00000000000100010100020201030202040305040405040405050605040606050706060807090808 +0909080A09080A0A0B0A0A0C0C0B0C0C0D0D0C0D0C0B0C0B0B0C0B0D0C0B0D0C0B0D0C0C0D0D0E0E +0D0F0E0E0F0E0F0E0E0F0E0D0E0E0D0E0E0F0E0E0F0E +> +0 +< +4E4E4E4F4F4F4F505050505051515151515252525253535353535454545455555555555656565656 +575757575858585858595959595A5A5A5A5A5B5B5B5B5C5C5C5C5C5D5D5D5D5D5E5E5E5E5F5F5F5F +5F606060606161616161626262626263636363646464 +> +< +606162636465666768696A6B6C6D6E6F707172737475767778797A7B7C7D7E7F8081828384858687 +88898A8B8C8D8E8F9091929495969798999A9B9C9D9E9FA0A1A2A3A4A5A6A7A8A9AAABACADAEAFB0 +B1B2B3B4B5B6B7B8B9BABBBCBDBEBFC0C1C2C3C4C5C6 +> +< +A9AAAAABACACADADAEAFAFB0B1B1B2B3B3B4B4B5B6B6B7B8B8B9B9BABBBBBCBDBDBEBFBFC0C0C1C2 +C2C3C4C4C5C6C6C7C7C8C9C9CACBCBCCCCCDCECECFD0D0D1D2D2D3D3D4D5D5D6D7D7D8D9D9DADADB +DCDCDDDEDEDFDFE0E1E1E2E3E3E4E5E5E6E6E7E8E8E9 +> +4 %_Br +< +CBCAC9C8C7 +> +< +A1A1A1A2A2 +> +0 +0 +< +494A4C4D4E +> +0.376471 +< +AAAAAAA9A9 +> +4 %_Br +< +D0CFCECDCCCB +> +< +A9A8A6A3A2A1 +> +0 +< +000000000000 +> +< +464747484849 +> +< +5A5B5C5E5F60 +> +< +A5A6A7A8A9AA +> +4 %_Br +[ +0.584832 0.000153 0.056855 0 0.392157 0.776471 0.913725 2 1 6 50 98.3146 %_BS +%_0.584832 0.000153 0.056855 0 0.392157 0.776471 0.913725 2 1 6 50 98.3146 Bs +0.781613 0.634302 0 0 0.305882 0.376471 0.662745 2 1 6 50 62.9213 %_BS +%_0.781613 0.634302 0 0 0.305882 0.376471 0.662745 2 1 6 50 62.9213 Bs +0.795529 0.630091 0 0 0.286275 0.376471 0.666667 2 1 6 50 61.7977 %_BS +%_0.795529 0.630091 0 0 0.286275 0.376471 0.666667 2 1 6 50 61.7977 Bs +0.816617 0.662531 0 0.000336 0.27451 0.352941 0.647059 2 1 6 50 0 %_BS +%_0.816617 0.662531 0 0.000336 0.27451 0.352941 0.647059 2 1 6 50 0 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Unnamed gradient 10) +(Unnamed gradient 10) 0 4 Bd +[ +< +18191919171818181818181717171717181817171717171717161717171717171616161616161617 +15161616161616151515151515151414141414141413131314141414131313131313131213131313 +1313121212121212121111121112121210101010111111101010101010100F0F0F0F0F0F10100E0F +0F0F0F0F0F0E0E0E0E0E0E0E0D0D0D0D0D0D0D0B0B0B0B0B0C0C0A0A0B0B0B0B0B0A0A0A0A0A0A0A +09090A0A0A0A0A090909090909090807070707070705050506060606040505050505050504040404 +05040504030404040404020202020202020101010101010100000000 +> +< +9190908F8F8E8E8D8D8B8A8A898988888685868484838382828180807F7F7D7E7D7D7B7A7A797978 +78777776747473747272716F706E6F6E6E6C6D6B6A6B6A6A69696767676565646463636261616060 +5F5F5E5E5D5B5C5A5A5A5A58585755555455535352515150504F4F4E4E4D4C4C4A4B494948484746 +464545434343434140403F3F3E3E3D3B3B3A3A393938383735353535333432323130302F2F2E2E2C +2C2C2A2B29292829282626252523242223211F201E1F1D1E1C1B1B1A1B1919181817151514151313 +12121110100E0E0D0D0B0C0A09090808060705040403030102000000 +> +< +F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E2E1E0DFDEDDDCDBD9D9D8D7D6D5D4D3D1D0CFCECDCBCA +C9C8C7C6C5C4C3C1C0C0BFBEBDBCBBBAB9B8B7B6B5B4B3B1B0AFAEACACABA9A8A7A6A5A4A3A2A1A0 +9F9E9D9C9B9B999897969594939291908F8E8D8B8A898887868583838181807E7E7C7C7A7A787877 +7574737271706F6E6D6C6B6A69676665646261605E5E5C5C5B5A595757555553535250504E4D4C4B +4A4948474645444241413F3E3D3C3A3938373634343231302F2E2D2D2B2A2928272625242321211F +1F1D1C1C1A1A18171615131211100F0D0C0A0A090706050402010000 +> +< +03030303030303030303030202020202020202020202020202020202020202020202020202020203 +02020202020202020202020202020202020202020201010101010202010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010100010000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000 +> +< +DFDFDFDFE0E0E0E0E0E0E0E1E1E1E1E1E1E1E2E2E2E2E2E2E2E3E3E3E3E3E3E3E4E4E4E4E4E4E4E4 +E5E5E5E5E5E5E5E6E6E6E6E6E6E6E7E7E7E7E7E7E7E8E8E8E8E8E8E8E9E9E9E9E9E9E9EAEAEAEAEA +EAEAEBEBEBEBEBEBEBECECECECECECECEDEDEDEDEDEDEDEEEEEEEEEEEEEEEFEFEFEFEFEFEFEFF0F0 +F0F0F0F0F0F1F1F1F1F1F1F1F2F2F2F2F2F2F2F3F3F3F3F3F3F3F4F4F4F4F4F4F4F5F5F5F5F5F5F5 +F6F6F6F6F6F6F6F7F7F7F7F7F7F7F8F8F8F8F8F8F8F9F9F9F9F9F9F9FAFAFAFAFAFAFAFAFBFBFBFB +FBFBFBFCFCFCFCFCFCFCFDFDFDFDFDFDFDFEFEFEFEFEFEFEFFFFFFFF +> +< +80818182828383848485868687878888898A8A8B8B8C8C8D8D8E8F8F909091919292939494959596 +9697979899999A9A9B9B9C9D9D9E9E9F9FA0A0A1A2A2A3A3A4A4A5A5A6A7A7A8A8A9A9AAABABACAC +ADADAEAEAFB0B0B1B1B2B2B3B3B4B5B5B6B6B7B7B8B9B9BABABBBBBCBCBDBEBEBFBFC0C0C1C1C2C3 +C3C4C4C5C5C6C6C7C8C8C9C9CACACBCCCCCDCDCECECFCFD0D1D1D2D2D3D3D4D4D5D6D6D7D7D8D8D9 +DADADBDBDCDCDDDDDEDFDFE0E0E1E1E2E2E3E4E4E5E5E6E6E7E8E8E9E9EAEAEBEBECEDEDEEEEEFEF +F0F0F1F2F2F3F3F4F4F5F5F6F7F7F8F8F9F9FAFBFBFCFCFDFDFEFEFF +> +< +1C1D1E1F202122232425262728292A2B2C2D2E2F303132333435363738393A3B3C3D3E3F40414243 +4445464748494A4B4C4D4E4F505152535455565758595A5B5C5D5E5F606162636465666768696A6B +6C6D6E6F707172737475767778797A7B7C7D7E7F808182838485868788898A8B8C8D8E8F90919293 +9495969798999A9B9C9D9E9FA0A1A2A3A4A5A6A7A8A9AAABACADAEAFB0B1B2B3B4B5B6B7B8B9BABB +BCBDBEBFC0C1C2C3C4C5C6C7C8C9CACBCCCDCECFD0D1D2D3D4D5D6D7D8D9DADBDCDDDEDFE0E1E2E3 +E4E5E6E7E8E9EAEBECEDEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF +> +4 %_Br +< +212120212120202020201F1F1F1E1E1E1D1D1D1C1D1D1C1C1C1B1C1C1B1B1A1A1A1919191818 +> +< +BCBBBAB9B7B6B5B4B3B2B1B0AEAEACABAAA9A8A6A5A4A3A2A1A09E9D9C9B9A98969594939291 +> +< +FEFEFEFDFDFDFDFDFCFCFBFBFBFBFAFAFAFAFAF8F8F8F8F9F8F8F8F8F8F8F6F6F6F6F5F5F4F4 +> +< +0707070707060607060606060606060605050505050505050504040403030303030303030303 +> +< +D2D2D3D3D3D4D4D4D5D5D6D6D6D7D7D7D8D8D8D9D9D9DADADADBDBDBDCDCDDDDDDDEDEDEDFDF +> +< +5A5B5C5D5E5F606162636465666768696A6B6C6E6F707172737475767778797A7B7C7D7E7F80 +> +< +1515151616161616171717171717181818181819191919191A1A1A1A1A1A1B1B1B1B1B1C1C1C +> +4 %_Br +< +1312131315141515161615171618181919191A1A1B1A1B1B1C1C1C1D1D1E1E1F1F1F201F20202120 +2121 +> +< +8E8F9091929394959698999A9C9D9E9FA0A1A2A3A4A6A7A9A9ABACADAEAFB0B1B2B3B4B5B6B8B9BA +BBBC +> +< +F5F5F5F6F6F6F6F7F8F8F8F9F9FAFAFAFBFAFAFAFAFBFBFBFBFBFBFBFBFCFCFCFCFCFDFEFEFEFEFE +FEFE +> +< +02020202020202020202020202030203030304040404040405050505050505060606060606060707 +0707 +> +< +E4E4E3E3E2E2E1E1E0E0E0DFDFDEDEDDDDDDDCDCDBDBDADAD9D9D9D8D8D7D7D6D6D6D5D5D4D4D3D3 +D2D2 +> +< +84838281807F7E7D7C7B7A797877767574737271706E6D6C6B6A696867666564636261605F5E5D5C +5B5A +> +< +18181818181818171717171717171717171717171716161616161616161616161616161515151515 +1515 +> +4 %_Br +[ +0 0 0 0 1 1 1 2 0 6 50 98.3146 %_BS +%_0 0 0 0 1 1 1 2 0 6 50 98.3146 Bs +0.095491 0.568017 0.957336 0.011627 0.87451 0.501961 0.109804 2 0.4 6 50 82.7778 %_BS +%_0.095491 0.568017 0.957336 0.011627 0.87451 0.501961 0.109804 2 0.4 6 50 82.7778 Bs +0.128695 0.736812 0.997436 0.02826 0.823529 0.352941 0.082353 2 1 6 50 61.7977 %_BS +%_0.128695 0.736812 0.997436 0.02826 0.823529 0.352941 0.082353 2 1 6 50 61.7977 Bs +0.072602 0.555016 0.961486 0.006836 0.894118 0.517647 0.094118 2 1 6 50 0 %_BS +%_0.072602 0.555016 0.961486 0.006836 0.894118 0.517647 0.094118 2 1 6 50 0 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Unnamed gradient 14) +(Unnamed gradient 14) 1 4 Bd +[ +< +0000010304050608090A0B0D0E1011131415151618191A1B1C1D1F202122222324252628282A292A +2C2D2E30313132333536373738393A3B3B3D3D3F3F404142434344454646474849494A4B4C4C4D4E +4F50515252535454555656575858595A5A5B5C5C5D5D5E5F5F606061626262626363646565666667 +6769696A6A6B6B6C6C6D6D6E6E6F6F70707171727273737374747575757676777777777778787879 +79797A7A7A7B7B7B7C7C7C7C7D7D7D7E7E7E7E7E7F7F7F7F80808080808081818181818181818181 +818181818181 +> +< +00000000000102010201020203040304040505060506070607060706070708080908090809080A0B +0A0B0A0C0B0D0C0D0C0B0C0C0D0C0E0D0F0E0F0E100F101011111011111212121213131213131514 +1615151616171616171618181718181919181A19191B1A191B1A1C1C1B1D1C1C1D1D1D1E1E1D1F1E +1E20201F1F2020202221212222212123232224232322242423232525242426252525252726262625 +27272727272828282828292929292928282A2A2A292929292B2B2B2B2A2A2A2A2A2A2C2C2C2B2B2B +2B2B2B2B2B2B +> +< +00000000010001010101020202010303030204030403040403040405040405050505060605050405 +0505050606050605070707070708070706080708070808080707090809080809090809090A0A090A +08090B090908090A090A0809090909090909080A0A090909080A09090908090A0909090808090909 +09080809090A0A0A090909080A0A0A09090A09090A0B09090A0A0909090B0A0A0A0A0A090909090B +0A0A0A0A0A0909090909080A0A0A0A0A0A09090909090909080808080A0A0A0A0A0A080808080808 +080808080808 +> +0 +< +FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEEEDECEBEAE9E8E7E6E5E4E3E3E2E1E0DFDEDDDCDCDB +DAD9D8D7D6D6D5D4D3D2D1D1D0CFCECDCDCCCBCAC9C9C8C7C6C6C5C4C3C3C2C1C0C0BFBEBDBDBCBB +BBBAB9B8B8B7B6B6B5B4B4B3B2B2B1B0B0AFAEAEADADACABABAAAAA9A8A8A7A7A6A6A5A4A4A3A3A2 +A2A1A1A0A09F9F9E9E9D9D9C9C9B9B9A9A9999989897979796969595949494939393929291919190 +90908F8F8F8E8E8E8D8D8D8D8C8C8C8B8B8B8B8B8A8A8A8A89898989898988888888888888878787 +878787878787 +> +< +FFFEFEFDFDFCFBFBFAFAF9F9F8F7F7F6F6F5F5F4F4F3F2F2F1F1F0F0EFEFEEEEEDEDECECEBEBEAE9 +E9E8E8E7E7E6E6E5E5E5E4E4E3E3E2E2E1E1E0E0DFDFDEDEDDDDDDDCDCDBDBDADAD9D9D9D8D8D7D7 +D6D6D6D5D5D4D4D4D3D3D2D2D2D1D1D0D0D0CFCFCFCECECECDCDCCCCCCCBCBCBCACACAC9C9C9C8C8 +C8C7C7C7C7C6C6C6C5C5C5C4C4C4C4C3C3C3C2C2C2C2C1C1C1C1C0C0C0C0BFBFBFBFBFBEBEBEBEBE +BDBDBDBDBDBCBCBCBCBCBBBBBBBBBBBBBBBABABABABABABAB9B9B9B9B9B9B9B9B9B9B8B8B8B8B8B8 +B8B8B8B8B8B8 +> +< +FFFFFEFEFEFEFDFDFDFDFCFCFCFCFBFBFBFBFAFAFAFAF9F9F9F9F8F8F8F8F7F7F7F7F6F6F6F6F6F5 +F5F5F5F4F4F4F4F4F3F3F3F3F2F2F2F2F2F1F1F1F1F0F0F0F0F0EFEFEFEFEFEEEEEEEEEEEDEDEDED +EDEDECECECECECEBEBEBEBEBEBEAEAEAEAEAEAE9E9E9E9E9E9E8E8E8E8E8E8E7E7E7E7E7E7E7E6E6 +E6E6E6E6E6E5E5E5E5E5E5E5E4E4E4E4E4E4E4E4E3E3E3E3E3E3E3E3E3E2E2E2E2E2E2E2E2E2E2E1 +E1E1E1E1E1E1E1E1E1E1E1E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0DFDFDFDFDFDFDFDFDFDFDFDF +DFDFDFDFDFDF +> +4 %_Br +< +8182838485868788898A8B8C8D8E8F909091929394959596979898999A9B9C9C9D9E9FA0A0A1A2A3 +A4A4A5A7A7A9AAAAABACADAEAFAFB0B1B2B3B3B4B5B6B7B8B8B9BABABBBCBDBEBEBFC0C1C2C2C3C4 +C4C5C6C6C7C8C8C9CACBCCCDCDCECFCFD0D1D1D2D3D4D4D5D6D6D7D7D8D9DADBDBDCDCDDDEDEDFE0 +E0E1E2E2E3E3E4E4E4E5E6E7E7E8E9E9 +> +< +2B2C2C2D2E2D2F302F313032333334353536373637393839393A3C3B3C3E3D3E403F414242434244 +4545464747494A4A4B4D4C4E4F4E504F5152525354545557565859595A5A5B5D5C5E5F5F60616162 +64636564666767696A6A6B6C6C6E6F6F70727273737476767779797A7C7C7D7F7F80808183838586 +868789898B8D8D8E8E90919193949496 +> +< +0807090809090809090A0B0A0B0B0A0A0B0B0A0A0B0A0C0B0B0C0B0D0C0A0D0B0C0C0B0B0C0C0C0B +0C0C0B0C0D0E0D0D0E0D0F0D0C0E0D0F0E0C0E0D0E0E0C0D0D0E0D0D0E0E0C0D0D0E0C0C0D0B0D0C +0A0D0B0D0C0A0D0B0C0C0A0B0B0C0A0A0B0A0A0A0A0B0A0A0A090B0A080A090A0A080A0909090809 +09090808080707080808060607050806 +> +0 +< +87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 +5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 +37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 +0F0E0D0C0B0A09080706050403020100 +> +< +B8B7B7B6B5B5B4B3B3B2B2B1B0B0AFAEAEADACACABAAAAA9A9A8A7A7A6A5A5A4A3A3A2A1A1A0A09F +9E9E9D9C9C9B9A9A9998989796969595949393929191908F8F8E8D8D8C8C8B8A8A89888887868685 +84848383828181807F7F7E7D7D7C7B7B7A797978787776767574747372727170706F6F6E6D6D6C6B +6B6A6969686767666665646463626261 +> +< +DFDFDEDEDDDDDDDCDCDBDBDBDADADAD9D9D8D8D8D7D7D6D6D6D5D5D4D4D4D3D3D2D2D2D1D1D0D0D0 +CFCFCFCECECDCDCDCCCCCBCBCBCACAC9C9C9C8C8C7C7C7C6C6C5C5C5C4C4C4C3C3C2C2C2C1C1C0C0 +C0BFBFBEBEBEBDBDBCBCBCBBBBBABABAB9B9B9B8B8B7B7B7B6B6B5B5B5B4B4B3B3B3B2B2B1B1B1B0 +B0AFAFAFAEAEAEADADACACACABABAAAA +> +4 %_Br +< +E9EAEAEAEBEBEBECECEDEDEDEEEEEFEFF0F0F0F0F0F1F1F2F2F3F2F3F3F4F4F4F5F4F5F5F6F5F6F5 +F6F6F7F6F6F7F6F7F7F8F7F8F8F8F8F8F8F9F8F9F8F8F8F7F8F8F8F7F8F7F8F6F7F6F6F6F6F5F6F5 +F5F5F4F4F3F2 +> +< +969697979999999B9B9C9C9C9E9D9F9FA0A0A2A2A1A3A3A5A4A6A6A7A7A9A9A8AAAAABABACACADAC +AFAEB0AFAEB0AFB1B0B2B1B3B2B4B3B5B4B6B5B7B6B5B7B6B8B6B8B7B9B8BAB9BAB9BBBABCBABCBB +BDBBBDBCBEBD +> +< +06080909090B0D0E1011111313151618191B1C1E201E20212324262628292B2D2D2F303232343537 +353738393B3C3D3E404042434445464648484A4A4C4D4D4F4F515153545556575759595A5B5C5C5D +5E5F60616263 +> +< +0000000000000000000000010101010202030303040304040505060607070809090A0B0C0C0E0E10 +0F10111314151617191A1B1C1E1E202123242627292B2C2E2F3132343538393B3C3F404244464749 +4B4D4E515255 +> +< +000001010102020203030304040405050506060607070708080809090A0A0A0B0B0B0C0C0C0D0D0E +0E0E0F0F0F10101111111212121313141414151515161617171718181819191A1A1A1B1B1C1C1C1D +1D1D1E1E1F1F +> +< +616160605F5F5F5E5E5D5D5D5C5C5B5B5A5A59595958585757565655555454545353525251515050 +4F4F4E4E4E4D4D4C4C4B4B4A4A4949484847474646464545444443434242414140403F3F3E3E3D3D +3C3C3B3B3A3A +> +< +AAA9A8A8A7A6A5A4A3A2A2A1A09F9E9D9C9B9A99989897969594939291908F8E8D8C8B8A89888786 +868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A696867666564636261605F +5E5D5C5B5A59 +> +4 %_Br +[ +0 0 0 0 1 1 1 2 1 6 33.3333 0 %_BS +%_0 0 0 0 1 1 1 2 1 6 33.3333 0 Bs +0.507195 0.169009 0.033326 0 0.529412 0.721569 0.87451 2 1 6 50 29.2135 %_BS +%_0.507195 0.169009 0.033326 0 0.529412 0.721569 0.87451 2 1 6 50 29.2135 Bs +0.915404 0.587396 0.023102 0 0 0.380392 0.666667 2 1 6 51.9231 64.6067 %_BS +%_0.915404 0.587396 0.023102 0 0 0.380392 0.666667 2 1 6 51.9231 64.6067 Bs +0.950896 0.739254 0.388495 0.332372 0.121569 0.227451 0.34902 2 1 6 51.9231 100 %_BS +%_0.950896 0.739254 0.388495 0.332372 0.121569 0.227451 0.34902 2 1 6 51.9231 100 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Unnamed gradient 16) +(Unnamed gradient 16) 0 3 Bd +[ +< +00010406090C0F111315181A1C1E21242628292B2D2F313335383B3C3E4041434546494A4C4E5052 +545657585A5B5D5E6061626466676A6B6C6E6F707273757677797A7B7C7E8081828385868788898B +8C8D8E8F9191929394959698999A9B9C9D9E9F9FA0A1A2A3A4A5A6A7A8A9A9AAACACADAEAFAFB0B2 +B3B3B4B5B5B6B7B8B9B9BABBBCBDBDBEBFBFC1C1C2C2C3C3C4C5C5C6C7C8C8C9C9C9CACACBCCCDCD +CECECECFD0D1D1D2D2D2D3D3D4D5D5D6D6D6D7D7D7D8D8D8DADADADBDBDBDBDDDDDDDDDEDEDEDFDF +DFDFE0E0E1E1E1E2E2E2E3E3E3E3E3E4E4E5E5E5E5E6E6E6E6E7E7E7E7E7E7E8E8E8E9E9E9E9E9E9 +E9EAEAEAEBEBEBEBEBECECECECECECECECECECEDEDEEEEEEEEEEEEEEEEEEEEEEEFEFEFEFEFEFEFEF +EFEFEFEFF0F0F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F2F2F2F2F2F2F2F2F2F2F2F2F2F2 +F2F2F2F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 +F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 +F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 +F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4 +F4F4F4F4F4F4F4 +> +< +0001030507090B0D0F0F1112141619191B1D1F1F2123232628292B2D2D2F303233353638383B3C3E +3F4142434546484A4A4D4E4E4F525354555758595A5B5D5E5F60616263656667686A6B6C6D6E6F70 +7273747576777879797A7B7D7E7F80818182838485868687888A8A8B8C8E8E8F9090919294949596 +969799989A9A9B9D9C9E9E9FA0A0A1A1A2A2A4A4A5A5A6A6A7A7A9A8AAAAABABACACAEAEAEAFAFB1 +B0B2B2B2B3B3B5B5B5B6B6B6B8B7B7B9B9B9BABABABCBCBCBDBDBDBFBFBFBFC0C0C0C0C2C2C2C3C3 +C3C3C3C4C4C4C4C6C6C6C5C5C7C7C7C7C7C8C8C8C8C8CACACAC9C9C9CBCBCBCBCBCBCDCDCDCCCCCC +CCCECECECECECECECED0D0D0D0D0D0D0D0D0D0D1D1D1D1D1D1D1D1D1D1D1D3D3D3D3D3D3D3D3D3D3 +D3D3D3D3D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D4D6D6D5D5D5D5D5D5D5D5D5D5D5D5D5D5 +D5D5D5D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D6D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 +D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 +D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 +D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7D7 +D7D7D7D7D7D7D7 +> +< +000000010304040404050505050607080808080909090A0A0A0C0C0C0D0D0C0B0C0C0D0D0E0C0E0D +0E0E0F0E0D0E0E0D0E0E0F0E0F0F100F100F100F10110F0F1010100F100F0E0F100F100F10110F10 +0F100E0F0E0F100F1110110F100E0F0D100E0D0E0C0D0E0F0D0E0E0F0E0D0F0E0E0F0D0E0C0F0D0B +0E0C0A0D0B0E0C0A0D0B0B0C0A0A0B0B09090A0A090B09090A0A0909090908080808070709080806 +09070707080806060607070705050806060604070705050506060605050507050505060404060505 +05050503060606040404040405050505050404040406050505050505040404040606050505050505 +05040404060606060605050505050505050505040606060606060606060605050505050505050505 +05050707060606060606060606060606060606060606060605050505050505050505050505050505 +05050507070707070707070707070707070707070606060606060606060606060606060606060606 +06060606060606060606060606060606060606060606060606060606060606060606060606060606 +06060606060606060606060606060606060606060606060606060606060606060606060606060606 +06060606060606060606060606060606060606060606060606060606060606060606060606060606 +06060606060606 +> +0 +< +FFFDFBF9F7F5F3F1EFEDEBE9E7E5E3E1DFDDDCDAD8D6D4D3D1CFCDCCCAC8C7C5C3C2C0BFBDBCBAB9 +B7B5B4B3B1B0AEADABAAA9A7A6A5A3A2A19F9E9D9B9A99989795949392918F8E8D8C8B8A89888786 +8584838280807F7E7D7C7B7A79787776757473737271706F6E6E6D6C6B6A6A696867676665656463 +62626160605F5E5E5D5D5C5B5B5A5A595858575756565555545353525251515050504F4F4E4E4D4D +4C4C4C4B4B4A4A494949484848474746464645454544444443434342424242414141404040403F3F +3F3F3E3E3E3E3D3D3D3D3C3C3C3C3C3B3B3B3B3B3A3A3A3A3A393939393939383838383838373737 +37373737363636363636363635353535353535353534343434343434343434343333333333333333 +33333333333332323232323232323232323232323232323232323131313131313131313131313131 +31313131313131313131313131313131313131313131303030303030303030303030303030303030 +30303030303030303030303030303030303030303030303030303030303030303030303030303030 +30303030303030303030303030303030303030303030303030303030303030303030303030303030 +30303030303030303030303030303030303030303030303030303030303030303030303030303030 +30303030303030 +> +< +FFFDFBF9F7F5F3F1EFEEECEAE8E6E4E3E1DFDDDCDAD8D7D5D3D2D0CECDCBCAC8C7C5C4C2C1BFBEBC +BBB9B8B7B5B4B2B1B0AEADACABA9A8A7A6A4A3A2A1A09E9D9C9B9A9998969594939291908F8E8D8C +8B8A89888786858484838281807F7E7D7D7C7B7A79787877767575747372727170706F6E6D6D6C6B +6B6A6969686867666665656463636262616160605F5F5E5E5D5D5C5C5B5B5A5A5959585858575756 +5655555554545353535252525151515050504F4F4F4E4E4E4D4D4D4C4C4C4C4B4B4B4B4A4A4A4949 +49494948484848474747474746464646464545454545444444444444434343434343424242424242 +424141414141414141404040404040404040403F3F3F3F3F3F3F3F3F3F3F3E3E3E3E3E3E3E3E3E3E +3E3E3E3E3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C +3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3C3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B +3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B +3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B +3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B +3B3B3B3B3B3B3B +> +< +FFFEFDFCFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E1E0DFDEDDDCDBDBDAD9 +D8D7D6D6D5D4D3D3D2D1D0D0CFCECDCDCCCBCACAC9C8C8C7C6C6C5C5C4C3C3C2C1C1C0C0BFBEBEBD +BDBCBCBBBBBAB9B9B8B8B7B7B6B6B5B5B4B4B4B3B3B2B2B1B1B0B0AFAFAFAEAEADADADACACABABAB +AAAAAAA9A9A8A8A8A7A7A7A6A6A6A5A5A5A5A4A4A4A3A3A3A2A2A2A2A1A1A1A1A0A0A0A09F9F9F9F +9E9E9E9E9D9D9D9D9D9C9C9C9C9C9B9B9B9B9B9A9A9A9A9A99999999999998989898989898979797 +97979797969696969696969695959595959595959594949494949494949494949393939393939393 +93939393929292929292929292929292929292929191919191919191919191919191919191919191 +91919090909090909090909090909090909090909090909090909090909090909090909090909090 +9090908F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F +8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F +8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F +8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F8F +8F8F8F8F8F8F8F +> +4 %_Br +0 +0 +0 +0 +1 +1 +1 +4 %_Br +[ +0.956512 0.843168 0.022187 0 0.188235 0.231373 0.560784 2 0.16 6 50 100 %_BS +%_0.956512 0.843168 0.022187 0 0.188235 0.231373 0.560784 2 0.16 6 50 100 Bs +1 0 0 6 13 45 %_BS +%_1 0 0 6 13 45 Bs +1 0 0.77 6 50 0 %_BS +%_1 0 0.77 6 50 0 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Unnamed gradient 18) +(Unnamed gradient 18) 1 4 Bd +[ +< +0000010304050608090A0B0D0E1011131415151618191A1B1C1D1F202122222324252628282A292A +2C2D2E30313132333536373738393A3B3B3D3D3F3F404142434344454646474849494A4B4C4C4D4E +4F50515252535454555656575858595A5A5B5C5C5D5D5E5F5F606061626262626363646565666667 +6769696A6A6B6B6C6C6D6D6E6E6F6F70707171727273737374747575757676777777777778787879 +79797A7A7A7B7B7B7C7C7C7C7D7D7D7E7E7E7E7E7F7F7F7F80808080808081818181818181818181 +818181818181 +> +< +00000000000102010201020203040304040505060506070607060706070708080908090809080A0B +0A0B0A0C0B0D0C0D0C0B0C0C0D0C0E0D0F0E0F0E100F101011111011111212121213131213131514 +1615151616171616171618181718181919181A19191B1A191B1A1C1C1B1D1C1C1D1D1D1E1E1D1F1E +1E20201F1F2020202221212222212123232224232322242423232525242426252525252726262625 +27272727272828282828292929292928282A2A2A292929292B2B2B2B2A2A2A2A2A2A2C2C2C2B2B2B +2B2B2B2B2B2B +> +< +00000000010001010101020202010303030204030403040403040405040405050505060605050405 +0505050606050605070707070708070706080708070808080707090809080809090809090A0A090A +08090B090908090A090A0809090909090909080A0A090909080A09090908090A0909090808090909 +09080809090A0A0A090909080A0A0A09090A09090A0B09090A0A0909090B0A0A0A0A0A090909090B +0A0A0A0A0A0909090909080A0A0A0A0A0A09090909090909080808080A0A0A0A0A0A080808080808 +080808080808 +> +0 +< +FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEEEDECEBEAE9E8E7E6E5E4E3E3E2E1E0DFDEDDDCDCDB +DAD9D8D7D6D6D5D4D3D2D1D1D0CFCECDCDCCCBCAC9C9C8C7C6C6C5C4C3C3C2C1C0C0BFBEBDBDBCBB +BBBAB9B8B8B7B6B6B5B4B4B3B2B2B1B0B0AFAEAEADADACABABAAAAA9A8A8A7A7A6A6A5A4A4A3A3A2 +A2A1A1A0A09F9F9E9E9D9D9C9C9B9B9A9A9999989897979796969595949494939393929291919190 +90908F8F8F8E8E8E8D8D8D8D8C8C8C8B8B8B8B8B8A8A8A8A89898989898988888888888888878787 +878787878787 +> +< +FFFEFEFDFDFCFBFBFAFAF9F9F8F7F7F6F6F5F5F4F4F3F2F2F1F1F0F0EFEFEEEEEDEDECECEBEBEAE9 +E9E8E8E7E7E6E6E5E5E5E4E4E3E3E2E2E1E1E0E0DFDFDEDEDDDDDDDCDCDBDBDADAD9D9D9D8D8D7D7 +D6D6D6D5D5D4D4D4D3D3D2D2D2D1D1D0D0D0CFCFCFCECECECDCDCCCCCCCBCBCBCACACAC9C9C9C8C8 +C8C7C7C7C7C6C6C6C5C5C5C4C4C4C4C3C3C3C2C2C2C2C1C1C1C1C0C0C0C0BFBFBFBFBFBEBEBEBEBE +BDBDBDBDBDBCBCBCBCBCBBBBBBBBBBBBBBBABABABABABABAB9B9B9B9B9B9B9B9B9B9B8B8B8B8B8B8 +B8B8B8B8B8B8 +> +< +FFFFFEFEFEFEFDFDFDFDFCFCFCFCFBFBFBFBFAFAFAFAF9F9F9F9F8F8F8F8F7F7F7F7F6F6F6F6F6F5 +F5F5F5F4F4F4F4F4F3F3F3F3F2F2F2F2F2F1F1F1F1F0F0F0F0F0EFEFEFEFEFEEEEEEEEEEEDEDEDED +EDEDECECECECECEBEBEBEBEBEBEAEAEAEAEAEAE9E9E9E9E9E9E8E8E8E8E8E8E7E7E7E7E7E7E7E6E6 +E6E6E6E6E6E5E5E5E5E5E5E5E4E4E4E4E4E4E4E4E3E3E3E3E3E3E3E3E3E2E2E2E2E2E2E2E2E2E2E1 +E1E1E1E1E1E1E1E1E1E1E1E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0DFDFDFDFDFDFDFDFDFDFDFDF +DFDFDFDFDFDF +> +4 %_Br +< +8182838485868788898A8B8C8D8E8F909091929394959596979898999A9B9C9C9D9E9FA0A0A1A2A3 +A4A4A5A7A7A9AAAAABACADAEAFAFB0B1B2B3B3B4B5B6B7B8B8B9BABABBBCBDBEBEBFC0C1C2C2C3C4 +C4C5C6C6C7C8C8C9CACBCCCDCDCECFCFD0D1D1D2D3D4D4D5D6D6D7D7D8D9DADBDBDCDCDDDEDEDFE0 +E0E1E2E2E3E3E4E4E4E5E6E7E7E8E9E9 +> +< +2B2C2C2D2E2D2F302F313032333334353536373637393839393A3C3B3C3E3D3E403F414242434244 +4545464747494A4A4B4D4C4E4F4E504F5152525354545557565859595A5A5B5D5C5E5F5F60616162 +64636564666767696A6A6B6C6C6E6F6F70727273737476767779797A7C7C7D7F7F80808183838586 +868789898B8D8D8E8E90919193949496 +> +< +0807090809090809090A0B0A0B0B0A0A0B0B0A0A0B0A0C0B0B0C0B0D0C0A0D0B0C0C0B0B0C0C0C0B +0C0C0B0C0D0E0D0D0E0D0F0D0C0E0D0F0E0C0E0D0E0E0C0D0D0E0D0D0E0E0C0D0D0E0C0C0D0B0D0C +0A0D0B0D0C0A0D0B0C0C0A0B0B0C0A0A0B0A0A0A0A0B0A0A0A090B0A080A090A0A080A0909090809 +09090808080707080808060607050806 +> +0 +< +87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 +5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 +37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 +0F0E0D0C0B0A09080706050403020100 +> +< +B8B7B7B6B5B5B4B3B3B2B2B1B0B0AFAEAEADACACABAAAAA9A9A8A7A7A6A5A5A4A3A3A2A1A1A0A09F +9E9E9D9C9C9B9A9A9998989796969595949393929191908F8F8E8D8D8C8C8B8A8A89888887868685 +84848383828181807F7F7E7D7D7C7B7B7A797978787776767574747372727170706F6F6E6D6D6C6B +6B6A6969686767666665646463626261 +> +< +DFDFDEDEDDDDDDDCDCDBDBDBDADADAD9D9D8D8D8D7D7D6D6D6D5D5D4D4D4D3D3D2D2D2D1D1D0D0D0 +CFCFCFCECECDCDCDCCCCCBCBCBCACAC9C9C9C8C8C7C7C7C6C6C5C5C5C4C4C4C3C3C2C2C2C1C1C0C0 +C0BFBFBEBEBEBDBDBCBCBCBBBBBABABAB9B9B9B8B8B7B7B7B6B6B5B5B5B4B4B3B3B3B2B2B1B1B1B0 +B0AFAFAFAEAEAEADADACACACABABAAAA +> +4 %_Br +< +E9EAEAEBEBEBECECECEDEDEEEEEFEFF0F0F1F1F2F2F3F3F3F3F4F4F5F5F6F6F7F7F7F7F7F8F8F9F9 +F9F9FAFBFAFBFBFBFBFCFBFCFCFDFDFDFDFEFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFEFDFDFEFCFDFCFCFB +FCF9FAF9F9F8F6F5F4 +> +< +9696979799999B9B9B9C9C9E9E9F9FA1A1A2A2A3A3A5A5A6A6A8A8A9A9ABABACACABADADAEAEB0B0 +B1B1B2B4B3B5B4B6B5B7B6B8B7B9B8BABABBBABCBBBDBCBEBDBFBFC0BFC1C0C2C1C2C1C3C2C3C2C4 +C5C4C6C5C7C7C8C7C8C7C8C7C8C7C9C7C9C8C9CBCACCCACCCBCDCBCDCBCDCCCDCCCDCFCDCFCDCFCD +CFCDCFCECFCDCFCDCF +> +< +06080609090B0C0E0E0F11111314161717181A1A1C1D1F2022222223252628292A2C2D2F2F313032 +3234353537383A3B3D3E3F40424244444445464748494A4C4D4E4F505252545455565758595A5B5C +5D5E5E5F606060616263636465666667676869696A6B6C6C6E6E6F6F707172727373747575777779 +797A7A7C7C7D7D7E7E +> +< +000000000000000000000000010101020202020203030404050505050606070708090A0A0B0C0B0C +0D0E0E0F11111314161718191B1C1D1E1E1F2122232527282A2B2D2E3031333436373A3B3D3F4143 +4547484A4C4C4D4F50525456575A5C5E60636566696B6D6F71737577797B7E80828486898B8D8F92 +9496989A9C9FA0A3A4 +> +< +00000000010101010101020202020202030303030303040404040404050505050505060606060607 +070707070708080808080909090909090A0A0A0A0A0B0B0B0B0B0B0C0C0C0C0C0D0D0D0D0D0D0E0E +0E0E0E0F0F0F0F0F0F10101010101111111111121212121212131313131314141414141515151515 +151616161616171717 +> +< +616160605F5F5E5E5E5D5D5C5C5B5B5A5A5959585857575656555554545353525252515150504F4F +4E4E4D4C4C4B4B4A4A49494848474746464545444443434242414140403F3F3E3E3D3D3C3C3B3B3A +393938383737363635353434333332323131302F2F2E2E2D2D2C2C2B2B2A2A292928272726262525 +242423232222212120 +> +< +AAA9A9A8A7A6A5A4A4A3A2A1A09F9E9D9D9C9B9A99989796959494939291908F8E8D8C8B8A898988 +87868584838281807F7E7D7C7B7A79787877767574737271706F6E6D6C6B6A696867666564636261 +605F5E5D5C5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A +393837363534333231 +> +4 %_Br +[ +0 0 0 0 1 1 1 2 1 6 33.3333 0 %_BS +%_0 0 0 0 1 1 1 2 1 6 33.3333 0 Bs +0.507195 0.169009 0.033326 0 0.529412 0.721569 0.87451 2 1 6 50 35.955 %_BS +%_0.507195 0.169009 0.033326 0 0.529412 0.721569 0.87451 2 1 6 50 35.955 Bs +0.915404 0.587396 0.023102 0 0 0.380392 0.666667 2 1 6 51.9231 85.3932 %_BS +%_0.915404 0.587396 0.023102 0 0 0.380392 0.666667 2 1 6 51.9231 85.3932 Bs +0.957732 0.810636 0.494942 0.643946 0.090196 0.12549 0.192157 2 1 6 51.9231 100 %_BS +%_0.957732 0.810636 0.494942 0.643946 0.090196 0.12549 0.192157 2 1 6 51.9231 100 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Unnamed gradient 19) +(Unnamed gradient 19) 1 2 Bd +[ +< +8B8B8B8B8B8C8C8C8C8C8C8D8D8D8C8C8C8D8D8D8D8D8E8E8E8E8F8E8E8E8E8F8F8F8F8F8F8F8F90 +90909090919190909191919191919192929191929292929393939394949394949494959595959595 +959595959696959596969696979797979797979798989898989999999A9A999A9A9A9A9A9A9A9B9B +9A9B9B9B9B9B +> +< +00000000000000000003030202020303030203030305050505050505050505050707070707070707 +0707090A0909090A09090A0C0C0C0C0B0B0B0C0B0E0E0E0E0F0F0F0F111111111112121214141414 +1514151517171717171717171A1A1A1A1A1A1A1B1D1C1C1D1D1D1D1F1F1F1F1F1F1F1F2121222222 +222224252525 +> +< +9E9E9D9D9D9B9B9A9A999997979695959494939292908F8F8E8C8D8B8A8A8987858584828281807F +7F7D7B7A7979787675757371706F6E6E6C6B69686666646361605F5F5D5B5A585755545452514F4E +4C4A494745454342403F3D3C393836353331302E2C2C2A2927252421201E1C1A18171512100F0D0B +090704020100 +> +0 +< +82828282828181818181818080808080807F7F7F7F7F7E7E7E7E7D7D7D7D7D7C7C7C7C7B7B7B7B7A +7A7A7A7A797979797878787877777776767676757575757474747473737372727272717171707070 +706F6F6F6E6E6E6E6D6D6D6C6C6C6C6B6B6B6A6A6A69696969686868676767666666656565656464 +646363636262 +> +< +C1C1C1C1C1C1C1C1C1C0C0C0C0C0C0C0C0C0C0C0C0BFBFBFBFBFBFBFBFBFBFBFBEBEBEBEBEBEBEBE +BEBEBDBDBDBDBDBDBDBDBDBCBCBCBCBCBCBCBCBCBBBBBBBBBBBBBBBBBABABABABABABABAB9B9B9B9 +B9B9B9B9B8B8B8B8B8B8B8B8B7B7B7B7B7B7B7B7B6B6B6B6B6B6B6B5B5B5B5B5B5B5B5B4B4B4B4B4 +B4B4B3B3B3B3 +> +< +808081818182828383848485858687878888898A8A8B8C8C8D8E8E8F909091929393949595969798 +98999A9B9C9C9D9E9F9FA0A1A2A3A4A4A5A6A7A8A9A9AAABACADAEAEAFB0B1B2B3B4B5B5B6B7B8B9 +BABBBCBDBEBEBFC0C1C2C3C4C5C6C7C8C9CACBCCCDCDCECFD0D1D2D3D4D5D6D7D8D9DADBDCDDDEDF +E0E1E2E3E4E5 +> +4 %_Br +[ +0.547051 0 0.618921 0 0.509804 0.756863 0.501961 2 0 6 57.3034 0 %_BS +%_0.547051 0 0.618921 0 0.509804 0.756863 0.501961 2 0 6 57.3034 0 Bs +0.607843 0.145632 0 0 0.384314 0.701961 0.898039 2 0.7 6 50 100 %_BS +%_0.607843 0.145632 0 0 0.384314 0.701961 0.898039 2 0.7 6 50 100 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Unnamed gradient 21) +(Unnamed gradient 21) 0 3 Bd +[ +< +E6E5E5E4E2E2E0DEDEDDDCDBD9D9D8D7D5D4D3D1D1D0CFCECDCCCBCAC9C8C7C5C5C3C3C1C0C0BFBD +BCBBB9B9B7B7B6B5B3B3B2B1B0AFAEADADACABAAAAA9A9A8A8A7A7A7A6A6A5A5A4A4A4A3A3A3A3A3 +A2A2A2A2A2A2A2A1A2A2A1A1A2A1A1A1A0A0A09F9F9F9F9F9F9E9E9E9D9E9E9D9D9D9C9C9C9B9B9B +9B9A9A9A9B9A9A9A9999999999999999989898989797979797969696969696969696959595959594 +94949494949494949494949393939393939292929292929191919190909090908F8F8F8F8F8F8F8F +8F8E8E8E8E8E8E8E8E8E8E8E8D8D8D8D8D8D8D8D8D8D8D8D8D8D8C8C8C8C8C8C8C8C8C8C8C8C8C8C +8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B +8B8B8B8B8B8B8B8B8B +> +< +C6C5C3C2C1BFBEBBB9B8B6B4B3B1B0AEADABA9A7A5A3A19F9D9B9C9A98969392908E8C8A87878583 +82807D7A797977747270706E6C6A68676563615F5F5E5B5A5A59575556545353525151504F4E4E4C +4B4B4A4A49474746454544444342424141403E3F3D3D3C3C3B3B3A39393838373735353333323231 +313030302E2E2D2D2C2C2A2A2B2929282828262625252523232422222021211F1F1F1E1E1E1C1C1C +1A1A1A1A18191917171717151515141414141212121212101111110F0F0F0F0F0D0D0D0D0D0A0A0A +0A0B0B09090909090907070707070707070505050505050505050404040404040404040404010101 +01010101010101010202020202020200000000000000000000000000000000000000000000000000 +000000000000000000 +> +< +02030508090B0D10141618191B1F20222425292A2B2C2D2E31323233343538393A3B3C3D3F3F4041 +42434546464647484A4B4B4C4D4E4E50515253545455575858595B5C5C5E60606162626364686869 +6B6B6C6C6D7070717373747475787879797A7B7B7C7C7D7F80808182828282838386858686878787 +878888888A8A8B8B8C8C8C8C8C8D8D8E8F8F8F8F9090909191919191929292949494959595959595 +96969696969696969898989898989999999999999999999A9999999A9A9B9B9B9B9B9B9B9B9B9B9B +9B9B9B9B9B9B9B9B9B9C9C9C9B9B9B9B9B9C9C9C9C9C9C9C9D9D9D9D9D9D9D9D9D9D9D9D9D9E9E9E +9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E +9E9E9E9E9E9E9E9E9E +> +0 +< +3839393A3B3B3C3D3D3E3E3F40404141424343444445464647474848494A4A4B4B4C4C4D4D4E4E4F +5050515152525353545455555656575757585859595A5A5B5B5C5C5C5D5D5E5E5F5F5F6060616161 +626263636364646565656666666767676868686969696A6A6A6B6B6B6C6C6C6D6D6D6E6E6E6F6F6F +6F707070707171717272727273737373747474747575757575767676767777777777787878787879 +79797979797A7A7A7A7A7A7B7B7B7B7B7B7C7C7C7C7C7C7C7D7D7D7D7D7D7D7D7E7E7E7E7E7E7E7E +7E7F7F7F7F7F7F7F7F7F7F7F80808080808080808080808080808181818181818181818181818181 +81818181818181818282828282828282828282828282828282828282828282828282828282828282 +828282828282828282 +> +< +464748494A4B4C4E4F505152535455565758595A5B5C5D5E5F60606162636465666768696A6A6B6C +6D6E6F707171727374757576777879797A7B7C7D7D7E7F80808182838384858586878788898A8A8B +8C8C8D8D8E8F8F90919192929394949595969797989899999A9A9B9C9C9D9D9E9E9F9FA0A0A1A1A2 +A2A3A3A3A4A4A5A5A6A6A7A7A7A8A8A9A9A9AAAAABABABACACACADADAEAEAEAFAFAFB0B0B0B1B1B1 +B2B2B2B2B3B3B3B4B4B4B4B5B5B5B6B6B6B6B7B7B7B7B7B8B8B8B8B9B9B9B9B9BABABABABABBBBBB +BBBBBBBCBCBCBCBCBCBDBDBDBDBDBDBDBDBEBEBEBEBEBEBEBEBEBFBFBFBFBFBFBFBFBFBFBFC0C0C0 +C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1C1 +C1C1C1C1C1C1C1C1C1 +> +< +97979796969696969595959595949494949493939393939392929292929291919191919190909090 +90908F8F8F8F8F8F8E8E8E8E8E8E8E8D8D8D8D8D8D8D8C8C8C8C8C8C8C8B8B8B8B8B8B8B8B8A8A8A +8A8A8A8A8A8989898989898989888888888888888888888787878787878787878786868686868686 +86868686858585858585858585858585848484848484848484848484848484838383838383838383 +83838383838383838282828282828282828282828282828282828282828181818181818181818181 +81818181818181818181818181818181818181818181818180808080808080808080808080808080 +80808080808080808080808080808080808080808080808080808080808080808080808080808080 +808080808080808080 +> +4 %_Br +< +CACBCCCDCECFD0D2D3D4D6D7D8DADBDCDEDFE0E2E2E4E5E6 +> +< +A4A5A7A8AAABACADAFB0B2B3B7B8B9BBBCBEBFC1C2C3C4C6 +> +< +000000000000000000000000000000000001000102020102 +> +< +000000000000000000000000000000000000000000000000 +> +< +4C4B4A4949484746454443424241403F3E3D3C3B3B3A3938 +> +< +5E5D5C5B5A5958575655545351504F4E4D4C4B4A49484746 +> +< +A8A7A7A6A5A4A4A3A2A1A1A09F9E9E9D9C9B9B9A99989897 +> +4 %_Br +[ +0.547051 0 0.618921 0 0.509804 0.756863 0.501961 2 0.13 6 50 100 %_BS +%_0.547051 0 0.618921 0 0.509804 0.756863 0.501961 2 0.13 6 50 100 Bs +0.903716 0.77612 0.009003 0 0.219608 0.27451 0.592157 2 1 6 23.7288 50 %_BS +%_0.903716 0.77612 0.009003 0 0.219608 0.27451 0.592157 2 1 6 23.7288 50 Bs +0.790463 0.643061 0 0.000031 0.298039 0.368627 0.658824 2 0.22 6 50 0 %_BS +%_0.790463 0.643061 0 0.000031 0.298039 0.368627 0.658824 2 0.22 6 50 0 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Unnamed gradient 35) +(Unnamed gradient 35) 0 2 Bd +[ +< +0000000000000000000000010000000000000000010000000101000001 +> +< +6765646362615F5E5D5C5A585756535250504E4D4B4A49474645444241 +> +< +F4F4F4F3F3F3F3F2F2F2F2F2F1F1F0F0F0F0F0F0F0F0F0F0F0F0EFEFEF +> +0 +< +F7F7F7F8F8F8F8F9F9F9F9F9FAFAFAFAFAFBFBFBFBFCFCFCFCFCFDFDFD +> +< +A6A7A8A9AAABACADAEAFB0B1B2B3B5B6B7B8B9BABBBCBDBEBFC0C1C2C3 +> +0 +4 %_Br +[ +0.001984 0.254643 0.938994 0 0.992157 0.764706 0 2 1 6 50 76.0736 %_BS +%_0.001984 0.254643 0.938994 0 0.992157 0.764706 0 2 1 6 50 76.0736 Bs +0 0.40238 0.956725 0 0.968627 0.65098 0 2 1 6 50 23.3129 %_BS +%_0 0.40238 0.956725 0 0.968627 0.65098 0 2 1 6 50 23.3129 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Unnamed gradient 4) +(Unnamed gradient 4) 1 2 Bd +[ +< +0000010304050608090A0B0D0E10111314151618191A1B1C1D1F202122232425262728292B2C2D2E +3031323335363738393A3B3D3D3E4041424344454748494A4B4C4D4E505152535455565758595A5B +5C5D5E5F606162626364656667686A6B6C6D6E6F70717273747576777778797A7B7C7D7E7F808181 +> +< +0000000000010201020102030304030405050605060706070607080708080908090A090A090A0B0A +0C0B0C0D0C0D0C0D0E0E0F0E0F100F10101112111211121312141314151516151617161817181918 +19191A1B1A1C1B1C1D1D1E1D1E1E1F20202120212322232223252425252627272828292A292B2A2B +> +< +00000000010001010101020102010303020403040304040304040404050505050605050406050505 +06060607070607070707060807060808080708080808090909080A0A090B090A09090A0909090909 +0A0A09080A09090909090809090A090A0A09090A090A090B0A090B0A0A090A0A09090A0909080A08 +> +0 +< +FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 +D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0AF +AEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A898887 +> +< +FFFEFEFDFDFCFBFBFAFAF9F8F8F7F7F6F5F5F4F4F3F2F2F1F1F0EFEFEEEEEDEDECEBEBEAEAE9E8E8 +E7E7E6E5E5E4E4E3E2E2E1E1E0DFDFDEDEDDDCDCDBDBDAD9D9D8D8D7D6D6D5D5D4D3D3D2D2D1D0D0 +CFCFCECDCDCCCCCBCACAC9C9C8C8C7C6C6C5C5C4C3C3C2C2C1C0C0BFBFBEBDBDBCBCBBBABAB9B9B8 +> +< +FFFFFEFEFEFEFDFDFDFDFCFCFCFCFBFBFBFAFAFAFAF9F9F9F9F8F8F8F7F7F7F7F6F6F6F6F5F5F5F5 +F4F4F4F3F3F3F3F2F2F2F2F1F1F1F0F0F0F0EFEFEFEFEEEEEEEEEDEDEDECECECECEBEBEBEBEAEAEA +E9E9E9E9E8E8E8E8E7E7E7E7E6E6E6E5E5E5E5E4E4E4E4E3E3E3E2E2E2E2E1E1E1E1E0E0E0E0DFDF +> +4 %_Br +[ +0 0 0 0 1 1 1 2 1 6 50 0 %_BS +%_0 0 0 0 1 1 1 2 1 6 50 0 Bs +0.507195 0.169009 0.033326 0 0.529412 0.721569 0.87451 2 1 6 50 100 %_BS +%_0.507195 0.169009 0.033326 0 0.529412 0.721569 0.87451 2 1 6 50 100 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Unnamed gradient 41) +(Unnamed gradient 41) 1 2 Bd +[ +< +0000010304050608090A0C0D0F1011121314161718191A1B1C1D2021222425262829292A2B2C2E2E +2F31323334353637393A3C +> +< +0000010203020304050608090A090A0B0B0D0D0E0F0E0F1011121213141515161718191A1B1C1B1C +1C1D1E1F20212021222325 +> +< +00000001000202030203030403050605060506050607070707070809090A0A0B0A0B0A0B0B0B0D0D +0D0D0D0D0D0D0F0E0F0E0F +> +0 +< +FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E4E3E2E1E0DFDEDDDCDBDAD9D8D7 +D6D5D4D3D2D1D0CFCECDCC +> +< +FFFEFDFCFBFBFAF9F8F7F6F5F4F4F3F2F1F0EFEEEDEDECEBEAE9E8E7E6E5E5E4E3E2E1E0DFDEDEDD +DCDBDAD9D8D7D7D6D5D4D3 +> +< +FFFEFEFDFDFCFCFBFBFAFAF9F9F8F7F7F6F6F5F5F4F4F3F3F2F2F1F0F0EFEFEEEEEDEDECECEBEAEA +E9E9E8E8E7E7E6E6E5E5E4 +> +4 %_Br +[ +0 0 0 0 1 1 1 2 1 6 50 0 %_BS +%_0 0 0 0 1 1 1 2 1 6 50 0 Bs +0.233982 0.143648 0.059754 0 0.8 0.827451 0.894118 2 1 6 50 100 %_BS +%_0.233982 0.143648 0.059754 0 0.8 0.827451 0.894118 2 1 6 50 100 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Unnamed gradient 42) +(Unnamed gradient 42) 0 4 Bd +[ +< +0202010102020202 +> +< +757677797B7C7D7F +> +< +D4D4D5D5D6D6D6D6 +> +< +0000000000000000 +> +< +F3F3F3F3F2F2F2F2 +> +< +9C9B9A9997969594 +> +< +3838373736363535 +> +4 %_Br +< +010202 +> +< +797675 +> +< +D5D4D4 +> +< +000000 +> +0.952941 +< +999B9C +> +< +373838 +> +4 %_Br +< +03030303020202020202010101010102000001010101000000000101000000010101000001010202 +01010102020301010202020200010101 +> +< +B8B6B6B5B4B3B2B1B0AFAEADABAAA9A8A7A6A5A3A2A1A09F9E9D9C9B9897969594939291908F8D8C +8B8A88878684848281807F7D7C7B7A79 +> +< +FFFFFEFDFCFBFAFAF9F9F7F6F6F5F5F4F2F1F1F0F0EFEEEDECECEBEAE9E8E7E7E7E6E5E4E4E3E3E2 +E0DFDFDFDEDDDCDBDAD9D8D7D6D6D5D5 +> +< +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000 +> +< +EAEAEAEAEBEBEBEBEBEBECECECECECECEDEDEDEDEDEDEEEEEEEEEEEEEFEFEFEFEFEFF0F0F0F0F0F0 +F1F1F1F1F1F1F2F2F2F2F2F2F3F3F3F3 +> +< +6162636465666768696A6B6C6D6E6F707172737475767778797A7B7C7E7F80818283848586878889 +8A8B8C8D8E8F90919293949596979899 +> +< +0A0B0C0C0D0E0F1011111213141515161718191A1A1B1C1D1E1E1F2021222323242526272728292A +2B2C2C2D2E2F30303132333435353637 +> +4 %_Br +[ +0.006683 0.497566 0.841093 0 0.94902 0.580392 0.207843 2 1 6 50 98.3146 %_BS +%_0.006683 0.497566 0.841093 0 0.94902 0.580392 0.207843 2 1 6 50 98.3146 Bs +0.00705 0.458015 0.830503 0.000244 0.952941 0.611765 0.219608 2 1 6 50 62.9213 %_BS +%_0.00705 0.458015 0.830503 0.000244 0.952941 0.611765 0.219608 2 1 6 50 62.9213 Bs +0.004822 0.472908 0.833829 0 0.952941 0.6 0.215686 2 1 6 50 61.7977 %_BS +%_0.004822 0.472908 0.833829 0 0.952941 0.6 0.215686 2 1 6 50 61.7977 Bs +0.013214 0.719631 1 0.000916 0.917647 0.380392 0.039216 2 1 6 50 0 %_BS +%_0.013214 0.719631 1 0.000916 0.917647 0.380392 0.039216 2 1 6 50 0 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Unnamed gradient 5) +(Unnamed gradient 5) 1 4 Bd +[ +< +0000010304050608090A0B0D0E1011131415151618191A1B1C1D1F202122222324252628282A292A +2C2D2E30313132333536373738393A3B3B3D3D3F3F404142434344454646474849494A4B4C4C4D4E +4F50515252535454555656575858595A5A5B5C5C5D5D5E5F5F606061626262626363646565666667 +6769696A6A6B6B6C6C6D6D6E6E6F6F70707171727273737374747575757676777777777778787879 +79797A7A7A7B7B7B7C7C7C7C7D7D7D7E7E7E7E7E7F7F7F7F80808080808081818181818181818181 +818181818181 +> +< +00000000000102010201020203040304040505060506070607060706070708080908090809080A0B +0A0B0A0C0B0D0C0D0C0B0C0C0D0C0E0D0F0E0F0E100F101011111011111212121213131213131514 +1615151616171616171618181718181919181A19191B1A191B1A1C1C1B1D1C1C1D1D1D1E1E1D1F1E +1E20201F1F2020202221212222212123232224232322242423232525242426252525252726262625 +27272727272828282828292929292928282A2A2A292929292B2B2B2B2A2A2A2A2A2A2C2C2C2B2B2B +2B2B2B2B2B2B +> +< +00000000010001010101020202010303030204030403040403040405040405050505060605050405 +0505050606050605070707070708070706080708070808080707090809080809090809090A0A090A +08090B090908090A090A0809090909090909080A0A090909080A09090908090A0909090808090909 +09080809090A0A0A090909080A0A0A09090A09090A0B09090A0A0909090B0A0A0A0A0A090909090B +0A0A0A0A0A0909090909080A0A0A0A0A0A09090909090909080808080A0A0A0A0A0A080808080808 +080808080808 +> +0 +< +FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEEEDECEBEAE9E8E7E6E5E4E3E3E2E1E0DFDEDDDCDCDB +DAD9D8D7D6D6D5D4D3D2D1D1D0CFCECDCDCCCBCAC9C9C8C7C6C6C5C4C3C3C2C1C0C0BFBEBDBDBCBB +BBBAB9B8B8B7B6B6B5B4B4B3B2B2B1B0B0AFAEAEADADACABABAAAAA9A8A8A7A7A6A6A5A4A4A3A3A2 +A2A1A1A0A09F9F9E9E9D9D9C9C9B9B9A9A9999989897979796969595949494939393929291919190 +90908F8F8F8E8E8E8D8D8D8D8C8C8C8B8B8B8B8B8A8A8A8A89898989898988888888888888878787 +878787878787 +> +< +FFFEFEFDFDFCFBFBFAFAF9F9F8F7F7F6F6F5F5F4F4F3F2F2F1F1F0F0EFEFEEEEEDEDECECEBEBEAE9 +E9E8E8E7E7E6E6E5E5E5E4E4E3E3E2E2E1E1E0E0DFDFDEDEDDDDDDDCDCDBDBDADAD9D9D9D8D8D7D7 +D6D6D6D5D5D4D4D4D3D3D2D2D2D1D1D0D0D0CFCFCFCECECECDCDCCCCCCCBCBCBCACACAC9C9C9C8C8 +C8C7C7C7C7C6C6C6C5C5C5C4C4C4C4C3C3C3C2C2C2C2C1C1C1C1C0C0C0C0BFBFBFBFBFBEBEBEBEBE +BDBDBDBDBDBCBCBCBCBCBBBBBBBBBBBBBBBABABABABABABAB9B9B9B9B9B9B9B9B9B9B8B8B8B8B8B8 +B8B8B8B8B8B8 +> +< +FFFFFEFEFEFEFDFDFDFDFCFCFCFCFBFBFBFBFAFAFAFAF9F9F9F9F8F8F8F8F7F7F7F7F6F6F6F6F6F5 +F5F5F5F4F4F4F4F4F3F3F3F3F2F2F2F2F2F1F1F1F1F0F0F0F0F0EFEFEFEFEFEEEEEEEEEEEDEDEDED +EDEDECECECECECEBEBEBEBEBEBEAEAEAEAEAEAE9E9E9E9E9E9E8E8E8E8E8E8E7E7E7E7E7E7E7E6E6 +E6E6E6E6E6E5E5E5E5E5E5E5E4E4E4E4E4E4E4E4E3E3E3E3E3E3E3E3E3E2E2E2E2E2E2E2E2E2E2E1 +E1E1E1E1E1E1E1E1E1E1E1E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0DFDFDFDFDFDFDFDFDFDFDFDF +DFDFDFDFDFDF +> +4 %_Br +< +8182838485868788898A8B8C8D8E8F909091929394959596979898999A9B9C9C9D9E9FA0A0A1A2A3 +A4A4A5A7A7A9AAAAABACADAEAFAFB0B1B2B3B3B4B5B6B7B8B8B9BABABBBCBDBEBEBFC0C1C2C2C3C4 +C4C5C6C6C7C8C8C9CACBCCCDCDCECFCFD0D1D1D2D3D4D4D5D6D6D7D7D8D9DADBDBDCDCDDDEDEDFE0 +E0E1E2E2E3E3E4E4E4E5E6E7E7E8E9E9 +> +< +2B2C2C2D2E2D2F302F313032333334353536373637393839393A3C3B3C3E3D3E403F414242434244 +4545464747494A4A4B4D4C4E4F4E504F5152525354545557565859595A5A5B5D5C5E5F5F60616162 +64636564666767696A6A6B6C6C6E6F6F70727273737476767779797A7C7C7D7F7F80808183838586 +868789898B8D8D8E8E90919193949496 +> +< +0807090809090809090A0B0A0B0B0A0A0B0B0A0A0B0A0C0B0B0C0B0D0C0A0D0B0C0C0B0B0C0C0C0B +0C0C0B0C0D0E0D0D0E0D0F0D0C0E0D0F0E0C0E0D0E0E0C0D0D0E0D0D0E0E0C0D0D0E0C0C0D0B0D0C +0A0D0B0D0C0A0D0B0C0C0A0B0B0C0A0A0B0A0A0A0A0B0A0A0A090B0A080A090A0A080A0909090809 +09090808080707080808060607050806 +> +0 +< +87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 +5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 +37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 +0F0E0D0C0B0A09080706050403020100 +> +< +B8B7B7B6B5B5B4B3B3B2B2B1B0B0AFAEAEADACACABAAAAA9A9A8A7A7A6A5A5A4A3A3A2A1A1A0A09F +9E9E9D9C9C9B9A9A9998989796969595949393929191908F8F8E8D8D8C8C8B8A8A89888887868685 +84848383828181807F7F7E7D7D7C7B7B7A797978787776767574747372727170706F6F6E6D6D6C6B +6B6A6969686767666665646463626261 +> +< +DFDFDEDEDDDDDDDCDCDBDBDBDADADAD9D9D8D8D8D7D7D6D6D6D5D5D4D4D4D3D3D2D2D2D1D1D0D0D0 +CFCFCFCECECDCDCDCCCCCBCBCBCACAC9C9C9C8C8C7C7C7C6C6C5C5C5C4C4C4C3C3C2C2C2C1C1C0C0 +C0BFBFBEBEBEBDBDBCBCBCBBBBBABABAB9B9B9B8B8B7B7B7B6B6B5B5B5B4B4B3B3B3B2B2B1B1B1B0 +B0AFAFAFAEAEAEADADACACACABABAAAA +> +4 %_Br +< +E9EAEAEBEBEBECECECEDEDEEEEEFEFF0F0F1F1F2F2F3F3F3F3F4F4F5F5F6F6F7F7F7F7F7F8F8F9F9 +F9F9FAFBFAFBFBFBFBFCFBFCFCFDFDFDFDFEFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFEFDFDFEFCFDFCFCFB +FCF9FAF9F9F8F6F5F4 +> +< +9696979799999B9B9B9C9C9E9E9F9FA1A1A2A2A3A3A5A5A6A6A8A8A9A9ABABACACABADADAEAEB0B0 +B1B1B2B4B3B5B4B6B5B7B6B8B7B9B8BABABBBABCBBBDBCBEBDBFBFC0BFC1C0C2C1C2C1C3C2C3C2C4 +C5C4C6C5C7C7C8C7C8C7C8C7C8C7C9C7C9C8C9CBCACCCACCCBCDCBCDCBCDCCCDCCCDCFCDCFCDCFCD +CFCDCFCECFCDCFCDCF +> +< +06080609090B0C0E0E0F11111314161717181A1A1C1D1F2022222223252628292A2C2D2F2F313032 +3234353537383A3B3D3E3F40424244444445464748494A4C4D4E4F505252545455565758595A5B5C +5D5E5E5F606060616263636465666667676869696A6B6C6C6E6E6F6F707172727373747575777779 +797A7A7C7C7D7D7E7E +> +< +000000000000000000000000010101020202020203030404050505050606070708090A0A0B0C0B0C +0D0E0E0F11111314161718191B1C1D1E1E1F2122232527282A2B2D2E3031333436373A3B3D3F4143 +4547484A4C4C4D4F50525456575A5C5E60636566696B6D6F71737577797B7E80828486898B8D8F92 +9496989A9C9FA0A3A4 +> +< +00000000010101010101020202020202030303030303040404040404050505050505060606060607 +070707070708080808080909090909090A0A0A0A0A0B0B0B0B0B0B0C0C0C0C0C0D0D0D0D0D0D0E0E +0E0E0E0F0F0F0F0F0F10101010101111111111121212121212131313131314141414141515151515 +151616161616171717 +> +< +616160605F5F5E5E5E5D5D5C5C5B5B5A5A5959585857575656555554545353525252515150504F4F +4E4E4D4C4C4B4B4A4A49494848474746464545444443434242414140403F3F3E3E3D3D3C3C3B3B3A +393938383737363635353434333332323131302F2F2E2E2D2D2C2C2B2B2A2A292928272726262525 +242423232222212120 +> +< +AAA9A9A8A7A6A5A4A4A3A2A1A09F9E9D9D9C9B9A99989796959494939291908F8E8D8C8B8A898988 +87868584838281807F7E7D7C7B7A79787877767574737271706F6E6D6C6B6A696867666564636261 +605F5E5D5C5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A +393837363534333231 +> +4 %_Br +[ +0 0 0 0 1 1 1 2 1 6 33.3333 0 %_BS +%_0 0 0 0 1 1 1 2 1 6 33.3333 0 Bs +0.507195 0.169009 0.033326 0 0.529412 0.721569 0.87451 2 1 6 50 56.7416 %_BS +%_0.507195 0.169009 0.033326 0 0.529412 0.721569 0.87451 2 1 6 50 56.7416 Bs +0.915404 0.587396 0.023102 0 0 0.380392 0.666667 2 1 6 51.9231 85.3932 %_BS +%_0.915404 0.587396 0.023102 0 0 0.380392 0.666667 2 1 6 51.9231 85.3932 Bs +0.957732 0.810636 0.494942 0.643946 0.090196 0.12549 0.192157 2 1 6 51.9231 100 %_BS +%_0.957732 0.810636 0.494942 0.643946 0.090196 0.12549 0.192157 2 1 6 51.9231 100 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Unnamed gradient 51) +(Unnamed gradient 51) 0 2 Bd +[ +< +1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1F1F1F1F1F1F1F1F1F1F1F1F1F1F2020202020 +2020202222222222222222232323232323242424242425252525252626262628282828292929292A +2A2A2A2B2B2B2C2C2C2C2D2D2D2E2E2E2F2F2F30303031313232323334343535363636383739383A +3A3B3B3B3C3C3D3D3E3D3F3E403F41404241434244434444454646484849494A4B4B4C4C4D4E4E4F +4F5051515152525354545556565757575859595A5B5C5C5D5E5F5F60606161626364636465666767 +67686A6A6B6B6C6C6D6F7071707172737475757777787878797A7B7C7D7D7E7F8081 +> +< +15151515151515151515151515151515151515151516161616161616161616161616161818181818 +18181817191919191919181919191919191A1A1A1A1A1B1B1B1B1B1C1C1C1C1B1D1D1D1C1D1D1D1D +1E1E1E1D1F1F1E202020212121202221212222222323222423252525272626272729282829292A2A +2B2A2A2C2B2D2C2D2D2E2D2F2E2F2F302F313032313231333233333434353736373737393839393A +3B3A3B3B3C3C3C3D3E3E3F3F3F40414142434243444445464746484849484A4B4C4B4C4D4E4D4D4F +4F504F505152535353545556575858575859595B5B5C5D5D5E5D5E5E5F6060616262 +> +< +0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F11111111111111111111111111121212121212 +1212121413131313131314141414141415141414141615151515171616161618171717191818181A +19191A1B1A1A1B1A1A1C1B1B1D1D1C1E1E1D1E1F1E1F1F2020202121202222232322242425252526 +26262627272828292929292A2A2B2B2B2B2C2C2D2D2E2F2E302F3130323332343335353436353737 +363839393A3A3A3B3C3C3C3D3D3E3E3E3F404141414342434446454646484848484A4B4B4A4C4D4D +4E4E4E4F5050505153525354545555575858595859595A5A5B5D5D5E5E5F60606161 +> +< +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000101010101010101010101 +01010101010101020202020202020203030303030304040404040505050505060606070607070708 +08080808090909090A0A0A0B0B0B0C0C0C0D0D0D0E0E0F0F10101111121213131314151515161617 +181918191A1B1B1C1C1D1E1F2021212223242525262728292A2A2B2C2D2E2F303132 +> +< +E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E5E5E5E5E5E5E5E5E5E5E5E5E5E5E4E4E4E4E4 +E4E4E4E3E3E3E3E3E3E3E3E2E2E2E2E2E2E1E1E1E1E1E0E0E0E0E0DFDFDFDFDEDEDEDEDDDDDDDDDC +DCDCDCDBDBDBDADADADAD9D9D9D8D8D8D7D7D7D6D6D6D5D5D4D4D4D3D3D3D2D2D1D1D1D0D0CFCFCE +CECDCDCDCCCCCBCBCACAC9C9C8C8C7C7C6C6C5C5C4C4C3C3C2C1C1C0C0BFBFBEBDBDBCBCBBBABAB9 +B9B8B7B7B6B5B5B4B3B3B2B1B1B0AFAFAEADADACABAAAAA9A8A7A7A6A5A4A4A3A2A1A1A09F9E9D9D +9C9B9A9998989796959493929291908F8E8D8C8B8A89898887868584838281807F7E +> +< +E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E5E5E5E5E5E5E5E5E5E5E5E5E5E5E4E4E4E4E4 +E4E4E4E4E3E3E3E3E3E3E3E2E2E2E2E2E2E1E1E1E1E1E0E0E0E0E0DFDFDFDFDFDEDEDEDEDDDDDDDD +DCDCDCDCDBDBDBDADADAD9D9D9D9D8D8D8D7D7D7D6D6D6D5D5D4D4D4D3D3D3D2D2D1D1D1D0D0CFCF +CECECECDCDCCCCCBCBCACAC9C9C8C8C7C7C6C6C5C5C4C4C3C3C2C2C1C1C0BFBFBEBEBDBCBCBBBBBA +B9B9B8B8B7B6B6B5B4B4B3B2B2B1B0B0AFAEAEADACACABAAA9A9A8A7A6A6A5A4A3A3A2A1A0A09F9E +9D9C9C9B9A9998979796959493929191908F8E8D8C8B8A8988888786858483828180 +> +< +EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEAEAEAEAEAEAEAEAEAEAEAEAEAE9E9E9E9E9E9 +E9E9E9E8E8E8E8E8E8E8E7E7E7E7E7E7E6E6E6E6E6E5E5E5E5E5E4E4E4E4E4E3E3E3E3E2E2E2E2E1 +E1E1E0E0E0E0DFDFDFDEDEDEDDDDDDDCDCDCDBDBDBDADAD9D9D9D8D8D8D7D7D6D6D6D5D5D4D4D3D3 +D2D2D2D1D1D0D0CFCFCECECDCDCCCCCBCBCACAC9C9C8C7C7C6C6C5C5C4C3C3C2C2C1C0C0BFBFBEBD +BDBCBBBBBAB9B9B8B7B7B6B5B5B4B3B3B2B1B0B0AFAEAEADACABABAAA9A8A7A7A6A5A4A3A3A2A1A0 +9F9E9E9D9C9B9A99989897969594939291908F8F8E8D8C8B8A898887868584838281 +> +4 %_Br +[ +0.504265 0.386053 0.382086 0.197757 0.494118 0.501961 0.505882 2 1 6 50 100 %_BS +%_0.504265 0.386053 0.382086 0.197757 0.494118 0.501961 0.505882 2 1 6 50 100 Bs +0.115297 0.083894 0.060761 0 0.901961 0.901961 0.921569 2 1 6 73.0337 0 %_BS +%_0.115297 0.083894 0.060761 0 0.901961 0.901961 0.921569 2 1 6 73.0337 0 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Unnamed gradient 54) +(Unnamed gradient 54) 0 2 Bd +[ +< +1D1D1D1D1D1D1D1D1D1D1D1D1D1D1D1F1F1F1F1F1F1F1F1F1F1F2020202020202020222222222222 +2323232323232424242424252525252726262628282828292929292A2A2A2B2B2B2B2C2C2C2D2D2D +2E2E2E2F2F2F30303131313232323334353535363638383739383A3A3B3B3C3C3D3D3D3E3D3F3E40 +3F41404241434244434444454646484849494A4A4B4C4C4D4D4E4F4F505051525152525354545556 +565757575859595A5B5B5C5D5D5E5F6060616161626364636565666667686968696A6B6C6C6C6E6F +706F70727373747475757777787879797A7B7C7D7E7D7E7F8081818283848586868686878888898A +8A8B8C8C8D8E +> +< +15151515151515151515151515151516161616161616161616161618181818181818171919191919 +1819191919191A1A1A1A1A1B1B1B1B1A1C1C1C1B1D1D1D1C1D1D1D1D1E1E1D1F1F1F1E20201F2121 +202221212222222322222423252525262628272728282929292A2A2B2A2C2B2B2C2C2D2D2E2D2F2E +2F2F302F31303231323133323333343435353636373837383839383A3A3A3B3B3C3C3C3D3E3E3F3E +3F403F414241434343444545464746474848484A4B4A4B4C4B4C4D4E4D4E4F504F50515151525354 +555455575758575859595B5B5A5B5C5D5D5E5D5E5F6060616262626263646566666868696A68696A +6A6B6B6C6D6E +> +< +0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F11111111111111111111111312121212121212141313131313 +15141414141514141414161515151517161616181717171918181A1A19191B1A1A1B1B1A1C1C1B1D +1D1C1E1E1D1E1F1E1F1F202020212122222123232424232525252626262727272828292929292A2A +2B2B2B2B2C2C2D2D2E2F2E302F313032313334343534353436373737383839393A3A3A3B3C3C3C3E +3D3E403E3F41404142414244434446464647484848494A4B4B4B4C4C4D4D4E4E504F505052525152 +5354555455555758585958595A5B5B5C5D5D5D5E5F5F6060616163646564646566666767686A6A6B +6C6C6D6D6E6E +> +< +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000001010101010101010101010101010101010101020202020202 +0202030303030303040404040405050505050606060607070707070808080808090909090A0A0A0A +0B0B0B0C0C0C0D0D0E0E0F0F0F1010111111121313131415141516171617181919191A1A1B1C1C1D +1E1E1F1F2021222324252526262829292A2B2B2C2D2E2F303132333435363738393A3B3D3E3E4041 +424344464748 +> +< +E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E5E5E5E5E5E5E5E5E5E5E5E4E4E4E4E4E4E4E4E3E3E3E3E3E3 +E2E2E2E2E2E2E1E1E1E1E1E0E0E0E0DFDFDFDFDEDEDEDEDDDDDDDDDCDCDCDBDBDBDBDADADAD9D9D9 +D8D8D8D7D7D7D6D6D5D5D5D4D4D4D3D3D2D2D2D1D1D0D0D0CFCFCECECDCDCCCCCBCBCBCACAC9C9C8 +C8C7C7C6C6C5C5C4C4C3C3C2C1C1C0C0BFBFBEBEBDBCBCBBBBBAB9B9B8B8B7B6B6B5B5B4B3B3B2B1 +B1B0AFAFAEADADACABABAAA9A9A8A7A6A6A5A4A4A3A2A1A1A09F9E9E9D9C9B9B9A99989797969594 +93939291908F8E8E8D8C8B8A8989888786858483828281807F7E7D7C7B7A79787777767574737271 +706F6E6D6C6B +> +< +E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E5E5E5E5E5E5E5E5E5E5E5E5E4E4E4E4E4E4E4E4E3E3E3E3E3 +E3E2E2E2E2E2E1E1E1E1E1E0E0E0E0E0DFDFDFDFDEDEDEDEDDDDDDDDDCDCDCDBDBDBDBDADADAD9D9 +D9D8D8D8D7D7D7D6D6D6D5D5D4D4D4D3D3D2D2D2D1D1D0D0D0CFCFCECECDCDCDCCCCCBCBCACAC9C9 +C8C8C7C7C6C6C5C5C4C4C3C3C2C2C1C1C0C0BFBFBEBDBDBCBCBBBBBAB9B9B8B8B7B6B6B5B4B4B3B3 +B2B1B1B0AFAFAEADADACABABAAA9A9A8A7A7A6A5A4A4A3A2A2A1A09F9F9E9D9C9C9B9A9999989796 +95959493929191908F8E8D8C8C8B8A8988878786858483828180807F7E7D7C7B7A79787776767574 +737271706F6E +> +< +EBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEAEAEAEAEAEAEAEAEAEAEAE9E9E9E9E9E9E9E9E8E8E8E8E8E8 +E7E7E7E7E7E6E6E6E6E6E5E5E5E5E5E4E4E4E4E3E3E3E3E2E2E2E1E1E1E1E0E0E0DFDFDFDEDEDEDD +DDDDDCDCDCDBDBDBDADAD9D9D9D8D8D7D7D7D6D6D5D5D5D4D4D3D3D2D2D1D1D1D0D0CFCFCECECDCD +CCCCCBCBCACAC9C9C8C7C7C6C6C5C5C4C4C3C2C2C1C1C0C0BFBEBEBDBCBCBBBBBAB9B9B8B7B7B6B5 +B5B4B3B3B2B1B1B0AFAFAEADADACABAAAAA9A8A7A7A6A5A4A4A3A2A1A1A09F9E9D9D9C9B9A999998 +9796959594939291908F8F8E8D8C8B8A89888887868584838281807F7E7E7D7C7B7A797877767574 +737271706F6E +> +4 %_Br +[ +0.556023 0.429511 0.433326 0.282719 0.419608 0.431373 0.431373 2 1 6 50 100 %_BS +%_0.556023 0.429511 0.433326 0.282719 0.419608 0.431373 0.431373 2 1 6 50 100 Bs +0.115297 0.083894 0.060761 0 0.901961 0.901961 0.921569 2 1 6 70.2247 0 %_BS +%_0.115297 0.083894 0.060761 0 0.901961 0.901961 0.921569 2 1 6 70.2247 0 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Unnamed gradient 8) +(Unnamed gradient 8) 0 5 Bd +[ +< +00000000010101010000000002020201010100000101010101010101030303030303030203040404 +04040303030302020403030303020202020202040404040404040403030303040403030303030202 +02020202020404040403040303030202020202020204040404030303030303030303030303020202 +04040303030303020202020202010101010101010101000000020202020101010101010101010101 +01010101000001010100000000000000000000020202020201010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101 +01020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101 +> +< +000002030607080A0B0D0E101012131617191A1B1C1D1E202121222324252728292B2C2E2D2E2F31 +3233353436373839383A3B3C3C3D3E4040414342444547464849494B4C4C4D4E4E4F4F5051515352 +54555556565656585859595A5B5B5D5C5E5E5F5F5F6060616163636464656565666667676769686A +69696A6A6B6B6B6C6C6C6E6E6E6F6F6F707070717171727272737373737474747476767577777777 +7878787879797979797A7A7A7A7B7B7B7B7B7C7C7C7C7C7C7D7D7D7D7D7E7E7E7E7E7E8080808080 +807F8181818181818182828282828282828383838383838383838484848484848484848484858585 +85858585858585858585868686868686868686868686868686878787878787878787878787878787 +87878787878787878888888888888888888888888888888888888888888888888888888888888888 +88888888888888888A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A +8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A +8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A +8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A8A +8A8A8A8A8A8A8A8A8A8A8A8A8A8A +> +< +00010406080A0D0F121417191B1D2021232525282A2C2E2F313437373A3C3D4042424545484B4C4E +4F515254555757585B5C5E5F616364656768696C6D6E6F72727374757778797A7B7C7F8081828384 +85868788898A8 +endstream endobj 106 0 obj <>stream +C8C8E8E90909192939495959697989A9B9C9C9D9E9FA09FA1A2A3A4A4A5A7A6A8A8 +AAAAABACACADAEADAFB0AFB0B0B1B2B2B3B3B4B4B4B5B5B6B6B7B7B8B8B9B9BABABBBBBCBCBDBDBF +BFC0C0C1C1C1C2C2C3C3C3C4C4C5C5C5C6C6C6C7C7C7C8C8C8C9C9C9CACACACBCBCBCCCCCCCCCDCD +CDCFCFCFCFD0D0D0D0D1D1D1D1D1D2D2D2D2D3D3D3D3D3D5D5D5D4D4D4D6D6D6D6D6D6D7D7D7D7D7 +D7D8D8D8D8D8D8D8D9D9D9D9D9D9D9D9DADADADADADADADADADADBDBDBDBDBDBDBDBDBDBDBDCDCDC +DCDCDCDCDCDCDCDCDCDCDCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEDEDEDEDEDEDEDEDE +DEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDFDFDFDFDFDFDFDFDFDFDFDFDF +DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF +DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF +DFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDF +DFDFDFDFDFDFDFDFDFDFDFDFDFDF +> +< +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000 +> +< +FFFFFFFFFEFEFEFEFEFEFEFEFDFDFDFDFDFDFDFDFCFCFCFCFCFCFCFCFBFBFBFBFBFBFBFBFBFAFAFA +FAFAFAFAFAFAFAFAF9F9F9F9F9F9F9F9F9F9F9F8F8F8F8F8F8F8F8F8F8F8F8F7F7F7F7F7F7F7F7F7 +F7F7F7F7F7F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5 +F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3 +F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 +F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2 +F2F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 +F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 +F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 +F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 +F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 +F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1F1 +F1F1F1F1F1F1F1F1F1F1F1F1F1F1 +> +< +FFFEFDFCFAF9F8F7F6F5F4F3F2F1F0EEEDECEBEAE9E8E7E6E5E5E4E3E2E1E0DFDEDDDCDBDBDAD9D8 +D7D6D5D5D4D3D2D1D1D0CFCECECDCCCBCBCAC9C9C8C7C6C6C5C4C4C3C2C2C1C0C0BFBFBEBDBDBCBC +BBBABAB9B9B8B8B7B7B6B6B5B4B4B3B3B2B2B1B1B1B0B0AFAFAEAEADADACACACABABAAAAAAA9A9A8 +A8A8A7A7A6A6A6A5A5A5A4A4A4A3A3A3A2A2A2A1A1A1A0A0A09F9F9F9F9E9E9E9E9D9D9D9C9C9C9C +9B9B9B9B9A9A9A9A9A99999999989898989897979797979796969696969595959595959494949494 +949493939393939393929292929292929291919191919191919190909090909090909090908F8F8F +8F8F8F8F8F8F8F8F8F8F8E8E8E8E8E8E8E8E8E8E8E8E8E8E8E8D8D8D8D8D8D8D8D8D8D8D8D8D8D8D +8D8D8D8D8D8D8D8D8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C8C +8C8C8C8C8C8C8C8C8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B +8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B +8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B +8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B +8B8B8B8B8B8B8B8B8B8B8B8B8B8B +> +< +FFFDFBF9F7F5F3F1EFEDEBE9E7E5E3E1DFDDDCDAD8D6D4D3D1CFCDCCCAC8C7C5C3C2C0BFBDBBBAB8 +B7B5B4B2B1AFAEADABAAA8A7A6A4A3A2A09F9E9C9B9A99979695949391908F8E8D8C8A8988878685 +84838281807F7E7D7C7B7A79787776757474737271706F6E6E6D6C6B6A6A69686766666564646362 +6161605F5F5E5D5D5C5B5B5A5A5958585757565555545453535252515150504F4F4E4E4D4D4C4C4B +4B4A4A494949484847474746464545454444444343434242424141414040403F3F3F3E3E3E3E3D3D +3D3C3C3C3C3B3B3B3B3A3A3A3A3A3939393938383838383737373737373636363636363535353535 +35343434343434343333333333333333323232323232323232323131313131313131313131303030 +30303030303030303030302F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2F2E2E2E2E2E2E2E2E2E +2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2E2D2D2D2D2D2D2D2D2D2D2D2D2D +2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D +2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D +2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D +2D2D2D2D2D2D2D2D2D2D2D2D2D2D +> +4 %_Br +0 +0 +0 +0 +1 +1 +1 +4 %_Br +0 +0 +0 +0 +1 +1 +1 +4 %_Br +0 +0 +0 +0 +1 +1 +1 +4 %_Br +[ +0.003449 0.539849 0.873197 0.000275 0.945098 0.545098 0.176471 2 0.16 6 50 100 %_BS +%_0.003449 0.539849 0.873197 0.000275 0.945098 0.545098 0.176471 2 0.16 6 50 100 Bs +1 0 0 6 13 51.0989 %_BS +%_1 0 0 6 13 51.0989 Bs +1 0 0.65 6 61.1111 34.6154 %_BS +%_1 0 0.65 6 61.1111 34.6154 Bs +1 0 0.65 6 71.0526 20.3297 %_BS +%_1 0 0.65 6 71.0526 20.3297 Bs +1 0 0.77 6 50 0 %_BS +%_1 0 0.77 6 50 0 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Unnamed gradient 83) +(Unnamed gradient 83) 1 2 Bd +[ +< +ADACACABABAAA9A8A7A7A6A5A4A3A3A2A1A09F9F9D9C9C9B9A9998979695959493929190908F8E8C +> +< +16141413131212110F100E0F0D0E0D0D0C0A0B0A0B090A0907080707060605060403040203010200 +> +< +FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE +> +< +01010101010000000000000000000000000000000000000000000000000000000000000000000000 +> +< +5E5F606162636465666768696A6B6C6D6E6F7071737475767778797A7B7C7D7E7F80818283848586 +> +< +A6A7A7A8A8A9A9AAABABACACADADAEAEAFB0B0B1B1B2B2B3B4B4B5B5B6B6B7B7B8B9B9BABABBBBBC +> +< +2B2B2B2B2A2A2A2A2A2A292929292929292828282828282727272727272726262626262625252525 +> +4 %_Br +[ +0.680323 0.085298 1 0.003143 0.368627 0.65098 0.168627 2 1 6 50 34.7917 %_BS +%_0.680323 0.085298 1 0.003143 0.368627 0.65098 0.168627 2 1 6 50 34.7917 Bs +0.550256 0 0.995056 0 0.52549 0.737255 0.145098 2 1 6 50 76.0736 %_BS +%_0.550256 0 0.995056 0 0.52549 0.737255 0.145098 2 1 6 50 76.0736 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Verblassender Himmel) +(Verblassender Himmel) 0 2 Bd +[ +0.800259 +0.401739 +0 +0.000275 +0.145098 +0.505882 +0.768627 +4 %_Br +[ +0.800259 0.40174 0 0.000275 0.145098 0.505882 0.768627 2 0 6 50 100 %_BS +%_0.800259 0.40174 0 0.000275 0.145098 0.505882 0.768627 2 0 6 50 100 Bs +0.800259 0.40174 0 0.000275 0.145098 0.505882 0.768627 2 1 6 50 0 %_BS +%_0.800259 0.40174 0 0.000275 0.145098 0.505882 0.768627 2 1 6 50 0 Bs +BD +%AI5_EndGradient +%AI5_BeginGradient: (Weiß, Schwarz) +(Weiß, Schwarz) 0 2 Bd +[ +< +0000010304050608090B0C0D0F1011121314151718191A1B1C1E1F21222324252728292A2B2C2D2E +2F3031323435363738393A3B3C3D3E3F40404142434445464748494A4B4C4D4E4F4F505152535455 +565657585A5B5C5C5D5E5E5F6061616263646565666768696A6A6B6C6E6F6F707172727374757676 +777879797A7B7C7C7D7E7F808081828283848485858687878888898A8A8B8C8C8D8E8E8F8F909191 +9293939494959696979798989899999A9B9B9C9D9D9E9E9FA0A0A1A2A2A3A4A4A5A6A6A7A8A8A9AA +AAABABACADADAEAEAFAFB0B1B2B3B3B4B5B5B6B7B8B9B9BABBBCBCBDBE +> +< +00000102030405060708090A0A0B0C0C0D0E0F1011111213141516171819191A1B1B1C1D1E1F2020 +2122232425262728292A2B2C2C2D2E2E2F2F303031323334353636373838393A3B3B3C3D3D3E3F40 +4041424344454646474849494A4B4C4C4D4D4E4F4F50505152535354555657585859595A5B5B5C5D +5D5E5E5F6060616162636464656667676869696A6A6B6C6C6D6E6E6F6F7070717272737474757676 +777879797A7B7C7C7D7E7E7D7E7F7F80818182838384858686878888898A8A8B8C8D8D8E8F8F9091 +919293949495959696979898999A9B9B9C9D9D9E9FA0A1A2A3A3A4A5A5 +> +< +000001020304050708090A0B0C0D0E0F10111112131415161718191A1B1C1C1D1E1F202121222323 +2425262728292A2B2C2D2D2E2F2F30313233343535363738393A3B3B3C3D3D3E3F40404142434344 +444546464748494A4A4B4C4D4D4E4F4F5050515252535354545556575758595A5A5B5C5C5D5D5E5E +5F606061626263636465656667676869696A6A6B6B6C6D6D6E6F6F70707172727374747575767777 +787879797A7A7B7B7C7D7D7F80818182828383848585868687878888898A8A8B8C8C8D8E8E8F8F90 +91919292939394949495959697979899999A9B9B9C9D9D9E9F9FA0A0A0 +> +< +00000000000000000000000000000000000000000000000000000000000000000000000000000001 +01010101010101020202020202030303040404050505060607070708080809090A0A0A0B0B0B0C0D +0D0E0E0F1010111212131414151516171718191A1A1B1C1C1D1E1F20202122232425262728292A2B +2C2D2E2F3031323334353637393A3B3C3D3E4041424344464748494B4C4D4E505153545657595A5C +5D5F606163646667696B6C6D6F7072747577787A7C7D7F81828486888A8C8D8F91939597989A9C9E +A0A1A3A5A7A8A9ABACAEB0B2B4B6B8B9BBBDBFC1C3C5C7C8CACCCDCECF +> +< +FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 +D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1 +B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A89 +8887868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A696867666564636261 +605F5E5D5C5B5A59585756565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A +393837363534333231302F2E2D2C2B2A292827262524232221201F1E1D +> +< +FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 +D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1 +B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A89 +8887868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A696867666564636261 +605F5E5D5C5B5A59585756565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A +393837363534333231302F2E2D2C2B2A292827262524232221201F1E1D +> +< +FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 +D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 +AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 +87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 +5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 +37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B +> +4 %_Br +[ +0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 2 1 6 50 100 %_BS +%_0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 2 1 6 50 100 Bs +0 0 0 0 1 1 1 2 1 6 50 0 %_BS +%_0 0 0 0 1 1 1 2 1 6 50 0 Bs +BD +%AI5_EndGradient +%AI5_End_NonPrinting-- +%AI5_Begin_NonPrinting +Np +%AI3_BeginPattern: (Laub) +(Laub) 146.5576 118.877 593.1973 378.0615 +%_0 A +%_0 Xw +%_u +%_0 1 0 0 0 Xy +%_0 J 0 j 1 w 10 M []0 d %_0 XR +%_146.5576 378.0615 m +%_593.1973 378.0615 L +%_593.1973 118.877 L +%_146.5576 118.877 L +%_146.5576 378.0615 L +%_n +%_/ArtDictionary : +%_1 /Bool (AIPattern_Editor_Backing_Tile_Rect) , +%_; +%_ +%_u +%_0 O +%_0.791623 0.163851 1 0.031525 0.2 0.572549 0.180392 Xa +%_525.3965 187.373 m +%_530.916 182.7959 536.0586 174.9121 536.8398 164.623 C +%_537.916 174.8535 540.0371 182.7559 545.0508 188.584 C +%_538.7227 185.4883 536.4355 179.4307 V +%_533.4746 184.6807 525.3965 187.373 Y +%_f +%_511.3965 238.2559 m +%_512.6152 232.2871 517.7031 227.0801 524.3203 224.5254 C +%_521.6094 231.5176 522.6172 238.3232 526.4746 244.3145 C +%_525.5762 236.5488 527.9434 231.1035 532.2617 226.2754 C +%_530.9023 231.1035 531.0195 235.543 533.3398 240.1406 C +%_532.3965 231.6602 539.5078 227.3535 548.9551 221.6982 c +%_561.6152 214.1191 566.2324 205.6563 568.2031 194.4717 C +%_564.752 201.3389 558.3008 207.6094 540.3438 211.7637 c +%_518.0459 216.9238 509.9521 224.1797 511.3965 238.2559 C +%_f +%_511.666 146.0469 m +%_506.9785 150.6426 504.7559 158.2314 504.3965 167.7676 c +%_503.9258 180.2949 498.9873 185.4248 491.0703 186.2959 C +%_502.8721 181.7168 495.5146 169.1787 499.0127 160.4502 C +%_492.5713 165.2354 494.6309 181.1279 481.3779 181.8535 C +%_491.1582 178.6572 484.2129 165.1768 490.666 157.3545 C +%_482.8584 157.4619 479.2695 151.2275 469.1279 154.123 C +%_473.8428 150.4873 479.0928 148.2002 487.9736 148.2002 C +%_481.7197 144.3389 478.9746 139.5723 476.666 132.8545 C +%_486.7939 143.4473 501.5186 147.5186 511.666 146.0469 C +%_Bb +%_1 (Unnamed gradient 35) -0.041802 0 161.1868 0.574118 1 0 0 -1 39406.5586 53548.4453 1 Bg +%_-23.2971 -7.93696 19.6586 -57.7032 -7241.9507 7969.9282 Xm +%_-36859.207 -12557.377 19.6586 -57.7032 29611.8242 20525.4551 Bc +%_-12.2917 -4.18759 19.6586 -57.7032 -7247.3818 7968.0776 Bm +%_-36859.207 -12557.377 19.6586 -57.7032 -7259.6733 7963.8901 Bc +%_f +%_0 BB +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_1 0 0 -1 39406.5586 53548.4453 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_; +%_ +%_0 1 Xd +%_Bb +%_2 (Unnamed gradient 35) -0.041802 0 161.1868 0.574118 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_*u +%_1 D +%_0 g +%_629.0391 111.6025 m +%_658.4766 107.5791 675.2715 90.8115 678.1875 75.0508 C +%_674.2637 84.3018 665.2031 90.2744 654.5879 93.6826 C +%_665.2031 79.6699 661.7813 61.8164 675.7031 51.9854 C +%_665.3379 63.0244 668.4922 76.4473 660.7988 88.7139 C +%_673.0566 81.8174 674.9219 72.043 677.8223 61.5664 c +%_682.207 45.7217 689.3672 41.4775 695.043 39.3887 C +%_683.3438 38.9385 666.3828 43.9199 658.2617 59.4902 c +%_649.6504 75.999 656.8125 93.8984 635.7813 103.2627 C +%_645.3828 95.207 650.5078 83.7461 644.4746 68.8418 C +%_646.7305 90.7646 623.8477 94.3467 620.166 109.2949 C +%_619.5371 97.7646 627.3457 88.0723 634.7148 83.3906 C +%_624.4258 86.7627 615.5 92.3799 611.2949 105.2148 C +%_604.3711 83.8223 616.6094 66.7598 624.1953 66.7598 c +%_626.8223 66.7598 628.7305 68.4316 628.7305 70.9238 c +%_628.7305 77.373 617.0898 77.373 614.1348 89.7783 C +%_619.457 78.9551 639.6836 80.9063 639.6836 69.0186 c +%_639.6836 59.2803 626.0449 54.9814 617.3281 61.0342 C +%_623.7148 52.6943 638.5859 52.415 642.8789 62.4541 C +%_643.541 58.1465 641.5703 51.6973 635.4258 49.3252 c +%_628.4395 46.626 621.9414 51.8096 Y +%_629.582 40.7959 642.8809 48.1367 656.0078 47.9053 c +%_666.8751 47.7119 674.1133 42.085 677.2988 36.7266 C +%_674.332 38.2129 672.6602 38.6123 669.6699 38.6777 C +%_675.9629 34.7998 680.5176 25.8818 678.7188 17.209 C +%_677.4219 23.458 670.1465 27.8877 656.3633 28.8428 c +%_640.8066 29.9199 632.5547 32.4121 627.2637 38.1455 C +%_638.4648 33.1885 656.1992 40.0537 668.25 32.1133 C +%_660.7969 40.6514 644.3164 38.2021 632.5352 40.0938 c +%_611.8281 43.417 599.2109 78.3809 600.8281 93.7266 C +%_595.1719 70.3037 610.2891 57.5264 613.6152 44.5928 c +%_617.25 30.458 610.25 20.7666 603.666 15.79 C +%_613.9473 31.1885 596.25 40.4199 599.0527 60.1465 C +%_593.8262 40.958 603.4883 35.4854 603.4883 25.5488 c +%_603.4883 15.79 594.9043 12.5547 593.1973 0 C +%_591.4922 12.5547 582.9063 15.79 582.9063 25.5488 c +%_582.9063 35.4854 592.5684 40.958 587.3418 60.1465 C +%_590.1465 40.4199 572.4492 31.1885 582.7285 15.79 C +%_576.1465 20.7666 569.1465 30.458 572.7813 44.5928 c +%_576.1055 57.5264 591.2227 70.3037 585.5684 93.7266 C +%_587.1836 78.3809 574.5684 43.417 553.8613 40.0938 c +%_542.0781 38.2021 525.5996 40.6514 518.1455 32.1133 C +%_530.1953 40.0537 547.9297 33.1885 559.1309 38.1455 C +%_553.8418 32.4121 545.5898 29.9199 530.0332 28.8428 c +%_516.248 27.8877 508.9736 23.458 507.6768 17.209 C +%_505.8779 25.8818 510.4316 34.7998 516.7256 38.6777 C +%_513.7344 38.6123 512.0645 38.2129 509.0967 36.7266 C +%_512.2822 42.085 519.5195 47.7119 530.3887 47.9053 c +%_543.5156 48.1367 556.8125 40.7959 564.4551 51.8096 C +%_557.9551 46.626 550.9707 49.3252 v +%_544.8242 51.6973 542.8555 58.1465 543.5176 62.4541 C +%_547.8105 52.415 562.6797 52.6943 569.0664 61.0342 C +%_560.3496 54.9814 546.7109 59.2803 546.7109 69.0186 c +%_546.7109 80.9063 566.9395 78.9551 572.2617 89.7783 C +%_569.3066 77.373 557.666 77.373 557.666 70.9238 c +%_557.666 68.4316 559.5742 66.7598 562.2012 66.7598 c +%_569.7852 66.7598 582.0254 83.8223 575.0996 105.2148 C +%_570.8965 92.3799 561.9707 86.7627 551.6797 83.3906 C +%_559.0508 88.0723 566.8574 97.7646 566.2285 109.2949 C +%_562.5469 94.3467 539.666 90.7646 541.9199 68.8418 C +%_535.8887 83.7461 541.0117 95.207 550.6152 103.2627 C +%_529.582 93.8984 536.7441 75.999 528.1328 59.4902 c +%_520.0117 43.9199 503.0508 38.9385 491.3525 39.3887 C +%_497.0273 41.4775 504.1885 45.7217 508.5732 61.5664 c +%_511.4717 72.043 513.3389 81.8174 525.5977 88.7139 C +%_517.9033 76.4473 521.0586 63.0244 510.6934 51.9854 C +%_524.6152 61.8164 521.1914 79.6699 531.8066 93.6826 C +%_521.1914 90.2744 512.1299 84.3018 508.209 75.0508 C +%_511.123 90.8115 527.9199 107.5791 557.3574 111.6025 C +%_527.0313 112.8916 521.1836 96.0488 505.9014 95.4404 c +%_496.2197 95.0557 487.7656 103.8311 477.8682 109.1182 C +%_489.9814 106.0459 508.9756 97.79 519.0322 111.2471 C +%_512.8379 105.9863 500.7568 107.5195 v +%_488.4844 109.0781 477.2949 116.9199 446.6406 118.876 C +%_477.2949 120.834 488.4844 128.6729 500.7568 130.2314 c +%_512.8379 131.7676 519.0322 126.5068 Y +%_508.9756 139.9639 489.9814 131.7061 477.8682 128.6357 C +%_487.7656 133.9229 496.2197 142.6963 505.9014 142.3115 c +%_521.1836 141.7051 527.0313 124.8604 557.3574 126.1514 C +%_527.9199 130.1729 511.123 146.9424 508.209 162.7012 C +%_512.1299 153.4521 521.1914 147.4795 531.8066 144.0713 C +%_521.1914 158.084 524.6152 175.9375 510.6934 185.7666 C +%_521.0586 174.7295 517.9033 161.3047 525.5977 149.04 C +%_513.3389 155.9346 511.4717 165.709 508.5732 176.1855 c +%_504.1885 192.0322 497.0273 196.2744 491.3525 198.3652 C +%_503.0508 198.8145 520.0117 193.834 528.1328 178.2637 c +%_536.7441 161.752 529.582 143.8525 550.6152 134.4912 C +%_541.0117 142.5469 535.8887 154.0078 541.9199 168.9121 C +%_539.666 146.9893 562.5469 143.4072 566.2285 128.459 C +%_566.8574 139.9893 559.0508 149.6816 551.6797 154.3633 C +%_561.9707 150.9912 570.8965 145.374 575.0996 132.5391 C +%_582.0254 153.9297 569.7852 170.9941 562.2012 170.9941 c +%_559.5742 170.9941 557.666 169.3213 557.666 166.8301 c +%_557.666 160.3789 569.3066 160.3789 572.2617 147.9756 C +%_566.9395 158.7969 546.7109 156.8447 546.7109 168.7334 c +%_546.7109 178.4717 560.3496 182.7705 569.0664 176.7188 C +%_562.6797 185.0576 547.8105 185.3389 543.5176 175.2988 C +%_542.8555 179.6064 544.8242 186.0557 550.9707 188.4287 c +%_557.9551 191.127 564.4551 185.9443 Y +%_556.8125 196.958 543.5156 189.6152 530.3887 189.8486 c +%_519.5195 190.04 512.2822 195.6689 509.0967 201.0254 C +%_512.0645 199.541 513.7344 199.1406 516.7256 199.0742 C +%_510.4316 202.9531 505.8779 211.8721 507.6768 220.543 C +%_508.9736 214.2949 516.248 209.8652 530.0332 208.9102 c +%_545.5898 207.834 553.8418 205.3418 559.1309 199.6055 C +%_547.9297 204.5654 530.1953 197.6982 518.1455 205.6387 C +%_525.5996 197.1016 542.0781 199.5488 553.8613 197.6582 c +%_574.5684 194.3359 587.1836 159.373 585.5684 144.0273 C +%_591.2227 167.4502 576.1055 180.2275 572.7813 193.1611 c +%_569.1465 207.2949 576.1465 216.9873 582.7285 221.9629 C +%_572.4492 206.5645 590.1465 197.334 587.3418 177.6055 C +%_592.5684 196.7959 582.9063 202.2676 582.9063 212.2041 c +%_582.9063 221.9629 591.4922 225.1992 593.1973 237.7539 C +%_594.9043 225.1992 603.4883 221.9629 603.4883 212.2041 c +%_603.4883 202.2676 593.8262 196.7959 599.0527 177.6055 C +%_596.25 197.334 613.9473 206.5645 603.666 221.9629 C +%_610.25 216.9873 617.25 207.2949 613.6152 193.1611 c +%_610.2891 180.2275 595.1719 167.4502 600.8281 144.0273 C +%_599.2109 159.373 611.8281 194.3359 632.5352 197.6582 c +%_644.3164 199.5488 660.7969 197.1016 668.25 205.6387 C +%_656.1992 197.6982 638.4648 204.5654 627.2637 199.6055 C +%_632.5547 205.3418 640.8066 207.834 656.3633 208.9102 c +%_670.1465 209.8652 677.4219 214.2949 678.7188 220.543 C +%_680.5176 211.8721 675.9629 202.9531 669.6699 199.0742 C +%_672.6602 199.1406 674.332 199.541 677.2988 201.0254 C +%_674.1133 195.6689 666.8751 190.04 656.0078 189.8486 c +%_642.8809 189.6152 629.582 196.958 621.9414 185.9443 C +%_628.4395 191.127 635.4258 188.4287 v +%_641.5703 186.0557 643.541 179.6064 642.8789 175.2988 C +%_638.5859 185.3389 623.7148 185.0576 617.3281 176.7188 C +%_626.0449 182.7705 639.6836 178.4717 639.6836 168.7334 c +%_639.6836 156.8447 619.457 158.7969 614.1348 147.9756 C +%_617.0898 160.3789 628.7305 160.3789 628.7305 166.8301 c +%_628.7305 169.3213 626.8223 170.9941 624.1953 170.9941 c +%_616.6094 170.9941 604.3711 153.9297 611.2949 132.5391 C +%_615.5 145.374 624.4258 150.9912 634.7148 154.3633 C +%_627.3457 149.6816 619.5371 139.9893 620.166 128.459 C +%_623.8477 143.4072 646.7305 146.9893 644.4746 168.9121 C +%_650.5078 154.0078 645.3828 142.5469 635.7813 134.4912 C +%_656.8125 143.8525 649.6504 161.752 658.2617 178.2637 c +%_666.3828 193.834 683.3438 198.8145 695.043 198.3652 C +%_689.3672 196.2744 682.207 192.0322 677.8223 176.1855 c +%_674.9219 165.709 673.0566 155.9346 660.7988 149.04 C +%_668.4922 161.3047 665.3379 174.7295 675.7031 185.7666 C +%_661.7813 175.9375 665.2031 158.084 654.5879 144.0713 C +%_665.2031 147.4795 674.2637 153.4521 678.1875 162.7012 C +%_675.2715 146.9424 658.4766 130.1729 629.0391 126.1514 C +%_659.3652 124.8604 665.2109 141.7051 680.4922 142.3115 c +%_690.1758 142.6963 698.6289 133.9229 708.5273 128.6357 C +%_696.4141 131.7061 677.4199 139.9639 667.3633 126.5068 C +%_673.5566 131.7676 685.6387 130.2314 v +%_697.9102 128.6729 709.0996 120.834 739.7539 118.876 C +%_709.0996 116.9199 697.9102 109.0781 685.6387 107.5195 c +%_673.5566 105.9863 667.3633 111.2471 Y +%_677.4199 97.79 696.4141 106.0459 708.5273 109.1182 C +%_698.6289 103.8311 690.1758 95.0557 680.4922 95.4404 c +%_665.2109 96.0488 659.3652 112.8916 629.0391 111.6025 C +%_f +%_0 D +%_0 g +%_662.3945 118.876 m +%_667.0078 117.6348 671.0273 115.1064 676.8828 115.1064 c +%_683.9961 115.1064 687.957 117.8574 693.623 118.876 C +%_687.957 119.8936 683.9961 122.6455 676.8828 122.6455 c +%_671.0273 122.6455 667.0078 120.1191 662.3945 118.876 C +%_f +%_0 g +%_590.1816 209.1875 m +%_590.1816 204.0645 593.1973 200.79 593.1973 197.0645 c +%_593.1973 200.79 596.2148 204.0645 596.2148 209.1875 c +%_596.2148 213.7559 593.9648 215.8398 593.1973 220.6221 C +%_592.4297 215.8398 590.1816 213.7559 590.1816 209.1875 c +%_f +%_0 g +%_524 118.876 m +%_519.3867 120.1191 515.3662 122.6455 509.5117 122.6455 c +%_502.3984 122.6455 498.4385 119.8936 492.7725 118.876 C +%_498.4385 117.8574 502.3984 115.1064 509.5117 115.1064 c +%_515.3662 115.1064 519.3867 117.6348 524 118.876 C +%_f +%_0 g +%_596.2148 28.5654 m +%_596.2148 33.6885 593.1973 36.9639 593.1973 40.6885 c +%_593.1973 36.9639 590.1816 33.6885 590.1816 28.5654 c +%_590.1816 23.9971 592.4297 21.9121 593.1973 17.1318 C +%_593.9648 21.9121 596.2148 23.9971 596.2148 28.5654 c +%_f +%_638.2656 118.876 m +%_628.3281 118.876 614.1777 123.8584 603.3125 121.8916 C +%_606.7617 123.9912 608.2949 125.5645 610.7637 128.6357 C +%_606.3574 128.2021 604.0059 127.8398 600.6504 126.3281 C +%_603.3125 132.3457 603.8438 135.7275 604.375 141.7646 C +%_601.3066 138.1992 599.7363 136.0244 597.8105 131.1191 C +%_598.5195 143.5391 593.5527 146.3662 593.1973 162.8799 C +%_592.8418 146.3662 587.875 143.5391 588.584 131.1191 C +%_586.6602 136.0244 585.0898 138.1992 582.0195 141.7646 C +%_582.5508 135.7275 583.084 132.3457 585.7461 126.3281 C +%_582.3906 127.8398 580.0371 128.2021 575.6309 128.6357 C +%_578.1016 125.5645 579.6348 123.9912 583.084 121.8916 C +%_572.2188 123.8584 558.0664 118.876 548.1309 118.876 c +%_558.0664 118.876 572.2188 113.8955 583.084 115.8594 C +%_579.6348 113.7627 578.1016 112.1895 575.6309 109.1182 C +%_580.0371 109.5498 582.3906 109.9141 585.7461 111.4238 C +%_583.084 105.4082 582.5508 102.0264 582.0195 95.9873 C +%_585.0898 99.5527 586.6602 101.7295 588.584 106.6348 C +%_587.875 94.2139 592.8418 91.3877 593.1973 74.874 C +%_593.5527 91.3877 598.5195 94.2139 597.8105 106.6348 C +%_599.7363 101.7295 601.3066 99.5527 604.375 95.9873 C +%_603.8438 102.0264 603.3125 105.4082 600.6504 111.4238 C +%_604.0059 109.9141 606.3574 109.5498 610.7637 109.1182 C +%_608.2949 112.1895 606.7617 113.7627 603.3125 115.8594 C +%_614.1777 113.8955 628.3281 118.876 638.2656 118.876 c +%_Bb +%_0 0 0 0 Bh +%_1 (Unnamed gradient 83) 0 0 0 1 1 0 0 -1 39406.5586 53548.4453 1 Bg +%_133.4345 0 0 133.4345 -7153.8008 7972.125 Bm +%_f +%_0 BB +%_*U +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_1 0 0 -1 39406.5586 53548.4453 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_; +%_ +%_0 1 Xd +%_Bb +%_0 0 0 0 Bh +%_2 (Unnamed gradient 83) 0 0 0 1 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_538.3203 240.1406 m +%_540.9609 226.3105 563.6855 223.8848 568.6074 206.084 C +%_572.377 225.1992 589.9023 225.9551 590.1465 239.1982 C +%_586.9668 231.3965 579.3086 233.4121 574.2617 227.083 C +%_575.1074 233.2344 578.8965 238.9746 586.6465 242.1602 C +%_578.9727 243.2363 571.0195 240.3281 567.5313 232.6025 C +%_564.9727 236.7754 564.7188 241.0518 566.8574 246.4678 C +%_562.1465 242.833 559.3652 237.168 561.2031 229.9102 C +%_553.9355 237.1797 543.3008 233.1406 538.3203 240.1406 C +%_Bb +%_1 (Unnamed gradient 35) -0.023633 0 90 0.695993 -1 0 0 -1 55830.9844 53548.4453 1 Bg +%_0.000001 -28.1062 -55.8262 -0.000002 -7154.8535 7885.8672 Xm +%_0.002416 -55268.8008 -55.8262 -0.000002 -7154.856 63148.1172 Bc +%_0.000001 -14.829 -55.8262 -0.000002 -7154.8535 7879.3149 Bm +%_0.002416 -55268.8008 -55.8262 -0.000002 -7154.8535 7864.4858 Bc +%_f +%_0 BB +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_-1 0 0 -1 55830.9844 53548.4453 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_; +%_ +%_0 1 Xd +%_Bb +%_2 (Unnamed gradient 35) -0.023633 0 90 0.695993 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_0.001984 0.254643 0.938994 0 0.992157 0.764706 0 Xa +%_611.418 118.876 m +%_607.1602 119.54 602.0293 122.0771 597.2871 120.0957 C +%_599.6094 121.9004 598.4316 123.6104 599.8164 125.293 C +%_597.9004 123.9053 596.3066 124.79 594.8301 122.5479 C +%_596.3652 127.8574 594.3008 130.6904 593.1973 136.666 C +%_592.0938 130.6904 590.0293 127.8574 591.5645 122.5479 C +%_590.0898 124.79 588.4961 123.9053 586.5801 125.293 C +%_587.9648 123.6104 586.7852 121.9004 589.1094 120.0957 C +%_584.3672 122.0771 579.2344 119.54 574.9785 118.876 C +%_579.2344 118.2109 584.3672 115.6768 589.1094 117.6582 C +%_586.7852 115.8535 587.9648 114.1416 586.5801 112.4609 C +%_588.4961 113.8467 590.0898 112.9609 591.5645 115.2031 C +%_590.0293 109.8945 592.0938 107.0635 593.1973 101.0859 C +%_594.3008 107.0635 596.3652 109.8945 594.8301 115.2031 C +%_596.3066 112.9609 597.9004 113.8467 599.8164 112.4609 C +%_598.4316 114.1416 599.6094 115.8535 597.2871 117.6582 C +%_602.0293 115.6768 607.1602 118.2109 611.418 118.876 C +%_f +%_U +%_/ArtDictionary : +%_1 /Bool (AIPattern_Is_Repeated_Art) , +%_; +%_ +%_9 () XW +%_u +%_228.0879 146.0469 m +%_232.7754 150.6426 235 158.2314 235.3574 167.7676 c +%_235.8281 180.2949 240.7676 185.4248 248.6836 186.2959 C +%_236.8828 181.7168 244.2402 169.1787 240.7422 160.4502 C +%_247.1816 165.2354 245.123 181.1279 258.377 181.8535 C +%_248.5957 178.6572 255.541 165.1768 249.0879 157.3545 C +%_256.8965 157.4619 260.4863 151.2275 270.627 154.123 C +%_265.9102 150.4873 260.6621 148.2002 251.7813 148.2002 C +%_258.0352 144.3389 260.7813 139.5723 263.0879 132.8545 C +%_252.9609 143.4473 238.2363 147.5186 228.0879 146.0469 C +%_Bb +%_1 (Unnamed gradient 35) -0.041802 0 161.1868 0.574118 -1 0 0 -1 55830.9844 53548.4453 1 Bg +%_23.296 -7.93659 -19.6585 -57.7029 -7512.3013 7969.9302 Xm +%_52636.293 -17932.3945 -19.6585 -57.7029 -60143.1641 25900.4746 Bc +%_12.2911 -4.1874 -19.6585 -57.7029 -7506.8706 7968.0801 Bm +%_52636.293 -17932.3945 -19.6585 -57.7029 -7494.5791 7963.8926 Bc +%_f +%_0 BB +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_-1 0 0 -1 55830.9844 53548.4453 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_; +%_ +%_0 1 Xd +%_Bb +%_2 (Unnamed gradient 35) -0.041802 0 161.1868 0.574118 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_0.791623 0.163851 1 0.031525 0.2 0.572549 0.180392 Xa +%_214.3574 187.373 m +%_208.8379 182.7959 203.6973 174.9121 202.916 164.623 C +%_201.8398 174.8535 199.7168 182.7559 194.7051 188.584 C +%_201.0313 185.4883 203.3203 179.4307 V +%_206.2813 184.6807 214.3574 187.373 Y +%_f +%_228.3574 238.2559 m +%_227.1406 232.2871 222.0508 227.0801 215.4355 224.5254 C +%_218.1445 231.5176 217.1387 238.3232 213.2813 244.3145 C +%_214.1797 236.5488 211.8125 231.1035 207.4922 226.2754 C +%_208.8535 231.1035 208.7344 235.543 206.416 240.1406 C +%_207.3574 231.6602 200.248 227.3535 190.8008 221.6982 c +%_178.1406 214.1191 173.5234 205.6563 171.5508 194.4717 C +%_175.002 201.3389 181.4531 207.6094 199.4102 211.7637 c +%_221.709 216.9238 229.8027 224.1797 228.3574 238.2559 C +%_f +%_201.4355 240.1406 m +%_198.793 226.3105 176.0684 223.8848 171.1465 206.084 C +%_167.3789 225.1992 149.8516 225.9551 149.6094 239.1982 C +%_152.7871 231.3965 160.4453 233.4121 165.4941 227.083 C +%_164.6465 233.2344 160.8594 238.9746 153.1094 242.1602 C +%_160.7813 243.2363 168.7344 240.3281 172.2246 232.6025 C +%_174.7813 236.7754 175.0371 241.0518 172.8965 246.4678 C +%_177.6094 242.833 180.3887 237.168 178.5508 229.9102 C +%_185.8203 237.1797 196.4551 233.1406 201.4355 240.1406 C +%_Bb +%_1 (Unnamed gradient 35) -0.023633 0 90 0.695993 1 0 0 -1 39406.5586 53548.4453 1 Bg +%_-0.000001 -28.1062 55.8261 -0.000002 -7599.3906 7885.8672 Xm +%_-0.001717 -39275.3711 55.8261 -0.000002 -7599.3887 47154.6875 Bc +%_-0.000001 -14.829 55.8261 -0.000002 -7599.3906 7879.3149 Bm +%_-0.001717 -39275.3711 55.8261 -0.000002 -7599.3906 7864.4858 Bc +%_f +%_0 BB +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_1 0 0 -1 39406.5586 53548.4453 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_; +%_ +%_0 1 Xd +%_Bb +%_2 (Unnamed gradient 35) -0.023633 0 90 0.695993 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_*u +%_1 D +%_0 g +%_182.3984 111.6025 m +%_211.8359 107.5791 228.6309 90.8115 231.5469 75.0508 C +%_227.623 84.3018 218.5625 90.2744 207.9473 93.6826 C +%_218.5625 79.6699 215.1406 61.8164 229.0625 51.9854 C +%_218.6973 63.0244 221.8516 76.4473 214.1582 88.7139 C +%_226.416 81.8174 228.2813 72.043 231.1816 61.5664 c +%_235.5664 45.7217 242.7266 41.4775 248.4023 39.3887 C +%_236.7031 38.9385 219.7422 43.9199 211.6211 59.4902 c +%_203.0098 75.999 210.1719 93.8984 189.1406 103.2627 C +%_198.7422 95.207 203.8672 83.7461 197.834 68.8418 C +%_200.0898 90.7646 177.207 94.3467 173.5254 109.2949 C +%_172.8965 97.7646 180.7051 88.0723 188.0742 83.3906 C +%_177.7852 86.7627 168.8594 92.3799 164.6543 105.2148 C +%_157.7305 83.8223 169.9688 66.7598 177.5547 66.7598 c +%_180.1816 66.7598 182.0898 68.4316 182.0898 70.9238 c +%_182.0898 77.373 170.4492 77.373 167.4941 89.7783 C +%_172.8164 78.9551 193.043 80.9063 193.043 69.0186 c +%_193.043 59.2803 179.4043 54.9814 170.6875 61.0342 C +%_177.0742 52.6943 191.9453 52.415 196.2383 62.4541 C +%_196.9004 58.1465 194.9297 51.6973 188.7852 49.3252 c +%_181.7988 46.626 175.3008 51.8096 Y +%_182.9414 40.7959 196.2402 48.1367 209.3672 47.9053 c +%_220.2344 47.7119 227.4727 42.085 230.6582 36.7266 C +%_227.6914 38.2129 226.0195 38.6123 223.0293 38.6777 C +%_229.3223 34.7998 233.877 25.8818 232.0781 17.209 C +%_230.7813 23.458 223.5059 27.8877 209.7227 28.8428 c +%_194.166 29.9199 185.9141 32.4121 180.623 38.1455 C +%_191.8242 33.1885 209.5586 40.0537 221.6094 32.1133 C +%_214.1563 40.6514 197.6758 38.2021 185.8945 40.0938 c +%_165.1875 43.417 152.5703 78.3809 154.1875 93.7266 C +%_148.5313 70.3037 163.6484 57.5264 166.9746 44.5928 c +%_170.6094 30.458 163.6094 20.7666 157.0254 15.79 C +%_167.3066 31.1885 149.6094 40.4199 152.4121 60.1465 C +%_147.1855 40.958 156.8477 35.4854 156.8477 25.5488 c +%_156.8477 15.79 148.2637 12.5547 146.5566 0 C +%_144.8516 12.5547 136.2656 15.79 136.2656 25.5488 c +%_136.2656 35.4854 145.9277 40.958 140.7012 60.1465 C +%_143.5059 40.4199 125.8086 31.1885 136.0879 15.79 C +%_129.5059 20.7666 122.5059 30.458 126.1406 44.5928 c +%_129.4648 57.5264 144.582 70.3037 138.9277 93.7266 C +%_140.543 78.3809 127.9277 43.417 107.2207 40.0938 c +%_95.4375 38.2021 78.959 40.6514 71.5049 32.1133 C +%_83.5547 40.0537 101.2891 33.1885 112.4902 38.1455 C +%_107.2012 32.4121 98.9492 29.9199 83.3926 28.8428 c +%_69.6074 27.8877 62.333 23.458 61.0361 17.209 C +%_59.2373 25.8818 63.791 34.7998 70.085 38.6777 C +%_67.0938 38.6123 65.4238 38.2129 62.4561 36.7266 C +%_65.6416 42.085 72.8789 47.7119 83.748 47.9053 c +%_96.875 48.1367 110.1719 40.7959 117.8145 51.8096 C +%_111.3145 46.626 104.3301 49.3252 v +%_98.1836 51.6973 96.2148 58.1465 96.877 62.4541 C +%_101.1699 52.415 116.0391 52.6943 122.4258 61.0342 C +%_113.709 54.9814 100.0703 59.2803 100.0703 69.0186 c +%_100.0703 80.9063 120.2988 78.9551 125.6211 89.7783 C +%_122.666 77.373 111.0254 77.373 111.0254 70.9238 c +%_111.0254 68.4316 112.9336 66.7598 115.5605 66.7598 c +%_123.1445 66.7598 135.3848 83.8223 128.459 105.2148 C +%_124.2559 92.3799 115.3301 86.7627 105.0391 83.3906 C +%_112.4102 88.0723 120.2168 97.7646 119.5879 109.2949 C +%_115.9063 94.3467 93.0254 90.7646 95.2793 68.8418 C +%_89.248 83.7461 94.3711 95.207 103.9746 103.2627 C +%_82.9414 93.8984 90.1035 75.999 81.4922 59.4902 c +%_73.3711 43.9199 56.4102 38.9385 44.7119 39.3887 C +%_50.3867 41.4775 57.5479 45.7217 61.9326 61.5664 c +%_64.8311 72.043 66.6982 81.8174 78.957 88.7139 C +%_71.2627 76.4473 74.418 63.0244 64.0527 51.9854 C +%_77.9746 61.8164 74.5508 79.6699 85.166 93.6826 C +%_74.5508 90.2744 65.4893 84.3018 61.5684 75.0508 C +%_64.4824 90.8115 81.2793 107.5791 110.7168 111.6025 C +%_80.3906 112.8916 74.543 96.0488 59.2607 95.4404 c +%_49.5791 95.0557 41.125 103.8311 31.2275 109.1182 C +%_43.3408 106.0459 62.335 97.79 72.3916 111.2471 C +%_66.1973 105.9863 54.1162 107.5195 v +%_41.8438 109.0781 30.6543 116.9199 0 118.876 C +%_30.6543 120.834 41.8438 128.6729 54.1162 130.2314 c +%_66.1973 131.7676 72.3916 126.5068 Y +%_62.335 139.9639 43.3408 131.7061 31.2275 128.6357 C +%_41.125 133.9229 49.5791 142.6963 59.2607 142.3115 c +%_74.543 141.7051 80.3906 124.8604 110.7168 126.1514 C +%_81.2793 130.1729 64.4824 146.9424 61.5684 162.7012 C +%_65.4893 153.4521 74.5508 147.4795 85.166 144.0713 C +%_74.5508 158.084 77.9746 175.9375 64.0527 185.7666 C +%_74.418 174.7295 71.2627 161.3047 78.957 149.04 C +%_66.6982 155.9346 64.8311 165.709 61.9326 176.1855 c +%_57.5479 192.0322 50.3867 196.2744 44.7119 198.3652 C +%_56.4102 198.8145 73.3711 193.834 81.4922 178.2637 c +%_90.1035 161.752 82.9414 143.8525 103.9746 134.4912 C +%_94.3711 142.5469 89.248 154.0078 95.2793 168.9121 C +%_93.0254 146.9893 115.9063 143.4072 119.5879 128.459 C +%_120.2168 139.9893 112.4102 149.6816 105.0391 154.3633 C +%_115.3301 150.9912 124.2559 145.374 128.459 132.5391 C +%_135.3848 153.9297 123.1445 170.9941 115.5605 170.9941 c +%_112.9336 170.9941 111.0254 169.3213 111.0254 166.8301 c +%_111.0254 160.3789 122.666 160.3789 125.6211 147.9756 C +%_120.2988 158.7969 100.0703 156.8447 100.0703 168.7334 c +%_100.0703 178.4717 113.709 182.7705 122.4258 176.7188 C +%_116.0391 185.0576 101.1699 185.3389 96.877 175.2988 C +%_96.2148 179.6064 98.1836 186.0557 104.3301 188.4287 c +%_111.3145 191.127 117.8145 185.9443 Y +%_110.1719 196.958 96.875 189.6152 83.748 189.8486 c +%_72.8789 190.04 65.6416 195.6689 62.4561 201.0254 C +%_65.4238 199.541 67.0938 199.1406 70.085 199.0742 C +%_63.791 202.9531 59.2373 211.8721 61.0361 220.543 C +%_62.333 214.2949 69.6074 209.8652 83.3926 208.9102 c +%_98.9492 207.834 107.2012 205.3418 112.4902 199.6055 C +%_101.2891 204.5654 83.5547 197.6982 71.5049 205.6387 C +%_78.959 197.1016 95.4375 199.5488 107.2207 197.6582 c +%_127.9277 194.3359 140.543 159.373 138.9277 144.0273 C +%_144.582 167.4502 129.4648 180.2275 126.1406 193.1611 c +%_122.5059 207.2949 129.5059 216.9873 136.0879 221.9629 C +%_125.8086 206.5645 143.5059 197.334 140.7012 177.6055 C +%_145.9277 196.7959 136.2656 202.2676 136.2656 212.2041 c +%_136.2656 221.9629 144.8516 225.1992 146.5566 237.7539 C +%_148.2637 225.1992 156.8477 221.9629 156.8477 212.2041 c +%_156.8477 202.2676 147.1855 196.7959 152.4121 177.6055 C +%_149.6094 197.334 167.3066 206.5645 157.0254 221.9629 C +%_163.6094 216.9873 170.6094 207.2949 166.9746 193.1611 c +%_163.6484 180.2275 148.5313 167.4502 154.1875 144.0273 C +%_152.5703 159.373 165.1875 194.3359 185.8945 197.6582 c +%_197.6758 199.5488 214.1563 197.1016 221.6094 205.6387 C +%_209.5586 197.6982 191.8242 204.5654 180.623 199.6055 C +%_185.9141 205.3418 194.166 207.834 209.7227 208.9102 c +%_223.5059 209.8652 230.7813 214.2949 232.0781 220.543 C +%_233.877 211.8721 229.3223 202.9531 223.0293 199.0742 C +%_226.0195 199.1406 227.6914 199.541 230.6582 201.0254 C +%_227.4727 195.6689 220.2344 190.04 209.3672 189.8486 c +%_196.2402 189.6152 182.9414 196.958 175.3008 185.9443 C +%_181.7988 191.127 188.7852 188.4287 v +%_194.9297 186.0557 196.9004 179.6064 196.2383 175.2988 C +%_191.9453 185.3389 177.0742 185.0576 170.6875 176.7188 C +%_179.4043 182.7705 193.043 178.4717 193.043 168.7334 c +%_193.043 156.8447 172.8164 158.7969 167.4941 147.9756 C +%_170.4492 160.3789 182.0898 160.3789 182.0898 166.8301 c +%_182.0898 169.3213 180.1816 170.9941 177.5547 170.9941 c +%_169.9688 170.9941 157.7305 153.9297 164.6543 132.5391 C +%_168.8594 145.374 177.7852 150.9912 188.0742 154.3633 C +%_180.7051 149.6816 172.8965 139.9893 173.5254 128.459 C +%_177.207 143.4072 200.0898 146.9893 197.834 168.9121 C +%_203.8672 154.0078 198.7422 142.5469 189.1406 134.4912 C +%_210.1719 143.8525 203.0098 161.752 211.6211 178.2637 c +%_219.7422 193.834 236.7031 198.8145 248.4023 198.3652 C +%_242.7266 196.2744 235.5664 192.0322 231.1816 176.1855 c +%_228.2813 165.709 226.416 155.9346 214.1582 149.04 C +%_221.8516 161.3047 218.6973 174.7295 229.0625 185.7666 C +%_215.1406 175.9375 218.5625 158.084 207.9473 144.0713 C +%_218.5625 147.4795 227.623 153.4521 231.5469 162.7012 C +%_228.6309 146.9424 211.8359 130.1729 182.3984 126.1514 C +%_212.7246 124.8604 218.5703 141.7051 233.8516 142.3115 c +%_243.5352 142.6963 251.9883 133.9229 261.8867 128.6357 C +%_249.7734 131.7061 230.7793 139.9639 220.7227 126.5068 C +%_226.916 131.7676 238.998 130.2314 v +%_251.2695 128.6729 262.459 120.834 293.1133 118.876 C +%_262.459 116.9199 251.2695 109.0781 238.998 107.5195 c +%_226.916 105.9863 220.7227 111.2471 Y +%_230.7793 97.79 249.7734 106.0459 261.8867 109.1182 C +%_251.9883 103.8311 243.5352 95.0557 233.8516 95.4404 c +%_218.5703 96.0488 212.7246 112.8916 182.3984 111.6025 C +%_f +%_0 D +%_0 g +%_215.7539 118.876 m +%_220.3672 117.6348 224.3867 115.1064 230.2422 115.1064 c +%_237.3555 115.1064 241.3164 117.8574 246.9824 118.876 C +%_241.3164 119.8936 237.3555 122.6455 230.2422 122.6455 c +%_224.3867 122.6455 220.3672 120.1191 215.7539 118.876 C +%_f +%_0 g +%_143.541 209.1875 m +%_143.541 204.0645 146.5566 200.79 146.5566 197.0645 c +%_146.5566 200.79 149.5742 204.0645 149.5742 209.1875 c +%_149.5742 213.7559 147.3242 215.8398 146.5566 220.6221 C +%_145.7891 215.8398 143.541 213.7559 143.541 209.1875 c +%_f +%_0 g +%_77.3594 118.876 m +%_72.7461 120.1191 68.7256 122.6455 62.8711 122.6455 c +%_55.7578 122.6455 51.7979 119.8936 46.1318 118.876 C +%_51.7979 117.8574 55.7578 115.1064 62.8711 115.1064 c +%_68.7256 115.1064 72.7461 117.6348 77.3594 118.876 C +%_f +%_0 g +%_149.5742 28.5654 m +%_149.5742 33.6885 146.5566 36.9639 146.5566 40.6885 c +%_146.5566 36.9639 143.541 33.6885 143.541 28.5654 c +%_143.541 23.9971 145.7891 21.9121 146.5566 17.1318 C +%_147.3242 21.9121 149.5742 23.9971 149.5742 28.5654 c +%_f +%_191.625 118.876 m +%_181.6875 118.876 167.5371 123.8584 156.6719 121.8916 C +%_160.1211 123.9912 161.6543 125.5645 164.123 128.6357 C +%_159.7168 128.2021 157.3652 127.8398 154.0098 126.3281 C +%_156.6719 132.3457 157.2031 135.7275 157.7344 141.7646 C +%_154.666 138.1992 153.0957 136.0244 151.1699 131.1191 C +%_151.8789 143.5391 146.9121 146.3662 146.5566 162.8799 C +%_146.2012 146.3662 141.2344 143.5391 141.9434 131.1191 C +%_140.0195 136.0244 138.4492 138.1992 135.3789 141.7646 C +%_135.9102 135.7275 136.4434 132.3457 139.1055 126.3281 C +%_135.75 127.8398 133.3965 128.2021 128.9902 128.6357 C +%_131.4609 125.5645 132.9941 123.9912 136.4434 121.8916 C +%_125.5781 123.8584 111.4258 118.876 101.4902 118.876 c +%_111.4258 118.876 125.5781 113.8955 136.4434 115.8594 C +%_132.9941 113.7627 131.4609 112.1895 128.9902 109.1182 C +%_133.3965 109.5498 135.75 109.9141 139.1055 111.4238 C +%_136.4434 105.4082 135.9102 102.0264 135.3789 95.9873 C +%_138.4492 99.5527 140.0195 101.7295 141.9434 106.6348 C +%_141.2344 94.2139 146.2012 91.3877 146.5566 74.874 C +%_146.9121 91.3877 151.8789 94.2139 151.1699 106.6348 C +%_153.0957 101.7295 154.666 99.5527 157.7344 95.9873 C +%_157.2031 102.0264 156.6719 105.4082 154.0098 111.4238 C +%_157.3652 109.9141 159.7168 109.5498 164.123 109.1182 C +%_161.6543 112.1895 160.1211 113.7627 156.6719 115.8594 C +%_167.5371 113.8955 181.6875 118.876 191.625 118.876 c +%_Bb +%_0 0 0 0 Bh +%_1 (Unnamed gradient 83) 0 0 0 1 1 0 0 -1 39406.5586 53548.4453 1 Bg +%_133.4345 0 0 133.4345 -7600.4414 7972.125 Bm +%_f +%_0 BB +%_*U +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_1 0 0 -1 39406.5586 53548.4453 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_; +%_ +%_0 1 Xd +%_Bb +%_0 0 0 0 Bh +%_2 (Unnamed gradient 83) 0 0 0 1 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_0.001984 0.254643 0.938994 0 0.992157 0.764706 0 Xa +%_164.7773 118.876 m +%_160.5195 119.54 155.3887 122.0771 150.6465 120.0957 C +%_152.9688 121.9004 151.791 123.6104 153.1758 125.293 C +%_151.2598 123.9053 149.666 124.79 148.1895 122.5479 C +%_149.7246 127.8574 147.6602 130.6904 146.5566 136.666 C +%_145.4531 130.6904 143.3887 127.8574 144.9238 122.5479 C +%_143.4492 124.79 141.8555 123.9053 139.9395 125.293 C +%_141.3242 123.6104 140.1445 121.9004 142.4688 120.0957 C +%_137.7266 122.0771 132.5938 119.54 128.3379 118.876 C +%_132.5938 118.2109 137.7266 115.6768 142.4688 117.6582 C +%_140.1445 115.8535 141.3242 114.1416 139.9395 112.4609 C +%_141.8555 113.8467 143.4492 112.9609 144.9238 115.2031 C +%_143.3887 109.8945 145.4531 107.0635 146.5566 101.0859 C +%_147.6602 107.0635 149.7246 109.8945 148.1895 115.2031 C +%_149.666 112.9609 151.2598 113.8467 153.1758 112.4609 C +%_151.791 114.1416 152.9688 115.8535 150.6465 117.6582 C +%_155.3887 115.6768 160.5195 118.2109 164.7773 118.876 C +%_f +%_U +%_/ArtDictionary : +%_1 /Bool (AIPattern_Is_Repeated_Art) , +%_; +%_ +%_9 () XW +%_u +%_538.3203 256.7979 m +%_540.9609 270.6279 563.6855 273.0537 568.6074 290.8545 C +%_572.377 271.7393 589.9023 270.9834 590.1465 257.7393 C +%_586.9668 265.542 579.3086 263.5264 574.2617 269.8545 C +%_575.1074 263.7021 578.8965 257.9639 586.6465 254.7783 C +%_578.9727 253.7021 571.0195 256.6104 567.5313 264.3369 C +%_564.9727 260.1631 564.7188 255.8877 566.8574 250.4717 C +%_562.1465 254.1064 559.3652 259.7705 561.2031 267.0283 C +%_553.9355 259.7588 543.3008 263.7979 538.3203 256.7979 C +%_Bb +%_1 (Unnamed gradient 35) -0.023633 0 90 0.695993 -1 0 0 1 55766.9844 37062.6875 1 Bg +%_0.000001 28.1062 -55.8262 0.000002 -7154.8535 7799.1914 Xm +%_0.002413 55204.7969 -55.8262 0.000002 -7154.856 -47399.0547 Bc +%_0.000001 14.829 -55.8262 0.000002 -7154.8535 7805.7437 Bm +%_0.002413 55204.7969 -55.8262 0.000002 -7154.8535 7820.5728 Bc +%_f +%_0 BB +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_-1 0 0 1 55766.9844 37062.6875 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_(-3.141593) /String (BBAccumRotation) , +%_; +%_ +%_0 1 Xd +%_Bb +%_2 (Unnamed gradient 35) -0.023633 0 90 0.695993 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_0.791623 0.163851 1 0.031525 0.2 0.572549 0.180392 Xa +%_525.3965 309.5654 m +%_530.916 314.1436 536.0586 322.0264 536.8398 332.3154 C +%_537.916 322.085 540.0371 314.1807 545.0508 308.3545 C +%_538.7227 311.4502 536.4355 317.5088 V +%_533.4746 312.2588 525.3965 309.5654 Y +%_f +%_511.3965 258.6826 m +%_512.6152 264.6514 517.7031 269.8604 524.3203 272.4131 C +%_521.6094 265.4189 522.6172 258.6143 526.4746 252.624 C +%_525.5762 260.3896 527.9434 265.833 532.2617 270.6631 C +%_530.9023 265.833 531.0195 261.3955 533.3398 256.7979 C +%_532.3965 265.2783 539.5078 269.583 548.9551 275.2393 c +%_561.6152 282.8174 566.2324 291.2822 568.2031 302.4658 C +%_564.752 295.6006 558.3008 289.3271 540.3438 285.1729 c +%_518.0459 280.0146 509.9521 272.7568 511.3965 258.6826 C +%_f +%_*u +%_1 D +%_0 g +%_629.0391 370.7881 m +%_658.4766 366.7646 675.2715 349.9971 678.1875 334.2354 C +%_674.2637 343.4873 665.2031 349.46 654.5879 352.8682 C +%_665.2031 338.8545 661.7813 321.001 675.7031 311.1709 C +%_665.3379 322.21 668.4922 335.6318 660.7988 347.8994 C +%_673.0566 341.0029 674.9219 331.2275 677.8223 320.751 c +%_682.207 304.9072 689.3672 300.6631 695.043 298.5732 C +%_683.3438 298.124 666.3828 303.1045 658.2617 318.6748 c +%_649.6504 335.1846 656.8125 353.083 635.7813 362.4482 C +%_645.3828 354.3916 650.5078 342.9307 644.4746 328.0264 C +%_646.7305 349.9502 623.8477 353.5322 620.166 368.4795 C +%_619.5371 356.9502 627.3457 347.2568 634.7148 342.5752 C +%_624.4258 345.9482 615.5 351.5654 611.2949 364.3994 C +%_604.3711 343.0068 616.6094 325.9443 624.1953 325.9443 c +%_626.8223 325.9443 628.7305 327.6162 628.7305 330.1084 c +%_628.7305 336.5576 617.0898 336.5576 614.1348 348.9639 C +%_619.457 338.1396 639.6836 340.0908 639.6836 328.2041 c +%_639.6836 318.4658 626.0449 314.167 617.3281 320.2197 C +%_623.7148 311.8799 638.5859 311.6006 642.8789 321.6396 C +%_643.541 317.3311 641.5703 310.8818 635.4258 308.5107 c +%_628.4395 305.8115 621.9414 310.9951 Y +%_629.582 299.9814 642.8809 307.3213 656.0078 307.0908 c +%_666.8751 306.8975 674.1133 301.2705 677.2988 295.9111 C +%_674.332 297.3975 672.6602 297.7979 669.6699 297.8623 C +%_675.9629 293.9854 680.5176 285.0674 678.7188 276.3936 C +%_677.4219 282.6436 670.1465 287.0732 656.3633 288.0283 c +%_640.8066 289.1045 632.5547 291.5967 627.2637 297.3311 C +%_638.4648 292.374 656.1992 299.2393 668.25 291.2979 C +%_660.7969 299.8369 644.3164 297.3877 632.5352 299.2783 c +%_611.8281 302.6025 599.2109 337.5654 600.8281 352.9111 C +%_595.1719 329.4893 610.2891 316.7119 613.6152 303.7783 c +%_617.25 289.6436 610.25 279.9521 603.666 274.9756 C +%_613.9473 290.374 596.25 299.6045 599.0527 319.3311 C +%_593.8262 300.1436 603.4883 294.6709 603.4883 284.7334 c +%_603.4883 274.9756 594.9043 271.7393 593.1973 259.1846 C +%_591.4922 271.7393 582.9063 274.9756 582.9063 284.7334 c +%_582.9063 294.6709 592.5684 300.1436 587.3418 319.3311 C +%_590.1465 299.6045 572.4492 290.374 582.7285 274.9756 C +%_576.1465 279.9521 569.1465 289.6436 572.7813 303.7783 c +%_576.1055 316.7119 591.2227 329.4893 585.5684 352.9111 C +%_587.1836 337.5654 574.5684 302.6025 553.8613 299.2783 c +%_542.0781 297.3877 525.5996 299.8369 518.1455 291.2979 C +%_530.1953 299.2393 547.9297 292.374 559.1309 297.3311 C +%_553.8418 291.5967 545.5898 289.1045 530.0332 288.0283 c +%_516.248 287.0732 508.9736 282.6436 507.6768 276.3936 C +%_505.8779 285.0674 510.4316 293.9854 516.7256 297.8623 C +%_513.7344 297.7979 512.0645 297.3975 509.0967 295.9111 C +%_512.2822 301.2705 519.5195 306.8975 530.3887 307.0908 c +%_543.5156 307.3213 556.8125 299.9814 564.4551 310.9951 C +%_557.9551 305.8115 550.9707 308.5107 v +%_544.8242 310.8818 542.8555 317.3311 543.5176 321.6396 C +%_547.8105 311.6006 562.6797 311.8799 569.0664 320.2197 C +%_560.3496 314.167 546.7109 318.4658 546.7109 328.2041 c +%_546.7109 340.0908 566.9395 338.1396 572.2617 348.9639 C +%_569.3066 336.5576 557.666 336.5576 557.666 330.1084 c +%_557.666 327.6162 559.5742 325.9443 562.2012 325.9443 c +%_569.7852 325.9443 582.0254 343.0068 575.0996 364.3994 C +%_570.8965 351.5654 561.9707 345.9482 551.6797 342.5752 C +%_559.0508 347.2568 566.8574 356.9502 566.2285 368.4795 C +%_562.5469 353.5322 539.666 349.9502 541.9199 328.0264 C +%_535.8887 342.9307 541.0117 354.3916 550.6152 362.4482 C +%_529.582 353.083 536.7441 335.1846 528.1328 318.6748 c +%_520.0117 303.1045 503.0508 298.124 491.3525 298.5732 C +%_497.0273 300.6631 504.1885 304.9072 508.5732 320.751 c +%_511.4717 331.2275 513.3389 341.0029 525.5977 347.8994 C +%_517.9033 335.6318 521.0586 322.21 510.6934 311.1709 C +%_524.6152 321.001 521.1914 338.8545 531.8066 352.8682 C +%_521.1914 349.46 512.1299 343.4873 508.209 334.2354 C +%_511.123 349.9971 527.9199 366.7646 557.3574 370.7881 C +%_527.0313 372.0771 521.1836 355.2334 505.9014 354.626 c +%_496.2197 354.2412 487.7656 363.0166 477.8682 368.3037 C +%_489.9814 365.2314 508.9756 356.9756 519.0322 370.4326 C +%_512.8379 365.1709 500.7568 366.7041 v +%_488.4844 368.2627 477.2949 376.1045 446.6406 378.0615 C +%_477.2949 380.0186 488.4844 387.8584 500.7568 389.417 c +%_512.8379 390.9521 519.0322 385.6924 Y +%_508.9756 399.1494 489.9814 390.8916 477.8682 387.8213 C +%_487.7656 393.1084 496.2197 401.8818 505.9014 401.4971 c +%_521.1836 400.8896 527.0313 384.0459 557.3574 385.3369 C +%_527.9199 389.3584 511.123 406.1279 508.209 421.8857 C +%_512.1299 412.6377 521.1914 406.665 531.8066 403.2568 C +%_521.1914 417.2686 524.6152 435.1221 510.6934 444.9521 C +%_521.0586 433.915 517.9033 420.4893 525.5977 408.2256 C +%_513.3389 415.1201 511.4717 424.8936 508.5732 435.3701 c +%_504.1885 451.2178 497.0273 455.46 491.3525 457.5498 C +%_503.0508 457.999 520.0117 453.0186 528.1328 437.4482 c +%_536.7441 420.9365 529.582 403.0381 550.6152 393.6768 C +%_541.0117 401.7314 535.8887 413.1924 541.9199 428.0967 C +%_539.666 406.1748 562.5469 402.5928 566.2285 387.6436 C +%_566.8574 399.1748 559.0508 408.8662 551.6797 413.5479 C +%_561.9707 410.1768 570.8965 404.5596 575.0996 391.7236 C +%_582.0254 413.1143 569.7852 430.1787 562.2012 430.1787 c +%_559.5742 430.1787 557.666 428.5068 557.666 426.0146 c +%_557.666 419.5635 569.3066 419.5635 572.2617 407.1611 C +%_566.9395 417.9814 546.7109 416.0303 546.7109 427.9189 c +%_546.7109 437.6572 560.3496 441.9561 569.0664 435.9033 C +%_562.6797 444.2432 547.8105 444.5244 543.5176 434.4834 C +%_542.8555 438.792 544.8242 445.2412 550.9707 447.6143 c +%_557.9551 450.3115 564.4551 445.1299 Y +%_556.8125 456.1436 543.5156 448.7998 530.3887 449.0342 c +%_519.5195 449.2256 512.2822 454.8545 509.0967 460.21 C +%_512.0645 458.7256 513.7344 458.3252 516.7256 458.2588 C +%_510.4316 462.1377 505.8779 471.0576 507.6768 479.7275 C +%_508.9736 473.4795 516.248 469.0498 530.0332 468.0947 c +%_545.5898 467.0186 553.8418 464.5264 559.1309 458.79 C +%_547.9297 463.751 530.1953 456.8838 518.1455 464.8232 C +%_525.5996 456.2861 542.0781 458.7334 553.8613 456.8428 c +%_574.5684 453.5205 587.1836 418.5576 585.5684 403.2119 C +%_591.2227 426.6357 576.1055 439.4131 572.7813 452.3467 c +%_569.1465 466.4795 576.1465 476.1729 582.7285 481.1475 C +%_572.4492 465.749 590.1465 456.5186 587.3418 436.79 C +%_592.5684 455.9814 582.9063 461.4521 582.9063 471.3896 c +%_582.9063 481.1475 591.4922 484.3838 593.1973 496.9385 C +%_594.9043 484.3838 603.4883 481.1475 603.4883 471.3896 c +%_603.4883 461.4521 593.8262 455.9814 599.0527 436.79 C +%_596.25 456.5186 613.9473 465.749 603.666 481.1475 C +%_610.25 476.1729 617.25 466.4795 613.6152 452.3467 c +%_610.2891 439.4131 595.1719 426.6357 600.8281 403.2119 C +%_599.2109 418.5576 611.8281 453.5205 632.5352 456.8428 c +%_644.3164 458.7334 660.7969 456.2861 668.25 464.8232 C +%_656.1992 456.8838 638.4648 463.751 627.2637 458.79 C +%_632.5547 464.5264 640.8066 467.0186 656.3633 468.0947 c +%_670.1465 469.0498 677.4219 473.4795 678.7188 479.7275 C +%_680.5176 471.0576 675.9629 462.1377 669.6699 458.2588 C +%_672.6602 458.3252 674.332 458.7256 677.2988 460.21 C +%_674.1133 454.8545 666.8751 449.2256 656.0078 449.0342 c +%_642.8809 448.7998 629.582 456.1436 621.9414 445.1299 C +%_628.4395 450.3115 635.4258 447.6143 v +%_641.5703 445.2412 643.541 438.792 642.8789 434.4834 C +%_638.5859 444.5244 623.7148 444.2432 617.3281 435.9033 C +%_626.0449 441.9561 639.6836 437.6572 639.6836 427.9189 c +%_639.6836 416.0303 619.457 417.9814 614.1348 407.1611 C +%_617.0898 419.5635 628.7305 419.5635 628.7305 426.0146 c +%_628.7305 428.5068 626.8223 430.1787 624.1953 430.1787 c +%_616.6094 430.1787 604.3711 413.1143 611.2949 391.7236 C +%_615.5 404.5596 624.4258 410.1768 634.7148 413.5479 C +%_627.3457 408.8662 619.5371 399.1748 620.166 387.6436 C +%_623.8477 402.5928 646.7305 406.1748 644.4746 428.0967 C +%_650.5078 413.1924 645.3828 401.7314 635.7813 393.6768 C +%_656.8125 403.0381 649.6504 420.9365 658.2617 437.4482 c +%_666.3828 453.0186 683.3438 457.999 695.043 457.5498 C +%_689.3672 455.46 682.207 451.2178 677.8223 435.3701 c +%_674.9219 424.8936 673.0566 415.1201 660.7988 408.2256 C +%_668.4922 420.4893 665.3379 433.915 675.7031 444.9521 C +%_661.7813 435.1221 665.2031 417.2686 654.5879 403.2568 C +%_665.2031 406.665 674.2637 412.6377 678.1875 421.8857 C +%_675.2715 406.1279 658.4766 389.3584 629.0391 385.3369 C +%_659.3652 384.0459 665.2109 400.8896 680.4922 401.4971 c +%_690.1758 401.8818 698.6289 393.1084 708.5273 387.8213 C +%_696.4141 390.8916 677.4199 399.1494 667.3633 385.6924 C +%_673.5566 390.9521 685.6387 389.417 v +%_697.9102 387.8584 709.0996 380.0186 739.7539 378.0615 C +%_709.0996 376.1045 697.9102 368.2627 685.6387 366.7041 c +%_673.5566 365.1709 667.3633 370.4326 Y +%_677.4199 356.9756 696.4141 365.2314 708.5273 368.3037 C +%_698.6289 363.0166 690.1758 354.2412 680.4922 354.626 c +%_665.2109 355.2334 659.3652 372.0771 629.0391 370.7881 C +%_f +%_0 D +%_0 g +%_662.3945 378.0615 m +%_667.0078 376.8193 671.0273 374.292 676.8828 374.292 c +%_683.9961 374.292 687.957 377.042 693.623 378.0615 C +%_687.957 379.0791 683.9961 381.8311 676.8828 381.8311 c +%_671.0273 381.8311 667.0078 379.3037 662.3945 378.0615 C +%_f +%_0 g +%_590.1816 468.3721 m +%_590.1816 463.249 593.1973 459.9756 593.1973 456.249 c +%_593.1973 459.9756 596.2148 463.249 596.2148 468.3721 c +%_596.2148 472.9404 593.9648 475.0244 593.1973 479.8076 C +%_592.4297 475.0244 590.1816 472.9404 590.1816 468.3721 c +%_f +%_0 g +%_524 378.0615 m +%_519.3867 379.3037 515.3662 381.8311 509.5117 381.8311 c +%_502.3984 381.8311 498.4385 379.0791 492.7725 378.0615 C +%_498.4385 377.042 502.3984 374.292 509.5117 374.292 c +%_515.3662 374.292 519.3867 376.8193 524 378.0615 C +%_f +%_0 g +%_596.2148 287.751 m +%_596.2148 292.874 593.1973 296.1494 593.1973 299.874 c +%_593.1973 296.1494 590.1816 292.874 590.1816 287.751 c +%_590.1816 283.1826 592.4297 281.0967 593.1973 276.3174 C +%_593.9648 281.0967 596.2148 283.1826 596.2148 287.751 c +%_f +%_638.2656 378.0615 m +%_628.3281 378.0615 614.1777 383.0439 603.3125 381.0771 C +%_606.7617 383.1768 608.2949 384.749 610.7637 387.8213 C +%_606.3574 387.3877 604.0059 387.0244 600.6504 385.5127 C +%_603.3125 391.5303 603.8438 394.9131 604.375 400.9502 C +%_601.3066 397.3838 599.7363 395.21 597.8105 390.3037 C +%_598.5195 402.7236 593.5527 405.5518 593.1973 422.0654 C +%_592.8418 405.5518 587.875 402.7236 588.584 390.3037 C +%_586.6602 395.21 585.0898 397.3838 582.0195 400.9502 C +%_582.5508 394.9131 583.084 391.5303 585.7461 385.5127 C +%_582.3906 387.0244 580.0371 387.3877 575.6309 387.8213 C +%_578.1016 384.749 579.6348 383.1768 583.084 381.0771 C +%_572.2188 383.0439 558.0664 378.0615 548.1309 378.0615 c +%_558.0664 378.0615 572.2188 373.0811 583.084 375.0439 C +%_579.6348 372.9482 578.1016 371.374 575.6309 368.3037 C +%_580.0371 368.7354 582.3906 369.0986 585.7461 370.6084 C +%_583.084 364.5928 582.5508 361.2119 582.0195 355.1729 C +%_585.0898 358.7373 586.6602 360.915 588.584 365.8193 C +%_587.875 353.3994 592.8418 350.5732 593.1973 334.0596 C +%_593.5527 350.5732 598.5195 353.3994 597.8105 365.8193 C +%_599.7363 360.915 601.3066 358.7373 604.375 355.1729 C +%_603.8438 361.2119 603.3125 364.5928 600.6504 370.6084 C +%_604.0059 369.0986 606.3574 368.7354 610.7637 368.3037 C +%_608.2949 371.374 606.7617 372.9482 603.3125 375.0439 C +%_614.1777 373.0811 628.3281 378.0615 638.2656 378.0615 c +%_Bb +%_0 0 0 0 Bh +%_1 (Unnamed gradient 83) 0 0 0 1 1 0 0 -1 39406.5586 53548.4453 1 Bg +%_133.4363 0 0 133.4363 -7153.8008 7712.9375 Bm +%_f +%_0 BB +%_*U +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_1 0 0 -1 39406.5586 53548.4453 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_; +%_ +%_0 1 Xd +%_Bb +%_0 0 0 0 Bh +%_2 (Unnamed gradient 83) 0 0 0 1 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_511.666 350.8916 m +%_506.9785 346.2959 504.7559 338.7061 504.3965 329.1709 c +%_503.9258 316.6436 498.9873 311.5146 491.0703 310.6436 C +%_502.8721 315.2217 495.5146 327.7568 499.0127 336.4893 C +%_492.5713 331.7021 494.6309 315.8115 481.3779 315.085 C +%_491.1582 318.2822 484.2129 331.7607 490.666 339.585 C +%_482.8584 339.4775 479.2695 345.71 469.1279 342.8154 C +%_473.8428 346.4502 479.0928 348.7393 487.9736 348.7393 C +%_481.7197 352.5986 478.9746 357.3643 476.666 364.085 C +%_486.7939 353.4912 501.5186 349.417 511.666 350.8916 C +%_Bb +%_1 (Unnamed gradient 35) -0.041802 0 161.1868 0.574118 1 0 0 1 39406.5586 37077.2266 1 Bg +%_-23.2981 7.93732 19.6587 57.7033 -7241.9487 7715.1318 Xm +%_-36859.207 12557.377 19.6587 57.7033 29611.8281 -4840.3945 Bc +%_-12.2922 4.18778 19.6587 57.7033 -7247.3804 7716.9819 Bm +%_-36859.207 12557.377 19.6587 57.7033 -7259.6724 7721.1699 Bc +%_f +%_0 BB +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_1 0 0 1 39406.5586 37077.2266 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_; +%_ +%_0 1 Xd +%_Bb +%_2 (Unnamed gradient 35) -0.041802 0 161.1868 0.574118 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_0.001984 0.254643 0.938994 0 0.992157 0.764706 0 Xa +%_611.418 378.0615 m +%_607.1602 378.7256 602.0293 381.2627 597.2871 379.2803 C +%_599.6094 381.085 598.4316 382.7959 599.8164 384.4775 C +%_597.9004 383.0908 596.3066 383.9756 594.8301 381.7334 C +%_596.3652 387.042 594.3008 389.876 593.1973 395.8506 C +%_592.0938 389.876 590.0293 387.042 591.5645 381.7334 C +%_590.0898 383.9756 588.4961 383.0908 586.5801 384.4775 C +%_587.9648 382.7959 586.7852 381.085 589.1094 379.2803 C +%_584.3672 381.2627 579.2344 378.7256 574.9785 378.0615 C +%_579.2344 377.3955 584.3672 374.8623 589.1094 376.8428 C +%_586.7852 375.0381 587.9648 373.3271 586.5801 371.6455 C +%_588.4961 373.0322 590.0898 372.1455 591.5645 374.3877 C +%_590.0293 369.0791 592.0938 366.249 593.1973 360.2705 C +%_594.3008 366.249 596.3652 369.0791 594.8301 374.3877 C +%_596.3066 372.1455 597.9004 373.0322 599.8164 371.6455 C +%_598.4316 373.3271 599.6094 375.0381 597.2871 376.8428 C +%_602.0293 374.8623 607.1602 377.3955 611.418 378.0615 C +%_f +%_U +%_/ArtDictionary : +%_1 /Bool (AIPattern_Is_Repeated_Art) , +%_; +%_ +%_9 () XW +%_u +%_315 127.2051 m +%_317.6406 141.0352 340.3652 143.4619 345.2871 161.2627 C +%_349.0566 142.1475 366.582 141.3906 366.8262 128.1475 C +%_363.6465 135.9492 355.9883 133.9336 350.9414 140.2627 C +%_351.7871 134.1104 355.5762 128.3711 363.3262 125.1865 C +%_355.6523 124.1094 347.6992 127.0186 344.2109 134.7441 C +%_341.6523 130.5703 341.3984 126.2949 343.5371 120.8789 C +%_338.8262 124.5137 336.0449 130.1777 337.8828 137.4355 C +%_330.6152 130.167 319.9805 134.2051 315 127.2051 C +%_Bb +%_1 (Unnamed gradient 35) -0.023633 0 90 0.695993 -1 0 0 1 55766.9844 37062.6875 1 Bg +%_0.000001 28.1062 -55.8262 0.000002 -7378.1738 7928.7852 Xm +%_0.002423 55428.1172 -55.8262 0.000002 -7378.1763 -47492.7813 Bc +%_0.000001 14.829 -55.8262 0.000002 -7378.1738 7935.3374 Bm +%_0.002423 55428.1172 -55.8262 0.000002 -7378.1738 7950.1665 Bc +%_f +%_0 BB +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_-1 0 0 1 55766.9844 37062.6875 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_(-3.141593) /String (BBAccumRotation) , +%_; +%_ +%_0 1 Xd +%_Bb +%_2 (Unnamed gradient 35) -0.023633 0 90 0.695993 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_424.7559 127.2051 m +%_422.1133 141.0352 399.3887 143.4619 394.4668 161.2627 C +%_390.6992 142.1475 373.1719 141.3906 372.9297 128.1475 C +%_376.1074 135.9492 383.7656 133.9336 388.8145 140.2627 C +%_387.9668 134.1104 384.1797 128.3711 376.4297 125.1865 C +%_384.1016 124.1094 392.0547 127.0186 395.5449 134.7441 C +%_398.1016 130.5703 398.3574 126.2949 396.2168 120.8789 C +%_400.9297 124.5137 403.709 130.1777 401.8711 137.4355 C +%_409.1406 130.167 419.7754 134.2051 424.7559 127.2051 C +%_Bb +%_1 (Unnamed gradient 35) -0.023633 0 90 0.695993 1 0 0 1 39342.5586 37062.6875 1 Bg +%_-0.000001 28.1062 55.8262 0.000002 -7376.0703 7928.7852 Xm +%_-0.001704 38988.0508 55.8262 0.000002 -7376.0684 -31052.7148 Bc +%_-0.000001 14.829 55.8262 0.000002 -7376.0703 7935.3374 Bm +%_-0.001704 38988.0508 55.8262 0.000002 -7376.0703 7950.1665 Bc +%_f +%_0 BB +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_1 0 0 1 39342.5586 37062.6875 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_(-3.141593) /String (BBAccumRotation) , +%_; +%_ +%_0 1 Xd +%_Bb +%_2 (Unnamed gradient 35) -0.023633 0 90 0.695993 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_451.4082 275.6396 m +%_456.0957 280.2354 458.3203 287.8242 458.6777 297.3604 c +%_459.1484 309.8877 464.0879 315.0176 472.0039 315.8887 C +%_460.2031 311.3096 467.5605 298.7715 464.0625 290.043 C +%_470.502 294.8281 468.4434 310.7207 481.6973 311.4463 C +%_471.916 308.25 478.8613 294.7695 472.4082 286.9473 C +%_480.2168 287.0547 483.8066 280.8203 493.9473 283.7158 C +%_489.2305 280.0801 483.9824 277.793 475.1016 277.793 C +%_481.3555 273.9316 484.1016 269.165 486.4082 262.4473 C +%_476.2813 273.04 461.5566 277.1113 451.4082 275.6396 C +%_Bb +%_1 (Unnamed gradient 35) -0.041802 0 161.1868 0.574118 -1 0 0 -1 55830.9844 53548.4453 1 Bg +%_23.3002 -7.93804 -19.6585 -57.7029 -7288.981 7840.3374 Xm +%_52424.9102 -17860.3789 -19.6585 -57.7029 -59708.457 25698.8652 Bc +%_12.2934 -4.18817 -19.6585 -57.7029 -7283.5488 7838.4868 Bm +%_52424.9102 -17860.3789 -19.6585 -57.7029 -7271.2554 7834.2983 Bc +%_f +%_0 BB +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_-1 0 0 -1 55830.9844 53548.4453 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_; +%_ +%_0 1 Xd +%_Bb +%_2 (Unnamed gradient 35) -0.041802 0 161.1868 0.574118 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_0.791623 0.163851 1 0.031525 0.2 0.572549 0.180392 Xa +%_302.0762 316.9658 m +%_307.5957 312.3887 312.7383 304.5049 313.5195 294.2158 C +%_314.5957 304.4463 316.7168 312.3486 321.7305 318.1768 C +%_315.4023 315.0811 313.1152 309.0234 V +%_310.1543 314.2734 302.0762 316.9658 Y +%_f +%_288.0762 367.8486 m +%_289.2949 361.8799 294.3828 356.6729 301 354.1182 C +%_298.2891 361.1104 299.2969 367.916 303.1543 373.9072 C +%_302.2559 366.1416 304.623 360.6963 308.9414 355.8682 C +%_307.582 360.6963 307.6992 365.1357 310.0195 369.7334 C +%_309.0762 361.2529 316.1875 356.9463 325.6348 351.291 c +%_338.2949 343.7119 342.9121 335.249 344.8828 324.0645 C +%_341.4316 330.9316 334.9805 337.2021 317.0234 341.3564 c +%_294.7256 346.5166 286.6318 353.7725 288.0762 367.8486 C +%_f +%_288.3457 275.6396 m +%_283.6582 280.2354 281.4355 287.8242 281.0762 297.3604 c +%_280.6055 309.8877 275.667 315.0176 267.75 315.8887 C +%_279.5518 311.3096 272.1943 298.7715 275.6924 290.043 C +%_269.251 294.8281 271.3105 310.7207 258.0576 311.4463 C +%_267.8379 308.25 260.8926 294.7695 267.3457 286.9473 C +%_259.5381 287.0547 255.9492 280.8203 245.8076 283.7158 C +%_250.5225 280.0801 255.7725 277.793 264.6533 277.793 C +%_258.3994 273.9316 255.6543 269.165 253.3457 262.4473 C +%_263.4736 273.04 278.1982 277.1113 288.3457 275.6396 C +%_Bb +%_1 (Unnamed gradient 35) -0.041802 0 161.1868 0.574118 1 0 0 -1 39406.5586 53548.4453 1 Bg +%_-23.2971 -7.93696 19.6586 -57.7032 -7465.271 7840.3354 Xm +%_-37070.5977 -12629.3945 19.6586 -57.7032 29599.8945 20467.8789 Bc +%_-12.2917 -4.18759 19.6586 -57.7032 -7470.7021 7838.4849 Bm +%_-37070.5977 -12629.3945 19.6586 -57.7032 -7482.9941 7834.2974 Bc +%_f +%_0 BB +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_1 0 0 -1 39406.5586 53548.4453 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_; +%_ +%_0 1 Xd +%_Bb +%_2 (Unnamed gradient 35) -0.041802 0 161.1868 0.574118 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_0.791623 0.163851 1 0.031525 0.2 0.572549 0.180392 Xa +%_437.6777 316.9658 m +%_432.1582 312.3887 427.0176 304.5049 426.2363 294.2158 C +%_425.1602 304.4463 423.0371 312.3486 418.0254 318.1768 C +%_424.3516 315.0811 426.6406 309.0234 V +%_429.6016 314.2734 437.6777 316.9658 Y +%_f +%_451.6777 367.8486 m +%_450.4609 361.8799 445.3711 356.6729 438.7559 354.1182 C +%_441.4648 361.1104 440.459 367.916 436.6016 373.9072 C +%_437.5 366.1416 435.1328 360.6963 430.8125 355.8682 C +%_432.1738 360.6963 432.0547 365.1357 429.7363 369.7334 C +%_430.6777 361.2529 423.5684 356.9463 414.1211 351.291 c +%_401.4609 343.7119 396.8438 335.249 394.8711 324.0645 C +%_398.3223 330.9316 404.7734 337.2021 422.7305 341.3564 c +%_445.0293 346.5166 453.123 353.7725 451.6777 367.8486 C +%_f +%_424.7559 369.7334 m +%_422.1133 355.9033 399.3887 353.4775 394.4668 335.6768 C +%_390.6992 354.792 373.1719 355.5479 372.9297 368.791 C +%_376.1074 360.9893 383.7656 363.0049 388.8145 356.6758 C +%_387.9668 362.8271 384.1797 368.5674 376.4297 371.7529 C +%_384.1016 372.8291 392.0547 369.9209 395.5449 362.1953 C +%_398.1016 366.3682 398.3574 370.6445 396.2168 376.0605 C +%_400.9297 372.4258 403.709 366.7607 401.8711 359.5029 C +%_409.1406 366.7725 +endstream endobj 107 0 obj <>stream + 419.7754 362.7334 424.7559 369.7334 C +%_Bb +%_1 (Unnamed gradient 35) -0.023633 0 90 0.695993 1 0 0 -1 39406.5586 53548.4453 1 Bg +%_-0.000001 -28.1062 55.8262 -0.000002 -7376.0703 7756.2773 Xm +%_-0.001707 -39052.0508 55.8262 -0.000002 -7376.0684 46801.7773 Bc +%_-0.000001 -14.829 55.8262 -0.000002 -7376.0703 7749.7251 Bm +%_-0.001707 -39052.0508 55.8262 -0.000002 -7376.0703 7734.896 Bc +%_f +%_0 BB +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_1 0 0 -1 39406.5586 53548.4453 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_; +%_ +%_0 1 Xd +%_Bb +%_2 (Unnamed gradient 35) -0.023633 0 90 0.695993 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_0.791623 0.163851 1 0.031525 0.2 0.572549 0.180392 Xa +%_302.0762 179.9736 m +%_307.5957 184.5508 312.7383 192.4336 313.5195 202.7236 C +%_314.5957 192.4932 316.7168 184.5879 321.7305 178.7617 C +%_315.4023 181.8584 313.1152 187.916 V +%_310.1543 182.666 302.0762 179.9736 Y +%_f +%_288.0762 129.0898 m +%_289.2949 135.0596 294.3828 140.2676 301 142.8203 C +%_298.2891 135.8271 299.2969 129.0225 303.1543 123.0322 C +%_302.2559 130.7979 304.623 136.2412 308.9414 141.0703 C +%_307.582 136.2412 307.6992 131.8027 310.0195 127.2051 C +%_309.0762 135.6855 316.1875 139.9912 325.6348 145.6475 c +%_338.2949 153.2256 342.9121 161.6895 344.8828 172.873 C +%_341.4316 166.0078 334.9805 159.7354 317.0234 155.5811 c +%_294.7256 150.4219 286.6318 143.165 288.0762 129.0898 C +%_f +%_*u +%_1 D +%_0 g +%_405.7188 241.1953 m +%_435.1563 237.1719 451.9512 220.4043 454.8672 204.6436 C +%_450.9434 213.8945 441.8828 219.8672 431.2676 223.2754 C +%_441.8828 209.2627 438.4609 191.4092 452.3828 181.5781 C +%_442.0176 192.6172 445.1719 206.04 437.4785 218.3066 C +%_449.7363 211.4102 451.6016 201.6357 454.502 191.1592 c +%_458.8867 175.3145 466.0469 171.0703 471.7227 168.9814 C +%_460.0234 168.5313 443.0625 173.5127 434.9414 189.083 c +%_426.3301 205.5918 433.4922 223.4912 412.4609 232.8555 C +%_422.0625 224.7998 427.1875 213.3389 421.1543 198.4346 C +%_423.4102 220.3574 400.5273 223.9395 396.8457 238.8877 C +%_396.2168 227.3574 404.0254 217.665 411.3945 212.9834 C +%_401.1055 216.3555 392.1797 221.9727 387.9746 234.8076 C +%_381.0508 213.415 393.2891 196.3525 400.875 196.3525 c +%_403.502 196.3525 405.4102 198.0244 405.4102 200.5166 c +%_405.4102 206.9658 393.7695 206.9658 390.8145 219.3711 C +%_396.1367 208.5479 416.3633 210.499 416.3633 198.6113 c +%_416.3633 188.873 402.7246 184.5742 394.0078 190.627 C +%_400.3945 182.2871 415.2656 182.0078 419.5586 192.0469 C +%_420.2207 187.7393 418.25 181.29 412.1055 178.918 c +%_405.1191 176.2188 398.6211 181.4023 Y +%_406.2617 170.3887 419.5605 177.7295 432.6875 177.498 c +%_443.5547 177.3047 450.793 171.6777 453.9785 166.3193 C +%_451.0117 167.8057 449.3398 168.2051 446.3496 168.2705 C +%_452.6426 164.3926 457.1973 155.4746 455.3984 146.8018 C +%_454.1016 153.0508 446.8262 157.4805 433.043 158.4355 c +%_417.4863 159.5127 409.2344 162.0049 403.9434 167.7383 C +%_415.1445 162.7813 432.8789 169.6465 444.9297 161.7061 C +%_437.4766 170.2441 420.9961 167.7949 409.2148 169.6865 c +%_388.5078 173.0098 375.8906 207.9736 377.5078 223.3193 C +%_371.8516 199.8965 386.9688 187.1191 390.2949 174.1855 c +%_393.9297 160.0508 386.9297 150.3594 380.3457 145.3828 C +%_390.627 160.7813 372.9297 170.0127 375.7324 189.7393 C +%_370.5059 170.5508 380.168 165.0781 380.168 155.1416 c +%_380.168 145.3828 371.584 142.1475 369.877 129.5928 C +%_368.1719 142.1475 359.5859 145.3828 359.5859 155.1416 c +%_359.5859 165.0781 369.248 170.5508 364.0215 189.7393 C +%_366.8262 170.0127 349.1289 160.7813 359.4082 145.3828 C +%_352.8262 150.3594 345.8262 160.0508 349.4609 174.1855 c +%_352.7852 187.1191 367.9023 199.8965 362.248 223.3193 C +%_363.8633 207.9736 351.248 173.0098 330.541 169.6865 c +%_318.7578 167.7949 302.2793 170.2441 294.8252 161.7061 C +%_306.875 169.6465 324.6094 162.7813 335.8105 167.7383 C +%_330.5215 162.0049 322.2695 159.5127 306.7129 158.4355 c +%_292.9277 157.4805 285.6533 153.0508 284.3564 146.8018 C +%_282.5576 155.4746 287.1113 164.3926 293.4053 168.2705 C +%_290.4141 168.2051 288.7441 167.8057 285.7764 166.3193 C +%_288.9619 171.6777 296.1992 177.3047 307.0684 177.498 c +%_320.1953 177.7295 333.4922 170.3887 341.1348 181.4023 C +%_334.6348 176.2188 327.6504 178.918 v +%_321.5039 181.29 319.5352 187.7393 320.1973 192.0469 C +%_324.4902 182.0078 339.3594 182.2871 345.7461 190.627 C +%_337.0293 184.5742 323.3906 188.873 323.3906 198.6113 c +%_323.3906 210.499 343.6191 208.5479 348.9414 219.3711 C +%_345.9863 206.9658 334.3457 206.9658 334.3457 200.5166 c +%_334.3457 198.0244 336.2539 196.3525 338.8809 196.3525 c +%_346.4648 196.3525 358.7051 213.415 351.7793 234.8076 C +%_347.5762 221.9727 338.6504 216.3555 328.3594 212.9834 C +%_335.7305 217.665 343.5371 227.3574 342.9082 238.8877 C +%_339.2266 223.9395 316.3457 220.3574 318.5996 198.4346 C +%_312.5684 213.3389 317.6914 224.7998 327.2949 232.8555 C +%_306.2617 223.4912 313.4238 205.5918 304.8125 189.083 c +%_296.6914 173.5127 279.7305 168.5313 268.0322 168.9814 C +%_273.707 171.0703 280.8682 175.3145 285.2529 191.1592 c +%_288.1514 201.6357 290.0186 211.4102 302.2773 218.3066 C +%_294.583 206.04 297.7383 192.6172 287.373 181.5781 C +%_301.2949 191.4092 297.8711 209.2627 308.4863 223.2754 C +%_297.8711 219.8672 288.8096 213.8945 284.8887 204.6436 C +%_287.8027 220.4043 304.5996 237.1719 334.0371 241.1953 C +%_303.7109 242.4844 297.8633 225.6416 282.5811 225.0332 c +%_272.8994 224.6484 264.4453 233.4238 254.5479 238.7109 C +%_266.6611 235.6387 285.6553 227.3828 295.7119 240.8398 C +%_289.5176 235.5791 277.4365 237.1123 v +%_265.1641 238.6709 253.9746 246.5127 223.3203 248.4688 C +%_253.9746 250.4268 265.1641 258.2656 277.4365 259.8242 c +%_289.5176 261.3604 295.7119 256.0996 Y +%_285.6553 269.5566 266.6611 261.2988 254.5479 258.2285 C +%_264.4453 263.5156 272.8994 272.2891 282.5811 271.9043 c +%_297.8633 271.2979 303.7109 254.4531 334.0371 255.7441 C +%_304.5996 259.7656 287.8027 276.5352 284.8887 292.2939 C +%_288.8096 283.0449 297.8711 277.0723 308.4863 273.6641 C +%_297.8711 287.6768 301.2949 305.5303 287.373 315.3594 C +%_297.7383 304.3223 294.583 290.8975 302.2773 278.6328 C +%_290.0186 285.5273 288.1514 295.3018 285.2529 305.7783 c +%_280.8682 321.625 273.707 325.8672 268.0322 327.958 C +%_279.7305 328.4072 296.6914 323.4268 304.8125 307.8564 c +%_313.4238 291.3447 306.2617 273.4453 327.2949 264.084 C +%_317.6914 272.1396 312.5684 283.6006 318.5996 298.5049 C +%_316.3457 276.582 339.2266 273 342.9082 258.0518 C +%_343.5371 269.582 335.7305 279.2744 328.3594 283.9561 C +%_338.6504 280.584 347.5762 274.9668 351.7793 262.1318 C +%_358.7051 283.5225 346.4648 300.5869 338.8809 300.5869 c +%_336.2539 300.5869 334.3457 298.9141 334.3457 296.4229 c +%_334.3457 289.9717 345.9863 289.9717 348.9414 277.5684 C +%_343.6191 288.3896 323.3906 286.4375 323.3906 298.3262 c +%_323.3906 308.0645 337.0293 312.3633 345.7461 306.3115 C +%_339.3594 314.6504 324.4902 314.9316 320.1973 304.8916 C +%_319.5352 309.1992 321.5039 315.6484 327.6504 318.0215 c +%_334.6348 320.7197 341.1348 315.5371 Y +%_333.4922 326.5508 320.1953 319.208 307.0684 319.4414 c +%_296.1992 319.6328 288.9619 325.2617 285.7764 330.6182 C +%_288.7441 329.1338 290.4141 328.7334 293.4053 328.667 C +%_287.1113 332.5459 282.5576 341.4648 284.3564 350.1357 C +%_285.6533 343.8877 292.9277 339.458 306.7129 338.5029 c +%_322.2695 337.4268 330.5215 334.9346 335.8105 329.1982 C +%_324.6094 334.1582 306.875 327.291 294.8252 335.2314 C +%_302.2793 326.6943 318.7578 329.1416 330.541 327.251 c +%_351.248 323.9287 363.8633 288.9658 362.248 273.6201 C +%_367.9023 297.043 352.7852 309.8203 349.4609 322.7539 c +%_345.8262 336.8877 352.8262 346.5801 359.4082 351.5557 C +%_349.1289 336.1572 366.8262 326.9268 364.0215 307.1982 C +%_369.248 326.3887 359.5859 331.8604 359.5859 341.7969 c +%_359.5859 351.5557 368.1719 354.792 369.877 367.3467 C +%_371.584 354.792 380.168 351.5557 380.168 341.7969 c +%_380.168 331.8604 370.5059 326.3887 375.7324 307.1982 C +%_372.9297 326.9268 390.627 336.1572 380.3457 351.5557 C +%_386.9297 346.5801 393.9297 336.8877 390.2949 322.7539 c +%_386.9688 309.8203 371.8516 297.043 377.5078 273.6201 C +%_375.8906 288.9658 388.5078 323.9287 409.2148 327.251 c +%_420.9961 329.1416 437.4766 326.6943 444.9297 335.2314 C +%_432.8789 327.291 415.1445 334.1582 403.9434 329.1982 C +%_409.2344 334.9346 417.4863 337.4268 433.043 338.5029 c +%_446.8262 339.458 454.1016 343.8877 455.3984 350.1357 C +%_457.1973 341.4648 452.6426 332.5459 446.3496 328.667 C +%_449.3398 328.7334 451.0117 329.1338 453.9785 330.6182 C +%_450.793 325.2617 443.5547 319.6328 432.6875 319.4414 c +%_419.5605 319.208 406.2617 326.5508 398.6211 315.5371 C +%_405.1191 320.7197 412.1055 318.0215 v +%_418.25 315.6484 420.2207 309.1992 419.5586 304.8916 C +%_415.2656 314.9316 400.3945 314.6504 394.0078 306.3115 C +%_402.7246 312.3633 416.3633 308.0645 416.3633 298.3262 c +%_416.3633 286.4375 396.1367 288.3896 390.8145 277.5684 C +%_393.7695 289.9717 405.4102 289.9717 405.4102 296.4229 c +%_405.4102 298.9141 403.502 300.5869 400.875 300.5869 c +%_393.2891 300.5869 381.0508 283.5225 387.9746 262.1318 C +%_392.1797 274.9668 401.1055 280.584 411.3945 283.9561 C +%_404.0254 279.2744 396.2168 269.582 396.8457 258.0518 C +%_400.5273 273 423.4102 276.582 421.1543 298.5049 C +%_427.1875 283.6006 422.0625 272.1396 412.4609 264.084 C +%_433.4922 273.4453 426.3301 291.3447 434.9414 307.8564 c +%_443.0625 323.4268 460.0234 328.4072 471.7227 327.958 C +%_466.0469 325.8672 458.8867 321.625 454.502 305.7783 c +%_451.6016 295.3018 449.7363 285.5273 437.4785 278.6328 C +%_445.1719 290.8975 442.0176 304.3223 452.3828 315.3594 C +%_438.4609 305.5303 441.8828 287.6768 431.2676 273.6641 C +%_441.8828 277.0723 450.9434 283.0449 454.8672 292.2939 C +%_451.9512 276.5352 435.1563 259.7656 405.7188 255.7441 C +%_436.0449 254.4531 441.8906 271.2979 457.1719 271.9043 c +%_466.8555 272.2891 475.3086 263.5156 485.207 258.2285 C +%_473.0938 261.2988 454.0996 269.5566 444.043 256.0996 C +%_450.2363 261.3604 462.3184 259.8242 v +%_474.5898 258.2656 485.7793 250.4268 516.4336 248.4688 C +%_485.7793 246.5127 474.5898 238.6709 462.3184 237.1123 c +%_450.2363 235.5791 444.043 240.8398 Y +%_454.0996 227.3828 473.0938 235.6387 485.207 238.7109 C +%_475.3086 233.4238 466.8555 224.6484 457.1719 225.0332 c +%_441.8906 225.6416 436.0449 242.4844 405.7188 241.1953 C +%_f +%_0 D +%_0 g +%_439.0742 248.4688 m +%_443.6875 247.2275 447.707 244.6992 453.5625 244.6992 c +%_460.6758 244.6992 464.6367 247.4502 470.3027 248.4688 C +%_464.6367 249.4863 460.6758 252.2383 453.5625 252.2383 c +%_447.707 252.2383 443.6875 249.7119 439.0742 248.4688 C +%_f +%_0 g +%_366.8613 338.7803 m +%_366.8613 333.6572 369.877 330.3828 369.877 326.6572 c +%_369.877 330.3828 372.8945 333.6572 372.8945 338.7803 c +%_372.8945 343.3486 370.6445 345.4326 369.877 350.2148 C +%_369.1094 345.4326 366.8613 343.3486 366.8613 338.7803 c +%_f +%_0 g +%_300.6797 248.4688 m +%_296.0664 249.7119 292.0459 252.2383 286.1914 252.2383 c +%_279.0781 252.2383 275.1182 249.4863 269.4521 248.4688 C +%_275.1182 247.4502 279.0781 244.6992 286.1914 244.6992 c +%_292.0459 244.6992 296.0664 247.2275 300.6797 248.4688 C +%_f +%_0 g +%_372.8945 158.1582 m +%_372.8945 163.2813 369.877 166.5566 369.877 170.2813 c +%_369.877 166.5566 366.8613 163.2813 366.8613 158.1582 c +%_366.8613 153.5898 369.1094 151.5049 369.877 146.7246 C +%_370.6445 151.5049 372.8945 153.5898 372.8945 158.1582 c +%_f +%_414.9453 248.4688 m +%_405.0078 248.4688 390.8574 253.4512 379.9922 251.4844 C +%_383.4414 253.584 384.9746 255.1572 387.4434 258.2285 C +%_383.0371 257.7949 380.6855 257.4326 377.3301 255.9209 C +%_379.9922 261.9385 380.5234 265.3203 381.0547 271.3574 C +%_377.9863 267.792 376.416 265.6172 374.4902 260.7119 C +%_375.1992 273.1318 370.2324 275.959 369.877 292.4727 C +%_369.5215 275.959 364.5547 273.1318 365.2637 260.7119 C +%_363.3398 265.6172 361.7695 267.792 358.6992 271.3574 C +%_359.2305 265.3203 359.7637 261.9385 362.4258 255.9209 C +%_359.0703 257.4326 356.7168 257.7949 352.3105 258.2285 C +%_354.7813 255.1572 356.3145 253.584 359.7637 251.4844 C +%_348.8984 253.4512 334.7461 248.4688 324.8105 248.4688 c +%_334.7461 248.4688 348.8984 243.4883 359.7637 245.4521 C +%_356.3145 243.3555 354.7813 241.7822 352.3105 238.7109 C +%_356.7168 239.1426 359.0703 239.5068 362.4258 241.0166 C +%_359.7637 235.001 359.2305 231.6191 358.6992 225.5801 C +%_361.7695 229.1455 363.3398 231.3223 365.2637 236.2275 C +%_364.5547 223.8066 369.5215 220.9805 369.877 204.4668 C +%_370.2324 220.9805 375.1992 223.8066 374.4902 236.2275 C +%_376.416 231.3223 377.9863 229.1455 381.0547 225.5801 C +%_380.5234 231.6191 379.9922 235.001 377.3301 241.0166 C +%_380.6855 239.5068 383.0371 239.1426 387.4434 238.7109 C +%_384.9746 241.7822 383.4414 243.3555 379.9922 245.4521 C +%_390.8574 243.4883 405.0078 248.4688 414.9453 248.4688 c +%_Bb +%_0 0 0 0 Bh +%_1 (Unnamed gradient 83) 0 0 0 1 1 0 0 -1 39406.5586 53548.4453 1 Bg +%_133.4345 0 0 133.4345 -7377.1211 7842.5313 Bm +%_f +%_0 BB +%_*U +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_1 0 0 -1 39406.5586 53548.4453 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_; +%_ +%_0 1 Xd +%_Bb +%_0 0 0 0 Bh +%_2 (Unnamed gradient 83) 0 0 0 1 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_0.791623 0.163851 1 0.031525 0.2 0.572549 0.180392 Xa +%_437.6777 179.9736 m +%_432.1582 184.5508 427.0176 192.4336 426.2363 202.7236 C +%_425.1602 192.4932 423.0371 184.5879 418.0254 178.7617 C +%_424.3516 181.8584 426.6406 187.916 V +%_429.6016 182.666 437.6777 179.9736 Y +%_f +%_451.6777 129.0898 m +%_450.4609 135.0596 445.3711 140.2676 438.7559 142.8203 C +%_441.4648 135.8271 440.459 129.0225 436.6016 123.0322 C +%_437.5 130.7979 435.1328 136.2412 430.8125 141.0703 C +%_432.1738 136.2412 432.0547 131.8027 429.7363 127.2051 C +%_430.6777 135.6855 423.5684 139.9912 414.1211 145.6475 c +%_401.4609 153.2256 396.8438 161.6895 394.8711 172.873 C +%_398.3223 166.0078 404.7734 159.7354 422.7305 155.5811 c +%_445.0293 150.4219 453.123 143.165 451.6777 129.0898 C +%_f +%_451.4082 221.2998 m +%_456.0957 216.7041 458.3203 209.1133 458.6777 199.5791 c +%_459.1484 187.0518 464.0879 181.9219 472.0039 181.0508 C +%_460.2031 185.6299 467.5605 198.165 464.0625 206.8965 C +%_470.502 202.1094 468.4434 186.2188 481.6973 185.4932 C +%_471.916 188.6895 478.8613 202.168 472.4082 209.9922 C +%_480.2168 209.8848 483.8066 216.1172 493.9473 213.2236 C +%_489.2305 216.8574 483.9824 219.1465 475.1016 219.1465 C +%_481.3555 223.0059 484.1016 227.7715 486.4082 234.4922 C +%_476.2813 223.8994 461.5566 219.8252 451.4082 221.2998 C +%_Bb +%_1 (Unnamed gradient 35) -0.041802 0 161.1868 0.574118 -1 0 0 1 55830.9844 37077.2266 1 Bg +%_23.2981 7.93732 -19.6585 57.7029 -7288.98 7844.7236 Xm +%_52424.9102 17860.3789 -19.6585 57.7029 -59708.457 -10013.8047 Bc +%_12.2922 4.18778 -19.6585 57.7029 -7283.5488 7846.5737 Bm +%_52424.9102 17860.3789 -19.6585 57.7029 -7271.2563 7850.7617 Bc +%_f +%_0 BB +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_-1 0 0 1 55830.9844 37077.2266 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_; +%_ +%_0 1 Xd +%_Bb +%_2 (Unnamed gradient 35) -0.041802 0 161.1868 0.574118 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_288.3457 221.2998 m +%_283.6582 216.7041 281.4355 209.1133 281.0762 199.5791 c +%_280.6055 187.0518 275.667 181.9219 267.75 181.0508 C +%_279.5518 185.6299 272.1943 198.165 275.6924 206.8965 C +%_269.251 202.1094 271.3105 186.2188 258.0576 185.4932 C +%_267.8379 188.6895 260.8926 202.168 267.3457 209.9922 C +%_259.5381 209.8848 255.9492 216.1172 245.8076 213.2236 C +%_250.5225 216.8574 255.7725 219.1465 264.6533 219.1465 C +%_258.3994 223.0059 255.6543 227.7715 253.3457 234.4922 C +%_263.4736 223.8994 278.1982 219.8252 288.3457 221.2998 C +%_Bb +%_1 (Unnamed gradient 35) -0.041802 0 161.1868 0.574118 1 0 0 1 39406.5586 37077.2266 1 Bg +%_-23.296 7.93659 19.6586 57.7032 -7465.2754 7844.7266 Xm +%_-37070.5898 12629.3936 19.6586 57.7032 29599.8828 -4782.8164 Bc +%_-12.2911 4.1874 19.6586 57.7032 -7470.7061 7846.5767 Bm +%_-37070.5898 12629.3936 19.6586 57.7032 -7482.9976 7850.7642 Bc +%_f +%_0 BB +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_1 0 0 1 39406.5586 37077.2266 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_; +%_ +%_0 1 Xd +%_Bb +%_2 (Unnamed gradient 35) -0.041802 0 161.1868 0.574118 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_315 369.7334 m +%_317.6406 355.9033 340.3652 353.4775 345.2871 335.6768 C +%_349.0566 354.792 366.582 355.5479 366.8262 368.791 C +%_363.6465 360.9893 355.9883 363.0049 350.9414 356.6758 C +%_351.7871 362.8271 355.5762 368.5674 363.3262 371.7529 C +%_355.6523 372.8291 347.6992 369.9209 344.2109 362.1953 C +%_341.6523 366.3682 341.3984 370.6445 343.5371 376.0605 C +%_338.8262 372.4258 336.0449 366.7607 337.8828 359.5029 C +%_330.6152 366.7725 319.9805 362.7334 315 369.7334 C +%_Bb +%_1 (Unnamed gradient 35) -0.023633 0 90 0.695993 -1 0 0 -1 55830.9844 53548.4453 1 Bg +%_0.000001 -28.1062 -55.8262 -0.000002 -7378.1738 7756.2773 Xm +%_0.002426 -55492.1211 -55.8262 -0.000002 -7378.1763 63241.8477 Bc +%_0.000001 -14.829 -55.8262 -0.000002 -7378.1738 7749.7251 Bm +%_0.002426 -55492.1211 -55.8262 -0.000002 -7378.1738 7734.896 Bc +%_f +%_0 BB +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_-1 0 0 -1 55830.9844 53548.4453 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_; +%_ +%_0 1 Xd +%_Bb +%_2 (Unnamed gradient 35) -0.023633 0 90 0.695993 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_0.001984 0.254643 0.938994 0 0.992157 0.764706 0 Xa +%_388.0977 248.4688 m +%_383.8398 249.1328 378.709 251.6699 373.9668 249.6885 C +%_376.2891 251.4932 375.1113 253.2031 376.4961 254.8857 C +%_374.5801 253.498 372.9863 254.3828 371.5098 252.1406 C +%_373.0449 257.4502 370.9805 260.2832 369.877 266.2588 C +%_368.7734 260.2832 366.709 257.4502 368.2441 252.1406 C +%_366.7695 254.3828 365.1758 253.498 363.2598 254.8857 C +%_364.6445 253.2031 363.4648 251.4932 365.7891 249.6885 C +%_361.0469 251.6699 355.9141 249.1328 351.6582 248.4688 C +%_355.9141 247.8037 361.0469 245.2695 365.7891 247.251 C +%_363.4648 245.4463 364.6445 243.7344 363.2598 242.0537 C +%_365.1758 243.4395 366.7695 242.5537 368.2441 244.7959 C +%_366.709 239.4873 368.7734 236.6563 369.877 230.6787 C +%_370.9805 236.6563 373.0449 239.4873 371.5098 244.7959 C +%_372.9863 242.5537 374.5801 243.4395 376.4961 242.0537 C +%_375.1113 243.7344 376.2891 245.4463 373.9668 247.251 C +%_378.709 245.2695 383.8398 247.8037 388.0977 248.4688 C +%_f +%_U +%_9 () XW +%_u +%_201.4355 256.7979 m +%_198.793 270.6279 176.0684 273.0537 171.1465 290.8545 C +%_167.3789 271.7393 149.8516 270.9834 149.6094 257.7393 C +%_152.7871 265.542 160.4453 263.5264 165.4941 269.8545 C +%_164.6465 263.7021 160.8594 257.9639 153.1094 254.7783 C +%_160.7813 253.7021 168.7344 256.6104 172.2246 264.3369 C +%_174.7813 260.1631 175.0371 255.8877 172.8965 250.4717 C +%_177.6094 254.1064 180.3887 259.7705 178.5508 267.0283 C +%_185.8203 259.7588 196.4551 263.7979 201.4355 256.7979 C +%_Bb +%_1 (Unnamed gradient 35) -0.023633 0 90 0.695993 1 0 0 1 39342.5586 37062.6875 1 Bg +%_-0.000001 28.1062 55.8261 0.000002 -7599.3906 7799.1914 Xm +%_-0.001714 39211.375 55.8261 0.000002 -7599.3887 -31405.6328 Bc +%_-0.000001 14.829 55.8261 0.000002 -7599.3906 7805.7437 Bm +%_-0.001714 39211.375 55.8261 0.000002 -7599.3906 7820.5728 Bc +%_f +%_0 BB +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_1 0 0 1 39342.5586 37062.6875 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_(-3.141593) /String (BBAccumRotation) , +%_; +%_ +%_0 1 Xd +%_Bb +%_2 (Unnamed gradient 35) -0.023633 0 90 0.695993 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_*u +%_1 D +%_0 g +%_182.3984 370.7881 m +%_211.8359 366.7646 228.6309 349.9971 231.5469 334.2354 C +%_227.623 343.4873 218.5625 349.46 207.9473 352.8682 C +%_218.5625 338.8545 215.1406 321.001 229.0625 311.1709 C +%_218.6973 322.21 221.8516 335.6318 214.1582 347.8994 C +%_226.416 341.0029 228.2813 331.2275 231.1816 320.751 c +%_235.5664 304.9072 242.7266 300.6631 248.4023 298.5732 C +%_236.7031 298.124 219.7422 303.1045 211.6211 318.6748 c +%_203.0098 335.1846 210.1719 353.083 189.1406 362.4482 C +%_198.7422 354.3916 203.8672 342.9307 197.834 328.0264 C +%_200.0898 349.9502 177.207 353.5322 173.5254 368.4795 C +%_172.8965 356.9502 180.7051 347.2568 188.0742 342.5752 C +%_177.7852 345.9482 168.8594 351.5654 164.6543 364.3994 C +%_157.7305 343.0068 169.9688 325.9443 177.5547 325.9443 c +%_180.1816 325.9443 182.0898 327.6162 182.0898 330.1084 c +%_182.0898 336.5576 170.4492 336.5576 167.4941 348.9639 C +%_172.8164 338.1396 193.043 340.0908 193.043 328.2041 c +%_193.043 318.4658 179.4043 314.167 170.6875 320.2197 C +%_177.0742 311.8799 191.9453 311.6006 196.2383 321.6396 C +%_196.9004 317.3311 194.9297 310.8818 188.7852 308.5107 c +%_181.7988 305.8115 175.3008 310.9951 Y +%_182.9414 299.9814 196.2402 307.3213 209.3672 307.0908 c +%_220.2344 306.8975 227.4727 301.2705 230.6582 295.9111 C +%_227.6914 297.3975 226.0195 297.7979 223.0293 297.8623 C +%_229.3223 293.9854 233.877 285.0674 232.0781 276.3936 C +%_230.7813 282.6436 223.5059 287.0732 209.7227 288.0283 c +%_194.166 289.1045 185.9141 291.5967 180.623 297.3311 C +%_191.8242 292.374 209.5586 299.2393 221.6094 291.2979 C +%_214.1563 299.8369 197.6758 297.3877 185.8945 299.2783 c +%_165.1875 302.6025 152.5703 337.5654 154.1875 352.9111 C +%_148.5313 329.4893 163.6484 316.7119 166.9746 303.7783 c +%_170.6094 289.6436 163.6094 279.9521 157.0254 274.9756 C +%_167.3066 290.374 149.6094 299.6045 152.4121 319.3311 C +%_147.1855 300.1436 156.8477 294.6709 156.8477 284.7334 c +%_156.8477 274.9756 148.2637 271.7393 146.5566 259.1846 C +%_144.8516 271.7393 136.2656 274.9756 136.2656 284.7334 c +%_136.2656 294.6709 145.9277 300.1436 140.7012 319.3311 C +%_143.5059 299.6045 125.8086 290.374 136.0879 274.9756 C +%_129.5059 279.9521 122.5059 289.6436 126.1406 303.7783 c +%_129.4648 316.7119 144.582 329.4893 138.9277 352.9111 C +%_140.543 337.5654 127.9277 302.6025 107.2207 299.2783 c +%_95.4375 297.3877 78.959 299.8369 71.5049 291.2979 C +%_83.5547 299.2393 101.2891 292.374 112.4902 297.3311 C +%_107.2012 291.5967 98.9492 289.1045 83.3926 288.0283 c +%_69.6074 287.0732 62.333 282.6436 61.0361 276.3936 C +%_59.2373 285.0674 63.791 293.9854 70.085 297.8623 C +%_67.0938 297.7979 65.4238 297.3975 62.4561 295.9111 C +%_65.6416 301.2705 72.8789 306.8975 83.748 307.0908 c +%_96.875 307.3213 110.1719 299.9814 117.8145 310.9951 C +%_111.3145 305.8115 104.3301 308.5107 v +%_98.1836 310.8818 96.2148 317.3311 96.877 321.6396 C +%_101.1699 311.6006 116.0391 311.8799 122.4258 320.2197 C +%_113.709 314.167 100.0703 318.4658 100.0703 328.2041 c +%_100.0703 340.0908 120.2988 338.1396 125.6211 348.9639 C +%_122.666 336.5576 111.0254 336.5576 111.0254 330.1084 c +%_111.0254 327.6162 112.9336 325.9443 115.5605 325.9443 c +%_123.1445 325.9443 135.3848 343.0068 128.459 364.3994 C +%_124.2559 351.5654 115.3301 345.9482 105.0391 342.5752 C +%_112.4102 347.2568 120.2168 356.9502 119.5879 368.4795 C +%_115.9063 353.5322 93.0254 349.9502 95.2793 328.0264 C +%_89.248 342.9307 94.3711 354.3916 103.9746 362.4482 C +%_82.9414 353.083 90.1035 335.1846 81.4922 318.6748 c +%_73.3711 303.1045 56.4102 298.124 44.7119 298.5732 C +%_50.3867 300.6631 57.5479 304.9072 61.9326 320.751 c +%_64.8311 331.2275 66.6982 341.0029 78.957 347.8994 C +%_71.2627 335.6318 74.418 322.21 64.0527 311.1709 C +%_77.9746 321.001 74.5508 338.8545 85.166 352.8682 C +%_74.5508 349.46 65.4893 343.4873 61.5684 334.2354 C +%_64.4824 349.9971 81.2793 366.7646 110.7168 370.7881 C +%_80.3906 372.0771 74.543 355.2334 59.2607 354.626 c +%_49.5791 354.2412 41.125 363.0166 31.2275 368.3037 C +%_43.3408 365.2314 62.335 356.9756 72.3916 370.4326 C +%_66.1973 365.1709 54.1162 366.7041 v +%_41.8438 368.2627 30.6543 376.1045 0 378.0615 C +%_30.6543 380.0186 41.8438 387.8584 54.1162 389.417 c +%_66.1973 390.9521 72.3916 385.6924 Y +%_62.335 399.1494 43.3408 390.8916 31.2275 387.8213 C +%_41.125 393.1084 49.5791 401.8818 59.2607 401.4971 c +%_74.543 400.8896 80.3906 384.0459 110.7168 385.3369 C +%_81.2793 389.3584 64.4824 406.1279 61.5684 421.8857 C +%_65.4893 412.6377 74.5508 406.665 85.166 403.2568 C +%_74.5508 417.2686 77.9746 435.1221 64.0527 444.9521 C +%_74.418 433.915 71.2627 420.4893 78.957 408.2256 C +%_66.6982 415.1201 64.8311 424.8936 61.9326 435.3701 c +%_57.5479 451.2178 50.3867 455.46 44.7119 457.5498 C +%_56.4102 457.999 73.3711 453.0186 81.4922 437.4482 c +%_90.1035 420.9365 82.9414 403.0381 103.9746 393.6768 C +%_94.3711 401.7314 89.248 413.1924 95.2793 428.0967 C +%_93.0254 406.1748 115.9063 402.5928 119.5879 387.6436 C +%_120.2168 399.1748 112.4102 408.8662 105.0391 413.5479 C +%_115.3301 410.1768 124.2559 404.5596 128.459 391.7236 C +%_135.3848 413.1143 123.1445 430.1787 115.5605 430.1787 c +%_112.9336 430.1787 111.0254 428.5068 111.0254 426.0146 c +%_111.0254 419.5635 122.666 419.5635 125.6211 407.1611 C +%_120.2988 417.9814 100.0703 416.0303 100.0703 427.9189 c +%_100.0703 437.6572 113.709 441.9561 122.4258 435.9033 C +%_116.0391 444.2432 101.1699 444.5244 96.877 434.4834 C +%_96.2148 438.792 98.1836 445.2412 104.3301 447.6143 c +%_111.3145 450.3115 117.8145 445.1299 Y +%_110.1719 456.1436 96.875 448.7998 83.748 449.0342 c +%_72.8789 449.2256 65.6416 454.8545 62.4561 460.21 C +%_65.4238 458.7256 67.0938 458.3252 70.085 458.2588 C +%_63.791 462.1377 59.2373 471.0576 61.0361 479.7275 C +%_62.333 473.4795 69.6074 469.0498 83.3926 468.0947 c +%_98.9492 467.0186 107.2012 464.5264 112.4902 458.79 C +%_101.2891 463.751 83.5547 456.8838 71.5049 464.8232 C +%_78.959 456.2861 95.4375 458.7334 107.2207 456.8428 c +%_127.9277 453.5205 140.543 418.5576 138.9277 403.2119 C +%_144.582 426.6357 129.4648 439.4131 126.1406 452.3467 c +%_122.5059 466.4795 129.5059 476.1729 136.0879 481.1475 C +%_125.8086 465.749 143.5059 456.5186 140.7012 436.79 C +%_145.9277 455.9814 136.2656 461.4521 136.2656 471.3896 c +%_136.2656 481.1475 144.8516 484.3838 146.5566 496.9385 C +%_148.2637 484.3838 156.8477 481.1475 156.8477 471.3896 c +%_156.8477 461.4521 147.1855 455.9814 152.4121 436.79 C +%_149.6094 456.5186 167.3066 465.749 157.0254 481.1475 C +%_163.6094 476.1729 170.6094 466.4795 166.9746 452.3467 c +%_163.6484 439.4131 148.5313 426.6357 154.1875 403.2119 C +%_152.5703 418.5576 165.1875 453.5205 185.8945 456.8428 c +%_197.6758 458.7334 214.1563 456.2861 221.6094 464.8232 C +%_209.5586 456.8838 191.8242 463.751 180.623 458.79 C +%_185.9141 464.5264 194.166 467.0186 209.7227 468.0947 c +%_223.5059 469.0498 230.7813 473.4795 232.0781 479.7275 C +%_233.877 471.0576 229.3223 462.1377 223.0293 458.2588 C +%_226.0195 458.3252 227.6914 458.7256 230.6582 460.21 C +%_227.4727 454.8545 220.2344 449.2256 209.3672 449.0342 c +%_196.2402 448.7998 182.9414 456.1436 175.3008 445.1299 C +%_181.7988 450.3115 188.7852 447.6143 v +%_194.9297 445.2412 196.9004 438.792 196.2383 434.4834 C +%_191.9453 444.5244 177.0742 444.2432 170.6875 435.9033 C +%_179.4043 441.9561 193.043 437.6572 193.043 427.9189 c +%_193.043 416.0303 172.8164 417.9814 167.4941 407.1611 C +%_170.4492 419.5635 182.0898 419.5635 182.0898 426.0146 c +%_182.0898 428.5068 180.1816 430.1787 177.5547 430.1787 c +%_169.9688 430.1787 157.7305 413.1143 164.6543 391.7236 C +%_168.8594 404.5596 177.7852 410.1768 188.0742 413.5479 C +%_180.7051 408.8662 172.8965 399.1748 173.5254 387.6436 C +%_177.207 402.5928 200.0898 406.1748 197.834 428.0967 C +%_203.8672 413.1924 198.7422 401.7314 189.1406 393.6768 C +%_210.1719 403.0381 203.0098 420.9365 211.6211 437.4482 c +%_219.7422 453.0186 236.7031 457.999 248.4023 457.5498 C +%_242.7266 455.46 235.5664 451.2178 231.1816 435.3701 c +%_228.2813 424.8936 226.416 415.1201 214.1582 408.2256 C +%_221.8516 420.4893 218.6973 433.915 229.0625 444.9521 C +%_215.1406 435.1221 218.5625 417.2686 207.9473 403.2568 C +%_218.5625 406.665 227.623 412.6377 231.5469 421.8857 C +%_228.6309 406.1279 211.8359 389.3584 182.3984 385.3369 C +%_212.7246 384.0459 218.5703 400.8896 233.8516 401.4971 c +%_243.5352 401.8818 251.9883 393.1084 261.8867 387.8213 C +%_249.7734 390.8916 230.7793 399.1494 220.7227 385.6924 C +%_226.916 390.9521 238.998 389.417 v +%_251.2695 387.8584 262.459 380.0186 293.1133 378.0615 C +%_262.459 376.1045 251.2695 368.2627 238.998 366.7041 c +%_226.916 365.1709 220.7227 370.4326 Y +%_230.7793 356.9756 249.7734 365.2314 261.8867 368.3037 C +%_251.9883 363.0166 243.5352 354.2412 233.8516 354.626 c +%_218.5703 355.2334 212.7246 372.0771 182.3984 370.7881 C +%_f +%_0 D +%_0 g +%_215.7539 378.0615 m +%_220.3672 376.8193 224.3867 374.292 230.2422 374.292 c +%_237.3555 374.292 241.3164 377.042 246.9824 378.0615 C +%_241.3164 379.0791 237.3555 381.8311 230.2422 381.8311 c +%_224.3867 381.8311 220.3672 379.3037 215.7539 378.0615 C +%_f +%_0 g +%_143.541 468.3721 m +%_143.541 463.249 146.5566 459.9756 146.5566 456.249 c +%_146.5566 459.9756 149.5742 463.249 149.5742 468.3721 c +%_149.5742 472.9404 147.3242 475.0244 146.5566 479.8076 C +%_145.7891 475.0244 143.541 472.9404 143.541 468.3721 c +%_f +%_0 g +%_77.3594 378.0615 m +%_72.7461 379.3037 68.7256 381.8311 62.8711 381.8311 c +%_55.7578 381.8311 51.7979 379.0791 46.1318 378.0615 C +%_51.7979 377.042 55.7578 374.292 62.8711 374.292 c +%_68.7256 374.292 72.7461 376.8193 77.3594 378.0615 C +%_f +%_0 g +%_149.5742 287.751 m +%_149.5742 292.874 146.5566 296.1494 146.5566 299.874 c +%_146.5566 296.1494 143.541 292.874 143.541 287.751 c +%_143.541 283.1826 145.7891 281.0967 146.5566 276.3174 C +%_147.3242 281.0967 149.5742 283.1826 149.5742 287.751 c +%_f +%_191.625 378.0615 m +%_181.6875 378.0615 167.5371 383.0439 156.6719 381.0771 C +%_160.1211 383.1768 161.6543 384.749 164.123 387.8213 C +%_159.7168 387.3877 157.3652 387.0244 154.0098 385.5127 C +%_156.6719 391.5303 157.2031 394.9131 157.7344 400.9502 C +%_154.666 397.3838 153.0957 395.21 151.1699 390.3037 C +%_151.8789 402.7236 146.9121 405.5518 146.5566 422.0654 C +%_146.2012 405.5518 141.2344 402.7236 141.9434 390.3037 C +%_140.0195 395.21 138.4492 397.3838 135.3789 400.9502 C +%_135.9102 394.9131 136.4434 391.5303 139.1055 385.5127 C +%_135.75 387.0244 133.3965 387.3877 128.9902 387.8213 C +%_131.4609 384.749 132.9941 383.1768 136.4434 381.0771 C +%_125.5781 383.0439 111.4258 378.0615 101.4902 378.0615 c +%_111.4258 378.0615 125.5781 373.0811 136.4434 375.0439 C +%_132.9941 372.9482 131.4609 371.374 128.9902 368.3037 C +%_133.3965 368.7354 135.75 369.0986 139.1055 370.6084 C +%_136.4434 364.5928 135.9102 361.2119 135.3789 355.1729 C +%_138.4492 358.7373 140.0195 360.915 141.9434 365.8193 C +%_141.2344 353.3994 146.2012 350.5732 146.5566 334.0596 C +%_146.9121 350.5732 151.8789 353.3994 151.1699 365.8193 C +%_153.0957 360.915 154.666 358.7373 157.7344 355.1729 C +%_157.2031 361.2119 156.6719 364.5928 154.0098 370.6084 C +%_157.3652 369.0986 159.7168 368.7354 164.123 368.3037 C +%_161.6543 371.374 160.1211 372.9482 156.6719 375.0439 C +%_167.5371 373.0811 181.6875 378.0615 191.625 378.0615 c +%_Bb +%_0 0 0 0 Bh +%_1 (Unnamed gradient 83) 0 0 0 1 1 0 0 -1 39406.5586 53548.4453 1 Bg +%_133.4363 0 0 133.4363 -7600.4414 7712.9375 Bm +%_f +%_0 BB +%_*U +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_1 0 0 -1 39406.5586 53548.4453 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_; +%_ +%_0 1 Xd +%_Bb +%_0 0 0 0 Bh +%_2 (Unnamed gradient 83) 0 0 0 1 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_0.791623 0.163851 1 0.031525 0.2 0.572549 0.180392 Xa +%_214.3574 309.5654 m +%_208.8379 314.1436 203.6973 322.0264 202.916 332.3154 C +%_201.8398 322.085 199.7168 314.1807 194.7051 308.3545 C +%_201.0313 311.4502 203.3203 317.5088 V +%_206.2813 312.2588 214.3574 309.5654 Y +%_f +%_228.3574 258.6826 m +%_227.1406 264.6514 222.0508 269.8604 215.4355 272.4131 C +%_218.1445 265.4189 217.1387 258.6143 213.2813 252.624 C +%_214.1797 260.3896 211.8125 265.833 207.4922 270.6631 C +%_208.8535 265.833 208.7344 261.3955 206.416 256.7979 C +%_207.3574 265.2783 200.248 269.583 190.8008 275.2393 c +%_178.1406 282.8174 173.5234 291.2822 171.5508 302.4658 C +%_175.002 295.6006 181.4531 289.3271 199.4102 285.1729 c +%_221.709 280.0146 229.8027 272.7568 228.3574 258.6826 C +%_f +%_228.0879 350.8916 m +%_232.7754 346.2959 235 338.7061 235.3574 329.1709 c +%_235.8281 316.6436 240.7676 311.5146 248.6836 310.6436 C +%_236.8828 315.2217 244.2402 327.7568 240.7422 336.4893 C +%_247.1816 331.7021 245.123 315.8115 258.377 315.085 C +%_248.5957 318.2822 255.541 331.7607 249.0879 339.585 C +%_256.8965 339.4775 260.4863 345.71 270.627 342.8154 C +%_265.9102 346.4502 260.6621 348.7393 251.7813 348.7393 C +%_258.0352 352.5986 260.7813 357.3643 263.0879 364.085 C +%_252.9609 353.4912 238.2363 349.417 228.0879 350.8916 C +%_Bb +%_1 (Unnamed gradient 35) -0.041802 0 161.1868 0.574118 -1 0 0 1 55830.9844 37077.2266 1 Bg +%_23.2981 7.93732 -19.6586 57.7031 -7512.2983 7715.1313 Xm +%_52636.3047 17932.3965 -19.6586 57.7031 -60143.1719 -10215.4141 Bc +%_12.2922 4.18778 -19.6586 57.7031 -7506.8667 7716.9819 Bm +%_52636.3047 17932.3965 -19.6586 57.7031 -7494.5747 7721.1694 Bc +%_f +%_0 BB +%_/ArtDictionary : +%_/Dictionary : /NotRecorded , +%_-1 0 0 1 55830.9844 37077.2266 /RealMatrix +%_ (CAIGradientTformMatrix) , +%_; (Adobe_AI9_ArtStyle_Dictionary) , +%_; +%_ +%_0 1 Xd +%_Bb +%_2 (Unnamed gradient 35) -0.041802 0 161.1868 0.574118 1 0 0 1 0 0 1 Bg +%_0 BB +%_6 () XW +%_0.001984 0.254643 0.938994 0 0.992157 0.764706 0 Xa +%_164.7773 378.0615 m +%_160.5195 378.7256 155.3887 381.2627 150.6465 379.2803 C +%_152.9688 381.085 151.791 382.7959 153.1758 384.4775 C +%_151.2598 383.0908 149.666 383.9756 148.1895 381.7334 C +%_149.7246 387.042 147.6602 389.876 146.5566 395.8506 C +%_145.4531 389.876 143.3887 387.042 144.9238 381.7334 C +%_143.4492 383.9756 141.8555 383.0908 139.9395 384.4775 C +%_141.3242 382.7959 140.1445 381.085 142.4688 379.2803 C +%_137.7266 381.2627 132.5938 378.7256 128.3379 378.0615 C +%_132.5938 377.3955 137.7266 374.8623 142.4688 376.8428 C +%_140.1445 375.0381 141.3242 373.3271 139.9395 371.6455 C +%_141.8555 373.0322 143.4492 372.1455 144.9238 374.3877 C +%_143.3887 369.0791 145.4531 366.249 146.5566 360.2705 C +%_147.6602 366.249 149.7246 369.0791 148.1895 374.3877 C +%_149.666 372.1455 151.2598 373.0322 153.1758 371.6455 C +%_151.791 373.3271 152.9688 375.0381 150.6465 376.8428 C +%_155.3887 374.8623 160.5195 377.3955 164.7773 378.0615 C +%_f +%_U +%_/ArtDictionary : +%_1 /Bool (AIPattern_Is_Repeated_Art) , +%_; +%_ +%_9 () XW +%_U +%_/ArtDictionary : +%_5 /Int (AIPattern_Editor_Preview_Rows) , +%_259.1848 /Real (AIPattern_Editor_Tile_Height) , +%_1 /Bool (AIPattern_Editor_Top_in_Front) , +%_1 /Bool (AIPattern_Editor_Left_in_Front) , +%_1 /Bool (AIPattern_Editor_Dim_Copies_Key) , +%_5 /Int (AIPattern_Editor_Preview_Cols) , +%_297.1165 /Real (AIPattern_Editor_Tile_Width) , +%_4.0032 /Real (AIPattern_Editor_AutoSpacing_H) , +%_1 /Bool (AIPattern_Editor_AutoGrow) , +%_4.0032 /Real (AIPattern_Editor_AutoSpacing_V) , +%_4 /Int (AIPattern_Editor_Editable_Copy_Loc_Key) , +%_50 /Real (AIPattern_Editor_Dim_Percent_Key) , +%_4 /Int (AIPattern_Editor_Repetition_Type) , +%_; +%_ +%_9 () XW +E +%AI3_EndPattern +%AI3_BeginPattern: (Pompadour) +(Pompadour) 218.1958 183.1699 385.1958 350.1699 +%_0 A +%_0 Xw +%_u +%_0 1 0 0 0 Xy +%_0 J 0 j 1 w 10 M []0 d %_0 XR +%_218.1958 350.1699 m +%_385.1958 350.1699 L +%_385.1958 183.1699 L +%_218.1958 183.1699 L +%_218.1958 350.1699 L +%_n +%_/ArtDictionary : +%_1 /Bool (AIPattern_Editor_Backing_Tile_Rect) , +%_; +%_ +%_u +%_*u +%_0 O +%_0.306889 0.577478 0.779446 0.294591 0.576471 0.376471 0.215686 Xa +%_407.2622 96.3711 m +%_407.3872 96.3711 407.4927 96.4629 407.5103 96.585 c +%_409.8911 112.5996 419.1646 125.9746 431.9028 133.9814 c +%_432.0063 134.0449 432.0493 134.1758 432.0044 134.29 c +%_431.9575 134.4023 431.8384 134.4688 431.7173 134.4443 c +%_421.2466 132.3398 411.9243 126.5811 405.27 118.4141 C +%_400.645 131.7891 390.0337 140.418 376.9692 144.0654 C +%_381.7778 149.6582 379.2622 157.5986 371.8501 158.9023 c +%_371.7368 158.9229 371.6255 158.8643 371.5767 158.7607 c +%_371.5278 158.6563 371.5552 158.5322 371.6431 158.46 c +%_375.6157 155.1143 374.1626 147.04 362.3052 147.04 c +%_354.5103 147.04 349.4849 150.2188 349.4849 154.5254 c +%_349.4849 157.9102 352.5474 159.7559 355.1255 159.7559 c +%_359.5415 159.7559 362.0649 155.7949 360.1685 152.2129 c +%_360.1138 152.1104 360.1353 151.9814 360.2231 151.9033 c +%_360.311 151.8271 360.4399 151.8184 360.5376 151.8857 c +%_362.7856 153.4492 364.356 155.5059 364.356 158.6768 c +%_364.356 164.0635 359.3306 169.8066 351.0239 169.8066 c +%_342.1021 169.8066 334.0005 162.9355 334.0005 154.5254 c +%_334.0005 142.71 344.0493 137.0918 354.6138 136.0918 C +%_350.2485 134.4189 346.981 129.5664 v +%_346.9146 129.4697 346.9243 129.3418 347.0024 129.2559 c +%_347.0806 129.1689 347.2056 129.1475 347.3091 129.2012 c +%_353.1392 132.2822 359.7954 133.9453 366.811 133.9453 c +%_386.4321 133.9453 403.3579 117.541 407.0103 96.5801 c +%_407.0317 96.4561 407.1392 96.3691 407.2622 96.3711 c +%_f +%_1 D +%_483.9399 148.7773 m +%_488.5493 156.4551 490.1919 169.627 485.897 179.46 c +%_485.8481 179.5703 485.8833 179.6992 485.9829 179.7686 c +%_486.0806 179.8379 486.2153 179.8281 486.3032 179.7461 c +%_491.1099 175.1914 495.2427 164.5684 493.0083 152.2871 C +%_496.106 149.8936 498.0532 147.5176 499.522 144.335 c +%_499.5688 144.2314 499.5415 144.1104 499.4556 144.0352 c +%_499.3696 143.9629 499.2446 143.9551 499.1489 144.0186 c +%_494.1528 147.3809 489.686 148.5283 483.9399 148.7773 C +%_f +%_473.3306 28.9707 m +%_473.4009 28.8672 473.3833 28.7266 473.2915 28.6426 c +%_473.1978 28.5586 473.0571 28.5547 472.9595 28.6348 c +%_466.145 34.1621 457.0845 37.6895 445.9243 37.6895 c +%_418.3521 37.6895 400.9517 21.1719 398.2173 3.76367 c +%_398.1997 3.65234 398.1099 3.56641 397.9985 3.55078 c +%_397.8872 3.53711 397.7778 3.59766 397.7329 3.70117 c +%_395.0083 9.95898 393.3657 19.0352 401.7817 31.209 c +%_406.8169 38.4941 412.9106 43.5098 412.9106 50.0273 c +%_412.9106 54.2852 410.6509 57.1797 407.2231 57.1797 c +%_403.6177 57.1797 401.2876 54.0918 401.2876 50.625 c +%_401.2876 48.877 401.7915 47.1465 402.6958 45.5801 c +%_402.7544 45.4766 402.7368 45.3496 402.6509 45.2676 c +%_402.5649 45.1875 402.436 45.1758 402.3384 45.2402 c +%_399.3657 47.1777 396.7114 50.6367 396.7114 55.5117 c +%_396.7114 62.6836 402.8442 68.6816 411.1802 68.6816 c +%_420.1548 68.6816 427.5044 61.6328 427.5044 51.4922 c +%_427.5044 48.0156 426.5142 43.8242 424.0415 40.3613 C +%_427.4263 43.1875 429.2329 45.1875 430.7192 49.5117 C +%_441.1196 51.3223 452.2251 49.6602 461.0493 43.8691 C +%_461.3052 49.9707 463.3013 55.0605 467.3931 59.1875 c +%_467.4771 59.2715 467.6079 59.2852 467.7075 59.2227 c +%_467.8091 59.1582 467.8521 59.0332 467.811 58.9219 c +%_464.9341 50.9199 466.8657 38.7246 473.3306 28.9707 c +%_f +%_560.6978 35.6055 m +%_558.4517 30.8066 553.2388 28.1211 547.2368 28.0117 c +%_547.1118 28.0098 547.0044 28.0977 546.9829 28.2188 c +%_546.9595 28.3418 547.0278 28.4609 547.1431 28.5039 c +%_549.1899 29.2578 550.8052 30.5762 551.6646 32.4141 c +%_553.8774 37.1426 550.2974 43.5098 543.6509 46.7832 c +%_543.5728 46.8223 543.52 46.8965 543.5103 46.9824 c +%_543.5005 47.0684 543.5337 47.1523 543.6001 47.207 c +%_547.8911 50.7266 553.0122 57.2617 553.0122 70.627 c +%_553.0122 89.3086 540.8579 107.0898 524.7368 107.0898 c +%_515.5239 107.0898 508.104 100.6934 504.2661 91.0977 C +%_508.4868 96.8564 514.2446 101.2051 522.1782 101.2051 c +%_533.8208 101.2051 543.0337 88.7969 543.0337 70.8828 c +%_543.0337 53.9941 531.1333 34.2891 515.2681 34.2891 c +%_506.5669 34.2891 500.0435 41.3281 500.0435 50.4121 c +%_500.0435 58.4746 505.2896 63.0781 511.1763 63.0781 c +%_515.6099 63.0781 518.6685 59.9473 519.6196 56.5527 c +%_519.6509 56.4375 519.6001 56.3164 519.4927 56.2598 c +%_519.3872 56.2051 519.2583 56.2305 519.1802 56.3223 c +%_518.4282 57.2168 517.2837 57.9609 515.5259 57.9609 c +%_512.5825 57.9609 511.0474 55.4316 511.0474 53.6113 c +%_511.0474 50.1563 513.606 47.7246 517.4458 47.7246 c +%_522.6899 47.7246 526.7856 53.4824 526.7856 60.9023 c +%_526.7856 70.1152 517.9556 78.5586 509.1274 78.5586 c +%_500.106 78.5586 490.4478 70.5 490.4478 55.5293 c +%_490.4478 40.8164 500.4282 23.9258 516.2935 23.9258 c +%_525.5435 23.9258 533.4048 28.0957 539.436 35.002 c +%_539.5161 35.0918 539.6489 35.1152 539.7544 35.0547 c +%_539.8599 34.9941 539.9067 34.8672 539.8677 34.752 c +%_535.4341 21.8164 537.9126 9.60742 544.688 9.60742 c +%_548.0024 9.60742 549.6899 11.9863 549.6899 14.5234 c +%_549.6899 17.1309 547.7915 19.2852 544.7212 19.6777 c +%_544.6001 19.6934 544.5063 19.793 544.4985 19.9141 c +%_544.4927 20.0352 544.5708 20.1465 544.6899 20.1758 c +%_551.5044 21.9395 558.5142 18.2285 558.5142 11.1328 c +%_558.5142 4.85547 553.1372 0.001953 546.1021 0.001953 c +%_535.4653 0.001953 530.3774 11.2715 532.6431 21.5371 C +%_527.1841 14.4922 519.0903 8.70117 507.4653 8.70117 c +%_483.9224 8.70117 472.0239 35.5703 472.0239 53.6113 c +%_472.0239 69.9883 475.3501 80.4785 482.2603 88.5391 C +%_474.1978 82.3984 470.8716 75.6172 469.3384 66.2773 C +%_463.1958 57.832 447.2036 57.832 v +%_440.5161 57.832 434.2739 60.3086 429.4302 64.998 C +%_429.4282 64.9961 429.4263 64.9941 429.4243 64.9902 C +%_429.3892 65.0313 429.3501 65.0703 429.3149 65.1094 C +%_428.9946 65.4238 428.6802 65.748 428.3716 66.082 C +%_423.3091 70.9316 413.1802 75.4785 403.9399 71.6797 c +%_403.8345 71.6367 403.7134 71.6699 403.6431 71.7578 c +%_403.5728 71.8477 403.5708 71.9727 403.6392 72.0645 c +%_408.0454 78.0898 415.6626 80.0059 421.3169 79.1309 C +%_420.272 82.8457 419.6938 87.0117 419.6938 91.6094 c +%_419.6938 108.0137 428.4927 119.5801 438.106 125.2109 C +%_434.9517 129.0137 435.5962 134.9883 439.1372 139.0449 c +%_439.2173 139.1357 439.3481 139.1582 439.4536 139.0996 c +%_439.5571 139.041 439.606 138.918 439.5708 138.8018 c +%_437.8403 133.2695 442.9634 128.6523 449.7524 128.9004 c +%_449.8755 128.9033 449.9829 128.8193 450.0103 128.6992 c +%_450.0356 128.5801 449.9712 128.457 449.8579 128.4111 c +%_439.7212 124.248 433.0005 115.4316 433.0005 104.4033 c +%_433.0005 92.8906 439.9087 83.5488 451.0415 83.5488 c +%_460.1255 83.5488 469.2095 91.8672 469.2095 102.2285 c +%_469.2095 110.2891 464.731 115.0225 458.9731 115.0225 c +%_453.9849 115.0225 450.0181 111.5684 450.0181 107.4736 c +%_450.0181 101.6211 456.6001 99.499 460.1118 104.1309 c +%_460.1821 104.2227 460.3032 104.2559 460.4087 104.2129 c +%_460.5161 104.1699 460.5806 104.0625 460.5669 103.9482 c +%_460.0435 99.5586 456.8149 95.4482 451.8091 95.4482 c +%_447.2036 95.4482 442.4692 99.2861 442.4692 107.4746 c +%_442.4692 117.1982 451.8071 127.0508 467.1606 127.0508 c +%_488.1431 127.0508 499.5317 103.3809 489.2974 84.4453 C +%_494.5415 90.459 499.2759 96.8555 499.2759 108.2432 c +%_499.2759 129.75 478.0122 144.291 452.9224 135.7441 c +%_452.8032 135.7021 452.6724 135.7559 452.6157 135.8672 c +%_452.5571 135.9785 452.5884 136.1143 452.6899 136.1895 c +%_459.6958 141.2979 467.0337 148.8262 467.0337 161.4668 c +%_467.0337 174.6475 458.3345 183.9854 444.772 183.9854 c +%_434.2798 183.9854 427.6274 177.5879 427.6274 170.04 c +%_427.6274 164.2822 431.3462 159.6768 437.7349 159.6768 c +%_447.2466 159.6768 450.481 170.0195 445.5591 174.6445 c +%_445.4751 174.7236 445.4556 174.8516 445.5103 174.9521 c +%_445.5669 175.0547 445.6841 175.1055 445.7974 175.0762 c +%_450.5669 173.8398 455.1353 169.0068 455.1353 161.7236 c +%_455.1353 149.1855 443.4927 140.8682 430.6978 140.8682 c +%_424.7017 140.8682 418.8989 142.623 414.2271 145.9102 C +%_414.7778 150.0635 413.3579 154.6602 411.2603 157.752 C +%_413.2095 150.8848 411.1021 139.5732 400.5864 139.5732 c +%_394.6958 139.5732 390.8013 144.1025 390.8013 149.4551 c +%_390.8013 155.7793 396.147 158.7314 400.4966 158.125 c +%_400.6118 158.1104 400.7017 158.0186 400.7134 157.9023 c +%_400.7271 157.7891 400.6606 157.6797 400.5532 157.6367 c +%_398.9673 157.0293 397.6118 155.3691 397.6118 153.373 c +%_397.6118 150.873 399.52 149.3906 401.52 149.3906 c +%_404.8149 149.3906 406.645 153.0605 405.4927 157.1104 C +%_405.5044 157.1104 L +%_404.4321 159.9473 403.8286 163.1152 403.8286 166.6055 c +%_403.8286 183.3672 422.0103 199.3398 444.9497 199.3398 c +%_469.1626 199.3398 482.0044 182.0664 482.0044 164.2822 c +%_482.0044 154.7461 478.4224 147.5225 473.8149 142.915 C +%_493.7368 145.0332 506.313 136.5176 513.0942 124.2354 C +%_508.6157 120.3975 506.9536 114.7676 Y +%_512.3267 121.8057 521.5376 127.9453 534.4595 127.9453 c +%_554.0356 127.9453 569.3911 108.7539 569.3911 88.1563 c +%_569.3911 75.084 564.5884 62.375 554.8267 53.9102 C +%_560.8638 48.8809 563.4731 41.5391 560.6978 35.6055 c +%_f +%_*U +%_*u +%_0 D +%_1 0.2 0 0 0 Xy +%_482.2114 160.9053 m +%_482.1782 160.7852 482.2388 160.6582 482.3521 160.6094 c +%_497.1763 154.0957 507.6372 141.6289 512.0063 127.2324 c +%_512.0415 127.1152 512.1548 127.0391 512.2778 127.0527 c +%_512.3989 127.0664 512.4946 127.166 512.5024 127.2871 c +%_513.229 137.9434 510.1274 148.4531 504.0005 157.0234 C +%_518.1216 157.9648 529.2407 165.9297 536.1997 177.5723 C +%_540.3286 171.46 548.6509 171.7969 551.8599 178.6035 c +%_551.9106 178.708 551.8833 178.832 551.7954 178.9063 c +%_551.7075 178.9805 551.5806 178.9873 551.4868 178.9219 c +%_547.2134 175.9688 539.8071 179.498 542.9282 190.9355 c +%_544.981 198.4561 549.3716 202.4668 553.5259 201.333 c +%_556.7915 200.4414 557.7661 197.002 557.0864 194.5146 c +%_555.9243 190.2539 551.438 188.8623 548.481 191.6357 c +%_548.397 191.7158 548.2681 191.7285 548.1704 191.6641 c +%_548.0728 191.5986 548.0298 191.4775 548.0688 191.3662 c +%_548.9868 188.7852 550.5571 186.7285 553.6157 185.8936 c +%_558.811 184.4756 565.6743 187.8115 567.8618 195.8252 c +%_570.2114 204.4316 565.7153 214.0566 557.604 216.2715 c +%_546.2036 219.3818 538.1392 211.166 534.3931 201.2383 C +%_533.9263 205.8896 530.1079 210.3203 v +%_530.0317 210.4092 529.9048 210.4336 529.8013 210.3818 c +%_529.6978 210.3291 529.6431 210.2129 529.6665 210.0996 c +%_531.106 203.6641 530.9575 196.8047 529.1099 190.0361 c +%_523.9438 171.1074 503.6626 159.0977 482.479 161.0938 c +%_482.354 161.1055 482.2407 161.0254 482.2114 160.9053 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_512.5806 73.1348 m +%_518.7739 66.666 531.0493 61.6133 541.6646 63.168 c +%_541.7856 63.1855 541.9009 63.1172 541.9399 63.0039 c +%_541.981 62.8906 541.936 62.7637 541.8345 62.7012 c +%_536.1743 59.2617 524.8384 58.0723 513.5786 63.4609 C +%_510.4536 61.1035 507.6489 59.8496 504.1919 59.2715 c +%_504.0806 59.2539 503.9692 59.3125 503.9204 59.4141 c +%_503.8735 59.5156 503.8989 59.6387 503.9849 59.7148 c +%_508.5454 63.6484 510.8286 67.6563 512.5806 73.1348 C +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_399.7935 114.9121 m +%_399.6763 114.8711 399.5454 114.9258 399.4888 115.0371 c +%_399.4321 115.1484 399.4653 115.2852 399.5688 115.3594 c +%_406.6938 120.4785 412.4829 128.291 415.4204 139.0566 c +%_422.6802 165.6563 411.3267 186.792 395.2544 194.0146 c +%_395.1509 194.0605 395.0903 194.1689 395.106 194.2803 c +%_395.1216 194.3926 395.2095 194.4814 395.3208 194.4971 c +%_402.0747 195.4785 411.2622 194.6729 420.7915 183.3486 c +%_426.4927 176.5732 429.7271 169.373 436.0142 167.6563 c +%_440.1216 166.5352 443.5103 167.9551 444.4126 171.2617 c +%_445.3618 174.7393 442.9966 177.8018 439.6528 178.7148 c +%_437.9653 179.1738 436.1626 179.1436 434.4146 178.6836 c +%_434.2993 178.6533 434.1821 178.7051 434.1255 178.8086 c +%_434.0708 178.9121 434.0923 179.04 434.1802 179.1172 c +%_436.8325 181.4746 440.8677 183.125 445.5708 181.8408 c +%_452.4907 179.9531 456.6606 172.457 454.4673 164.415 c +%_452.104 155.7578 443.3696 150.5234 433.5864 153.1934 c +%_430.2329 154.1084 426.4497 156.168 423.7603 159.4648 C +%_425.5942 155.4551 427.0493 153.1855 430.8286 150.6133 C +%_429.8364 140.1035 425.3091 129.8271 417.4009 122.8389 C +%_423.2192 120.9863 427.604 117.7207 430.5083 112.6855 c +%_430.5669 112.582 430.5454 112.4531 430.4595 112.373 c +%_430.3696 112.293 430.2388 112.2832 430.1411 112.3535 c +%_423.1802 117.2344 410.9048 118.582 399.7935 114.9121 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_383.1919 28.8809 m +%_379.1548 32.3105 377.936 38.0469 379.4106 43.8672 c +%_379.4419 43.9883 379.5552 44.0684 379.6782 44.0566 c +%_379.8032 44.0469 379.8989 43.9492 379.9106 43.8281 c +%_380.0981 41.6543 380.9458 39.748 382.4927 38.4355 c +%_386.4712 35.0566 393.5571 36.834 398.4634 42.3828 c +%_398.522 42.4492 398.6079 42.4805 398.6938 42.4668 c +%_398.7798 42.4531 398.8521 42.3984 398.8872 42.3203 c +%_401.1528 37.2539 406.1079 30.5938 419.0005 27.0742 c +%_437.0239 22.1563 457.3794 29.1992 461.6235 44.752 c +%_464.0493 53.6406 459.8306 62.4824 451.5845 68.7109 C +%_456.0298 63.123 458.7075 56.4238 456.6177 48.7695 c +%_453.5532 37.5391 439.1567 31.918 421.8755 36.6348 c +%_405.5825 41.0801 389.7075 57.748 393.8833 73.0547 c +%_396.1743 81.4492 404.6821 85.8887 413.4458 83.4961 c +%_421.2231 81.375 424.2837 75.1016 422.7329 69.4219 c +%_421.5669 65.1445 417.7407 63.0195 414.2153 62.9941 c +%_414.0962 62.9941 413.9927 63.0762 413.9653 63.1934 c +%_413.9419 63.3105 413.9985 63.4277 414.1079 63.4785 c +%_415.1704 63.9688 416.188 64.877 416.6509 66.5742 c +%_417.4263 69.4121 415.3911 71.5605 413.6353 72.0391 c +%_410.3032 72.9492 407.2837 71.1211 406.272 67.416 c +%_404.8911 62.3574 409.3677 56.8906 416.5239 54.9355 c +%_425.4126 52.5117 435.8833 58.8066 438.2075 67.3223 c +%_440.5825 76.0254 435.3501 87.4648 420.9087 91.4063 c +%_406.7153 95.2813 387.7935 90.0996 383.6157 74.793 c +%_381.1802 65.8691 383.1333 57.1875 388.2075 49.5508 c +%_388.2739 49.4512 388.2622 49.3164 388.1763 49.2305 c +%_388.0884 49.1445 387.9536 49.1328 387.854 49.2012 c +%_376.5415 56.8828 364.1118 57.707 362.3267 51.1699 c +%_361.4536 47.9727 363.3052 45.7188 365.7524 45.0508 c +%_368.2681 44.3652 370.8462 45.6289 372.0337 48.4883 c +%_372.0806 48.5996 372.2017 48.6641 372.3208 48.6406 c +%_372.438 48.6133 372.5259 48.5098 372.522 48.3867 c +%_372.4302 41.3477 367.0044 35.5625 360.1587 37.4316 c +%_354.1021 39.084 350.8364 45.5488 352.688 52.3359 c +%_355.4888 62.5977 367.6997 64.5391 377.0063 59.6504 C +%_371.647 66.7715 368.1919 76.1035 371.2524 87.3184 c +%_377.4517 110.0313 406.5044 114.4355 423.9087 109.6855 c +%_439.7075 105.373 448.9517 99.4023 454.9087 90.6152 C +%_451.1079 100.0098 445.4419 105.0039 436.8345 108.9434 C +%_430.3052 117.0918 434.5161 132.5195 v +%_436.2759 138.9707 440.3091 144.3418 446.1079 147.7793 C +%_446.1079 147.7813 446.106 147.7842 446.1021 147.7871 C +%_446.1509 147.8105 446.1997 147.8379 446.2466 147.8613 C +%_446.6333 148.0879 447.0298 148.3057 447.4321 148.5146 C +%_453.4438 152.1211 460.4966 160.6973 459.2661 170.6113 c +%_459.2524 170.7236 459.3149 170.832 459.4185 170.877 c +%_459.5239 170.9219 459.645 170.8896 459.7153 170.8018 c +%_464.3677 164.9629 464.2114 157.1104 461.8794 151.8857 C +%_465.7368 151.915 469.9087 151.375 474.3442 150.165 c +%_490.1685 145.8457 499.0122 134.3135 501.9126 123.5566 C +%_506.4106 125.5977 512.0063 123.4043 514.9888 118.9199 c +%_515.0532 118.8184 515.0415 118.6855 514.9575 118.5996 c +%_514.8735 118.5156 514.7407 118.5 514.6392 118.5645 c +%_509.7583 121.6914 503.9556 117.9648 502.4048 111.3496 c +%_502.3774 111.2305 502.2681 111.1484 502.145 111.1543 c +%_502.022 111.1602 501.9204 111.2539 501.9067 111.377 c +%_500.5591 122.251 493.8228 131.0566 483.1841 133.96 c +%_472.0767 136.9922 461.2446 132.7852 458.3149 122.0469 c +%_455.9224 113.2832 461.5571 102.3301 471.5513 99.6016 c +%_479.3286 97.4785 485.0747 100.5527 486.5903 106.1074 c +%_487.9048 110.9199 485.6157 115.6563 481.6665 116.7344 c +%_476.0181 118.2754 472.2388 112.4844 475.7837 107.877 c +%_475.8521 107.7852 475.854 107.6602 475.7837 107.5684 c +%_475.7153 107.4766 475.5923 107.4434 475.4868 107.4863 c +%_471.3892 109.1465 468.2739 113.3418 469.5923 118.1729 c +%_470.8052 122.6152 475.7544 126.1729 483.6548 124.0166 c +%_493.0356 121.457 500.0806 109.8555 496.0376 95.043 c +%_490.5142 74.7988 464.6802 70.0449 449.1079 84.9043 C +%_453.5278 78.2617 458.4517 72.0098 469.438 69.0117 c +%_490.188 63.3496 509.813 80.0332 508.1724 106.4902 c +%_508.1646 106.6152 508.2505 106.7285 508.3735 106.7539 c +%_508.4946 106.7813 508.6196 106.7129 508.6646 106.5977 c +%_511.7466 98.4922 517.0786 89.4316 529.2739 86.1035 c +%_541.9888 82.6328 553.2876 88.5664 556.8599 101.6504 c +%_559.6216 111.7734 555.2017 119.875 547.9204 121.8623 c +%_542.3657 123.3789 536.9419 121.0039 535.2603 114.8398 c +%_532.7563 105.6641 541.8833 99.8203 547.6411 103.3516 c +%_547.7388 103.4121 547.8677 103.3965 547.9497 103.3164 c +%_548.0337 103.2363 548.0513 103.1094 547.9927 103.0078 c +%_545.5454 98.7324 539.6802 95.5977 532.6548 97.5156 c +%_520.5571 100.8164 515.6001 114.2383 518.9673 126.5811 c +%_520.5454 132.3652 523.7681 137.502 528.1685 141.1426 C +%_532.0298 139.5186 536.8384 139.6777 540.3735 140.8867 C +%_533.2349 140.8154 522.8794 145.8262 525.647 155.9707 c +%_527.1978 161.6533 532.5923 164.2188 537.7563 162.8086 c +%_543.8579 161.1436 545.2974 155.21 543.5688 151.1729 c +%_543.522 151.0654 543.4106 151.0039 543.2974 151.0225 c +%_543.1821 151.04 543.0942 151.1318 543.0825 151.2471 c +%_542.9146 152.9375 541.6685 154.6836 539.7446 155.208 c +%_537.3325 155.8662 535.3989 154.415 534.8735 152.4854 c +%_534.0044 149.3066 537.063 146.5752 541.2739 146.6211 C +%_541.27 146.6094 L +%_544.2896 146.8984 547.5044 146.6445 550.8716 145.7266 c +%_567.0415 141.3125 577.6646 119.5674 571.6235 97.4375 c +%_565.2485 74.0781 545.2056 66.2363 528.0474 70.9199 c +%_518.8481 73.4297 512.8228 78.7871 509.5903 84.4453 C +%_506.3892 64.668 494.8618 54.7793 481.229 51.4707 C +%_478.7056 56.8008 473.7114 59.8867 Y +%_479.0864 52.8496 482.5845 42.3477 479.1821 29.8809 c +%_474.0278 10.9961 451.4712 1.23438 431.6001 6.6582 c +%_418.9888 10.0996 407.9927 18.0801 402.397 29.7266 C +%_395.9556 25.2266 388.186 24.6406 383.1919 28.8809 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_u +%_*u +%_0 D +%_0 0 0 0 1 1 1 Xa +%_0 1 0 0 0 Xy +%_530.1294 102.9688 m +%_530.0044 102.9688 529.8989 102.877 529.8794 102.7539 c +%_527.5005 86.7402 518.2271 73.3652 505.4888 65.3594 c +%_505.3853 65.2949 505.3403 65.1641 505.3872 65.0508 c +%_505.4321 64.9375 505.5532 64.8711 505.6724 64.8965 c +%_516.145 67 525.4653 72.7598 532.1216 80.9277 C +%_536.7466 67.5508 547.3579 58.9219 560.4224 55.2734 C +%_555.6138 49.6816 558.1294 41.7402 565.5415 40.4375 c +%_565.6548 40.416 565.7661 40.4746 565.8149 40.5781 c +%_565.8638 40.6816 565.8364 40.8066 565.7485 40.8809 c +%_561.7759 44.2266 563.229 52.3008 575.0864 52.3008 c +%_582.8804 52.3008 587.9077 49.1211 587.9077 44.8145 c +%_587.9077 41.4297 584.8452 39.584 582.2651 39.584 c +%_577.8511 39.584 575.3267 43.5449 577.2231 47.127 c +%_577.2778 47.2305 577.2563 47.3574 577.1685 47.4355 c +%_577.0806 47.5137 576.9517 47.5215 576.854 47.4551 c +%_574.606 45.8906 573.0356 43.834 573.0356 40.6641 c +%_573.0356 35.2773 578.062 29.5352 586.3687 29.5332 c +%_595.2905 29.5332 603.3921 36.4043 603.3921 44.8145 c +%_603.3921 56.6309 593.3433 62.248 582.7788 63.248 C +%_587.144 64.9219 590.4116 69.7734 v +%_590.478 69.8691 590.4683 69.998 590.3901 70.084 c +%_590.312 70.1719 590.1851 70.1934 590.0835 70.1387 c +%_584.2534 67.0566 577.5942 65.3945 570.5806 65.3945 c +%_550.9575 65.3945 534.0337 81.7988 530.3813 102.7607 c +%_530.3599 102.8818 530.2524 102.9727 530.1294 102.9688 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_453.4517 50.5625 m +%_448.8442 42.8867 447.1997 29.7129 451.4946 19.8809 c +%_451.5435 19.7695 451.5083 19.6406 451.4087 19.5703 c +%_451.3091 19.502 451.1763 19.5117 451.0884 19.5957 c +%_446.2817 24.1484 442.1489 34.7715 444.3833 47.0527 C +%_441.2876 49.4473 439.3384 51.8223 437.8696 55.0059 c +%_437.8228 55.1074 437.8501 55.2305 437.936 55.3047 c +%_438.022 55.377 438.147 55.3848 438.2427 55.3203 c +%_443.2388 51.959 447.7056 50.8125 453.4517 50.5625 C +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_464.0591 170.3691 m +%_463.9907 170.4727 464.0083 170.6133 464.1001 170.6973 c +%_464.1938 170.7813 464.3345 170.7852 464.4321 170.7061 c +%_471.2466 165.1797 480.3071 161.6504 491.4673 161.6504 c +%_519.0376 161.6504 536.4399 178.1689 539.1743 195.5771 c +%_539.1919 195.6885 539.2817 195.7734 539.3931 195.7891 c +%_539.5044 195.8047 539.6138 195.7422 539.6587 195.6396 c +%_542.3833 189.3818 544.0259 180.3057 535.6099 168.1309 c +%_530.5747 160.8457 524.479 155.8311 524.479 149.3145 c +%_524.479 145.0566 526.7407 142.1602 530.1685 142.1602 c +%_533.7739 142.1602 536.106 145.248 536.104 148.7148 c +%_536.104 150.4629 535.6001 152.1934 534.6958 153.7607 c +%_534.6372 153.8633 534.6548 153.9902 534.7407 154.0723 c +%_534.8247 154.1523 534.9556 154.165 535.0532 154.1016 c +%_538.0259 152.1641 540.6802 148.7021 540.6802 143.8281 c +%_540.6802 136.6563 534.5474 130.6602 526.2095 130.6602 c +%_517.2368 130.6602 509.8872 137.709 509.8872 147.8477 c +%_509.8872 151.3262 510.8755 155.5156 513.3501 158.9805 C +%_509.9653 156.1523 508.1587 154.1523 506.6724 149.8271 C +%_496.272 148.0186 485.1665 149.6797 476.3403 155.4727 C +%_476.0864 149.3711 474.0903 144.2793 469.9985 140.1533 c +%_469.9146 140.0684 469.7837 140.0547 469.6841 140.1182 c +%_469.5825 140.1816 469.5415 140.3066 469.5806 140.4189 c +%_472.4575 148.4199 470.5239 160.6152 464.0591 170.3691 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_376.6938 163.7344 m +%_378.938 168.5352 384.1528 171.2188 390.1548 171.3271 c +%_390.2798 171.3311 390.3872 171.2432 390.4087 171.1211 c +%_390.4321 170.998 390.3638 170.8779 390.2485 170.8359 c +%_388.2017 170.082 386.5864 168.7637 385.7271 166.9258 c +%_383.5142 162.1973 387.0942 155.8301 393.7407 152.5566 c +%_393.8188 152.5186 393.8716 152.4434 393.8813 152.3594 c +%_393.8911 152.2725 393.856 152.1885 393.7915 152.1318 c +%_389.5005 148.6143 384.3794 142.0781 384.3794 128.7148 c +%_384.3774 110.0322 396.5337 92.25 412.6548 92.25 c +%_421.8677 92.25 429.2876 98.6465 433.1255 108.2422 C +%_428.9028 102.4844 423.145 98.1348 415.2114 98.1348 c +%_403.5708 98.1348 394.3579 110.5439 394.356 128.459 c +%_394.356 145.3457 406.2583 165.0518 422.1216 165.0508 c +%_430.8247 165.0488 437.3481 158.0117 437.3481 148.9277 c +%_437.3481 140.8672 432.1021 136.2637 426.2173 136.2637 c +%_421.7798 136.2637 418.7231 139.3936 417.772 142.7871 c +%_417.7388 142.9023 417.7915 143.0254 417.897 143.0811 c +%_418.0044 143.1357 418.1333 143.1104 418.2114 143.0186 c +%_418.9634 142.124 420.1079 141.3809 421.8657 141.3809 c +%_424.8091 141.3789 426.3442 143.9082 426.3442 145.7285 c +%_426.3442 149.1836 423.7856 151.6152 419.9458 151.6152 c +%_414.7036 151.6152 410.606 145.8564 410.606 138.4385 c +%_410.606 129.2236 419.436 120.7813 428.2642 120.7813 c +%_437.2856 120.7813 446.9438 128.8408 446.9438 143.8125 c +%_446.9419 158.5234 436.9653 175.4141 421.0981 175.4141 c +%_411.8481 175.4141 403.9849 171.2441 397.9556 164.3398 c +%_397.8755 164.248 397.7427 164.2246 397.6392 164.2852 c +%_397.5317 164.3477 397.4849 164.4727 397.5239 164.5879 c +%_401.9575 177.5234 399.4771 189.7344 392.7036 189.7324 c +%_389.3892 189.7324 387.7017 187.3535 387.7017 184.8154 c +%_387.7017 182.21 389.6001 180.0566 392.6704 179.6611 c +%_392.7915 179.6475 392.8833 179.5479 392.8931 179.4268 c +%_392.8989 179.3047 392.8188 179.1943 392.7017 179.1641 c +%_385.8872 177.4004 378.8774 181.1133 378.8774 188.2061 c +%_378.8774 194.4854 384.2544 199.3398 391.2896 199.3398 c +%_401.9263 199.3379 407.0142 188.0684 404.7485 177.8047 C +%_410.2075 184.8486 418.3013 190.6396 429.9263 190.6396 c +%_453.4692 190.6396 465.3677 163.7715 465.3677 145.7285 c +%_465.3677 129.3525 462.0415 118.8604 455.1313 110.8018 C +%_463.1938 116.9404 466.52 123.7227 468.0552 133.0645 C +%_474.1958 141.5078 490.188 141.5078 v +%_496.8755 141.5078 503.1177 139.0322 507.9614 134.3438 C +%_507.9634 134.3447 507.9653 134.3477 507.9673 134.3486 C +%_508.0024 134.3105 508.0396 134.2695 508.0767 134.2314 C +%_508.397 133.915 508.7114 133.5918 509.02 133.2578 C +%_514.0806 128.4102 524.2114 123.8633 533.4517 127.6602 c +%_533.5571 127.7031 533.6782 127.6699 533.7485 127.582 c +%_533.8188 127.4932 533.8188 127.3672 533.7524 127.2754 c +%_529.3462 121.252 521.729 119.335 516.0747 120.21 C +%_517.1177 116.4941 517.6958 112.3281 517.6958 107.7305 c +%_517.6978 91.3262 508.8989 79.7598 499.2856 74.1289 C +%_502.438 70.3281 501.7954 64.3535 498.2544 60.2949 c +%_498.1743 60.2051 498.0435 60.1816 497.938 60.2402 c +%_497.8345 60.2988 497.7837 60.4238 497.8188 60.5391 c +%_499.5513 66.0703 494.4282 70.6875 487.6392 70.4395 c +%_487.5161 70.4355 487.4067 70.5195 487.3813 70.6406 c +%_487.356 70.7617 487.4185 70.8828 487.5337 70.9277 c +%_497.6685 75.0918 504.3911 83.9102 504.3892 94.9355 c +%_504.3911 106.4492 497.481 115.79 486.3501 115.79 c +%_477.2661 115.79 468.1821 107.4727 468.1821 97.1133 c +%_468.1821 89.0508 472.6587 84.3184 478.4165 84.3164 c +%_483.4067 84.3184 487.3735 87.7715 487.3735 91.8672 c +%_487.3735 97.7188 480.7896 99.8408 477.2778 95.209 c +%_477.2095 95.1172 477.0864 95.084 476.981 95.127 c +%_476.8755 95.1689 476.811 95.2773 476.8228 95.3926 c +%_477.3462 99.7813 480.5767 103.8926 485.5825 103.8926 c +%_490.188 103.8926 494.9224 100.0518 494.9224 91.8652 c +%_494.9224 82.1406 485.5845 72.291 470.231 72.2891 c +%_449.2466 72.2891 437.8599 95.959 448.0942 114.8945 C +%_442.8501 108.8809 438.1157 102.4844 438.1157 91.0977 c +%_438.1138 69.5898 459.3794 55.0488 484.4692 63.5977 c +%_484.5884 63.6367 484.7192 63.584 484.7759 63.4746 c +%_484.8345 63.3633 484.8013 63.2266 484.6997 63.1523 c +%_477.6938 58.043 470.356 50.5137 470.356 37.873 c +%_470.356 24.6934 479.0552 15.3535 492.6196 15.3535 c +%_503.1099 15.3535 509.7642 21.752 509.7642 29.2988 c +%_509.7642 35.0566 506.0454 39.6641 499.6567 39.6641 c +%_490.1431 39.6641 486.9087 29.3203 491.8325 24.6953 c +%_491.9165 24.6152 491.936 24.4902 491.8813 24.3887 c +%_491.8247 24.2871 491.7056 24.2344 491.5942 24.2637 c +%_486.8247 25.5 482.2563 30.332 482.2563 37.6152 c +%_482.2544 50.1563 493.897 58.4727 506.6919 58.4727 c +%_512.688 58.4727 518.4907 56.7188 523.1646 53.4297 C +%_522.6118 49.2773 524.0317 44.6816 526.1313 41.5879 C +%_524.1821 48.457 526.2915 59.7656 536.8032 59.7676 c +%_542.6958 59.7656 546.5903 55.2383 546.5903 49.8867 c +%_546.5903 43.5605 541.2446 40.6094 536.895 41.2148 c +%_536.7798 41.2305 536.6899 41.3223 536.6763 41.4375 c +%_536.6646 41.5527 536.731 41.6602 536.8384 41.7031 c +%_538.4243 42.3105 539.7817 43.9727 539.7817 45.9668 c +%_539.7817 48.4668 537.8696 49.9492 535.8696 49.9492 c +%_532.5767 49.9492 530.7466 46.2793 531.8989 42.2305 C +%_531.8872 42.2285 L +%_532.9595 39.3926 533.561 36.2246 533.561 32.7363 c +%_533.561 15.9746 515.3813 0.001953 492.4399 0 c +%_468.229 0 455.3872 17.2734 455.3892 35.0566 c +%_455.3892 44.5938 458.9692 51.8184 463.5767 56.4258 C +%_443.6548 54.3066 431.0786 62.8223 424.2974 75.1035 C +%_428.7759 78.9414 430.438 84.5723 Y +%_425.0649 77.5352 415.854 71.3945 402.9321 71.3945 c +%_383.356 71.3945 368.0005 90.5859 368.0005 111.1836 c +%_368.0005 124.2568 372.8032 136.9648 382.5649 145.4307 C +%_376.5278 150.459 373.9185 157.8018 376.6938 163.7344 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_U +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_0 0.25 0 0 0 Xy +%_0 0 Xd +%_6 () XW +%_U +%_/ArtDictionary : +%_1 /Bool (AIPattern_Is_Repeated_Art) , +%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , +%_; +%_ +%_9 () XW +%_u +%_*u +%_0 D +%_0 O +%_0.306889 0.577478 0.779446 0.294591 0.576471 0.376471 0.215686 Xa +%_0 1 0 0 0 Xy +%_240.2622 96.3711 m +%_240.3872 96.3711 240.4927 96.4629 240.5103 96.585 c +%_242.8911 112.5996 252.1646 125.9746 264.9028 133.9814 c +%_265.0063 134.0449 265.0493 134.1758 265.0044 134.29 c +%_264.9575 134.4023 264.8384 134.4688 264.7173 134.4443 c +%_254.2466 132.3398 244.9243 126.5811 238.27 118.4141 C +%_233.644 131.7891 223.0337 140.418 209.9692 144.0654 C +%_214.7778 149.6582 212.2622 157.5986 204.8501 158.9023 c +%_204.7368 158.9229 204.6245 158.8643 204.5757 158.7607 c +%_204.5278 158.6563 204.5542 158.5322 204.6421 158.46 c +%_208.6157 155.1143 207.1616 147.04 195.3052 147.04 c +%_187.5103 147.04 182.4849 150.2188 182.4849 154.5254 c +%_182.4849 157.9102 185.5464 159.7559 188.1255 159.7559 c +%_192.5415 159.7559 195.0649 155.7949 193.1675 152.2129 c +%_193.1128 152.1104 193.1353 151.9814 193.2231 151.9033 c +%_193.311 151.8271 193.4399 151.8184 193.5366 151.8857 c +%_195.7856 153.4492 197.356 155.5059 197.356 158.6768 c +%_197.356 164.0635 192.3306 169.8066 184.0239 169.8066 c +%_175.1021 169.8066 167.0005 162.9355 167.0005 154.5254 c +%_167.0005 142.71 177.0493 137.0918 187.6138 136.0918 C +%_183.2485 134.4189 179.98 129.5664 v +%_179.9146 129.4697 179.9243 129.3418 180.0015 129.2559 c +%_180.0796 129.1689 180.2056 129.1475 180.3091 129.2012 c +%_186.1392 132.2822 +endstream endobj 108 0 obj <>stream +192.7954 133.9453 199.811 133.9453 c +%_219.4321 133.9453 236.3579 117.541 240.0103 96.5801 c +%_240.0317 96.4561 240.1382 96.3691 240.2622 96.3711 c +%_f +%_1 D +%_316.9399 148.7773 m +%_321.5493 156.4551 323.1919 169.627 318.897 179.46 c +%_318.8481 179.5703 318.8833 179.6992 318.9829 179.7686 c +%_319.0806 179.8379 319.2153 179.8281 319.3032 179.7461 c +%_324.1099 175.1914 328.2427 164.5684 326.0083 152.2871 C +%_329.106 149.8936 331.0532 147.5176 332.522 144.335 c +%_332.5688 144.2314 332.5415 144.1104 332.4556 144.0352 c +%_332.3696 143.9629 332.2446 143.9551 332.1489 144.0186 c +%_327.1528 147.3809 322.686 148.5283 316.9399 148.7773 C +%_f +%_306.3306 28.9707 m +%_306.4009 28.8672 306.3833 28.7266 306.2915 28.6426 c +%_306.1978 28.5586 306.0571 28.5547 305.9595 28.6348 c +%_299.145 34.1621 290.0845 37.6895 278.9243 37.6895 c +%_251.3521 37.6895 233.9517 21.1719 231.2163 3.76367 c +%_231.1987 3.65234 231.1099 3.56641 230.9985 3.55078 c +%_230.8862 3.53711 230.7778 3.59766 230.7329 3.70117 c +%_228.0073 9.95898 226.3657 19.0352 234.7817 31.209 c +%_239.8159 38.4941 245.9106 43.5098 245.9106 50.0273 c +%_245.9106 54.2852 243.6509 57.1797 240.2231 57.1797 c +%_236.6177 57.1797 234.2866 54.0918 234.2866 50.625 c +%_234.2866 48.877 234.7915 47.1465 235.6958 45.5801 c +%_235.7544 45.4766 235.7358 45.3496 235.6509 45.2676 c +%_235.5649 45.1875 235.436 45.1758 235.3384 45.2402 c +%_232.3657 47.1777 229.7114 50.6367 229.7114 55.5117 c +%_229.7114 62.6836 235.8442 68.6816 244.1802 68.6816 c +%_253.1548 68.6816 260.5044 61.6328 260.5044 51.4922 c +%_260.5044 48.0156 259.5142 43.8242 257.0415 40.3613 C +%_260.4263 43.1875 262.2329 45.1875 263.7192 49.5117 C +%_274.1196 51.3223 285.2251 49.6602 294.0493 43.8691 C +%_294.3052 49.9707 296.3013 55.0605 300.3931 59.1875 c +%_300.4771 59.2715 300.6079 59.2852 300.7075 59.2227 c +%_300.8091 59.1582 300.8521 59.0332 300.811 58.9219 c +%_297.9341 50.9199 299.8657 38.7246 306.3306 28.9707 c +%_f +%_393.6978 35.6055 m +%_391.4517 30.8066 386.2388 28.1211 380.2368 28.0117 c +%_380.1118 28.0098 380.0044 28.0977 379.9829 28.2188 c +%_379.9595 28.3418 380.0278 28.4609 380.1431 28.5039 c +%_382.1899 29.2578 383.8052 30.5762 384.6646 32.4141 c +%_386.8774 37.1426 383.2974 43.5098 376.6509 46.7832 c +%_376.5728 46.8223 376.52 46.8965 376.5103 46.9824 c +%_376.5005 47.0684 376.5337 47.1523 376.6001 47.207 c +%_380.8911 50.7266 386.0122 57.2617 386.0122 70.627 c +%_386.0122 89.3086 373.8579 107.0898 357.7368 107.0898 c +%_348.5239 107.0898 341.104 100.6934 337.2661 91.0977 C +%_341.4868 96.8564 347.2446 101.2051 355.1782 101.2051 c +%_366.8208 101.2051 376.0337 88.7969 376.0337 70.8828 c +%_376.0337 53.9941 364.1333 34.2891 348.2681 34.2891 c +%_339.5669 34.2891 333.0435 41.3281 333.0435 50.4121 c +%_333.0435 58.4746 338.2896 63.0781 344.1763 63.0781 c +%_348.6099 63.0781 351.6685 59.9473 352.6196 56.5527 c +%_352.6509 56.4375 352.6001 56.3164 352.4927 56.2598 c +%_352.3872 56.2051 352.2583 56.2305 352.1802 56.3223 c +%_351.4282 57.2168 350.2837 57.9609 348.5259 57.9609 c +%_345.5825 57.9609 344.0474 55.4316 344.0474 53.6113 c +%_344.0474 50.1563 346.606 47.7246 350.4458 47.7246 c +%_355.6899 47.7246 359.7856 53.4824 359.7856 60.9023 c +%_359.7856 70.1152 350.9556 78.5586 342.1274 78.5586 c +%_333.106 78.5586 323.4478 70.5 323.4478 55.5293 c +%_323.4478 40.8164 333.4282 23.9258 349.2935 23.9258 c +%_358.5435 23.9258 366.4048 28.0957 372.436 35.002 c +%_372.5161 35.0918 372.6489 35.1152 372.7544 35.0547 c +%_372.8599 34.9941 372.9067 34.8672 372.8677 34.752 c +%_368.4341 21.8164 370.9126 9.60742 377.688 9.60742 c +%_381.0024 9.60742 382.6899 11.9863 382.6899 14.5234 c +%_382.6899 17.1309 380.7915 19.2852 377.7212 19.6777 c +%_377.6001 19.6934 377.5063 19.793 377.4985 19.9141 c +%_377.4927 20.0352 377.5708 20.1465 377.6899 20.1758 c +%_384.5044 21.9395 391.5142 18.2285 391.5142 11.1328 c +%_391.5142 4.85547 386.1372 0.001953 379.1021 0.001953 c +%_368.4653 0.001953 363.3774 11.2715 365.6431 21.5371 C +%_360.1841 14.4922 352.0903 8.70117 340.4653 8.70117 c +%_316.9224 8.70117 305.0239 35.5703 305.0239 53.6113 c +%_305.0239 69.9883 308.3501 80.4785 315.2603 88.5391 C +%_307.1978 82.3984 303.8716 75.6172 302.3384 66.2773 C +%_296.1958 57.832 280.2036 57.832 v +%_273.5161 57.832 267.2739 60.3086 262.4302 64.998 C +%_262.4282 64.9961 262.4263 64.9941 262.4243 64.9902 C +%_262.3892 65.0313 262.3501 65.0703 262.3149 65.1094 C +%_261.9946 65.4238 261.6802 65.748 261.3716 66.082 C +%_256.3091 70.9316 246.1802 75.4785 236.9399 71.6797 c +%_236.8345 71.6367 236.7134 71.6699 236.6431 71.7578 c +%_236.5728 71.8477 236.5708 71.9727 236.6382 72.0645 c +%_241.0454 78.0898 248.6626 80.0059 254.3169 79.1309 C +%_253.272 82.8457 252.6938 87.0117 252.6938 91.6094 c +%_252.6938 108.0137 261.4927 119.5801 271.106 125.2109 C +%_267.9517 129.0137 268.5962 134.9883 272.1372 139.0449 c +%_272.2173 139.1357 272.3481 139.1582 272.4536 139.0996 c +%_272.5571 139.041 272.606 138.918 272.5708 138.8018 c +%_270.8403 133.2695 275.9634 128.6523 282.7524 128.9004 c +%_282.8755 128.9033 282.9829 128.8193 283.0103 128.6992 c +%_283.0356 128.5801 282.9712 128.457 282.8579 128.4111 c +%_272.7212 124.248 266.0005 115.4316 266.0005 104.4033 c +%_266.0005 92.8906 272.9087 83.5488 284.0415 83.5488 c +%_293.1255 83.5488 302.2095 91.8672 302.2095 102.2285 c +%_302.2095 110.2891 297.731 115.0225 291.9731 115.0225 c +%_286.9849 115.0225 283.0181 111.5684 283.0181 107.4736 c +%_283.0181 101.6211 289.6001 99.499 293.1118 104.1309 c +%_293.1821 104.2227 293.3032 104.2559 293.4087 104.2129 c +%_293.5161 104.1699 293.5806 104.0625 293.5669 103.9482 c +%_293.0435 99.5586 289.8149 95.4482 284.8091 95.4482 c +%_280.2036 95.4482 275.4692 99.2861 275.4692 107.4746 c +%_275.4692 117.1982 284.8071 127.0508 300.1606 127.0508 c +%_321.1431 127.0508 332.5317 103.3809 322.2974 84.4453 C +%_327.5415 90.459 332.2759 96.8555 332.2759 108.2432 c +%_332.2759 129.75 311.0122 144.291 285.9224 135.7441 c +%_285.8032 135.7021 285.6724 135.7559 285.6157 135.8672 c +%_285.5571 135.9785 285.5884 136.1143 285.6899 136.1895 c +%_292.6958 141.2979 300.0337 148.8262 300.0337 161.4668 c +%_300.0337 174.6475 291.3345 183.9854 277.772 183.9854 c +%_267.2798 183.9854 260.6274 177.5879 260.6274 170.04 c +%_260.6274 164.2822 264.3462 159.6768 270.7349 159.6768 c +%_280.2466 159.6768 283.481 170.0195 278.5591 174.6445 c +%_278.4751 174.7236 278.4556 174.8516 278.5103 174.9521 c +%_278.5669 175.0547 278.6841 175.1055 278.7974 175.0762 c +%_283.5669 173.8398 288.1353 169.0068 288.1353 161.7236 c +%_288.1353 149.1855 276.4927 140.8682 263.6978 140.8682 c +%_257.7017 140.8682 251.8989 142.623 247.2271 145.9102 C +%_247.7778 150.0635 246.3579 154.6602 244.2603 157.752 C +%_246.2095 150.8848 244.1021 139.5732 233.5864 139.5732 c +%_227.6958 139.5732 223.8013 144.1025 223.8013 149.4551 c +%_223.8013 155.7793 229.147 158.7314 233.4966 158.125 c +%_233.6118 158.1104 233.7007 158.0186 233.7134 157.9023 c +%_233.7271 157.7891 233.6606 157.6797 233.5532 157.6367 c +%_231.9673 157.0293 230.6108 155.3691 230.6108 153.373 c +%_230.6108 150.873 232.52 149.3906 234.52 149.3906 c +%_237.8149 149.3906 239.645 153.0605 238.4927 157.1104 C +%_238.5044 157.1104 L +%_237.4312 159.9473 236.8286 163.1152 236.8286 166.6055 c +%_236.8286 183.3672 255.0103 199.3398 277.9497 199.3398 c +%_302.1626 199.3398 315.0044 182.0664 315.0044 164.2822 c +%_315.0044 154.7461 311.4224 147.5225 306.8149 142.915 C +%_326.7368 145.0332 339.313 136.5176 346.0942 124.2354 C +%_341.6157 120.3975 339.9536 114.7676 Y +%_345.3267 121.8057 354.5376 127.9453 367.4595 127.9453 c +%_387.0356 127.9453 402.3911 108.7539 402.3911 88.1563 c +%_402.3911 75.084 397.5884 62.375 387.8267 53.9102 C +%_393.8638 48.8809 396.4731 41.5391 393.6978 35.6055 c +%_f +%_*U +%_*u +%_0 D +%_1 0.2 0 0 0 Xy +%_315.2114 160.9053 m +%_315.1782 160.7852 315.2388 160.6582 315.3521 160.6094 c +%_330.1763 154.0957 340.6372 141.6289 345.0063 127.2324 c +%_345.0415 127.1152 345.1548 127.0391 345.2778 127.0527 c +%_345.3989 127.0664 345.4946 127.166 345.5024 127.2871 c +%_346.229 137.9434 343.1274 148.4531 337.0005 157.0234 C +%_351.1216 157.9648 362.2407 165.9297 369.1997 177.5723 C +%_373.3286 171.46 381.6509 171.7969 384.8599 178.6035 c +%_384.9106 178.708 384.8833 178.832 384.7954 178.9063 c +%_384.7075 178.9805 384.5806 178.9873 384.4868 178.9219 c +%_380.2134 175.9688 372.8071 179.498 375.9282 190.9355 c +%_377.981 198.4561 382.3716 202.4668 386.5259 201.333 c +%_389.7915 200.4414 390.7661 197.002 390.0864 194.5146 c +%_388.9243 190.2539 384.438 188.8623 381.481 191.6357 c +%_381.397 191.7158 381.2681 191.7285 381.1704 191.6641 c +%_381.0728 191.5986 381.0298 191.4775 381.0688 191.3662 c +%_381.9868 188.7852 383.5571 186.7285 386.6157 185.8936 c +%_391.811 184.4756 398.6743 187.8115 400.8618 195.8252 c +%_403.2114 204.4316 398.7153 214.0566 390.604 216.2715 c +%_379.2036 219.3818 371.1392 211.166 367.3931 201.2383 C +%_366.9263 205.8896 363.1079 210.3203 v +%_363.0317 210.4092 362.9048 210.4336 362.8013 210.3818 c +%_362.6978 210.3291 362.6431 210.2129 362.6665 210.0996 c +%_364.106 203.6641 363.9575 196.8047 362.1099 190.0361 c +%_356.9438 171.1074 336.6626 159.0977 315.479 161.0938 c +%_315.354 161.1055 315.2407 161.0254 315.2114 160.9053 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_345.5806 73.1348 m +%_351.7739 66.666 364.0493 61.6133 374.6646 63.168 c +%_374.7856 63.1855 374.9009 63.1172 374.9399 63.0039 c +%_374.981 62.8906 374.936 62.7637 374.8345 62.7012 c +%_369.1743 59.2617 357.8384 58.0723 346.5786 63.4609 C +%_343.4536 61.1035 340.6489 59.8496 337.1919 59.2715 c +%_337.0806 59.2539 336.9692 59.3125 336.9204 59.4141 c +%_336.8735 59.5156 336.8989 59.6387 336.9849 59.7148 c +%_341.5454 63.6484 343.8286 67.6563 345.5806 73.1348 C +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_232.7935 114.9121 m +%_232.6753 114.8711 232.5444 114.9258 232.4878 115.0371 c +%_232.4312 115.1484 232.4644 115.2852 232.5679 115.3594 c +%_239.6938 120.4785 245.4829 128.291 248.4204 139.0566 c +%_255.6802 165.6563 244.3267 186.792 228.2534 194.0146 c +%_228.1499 194.0605 228.0903 194.1689 228.105 194.2803 c +%_228.1216 194.3926 228.2085 194.4814 228.3198 194.4971 c +%_235.0747 195.4785 244.2622 194.6729 253.7915 183.3486 c +%_259.4927 176.5732 262.7271 169.373 269.0142 167.6563 c +%_273.1216 166.5352 276.5103 167.9551 277.4126 171.2617 c +%_278.3618 174.7393 275.9966 177.8018 272.6528 178.7148 c +%_270.9653 179.1738 269.1626 179.1436 267.4146 178.6836 c +%_267.2993 178.6533 267.1821 178.7051 267.1255 178.8086 c +%_267.0708 178.9121 267.0923 179.04 267.1802 179.1172 c +%_269.8325 181.4746 273.8677 183.125 278.5708 181.8408 c +%_285.4907 179.9531 289.6606 172.457 287.4673 164.415 c +%_285.104 155.7578 276.3696 150.5234 266.5864 153.1934 c +%_263.2329 154.1084 259.4497 156.168 256.7603 159.4648 C +%_258.5942 155.4551 260.0493 153.1855 263.8286 150.6133 C +%_262.8364 140.1035 258.3091 129.8271 250.4009 122.8389 C +%_256.2192 120.9863 260.604 117.7207 263.5083 112.6855 c +%_263.5669 112.582 263.5454 112.4531 263.4595 112.373 c +%_263.3696 112.293 263.2388 112.2832 263.1411 112.3535 c +%_256.1802 117.2344 243.9048 118.582 232.7935 114.9121 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_216.1919 28.8809 m +%_212.1538 32.3105 210.936 38.0469 212.4106 43.8672 c +%_212.4419 43.9883 212.5542 44.0684 212.6772 44.0566 c +%_212.8022 44.0469 212.8989 43.9492 212.9097 43.8281 c +%_213.0981 41.6543 213.9448 39.748 215.4917 38.4355 c +%_219.4712 35.0566 226.5562 36.834 231.4634 42.3828 c +%_231.522 42.4492 231.6079 42.4805 231.6929 42.4668 c +%_231.7788 42.4531 231.8511 42.3984 231.8862 42.3203 c +%_234.1519 37.2539 239.1079 30.5938 252.0005 27.0742 c +%_270.0239 22.1563 290.3794 29.1992 294.6235 44.752 c +%_297.0493 53.6406 292.8306 62.4824 284.5845 68.7109 C +%_289.0298 63.123 291.7075 56.4238 289.6177 48.7695 c +%_286.5532 37.5391 272.1567 31.918 254.8755 36.6348 c +%_238.5825 41.0801 222.7065 57.748 226.8833 73.0547 c +%_229.1743 81.4492 237.6821 85.8887 246.4458 83.4961 c +%_254.2231 81.375 257.2837 75.1016 255.7329 69.4219 c +%_254.5669 65.1445 250.7407 63.0195 247.2153 62.9941 c +%_247.0962 62.9941 246.9927 63.0762 246.9653 63.1934 c +%_246.9419 63.3105 246.9985 63.4277 247.1079 63.4785 c +%_248.1704 63.9688 249.188 64.877 249.6509 66.5742 c +%_250.4263 69.4121 248.3911 71.5605 246.6353 72.0391 c +%_243.3022 72.9492 240.2827 71.1211 239.271 67.416 c +%_237.8911 62.3574 242.3667 56.8906 249.5239 54.9355 c +%_258.4126 52.5117 268.8833 58.8066 271.2075 67.3223 c +%_273.5825 76.0254 268.3501 87.4648 253.9087 91.4063 c +%_239.7153 95.2813 220.7925 90.0996 216.6157 74.793 c +%_214.1802 65.8691 216.1333 57.1875 221.2075 49.5508 c +%_221.2739 49.4512 221.2612 49.3164 221.1753 49.2305 c +%_221.0884 49.1445 220.9536 49.1328 220.853 49.2012 c +%_209.5415 56.8828 197.1108 57.707 195.3267 51.1699 c +%_194.4536 47.9727 196.3042 45.7188 198.7524 45.0508 c +%_201.2681 44.3652 203.8462 45.6289 205.0327 48.4883 c +%_205.0796 48.5996 205.2007 48.6641 205.3198 48.6406 c +%_205.438 48.6133 205.5249 48.5098 205.522 48.3867 c +%_205.4292 41.3477 200.0034 35.5625 193.1577 37.4316 c +%_187.1021 39.084 183.8354 45.5488 185.688 52.3359 c +%_188.4888 62.5977 200.6997 64.5391 210.0063 59.6504 C +%_204.647 66.7715 201.1919 76.1035 204.2524 87.3184 c +%_210.4507 110.0313 239.5044 114.4355 256.9087 109.6855 c +%_272.7075 105.373 281.9517 99.4023 287.9087 90.6152 C +%_284.1079 100.0098 278.4419 105.0039 269.8345 108.9434 C +%_263.3052 117.0918 267.5161 132.5195 v +%_269.2759 138.9707 273.3091 144.3418 279.1079 147.7793 C +%_279.1079 147.7813 279.106 147.7842 279.1021 147.7871 C +%_279.1509 147.8105 279.1997 147.8379 279.2466 147.8613 C +%_279.6333 148.0879 280.0298 148.3057 280.4321 148.5146 C +%_286.4438 152.1211 293.4966 160.6973 292.2661 170.6113 c +%_292.2524 170.7236 292.3149 170.832 292.4185 170.877 c +%_292.5239 170.9219 292.645 170.8896 292.7153 170.8018 c +%_297.3677 164.9629 297.2114 157.1104 294.8794 151.8857 C +%_298.7368 151.915 302.9087 151.375 307.3442 150.165 c +%_323.1685 145.8457 332.0122 134.3135 334.9126 123.5566 C +%_339.4106 125.5977 345.0063 123.4043 347.9888 118.9199 c +%_348.0532 118.8184 348.0415 118.6855 347.9575 118.5996 c +%_347.8735 118.5156 347.7407 118.5 347.6392 118.5645 c +%_342.7583 121.6914 336.9556 117.9648 335.4048 111.3496 c +%_335.3774 111.2305 335.2681 111.1484 335.145 111.1543 c +%_335.022 111.1602 334.9204 111.2539 334.9067 111.377 c +%_333.5591 122.251 326.8228 131.0566 316.1841 133.96 c +%_305.0767 136.9922 294.2446 132.7852 291.3149 122.0469 c +%_288.9224 113.2832 294.5571 102.3301 304.5513 99.6016 c +%_312.3286 97.4785 318.0747 100.5527 319.5903 106.1074 c +%_320.9048 110.9199 318.6157 115.6563 314.6665 116.7344 c +%_309.0181 118.2754 305.2388 112.4844 308.7837 107.877 c +%_308.8521 107.7852 308.854 107.6602 308.7837 107.5684 c +%_308.7153 107.4766 308.5923 107.4434 308.4868 107.4863 c +%_304.3892 109.1465 301.2739 113.3418 302.5923 118.1729 c +%_303.8052 122.6152 308.7544 126.1729 316.6548 124.0166 c +%_326.0356 121.457 333.0806 109.8555 329.0376 95.043 c +%_323.5142 74.7988 297.6802 70.0449 282.1079 84.9043 C +%_286.5278 78.2617 291.4517 72.0098 302.438 69.0117 c +%_323.188 63.3496 342.813 80.0332 341.1724 106.4902 c +%_341.1646 106.6152 341.2505 106.7285 341.3735 106.7539 c +%_341.4946 106.7813 341.6196 106.7129 341.6646 106.5977 c +%_344.7466 98.4922 350.0786 89.4316 362.2739 86.1035 c +%_374.9888 82.6328 386.2876 88.5664 389.8599 101.6504 c +%_392.6216 111.7734 388.2017 119.875 380.9204 121.8623 c +%_375.3657 123.3789 369.9419 121.0039 368.2603 114.8398 c +%_365.7563 105.6641 374.8833 99.8203 380.6411 103.3516 c +%_380.7388 103.4121 380.8677 103.3965 380.9497 103.3164 c +%_381.0337 103.2363 381.0513 103.1094 380.9927 103.0078 c +%_378.5454 98.7324 372.6802 95.5977 365.6548 97.5156 c +%_353.5571 100.8164 348.6001 114.2383 351.9673 126.5811 c +%_353.5454 132.3652 356.7681 137.502 361.1685 141.1426 C +%_365.0298 139.5186 369.8384 139.6777 373.3735 140.8867 C +%_366.2349 140.8154 355.8794 145.8262 358.647 155.9707 c +%_360.1978 161.6533 365.5923 164.2188 370.7563 162.8086 c +%_376.8579 161.1436 378.2974 155.21 376.5688 151.1729 c +%_376.522 151.0654 376.4106 151.0039 376.2974 151.0225 c +%_376.1821 151.04 376.0942 151.1318 376.0825 151.2471 c +%_375.9146 152.9375 374.6685 154.6836 372.7446 155.208 c +%_370.3325 155.8662 368.3989 154.415 367.8735 152.4854 c +%_367.0044 149.3066 370.063 146.5752 374.2739 146.6211 C +%_374.27 146.6094 L +%_377.2896 146.8984 380.5044 146.6445 383.8716 145.7266 c +%_400.0415 141.3125 410.6646 119.5674 404.6235 97.4375 c +%_398.2485 74.0781 378.2056 66.2363 361.0474 70.9199 c +%_351.8481 73.4297 345.8228 78.7871 342.5903 84.4453 C +%_339.3892 64.668 327.8618 54.7793 314.229 51.4707 C +%_311.7056 56.8008 306.7114 59.8867 Y +%_312.0864 52.8496 315.5845 42.3477 312.1821 29.8809 c +%_307.0278 10.9961 284.4712 1.23438 264.6001 6.6582 c +%_251.9888 10.0996 240.9927 18.0801 235.397 29.7266 C +%_228.9556 25.2266 221.186 24.6406 216.1919 28.8809 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_u +%_*u +%_0 D +%_0 0 0 0 1 1 1 Xa +%_0 1 0 0 0 Xy +%_363.1294 102.9688 m +%_363.0044 102.9688 362.8989 102.877 362.8794 102.7539 c +%_360.5005 86.7402 351.2271 73.3652 338.4888 65.3594 c +%_338.3853 65.2949 338.3403 65.1641 338.3872 65.0508 c +%_338.4321 64.9375 338.5532 64.8711 338.6724 64.8965 c +%_349.145 67 358.4653 72.7598 365.1216 80.9277 C +%_369.7466 67.5508 380.3579 58.9219 393.4224 55.2734 C +%_388.6138 49.6816 391.1294 41.7402 398.5415 40.4375 c +%_398.6548 40.416 398.7661 40.4746 398.8149 40.5781 c +%_398.8638 40.6816 398.8364 40.8066 398.7485 40.8809 c +%_394.7759 44.2266 396.229 52.3008 408.0864 52.3008 c +%_415.8794 52.3008 420.9067 49.1211 420.9067 44.8145 c +%_420.9067 41.4297 417.8442 39.584 415.2642 39.584 c +%_410.8501 39.584 408.3267 43.5449 410.2231 47.127 c +%_410.2778 47.2305 410.2563 47.3574 410.1685 47.4355 c +%_410.0806 47.5137 409.9517 47.5215 409.854 47.4551 c +%_407.606 45.8906 406.0356 43.834 406.0356 40.6641 c +%_406.0356 35.2773 411.061 29.5352 419.3677 29.5332 c +%_428.2896 29.5332 436.3911 36.4043 436.3911 44.8145 c +%_436.3911 56.6309 426.3423 62.248 415.7778 63.248 C +%_420.1431 64.9219 423.4106 69.7734 v +%_423.4771 69.8691 423.4673 69.998 423.3892 70.084 c +%_423.311 70.1719 423.1841 70.1934 423.0825 70.1387 c +%_417.2524 67.0566 410.5942 65.3945 403.5806 65.3945 c +%_383.9575 65.3945 367.0337 81.7988 363.3813 102.7607 c +%_363.3599 102.8818 363.2524 102.9727 363.1294 102.9688 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_286.4517 50.5625 m +%_281.8442 42.8867 280.1997 29.7129 284.4946 19.8809 c +%_284.5435 19.7695 284.5083 19.6406 284.4087 19.5703 c +%_284.3091 19.502 284.1763 19.5117 284.0884 19.5957 c +%_279.2817 24.1484 275.1489 34.7715 277.3833 47.0527 C +%_274.2876 49.4473 272.3384 51.8223 270.8696 55.0059 c +%_270.8228 55.1074 270.8501 55.2305 270.936 55.3047 c +%_271.022 55.377 271.147 55.3848 271.2427 55.3203 c +%_276.2388 51.959 280.7056 50.8125 286.4517 50.5625 C +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_297.0591 170.3691 m +%_296.9907 170.4727 297.0083 170.6133 297.1001 170.6973 c +%_297.1938 170.7813 297.3345 170.7852 297.4321 170.7061 c +%_304.2466 165.1797 313.3071 161.6504 324.4673 161.6504 c +%_352.0376 161.6504 369.4399 178.1689 372.1743 195.5771 c +%_372.1919 195.6885 372.2817 195.7734 372.3931 195.7891 c +%_372.5044 195.8047 372.6138 195.7422 372.6587 195.6396 c +%_375.3833 189.3818 377.0259 180.3057 368.6099 168.1309 c +%_363.5747 160.8457 357.479 155.8311 357.479 149.3145 c +%_357.479 145.0566 359.7407 142.1602 363.1685 142.1602 c +%_366.7739 142.1602 369.106 145.248 369.104 148.7148 c +%_369.104 150.4629 368.6001 152.1934 367.6958 153.7607 c +%_367.6372 153.8633 367.6548 153.9902 367.7407 154.0723 c +%_367.8247 154.1523 367.9556 154.165 368.0532 154.1016 c +%_371.0259 152.1641 373.6802 148.7021 373.6802 143.8281 c +%_373.6802 136.6563 367.5474 130.6602 359.2095 130.6602 c +%_350.2368 130.6602 342.8872 137.709 342.8872 147.8477 c +%_342.8872 151.3262 343.8755 155.5156 346.3501 158.9805 C +%_342.9653 156.1523 341.1587 154.1523 339.6724 149.8271 C +%_329.272 148.0186 318.1665 149.6797 309.3403 155.4727 C +%_309.0864 149.3711 307.0903 144.2793 302.9985 140.1533 c +%_302.9146 140.0684 302.7837 140.0547 302.6841 140.1182 c +%_302.5825 140.1816 302.5415 140.3066 302.5806 140.4189 c +%_305.4575 148.4199 303.5239 160.6152 297.0591 170.3691 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_209.6938 163.7344 m +%_211.938 168.5352 217.1528 171.2188 223.1548 171.3271 c +%_223.2798 171.3311 223.3872 171.2432 223.4087 171.1211 c +%_223.4321 170.998 223.3638 170.8779 223.2485 170.8359 c +%_221.2017 170.082 219.5864 168.7637 218.7271 166.9258 c +%_216.5142 162.1973 220.0942 155.8301 226.7407 152.5566 c +%_226.8188 152.5186 226.8716 152.4434 226.8813 152.3594 c +%_226.8911 152.2725 226.856 152.1885 226.7915 152.1318 c +%_222.5005 148.6143 217.3794 142.0781 217.3794 128.7148 c +%_217.3774 110.0322 229.5337 92.25 245.6548 92.25 c +%_254.8677 92.25 262.2876 98.6465 266.1255 108.2422 C +%_261.9028 102.4844 256.145 98.1348 248.2114 98.1348 c +%_236.5708 98.1348 227.3579 110.5439 227.356 128.459 c +%_227.356 145.3457 239.2583 165.0518 255.1216 165.0508 c +%_263.8247 165.0488 270.3481 158.0117 270.3481 148.9277 c +%_270.3481 140.8672 265.1021 136.2637 259.2173 136.2637 c +%_254.7798 136.2637 251.7231 139.3936 250.772 142.7871 c +%_250.7388 142.9023 250.7915 143.0254 250.897 143.0811 c +%_251.0044 143.1357 251.1333 143.1104 251.2114 143.0186 c +%_251.9634 142.124 253.1079 141.3809 254.8657 141.3809 c +%_257.8091 141.3789 259.3442 143.9082 259.3442 145.7285 c +%_259.3442 149.1836 256.7856 151.6152 252.9458 151.6152 c +%_247.7036 151.6152 243.606 145.8564 243.606 138.4385 c +%_243.606 129.2236 252.436 120.7813 261.2642 120.7813 c +%_270.2856 120.7813 279.9438 128.8408 279.9438 143.8125 c +%_279.9419 158.5234 269.9653 175.4141 254.0981 175.4141 c +%_244.8481 175.4141 236.9849 171.2441 230.9556 164.3398 c +%_230.8755 164.248 230.7427 164.2246 230.6392 164.2852 c +%_230.5317 164.3477 230.4849 164.4727 230.5239 164.5879 c +%_234.9575 177.5234 232.4771 189.7344 225.7036 189.7324 c +%_222.3892 189.7324 220.7017 187.3535 220.7017 184.8154 c +%_220.7017 182.21 222.6001 180.0566 225.6704 179.6611 c +%_225.7915 179.6475 225.8833 179.5479 225.8931 179.4268 c +%_225.8989 179.3047 225.8188 179.1943 225.7017 179.1641 c +%_218.8872 177.4004 211.8774 181.1133 211.8774 188.2061 c +%_211.8774 194.4854 217.2544 199.3398 224.2896 199.3398 c +%_234.9263 199.3379 240.0142 188.0684 237.7485 177.8047 C +%_243.2075 184.8486 251.3013 190.6396 262.9263 190.6396 c +%_286.4692 190.6396 298.3677 163.7715 298.3677 145.7285 c +%_298.3677 129.3525 295.0415 118.8604 288.1313 110.8018 C +%_296.1938 116.9404 299.52 123.7227 301.0552 133.0645 C +%_307.1958 141.5078 323.188 141.5078 v +%_329.8755 141.5078 336.1177 139.0322 340.9614 134.3438 C +%_340.9634 134.3447 340.9653 134.3477 340.9673 134.3486 C +%_341.0024 134.3105 341.0396 134.2695 341.0767 134.2314 C +%_341.397 133.915 341.7114 133.5918 342.02 133.2578 C +%_347.0806 128.4102 357.2114 123.8633 366.4517 127.6602 c +%_366.5571 127.7031 366.6782 127.6699 366.7485 127.582 c +%_366.8188 127.4932 366.8188 127.3672 366.7524 127.2754 c +%_362.3462 121.252 354.729 119.335 349.0747 120.21 C +%_350.1177 116.4941 350.6958 112.3281 350.6958 107.7305 c +%_350.6978 91.3262 341.8989 79.7598 332.2856 74.1289 C +%_335.438 70.3281 334.7954 64.3535 331.2544 60.2949 c +%_331.1743 60.2051 331.0435 60.1816 330.938 60.2402 c +%_330.8345 60.2988 330.7837 60.4238 330.8188 60.5391 c +%_332.5513 66.0703 327.4282 70.6875 320.6392 70.4395 c +%_320.5161 70.4355 320.4067 70.5195 320.3813 70.6406 c +%_320.356 70.7617 320.4185 70.8828 320.5337 70.9277 c +%_330.6685 75.0918 337.3911 83.9102 337.3892 94.9355 c +%_337.3911 106.4492 330.481 115.79 319.3501 115.79 c +%_310.2661 115.79 301.1821 107.4727 301.1821 97.1133 c +%_301.1821 89.0508 305.6587 84.3184 311.4165 84.3164 c +%_316.4067 84.3184 320.3735 87.7715 320.3735 91.8672 c +%_320.3735 97.7188 313.7896 99.8408 310.2778 95.209 c +%_310.2095 95.1172 310.0864 95.084 309.981 95.127 c +%_309.8755 95.1689 309.811 95.2773 309.8228 95.3926 c +%_310.3462 99.7813 313.5767 103.8926 318.5825 103.8926 c +%_323.188 103.8926 327.9224 100.0518 327.9224 91.8652 c +%_327.9224 82.1406 318.5845 72.291 303.231 72.2891 c +%_282.2466 72.2891 270.8599 95.959 281.0942 114.8945 C +%_275.8501 108.8809 271.1157 102.4844 271.1157 91.0977 c +%_271.1138 69.5898 292.3794 55.0488 317.4692 63.5977 c +%_317.5884 63.6367 317.7192 63.584 317.7759 63.4746 c +%_317.8345 63.3633 317.8013 63.2266 317.6997 63.1523 c +%_310.6938 58.043 303.356 50.5137 303.356 37.873 c +%_303.356 24.6934 312.0552 15.3535 325.6196 15.3535 c +%_336.1099 15.3535 342.7642 21.752 342.7642 29.2988 c +%_342.7642 35.0566 339.0454 39.6641 332.6567 39.6641 c +%_323.1431 39.6641 319.9087 29.3203 324.8325 24.6953 c +%_324.9165 24.6152 324.936 24.4902 324.8813 24.3887 c +%_324.8247 24.2871 324.7056 24.2344 324.5942 24.2637 c +%_319.8247 25.5 315.2563 30.332 315.2563 37.6152 c +%_315.2544 50.1563 326.897 58.4727 339.6919 58.4727 c +%_345.688 58.4727 351.4907 56.7188 356.1646 53.4297 C +%_355.6118 49.2773 357.0317 44.6816 359.1313 41.5879 C +%_357.1821 48.457 359.2915 59.7656 369.8032 59.7676 c +%_375.6958 59.7656 379.5903 55.2383 379.5903 49.8867 c +%_379.5903 43.5605 374.2446 40.6094 369.895 41.2148 c +%_369.7798 41.2305 369.6899 41.3223 369.6763 41.4375 c +%_369.6646 41.5527 369.731 41.6602 369.8384 41.7031 c +%_371.4243 42.3105 372.7817 43.9727 372.7817 45.9668 c +%_372.7817 48.4668 370.8696 49.9492 368.8696 49.9492 c +%_365.5767 49.9492 363.7466 46.2793 364.8989 42.2305 C +%_364.8872 42.2285 L +%_365.9595 39.3926 366.561 36.2246 366.561 32.7363 c +%_366.561 15.9746 348.3813 0.001953 325.4399 0 c +%_301.229 0 288.3872 17.2734 288.3892 35.0566 c +%_288.3892 44.5938 291.9692 51.8184 296.5767 56.4258 C +%_276.6548 54.3066 264.0786 62.8223 257.2974 75.1035 C +%_261.7759 78.9414 263.438 84.5723 Y +%_258.0649 77.5352 248.854 71.3945 235.9321 71.3945 c +%_216.356 71.3945 201.0005 90.5859 201.0005 111.1836 c +%_201.0005 124.2568 205.8032 136.9648 215.5649 145.4307 C +%_209.5278 150.459 206.9185 157.8018 209.6938 163.7344 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_U +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_0 0.25 0 0 0 Xy +%_0 0 Xd +%_6 () XW +%_U +%_/ArtDictionary : +%_1 /Bool (AIPattern_Is_Repeated_Art) , +%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , +%_; +%_ +%_9 () XW +%_u +%_*u +%_0 D +%_0 O +%_0.306889 0.577478 0.779446 0.294591 0.576471 0.376471 0.215686 Xa +%_0 1 0 0 0 Xy +%_73.2617 96.3711 m +%_73.3867 96.3711 73.4922 96.4629 73.5098 96.585 c +%_75.8906 112.5996 85.1641 125.9746 97.9023 133.9814 c +%_98.0059 134.0449 98.0488 134.1758 98.0039 134.29 c +%_97.957 134.4023 97.8379 134.4688 97.7168 134.4443 c +%_87.2461 132.3398 77.9238 126.5811 71.2695 118.4141 C +%_66.6436 131.7891 56.0332 140.418 42.9688 144.0654 C +%_47.7773 149.6582 45.2617 157.5986 37.8496 158.9023 c +%_37.7363 158.9229 37.624 158.8643 37.5752 158.7607 c +%_37.5273 158.6563 37.5537 158.5322 37.6416 158.46 c +%_41.6152 155.1143 40.1611 147.04 28.3047 147.04 c +%_20.5098 147.04 15.4844 150.2188 15.4844 154.5254 c +%_15.4844 157.9102 18.5459 159.7559 21.125 159.7559 c +%_25.541 159.7559 28.0645 155.7949 26.167 152.2129 c +%_26.1123 152.1104 26.1348 151.9814 26.2227 151.9033 c +%_26.3105 151.8271 26.4395 151.8184 26.5361 151.8857 c +%_28.7852 153.4492 30.3555 155.5059 30.3555 158.6768 c +%_30.3555 164.0635 25.3301 169.8066 17.0234 169.8066 c +%_8.10156 169.8066 0 162.9355 0 154.5254 c +%_0 142.71 10.0488 137.0918 20.6133 136.0918 C +%_16.248 134.4189 12.9795 129.5664 v +%_12.9141 129.4697 12.9238 129.3418 13.001 129.2559 c +%_13.0791 129.1689 13.2051 129.1475 13.3086 129.2012 c +%_19.1387 132.2822 25.7949 133.9453 32.8105 133.9453 c +%_52.4316 133.9453 69.3574 117.541 73.0098 96.5801 c +%_73.0313 96.4561 73.1377 96.3691 73.2617 96.3711 c +%_f +%_1 D +%_149.9395 148.7773 m +%_154.5488 156.4551 156.1914 169.627 151.8965 179.46 c +%_151.8477 179.5703 151.8828 179.6992 151.9824 179.7686 c +%_152.0801 179.8379 152.2148 179.8281 152.3027 179.7461 c +%_157.1094 175.1914 161.2422 164.5684 159.0078 152.2871 C +%_162.1055 149.8936 164.0527 147.5176 165.5215 144.335 c +%_165.5684 144.2314 165.541 144.1104 165.4551 144.0352 c +%_165.3691 143.9629 165.2441 143.9551 165.1484 144.0186 c +%_160.1523 147.3809 155.6855 148.5283 149.9395 148.7773 C +%_f +%_139.3301 28.9707 m +%_139.4004 28.8672 139.3828 28.7266 139.291 28.6426 c +%_139.1973 28.5586 139.0566 28.5547 138.959 28.6348 c +%_132.1445 34.1621 123.084 37.6895 111.9238 37.6895 c +%_84.3516 37.6895 66.9512 21.1719 64.2158 3.76367 c +%_64.1982 3.65234 64.1094 3.56641 63.998 3.55078 c +%_63.8857 3.53711 63.7773 3.59766 63.7324 3.70117 c +%_61.0068 9.95898 59.3652 19.0352 67.7813 31.209 c +%_72.8154 38.4941 78.9102 43.5098 78.9102 50.0273 c +%_78.9102 54.2852 76.6504 57.1797 73.2227 57.1797 c +%_69.6172 57.1797 67.2861 54.0918 67.2861 50.625 c +%_67.2861 48.877 67.791 47.1465 68.6953 45.5801 c +%_68.7539 45.4766 68.7354 45.3496 68.6504 45.2676 c +%_68.5645 45.1875 68.4355 45.1758 68.3379 45.2402 c +%_65.3652 47.1777 62.7109 50.6367 62.7109 55.5117 c +%_62.7109 62.6836 68.8438 68.6816 77.1797 68.6816 c +%_86.1543 68.6816 93.5039 61.6328 93.5039 51.4922 c +%_93.5039 48.0156 92.5137 43.8242 90.041 40.3613 C +%_93.4258 43.1875 95.2324 45.1875 96.7188 49.5117 C +%_107.1191 51.3223 118.2246 49.6602 127.0488 43.8691 C +%_127.3047 49.9707 129.3008 55.0605 133.3926 59.1875 c +%_133.4766 59.2715 133.6074 59.2852 133.707 59.2227 c +%_133.8086 59.1582 133.8516 59.0332 133.8105 58.9219 c +%_130.9336 50.9199 132.8652 38.7246 139.3301 28.9707 c +%_f +%_226.6973 35.6055 m +%_224.4512 30.8066 219.2383 28.1211 213.2363 28.0117 c +%_213.1113 28.0098 213.0039 28.0977 212.9824 28.2188 c +%_212.959 28.3418 213.0273 28.4609 213.1426 28.5039 c +%_215.1895 29.2578 216.8047 30.5762 217.6641 32.4141 c +%_219.877 37.1426 216.2969 43.5098 209.6504 46.7832 c +%_209.5723 46.8223 209.5195 46.8965 209.5098 46.9824 c +%_209.5 47.0684 209.5332 47.1523 209.5996 47.207 c +%_213.8906 50.7266 219.0117 57.2617 219.0117 70.627 c +%_219.0117 89.3086 206.8574 107.0898 190.7363 107.0898 c +%_181.5234 107.0898 174.1035 100.6934 170.2656 91.0977 C +%_174.4863 96.8564 180.2441 101.2051 188.1777 101.2051 c +%_199.8203 101.2051 209.0332 88.7969 209.0332 70.8828 c +%_209.0332 53.9941 197.1328 34.2891 181.2676 34.2891 c +%_172.5664 34.2891 166.043 41.3281 166.043 50.4121 c +%_166.043 58.4746 171.2891 63.0781 177.1758 63.0781 c +%_181.6094 63.0781 184.668 59.9473 185.6191 56.5527 c +%_185.6504 56.4375 185.5996 56.3164 185.4922 56.2598 c +%_185.3867 56.2051 185.2578 56.2305 185.1797 56.3223 c +%_184.4277 57.2168 183.2832 57.9609 181.5254 57.9609 c +%_178.582 57.9609 177.0469 55.4316 177.0469 53.6113 c +%_177.0469 50.1563 179.6055 47.7246 183.4453 47.7246 c +%_188.6895 47.7246 192.7852 53.4824 192.7852 60.9023 c +%_192.7852 70.1152 183.9551 78.5586 175.127 78.5586 c +%_166.1055 78.5586 156.4473 70.5 156.4473 55.5293 c +%_156.4473 40.8164 166.4277 23.9258 182.293 23.9258 c +%_191.543 23.9258 199.4043 28.0957 205.4355 35.002 c +%_205.5156 35.0918 205.6484 35.1152 205.7539 35.0547 c +%_205.8594 34.9941 205.9063 34.8672 205.8672 34.752 c +%_201.4336 21.8164 203.9121 9.60742 210.6875 9.60742 c +%_214.002 9.60742 215.6895 11.9863 215.6895 14.5234 c +%_215.6895 17.1309 213.791 19.2852 210.7207 19.6777 c +%_210.5996 19.6934 210.5059 19.793 210.498 19.9141 c +%_210.4922 20.0352 210.5703 20.1465 210.6895 20.1758 c +%_217.5039 21.9395 224.5137 18.2285 224.5137 11.1328 c +%_224.5137 4.85547 219.1367 0.001953 212.1016 0.001953 c +%_201.4648 0.001953 196.377 11.2715 198.6426 21.5371 C +%_193.1836 14.4922 185.0898 8.70117 173.4648 8.70117 c +%_149.9219 8.70117 138.0234 35.5703 138.0234 53.6113 c +%_138.0234 69.9883 141.3496 80.4785 148.2598 88.5391 C +%_140.1973 82.3984 136.8711 75.6172 135.3379 66.2773 C +%_129.1953 57.832 113.2031 57.832 v +%_106.5156 57.832 100.2734 60.3086 95.4297 64.998 C +%_95.4277 64.9961 95.4258 64.9941 95.4238 64.9902 C +%_95.3887 65.0313 95.3496 65.0703 95.3145 65.1094 C +%_94.9941 65.4238 94.6797 65.748 94.3711 66.082 C +%_89.3086 70.9316 79.1797 75.4785 69.9395 71.6797 c +%_69.834 71.6367 69.7129 71.6699 69.6426 71.7578 c +%_69.5723 71.8477 69.5703 71.9727 69.6377 72.0645 c +%_74.0449 78.0898 81.6621 80.0059 87.3164 79.1309 C +%_86.2715 82.8457 85.6934 87.0117 85.6934 91.6094 c +%_85.6934 108.0137 94.4922 119.5801 104.1055 125.2109 C +%_100.9512 129.0137 101.5957 134.9883 105.1367 139.0449 c +%_105.2168 139.1357 105.3477 139.1582 105.4531 139.0996 c +%_105.5566 139.041 105.6055 138.918 105.5703 138.8018 c +%_103.8398 133.2695 108.9629 128.6523 115.752 128.9004 c +%_115.875 128.9033 115.9824 128.8193 116.0098 128.6992 c +%_116.0352 128.5801 115.9707 128.457 115.8574 128.4111 c +%_105.7207 124.248 99 115.4316 99 104.4033 c +%_99 92.8906 105.9082 83.5488 117.041 83.5488 c +%_126.125 83.5488 135.209 91.8672 135.209 102.2285 c +%_135.209 110.2891 130.7305 115.0225 124.9727 115.0225 c +%_119.9844 115.0225 116.0176 111.5684 116.0176 107.4736 c +%_116.0176 101.6211 122.5996 99.499 126.1113 104.1309 c +%_126.1816 104.2227 126.3027 104.2559 126.4082 104.2129 c +%_126.5156 104.1699 126.5801 104.0625 126.5664 103.9482 c +%_126.043 99.5586 122.8145 95.4482 117.8086 95.4482 c +%_113.2031 95.4482 108.4688 99.2861 108.4688 107.4746 c +%_108.4688 117.1982 117.8066 127.0508 133.1602 127.0508 c +%_154.1426 127.0508 165.5313 103.3809 155.2969 84.4453 C +%_160.541 90.459 165.2754 96.8555 165.2754 108.2432 c +%_165.2754 129.75 144.0117 144.291 118.9219 135.7441 c +%_118.8027 135.7021 118.6719 135.7559 118.6152 135.8672 c +%_118.5566 135.9785 118.5879 136.1143 118.6895 136.1895 c +%_125.6953 141.2979 133.0332 148.8262 133.0332 161.4668 c +%_133.0332 174.6475 124.334 183.9854 110.7715 183.9854 c +%_100.2793 183.9854 93.627 177.5879 93.627 170.04 c +%_93.627 164.2822 97.3457 159.6768 103.7344 159.6768 c +%_113.2461 159.6768 116.4805 170.0195 111.5586 174.6445 c +%_111.4746 174.7236 111.4551 174.8516 111.5098 174.9521 c +%_111.5664 175.0547 111.6836 175.1055 111.7969 175.0762 c +%_116.5664 173.8398 121.1348 169.0068 121.1348 161.7236 c +%_121.1348 149.1855 109.4922 140.8682 96.6973 140.8682 c +%_90.7012 140.8682 84.8984 142.623 80.2266 145.9102 C +%_80.7773 150.0635 79.3574 154.6602 77.2598 157.752 C +%_79.209 150.8848 77.1016 139.5732 66.5859 139.5732 c +%_60.6953 139.5732 56.8008 144.1025 56.8008 149.4551 c +%_56.8008 155.7793 62.1465 158.7314 66.4961 158.125 c +%_66.6113 158.1104 66.7002 158.0186 66.7129 157.9023 c +%_66.7266 157.7891 66.6602 157.6797 66.5527 157.6367 c +%_64.9668 157.0293 63.6104 155.3691 63.6104 153.373 c +%_63.6104 150.873 65.5195 149.3906 67.5195 149.3906 c +%_70.8145 149.3906 72.6445 153.0605 71.4922 157.1104 C +%_71.5039 157.1104 L +%_70.4307 159.9473 69.8281 163.1152 69.8281 166.6055 c +%_69.8281 183.3672 88.0098 199.3398 110.9492 199.3398 c +%_135.1621 199.3398 148.0039 182.0664 148.0039 164.2822 c +%_148.0039 154.7461 144.4219 147.5225 139.8145 142.915 C +%_159.7363 145.0332 172.3125 136.5176 179.0938 124.2354 C +%_174.6152 120.3975 172.9531 114.7676 Y +%_178.3262 121.8057 187.5371 127.9453 200.459 127.9453 c +%_220.0352 127.9453 235.3906 108.7539 235.3906 88.1563 c +%_235.3906 75.084 230.5879 62.375 220.8262 53.9102 C +%_226.8633 48.8809 229.4727 41.5391 226.6973 35.6055 c +%_f +%_*U +%_*u +%_0 D +%_1 0.2 0 0 0 Xy +%_148.2109 160.9053 m +%_148.1777 160.7852 148.2383 160.6582 148.3516 160.6094 c +%_163.1758 154.0957 173.6367 141.6289 178.0059 127.2324 c +%_178.041 127.1152 178.1543 127.0391 178.2773 127.0527 c +%_178.3984 127.0664 178.4941 127.166 178.502 127.2871 c +%_179.2285 137.9434 176.127 148.4531 170 157.0234 C +%_184.1211 157.9648 195.2402 165.9297 202.1992 177.5723 C +%_206.3281 171.46 214.6504 171.7969 217.8594 178.6035 c +%_217.9102 178.708 217.8828 178.832 217.7949 178.9063 c +%_217.707 178.9805 217.5801 178.9873 217.4863 178.9219 c +%_213.2129 175.9688 205.8066 179.498 208.9277 190.9355 c +%_210.9805 198.4561 215.3711 202.4668 219.5254 201.333 c +%_222.791 200.4414 223.7656 197.002 223.0859 194.5146 c +%_221.9238 190.2539 217.4375 188.8623 214.4805 191.6357 c +%_214.3965 191.7158 214.2676 191.7285 214.1699 191.6641 c +%_214.0723 191.5986 214.0293 191.4775 214.0684 191.3662 c +%_214.9863 188.7852 216.5566 186.7285 219.6152 185.8936 c +%_224.8105 184.4756 231.6738 187.8115 233.8613 195.8252 c +%_236.2109 204.4316 231.7148 214.0566 223.6035 216.2715 c +%_212.2031 219.3818 204.1387 211.166 200.3926 201.2383 C +%_199.9258 205.8896 196.1074 210.3203 v +%_196.0313 210.4092 195.9043 210.4336 195.8008 210.3818 c +%_195.6973 210.3291 195.6426 210.2129 195.666 210.0996 c +%_197.1055 203.6641 196.957 196.8047 195.1094 190.0361 c +%_189.9434 171.1074 169.6621 159.0977 148.4785 161.0938 c +%_148.3535 161.1055 148.2402 161.0254 148.2109 160.9053 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_178.5801 73.1348 m +%_184.7734 66.666 197.0488 61.6133 207.6641 63.168 c +%_207.7852 63.1855 207.9004 63.1172 207.9395 63.0039 c +%_207.9805 62.8906 207.9355 62.7637 207.834 62.7012 c +%_202.1738 59.2617 190.8379 58.0723 179.5781 63.4609 C +%_176.4531 61.1035 173.6484 59.8496 170.1914 59.2715 c +%_170.0801 59.2539 169.9688 59.3125 169.9199 59.4141 c +%_169.873 59.5156 169.8984 59.6387 169.9844 59.7148 c +%_174.5449 63.6484 176.8281 67.6563 178.5801 73.1348 C +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_65.793 114.9121 m +%_65.6748 114.8711 65.5439 114.9258 65.4873 115.0371 c +%_65.4307 115.1484 65.4639 115.2852 65.5674 115.3594 c +%_72.6934 120.4785 78.4824 128.291 81.4199 139.0566 c +%_88.6797 165.6563 77.3262 186.792 61.2529 194.0146 c +%_61.1494 194.0605 61.0898 194.1689 61.1045 194.2803 c +%_61.1211 194.3926 61.208 194.4814 61.3193 194.4971 c +%_68.0742 195.4785 77.2617 194.6729 86.791 183.3486 c +%_92.4922 176.5732 95.7266 169.373 102.0137 167.6563 c +%_106.1211 166.5352 109.5098 167.9551 110.4121 171.2617 c +%_111.3613 174.7393 108.9961 177.8018 105.6523 178.7148 c +%_103.9648 179.1738 102.1621 179.1436 100.4141 178.6836 c +%_100.2988 178.6533 100.1816 178.7051 100.125 178.8086 c +%_100.0703 178.9121 100.0918 179.04 100.1797 179.1172 c +%_102.832 181.4746 106.8672 183.125 111.5703 181.8408 c +%_118.4902 179.9531 122.6602 172.457 120.4668 164.415 c +%_118.1035 155.7578 109.3691 150.5234 99.5859 153.1934 c +%_96.2324 154.1084 92.4492 156.168 89.7598 159.4648 C +%_91.5938 155.4551 93.0488 153.1855 96.8281 150.6133 C +%_95.8359 140.1035 91.3086 129.8271 83.4004 122.8389 C +%_89.2188 120.9863 93.6035 117.7207 96.5078 112.6855 c +%_96.5664 112.582 96.5449 112.4531 96.459 112.373 c +%_96.3691 112.293 96.2383 112.2832 96.1406 112.3535 c +%_89.1797 117.2344 76.9043 118.582 65.793 114.9121 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_49.1914 28.8809 m +%_45.1533 32.3105 43.9355 38.0469 45.4102 43.8672 c +%_45.4414 43.9883 45.5537 44.0684 45.6768 44.0566 c +%_45.8018 44.0469 45.8984 43.9492 45.9092 43.8281 c +%_46.0977 41.6543 46.9443 39.748 48.4912 38.4355 c +%_52.4707 35.0566 59.5557 36.834 64.4629 42.3828 c +%_64.5215 42.4492 64.6074 42.4805 64.6924 42.4668 c +%_64.7783 42.4531 64.8506 42.3984 64.8857 42.3203 c +%_67.1514 37.2539 72.1074 30.5938 85 27.0742 c +%_103.0234 22.1563 123.3789 29.1992 127.623 44.752 c +%_130.0488 53.6406 125.8301 62.4824 117.584 68.7109 C +%_122.0293 63.123 124.707 56.4238 122.6172 48.7695 c +%_119.5527 37.5391 105.1563 31.918 87.875 36.6348 c +%_71.582 41.0801 55.7061 57.748 59.8828 73.0547 c +%_62.1738 81.4492 70.6816 85.8887 79.4453 83.4961 c +%_87.2227 81.375 90.2832 75.1016 88.7324 69.4219 c +%_87.5664 65.1445 83.7402 63.0195 80.2148 62.9941 c +%_80.0957 62.9941 79.9922 63.0762 79.9648 63.1934 c +%_79.9414 63.3105 79.998 63.4277 80.1074 63.4785 c +%_81.1699 63.9688 82.1875 64.877 82.6504 66.5742 c +%_83.4258 69.4121 81.3906 71.5605 79.6348 72.0391 c +%_76.3018 72.9492 73.2822 71.1211 72.2705 67.416 c +%_70.8906 62.3574 75.3662 56.8906 82.5234 54.9355 c +%_91.4121 52.5117 101.8828 58.8066 104.207 67.3223 c +%_106.582 76.0254 101.3496 87.4648 86.9082 91.4063 c +%_72.7148 95.2813 53.792 90.0996 49.6152 74.793 c +%_47.1797 65.8691 49.1328 57.1875 54.207 49.5508 c +%_54.2734 49.4512 54.2607 49.3164 54.1748 49.2305 c +%_54.0879 49.1445 53.9531 49.1328 53.8525 49.2012 c +%_42.541 56.8828 30.1104 57.707 28.3262 51.1699 c +%_27.4531 47.9727 29.3037 45.7188 31.752 45.0508 c +%_34.2676 44.3652 36.8457 45.6289 38.0322 48.4883 c +%_38.0791 48.5996 38.2002 48.6641 38.3193 48.6406 c +%_38.4375 48.6133 38.5244 48.5098 38.5215 48.3867 c +%_38.4287 41.3477 33.0029 35.5625 26.1572 37.4316 c +%_20.1016 39.084 16.835 45.5488 18.6875 52.3359 c +%_21.4883 62.5977 33.6992 64.5391 43.0059 59.6504 C +%_37.6465 66.7715 34.1914 76.1035 37.252 87.3184 c +%_43.4502 110.0313 72.5039 114.4355 89.9082 109.6855 c +%_105.707 105.373 114.9512 99.4023 120.9082 90.6152 C +%_117.1074 100.0098 111.4414 105.0039 102.834 108.9434 C +%_96.3047 117.0918 100.5156 132.5195 v +%_102.2754 138.9707 106.3086 144.3418 112.1074 147.7793 C +%_112.1074 147.7813 112.1055 147.7842 112.1016 147.7871 C +%_112.1504 147.8105 112.1992 147.8379 112.2461 147.8613 C +%_112.6328 148.0879 113.0293 148.3057 113.4316 148.5146 C +%_119.4434 152.1211 126.4961 160.6973 125.2656 170.6113 c +%_125.252 170.7236 125.3145 170.832 125.418 170.877 c +%_125.5234 170.9219 125.6445 170.8896 125.7148 170.8018 c +%_130.3672 164.9629 130.2109 157.1104 127.8789 151.8857 C +%_131.7363 151.915 135.9082 151.375 140.3438 150.165 c +%_156.168 145.8457 165.0117 134.3135 167.9121 123.5566 C +%_172.4102 125.5977 178.0059 123.4043 180.9883 118.9199 c +%_181.0527 118.8184 181.041 118.6855 180.957 118.5996 c +%_180.873 118.5156 180.7402 118.5 180.6387 118.5645 c +%_175.7578 121.6914 169.9551 117.9648 168.4043 111.3496 c +%_168.377 111.2305 168.2676 111.1484 168.1445 111.1543 c +%_168.0215 111.1602 167.9199 111.2539 167.9063 111.377 c +%_166.5586 122.251 159.8223 131.0566 149.1836 133.96 c +%_138.0762 136.9922 127.2441 132.7852 124.3145 122.0469 c +%_121.9219 113.2832 127.5566 102.3301 137.5508 99.6016 c +%_145.3281 97.4785 151.0742 100.5527 152.5898 106.1074 c +%_153.9043 110.9199 151.6152 115.6563 147.666 116.7344 c +%_142.0176 118.2754 138.2383 112.4844 141.7832 107.877 c +%_141.8516 107.7852 141.8535 107.6602 141.7832 107.5684 c +%_141.7148 107.4766 141.5918 107.4434 141.4863 107.4863 c +%_137.3887 109.1465 134.2734 113.3418 135.5918 118.1729 c +%_136.8047 122.6152 141.7539 126.1729 149.6543 124.0166 c +%_159.0352 121.457 166.0801 109.8555 162.0371 95.043 c +%_156.5137 74.7988 130.6797 70.0449 115.1074 84.9043 C +%_119.5273 78.2617 124.4512 72.0098 135.4375 69.0117 c +%_156.1875 63.3496 175.8125 80.0332 174.1719 106.4902 c +%_174.1641 106.6152 174.25 106.7285 174.373 106.7539 c +%_174.4941 106.7813 174.6191 106.7129 174.6641 106.5977 c +%_177.7461 98.4922 183.0781 89.4316 195.2734 86.1035 c +%_207.9883 82.6328 219.2871 88.5664 222.8594 101.6504 c +%_225.6211 111.7734 221.2012 119.875 213.9199 121.8623 c +%_208.3652 123.3789 202.9414 121.0039 201.2598 114.8398 c +%_198.7559 105.6641 207.8828 99.8203 213.6406 103.3516 c +%_213.7383 103.4121 213.8672 103.3965 213.9492 103.3164 c +%_214.0332 103.2363 214.0508 103.1094 213.9922 103.0078 c +%_211.5449 98.7324 205.6797 95.5977 198.6543 97.5156 c +%_186.5566 100.8164 181.5996 114.2383 184.9668 126.5811 c +%_186.5449 132.3652 189.7676 137.502 194.168 141.1426 C +%_198.0293 139.5186 202.8379 139.6777 206.373 140.8867 C +%_199.2344 140.8154 188.8789 145.8262 191.6465 155.9707 c +%_193.1973 161.6533 198.5918 164.2188 203.7559 162.8086 c +%_209.8574 161.1436 211.2969 155.21 209.5684 151.1729 c +%_209.5215 151.0654 209.4102 151.0039 209.2969 151.0225 c +%_209.1816 151.04 209.0938 151.1318 209.082 151.2471 c +%_208.9141 152.9375 207.668 154.6836 205.7441 155.208 c +%_203.332 155.8662 201.3984 154.415 200.873 152.4854 c +%_200.0039 149.3066 203.0625 146.5752 207.2734 146.6211 C +%_207.2695 146.6094 L +%_210.2891 146.8984 213.5039 146.6445 216.8711 145.7266 c +%_233.041 141.3125 243.6641 119.5674 237.623 97.4375 c +%_231.248 74.0781 211.2051 66.2363 194.0469 70.9199 c +%_184.8477 73.4297 178.8223 78.7871 175.5898 84.4453 C +%_172.3887 64.668 160.8613 54.7793 147.2285 51.4707 C +%_144.7051 56.8008 139.7109 59.8867 Y +%_145.0859 52.8496 148.584 42.3477 145.1816 29.8809 c +%_140.0273 10.9961 117.4707 1.23438 97.5996 6.6582 c +%_84.9883 10.0996 73.9922 18.0801 68.3965 29.7266 C +%_61.9551 25.2266 54.1855 24.6406 49.1914 28.8809 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_u +%_*u +%_0 D +%_0 0 0 0 1 1 1 Xa +%_0 1 0 0 0 Xy +%_196.1289 102.9688 m +%_196.0039 102.9688 195.8984 102.877 195.8789 102.7539 c +%_193.5 86.7402 184.2266 73.3652 171.4883 65.3594 c +%_171.3848 65.2949 171.3398 65.1641 171.3867 65.0508 c +%_171.4316 64.9375 171.5527 64.8711 171.6719 64.8965 c +%_182.1445 67 191.4648 72.7598 198.1211 80.9277 C +%_202.7461 67.5508 213.3574 58.9219 226.4219 55.2734 C +%_221.6133 49.6816 224.1289 41.7402 231.541 40.4375 c +%_231.6543 40.416 231.7656 40.4746 231.8145 40.5781 c +%_231.8633 40.6816 231.8359 40.8066 231.748 40.8809 c +%_227.7754 44.2266 229.2285 52.3008 241.0859 52.3008 c +%_248.8794 52.3008 253.9067 49.1211 253.9067 44.8145 c +%_253.9067 41.4297 250.8442 39.584 248.2642 39.584 c +%_243.8501 39.584 241.3262 43.5449 243.2227 47.127 c +%_243.2773 47.2305 243.2559 47.3574 243.168 47.4355 c +%_243.0801 47.5137 242.9512 47.5215 242.8535 47.4551 c +%_240.6055 45.8906 239.0352 43.834 239.0352 40.6641 c +%_239.0352 35.2773 244.061 29.5352 252.3677 29.5332 c +%_261.2896 29.5332 269.3911 36.4043 269.3911 44.8145 c +%_269.3911 56.6309 259.3423 62.248 248.7778 63.248 C +%_253.1431 64.9219 256.4106 69.7734 v +%_256.4771 69.8691 256.4673 69.998 256.3892 70.084 c +%_256.311 70.1719 256.1841 70.1934 256.0825 70.1387 c +%_250.2524 67.0566 243.5938 65.3945 236.5801 65.3945 c +%_216.957 65.3945 200.0332 81.7988 196.3809 102.7607 c +%_196.3594 102.8818 196.252 102.9727 196.1289 102.9688 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_119.4512 50.5625 m +%_114.8438 42.8867 113.1992 29.7129 117.4941 19.8809 c +%_117.543 19.7695 117.5078 19.6406 117.4082 19.5703 c +%_117.3086 19.502 117.1758 19.5117 117.0879 19.5957 c +%_112.2813 24.1484 108.1484 34.7715 110.3828 47.0527 C +%_107.2871 49.4473 105.3379 51.8223 103.8691 55.0059 c +%_103.8223 55.1074 103.8496 55.2305 103.9355 55.3047 c +%_104.0215 55.377 104.1465 55.3848 104.2422 55.3203 c +%_109.2383 51.959 113.7051 50.8125 119.4512 50.5625 C +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_130.0586 170.3691 m +%_129.9902 170.4727 130.0078 170.6133 130.0996 170.6973 c +%_130.1934 170.7813 130.334 170.7852 130.4316 170.7061 c +%_137.2461 165.1797 146.3066 161.6504 157.4668 161.6504 c +%_185.0371 161.6504 202.4395 178.1689 205.1738 195.5771 c +%_205.1914 195.6885 205.2813 195.7734 205.3926 195.7891 c +%_205.5039 195.8047 205.6133 195.7422 205.6582 195.6396 c +%_208.3828 189.3818 210.0254 180.3057 201.6094 168.1309 c +%_196.5742 160.8457 190.4785 155.8311 190.4785 149.3145 c +%_190.4785 145.0566 192.7402 142.1602 196.168 142.1602 c +%_199.7734 142.1602 202.1055 145.248 202.1035 148.7148 c +%_202.1035 150.4629 201.5996 152.1934 200.6953 153.7607 c +%_200.6367 153.8633 200.6543 153.9902 200.7402 154.0723 c +%_200.8242 154.1523 200.9551 154.165 201.0527 154.1016 c +%_204.0254 152.1641 206.6797 148.7021 206.6797 143.8281 c +%_206.6797 136.6563 200.5469 130.6602 192.209 130.6602 c +%_183.2363 130.6602 175.8867 137.709 175.8867 147.8477 c +%_175.8867 151.3262 176.875 155.5156 179.3496 158.9805 C +%_175.9648 156.1523 174.1582 154.1523 172.6719 149.8271 C +%_162.2715 148.0186 151.166 149.6797 142.3398 155.4727 C +%_142.0859 149.3711 140.0898 144.2793 135.998 140.1533 c +%_135.9141 140.0684 135.7832 140.0547 135.6836 140.1182 c +%_135.582 140.1816 135.541 140.3066 135.5801 140.4189 c +%_138.457 148.4199 136.5234 160.6152 130.0586 170.3691 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_42.6934 163.7344 m +%_44.9375 168.5352 50.1523 171.2188 56.1543 171.3271 c +%_56.2793 171.3311 56.3867 171.2432 56.4082 171.1211 c +%_56.4316 170.998 56.3633 170.8779 56.248 170.8359 c +%_54.2012 170.082 52.5859 168.7637 51.7266 166.9258 c +%_49.5137 162.1973 53.0938 155.8301 59.7402 152.5566 c +%_59.8184 152.5186 59.8711 152.4434 59.8809 152.3594 c +%_59.8906 152.2725 59.8555 152.1885 59.791 152.1318 c +%_55.5 148.6143 50.3789 142.0781 50.3789 128.7148 c +%_50.377 110.0322 62.5332 92.25 78.6543 92.25 c +%_87.8672 92.25 95.2871 98.6465 99.125 108.2422 C +%_94.9023 102.4844 89.1445 98.1348 81.2109 98.1348 c +%_69.5703 98.1348 60.3574 110.5439 60.3555 128.459 c +%_60.3555 145.3457 72.2578 165.0518 88.1211 165.0508 c +%_96.8242 165.0488 103.3477 158.0117 103.3477 148.9277 c +%_103.3477 140.8672 98.1016 136.2637 92.2168 136.2637 c +%_87.7793 136.2637 84.7227 139.3936 83.7715 142.7871 c +%_83.7383 142.9023 83.791 143.0254 83.8965 143.0811 c +%_84.0039 143.1357 84.1328 143.1104 84.2109 143.0186 c +%_84.9629 142.124 86.1074 141.3809 87.8652 141.3809 c +%_90.8086 141.3789 92.3438 143.9082 92.3438 145.7285 c +%_92.3438 149.1836 89.7852 151.6152 85.9453 151.6152 c +%_80.7031 151.6152 76.6055 145.8564 76.6055 138.4385 c +%_76.6055 129.2236 85.4355 120.7813 94.2637 120.7813 c +%_103.2852 120.7813 112.9434 128.8408 112.9434 143.8125 c +%_112.9414 158.5234 102.9648 175.4141 87.0977 175.4141 c +%_77.8477 175.4141 69.9844 171.2441 63.9551 164.3398 c +%_63.875 164.248 63.7422 164.2246 63.6387 164.2852 c +%_63.5313 164.3477 63.4844 164.4727 63.5234 164.5879 c +%_67.957 177.5234 65.4766 189.7344 58.7031 189.7324 c +%_55.3887 189.7324 53.7012 187.3535 53.7012 184.8154 c +%_53.7012 182.21 55.5996 180.0566 58.6699 179.6611 c +%_58.791 179.6475 58.8828 179.5479 58.8926 179.4268 c +%_58.8984 179.3047 58.8184 179.1943 58.7012 179.1641 c +%_51.8867 177.4004 44.877 181.1133 44.877 188.2061 c +%_44.877 194.4854 50.2539 199.3398 57.2891 199.3398 c +%_67.9258 199.3379 73.0137 188.0684 70.748 177.8047 C +%_76.207 184.8486 84.3008 190.6396 95.9258 190.6396 c +%_119.4688 190.6396 131.3672 163.7715 131.3672 145.7285 c +%_131.3672 129.3525 128.041 118.8604 121.1309 110.8018 C +%_129.1934 116.9404 132.5195 123.7227 134.0547 133.0645 C +%_140.1953 141.5078 156.1875 141.5078 v +%_162.875 141.5078 169.1172 139.0322 173.9609 134.3438 C +%_173.9629 134.3447 173.9648 134.3477 173.9668 134.3486 C +%_174.002 134.3105 174.0391 134.2695 174.0762 134.2314 C +%_174.3965 133.915 174.7109 133.5918 175.0195 133.2578 C +%_180.0801 128.4102 190.2109 123.8633 199.4512 127.6602 c +%_199.5566 127.7031 199.6777 127.6699 199.748 127.582 c +%_199.8184 127.4932 199.8184 127.3672 199.752 127.2754 c +%_195.3457 121.252 187.7285 119.335 182.0742 120.21 C +%_183.1172 116.4941 183.6953 112.3281 183.6953 107.7305 c +%_183.6973 91.3262 174.8984 79.7598 165.2852 74.1289 C +%_168.4375 70.3281 167.7949 64.3535 164.2539 60.2949 c +%_164.1738 60.2051 164.043 60.1816 163.9375 60.2402 c +%_163.834 60.2988 163.7832 60.4238 163.8184 60.5391 c +%_165.5508 66.0703 160.4277 70.6875 153.6387 70.4395 c +%_153.5156 70.4355 153.4063 70.5195 153.3809 70.6406 c +%_153.3555 70.7617 153.418 70.8828 153.5332 70.9277 c +%_163.668 75.0918 170.3906 83.9102 170.3887 94.9355 c +%_170.3906 106.4492 163.4805 115.79 152.3496 115.79 c +%_143.2656 115.79 134.1816 107.4727 134.1816 97.1133 c +%_134.1816 89.0508 138.6582 84.3184 144.416 84.3164 c +%_149.4063 84.3184 153.373 87.7715 153.373 91.8672 c +%_153.373 97.7188 146.7891 99.8408 143.2773 95.209 c +%_143.209 95.1172 143.0859 95.084 142.9805 95.127 c +%_142.875 95.1689 142.8105 95.2773 142.8223 95.3926 c +%_143.3457 99.7813 146.5762 103.8926 151.582 103.8926 c +%_156.1875 103.8926 160.9219 100.0518 160.9219 91.8652 c +%_160.9219 82.1406 151.584 72.291 136.2305 72.2891 c +%_115.2461 72.2891 103.8594 95.959 114.0938 114.8945 C +%_108.8496 108.8809 104.1152 102.4844 104.1152 91.0977 c +%_104.1133 69.5898 125.3789 55.0488 150.4688 63.5977 c +%_150.5879 63.6367 150.7188 63.584 150.7754 63.4746 c +%_150.834 63.3633 150.8008 63.2266 150.6992 63.1523 c +%_143.6934 58.043 136.3555 50.5137 136.3555 37.873 c +%_136.3555 24.6934 145.0547 15.3535 158.6191 15.3535 c +%_169.1094 15.3535 175.7637 21.752 175.7637 29.2988 c +%_175.7637 35.0566 172.0449 39.6641 165.6563 39.6641 c +%_156.1426 39.6641 152.9082 29.3203 157.832 24.6953 c +%_157.916 24.6152 157.9355 24.4902 157.8809 24.3887 c +%_157.8242 24.2871 157.7051 24.2344 157.5938 24.2637 c +%_152.8242 25.5 148.2559 30.332 148.2559 37.6152 c +%_148.2539 50.1563 159.8965 58.4727 172.6914 58.4727 c +%_178.6875 58.4727 184.4902 56.7188 189.1641 53.4297 C +%_188.6113 49.2773 190.0313 44.6816 192.1309 41.5879 C +%_190.1816 48.457 192.291 59.7656 202.8027 59.7676 c +%_208.6953 59.7656 212.5898 55.2383 212.5898 49.8867 c +%_212.5898 43.5605 207.2441 40.6094 202.8945 41.2148 c +%_202.7793 41.2305 202.6895 41.3223 202.6758 41.4375 c +%_202.6641 41.5527 202.7305 41.6602 202.8379 41.7031 c +%_204.4238 42.3105 205.7813 43.9727 205.7813 45.9668 c +%_205.7813 48.4668 203.8691 49.9492 201.8691 49.9492 c +%_198.5762 49.9492 196.7461 46.2793 197.8984 42.2305 C +%_197.8867 42.2285 L +%_198.959 39.3926 199.5605 36.2246 199.5605 32.7363 c +%_199.5605 15.9746 181.3809 0.001953 158.4395 0 c +%_134.2285 0 121.3867 17.2734 121.3887 35.0566 c +%_121.3887 44.5938 124.9688 51.8184 129.5762 56.4258 C +%_109.6543 54.3066 97.0781 62.8223 90.2969 75.1035 C +%_94.7754 78.9414 96.4375 84.5723 Y +%_91.0645 77.5352 81.8535 71.3945 68.9316 71.3945 c +%_49.3555 71.3945 34 90.5859 34 111.1836 c +%_34 124.2568 38.8027 136.9648 48.5645 145.4307 C +%_42.5273 150.459 39.918 157.8018 42.6934 163.7344 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_U +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_0 0.25 0 0 0 Xy +%_0 0 Xd +%_6 () XW +%_U +%_/ArtDictionary : +%_1 /Bool (AIPattern_Is_Repeated_Art) , +%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , +%_; +%_ +%_9 () XW +%_u +%_*u +%_0 D +%_0 O +%_0.306889 0.577478 0.779446 0.294591 0.576471 0.376471 0.215686 Xa +%_0 1 0 0 0 Xy +%_407.2622 263.3711 m +%_407.3872 263.3711 407.4927 263.4629 407.5103 263.585 c +%_409.8911 279.5996 419.1646 292.9746 431.9028 300.9814 c +%_432.0063 301.0449 432.0493 301.1758 432.0044 301.29 c +%_431.9575 301.4023 431.8384 301.4688 431.7173 301.4443 c +%_421.2466 299.3398 411.9243 293.5811 405.27 285.4141 C +%_400.645 298.7891 390.0337 307.418 376.9692 311.0654 C +%_381.7778 316.6582 379.2622 324.5986 371.8501 325.9023 c +%_371.7368 325.9229 371.6255 325.8643 371.5767 325.7607 c +%_371.5278 325.6563 371.5552 325.5322 371.6431 325.46 c +%_375.6157 322.1143 374.1626 314.04 362.3052 314.04 c +%_354.5103 314.04 349.4849 317.2188 349.4849 321.5254 c +%_349.4849 324.9102 352.5474 326.7559 355.1255 326.7559 c +%_359.5415 326.7559 362.0649 322.7949 360.1685 319.2129 c +%_360.1138 319.1104 360.1353 318.9814 360.2231 318.9033 c +%_360.311 318.8271 360.4399 318.8184 360.5376 318.8857 c +%_362.7856 320.4492 364.356 322.5059 364.356 325.6768 c +%_364.356 331.0635 359.3306 336.8066 351.0239 336.8066 c +%_342.1021 336.8066 334.0005 329.9355 334.0005 321.5254 c +%_334.0005 309.71 344.0493 304.0918 354.6138 303.0918 C +%_350.2485 301.4189 346.981 296.5664 v +%_346.9146 296.4697 346.9243 296.3418 347.0024 296.2559 c +%_347.0806 296.1689 347.2056 296.1475 347.3091 296.2012 c +%_353.1392 299.2822 359.7954 300.9453 366.811 300.9453 c +%_386.4321 300.9453 403.3579 284.541 407.0103 263.5801 c +%_407.0317 263.4561 407.1392 263.3691 407.2622 263.3711 c +%_f +%_1 D +%_483.9399 315.7773 m +%_488.5493 323.4551 490.1919 336.627 485.897 346.46 c +%_485.8481 346.5703 485.8833 346.6992 485.9829 346.7686 c +%_486.0806 346.8379 486.2153 346.8281 486.3032 346.7461 c +%_491.1099 342.1914 495.2427 331.5684 493.0083 319.2871 C +%_496.106 316.8936 498.0532 314.5176 499.522 311.335 c +%_499.5688 311.2314 499.5415 311.1104 499.4556 311.0352 c +%_499.3696 310.9629 499.2446 310.9551 499.1489 311.0186 c +%_494.1528 314.3809 489.686 315.5283 483.9399 315.7773 C +%_f +%_473.3306 195.9707 m +%_473.4009 195.8672 473.3833 195.7266 473.2915 195.6426 c +%_473.1978 195.5586 473.0571 195.5547 472.9595 195.6348 c +%_466.145 201.1621 457.0845 204.6895 445.9243 204.6895 c +%_418.3521 204.6895 400.9517 188.1719 398.2173 170.7637 c +%_398.1997 170.6523 398.1099 170.5664 397.9985 170.5508 c +%_397.8872 170.5371 397.7778 170.5977 397.7329 170.7012 c +%_395.0083 176.959 393.3657 186.0352 401.7817 198.209 c +%_406.8169 205.4941 412.9106 210.5098 412.9106 217.0273 c +%_412.9106 221.2852 410.6509 224.1797 407.2231 224.1797 c +%_403.6177 224.1797 401.2876 221.0918 401.2876 217.625 c +%_401.2876 215.877 401.7915 214.1465 402.6958 212.5801 c +%_402.7544 212.4766 402.7368 212.3496 402.6509 212.2676 c +%_402.5649 212.1875 402.436 212.1758 402.3384 212.2402 c +%_399.3657 214.1777 396.7114 217.6367 396.7114 222.5117 c +%_396.7114 229.6836 402.8442 235.6816 411.1802 235.6816 c +%_420.1548 235.6816 427.5044 228.6328 427.5044 218.4922 c +%_427.5044 215.0156 426.5142 210.8242 424.0415 207.3613 C +%_427.4263 210.1875 429.2329 212.1875 430.7192 216.5117 C +%_441.1196 218.3223 452.2251 216.6602 461.0493 210.8691 C +%_461.3052 216.9707 463.3013 222.0605 467.3931 226.1875 c +%_467.4771 226.2715 467.6079 226.2852 467.7075 226.2227 c +%_467.8091 226.1582 467.8521 226.0332 467.811 225.9219 c +%_464.9341 217.9199 466.8657 205.7246 473.3306 195.9707 c +%_f +%_560.6978 202.6055 m +%_558.4517 197.8066 553.2388 195.1211 547.2368 195.0117 c +%_547.1118 195.0098 547.0044 195.0977 546.9829 195.2188 c +%_546.9595 195.3418 547.0278 195.4609 547.1431 195.5039 c +%_549.1899 196.2578 550.8052 197.5762 551.6646 199.4141 c +%_553.8774 204.1426 550.2974 210.5098 543.6509 213.7832 c +%_543.5728 213.8223 543.52 213.8965 543.5103 213.9824 c +%_543.5005 214.0684 543.5337 214.1523 543.6001 214.207 c +%_547.8911 217.7266 553.0122 224.2617 553.0122 237.627 c +%_553.0122 256.3086 540.8579 274.0898 524.7368 274.0898 c +%_515.5239 274.0898 508.104 267.6934 504.2661 258.0977 C +%_508.4868 263.8564 514.2446 268.2051 522.1782 268.2051 c +%_533.8208 268.2051 543.0337 255.7969 543.0337 237.8828 c +%_543.0337 220.9941 531.1333 201.2891 515.2681 201.2891 c +%_506.5669 201.2891 500.0435 208.3281 500.0435 217.4121 c +%_500.0435 225.4746 505.2896 230.0781 511.1763 230.0781 c +%_515.6099 230.0781 518.6685 226.9473 519.6196 223.5527 c +%_519.6509 223.4375 519.6001 223.3164 519.4927 223.2598 c +%_519.3872 223.2051 519.2583 223.2305 519.1802 223.3223 c +%_518.4282 224.2168 517.2837 224.9609 515.5259 224.9609 c +%_512.5825 224.9609 511.0474 222.4316 511.0474 220.6113 c +%_511.0474 217.1563 513.606 214.7246 517.4458 214.7246 c +%_522.6899 214.7246 526.7856 220.4824 526.7856 227.9023 c +%_526.7856 237.1152 517.9556 245.5586 509.1274 245.5586 c +%_500.106 245.5586 490.4478 237.5 490.4478 222.5293 c +%_490.4478 207.8164 500.4282 190.9258 516.2935 190.9258 c +%_525.5435 190.9258 533.4048 195.0957 539.436 202.002 c +%_539.5161 202.0918 539.6489 202.1152 539.7544 202.0547 c +%_539.8599 201.9941 539.9067 201.8672 539.8677 201.752 c +%_535.4341 188.8164 537.9126 176.6074 544.688 176.6074 c +%_548.0024 176.6074 549.6899 178.9863 549.6899 181.5234 c +%_549.6899 184.1309 547.7915 186.2852 544.7212 186.6777 c +%_544.6001 186.6934 544.5063 186.793 544.4985 186.9141 c +%_544.4927 187.0352 544.5708 187.1465 544.6899 187.1758 c +%_551.5044 188.9395 558.5142 185.2285 558.5142 178.1328 c +%_558.5142 171.8555 553.1372 167.002 546.1021 167.002 c +%_535.4653 167.002 530.3774 178.2715 532.6431 188.5371 C +%_527.1841 181.4922 519.0903 175.7012 507.4653 175.7012 c +%_483.9224 175.7012 472.0239 202.5703 472.0239 220.6113 c +%_472.0239 236.9883 475.3501 247.4785 482.2603 255.5391 C +%_474.1978 249.3984 470.8716 242.6172 469.3384 233.2773 C +%_463.1958 224.832 447.2036 224.832 v +%_440.5161 224.832 434.2739 227.3086 429.4302 231.998 C +%_429.4282 231.9961 429.4263 231.9941 429.4243 231.9902 C +%_429.3892 232.0313 429.3501 232.0703 429.3149 232.1094 C +%_428.9946 232.4238 428.6802 232.748 428.3716 233.082 C +%_423.3091 237.9316 413.1802 242.4785 403.9399 238.6797 c +%_403.8345 238.6367 403.7134 238.6699 403.6431 238.7578 c +%_403.5728 238.8477 403.5708 238.9727 403.6392 239.0645 c +%_408.0454 245.0898 415.6626 247.0059 421.3169 246.1309 C +%_420.272 249.8457 419.6938 254.0117 419.6938 258.6094 c +%_419.6938 275.0137 428.4927 286.5801 438.106 292.2109 C +%_434.9517 296.0137 435.5962 301.9883 439.1372 306.0449 c +%_439.2173 306.1357 439.3481 306.1582 439.4536 306.0996 c +%_439.5571 306.041 439.606 305.918 439.5708 305.8018 c +%_437.8403 300.2695 442.9634 295.6523 449.7524 295.9004 c +%_449.8755 295.9033 449.9829 295.8193 450.0103 295.6992 c +%_450.0356 295.5801 449.9712 295.457 449.8579 295.4111 c +%_439.7212 291.248 433.0005 282.4316 433.0005 271.4033 c +%_433.0005 259.8906 439.9087 250.5488 451.0415 250.5488 c +%_460.1255 250.5488 469.2095 258.8672 469.2095 269.2285 c +%_469.2095 277.2891 464.731 282.0225 458.9731 282.0225 c +%_453.9849 282.0225 450.0181 278.5684 450.0181 274.4736 c +%_450.0181 268.6211 456.6001 266.499 460.1118 271.1309 c +%_460.1821 271.2227 460.3032 271.2559 460.4087 271.2129 c +%_460.5161 271.1699 460.5806 271.0625 460.5669 270.9482 c +%_460.0435 266.5586 456.8149 262.4482 451.8091 262.4482 c +%_447.2036 262.4482 442.4692 266.2861 442.4692 274.4746 c +%_442.4692 284.1982 451.8071 294.0508 467.1606 294.0508 c +%_488.1431 294.0508 499.5317 270.3809 489.2974 251.4453 C +%_494.5415 257.459 499.2759 263.8555 499.2759 275.2432 c +%_499.2759 296.75 478.0122 311.291 452.9224 302.7441 c +%_452.8032 302.7021 452.6724 302.7559 452.6157 302.8672 c +%_452.5571 302.9785 452.5884 303.1143 452.6899 303.1895 c +%_459.6958 308.2979 467.0337 315.8262 467.0337 328.4668 c +%_467.0337 341.6475 458.3345 350.9854 444.772 350.9854 c +%_434.2798 350.9854 427.6274 344.5879 427.6274 337.04 c +%_427.6274 331.2822 431.3462 326.6768 437.7349 326.6768 c +%_447.2466 326.6768 450.481 337.0195 445.5591 341.6445 c +%_445.4751 341.7236 445.4556 341.8516 445.5103 341.9521 c +%_445.5669 342.0547 445.6841 342.1055 445.7974 342.0762 c +%_450.5669 340.8398 455.1353 336.0068 455.1353 328.7236 c +%_455.1353 316.1855 443.4927 307.8682 430.6978 307.8682 c +%_424.7017 307.8682 418.8989 309.623 414.2271 312.9102 C +%_414.7778 317.0635 413.3579 321.6602 411.2603 324.752 C +%_413.2095 317.8848 411.1021 306.5732 400.5864 306.5732 c +%_394.6958 306.5732 390.8013 311.1025 390.8013 316.4551 c +%_390.8013 322.7793 396.147 325.7314 400.4966 325.125 c +%_400.6118 325.1104 400.7017 325.0186 400.7134 324.9023 c +%_400.7271 324.7891 400.6606 324.6797 400.5532 324.6367 c +%_398.9673 324.0293 397.6118 322.3691 397.6118 320.373 c +%_397.6118 317.873 399.52 316.3906 401.52 316.3906 c +%_404.8149 316.3906 406.645 320.0605 405.4927 324.1104 C +%_405.5044 324.1104 L +%_404.4321 326.9473 403.8286 330.1152 403.8286 333.6055 c +%_403.8286 350.3672 422.0103 366.3398 444.9497 366.3398 c +%_469.1626 366.3398 482.0044 349.0664 482.0044 331.2822 c +%_482.0044 321.7461 478.4224 314.5225 473.8149 309.915 C +%_493.7368 312.0332 506.313 303.5176 513.0942 291.2354 C +%_508.6157 287.3975 506.9536 281.7676 Y +%_512.3267 288.8057 521.5376 294.9453 534.4595 294.9453 c +%_554.0356 294.9453 569.3911 275.7539 569.3911 255.1563 c +%_569.3911 242.084 564.5884 229.375 554.8267 220.9102 C +%_560.8638 215.8809 563.4731 208.5391 560.6978 202.6055 c +%_f +%_*U +%_*u +%_0 D +%_1 0.2 0 0 0 Xy +%_482.2114 327.9053 m +%_482.1782 327.7852 482.2388 327.6582 482.3521 327.6094 c +%_497.1763 321.0957 507.6372 308.6289 512.0063 294.2324 c +%_512.0415 294.1152 512.1548 294.0391 512.2778 294.0527 c +%_512.3989 294.0664 512.4946 294.166 512.5024 294.2871 c +%_513.229 304.9434 510.1274 315.4531 504.0005 324.0234 C +%_518.1216 324.9648 529.2407 332.9297 536.1997 344.5723 C +%_540.3286 338.46 548.6509 338.7969 551.8599 345.6035 c +%_551.9106 345.708 551.8833 345.832 551.7954 345.9063 c +%_551.7075 345.9805 551.5806 345.9873 551.4868 345.9219 c +%_547.2134 342.9688 539.8071 346.498 542.9282 357.9355 c +%_544.981 365.4561 549.3716 369.4668 553.5259 368.333 c +%_556.7915 367.4414 557.7661 364.002 557.0864 361.5146 c +%_555.9243 357.2539 551.438 355.8623 548.481 358.6357 c +%_548.397 358.7158 548.2681 358.7285 548.1704 358.6641 c +%_548.0728 358.5986 548.0298 358.4775 548.0688 358.3662 c +%_548.9868 355.7852 550.5571 353.7285 553.6157 352.8936 c +%_558.811 351.4756 565.6743 354.8115 567.8618 362.8252 c +%_570.2114 371.4316 565.7153 381.0566 557.604 383.2715 c +%_546.2036 386.3818 538.1392 378.166 534.3931 368.2383 C +%_533.9263 372.8896 530.1079 377.3203 v +%_530.0317 377.4092 529.9048 377.4336 529.8013 377.3818 c +%_529.6978 377.3291 529.6431 377.2129 529.6665 377.0996 c +%_531.106 370.66 +endstream endobj 109 0 obj <>stream +41 530.9575 363.8047 529.1099 357.0361 c +%_523.9438 338.1074 503.6626 326.0977 482.479 328.0938 c +%_482.354 328.1055 482.2407 328.0254 482.2114 327.9053 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_512.5806 240.1348 m +%_518.7739 233.666 531.0493 228.6133 541.6646 230.168 c +%_541.7856 230.1855 541.9009 230.1172 541.9399 230.0039 c +%_541.981 229.8906 541.936 229.7637 541.8345 229.7012 c +%_536.1743 226.2617 524.8384 225.0723 513.5786 230.4609 C +%_510.4536 228.1035 507.6489 226.8496 504.1919 226.2715 c +%_504.0806 226.2539 503.9692 226.3125 503.9204 226.4141 c +%_503.8735 226.5156 503.8989 226.6387 503.9849 226.7148 c +%_508.5454 230.6484 510.8286 234.6563 512.5806 240.1348 C +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_399.7935 281.9121 m +%_399.6763 281.8711 399.5454 281.9258 399.4888 282.0371 c +%_399.4321 282.1484 399.4653 282.2852 399.5688 282.3594 c +%_406.6938 287.4785 412.4829 295.291 415.4204 306.0566 c +%_422.6802 332.6563 411.3267 353.792 395.2544 361.0146 c +%_395.1509 361.0605 395.0903 361.1689 395.106 361.2803 c +%_395.1216 361.3926 395.2095 361.4814 395.3208 361.4971 c +%_402.0747 362.4785 411.2622 361.6729 420.7915 350.3486 c +%_426.4927 343.5732 429.7271 336.373 436.0142 334.6563 c +%_440.1216 333.5352 443.5103 334.9551 444.4126 338.2617 c +%_445.3618 341.7393 442.9966 344.8018 439.6528 345.7148 c +%_437.9653 346.1738 436.1626 346.1436 434.4146 345.6836 c +%_434.2993 345.6533 434.1821 345.7051 434.1255 345.8086 c +%_434.0708 345.9121 434.0923 346.04 434.1802 346.1172 c +%_436.8325 348.4746 440.8677 350.125 445.5708 348.8408 c +%_452.4907 346.9531 456.6606 339.457 454.4673 331.415 c +%_452.104 322.7578 443.3696 317.5234 433.5864 320.1934 c +%_430.2329 321.1084 426.4497 323.168 423.7603 326.4648 C +%_425.5942 322.4551 427.0493 320.1855 430.8286 317.6133 C +%_429.8364 307.1035 425.3091 296.8271 417.4009 289.8389 C +%_423.2192 287.9863 427.604 284.7207 430.5083 279.6855 c +%_430.5669 279.582 430.5454 279.4531 430.4595 279.373 c +%_430.3696 279.293 430.2388 279.2832 430.1411 279.3535 c +%_423.1802 284.2344 410.9048 285.582 399.7935 281.9121 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_383.1919 195.8809 m +%_379.1548 199.3105 377.936 205.0469 379.4106 210.8672 c +%_379.4419 210.9883 379.5552 211.0684 379.6782 211.0566 c +%_379.8032 211.0469 379.8989 210.9492 379.9106 210.8281 c +%_380.0981 208.6543 380.9458 206.748 382.4927 205.4355 c +%_386.4712 202.0566 393.5571 203.834 398.4634 209.3828 c +%_398.522 209.4492 398.6079 209.4805 398.6938 209.4668 c +%_398.7798 209.4531 398.8521 209.3984 398.8872 209.3203 c +%_401.1528 204.2539 406.1079 197.5938 419.0005 194.0742 c +%_437.0239 189.1563 457.3794 196.1992 461.6235 211.752 c +%_464.0493 220.6406 459.8306 229.4824 451.5845 235.7109 C +%_456.0298 230.123 458.7075 223.4238 456.6177 215.7695 c +%_453.5532 204.5391 439.1567 198.918 421.8755 203.6348 c +%_405.5825 208.0801 389.7075 224.748 393.8833 240.0547 c +%_396.1743 248.4492 404.6821 252.8887 413.4458 250.4961 c +%_421.2231 248.375 424.2837 242.1016 422.7329 236.4219 c +%_421.5669 232.1445 417.7407 230.0195 414.2153 229.9941 c +%_414.0962 229.9941 413.9927 230.0762 413.9653 230.1934 c +%_413.9419 230.3105 413.9985 230.4277 414.1079 230.4785 c +%_415.1704 230.9688 416.188 231.877 416.6509 233.5742 c +%_417.4263 236.4121 415.3911 238.5605 413.6353 239.0391 c +%_410.3032 239.9492 407.2837 238.1211 406.272 234.416 c +%_404.8911 229.3574 409.3677 223.8906 416.5239 221.9355 c +%_425.4126 219.5117 435.8833 225.8066 438.2075 234.3223 c +%_440.5825 243.0254 435.3501 254.4648 420.9087 258.4063 c +%_406.7153 262.2813 387.7935 257.0996 383.6157 241.793 c +%_381.1802 232.8691 383.1333 224.1875 388.2075 216.5508 c +%_388.2739 216.4512 388.2622 216.3164 388.1763 216.2305 c +%_388.0884 216.1445 387.9536 216.1328 387.854 216.2012 c +%_376.5415 223.8828 364.1118 224.707 362.3267 218.1699 c +%_361.4536 214.9727 363.3052 212.7188 365.7524 212.0508 c +%_368.2681 211.3652 370.8462 212.6289 372.0337 215.4883 c +%_372.0806 215.5996 372.2017 215.6641 372.3208 215.6406 c +%_372.438 215.6133 372.5259 215.5098 372.522 215.3867 c +%_372.4302 208.3477 367.0044 202.5625 360.1587 204.4316 c +%_354.1021 206.084 350.8364 212.5488 352.688 219.3359 c +%_355.4888 229.5977 367.6997 231.5391 377.0063 226.6504 C +%_371.647 233.7715 368.1919 243.1035 371.2524 254.3184 c +%_377.4517 277.0313 406.5044 281.4355 423.9087 276.6855 c +%_439.7075 272.373 448.9517 266.4023 454.9087 257.6152 C +%_451.1079 267.0098 445.4419 272.0039 436.8345 275.9434 C +%_430.3052 284.0918 434.5161 299.5195 v +%_436.2759 305.9707 440.3091 311.3418 446.1079 314.7793 C +%_446.1079 314.7813 446.106 314.7842 446.1021 314.7871 C +%_446.1509 314.8105 446.1997 314.8379 446.2466 314.8613 C +%_446.6333 315.0879 447.0298 315.3057 447.4321 315.5146 C +%_453.4438 319.1211 460.4966 327.6973 459.2661 337.6113 c +%_459.2524 337.7236 459.3149 337.832 459.4185 337.877 c +%_459.5239 337.9219 459.645 337.8896 459.7153 337.8018 c +%_464.3677 331.9629 464.2114 324.1104 461.8794 318.8857 C +%_465.7368 318.915 469.9087 318.375 474.3442 317.165 c +%_490.1685 312.8457 499.0122 301.3135 501.9126 290.5566 C +%_506.4106 292.5977 512.0063 290.4043 514.9888 285.9199 c +%_515.0532 285.8184 515.0415 285.6855 514.9575 285.5996 c +%_514.8735 285.5156 514.7407 285.5 514.6392 285.5645 c +%_509.7583 288.6914 503.9556 284.9648 502.4048 278.3496 c +%_502.3774 278.2305 502.2681 278.1484 502.145 278.1543 c +%_502.022 278.1602 501.9204 278.2539 501.9067 278.377 c +%_500.5591 289.251 493.8228 298.0566 483.1841 300.96 c +%_472.0767 303.9922 461.2446 299.7852 458.3149 289.0469 c +%_455.9224 280.2832 461.5571 269.3301 471.5513 266.6016 c +%_479.3286 264.4785 485.0747 267.5527 486.5903 273.1074 c +%_487.9048 277.9199 485.6157 282.6563 481.6665 283.7344 c +%_476.0181 285.2754 472.2388 279.4844 475.7837 274.877 c +%_475.8521 274.7852 475.854 274.6602 475.7837 274.5684 c +%_475.7153 274.4766 475.5923 274.4434 475.4868 274.4863 c +%_471.3892 276.1465 468.2739 280.3418 469.5923 285.1729 c +%_470.8052 289.6152 475.7544 293.1729 483.6548 291.0166 c +%_493.0356 288.457 500.0806 276.8555 496.0376 262.043 c +%_490.5142 241.7988 464.6802 237.0449 449.1079 251.9043 C +%_453.5278 245.2617 458.4517 239.0098 469.438 236.0117 c +%_490.188 230.3496 509.813 247.0332 508.1724 273.4902 c +%_508.1646 273.6152 508.2505 273.7285 508.3735 273.7539 c +%_508.4946 273.7813 508.6196 273.7129 508.6646 273.5977 c +%_511.7466 265.4922 517.0786 256.4316 529.2739 253.1035 c +%_541.9888 249.6328 553.2876 255.5664 556.8599 268.6504 c +%_559.6216 278.7734 555.2017 286.875 547.9204 288.8623 c +%_542.3657 290.3789 536.9419 288.0039 535.2603 281.8398 c +%_532.7563 272.6641 541.8833 266.8203 547.6411 270.3516 c +%_547.7388 270.4121 547.8677 270.3965 547.9497 270.3164 c +%_548.0337 270.2363 548.0513 270.1094 547.9927 270.0078 c +%_545.5454 265.7324 539.6802 262.5977 532.6548 264.5156 c +%_520.5571 267.8164 515.6001 281.2383 518.9673 293.5811 c +%_520.5454 299.3652 523.7681 304.502 528.1685 308.1426 C +%_532.0298 306.5186 536.8384 306.6777 540.3735 307.8867 C +%_533.2349 307.8154 522.8794 312.8262 525.647 322.9707 c +%_527.1978 328.6533 532.5923 331.2188 537.7563 329.8086 c +%_543.8579 328.1436 545.2974 322.21 543.5688 318.1729 c +%_543.522 318.0654 543.4106 318.0039 543.2974 318.0225 c +%_543.1821 318.04 543.0942 318.1318 543.0825 318.2471 c +%_542.9146 319.9375 541.6685 321.6836 539.7446 322.208 c +%_537.3325 322.8662 535.3989 321.415 534.8735 319.4854 c +%_534.0044 316.3066 537.063 313.5752 541.2739 313.6211 C +%_541.27 313.6094 L +%_544.2896 313.8984 547.5044 313.6445 550.8716 312.7266 c +%_567.0415 308.3125 577.6646 286.5674 571.6235 264.4375 c +%_565.2485 241.0781 545.2056 233.2363 528.0474 237.9199 c +%_518.8481 240.4297 512.8228 245.7871 509.5903 251.4453 C +%_506.3892 231.668 494.8618 221.7793 481.229 218.4707 C +%_478.7056 223.8008 473.7114 226.8867 Y +%_479.0864 219.8496 482.5845 209.3477 479.1821 196.8809 c +%_474.0278 177.9961 451.4712 168.2344 431.6001 173.6582 c +%_418.9888 177.0996 407.9927 185.0801 402.397 196.7266 C +%_395.9556 192.2266 388.186 191.6406 383.1919 195.8809 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_u +%_*u +%_0 D +%_0 0 0 0 1 1 1 Xa +%_0 1 0 0 0 Xy +%_530.1294 269.9688 m +%_530.0044 269.9688 529.8989 269.877 529.8794 269.7539 c +%_527.5005 253.7402 518.2271 240.3652 505.4888 232.3594 c +%_505.3853 232.2949 505.3403 232.1641 505.3872 232.0508 c +%_505.4321 231.9375 505.5532 231.8711 505.6724 231.8965 c +%_516.145 234 525.4653 239.7598 532.1216 247.9277 C +%_536.7466 234.5508 547.3579 225.9219 560.4224 222.2734 C +%_555.6138 216.6816 558.1294 208.7402 565.5415 207.4375 c +%_565.6548 207.416 565.7661 207.4746 565.8149 207.5781 c +%_565.8638 207.6816 565.8364 207.8066 565.7485 207.8809 c +%_561.7759 211.2266 563.229 219.3008 575.0864 219.3008 c +%_582.8804 219.3008 587.9077 216.1211 587.9077 211.8145 c +%_587.9077 208.4297 584.8452 206.584 582.2651 206.584 c +%_577.8511 206.584 575.3267 210.5449 577.2231 214.127 c +%_577.2778 214.2305 577.2563 214.3574 577.1685 214.4355 c +%_577.0806 214.5137 576.9517 214.5215 576.854 214.4551 c +%_574.606 212.8906 573.0356 210.834 573.0356 207.6641 c +%_573.0356 202.2773 578.062 196.5352 586.3687 196.5332 c +%_595.2905 196.5332 603.3921 203.4043 603.3921 211.8145 c +%_603.3921 223.6309 593.3433 229.248 582.7788 230.248 C +%_587.144 231.9219 590.4116 236.7734 v +%_590.478 236.8691 590.4683 236.998 590.3901 237.084 c +%_590.312 237.1719 590.1851 237.1934 590.0835 237.1387 c +%_584.2534 234.0566 577.5942 232.3945 570.5806 232.3945 c +%_550.9575 232.3945 534.0337 248.7988 530.3813 269.7607 c +%_530.3599 269.8818 530.2524 269.9727 530.1294 269.9688 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_453.4517 217.5625 m +%_448.8442 209.8867 447.1997 196.7129 451.4946 186.8809 c +%_451.5435 186.7695 451.5083 186.6406 451.4087 186.5703 c +%_451.3091 186.502 451.1763 186.5117 451.0884 186.5957 c +%_446.2817 191.1484 442.1489 201.7715 444.3833 214.0527 C +%_441.2876 216.4473 439.3384 218.8223 437.8696 222.0059 c +%_437.8228 222.1074 437.8501 222.2305 437.936 222.3047 c +%_438.022 222.377 438.147 222.3848 438.2427 222.3203 c +%_443.2388 218.959 447.7056 217.8125 453.4517 217.5625 C +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_464.0591 337.3691 m +%_463.9907 337.4727 464.0083 337.6133 464.1001 337.6973 c +%_464.1938 337.7813 464.3345 337.7852 464.4321 337.7061 c +%_471.2466 332.1797 480.3071 328.6504 491.4673 328.6504 c +%_519.0376 328.6504 536.4399 345.1689 539.1743 362.5771 c +%_539.1919 362.6885 539.2817 362.7734 539.3931 362.7891 c +%_539.5044 362.8047 539.6138 362.7422 539.6587 362.6396 c +%_542.3833 356.3818 544.0259 347.3057 535.6099 335.1309 c +%_530.5747 327.8457 524.479 322.8311 524.479 316.3145 c +%_524.479 312.0566 526.7407 309.1602 530.1685 309.1602 c +%_533.7739 309.1602 536.106 312.248 536.104 315.7148 c +%_536.104 317.4629 535.6001 319.1934 534.6958 320.7607 c +%_534.6372 320.8633 534.6548 320.9902 534.7407 321.0723 c +%_534.8247 321.1523 534.9556 321.165 535.0532 321.1016 c +%_538.0259 319.1641 540.6802 315.7021 540.6802 310.8281 c +%_540.6802 303.6563 534.5474 297.6602 526.2095 297.6602 c +%_517.2368 297.6602 509.8872 304.709 509.8872 314.8477 c +%_509.8872 318.3262 510.8755 322.5156 513.3501 325.9805 C +%_509.9653 323.1523 508.1587 321.1523 506.6724 316.8271 C +%_496.272 315.0186 485.1665 316.6797 476.3403 322.4727 C +%_476.0864 316.3711 474.0903 311.2793 469.9985 307.1533 c +%_469.9146 307.0684 469.7837 307.0547 469.6841 307.1182 c +%_469.5825 307.1816 469.5415 307.3066 469.5806 307.4189 c +%_472.4575 315.4199 470.5239 327.6152 464.0591 337.3691 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_376.6938 330.7344 m +%_378.938 335.5352 384.1528 338.2188 390.1548 338.3271 c +%_390.2798 338.3311 390.3872 338.2432 390.4087 338.1211 c +%_390.4321 337.998 390.3638 337.8779 390.2485 337.8359 c +%_388.2017 337.082 386.5864 335.7637 385.7271 333.9258 c +%_383.5142 329.1973 387.0942 322.8301 393.7407 319.5566 c +%_393.8188 319.5186 393.8716 319.4434 393.8813 319.3594 c +%_393.8911 319.2725 393.856 319.1885 393.7915 319.1318 c +%_389.5005 315.6143 384.3794 309.0781 384.3794 295.7148 c +%_384.3774 277.0322 396.5337 259.25 412.6548 259.25 c +%_421.8677 259.25 429.2876 265.6465 433.1255 275.2422 C +%_428.9028 269.4844 423.145 265.1348 415.2114 265.1348 c +%_403.5708 265.1348 394.3579 277.5439 394.356 295.459 c +%_394.356 312.3457 406.2583 332.0518 422.1216 332.0508 c +%_430.8247 332.0488 437.3481 325.0117 437.3481 315.9277 c +%_437.3481 307.8672 432.1021 303.2637 426.2173 303.2637 c +%_421.7798 303.2637 418.7231 306.3936 417.772 309.7871 c +%_417.7388 309.9023 417.7915 310.0254 417.897 310.0811 c +%_418.0044 310.1357 418.1333 310.1104 418.2114 310.0186 c +%_418.9634 309.124 420.1079 308.3809 421.8657 308.3809 c +%_424.8091 308.3789 426.3442 310.9082 426.3442 312.7285 c +%_426.3442 316.1836 423.7856 318.6152 419.9458 318.6152 c +%_414.7036 318.6152 410.606 312.8564 410.606 305.4385 c +%_410.606 296.2236 419.436 287.7813 428.2642 287.7813 c +%_437.2856 287.7813 446.9438 295.8408 446.9438 310.8125 c +%_446.9419 325.5234 436.9653 342.4141 421.0981 342.4141 c +%_411.8481 342.4141 403.9849 338.2441 397.9556 331.3398 c +%_397.8755 331.248 397.7427 331.2246 397.6392 331.2852 c +%_397.5317 331.3477 397.4849 331.4727 397.5239 331.5879 c +%_401.9575 344.5234 399.4771 356.7344 392.7036 356.7324 c +%_389.3892 356.7324 387.7017 354.3535 387.7017 351.8154 c +%_387.7017 349.21 389.6001 347.0566 392.6704 346.6611 c +%_392.7915 346.6475 392.8833 346.5479 392.8931 346.4268 c +%_392.8989 346.3047 392.8188 346.1943 392.7017 346.1641 c +%_385.8872 344.4004 378.8774 348.1133 378.8774 355.2061 c +%_378.8774 361.4854 384.2544 366.3398 391.2896 366.3398 c +%_401.9263 366.3379 407.0142 355.0684 404.7485 344.8047 C +%_410.2075 351.8486 418.3013 357.6396 429.9263 357.6396 c +%_453.4692 357.6396 465.3677 330.7715 465.3677 312.7285 c +%_465.3677 296.3525 462.0415 285.8604 455.1313 277.8018 C +%_463.1938 283.9404 466.52 290.7227 468.0552 300.0645 C +%_474.1958 308.5078 490.188 308.5078 v +%_496.8755 308.5078 503.1177 306.0322 507.9614 301.3438 C +%_507.9634 301.3447 507.9653 301.3477 507.9673 301.3486 C +%_508.0024 301.3105 508.0396 301.2695 508.0767 301.2314 C +%_508.397 300.915 508.7114 300.5918 509.02 300.2578 C +%_514.0806 295.4102 524.2114 290.8633 533.4517 294.6602 c +%_533.5571 294.7031 533.6782 294.6699 533.7485 294.582 c +%_533.8188 294.4932 533.8188 294.3672 533.7524 294.2754 c +%_529.3462 288.252 521.729 286.335 516.0747 287.21 C +%_517.1177 283.4941 517.6958 279.3281 517.6958 274.7305 c +%_517.6978 258.3262 508.8989 246.7598 499.2856 241.1289 C +%_502.438 237.3281 501.7954 231.3535 498.2544 227.2949 c +%_498.1743 227.2051 498.0435 227.1816 497.938 227.2402 c +%_497.8345 227.2988 497.7837 227.4238 497.8188 227.5391 c +%_499.5513 233.0703 494.4282 237.6875 487.6392 237.4395 c +%_487.5161 237.4355 487.4067 237.5195 487.3813 237.6406 c +%_487.356 237.7617 487.4185 237.8828 487.5337 237.9277 c +%_497.6685 242.0918 504.3911 250.9102 504.3892 261.9355 c +%_504.3911 273.4492 497.481 282.79 486.3501 282.79 c +%_477.2661 282.79 468.1821 274.4727 468.1821 264.1133 c +%_468.1821 256.0508 472.6587 251.3184 478.4165 251.3164 c +%_483.4067 251.3184 487.3735 254.7715 487.3735 258.8672 c +%_487.3735 264.7188 480.7896 266.8408 477.2778 262.209 c +%_477.2095 262.1172 477.0864 262.084 476.981 262.127 c +%_476.8755 262.1689 476.811 262.2773 476.8228 262.3926 c +%_477.3462 266.7813 480.5767 270.8926 485.5825 270.8926 c +%_490.188 270.8926 494.9224 267.0518 494.9224 258.8652 c +%_494.9224 249.1406 485.5845 239.291 470.231 239.2891 c +%_449.2466 239.2891 437.8599 262.959 448.0942 281.8945 C +%_442.8501 275.8809 438.1157 269.4844 438.1157 258.0977 c +%_438.1138 236.5898 459.3794 222.0488 484.4692 230.5977 c +%_484.5884 230.6367 484.7192 230.584 484.7759 230.4746 c +%_484.8345 230.3633 484.8013 230.2266 484.6997 230.1523 c +%_477.6938 225.043 470.356 217.5137 470.356 204.873 c +%_470.356 191.6934 479.0552 182.3535 492.6196 182.3535 c +%_503.1099 182.3535 509.7642 188.752 509.7642 196.2988 c +%_509.7642 202.0566 506.0454 206.6641 499.6567 206.6641 c +%_490.1431 206.6641 486.9087 196.3203 491.8325 191.6953 c +%_491.9165 191.6152 491.936 191.4902 491.8813 191.3887 c +%_491.8247 191.2871 491.7056 191.2344 491.5942 191.2637 c +%_486.8247 192.5 482.2563 197.332 482.2563 204.6152 c +%_482.2544 217.1563 493.897 225.4727 506.6919 225.4727 c +%_512.688 225.4727 518.4907 223.7188 523.1646 220.4297 C +%_522.6118 216.2773 524.0317 211.6816 526.1313 208.5879 C +%_524.1821 215.457 526.2915 226.7656 536.8032 226.7676 c +%_542.6958 226.7656 546.5903 222.2383 546.5903 216.8867 c +%_546.5903 210.5605 541.2446 207.6094 536.895 208.2148 c +%_536.7798 208.2305 536.6899 208.3223 536.6763 208.4375 c +%_536.6646 208.5527 536.731 208.6602 536.8384 208.7031 c +%_538.4243 209.3105 539.7817 210.9727 539.7817 212.9668 c +%_539.7817 215.4668 537.8696 216.9492 535.8696 216.9492 c +%_532.5767 216.9492 530.7466 213.2793 531.8989 209.2305 C +%_531.8872 209.2285 L +%_532.9595 206.3926 533.561 203.2246 533.561 199.7363 c +%_533.561 182.9746 515.3813 167.002 492.4399 167 c +%_468.229 167 455.3872 184.2734 455.3892 202.0566 c +%_455.3892 211.5938 458.9692 218.8184 463.5767 223.4258 C +%_443.6548 221.3066 431.0786 229.8223 424.2974 242.1035 C +%_428.7759 245.9414 430.438 251.5723 Y +%_425.0649 244.5352 415.854 238.3945 402.9321 238.3945 c +%_383.356 238.3945 368.0005 257.5859 368.0005 278.1836 c +%_368.0005 291.2568 372.8032 303.9648 382.5649 312.4307 C +%_376.5278 317.459 373.9185 324.8018 376.6938 330.7344 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_U +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_0 0.25 0 0 0 Xy +%_0 0 Xd +%_6 () XW +%_U +%_/ArtDictionary : +%_1 /Bool (AIPattern_Is_Repeated_Art) , +%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , +%_; +%_ +%_9 () XW +%_u +%_*u +%_0 D +%_0 O +%_0.306889 0.577478 0.779446 0.294591 0.576471 0.376471 0.215686 Xa +%_0 1 0 0 0 Xy +%_240.2622 263.3711 m +%_240.3872 263.3711 240.4927 263.4629 240.5103 263.585 c +%_242.8911 279.5996 252.1646 292.9746 264.9028 300.9814 c +%_265.0063 301.0449 265.0493 301.1758 265.0044 301.29 c +%_264.9575 301.4023 264.8384 301.4688 264.7173 301.4443 c +%_254.2466 299.3398 244.9243 293.5811 238.27 285.4141 C +%_233.644 298.7891 223.0337 307.418 209.9692 311.0654 C +%_214.7778 316.6582 212.2622 324.5986 204.8501 325.9023 c +%_204.7368 325.9229 204.6245 325.8643 204.5757 325.7607 c +%_204.5278 325.6563 204.5542 325.5322 204.6421 325.46 c +%_208.6157 322.1143 207.1616 314.04 195.3052 314.04 c +%_187.5103 314.04 182.4849 317.2188 182.4849 321.5254 c +%_182.4849 324.9102 185.5464 326.7559 188.1255 326.7559 c +%_192.5415 326.7559 195.0649 322.7949 193.1675 319.2129 c +%_193.1128 319.1104 193.1353 318.9814 193.2231 318.9033 c +%_193.311 318.8271 193.4399 318.8184 193.5366 318.8857 c +%_195.7856 320.4492 197.356 322.5059 197.356 325.6768 c +%_197.356 331.0635 192.3306 336.8066 184.0239 336.8066 c +%_175.1021 336.8066 167.0005 329.9355 167.0005 321.5254 c +%_167.0005 309.71 177.0493 304.0918 187.6138 303.0918 C +%_183.2485 301.4189 179.98 296.5664 v +%_179.9146 296.4697 179.9243 296.3418 180.0015 296.2559 c +%_180.0796 296.1689 180.2056 296.1475 180.3091 296.2012 c +%_186.1392 299.2822 192.7954 300.9453 199.811 300.9453 c +%_219.4321 300.9453 236.3579 284.541 240.0103 263.5801 c +%_240.0317 263.4561 240.1382 263.3691 240.2622 263.3711 c +%_f +%_1 D +%_316.9399 315.7773 m +%_321.5493 323.4551 323.1919 336.627 318.897 346.46 c +%_318.8481 346.5703 318.8833 346.6992 318.9829 346.7686 c +%_319.0806 346.8379 319.2153 346.8281 319.3032 346.7461 c +%_324.1099 342.1914 328.2427 331.5684 326.0083 319.2871 C +%_329.106 316.8936 331.0532 314.5176 332.522 311.335 c +%_332.5688 311.2314 332.5415 311.1104 332.4556 311.0352 c +%_332.3696 310.9629 332.2446 310.9551 332.1489 311.0186 c +%_327.1528 314.3809 322.686 315.5283 316.9399 315.7773 C +%_f +%_306.3306 195.9707 m +%_306.4009 195.8672 306.3833 195.7266 306.2915 195.6426 c +%_306.1978 195.5586 306.0571 195.5547 305.9595 195.6348 c +%_299.145 201.1621 290.0845 204.6895 278.9243 204.6895 c +%_251.3521 204.6895 233.9517 188.1719 231.2163 170.7637 c +%_231.1987 170.6523 231.1099 170.5664 230.9985 170.5508 c +%_230.8862 170.5371 230.7778 170.5977 230.7329 170.7012 c +%_228.0073 176.959 226.3657 186.0352 234.7817 198.209 c +%_239.8159 205.4941 245.9106 210.5098 245.9106 217.0273 c +%_245.9106 221.2852 243.6509 224.1797 240.2231 224.1797 c +%_236.6177 224.1797 234.2866 221.0918 234.2866 217.625 c +%_234.2866 215.877 234.7915 214.1465 235.6958 212.5801 c +%_235.7544 212.4766 235.7358 212.3496 235.6509 212.2676 c +%_235.5649 212.1875 235.436 212.1758 235.3384 212.2402 c +%_232.3657 214.1777 229.7114 217.6367 229.7114 222.5117 c +%_229.7114 229.6836 235.8442 235.6816 244.1802 235.6816 c +%_253.1548 235.6816 260.5044 228.6328 260.5044 218.4922 c +%_260.5044 215.0156 259.5142 210.8242 257.0415 207.3613 C +%_260.4263 210.1875 262.2329 212.1875 263.7192 216.5117 C +%_274.1196 218.3223 285.2251 216.6602 294.0493 210.8691 C +%_294.3052 216.9707 296.3013 222.0605 300.3931 226.1875 c +%_300.4771 226.2715 300.6079 226.2852 300.7075 226.2227 c +%_300.8091 226.1582 300.8521 226.0332 300.811 225.9219 c +%_297.9341 217.9199 299.8657 205.7246 306.3306 195.9707 c +%_f +%_393.6978 202.6055 m +%_391.4517 197.8066 386.2388 195.1211 380.2368 195.0117 c +%_380.1118 195.0098 380.0044 195.0977 379.9829 195.2188 c +%_379.9595 195.3418 380.0278 195.4609 380.1431 195.5039 c +%_382.1899 196.2578 383.8052 197.5762 384.6646 199.4141 c +%_386.8774 204.1426 383.2974 210.5098 376.6509 213.7832 c +%_376.5728 213.8223 376.52 213.8965 376.5103 213.9824 c +%_376.5005 214.0684 376.5337 214.1523 376.6001 214.207 c +%_380.8911 217.7266 386.0122 224.2617 386.0122 237.627 c +%_386.0122 256.3086 373.8579 274.0898 357.7368 274.0898 c +%_348.5239 274.0898 341.104 267.6934 337.2661 258.0977 C +%_341.4868 263.8564 347.2446 268.2051 355.1782 268.2051 c +%_366.8208 268.2051 376.0337 255.7969 376.0337 237.8828 c +%_376.0337 220.9941 364.1333 201.2891 348.2681 201.2891 c +%_339.5669 201.2891 333.0435 208.3281 333.0435 217.4121 c +%_333.0435 225.4746 338.2896 230.0781 344.1763 230.0781 c +%_348.6099 230.0781 351.6685 226.9473 352.6196 223.5527 c +%_352.6509 223.4375 352.6001 223.3164 352.4927 223.2598 c +%_352.3872 223.2051 352.2583 223.2305 352.1802 223.3223 c +%_351.4282 224.2168 350.2837 224.9609 348.5259 224.9609 c +%_345.5825 224.9609 344.0474 222.4316 344.0474 220.6113 c +%_344.0474 217.1563 346.606 214.7246 350.4458 214.7246 c +%_355.6899 214.7246 359.7856 220.4824 359.7856 227.9023 c +%_359.7856 237.1152 350.9556 245.5586 342.1274 245.5586 c +%_333.106 245.5586 323.4478 237.5 323.4478 222.5293 c +%_323.4478 207.8164 333.4282 190.9258 349.2935 190.9258 c +%_358.5435 190.9258 366.4048 195.0957 372.436 202.002 c +%_372.5161 202.0918 372.6489 202.1152 372.7544 202.0547 c +%_372.8599 201.9941 372.9067 201.8672 372.8677 201.752 c +%_368.4341 188.8164 370.9126 176.6074 377.688 176.6074 c +%_381.0024 176.6074 382.6899 178.9863 382.6899 181.5234 c +%_382.6899 184.1309 380.7915 186.2852 377.7212 186.6777 c +%_377.6001 186.6934 377.5063 186.793 377.4985 186.9141 c +%_377.4927 187.0352 377.5708 187.1465 377.6899 187.1758 c +%_384.5044 188.9395 391.5142 185.2285 391.5142 178.1328 c +%_391.5142 171.8555 386.1372 167.002 379.1021 167.002 c +%_368.4653 167.002 363.3774 178.2715 365.6431 188.5371 C +%_360.1841 181.4922 352.0903 175.7012 340.4653 175.7012 c +%_316.9224 175.7012 305.0239 202.5703 305.0239 220.6113 c +%_305.0239 236.9883 308.3501 247.4785 315.2603 255.5391 C +%_307.1978 249.3984 303.8716 242.6172 302.3384 233.2773 C +%_296.1958 224.832 280.2036 224.832 v +%_273.5161 224.832 267.2739 227.3086 262.4302 231.998 C +%_262.4282 231.9961 262.4263 231.9941 262.4243 231.9902 C +%_262.3892 232.0313 262.3501 232.0703 262.3149 232.1094 C +%_261.9946 232.4238 261.6802 232.748 261.3716 233.082 C +%_256.3091 237.9316 246.1802 242.4785 236.9399 238.6797 c +%_236.8345 238.6367 236.7134 238.6699 236.6431 238.7578 c +%_236.5728 238.8477 236.5708 238.9727 236.6382 239.0645 c +%_241.0454 245.0898 248.6626 247.0059 254.3169 246.1309 C +%_253.272 249.8457 252.6938 254.0117 252.6938 258.6094 c +%_252.6938 275.0137 261.4927 286.5801 271.106 292.2109 C +%_267.9517 296.0137 268.5962 301.9883 272.1372 306.0449 c +%_272.2173 306.1357 272.3481 306.1582 272.4536 306.0996 c +%_272.5571 306.041 272.606 305.918 272.5708 305.8018 c +%_270.8403 300.2695 275.9634 295.6523 282.7524 295.9004 c +%_282.8755 295.9033 282.9829 295.8193 283.0103 295.6992 c +%_283.0356 295.5801 282.9712 295.457 282.8579 295.4111 c +%_272.7212 291.248 266.0005 282.4316 266.0005 271.4033 c +%_266.0005 259.8906 272.9087 250.5488 284.0415 250.5488 c +%_293.1255 250.5488 302.2095 258.8672 302.2095 269.2285 c +%_302.2095 277.2891 297.731 282.0225 291.9731 282.0225 c +%_286.9849 282.0225 283.0181 278.5684 283.0181 274.4736 c +%_283.0181 268.6211 289.6001 266.499 293.1118 271.1309 c +%_293.1821 271.2227 293.3032 271.2559 293.4087 271.2129 c +%_293.5161 271.1699 293.5806 271.0625 293.5669 270.9482 c +%_293.0435 266.5586 289.8149 262.4482 284.8091 262.4482 c +%_280.2036 262.4482 275.4692 266.2861 275.4692 274.4746 c +%_275.4692 284.1982 284.8071 294.0508 300.1606 294.0508 c +%_321.1431 294.0508 332.5317 270.3809 322.2974 251.4453 C +%_327.5415 257.459 332.2759 263.8555 332.2759 275.2432 c +%_332.2759 296.75 311.0122 311.291 285.9224 302.7441 c +%_285.8032 302.7021 285.6724 302.7559 285.6157 302.8672 c +%_285.5571 302.9785 285.5884 303.1143 285.6899 303.1895 c +%_292.6958 308.2979 300.0337 315.8262 300.0337 328.4668 c +%_300.0337 341.6475 291.3345 350.9854 277.772 350.9854 c +%_267.2798 350.9854 260.6274 344.5879 260.6274 337.04 c +%_260.6274 331.2822 264.3462 326.6768 270.7349 326.6768 c +%_280.2466 326.6768 283.481 337.0195 278.5591 341.6445 c +%_278.4751 341.7236 278.4556 341.8516 278.5103 341.9521 c +%_278.5669 342.0547 278.6841 342.1055 278.7974 342.0762 c +%_283.5669 340.8398 288.1353 336.0068 288.1353 328.7236 c +%_288.1353 316.1855 276.4927 307.8682 263.6978 307.8682 c +%_257.7017 307.8682 251.8989 309.623 247.2271 312.9102 C +%_247.7778 317.0635 246.3579 321.6602 244.2603 324.752 C +%_246.2095 317.8848 244.1021 306.5732 233.5864 306.5732 c +%_227.6958 306.5732 223.8013 311.1025 223.8013 316.4551 c +%_223.8013 322.7793 229.147 325.7314 233.4966 325.125 c +%_233.6118 325.1104 233.7007 325.0186 233.7134 324.9023 c +%_233.7271 324.7891 233.6606 324.6797 233.5532 324.6367 c +%_231.9673 324.0293 230.6108 322.3691 230.6108 320.373 c +%_230.6108 317.873 232.52 316.3906 234.52 316.3906 c +%_237.8149 316.3906 239.645 320.0605 238.4927 324.1104 C +%_238.5044 324.1104 L +%_237.4312 326.9473 236.8286 330.1152 236.8286 333.6055 c +%_236.8286 350.3672 255.0103 366.3398 277.9497 366.3398 c +%_302.1626 366.3398 315.0044 349.0664 315.0044 331.2822 c +%_315.0044 321.7461 311.4224 314.5225 306.8149 309.915 C +%_326.7368 312.0332 339.313 303.5176 346.0942 291.2354 C +%_341.6157 287.3975 339.9536 281.7676 Y +%_345.3267 288.8057 354.5376 294.9453 367.4595 294.9453 c +%_387.0356 294.9453 402.3911 275.7539 402.3911 255.1563 c +%_402.3911 242.084 397.5884 229.375 387.8267 220.9102 C +%_393.8638 215.8809 396.4731 208.5391 393.6978 202.6055 c +%_f +%_*U +%_*u +%_0 D +%_1 0.2 0 0 0 Xy +%_315.2114 327.9053 m +%_315.1782 327.7852 315.2388 327.6582 315.3521 327.6094 c +%_330.1763 321.0957 340.6372 308.6289 345.0063 294.2324 c +%_345.0415 294.1152 345.1548 294.0391 345.2778 294.0527 c +%_345.3989 294.0664 345.4946 294.166 345.5024 294.2871 c +%_346.229 304.9434 343.1274 315.4531 337.0005 324.0234 C +%_351.1216 324.9648 362.2407 332.9297 369.1997 344.5723 C +%_373.3286 338.46 381.6509 338.7969 384.8599 345.6035 c +%_384.9106 345.708 384.8833 345.832 384.7954 345.9063 c +%_384.7075 345.9805 384.5806 345.9873 384.4868 345.9219 c +%_380.2134 342.9688 372.8071 346.498 375.9282 357.9355 c +%_377.981 365.4561 382.3716 369.4668 386.5259 368.333 c +%_389.7915 367.4414 390.7661 364.002 390.0864 361.5146 c +%_388.9243 357.2539 384.438 355.8623 381.481 358.6357 c +%_381.397 358.7158 381.2681 358.7285 381.1704 358.6641 c +%_381.0728 358.5986 381.0298 358.4775 381.0688 358.3662 c +%_381.9868 355.7852 383.5571 353.7285 386.6157 352.8936 c +%_391.811 351.4756 398.6743 354.8115 400.8618 362.8252 c +%_403.2114 371.4316 398.7153 381.0566 390.604 383.2715 c +%_379.2036 386.3818 371.1392 378.166 367.3931 368.2383 C +%_366.9263 372.8896 363.1079 377.3203 v +%_363.0317 377.4092 362.9048 377.4336 362.8013 377.3818 c +%_362.6978 377.3291 362.6431 377.2129 362.6665 377.0996 c +%_364.106 370.6641 363.9575 363.8047 362.1099 357.0361 c +%_356.9438 338.1074 336.6626 326.0977 315.479 328.0938 c +%_315.354 328.1055 315.2407 328.0254 315.2114 327.9053 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_345.5806 240.1348 m +%_351.7739 233.666 364.0493 228.6133 374.6646 230.168 c +%_374.7856 230.1855 374.9009 230.1172 374.9399 230.0039 c +%_374.981 229.8906 374.936 229.7637 374.8345 229.7012 c +%_369.1743 226.2617 357.8384 225.0723 346.5786 230.4609 C +%_343.4536 228.1035 340.6489 226.8496 337.1919 226.2715 c +%_337.0806 226.2539 336.9692 226.3125 336.9204 226.4141 c +%_336.8735 226.5156 336.8989 226.6387 336.9849 226.7148 c +%_341.5454 230.6484 343.8286 234.6563 345.5806 240.1348 C +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_232.7935 281.9121 m +%_232.6753 281.8711 232.5444 281.9258 232.4878 282.0371 c +%_232.4312 282.1484 232.4644 282.2852 232.5679 282.3594 c +%_239.6938 287.4785 245.4829 295.291 248.4204 306.0566 c +%_255.6802 332.6563 244.3267 353.792 228.2534 361.0146 c +%_228.1499 361.0605 228.0903 361.1689 228.105 361.2803 c +%_228.1216 361.3926 228.2085 361.4814 228.3198 361.4971 c +%_235.0747 362.4785 244.2622 361.6729 253.7915 350.3486 c +%_259.4927 343.5732 262.7271 336.373 269.0142 334.6563 c +%_273.1216 333.5352 276.5103 334.9551 277.4126 338.2617 c +%_278.3618 341.7393 275.9966 344.8018 272.6528 345.7148 c +%_270.9653 346.1738 269.1626 346.1436 267.4146 345.6836 c +%_267.2993 345.6533 267.1821 345.7051 267.1255 345.8086 c +%_267.0708 345.9121 267.0923 346.04 267.1802 346.1172 c +%_269.8325 348.4746 273.8677 350.125 278.5708 348.8408 c +%_285.4907 346.9531 289.6606 339.457 287.4673 331.415 c +%_285.104 322.7578 276.3696 317.5234 266.5864 320.1934 c +%_263.2329 321.1084 259.4497 323.168 256.7603 326.4648 C +%_258.5942 322.4551 260.0493 320.1855 263.8286 317.6133 C +%_262.8364 307.1035 258.3091 296.8271 250.4009 289.8389 C +%_256.2192 287.9863 260.604 284.7207 263.5083 279.6855 c +%_263.5669 279.582 263.5454 279.4531 263.4595 279.373 c +%_263.3696 279.293 263.2388 279.2832 263.1411 279.3535 c +%_256.1802 284.2344 243.9048 285.582 232.7935 281.9121 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_216.1919 195.8809 m +%_212.1538 199.3105 210.936 205.0469 212.4106 210.8672 c +%_212.4419 210.9883 212.5542 211.0684 212.6772 211.0566 c +%_212.8022 211.0469 212.8989 210.9492 212.9097 210.8281 c +%_213.0981 208.6543 213.9448 206.748 215.4917 205.4355 c +%_219.4712 202.0566 226.5562 203.834 231.4634 209.3828 c +%_231.522 209.4492 231.6079 209.4805 231.6929 209.4668 c +%_231.7788 209.4531 231.8511 209.3984 231.8862 209.3203 c +%_234.1519 204.2539 239.1079 197.5938 252.0005 194.0742 c +%_270.0239 189.1563 290.3794 196.1992 294.6235 211.752 c +%_297.0493 220.6406 292.8306 229.4824 284.5845 235.7109 C +%_289.0298 230.123 291.7075 223.4238 289.6177 215.7695 c +%_286.5532 204.5391 272.1567 198.918 254.8755 203.6348 c +%_238.5825 208.0801 222.7065 224.748 226.8833 240.0547 c +%_229.1743 248.4492 237.6821 252.8887 246.4458 250.4961 c +%_254.2231 248.375 257.2837 242.1016 255.7329 236.4219 c +%_254.5669 232.1445 250.7407 230.0195 247.2153 229.9941 c +%_247.0962 229.9941 246.9927 230.0762 246.9653 230.1934 c +%_246.9419 230.3105 246.9985 230.4277 247.1079 230.4785 c +%_248.1704 230.9688 249.188 231.877 249.6509 233.5742 c +%_250.4263 236.4121 248.3911 238.5605 246.6353 239.0391 c +%_243.3022 239.9492 240.2827 238.1211 239.271 234.416 c +%_237.8911 229.3574 242.3667 223.8906 249.5239 221.9355 c +%_258.4126 219.5117 268.8833 225.8066 271.2075 234.3223 c +%_273.5825 243.0254 268.3501 254.4648 253.9087 258.4063 c +%_239.7153 262.2813 220.7925 257.0996 216.6157 241.793 c +%_214.1802 232.8691 216.1333 224.1875 221.2075 216.5508 c +%_221.2739 216.4512 221.2612 216.3164 221.1753 216.2305 c +%_221.0884 216.1445 220.9536 216.1328 220.853 216.2012 c +%_209.5415 223.8828 197.1108 224.707 195.3267 218.1699 c +%_194.4536 214.9727 196.3042 212.7188 198.7524 212.0508 c +%_201.2681 211.3652 203.8462 212.6289 205.0327 215.4883 c +%_205.0796 215.5996 205.2007 215.6641 205.3198 215.6406 c +%_205.438 215.6133 205.5249 215.5098 205.522 215.3867 c +%_205.4292 208.3477 200.0034 202.5625 193.1577 204.4316 c +%_187.1021 206.084 183.8354 212.5488 185.688 219.3359 c +%_188.4888 229.5977 200.6997 231.5391 210.0063 226.6504 C +%_204.647 233.7715 201.1919 243.1035 204.2524 254.3184 c +%_210.4507 277.0313 239.5044 281.4355 256.9087 276.6855 c +%_272.7075 272.373 281.9517 266.4023 287.9087 257.6152 C +%_284.1079 267.0098 278.4419 272.0039 269.8345 275.9434 C +%_263.3052 284.0918 267.5161 299.5195 v +%_269.2759 305.9707 273.3091 311.3418 279.1079 314.7793 C +%_279.1079 314.7813 279.106 314.7842 279.1021 314.7871 C +%_279.1509 314.8105 279.1997 314.8379 279.2466 314.8613 C +%_279.6333 315.0879 280.0298 315.3057 280.4321 315.5146 C +%_286.4438 319.1211 293.4966 327.6973 292.2661 337.6113 c +%_292.2524 337.7236 292.3149 337.832 292.4185 337.877 c +%_292.5239 337.9219 292.645 337.8896 292.7153 337.8018 c +%_297.3677 331.9629 297.2114 324.1104 294.8794 318.8857 C +%_298.7368 318.915 302.9087 318.375 307.3442 317.165 c +%_323.1685 312.8457 332.0122 301.3135 334.9126 290.5566 C +%_339.4106 292.5977 345.0063 290.4043 347.9888 285.9199 c +%_348.0532 285.8184 348.0415 285.6855 347.9575 285.5996 c +%_347.8735 285.5156 347.7407 285.5 347.6392 285.5645 c +%_342.7583 288.6914 336.9556 284.9648 335.4048 278.3496 c +%_335.3774 278.2305 335.2681 278.1484 335.145 278.1543 c +%_335.022 278.1602 334.9204 278.2539 334.9067 278.377 c +%_333.5591 289.251 326.8228 298.0566 316.1841 300.96 c +%_305.0767 303.9922 294.2446 299.7852 291.3149 289.0469 c +%_288.9224 280.2832 294.5571 269.3301 304.5513 266.6016 c +%_312.3286 264.4785 318.0747 267.5527 319.5903 273.1074 c +%_320.9048 277.9199 318.6157 282.6563 314.6665 283.7344 c +%_309.0181 285.2754 305.2388 279.4844 308.7837 274.877 c +%_308.8521 274.7852 308.854 274.6602 308.7837 274.5684 c +%_308.7153 274.4766 308.5923 274.4434 308.4868 274.4863 c +%_304.3892 276.1465 301.2739 280.3418 302.5923 285.1729 c +%_303.8052 289.6152 308.7544 293.1729 316.6548 291.0166 c +%_326.0356 288.457 333.0806 276.8555 329.0376 262.043 c +%_323.5142 241.7988 297.6802 237.0449 282.1079 251.9043 C +%_286.5278 245.2617 291.4517 239.0098 302.438 236.0117 c +%_323.188 230.3496 342.813 247.0332 341.1724 273.4902 c +%_341.1646 273.6152 341.2505 273.7285 341.3735 273.7539 c +%_341.4946 273.7813 341.6196 273.7129 341.6646 273.5977 c +%_344.7466 265.4922 350.0786 256.4316 362.2739 253.1035 c +%_374.9888 249.6328 386.2876 255.5664 389.8599 268.6504 c +%_392.6216 278.7734 388.2017 286.875 380.9204 288.8623 c +%_375.3657 290.3789 369.9419 288.0039 368.2603 281.8398 c +%_365.7563 272.6641 374.8833 266.8203 380.6411 270.3516 c +%_380.7388 270.4121 380.8677 270.3965 380.9497 270.3164 c +%_381.0337 270.2363 381.0513 270.1094 380.9927 270.0078 c +%_378.5454 265.7324 372.6802 262.5977 365.6548 264.5156 c +%_353.5571 267.8164 348.6001 281.2383 351.9673 293.5811 c +%_353.5454 299.3652 356.7681 304.502 361.1685 308.1426 C +%_365.0298 306.5186 369.8384 306.6777 373.3735 307.8867 C +%_366.2349 307.8154 355.8794 312.8262 358.647 322.9707 c +%_360.1978 328.6533 365.5923 331.2188 370.7563 329.8086 c +%_376.8579 328.1436 378.2974 322.21 376.5688 318.1729 c +%_376.522 318.0654 376.4106 318.0039 376.2974 318.0225 c +%_376.1821 318.04 376.0942 318.1318 376.0825 318.2471 c +%_375.9146 319.9375 374.6685 321.6836 372.7446 322.208 c +%_370.3325 322.8662 368.3989 321.415 367.8735 319.4854 c +%_367.0044 316.3066 370.063 313.5752 374.2739 313.6211 C +%_374.27 313.6094 L +%_377.2896 313.8984 380.5044 313.6445 383.8716 312.7266 c +%_400.0415 308.3125 410.6646 286.5674 404.6235 264.4375 c +%_398.2485 241.0781 378.2056 233.2363 361.0474 237.9199 c +%_351.8481 240.4297 345.8228 245.7871 342.5903 251.4453 C +%_339.3892 231.668 327.8618 221.7793 314.229 218.4707 C +%_311.7056 223.8008 306.7114 226.8867 Y +%_312.0864 219.8496 315.5845 209.3477 312.1821 196.8809 c +%_307.0278 177.9961 284.4712 168.2344 264.6001 173.6582 c +%_251.9888 177.0996 240.9927 185.0801 235.397 196.7266 C +%_228.9556 192.2266 221.186 191.6406 216.1919 195.8809 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_u +%_*u +%_0 D +%_0 0 0 0 1 1 1 Xa +%_0 1 0 0 0 Xy +%_363.1294 269.9688 m +%_363.0044 269.9688 362.8989 269.877 362.8794 269.7539 c +%_360.5005 253.7402 351.2271 240.3652 338.4888 232.3594 c +%_338.3853 232.2949 338.3403 232.1641 338.3872 232.0508 c +%_338.4321 231.9375 338.5532 231.8711 338.6724 231.8965 c +%_349.145 234 358.4653 239.7598 365.1216 247.9277 C +%_369.7466 234.5508 380.3579 225.9219 393.4224 222.2734 C +%_388.6138 216.6816 391.1294 208.7402 398.5415 207.4375 c +%_398.6548 207.416 398.7661 207.4746 398.8149 207.5781 c +%_398.8638 207.6816 398.8364 207.8066 398.7485 207.8809 c +%_394.7759 211.2266 396.229 219.3008 408.0864 219.3008 c +%_415.8794 219.3008 420.9067 216.1211 420.9067 211.8145 c +%_420.9067 208.4297 417.8442 206.584 415.2642 206.584 c +%_410.8501 206.584 408.3267 210.5449 410.2231 214.127 c +%_410.2778 214.2305 410.2563 214.3574 410.1685 214.4355 c +%_410.0806 214.5137 409.9517 214.5215 409.854 214.4551 c +%_407.606 212.8906 406.0356 210.834 406.0356 207.6641 c +%_406.0356 202.2773 411.061 196.5352 419.3677 196.5332 c +%_428.2896 196.5332 436.3911 203.4043 436.3911 211.8145 c +%_436.3911 223.6309 426.3423 229.248 415.7778 230.248 C +%_420.1431 231.9219 423.4106 236.7734 v +%_423.4771 236.8691 423.4673 236.998 423.3892 237.084 c +%_423.311 237.1719 423.1841 237.1934 423.0825 237.1387 c +%_417.2524 234.0566 410.5942 232.3945 403.5806 232.3945 c +%_383.9575 232.3945 367.0337 248.7988 363.3813 269.7607 c +%_363.3599 269.8818 363.2524 269.9727 363.1294 269.9688 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_286.4517 217.5625 m +%_281.8442 209.8867 280.1997 196.7129 284.4946 186.8809 c +%_284.5435 186.7695 284.5083 186.6406 284.4087 186.5703 c +%_284.3091 186.502 284.1763 186.5117 284.0884 186.5957 c +%_279.2817 191.1484 275.1489 201.7715 277.3833 214.0527 C +%_274.2876 216.4473 272.3384 218.8223 270.8696 222.0059 c +%_270.8228 222.1074 270.8501 222.2305 270.936 222.3047 c +%_271.022 222.377 271.147 222.3848 271.2427 222.3203 c +%_276.2388 218.959 280.7056 217.8125 286.4517 217.5625 C +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_297.0591 337.3691 m +%_296.9907 337.4727 297.0083 337.6133 297.1001 337.6973 c +%_297.1938 337.7813 297.3345 337.7852 297.4321 337.7061 c +%_304.2466 332.1797 313.3071 328.6504 324.4673 328.6504 c +%_352.0376 328.6504 369.4399 345.1689 372.1743 362.5771 c +%_372.1919 362.6885 372.2817 362.7734 372.3931 362.7891 c +%_372.5044 362.8047 372.6138 362.7422 372.6587 362.6396 c +%_375.3833 356.3818 377.0259 347.3057 368.6099 335.1309 c +%_363.5747 327.8457 357.479 322.8311 357.479 316.3145 c +%_357.479 312.0566 359.7407 309.1602 363.1685 309.1602 c +%_366.7739 309.1602 369.106 312.248 369.104 315.7148 c +%_369.104 317.4629 368.6001 319.1934 367.6958 320.7607 c +%_367.6372 320.8633 367.6548 320.9902 367.7407 321.0723 c +%_367.8247 321.1523 367.9556 321.165 368.0532 321.1016 c +%_371.0259 319.1641 373.6802 315.7021 373.6802 310.8281 c +%_373.6802 303.6563 367.5474 297.6602 359.2095 297.6602 c +%_350.2368 297.6602 342.8872 304.709 342.8872 314.8477 c +%_342.8872 318.3262 343.8755 322.5156 346.3501 325.9805 C +%_342.9653 323.1523 341.1587 321.1523 339.6724 316.8271 C +%_329.272 315.0186 318.1665 316.6797 309.3403 322.4727 C +%_309.0864 316.3711 307.0903 311.2793 302.9985 307.1533 c +%_302.9146 307.0684 302.7837 307.0547 302.6841 307.1182 c +%_302.5825 307.1816 302.5415 307.3066 302.5806 307.4189 c +%_305.4575 315.4199 303.5239 327.6152 297.0591 337.3691 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_209.6938 330.7344 m +%_211.938 335.5352 217.1528 338.2188 223.1548 338.3271 c +%_223.2798 338.3311 223.3872 338.2432 223.4087 338.1211 c +%_223.4321 337.998 223.3638 337.8779 223.2485 337.8359 c +%_221.2017 337.082 219.5864 335.7637 218.7271 333.9258 c +%_216.5142 329.1973 220.0942 322.8301 226.7407 319.5566 c +%_226.8188 319.5186 226.8716 319.4434 226.8813 319.3594 c +%_226.8911 319.2725 226.856 319.1885 226.7915 319.1318 c +%_222.5005 315.6143 217.3794 309.0781 217.3794 295.7148 c +%_217.3774 277.0322 229.5337 259.25 245.6548 259.25 c +%_254.8677 259.25 262.2876 265.6465 266.1255 275.2422 C +%_261.9028 269.4844 256.145 265.1348 248.2114 265.1348 c +%_236.5708 265.1348 227.3579 277.5439 227.356 295.459 c +%_227.356 312.3457 239.2583 332.0518 255.1216 332.0508 c +%_263.8247 332.0488 270.3481 325.0117 270.3481 315.9277 c +%_270.3481 307.8672 265.1021 303.2637 259.2173 303.2637 c +%_254.7798 303.2637 251.7231 306.3936 250.772 309.7871 c +%_250.7388 309.9023 250.7915 310.0254 250.897 310.0811 c +%_251.0044 310.1357 251.1333 310.1104 251.2114 310.0186 c +%_251.9634 309.124 253.1079 308.3809 254.8657 308.3809 c +%_257.8091 308.3789 259.3442 310.9082 259.3442 312.7285 c +%_259.3442 316.1836 256.7856 318.6152 252.9458 318.6152 c +%_247.7036 318.6152 243.606 312.8564 243.606 305.4385 c +%_243.606 296.2236 252.436 287.7813 261.2642 287.7813 c +%_270.2856 287.7813 279.9438 295.8408 279.9438 310.8125 c +%_279.9419 325.5234 269.9653 342.4141 254.0981 342.4141 c +%_244.8481 342.4141 236.9849 338.2441 230.9556 331.3398 c +%_230.8755 331.248 230.7427 331.2246 230.6392 331.2852 c +%_230.5317 331.3477 230.4849 331.4727 230.5239 331.5879 c +%_234.9575 344.5234 232.4771 356.7344 225.7036 356.7324 c +%_222.3892 356.7324 220.7017 354.3535 220.7017 351.8154 c +%_220.7017 349.21 222.6001 347.0566 225.6704 346.6611 c +%_225.7915 346.6475 225.8833 346.5479 225.8931 346.4268 c +%_225.8989 346.3047 225.8188 346.1943 225.7017 346.1641 c +%_218.8872 344.4004 211.8774 348.1133 211.8774 355.2061 c +%_211.8774 361.4854 217.2544 366.3398 224.2896 366.3398 c +%_234.9263 366.3379 240.0142 355.0684 237.7485 344.8047 C +%_243.2075 351.8486 251.3013 357.6396 262.9263 357.6396 c +%_286.4692 357.6396 298.3677 330.7715 298.3677 312.7285 c +%_298.3677 296.3525 295.0415 285.8604 288.1313 277.8018 C +%_296.1938 283.9404 299.52 290.7227 301.0552 300.0645 C +%_307.1958 308.5078 323.188 308.5078 v +%_329.8755 308.5078 336.1177 306.0322 340.9614 301.3438 C +%_340.9634 301.3447 340.9653 301.3477 340.9673 301.3486 C +%_341.0024 301.3105 341.0396 301.2695 341.0767 301.2314 C +%_341.397 300.915 341.7114 300.5918 342.02 300.2578 C +%_347.0806 295.4102 357.2114 290.8633 366.4517 294.6602 c +%_366.5571 294.7031 366.6782 294.6699 366.7485 294.582 c +%_366.8188 294.4932 366.8188 294.3672 366.7524 294.2754 c +%_362.3462 288.252 354.729 286.335 349.0747 287.21 C +%_350.1177 283.4941 350.6958 279.3281 350.6958 274.7305 c +%_350.6978 258.3262 341.8989 246.7598 332.2856 241.1289 C +%_335.438 237.3281 334.7954 231.3535 331.2544 227.2949 c +%_331.1743 227.2051 331.0435 227.1816 330.938 227.2402 c +%_330.8345 227.2988 330.7837 227.4238 330.8188 227.5391 c +%_332.5513 233.0703 327.4282 237.6875 320.6392 237.4395 c +%_320.5161 237.4355 320.4067 237.5195 320.3813 237.6406 c +%_320.356 237.7617 320.4185 237.8828 320.5337 237.9277 c +%_330.6685 242.0918 337.3911 250.9102 337.3892 261.9355 c +%_337.3911 273.4492 330.481 282.79 319.3501 282.79 c +%_310.2661 282.79 301.1821 274.4727 301.1821 264.1133 c +%_301.1821 256.0508 305.6587 251.3184 311.4165 251.3164 c +%_316.4067 251.3184 320.3735 254.7715 320.3735 258.8672 c +%_320.3735 264.7188 313.7896 266.8408 310.2778 262.209 c +%_310.2095 262.1172 310.0864 262.084 309.981 262.127 c +%_309.8755 262.1689 309.811 262.2773 309.8228 262.3926 c +%_310.3462 266.7813 313.5767 270.8926 318.5825 270.8926 c +%_323.188 270.8926 327.9224 267.0518 327.9224 258.8652 c +%_327.9224 249.1406 318.5845 239.291 303.231 239.2891 c +%_282.2466 239.2891 270.8599 262.959 281.0942 281.8945 C +%_275.8501 275.8809 271.1157 269.4844 271.1157 258.0977 c +%_271.1138 236.5898 292.3794 222.0488 317.4692 230.5977 c +%_317.5884 230.6367 317.7192 230.584 317.7759 230.4746 c +%_317.8345 230.3633 317.8013 230.2266 317.6997 230.1523 c +%_310.6938 225.043 303.356 217.5137 303.356 204.873 c +%_303.356 191.6934 312.0552 182.3535 325.6196 182.3535 c +%_336.1099 182.3535 342.7642 188.752 342.7642 196.2988 c +%_342.7642 202.0566 339.0454 206.6641 332.6567 206.6641 c +%_323.1431 206.6641 319.9087 196.3203 324.8325 191.6953 c +%_324.9165 191.6152 324.936 191.4902 324.8813 191.3887 c +%_324.8247 191.2871 324.7056 191.2344 324.5942 191.2637 c +%_319.8247 192.5 315.2563 197.332 315.2563 204.6152 c +%_315.2544 217.1563 326.897 225.4727 339.6919 225.4727 c +%_345.688 225.4727 351.4907 223.7188 356.1646 220.4297 C +%_355.6118 216.2773 357.0317 211.6816 359.1313 208.5879 C +%_357.1821 215.457 359.2915 226.7656 369.8032 226.7676 c +%_375.6958 226.7656 379.5903 222.2383 379.5903 216.8867 c +%_379.5903 210.5605 374.2446 207.6094 369.895 208.2148 c +%_369.7798 208.2305 369.6899 208.3223 369.6763 208.4375 c +%_369.6646 208.5527 369.731 208.6602 369.8384 208.7031 c +%_371.4243 209.3105 372.7817 210.9727 372.7817 212.9668 c +%_372.7817 215.4668 370.8696 216.9492 368.8696 216.9492 c +%_365.5767 216.9492 363.7466 213.2793 364.8989 209.2305 C +%_364.8872 209.2285 L +%_365.9595 206.3926 366.561 203.2246 366.561 199.7363 c +%_366.561 182.9746 348.3813 167.002 325.4399 167 c +%_301.229 167 288.3872 184.2734 288.3892 202.0566 c +%_288.3892 211.5938 291.9692 218.8184 296.5767 223.4258 C +%_276.6548 221.3066 264.0786 229.8223 257.2974 242.1035 C +%_261.7759 245.9414 263.438 251.5723 Y +%_258.0649 244.5352 248.854 238.3945 235.9321 238.3945 c +%_216.356 238.3945 201.0005 257.5859 201.0005 278.1836 c +%_201.0005 291.2568 205.8032 303.9648 215.5649 312.4307 C +%_209.5278 317.459 206.9185 324.8018 209.6938 330.7344 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_U +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_0 0.25 0 0 0 Xy +%_0 0 Xd +%_6 () XW +%_U +%_/ArtDictionary : +%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , +%_; +%_ +%_9 () XW +%_u +%_*u +%_0 D +%_0 O +%_0.306889 0.577478 0.779446 0.294591 0.576471 0.376471 0.215686 Xa +%_0 1 0 0 0 Xy +%_73.2617 263.3711 m +%_73.3867 263.3711 73.4922 263.4629 73.5098 263.585 c +%_75.8906 279.5996 85.1641 292.9746 97.9023 300.9814 c +%_98.0059 301.0449 98.0488 301.1758 98.0039 301.29 c +%_97.957 301.4023 97.8379 301.4688 97.7168 301.4443 c +%_87.2461 299.3398 77.9238 293.5811 71.2695 285.4141 C +%_66.6436 298.7891 56.0332 307.418 42.9688 311.0654 C +%_47.7773 316.6582 45.2617 324.5986 37.8496 325.9023 c +%_37.7363 325.9229 37.624 325.8643 37.5752 325.7607 c +%_37.5273 325.6563 37.5537 325.5322 37.6416 325.46 c +%_41.6152 322.1143 40.1611 314.04 28.3047 314.04 c +%_20.5098 314.04 15.4844 317.2188 15.4844 321.5254 c +%_15.4844 324.9102 18.5459 326.7559 21.125 326.7559 c +%_25.541 326.7559 28.0645 322.7949 26.167 319.2129 c +%_26.1123 319.1104 26.1348 318.9814 26.2227 318.9033 c +%_26.3105 318.8271 26.4395 318.8184 26.5361 318.8857 c +%_28.7852 320.4492 30.3555 322.5059 30.3555 325.6768 c +%_30.3555 331.0635 25.3301 336.8066 17.0234 336.8066 c +%_8.10156 336.8066 0 329.9355 0 321.5254 c +%_0 309.71 10.0488 304.0918 20.6133 303.0918 C +%_16.248 301.4189 12.9795 296.5664 v +%_12.9141 296.4697 12.9238 296.3418 13.001 296.2559 c +%_13.0791 296.1689 13.2051 296.1475 13.3086 296.2012 c +%_19.1387 299.2822 25.7949 300.9453 32.8105 300.9453 c +%_52.4316 300.9453 69.3574 284.541 73.0098 263.5801 c +%_73.0313 263.4561 73.1377 263.3691 73.2617 263.3711 c +%_f +%_1 D +%_149.9395 315.7773 m +%_154.5488 323.4551 156.1914 336.627 151.8965 346.46 c +%_151.8477 346.5703 151.8828 346.6992 151.9824 346.7686 c +%_152.0801 346.8379 152.2148 346.8281 152.3027 346.7461 c +%_157.1094 342.1914 161.2422 331.5684 159.0078 319.2871 C +%_162.1055 316.8936 164.0527 314.5176 165.5215 311.335 c +%_165.5684 311.2314 165.541 311.1104 165.4551 311.0352 c +%_165.3691 310.9629 165.2441 310.9551 165.1484 311.0186 c +%_160.1523 314.3809 155.6855 315.5283 149.9395 315.7773 C +%_f +%_139.3301 195.9707 m +%_139.4004 195.8672 139.3828 195.7266 139.291 195.6426 c +%_139.1973 195.5586 139.0566 195.5547 138.959 195.6348 c +%_132.1445 201.1621 123.084 204.6895 111.9238 204.6895 c +%_84.3516 204.6895 66.9512 188.1719 64.2158 170.7637 c +%_64.1982 170.6523 64.1094 170.5664 63.998 170.5508 c +%_63.8857 170.5371 63.7773 170.5977 63.7324 170.7012 c +%_61.0068 176.959 59.3652 186.0352 67.7813 198.209 c +%_72.8154 205.4941 78.9102 210.5098 78.9102 217.0273 c +%_78.9102 221.2852 76.6504 224.1797 73.2227 224.1797 c +%_69.6172 224.1797 67.2861 221.0918 67.2861 217.625 c +%_67.2861 215.877 67.791 214.1465 68.6953 212.5801 c +%_68.7539 212.4766 68.7354 212.3496 68.6504 212.2676 c +%_68.5645 212.1875 68.4355 212.1758 68.3379 212.2402 c +%_65.3652 214.1777 62.7109 217.6367 62.7109 222.5117 c +%_62.7109 229.6836 68.8438 235.6816 77.1797 235.6816 c +%_86.1543 235.6816 93.5039 228.6328 93.5039 218.4922 c +%_93.5039 215.0156 92.5137 210.8242 90.041 207.3613 C +%_93.4258 210.1875 95.2324 212.1875 96.7188 216.5117 C +%_107.1191 218.3223 118.2246 216.6602 127.0488 210.8691 C +%_127.3047 216.9707 129.3008 222.0605 133.3926 226.1875 c +%_133.4766 226.2715 133.6074 226.2852 133.707 226.2227 c +%_133.8086 226.1582 133.8516 226.0332 133.8105 225.9219 c +%_130.9336 217.9199 132.8652 205.7246 139.3301 195.9707 c +%_f +%_226.6973 202.6055 m +%_224.4512 197.8066 219.2383 195.1211 213.2363 195.0117 c +%_213.1113 195.0098 213.0039 195.0977 212.9824 195.2188 c +%_212.959 195.3418 213.0273 195.4609 213.1426 195.5039 c +%_215.1895 196.2578 216.8047 197.5762 217.6641 199.4141 c +%_219.877 204.1426 216.2969 210.5098 209.6504 213.7832 c +%_209.5723 213.8223 209.5195 213.8965 209.5098 213.9824 c +%_209.5 214.0684 209.5332 214.1523 209.5996 214.207 c +%_213.8906 217.7266 219.0117 224.2617 219.0117 237.627 c +%_219.0117 256.3086 206.8574 274.0898 190.7363 274.0898 c +%_181.5234 274.0898 174.1035 267.6934 170.2656 258.0977 C +%_174.4863 263.8564 180.2441 268.2051 188.1777 268.2051 c +%_199.8203 268.2051 209.0332 255.7969 209.0332 237.8828 c +%_209.0332 220.9941 197.1328 201.2891 181.2676 201.2891 c +%_172.5664 201.2891 166.043 208.3281 166.043 217.4121 c +%_166.043 225.4746 171.2891 230.0781 177.1758 230.0781 c +%_181.6094 230.0781 184.668 226.9473 185.6191 223.5527 c +%_185.6504 223.4375 185.5996 223.3164 185.4922 223.2598 c +%_185.3867 223.2051 185.2578 223.2305 185.1797 223.3223 c +%_184.4277 224.2168 183.2832 224.9609 181.5254 224.9609 c +%_178.582 224.9609 177.0469 222.4316 177.0469 220.6113 c +%_177.0469 217.1563 179.6055 214.7246 183.4453 214.7246 c +%_188.6895 214.7246 192.7852 220.4824 192.7852 227.9023 c +%_192.7852 237.1152 183.9551 245.5586 175.127 245.5586 c +%_166.1055 245.5586 156.4473 237.5 156.4473 222.5293 c +%_156.4473 207.8164 166.4277 190.9258 182.293 190.9258 c +%_191.543 190.9258 199.4043 195.0957 205.4355 202.002 c +%_205.5156 202.0918 205.6484 202.1152 205.7539 202.0547 c +%_205.8594 201.9941 205.9063 201.8672 205.8672 201.752 c +%_201.4336 188.8164 203.9121 176.6074 210.6875 176.6074 c +%_214.002 176.6074 215.6895 178.9863 215.6895 181.5234 c +%_215.6895 184.1309 213.791 186.2852 210.7207 186.6777 c +%_210.5996 186.6934 210.5059 186.793 210.498 186.9141 c +%_210.4922 187.0352 210.5703 187.1465 210.6895 187.1758 c +%_217.5039 188.9395 224.5137 185.2285 224.5137 178.1328 c +%_224.5137 171.8555 219.1367 167.002 212.1016 167.002 c +%_201.4648 167.002 196.377 178.2715 198.6426 188.5371 C +%_193.1836 181.4922 185.0898 175.7012 173.4648 175.7012 c +%_149.9219 175.7012 138.0234 202.5703 138.0234 220.6113 c +%_138.0234 236.9883 141.3496 247.4785 148.2598 255.5391 C +%_140.1973 249.3984 136.8711 242.6172 135.3379 233.2773 C +%_129.1953 224.832 113.2031 224.832 v +%_106.5156 224.832 100.2734 227.3086 95.4297 231.998 C +%_95.4277 231.9961 95.4258 231.9941 95.4238 231.9902 C +%_95.3887 232.0313 95.3496 232.0703 95.3145 232.1094 C +%_94.9941 232.4238 94.6797 232.748 94.3711 233.082 C +%_89.3086 237.9316 79.1797 242.4785 69.9395 238.6797 c +%_69.834 238.6367 69.7129 238.6699 69.6426 238.7578 c +%_69.5723 238.8477 69.5703 238.9727 69.6377 239.0645 c +%_74.0449 245.0898 81.6621 247.0059 87.3164 246.1309 C +%_86.2715 249.8457 85.6934 254.0117 85.6934 258.6094 c +%_85.6934 275.0137 94.4922 286.5801 104.1055 292.2109 C +%_100.9512 296.0137 101.5957 301.9883 105.1367 306.0449 c +%_105.2168 306.1357 105.3477 306.1582 105.4531 306.0996 c +%_105.5566 306.041 105.6055 305.918 105.5703 305.8018 c +%_103.8398 300.2695 108.9629 295.6523 115.752 295.9004 c +%_115.875 295.9033 115.9824 295.8193 116.0098 295.6992 c +%_116.0352 295.5801 115.9707 295.457 115.8574 295.4111 c +%_105.7207 291.248 99 282.4316 99 271.4033 c +%_99 259.8906 105.9082 250.5488 117.041 250.5488 c +%_126.125 250.5488 135.209 258.8672 135.209 269.2285 c +%_135.209 277.2891 130.7305 282.0225 124.9727 282.0225 c +%_119.9844 282.0225 116.0176 278.5684 116.0176 274.4736 c +%_116.0176 268.6211 122.5996 266.499 126.1113 271.1309 c +%_126.1816 271.2227 126.3027 271.2559 126.4082 271.2129 c +%_126.5156 271.1699 126.5801 271.0625 126.5664 270.9482 c +%_126.043 266.5586 122.8145 262.4482 117.8086 262.4482 c +%_113.2031 262.4482 108.4688 266.2861 108.4688 274.4746 c +%_108.4688 284.1982 117.8066 294.0508 133.1602 294.0508 c +%_154.1426 294.0508 165.5313 270.3809 155.2969 251.4453 C +%_160.541 257.459 165.2754 263.8555 165.2754 275.2432 c +%_165.2754 296.75 144.0117 311.291 118.9219 302.7441 c +%_118.8027 302.7021 118.6719 302.7559 118.6152 302.8672 c +%_118.5566 302.9785 118.5879 303.1143 118.6895 303.1895 c +%_125.6953 308.2979 133.0332 315.8262 133.0332 328.4668 c +%_133.0332 341.6475 124.334 350.9854 110.7715 350.9854 c +%_100.2793 350.9854 93.627 344.5879 93.627 337.04 c +%_93.627 331.2822 97.3457 326.6768 103.7344 326.6768 c +%_113.2461 326.6768 116.4805 337.0195 111.5586 341.6445 c +%_111.4746 341.7236 111.4551 341.8516 111.5098 341.9521 c +%_111.5664 342.0547 111.6836 342.1055 111.7969 342.0762 c +%_116.5664 340.8398 121.1348 336.0068 121.1348 328.7236 c +%_121.1348 316.1855 109.4922 307.8682 96.6973 307.8682 c +%_90.7012 307.8682 84.8984 309.623 80.2266 312.9102 C +%_80.7773 317.0635 79.3574 321.6602 77.2598 324.752 C +%_79.209 317.8848 77.1016 306.5732 66.5859 306.5732 c +%_60.6953 306.5732 56.8008 311.1025 56.8008 316.4551 c +%_56.8008 322.7793 62.1465 325.7314 66.4961 325.125 c +%_66.6113 325.1104 66.7002 325.0186 66.7129 324.9023 c +%_66.7266 324.7891 66.6602 324.6797 66.5527 324.6367 c +%_64.9668 324.0293 63.6104 322.3691 63.6104 320.373 c +%_63.6104 317.873 65.5195 316.3906 67.5195 316.3906 c +%_70.8145 316.3906 72.6445 320.0605 71.4922 324.1104 C +%_71.5039 324.1104 L +%_70.4307 326.9473 69.8281 330.1152 69.8281 333.6055 c +%_69.8281 350.3672 88.0098 366.3398 110.9492 366.3398 c +%_135.1621 366.3398 148.0039 349.0664 148.0039 331.2822 c +%_148.0039 321.7461 144.4219 314.5225 139.8145 309.915 C +%_159.7363 312.0332 172.3125 303.5176 179.0938 291.2354 C +%_174.6152 287.3975 172.9531 281.7676 Y +%_178.3262 288.8057 187.5371 294.9453 200.459 294.9453 c +%_220.0352 294.9453 235.3906 275.7539 235.3906 255.1563 c +%_235.3906 242.084 230.5879 229.375 220.8262 220.9102 C +%_226.8633 215.8809 229.4727 208.5391 226.6973 202.6055 c +%_f +%_*U +%_*u +%_0 D +%_1 0.2 0 0 0 Xy +%_148.2109 327.9053 m +%_148.1777 327.7852 148.2383 327.6582 148.3516 327.6094 c +%_163.1758 321.0957 173.6367 308.6289 178.0059 294.2324 c +%_178.041 294.1152 178.1543 294.0391 178.2773 294.0527 c +%_178.3984 294.0664 178.4941 294.166 178.502 294.2871 c +%_179.2285 304.9434 176.127 315.4531 170 324.0234 C +%_184.1211 324.9648 195.2402 332.9297 202.1992 344.5723 C +%_206.3281 338.46 214.6504 338.7969 217.8594 345.6035 c +%_217.9102 345.708 217.8828 345.832 217.7949 345.9063 c +%_217.707 345.9805 217.5801 345.9873 217.4863 345.9219 c +%_213.2129 342.9688 205.8066 346.498 208.9277 357.9355 c +%_210.9805 365.4561 215.3711 369.4668 219.5254 368.333 c +%_222.791 367.4414 223.7656 364.002 223.0859 361.5146 c +%_221.9238 357.2539 217.4375 355.8623 214.4805 358.6357 c +%_214.3965 358.7158 214.2676 358.7285 214.1699 358.6641 c +%_214.0723 358.5986 214.0293 358.4775 214.0684 358.3662 c +%_214.9863 355.7852 216.5566 353.7285 219.6152 352.8936 c +%_224.8105 351.4756 231.6738 354.8115 233.8613 362.8252 c +%_236.2109 371.4316 231.7148 381.0566 223.6035 383.2715 c +%_212.2031 386.3818 204.1387 378.166 200.3926 368.2383 C +%_199.9258 372.8896 196.1074 377.3203 v +%_196.0313 377.4092 195.9043 377.4336 195.8008 377.3818 c +%_195.6973 377.3291 195.6426 377.2129 195.666 377.0996 c +%_197.1055 370.6641 196.957 363.8047 195.1094 357.0361 c +%_189.9434 338.1074 169.6621 326.0977 148.4785 328.0938 c +%_148.3535 328.1055 148.2402 328.0254 148.2109 327.9053 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_178.5801 240.1348 m +%_184.7734 233.666 197.0488 228.6133 207.6641 230.168 c +%_207.7852 230.1855 207.9004 230.1172 207.9395 230.0039 c +%_207.9805 229.8906 207.9355 229.7637 207.834 229.7012 c +%_202.1738 226.2617 190.8379 225.0723 179.5781 230.4609 C +%_176.4531 228.1035 173.6484 226.8496 170.1914 226.2715 c +%_170.0801 226.2539 169.9688 226.3125 169.9199 226.4141 c +%_169.873 226.5156 169.8984 226.6387 169.9844 226.7148 c +%_174.5449 230.6484 176.8281 234.6563 178.5801 240.1348 C +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_65.793 281.9121 m +%_65.6748 281.8711 65.5439 281.9258 65.4873 282.0371 c +%_65.4307 282.1484 65.4639 282.2852 65.5674 282.3594 c +%_72.6934 287.4785 78.4824 295.291 81.4199 306.0566 c +%_88.6797 332.6563 77.3262 353.792 61.2529 361.0146 c +%_61.1494 361.0605 61.0898 361.1689 61.1045 361.2803 c +%_61.1211 361.3926 61.208 361.4814 61.3193 361.4971 c +%_68.0742 362.4785 77.2617 361.6729 86.791 350.3486 c +%_92.4922 343.5732 95.7266 336.373 102.0137 334.6563 c +%_106.1211 333.5352 109.5098 334.9551 110.4121 338.2617 c +%_111.3613 341.7393 108.9961 344.8018 105.6523 345.7148 c +%_103.9648 346.1738 102.1621 346.1436 100.4141 345.6836 c +%_100.2988 345.6533 100.1816 345.7051 100.125 345.8086 c +%_100.0703 345.9121 100.0918 346.04 100.1797 346.1172 c +%_102.832 348.4746 106.8672 350.125 111.5703 348.8408 c +%_118.4902 346.9531 122.6602 339.457 120.4668 331.415 c +%_118.1035 322.7578 109.3691 317.5234 99.5859 320.1934 c +%_96.2324 321.1084 92.4492 323.168 89.7598 326.4648 C +%_91.5938 322.4551 93.0488 320.1855 96.8281 317.6133 C +%_95.8359 307.1035 91.3086 296.8271 83.4004 289.8389 C +%_89.2188 287.9863 93.6035 284.7207 96.5078 279.6855 c +%_96.5664 279.582 96.5449 279.4531 96.459 279.373 c +%_96.3691 279.293 96.2383 279.2832 96.1406 279.3535 c +%_89.1797 284.2344 76.9043 285.582 65.793 281.9121 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_49.1914 195.8809 m +%_45.1533 199.3105 43.9355 205.0469 45.4102 210.8672 c +%_45.4414 210.9883 45.5537 211.0684 45.6768 211.0566 c +%_45.8018 211.0469 45.8984 210.9492 45.9092 210.8281 c +%_46.0977 208.6543 46.9443 206.748 48.4912 205.4355 c +%_52.4707 202.0566 59.5557 203.834 64.4629 209.3828 c +%_64.5215 209.4492 64.6074 209.4805 64.6924 209.4668 c +%_64.7783 209.4531 64.8506 209.3984 64.8857 209.3203 c +%_67.1514 204.2539 72.1074 197.5938 85 194.0742 c +%_103.0234 189.1563 123.3789 196.1992 127.623 211.752 c +%_130.0488 220.6406 125.8301 229.4824 117.584 235.7109 C +%_122.0293 230.123 124.707 223.4238 122.6172 215.7695 c +%_119.5527 204.5391 105.1563 198.918 87.875 203.6348 c +%_71.582 208.0801 55.7061 224.748 59.8828 240.0547 c +%_62.1738 248.4492 70.6816 252.8887 79.4453 250.4961 c +%_87.2227 248.375 90.2832 242.1016 88.7324 236.4219 c +%_87.5664 232.1445 83.7402 230.0195 80.2148 229.9941 c +%_80.0957 229.9941 79.9922 230.0762 79.9648 230.1934 c +%_79.9414 230.3105 79.998 230.4277 80.1074 230.4785 c +%_81.1699 230.9688 82.1875 231.877 82.6504 233.5742 c +%_83.4258 236.4121 81.3906 238.5605 79.6348 239.0391 c +%_76.3018 239.9492 73.2822 238.1211 72.2705 234.416 c +%_70.8906 229.3574 75.3662 223.8906 82.5234 221.9355 c +%_91.4121 219.5117 101.8828 225.8066 104.207 234.3223 c +%_106.582 243.0254 101.3496 254.4648 86.9082 258.4063 c +%_72.7148 262.2813 53.792 257.0996 49.6152 241.793 c +%_47.1797 232.8691 49.1328 224.1875 54.207 216.5508 c +%_54.2734 216.4512 54.2607 216.3164 54.1748 216.2305 c +%_54.0879 216.1445 53.9531 216.1328 53.8525 216.2012 c +%_42.541 223.8828 30.1104 224.707 28.3262 218.1699 c +%_27.4531 214.9727 29.3037 212.7188 31.752 212.0508 c +%_34.2676 211.3652 36.8457 212.6289 38.0322 215.4883 c +%_38.0791 215.5996 38.2002 215.6641 38.3193 215.6406 c +%_38.4375 215.6133 38.5244 215.5098 38.5215 215.3867 c +%_38.4287 208.3477 33.0029 202.5625 26.1572 204.4316 c +%_20.1016 206.084 16.835 212.5488 18.6875 219.3359 c +%_21.4883 229.5977 33.6992 231.5391 43.0059 226.6504 C +%_37.6465 233.7715 34.1914 243.1035 37.252 254.3184 c +%_43.4502 277.0313 72.5039 281.4355 89.9082 276.6855 c +%_105.707 272.373 114.9512 266.4023 120.9082 257.6152 C +%_117.1074 267.0098 111.4414 272.0039 102.834 275.9434 C +%_96.3047 284.0918 100.5156 299.5195 v +%_102.2754 305.9707 106.3086 311.3418 112.1074 314.7793 C +%_112.1074 314.7813 112.1055 314.7842 112.1016 314.7871 C +%_112.1504 314.8105 112.1992 314.8379 112.2461 314.8613 C +%_112.6328 315.0879 113.0293 315.3057 113.4316 315.5146 C +%_119.4434 319.1211 126.4961 327.6973 125.2656 337.6113 c +%_125.252 337.7236 125.3145 337.832 125.418 337.877 c +%_125.5234 337.9219 125.6445 337.8896 125.7148 337.8018 c +%_130.3672 331.9629 130.2109 324.1104 127.8789 318.8857 C +%_131.7363 318.915 135.9082 318.375 140.3438 317.165 c +%_156.168 312.8457 165.0117 301.3135 167.9121 290.5566 C +%_172.4102 292.5977 178.0059 290.4043 180.9883 285.9199 c +%_181.0527 285.8184 181.041 285.6855 180.957 285.5996 c +%_180.873 285.5156 180.7402 285.5 180.6387 285.5645 c +%_175.7578 288.6914 169.9551 284.9648 168.4043 278.3496 c +%_168.377 278.2305 168.2676 278.1484 168.1445 278.1543 c +%_168.0215 278.1602 167.9199 278.2539 167.9063 278.377 c +%_166.5586 289.251 159.8223 298.0566 149.1836 300.96 c +%_138.0762 303.9922 127.2441 299.7852 124.3145 289.0469 c +%_121.9219 280.2832 127.5566 269.3301 137.5508 266.6016 c +%_145.3281 264.4785 151.0742 267.5527 152.5898 273.1074 c +%_153.9043 277.9199 151.6152 282.6563 147.666 283.7344 c +%_142.0176 285.2754 138.2383 279.4844 141.7832 274.877 c +%_141.8516 274.7852 141.8535 274.6602 141.7832 274.5684 c +%_141.7148 274.4766 141.5918 274.4434 141.4863 274.4863 c +%_137.3887 276.1465 134.2734 280.3418 135.5918 285.1729 c +%_136.8047 289.6152 141.7539 293.1729 149.6543 291.0166 c +%_159.0352 288.457 166.0801 276.8555 162.0371 262.043 c +%_156.5137 241.7988 130.6797 237.0449 115.1074 251.9043 C +%_119.5273 245.2617 124.4512 239.0098 135.4375 236.0117 c +%_156.1875 230.3496 175.8125 247.0332 174.1719 273.4902 c +%_174.1641 273.6152 174.25 273.7285 174.373 273.7539 c +%_174.4941 273.7813 174.6191 273.7129 174.6641 273.5977 c +%_177.7461 265.4922 183.0781 256.4316 195.2734 253.1035 c +%_207.9883 249.6328 219.2871 255.5664 222.8594 268.6504 c +%_225.6211 278.7734 221.2012 286.875 213.9199 288.8623 c +%_208.3652 290.3789 202.9414 288.0039 201.2598 281.8398 c +%_198.7559 272.6641 207.8828 266.8203 213.6406 270.3516 c +%_213.7383 270.4121 213.8672 270.3965 213.9492 270.3164 c +%_214.0332 270.2363 214.0508 270.1094 213.9922 270.0078 c +%_211.5449 265.7324 205.6797 262.5977 198.6543 264.5156 c +%_186.5566 267.8164 181.5996 281.2383 184.9668 293.5811 c +%_186.5449 299.3652 189.7676 304.502 194.168 308.1426 C +%_198.0293 306.5186 202.8379 306.6777 206.373 307.8867 C +%_199.2344 307.8154 188.8789 312.8262 191.6465 322.9707 c +%_193.1973 328.6533 198.5918 331.2188 203.7559 329.8086 c +%_209.8574 328.1436 211.2969 322.21 209.5684 318.1729 c +%_209.5215 318.0654 209.4102 318.0039 209.2969 318.0225 c +%_209.1816 318.04 209.0938 318.1318 209.082 318.2471 c +%_208.9141 319.9375 207.668 321.6836 205.7441 322.208 c +%_203.332 322.8662 201.3984 321.415 200.873 319.4854 c +%_200.0039 316.3066 203.0625 313.5752 207.2734 313.6211 C +%_207.2695 313.6094 L +%_210.2891 313.8984 213.5039 313.6445 216.8711 312.7266 c +%_233.041 308.3125 243.6641 286.5674 237.623 264.4375 c +%_231.248 241.0781 211.2051 233.2363 194.0469 237.9199 c +%_184.8477 240.4297 178.8223 245.7871 175.5898 251.4453 C +%_172.3887 231.668 160.8613 221.7793 147.2285 218.4707 C +%_144.7 +endstream endobj 110 0 obj <>stream +051 223.8008 139.7109 226.8867 Y +%_145.0859 219.8496 148.584 209.3477 145.1816 196.8809 c +%_140.0273 177.9961 117.4707 168.2344 97.5996 173.6582 c +%_84.9883 177.0996 73.9922 185.0801 68.3965 196.7266 C +%_61.9551 192.2266 54.1855 191.6406 49.1914 195.8809 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_u +%_*u +%_0 D +%_0 0 0 0 1 1 1 Xa +%_0 1 0 0 0 Xy +%_196.1289 269.9688 m +%_196.0039 269.9688 195.8984 269.877 195.8789 269.7539 c +%_193.5 253.7402 184.2266 240.3652 171.4883 232.3594 c +%_171.3848 232.2949 171.3398 232.1641 171.3867 232.0508 c +%_171.4316 231.9375 171.5527 231.8711 171.6719 231.8965 c +%_182.1445 234 191.4648 239.7598 198.1211 247.9277 C +%_202.7461 234.5508 213.3574 225.9219 226.4219 222.2734 C +%_221.6133 216.6816 224.1289 208.7402 231.541 207.4375 c +%_231.6543 207.416 231.7656 207.4746 231.8145 207.5781 c +%_231.8633 207.6816 231.8359 207.8066 231.748 207.8809 c +%_227.7754 211.2266 229.2285 219.3008 241.0859 219.3008 c +%_248.8794 219.3008 253.9067 216.1211 253.9067 211.8145 c +%_253.9067 208.4297 250.8442 206.584 248.2642 206.584 c +%_243.8501 206.584 241.3262 210.5449 243.2227 214.127 c +%_243.2773 214.2305 243.2559 214.3574 243.168 214.4355 c +%_243.0801 214.5137 242.9512 214.5215 242.8535 214.4551 c +%_240.6055 212.8906 239.0352 210.834 239.0352 207.6641 c +%_239.0352 202.2773 244.061 196.5352 252.3677 196.5332 c +%_261.2896 196.5332 269.3911 203.4043 269.3911 211.8145 c +%_269.3911 223.6309 259.3423 229.248 248.7778 230.248 C +%_253.1431 231.9219 256.4106 236.7734 v +%_256.4771 236.8691 256.4673 236.998 256.3892 237.084 c +%_256.311 237.1719 256.1841 237.1934 256.0825 237.1387 c +%_250.2524 234.0566 243.5938 232.3945 236.5801 232.3945 c +%_216.957 232.3945 200.0332 248.7988 196.3809 269.7607 c +%_196.3594 269.8818 196.252 269.9727 196.1289 269.9688 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_119.4512 217.5625 m +%_114.8438 209.8867 113.1992 196.7129 117.4941 186.8809 c +%_117.543 186.7695 117.5078 186.6406 117.4082 186.5703 c +%_117.3086 186.502 117.1758 186.5117 117.0879 186.5957 c +%_112.2813 191.1484 108.1484 201.7715 110.3828 214.0527 C +%_107.2871 216.4473 105.3379 218.8223 103.8691 222.0059 c +%_103.8223 222.1074 103.8496 222.2305 103.9355 222.3047 c +%_104.0215 222.377 104.1465 222.3848 104.2422 222.3203 c +%_109.2383 218.959 113.7051 217.8125 119.4512 217.5625 C +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_130.0586 337.3691 m +%_129.9902 337.4727 130.0078 337.6133 130.0996 337.6973 c +%_130.1934 337.7813 130.334 337.7852 130.4316 337.7061 c +%_137.2461 332.1797 146.3066 328.6504 157.4668 328.6504 c +%_185.0371 328.6504 202.4395 345.1689 205.1738 362.5771 c +%_205.1914 362.6885 205.2813 362.7734 205.3926 362.7891 c +%_205.5039 362.8047 205.6133 362.7422 205.6582 362.6396 c +%_208.3828 356.3818 210.0254 347.3057 201.6094 335.1309 c +%_196.5742 327.8457 190.4785 322.8311 190.4785 316.3145 c +%_190.4785 312.0566 192.7402 309.1602 196.168 309.1602 c +%_199.7734 309.1602 202.1055 312.248 202.1035 315.7148 c +%_202.1035 317.4629 201.5996 319.1934 200.6953 320.7607 c +%_200.6367 320.8633 200.6543 320.9902 200.7402 321.0723 c +%_200.8242 321.1523 200.9551 321.165 201.0527 321.1016 c +%_204.0254 319.1641 206.6797 315.7021 206.6797 310.8281 c +%_206.6797 303.6563 200.5469 297.6602 192.209 297.6602 c +%_183.2363 297.6602 175.8867 304.709 175.8867 314.8477 c +%_175.8867 318.3262 176.875 322.5156 179.3496 325.9805 C +%_175.9648 323.1523 174.1582 321.1523 172.6719 316.8271 C +%_162.2715 315.0186 151.166 316.6797 142.3398 322.4727 C +%_142.0859 316.3711 140.0898 311.2793 135.998 307.1533 c +%_135.9141 307.0684 135.7832 307.0547 135.6836 307.1182 c +%_135.582 307.1816 135.541 307.3066 135.5801 307.4189 c +%_138.457 315.4199 136.5234 327.6152 130.0586 337.3691 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_42.6934 330.7344 m +%_44.9375 335.5352 50.1523 338.2188 56.1543 338.3271 c +%_56.2793 338.3311 56.3867 338.2432 56.4082 338.1211 c +%_56.4316 337.998 56.3633 337.8779 56.248 337.8359 c +%_54.2012 337.082 52.5859 335.7637 51.7266 333.9258 c +%_49.5137 329.1973 53.0938 322.8301 59.7402 319.5566 c +%_59.8184 319.5186 59.8711 319.4434 59.8809 319.3594 c +%_59.8906 319.2725 59.8555 319.1885 59.791 319.1318 c +%_55.5 315.6143 50.3789 309.0781 50.3789 295.7148 c +%_50.377 277.0322 62.5332 259.25 78.6543 259.25 c +%_87.8672 259.25 95.2871 265.6465 99.125 275.2422 C +%_94.9023 269.4844 89.1445 265.1348 81.2109 265.1348 c +%_69.5703 265.1348 60.3574 277.5439 60.3555 295.459 c +%_60.3555 312.3457 72.2578 332.0518 88.1211 332.0508 c +%_96.8242 332.0488 103.3477 325.0117 103.3477 315.9277 c +%_103.3477 307.8672 98.1016 303.2637 92.2168 303.2637 c +%_87.7793 303.2637 84.7227 306.3936 83.7715 309.7871 c +%_83.7383 309.9023 83.791 310.0254 83.8965 310.0811 c +%_84.0039 310.1357 84.1328 310.1104 84.2109 310.0186 c +%_84.9629 309.124 86.1074 308.3809 87.8652 308.3809 c +%_90.8086 308.3789 92.3438 310.9082 92.3438 312.7285 c +%_92.3438 316.1836 89.7852 318.6152 85.9453 318.6152 c +%_80.7031 318.6152 76.6055 312.8564 76.6055 305.4385 c +%_76.6055 296.2236 85.4355 287.7813 94.2637 287.7813 c +%_103.2852 287.7813 112.9434 295.8408 112.9434 310.8125 c +%_112.9414 325.5234 102.9648 342.4141 87.0977 342.4141 c +%_77.8477 342.4141 69.9844 338.2441 63.9551 331.3398 c +%_63.875 331.248 63.7422 331.2246 63.6387 331.2852 c +%_63.5313 331.3477 63.4844 331.4727 63.5234 331.5879 c +%_67.957 344.5234 65.4766 356.7344 58.7031 356.7324 c +%_55.3887 356.7324 53.7012 354.3535 53.7012 351.8154 c +%_53.7012 349.21 55.5996 347.0566 58.6699 346.6611 c +%_58.791 346.6475 58.8828 346.5479 58.8926 346.4268 c +%_58.8984 346.3047 58.8184 346.1943 58.7012 346.1641 c +%_51.8867 344.4004 44.877 348.1133 44.877 355.2061 c +%_44.877 361.4854 50.2539 366.3398 57.2891 366.3398 c +%_67.9258 366.3379 73.0137 355.0684 70.748 344.8047 C +%_76.207 351.8486 84.3008 357.6396 95.9258 357.6396 c +%_119.4688 357.6396 131.3672 330.7715 131.3672 312.7285 c +%_131.3672 296.3525 128.041 285.8604 121.1309 277.8018 C +%_129.1934 283.9404 132.5195 290.7227 134.0547 300.0645 C +%_140.1953 308.5078 156.1875 308.5078 v +%_162.875 308.5078 169.1172 306.0322 173.9609 301.3438 C +%_173.9629 301.3447 173.9648 301.3477 173.9668 301.3486 C +%_174.002 301.3105 174.0391 301.2695 174.0762 301.2314 C +%_174.3965 300.915 174.7109 300.5918 175.0195 300.2578 C +%_180.0801 295.4102 190.2109 290.8633 199.4512 294.6602 c +%_199.5566 294.7031 199.6777 294.6699 199.748 294.582 c +%_199.8184 294.4932 199.8184 294.3672 199.752 294.2754 c +%_195.3457 288.252 187.7285 286.335 182.0742 287.21 C +%_183.1172 283.4941 183.6953 279.3281 183.6953 274.7305 c +%_183.6973 258.3262 174.8984 246.7598 165.2852 241.1289 C +%_168.4375 237.3281 167.7949 231.3535 164.2539 227.2949 c +%_164.1738 227.2051 164.043 227.1816 163.9375 227.2402 c +%_163.834 227.2988 163.7832 227.4238 163.8184 227.5391 c +%_165.5508 233.0703 160.4277 237.6875 153.6387 237.4395 c +%_153.5156 237.4355 153.4063 237.5195 153.3809 237.6406 c +%_153.3555 237.7617 153.418 237.8828 153.5332 237.9277 c +%_163.668 242.0918 170.3906 250.9102 170.3887 261.9355 c +%_170.3906 273.4492 163.4805 282.79 152.3496 282.79 c +%_143.2656 282.79 134.1816 274.4727 134.1816 264.1133 c +%_134.1816 256.0508 138.6582 251.3184 144.416 251.3164 c +%_149.4063 251.3184 153.373 254.7715 153.373 258.8672 c +%_153.373 264.7188 146.7891 266.8408 143.2773 262.209 c +%_143.209 262.1172 143.0859 262.084 142.9805 262.127 c +%_142.875 262.1689 142.8105 262.2773 142.8223 262.3926 c +%_143.3457 266.7813 146.5762 270.8926 151.582 270.8926 c +%_156.1875 270.8926 160.9219 267.0518 160.9219 258.8652 c +%_160.9219 249.1406 151.584 239.291 136.2305 239.2891 c +%_115.2461 239.2891 103.8594 262.959 114.0938 281.8945 C +%_108.8496 275.8809 104.1152 269.4844 104.1152 258.0977 c +%_104.1133 236.5898 125.3789 222.0488 150.4688 230.5977 c +%_150.5879 230.6367 150.7188 230.584 150.7754 230.4746 c +%_150.834 230.3633 150.8008 230.2266 150.6992 230.1523 c +%_143.6934 225.043 136.3555 217.5137 136.3555 204.873 c +%_136.3555 191.6934 145.0547 182.3535 158.6191 182.3535 c +%_169.1094 182.3535 175.7637 188.752 175.7637 196.2988 c +%_175.7637 202.0566 172.0449 206.6641 165.6563 206.6641 c +%_156.1426 206.6641 152.9082 196.3203 157.832 191.6953 c +%_157.916 191.6152 157.9355 191.4902 157.8809 191.3887 c +%_157.8242 191.2871 157.7051 191.2344 157.5938 191.2637 c +%_152.8242 192.5 148.2559 197.332 148.2559 204.6152 c +%_148.2539 217.1563 159.8965 225.4727 172.6914 225.4727 c +%_178.6875 225.4727 184.4902 223.7188 189.1641 220.4297 C +%_188.6113 216.2773 190.0313 211.6816 192.1309 208.5879 C +%_190.1816 215.457 192.291 226.7656 202.8027 226.7676 c +%_208.6953 226.7656 212.5898 222.2383 212.5898 216.8867 c +%_212.5898 210.5605 207.2441 207.6094 202.8945 208.2148 c +%_202.7793 208.2305 202.6895 208.3223 202.6758 208.4375 c +%_202.6641 208.5527 202.7305 208.6602 202.8379 208.7031 c +%_204.4238 209.3105 205.7813 210.9727 205.7813 212.9668 c +%_205.7813 215.4668 203.8691 216.9492 201.8691 216.9492 c +%_198.5762 216.9492 196.7461 213.2793 197.8984 209.2305 C +%_197.8867 209.2285 L +%_198.959 206.3926 199.5605 203.2246 199.5605 199.7363 c +%_199.5605 182.9746 181.3809 167.002 158.4395 167 c +%_134.2285 167 121.3867 184.2734 121.3887 202.0566 c +%_121.3887 211.5938 124.9688 218.8184 129.5762 223.4258 C +%_109.6543 221.3066 97.0781 229.8223 90.2969 242.1035 C +%_94.7754 245.9414 96.4375 251.5723 Y +%_91.0645 244.5352 81.8535 238.3945 68.9316 238.3945 c +%_49.3555 238.3945 34 257.5859 34 278.1836 c +%_34 291.2568 38.8027 303.9648 48.5645 312.4307 C +%_42.5273 317.459 39.918 324.8018 42.6934 330.7344 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_U +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_0 0.25 0 0 0 Xy +%_0 0 Xd +%_6 () XW +%_U +%_/ArtDictionary : +%_1 /Bool (AIPattern_Is_Repeated_Art) , +%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , +%_; +%_ +%_9 () XW +%_u +%_*u +%_0 D +%_0 O +%_0.306889 0.577478 0.779446 0.294591 0.576471 0.376471 0.215686 Xa +%_0 1 0 0 0 Xy +%_407.2622 430.3711 m +%_407.3872 430.3711 407.4927 430.4629 407.5103 430.585 c +%_409.8911 446.5996 419.1646 459.9746 431.9028 467.9814 c +%_432.0063 468.0449 432.0493 468.1758 432.0044 468.29 c +%_431.9575 468.4023 431.8384 468.4688 431.7173 468.4443 c +%_421.2466 466.3398 411.9243 460.5811 405.27 452.4141 C +%_400.645 465.7891 390.0337 474.418 376.9692 478.0654 C +%_381.7778 483.6582 379.2622 491.5986 371.8501 492.9023 c +%_371.7368 492.9229 371.6255 492.8643 371.5767 492.7607 c +%_371.5278 492.6563 371.5552 492.5322 371.6431 492.46 c +%_375.6157 489.1143 374.1626 481.04 362.3052 481.04 c +%_354.5103 481.04 349.4849 484.2188 349.4849 488.5254 c +%_349.4849 491.9102 352.5474 493.7559 355.1255 493.7559 c +%_359.5415 493.7559 362.0649 489.7949 360.1685 486.2129 c +%_360.1138 486.1104 360.1353 485.9814 360.2231 485.9033 c +%_360.311 485.8271 360.4399 485.8184 360.5376 485.8857 c +%_362.7856 487.4492 364.356 489.5059 364.356 492.6768 c +%_364.356 498.0635 359.3306 503.8066 351.0239 503.8066 c +%_342.1021 503.8066 334.0005 496.9355 334.0005 488.5254 c +%_334.0005 476.71 344.0493 471.0918 354.6138 470.0918 C +%_350.2485 468.4189 346.981 463.5664 v +%_346.9146 463.4697 346.9243 463.3418 347.0024 463.2559 c +%_347.0806 463.1689 347.2056 463.1475 347.3091 463.2012 c +%_353.1392 466.2822 359.7954 467.9453 366.811 467.9453 c +%_386.4321 467.9453 403.3579 451.541 407.0103 430.5801 c +%_407.0317 430.4561 407.1392 430.3691 407.2622 430.3711 c +%_f +%_1 D +%_483.9399 482.7773 m +%_488.5493 490.4551 490.1919 503.627 485.897 513.46 c +%_485.8481 513.5703 485.8833 513.6992 485.9829 513.7686 c +%_486.0806 513.8379 486.2153 513.8281 486.3032 513.7461 c +%_491.1099 509.1914 495.2427 498.5684 493.0083 486.2871 C +%_496.106 483.8936 498.0532 481.5176 499.522 478.335 c +%_499.5688 478.2314 499.5415 478.1104 499.4556 478.0352 c +%_499.3696 477.9629 499.2446 477.9551 499.1489 478.0186 c +%_494.1528 481.3809 489.686 482.5283 483.9399 482.7773 C +%_f +%_473.3306 362.9707 m +%_473.4009 362.8672 473.3833 362.7266 473.2915 362.6426 c +%_473.1978 362.5586 473.0571 362.5547 472.9595 362.6348 c +%_466.145 368.1621 457.0845 371.6895 445.9243 371.6895 c +%_418.3521 371.6895 400.9517 355.1719 398.2173 337.7637 c +%_398.1997 337.6523 398.1099 337.5664 397.9985 337.5508 c +%_397.8872 337.5371 397.7778 337.5977 397.7329 337.7012 c +%_395.0083 343.959 393.3657 353.0352 401.7817 365.209 c +%_406.8169 372.4941 412.9106 377.5098 412.9106 384.0273 c +%_412.9106 388.2852 410.6509 391.1797 407.2231 391.1797 c +%_403.6177 391.1797 401.2876 388.0918 401.2876 384.625 c +%_401.2876 382.877 401.7915 381.1465 402.6958 379.5801 c +%_402.7544 379.4766 402.7368 379.3496 402.6509 379.2676 c +%_402.5649 379.1875 402.436 379.1758 402.3384 379.2402 c +%_399.3657 381.1777 396.7114 384.6367 396.7114 389.5117 c +%_396.7114 396.6836 402.8442 402.6816 411.1802 402.6816 c +%_420.1548 402.6816 427.5044 395.6328 427.5044 385.4922 c +%_427.5044 382.0156 426.5142 377.8242 424.0415 374.3613 C +%_427.4263 377.1875 429.2329 379.1875 430.7192 383.5117 C +%_441.1196 385.3223 452.2251 383.6602 461.0493 377.8691 C +%_461.3052 383.9707 463.3013 389.0605 467.3931 393.1875 c +%_467.4771 393.2715 467.6079 393.2852 467.7075 393.2227 c +%_467.8091 393.1582 467.8521 393.0332 467.811 392.9219 c +%_464.9341 384.9199 466.8657 372.7246 473.3306 362.9707 c +%_f +%_560.6978 369.6055 m +%_558.4517 364.8066 553.2388 362.1211 547.2368 362.0117 c +%_547.1118 362.0098 547.0044 362.0977 546.9829 362.2188 c +%_546.9595 362.3418 547.0278 362.4609 547.1431 362.5039 c +%_549.1899 363.2578 550.8052 364.5762 551.6646 366.4141 c +%_553.8774 371.1426 550.2974 377.5098 543.6509 380.7832 c +%_543.5728 380.8223 543.52 380.8965 543.5103 380.9824 c +%_543.5005 381.0684 543.5337 381.1523 543.6001 381.207 c +%_547.8911 384.7266 553.0122 391.2617 553.0122 404.627 c +%_553.0122 423.3086 540.8579 441.0898 524.7368 441.0898 c +%_515.5239 441.0898 508.104 434.6934 504.2661 425.0977 C +%_508.4868 430.8564 514.2446 435.2051 522.1782 435.2051 c +%_533.8208 435.2051 543.0337 422.7969 543.0337 404.8828 c +%_543.0337 387.9941 531.1333 368.2891 515.2681 368.2891 c +%_506.5669 368.2891 500.0435 375.3281 500.0435 384.4121 c +%_500.0435 392.4746 505.2896 397.0781 511.1763 397.0781 c +%_515.6099 397.0781 518.6685 393.9473 519.6196 390.5527 c +%_519.6509 390.4375 519.6001 390.3164 519.4927 390.2598 c +%_519.3872 390.2051 519.2583 390.2305 519.1802 390.3223 c +%_518.4282 391.2168 517.2837 391.9609 515.5259 391.9609 c +%_512.5825 391.9609 511.0474 389.4316 511.0474 387.6113 c +%_511.0474 384.1563 513.606 381.7246 517.4458 381.7246 c +%_522.6899 381.7246 526.7856 387.4824 526.7856 394.9023 c +%_526.7856 404.1152 517.9556 412.5586 509.1274 412.5586 c +%_500.106 412.5586 490.4478 404.5 490.4478 389.5293 c +%_490.4478 374.8164 500.4282 357.9258 516.2935 357.9258 c +%_525.5435 357.9258 533.4048 362.0957 539.436 369.002 c +%_539.5161 369.0918 539.6489 369.1152 539.7544 369.0547 c +%_539.8599 368.9941 539.9067 368.8672 539.8677 368.752 c +%_535.4341 355.8164 537.9126 343.6074 544.688 343.6074 c +%_548.0024 343.6074 549.6899 345.9863 549.6899 348.5234 c +%_549.6899 351.1309 547.7915 353.2852 544.7212 353.6777 c +%_544.6001 353.6934 544.5063 353.793 544.4985 353.9141 c +%_544.4927 354.0352 544.5708 354.1465 544.6899 354.1758 c +%_551.5044 355.9395 558.5142 352.2285 558.5142 345.1328 c +%_558.5142 338.8555 553.1372 334.002 546.1021 334.002 c +%_535.4653 334.002 530.3774 345.2715 532.6431 355.5371 C +%_527.1841 348.4922 519.0903 342.7012 507.4653 342.7012 c +%_483.9224 342.7012 472.0239 369.5703 472.0239 387.6113 c +%_472.0239 403.9883 475.3501 414.4785 482.2603 422.5391 C +%_474.1978 416.3984 470.8716 409.6172 469.3384 400.2773 C +%_463.1958 391.832 447.2036 391.832 v +%_440.5161 391.832 434.2739 394.3086 429.4302 398.998 C +%_429.4282 398.9961 429.4263 398.9941 429.4243 398.9902 C +%_429.3892 399.0313 429.3501 399.0703 429.3149 399.1094 C +%_428.9946 399.4238 428.6802 399.748 428.3716 400.082 C +%_423.3091 404.9316 413.1802 409.4785 403.9399 405.6797 c +%_403.8345 405.6367 403.7134 405.6699 403.6431 405.7578 c +%_403.5728 405.8477 403.5708 405.9727 403.6392 406.0645 c +%_408.0454 412.0898 415.6626 414.0059 421.3169 413.1309 C +%_420.272 416.8457 419.6938 421.0117 419.6938 425.6094 c +%_419.6938 442.0137 428.4927 453.5801 438.106 459.2109 C +%_434.9517 463.0137 435.5962 468.9883 439.1372 473.0449 c +%_439.2173 473.1357 439.3481 473.1582 439.4536 473.0996 c +%_439.5571 473.041 439.606 472.918 439.5708 472.8018 c +%_437.8403 467.2695 442.9634 462.6523 449.7524 462.9004 c +%_449.8755 462.9033 449.9829 462.8193 450.0103 462.6992 c +%_450.0356 462.5801 449.9712 462.457 449.8579 462.4111 c +%_439.7212 458.248 433.0005 449.4316 433.0005 438.4033 c +%_433.0005 426.8906 439.9087 417.5488 451.0415 417.5488 c +%_460.1255 417.5488 469.2095 425.8672 469.2095 436.2285 c +%_469.2095 444.2891 464.731 449.0225 458.9731 449.0225 c +%_453.9849 449.0225 450.0181 445.5684 450.0181 441.4736 c +%_450.0181 435.6211 456.6001 433.499 460.1118 438.1309 c +%_460.1821 438.2227 460.3032 438.2559 460.4087 438.2129 c +%_460.5161 438.1699 460.5806 438.0625 460.5669 437.9482 c +%_460.0435 433.5586 456.8149 429.4482 451.8091 429.4482 c +%_447.2036 429.4482 442.4692 433.2861 442.4692 441.4746 c +%_442.4692 451.1982 451.8071 461.0508 467.1606 461.0508 c +%_488.1431 461.0508 499.5317 437.3809 489.2974 418.4453 C +%_494.5415 424.459 499.2759 430.8555 499.2759 442.2432 c +%_499.2759 463.75 478.0122 478.291 452.9224 469.7441 c +%_452.8032 469.7021 452.6724 469.7559 452.6157 469.8672 c +%_452.5571 469.9785 452.5884 470.1143 452.6899 470.1895 c +%_459.6958 475.2979 467.0337 482.8262 467.0337 495.4668 c +%_467.0337 508.6475 458.3345 517.9854 444.772 517.9854 c +%_434.2798 517.9854 427.6274 511.5879 427.6274 504.04 c +%_427.6274 498.2822 431.3462 493.6768 437.7349 493.6768 c +%_447.2466 493.6768 450.481 504.0195 445.5591 508.6445 c +%_445.4751 508.7236 445.4556 508.8516 445.5103 508.9521 c +%_445.5669 509.0547 445.6841 509.1055 445.7974 509.0762 c +%_450.5669 507.8398 455.1353 503.0068 455.1353 495.7236 c +%_455.1353 483.1855 443.4927 474.8682 430.6978 474.8682 c +%_424.7017 474.8682 418.8989 476.623 414.2271 479.9102 C +%_414.7778 484.0635 413.3579 488.6602 411.2603 491.752 C +%_413.2095 484.8848 411.1021 473.5732 400.5864 473.5732 c +%_394.6958 473.5732 390.8013 478.1025 390.8013 483.4551 c +%_390.8013 489.7793 396.147 492.7314 400.4966 492.125 c +%_400.6118 492.1104 400.7017 492.0186 400.7134 491.9023 c +%_400.7271 491.7891 400.6606 491.6797 400.5532 491.6367 c +%_398.9673 491.0293 397.6118 489.3691 397.6118 487.373 c +%_397.6118 484.873 399.52 483.3906 401.52 483.3906 c +%_404.8149 483.3906 406.645 487.0605 405.4927 491.1104 C +%_405.5044 491.1104 L +%_404.4321 493.9473 403.8286 497.1152 403.8286 500.6055 c +%_403.8286 517.3672 422.0103 533.3398 444.9497 533.3398 c +%_469.1626 533.3398 482.0044 516.0664 482.0044 498.2822 c +%_482.0044 488.7461 478.4224 481.5225 473.8149 476.915 C +%_493.7368 479.0332 506.313 470.5176 513.0942 458.2354 C +%_508.6157 454.3975 506.9536 448.7676 Y +%_512.3267 455.8057 521.5376 461.9453 534.4595 461.9453 c +%_554.0356 461.9453 569.3911 442.7539 569.3911 422.1563 c +%_569.3911 409.084 564.5884 396.375 554.8267 387.9102 C +%_560.8638 382.8809 563.4731 375.5391 560.6978 369.6055 c +%_f +%_*U +%_*u +%_0 D +%_1 0.2 0 0 0 Xy +%_482.2114 494.9053 m +%_482.1782 494.7852 482.2388 494.6582 482.3521 494.6094 c +%_497.1763 488.0957 507.6372 475.6289 512.0063 461.2324 c +%_512.0415 461.1152 512.1548 461.0391 512.2778 461.0527 c +%_512.3989 461.0664 512.4946 461.166 512.5024 461.2871 c +%_513.229 471.9434 510.1274 482.4531 504.0005 491.0234 C +%_518.1216 491.9648 529.2407 499.9297 536.1997 511.5723 C +%_540.3286 505.46 548.6509 505.7969 551.8599 512.6035 c +%_551.9106 512.708 551.8833 512.832 551.7954 512.9063 c +%_551.7075 512.9805 551.5806 512.9873 551.4868 512.9219 c +%_547.2134 509.9688 539.8071 513.498 542.9282 524.9355 c +%_544.981 532.4561 549.3716 536.4668 553.5259 535.333 c +%_556.7915 534.4414 557.7661 531.002 557.0864 528.5146 c +%_555.9243 524.2539 551.438 522.8623 548.481 525.6357 c +%_548.397 525.7158 548.2681 525.7285 548.1704 525.6641 c +%_548.0728 525.5986 548.0298 525.4775 548.0688 525.3662 c +%_548.9868 522.7852 550.5571 520.7285 553.6157 519.8936 c +%_558.811 518.4756 565.6743 521.8115 567.8618 529.8252 c +%_570.2114 538.4316 565.7153 548.0566 557.604 550.2715 c +%_546.2036 553.3818 538.1392 545.166 534.3931 535.2383 C +%_533.9263 539.8896 530.1079 544.3203 v +%_530.0317 544.4092 529.9048 544.4336 529.8013 544.3818 c +%_529.6978 544.3291 529.6431 544.2129 529.6665 544.0996 c +%_531.106 537.6641 530.9575 530.8047 529.1099 524.0361 c +%_523.9438 505.1074 503.6626 493.0977 482.479 495.0938 c +%_482.354 495.1055 482.2407 495.0254 482.2114 494.9053 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_512.5806 407.1348 m +%_518.7739 400.666 531.0493 395.6133 541.6646 397.168 c +%_541.7856 397.1855 541.9009 397.1172 541.9399 397.0039 c +%_541.981 396.8906 541.936 396.7637 541.8345 396.7012 c +%_536.1743 393.2617 524.8384 392.0723 513.5786 397.4609 C +%_510.4536 395.1035 507.6489 393.8496 504.1919 393.2715 c +%_504.0806 393.2539 503.9692 393.3125 503.9204 393.4141 c +%_503.8735 393.5156 503.8989 393.6387 503.9849 393.7148 c +%_508.5454 397.6484 510.8286 401.6563 512.5806 407.1348 C +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_399.7935 448.9121 m +%_399.6763 448.8711 399.5454 448.9258 399.4888 449.0371 c +%_399.4321 449.1484 399.4653 449.2852 399.5688 449.3594 c +%_406.6938 454.4785 412.4829 462.291 415.4204 473.0566 c +%_422.6802 499.6563 411.3267 520.7921 395.2544 528.0146 c +%_395.1509 528.0605 395.0903 528.1689 395.106 528.2803 c +%_395.1216 528.3926 395.2095 528.4814 395.3208 528.4971 c +%_402.0747 529.4785 411.2622 528.6729 420.7915 517.3486 c +%_426.4927 510.5732 429.7271 503.373 436.0142 501.6563 c +%_440.1216 500.5352 443.5103 501.9551 444.4126 505.2617 c +%_445.3618 508.7393 442.9966 511.8018 439.6528 512.7148 c +%_437.9653 513.1738 436.1626 513.1436 434.4146 512.6836 c +%_434.2993 512.6533 434.1821 512.7051 434.1255 512.8086 c +%_434.0708 512.9121 434.0923 513.04 434.1802 513.1172 c +%_436.8325 515.4746 440.8677 517.125 445.5708 515.8408 c +%_452.4907 513.9531 456.6606 506.457 454.4673 498.415 c +%_452.104 489.7578 443.3696 484.5234 433.5864 487.1934 c +%_430.2329 488.1084 426.4497 490.168 423.7603 493.4648 C +%_425.5942 489.4551 427.0493 487.1855 430.8286 484.6133 C +%_429.8364 474.1035 425.3091 463.8271 417.4009 456.8389 C +%_423.2192 454.9863 427.604 451.7207 430.5083 446.6855 c +%_430.5669 446.582 430.5454 446.4531 430.4595 446.373 c +%_430.3696 446.293 430.2388 446.2832 430.1411 446.3535 c +%_423.1802 451.2344 410.9048 452.582 399.7935 448.9121 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_383.1919 362.8809 m +%_379.1548 366.3105 377.936 372.0469 379.4106 377.8672 c +%_379.4419 377.9883 379.5552 378.0684 379.6782 378.0566 c +%_379.8032 378.0469 379.8989 377.9492 379.9106 377.8281 c +%_380.0981 375.6543 380.9458 373.748 382.4927 372.4355 c +%_386.4712 369.0566 393.5571 370.834 398.4634 376.3828 c +%_398.522 376.4492 398.6079 376.4805 398.6938 376.4668 c +%_398.7798 376.4531 398.8521 376.3984 398.8872 376.3203 c +%_401.1528 371.2539 406.1079 364.5938 419.0005 361.0742 c +%_437.0239 356.1563 457.3794 363.1992 461.6235 378.752 c +%_464.0493 387.6406 459.8306 396.4824 451.5845 402.7109 C +%_456.0298 397.123 458.7075 390.4238 456.6177 382.7695 c +%_453.5532 371.5391 439.1567 365.918 421.8755 370.6348 c +%_405.5825 375.0801 389.7075 391.748 393.8833 407.0547 c +%_396.1743 415.4492 404.6821 419.8887 413.4458 417.4961 c +%_421.2231 415.375 424.2837 409.1016 422.7329 403.4219 c +%_421.5669 399.1445 417.7407 397.0195 414.2153 396.9941 c +%_414.0962 396.9941 413.9927 397.0762 413.9653 397.1934 c +%_413.9419 397.3105 413.9985 397.4277 414.1079 397.4785 c +%_415.1704 397.9688 416.188 398.877 416.6509 400.5742 c +%_417.4263 403.4121 415.3911 405.5605 413.6353 406.0391 c +%_410.3032 406.9492 407.2837 405.1211 406.272 401.416 c +%_404.8911 396.3574 409.3677 390.8906 416.5239 388.9355 c +%_425.4126 386.5117 435.8833 392.8066 438.2075 401.3223 c +%_440.5825 410.0254 435.3501 421.4648 420.9087 425.4063 c +%_406.7153 429.2813 387.7935 424.0996 383.6157 408.793 c +%_381.1802 399.8691 383.1333 391.1875 388.2075 383.5508 c +%_388.2739 383.4512 388.2622 383.3164 388.1763 383.2305 c +%_388.0884 383.1445 387.9536 383.1328 387.854 383.2012 c +%_376.5415 390.8828 364.1118 391.707 362.3267 385.1699 c +%_361.4536 381.9727 363.3052 379.7188 365.7524 379.0508 c +%_368.2681 378.3652 370.8462 379.6289 372.0337 382.4883 c +%_372.0806 382.5996 372.2017 382.6641 372.3208 382.6406 c +%_372.438 382.6133 372.5259 382.5098 372.522 382.3867 c +%_372.4302 375.3477 367.0044 369.5625 360.1587 371.4316 c +%_354.1021 373.084 350.8364 379.5488 352.688 386.3359 c +%_355.4888 396.5977 367.6997 398.5391 377.0063 393.6504 C +%_371.647 400.7715 368.1919 410.1035 371.2524 421.3184 c +%_377.4517 444.0313 406.5044 448.4355 423.9087 443.6855 c +%_439.7075 439.373 448.9517 433.4023 454.9087 424.6152 C +%_451.1079 434.0098 445.4419 439.0039 436.8345 442.9434 C +%_430.3052 451.0918 434.5161 466.5195 v +%_436.2759 472.9707 440.3091 478.3418 446.1079 481.7793 C +%_446.1079 481.7813 446.106 481.7842 446.1021 481.7871 C +%_446.1509 481.8105 446.1997 481.8379 446.2466 481.8613 C +%_446.6333 482.0879 447.0298 482.3057 447.4321 482.5146 C +%_453.4438 486.1211 460.4966 494.6973 459.2661 504.6113 c +%_459.2524 504.7236 459.3149 504.832 459.4185 504.877 c +%_459.5239 504.9219 459.645 504.8896 459.7153 504.8018 c +%_464.3677 498.9629 464.2114 491.1104 461.8794 485.8857 C +%_465.7368 485.915 469.9087 485.375 474.3442 484.165 c +%_490.1685 479.8457 499.0122 468.3135 501.9126 457.5566 C +%_506.4106 459.5977 512.0063 457.4043 514.9888 452.9199 c +%_515.0532 452.8184 515.0415 452.6855 514.9575 452.5996 c +%_514.8735 452.5156 514.7407 452.5 514.6392 452.5645 c +%_509.7583 455.6914 503.9556 451.9648 502.4048 445.3496 c +%_502.3774 445.2305 502.2681 445.1484 502.145 445.1543 c +%_502.022 445.1602 501.9204 445.2539 501.9067 445.377 c +%_500.5591 456.251 493.8228 465.0566 483.1841 467.96 c +%_472.0767 470.9922 461.2446 466.7852 458.3149 456.0469 c +%_455.9224 447.2832 461.5571 436.3301 471.5513 433.6016 c +%_479.3286 431.4785 485.0747 434.5527 486.5903 440.1074 c +%_487.9048 444.9199 485.6157 449.6563 481.6665 450.7344 c +%_476.0181 452.2754 472.2388 446.4844 475.7837 441.877 c +%_475.8521 441.7852 475.854 441.6602 475.7837 441.5684 c +%_475.7153 441.4766 475.5923 441.4434 475.4868 441.4863 c +%_471.3892 443.1465 468.2739 447.3418 469.5923 452.1729 c +%_470.8052 456.6152 475.7544 460.1729 483.6548 458.0166 c +%_493.0356 455.457 500.0806 443.8555 496.0376 429.043 c +%_490.5142 408.7988 464.6802 404.0449 449.1079 418.9043 C +%_453.5278 412.2617 458.4517 406.0098 469.438 403.0117 c +%_490.188 397.3496 509.813 414.0332 508.1724 440.4902 c +%_508.1646 440.6152 508.2505 440.7285 508.3735 440.7539 c +%_508.4946 440.7813 508.6196 440.7129 508.6646 440.5977 c +%_511.7466 432.4922 517.0786 423.4316 529.2739 420.1035 c +%_541.9888 416.6328 553.2876 422.5664 556.8599 435.6504 c +%_559.6216 445.7734 555.2017 453.875 547.9204 455.8623 c +%_542.3657 457.3789 536.9419 455.0039 535.2603 448.8398 c +%_532.7563 439.6641 541.8833 433.8203 547.6411 437.3516 c +%_547.7388 437.4121 547.8677 437.3965 547.9497 437.3164 c +%_548.0337 437.2363 548.0513 437.1094 547.9927 437.0078 c +%_545.5454 432.7324 539.6802 429.5977 532.6548 431.5156 c +%_520.5571 434.8164 515.6001 448.2383 518.9673 460.5811 c +%_520.5454 466.3652 523.7681 471.502 528.1685 475.1426 C +%_532.0298 473.5186 536.8384 473.6777 540.3735 474.8867 C +%_533.2349 474.8154 522.8794 479.8262 525.647 489.9707 c +%_527.1978 495.6533 532.5923 498.2188 537.7563 496.8086 c +%_543.8579 495.1436 545.2974 489.21 543.5688 485.1729 c +%_543.522 485.0654 543.4106 485.0039 543.2974 485.0225 c +%_543.1821 485.04 543.0942 485.1318 543.0825 485.2471 c +%_542.9146 486.9375 541.6685 488.6836 539.7446 489.208 c +%_537.3325 489.8662 535.3989 488.415 534.8735 486.4854 c +%_534.0044 483.3066 537.063 480.5752 541.2739 480.6211 C +%_541.27 480.6094 L +%_544.2896 480.8984 547.5044 480.6445 550.8716 479.7266 c +%_567.0415 475.3125 577.6646 453.5674 571.6235 431.4375 c +%_565.2485 408.0781 545.2056 400.2363 528.0474 404.9199 c +%_518.8481 407.4297 512.8228 412.7871 509.5903 418.4453 C +%_506.3892 398.668 494.8618 388.7793 481.229 385.4707 C +%_478.7056 390.8008 473.7114 393.8867 Y +%_479.0864 386.8496 482.5845 376.3477 479.1821 363.8809 c +%_474.0278 344.9961 451.4712 335.2344 431.6001 340.6582 c +%_418.9888 344.0996 407.9927 352.0801 402.397 363.7266 C +%_395.9556 359.2266 388.186 358.6406 383.1919 362.8809 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_u +%_*u +%_0 D +%_0 0 0 0 1 1 1 Xa +%_0 1 0 0 0 Xy +%_530.1294 436.9688 m +%_530.0044 436.9688 529.8989 436.877 529.8794 436.7539 c +%_527.5005 420.7402 518.2271 407.3652 505.4888 399.3594 c +%_505.3853 399.2949 505.3403 399.1641 505.3872 399.0508 c +%_505.4321 398.9375 505.5532 398.8711 505.6724 398.8965 c +%_516.145 401 525.4653 406.7598 532.1216 414.9277 C +%_536.7466 401.5508 547.3579 392.9219 560.4224 389.2734 C +%_555.6138 383.6816 558.1294 375.7402 565.5415 374.4375 c +%_565.6548 374.416 565.7661 374.4746 565.8149 374.5781 c +%_565.8638 374.6816 565.8364 374.8066 565.7485 374.8809 c +%_561.7759 378.2266 563.229 386.3008 575.0864 386.3008 c +%_582.8804 386.3008 587.9077 383.1211 587.9077 378.8145 c +%_587.9077 375.4297 584.8452 373.584 582.2651 373.584 c +%_577.8511 373.584 575.3267 377.5449 577.2231 381.127 c +%_577.2778 381.2305 577.2563 381.3574 577.1685 381.4355 c +%_577.0806 381.5137 576.9517 381.5215 576.854 381.4551 c +%_574.606 379.8906 573.0356 377.834 573.0356 374.6641 c +%_573.0356 369.2773 578.062 363.5352 586.3687 363.5332 c +%_595.2905 363.5332 603.3921 370.4043 603.3921 378.8145 c +%_603.3921 390.6309 593.3433 396.248 582.7788 397.248 C +%_587.144 398.9219 590.4116 403.7734 v +%_590.478 403.8691 590.4683 403.998 590.3901 404.084 c +%_590.312 404.1719 590.1851 404.1934 590.0835 404.1387 c +%_584.2534 401.0566 577.5942 399.3945 570.5806 399.3945 c +%_550.9575 399.3945 534.0337 415.7988 530.3813 436.7607 c +%_530.3599 436.8818 530.2524 436.9727 530.1294 436.9688 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_453.4517 384.5625 m +%_448.8442 376.8867 447.1997 363.7129 451.4946 353.8809 c +%_451.5435 353.7695 451.5083 353.6406 451.4087 353.5703 c +%_451.3091 353.502 451.1763 353.5117 451.0884 353.5957 c +%_446.2817 358.1484 442.1489 368.7715 444.3833 381.0527 C +%_441.2876 383.4473 439.3384 385.8223 437.8696 389.0059 c +%_437.8228 389.1074 437.8501 389.2305 437.936 389.3047 c +%_438.022 389.377 438.147 389.3848 438.2427 389.3203 c +%_443.2388 385.959 447.7056 384.8125 453.4517 384.5625 C +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_464.0591 504.3691 m +%_463.9907 504.4727 464.0083 504.6133 464.1001 504.6973 c +%_464.1938 504.7813 464.3345 504.7852 464.4321 504.7061 c +%_471.2466 499.1797 480.3071 495.6504 491.4673 495.6504 c +%_519.0376 495.6504 536.4399 512.1689 539.1743 529.5771 c +%_539.1919 529.6885 539.2817 529.7734 539.3931 529.7891 c +%_539.5044 529.8047 539.6138 529.7422 539.6587 529.6396 c +%_542.3833 523.3818 544.0259 514.3057 535.6099 502.1309 c +%_530.5747 494.8457 524.479 489.8311 524.479 483.3145 c +%_524.479 479.0566 526.7407 476.1602 530.1685 476.1602 c +%_533.7739 476.1602 536.106 479.248 536.104 482.7148 c +%_536.104 484.4629 535.6001 486.1934 534.6958 487.7607 c +%_534.6372 487.8633 534.6548 487.9902 534.7407 488.0723 c +%_534.8247 488.1523 534.9556 488.165 535.0532 488.1016 c +%_538.0259 486.1641 540.6802 482.7021 540.6802 477.8281 c +%_540.6802 470.6563 534.5474 464.6602 526.2095 464.6602 c +%_517.2368 464.6602 509.8872 471.709 509.8872 481.8477 c +%_509.8872 485.3262 510.8755 489.5156 513.3501 492.9805 C +%_509.9653 490.1523 508.1587 488.1523 506.6724 483.8271 C +%_496.272 482.0186 485.1665 483.6797 476.3403 489.4727 C +%_476.0864 483.3711 474.0903 478.2793 469.9985 474.1533 c +%_469.9146 474.0684 469.7837 474.0547 469.6841 474.1182 c +%_469.5825 474.1816 469.5415 474.3066 469.5806 474.4189 c +%_472.4575 482.4199 470.5239 494.6152 464.0591 504.3691 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_376.6938 497.7344 m +%_378.938 502.5352 384.1528 505.2188 390.1548 505.3271 c +%_390.2798 505.3311 390.3872 505.2432 390.4087 505.1211 c +%_390.4321 504.998 390.3638 504.8779 390.2485 504.8359 c +%_388.2017 504.082 386.5864 502.7637 385.7271 500.9258 c +%_383.5142 496.1973 387.0942 489.8301 393.7407 486.5566 c +%_393.8188 486.5186 393.8716 486.4434 393.8813 486.3594 c +%_393.8911 486.2725 393.856 486.1885 393.7915 486.1318 c +%_389.5005 482.6143 384.3794 476.0781 384.3794 462.7148 c +%_384.3774 444.0322 396.5337 426.25 412.6548 426.25 c +%_421.8677 426.25 429.2876 432.6465 433.1255 442.2422 C +%_428.9028 436.4844 423.145 432.1348 415.2114 432.1348 c +%_403.5708 432.1348 394.3579 444.5439 394.356 462.459 c +%_394.356 479.3457 406.2583 499.0518 422.1216 499.0508 c +%_430.8247 499.0488 437.3481 492.0117 437.3481 482.9277 c +%_437.3481 474.8672 432.1021 470.2637 426.2173 470.2637 c +%_421.7798 470.2637 418.7231 473.3936 417.772 476.7871 c +%_417.7388 476.9023 417.7915 477.0254 417.897 477.0811 c +%_418.0044 477.1357 418.1333 477.1104 418.2114 477.0186 c +%_418.9634 476.124 420.1079 475.3809 421.8657 475.3809 c +%_424.8091 475.3789 426.3442 477.9082 426.3442 479.7285 c +%_426.3442 483.1836 423.7856 485.6152 419.9458 485.6152 c +%_414.7036 485.6152 410.606 479.8564 410.606 472.4385 c +%_410.606 463.2236 419.436 454.7813 428.2642 454.7813 c +%_437.2856 454.7813 446.9438 462.8408 446.9438 477.8125 c +%_446.9419 492.5234 436.9653 509.4141 421.0981 509.4141 c +%_411.8481 509.4141 403.9849 505.2441 397.9556 498.3398 c +%_397.8755 498.248 397.7427 498.2246 397.6392 498.2852 c +%_397.5317 498.3477 397.4849 498.4727 397.5239 498.5879 c +%_401.9575 511.5234 399.4771 523.7344 392.7036 523.7324 c +%_389.3892 523.7324 387.7017 521.3535 387.7017 518.8154 c +%_387.7017 516.21 389.6001 514.0566 392.6704 513.6611 c +%_392.7915 513.6475 392.8833 513.5479 392.8931 513.4268 c +%_392.8989 513.3047 392.8188 513.1943 392.7017 513.1641 c +%_385.8872 511.4004 378.8774 515.1133 378.8774 522.2061 c +%_378.8774 528.4854 384.2544 533.3398 391.2896 533.3398 c +%_401.9263 533.3379 407.0142 522.0684 404.7485 511.8047 C +%_410.2075 518.8486 418.3013 524.6396 429.9263 524.6396 c +%_453.4692 524.6396 465.3677 497.7715 465.3677 479.7285 c +%_465.3677 463.3525 462.0415 452.8604 455.1313 444.8018 C +%_463.1938 450.9404 466.52 457.7227 468.0552 467.0645 C +%_474.1958 475.5078 490.188 475.5078 v +%_496.8755 475.5078 503.1177 473.0322 507.9614 468.3438 C +%_507.9634 468.3447 507.9653 468.3477 507.9673 468.3486 C +%_508.0024 468.3105 508.0396 468.2695 508.0767 468.2314 C +%_508.397 467.915 508.7114 467.5918 509.02 467.2578 C +%_514.0806 462.4102 524.2114 457.8633 533.4517 461.6602 c +%_533.5571 461.7031 533.6782 461.6699 533.7485 461.582 c +%_533.8188 461.4932 533.8188 461.3672 533.7524 461.2754 c +%_529.3462 455.252 521.729 453.335 516.0747 454.21 C +%_517.1177 450.4941 517.6958 446.3281 517.6958 441.7305 c +%_517.6978 425.3262 508.8989 413.7598 499.2856 408.1289 C +%_502.438 404.3281 501.7954 398.3535 498.2544 394.2949 c +%_498.1743 394.2051 498.0435 394.1816 497.938 394.2402 c +%_497.8345 394.2988 497.7837 394.4238 497.8188 394.5391 c +%_499.5513 400.0703 494.4282 404.6875 487.6392 404.4395 c +%_487.5161 404.4355 487.4067 404.5195 487.3813 404.6406 c +%_487.356 404.7617 487.4185 404.8828 487.5337 404.9277 c +%_497.6685 409.0918 504.3911 417.9102 504.3892 428.9355 c +%_504.3911 440.4492 497.481 449.79 486.3501 449.79 c +%_477.2661 449.79 468.1821 441.4727 468.1821 431.1133 c +%_468.1821 423.0508 472.6587 418.3184 478.4165 418.3164 c +%_483.4067 418.3184 487.3735 421.7715 487.3735 425.8672 c +%_487.3735 431.7188 480.7896 433.8408 477.2778 429.209 c +%_477.2095 429.1172 477.0864 429.084 476.981 429.127 c +%_476.8755 429.1689 476.811 429.2773 476.8228 429.3926 c +%_477.3462 433.7813 480.5767 437.8926 485.5825 437.8926 c +%_490.188 437.8926 494.9224 434.0518 494.9224 425.8652 c +%_494.9224 416.1406 485.5845 406.291 470.231 406.2891 c +%_449.2466 406.2891 437.8599 429.959 448.0942 448.8945 C +%_442.8501 442.8809 438.1157 436.4844 438.1157 425.0977 c +%_438.1138 403.5898 459.3794 389.0488 484.4692 397.5977 c +%_484.5884 397.6367 484.7192 397.584 484.7759 397.4746 c +%_484.8345 397.3633 484.8013 397.2266 484.6997 397.1523 c +%_477.6938 392.043 470.356 384.5137 470.356 371.873 c +%_470.356 358.6934 479.0552 349.3535 492.6196 349.3535 c +%_503.1099 349.3535 509.7642 355.752 509.7642 363.2988 c +%_509.7642 369.0566 506.0454 373.6641 499.6567 373.6641 c +%_490.1431 373.6641 486.9087 363.3203 491.8325 358.6953 c +%_491.9165 358.6152 491.936 358.4902 491.8813 358.3887 c +%_491.8247 358.2871 491.7056 358.2344 491.5942 358.2637 c +%_486.8247 359.5 482.2563 364.332 482.2563 371.6152 c +%_482.2544 384.1563 493.897 392.4727 506.6919 392.4727 c +%_512.688 392.4727 518.4907 390.7188 523.1646 387.4297 C +%_522.6118 383.2773 524.0317 378.6816 526.1313 375.5879 C +%_524.1821 382.457 526.2915 393.7656 536.8032 393.7676 c +%_542.6958 393.7656 546.5903 389.2383 546.5903 383.8867 c +%_546.5903 377.5605 541.2446 374.6094 536.895 375.2148 c +%_536.7798 375.2305 536.6899 375.3223 536.6763 375.4375 c +%_536.6646 375.5527 536.731 375.6602 536.8384 375.7031 c +%_538.4243 376.3105 539.7817 377.9727 539.7817 379.9668 c +%_539.7817 382.4668 537.8696 383.9492 535.8696 383.9492 c +%_532.5767 383.9492 530.7466 380.2793 531.8989 376.2305 C +%_531.8872 376.2285 L +%_532.9595 373.3926 533.561 370.2246 533.561 366.7363 c +%_533.561 349.9746 515.3813 334.002 492.4399 334 c +%_468.229 334 455.3872 351.2734 455.3892 369.0566 c +%_455.3892 378.5938 458.9692 385.8184 463.5767 390.4258 C +%_443.6548 388.3066 431.0786 396.8223 424.2974 409.1035 C +%_428.7759 412.9414 430.438 418.5723 Y +%_425.0649 411.5352 415.854 405.3945 402.9321 405.3945 c +%_383.356 405.3945 368.0005 424.5859 368.0005 445.1836 c +%_368.0005 458.2568 372.8032 470.9648 382.5649 479.4307 C +%_376.5278 484.459 373.9185 491.8018 376.6938 497.7344 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_U +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_0 0.25 0 0 0 Xy +%_0 0 Xd +%_6 () XW +%_U +%_/ArtDictionary : +%_1 /Bool (AIPattern_Is_Repeated_Art) , +%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , +%_; +%_ +%_9 () XW +%_u +%_*u +%_0 D +%_0 O +%_0.306889 0.577478 0.779446 0.294591 0.576471 0.376471 0.215686 Xa +%_0 1 0 0 0 Xy +%_240.2622 430.3711 m +%_240.3872 430.3711 240.4927 430.4629 240.5103 430.585 c +%_242.8911 446.5996 252.1646 459.9746 264.9028 467.9814 c +%_265.0063 468.0449 265.0493 468.1758 265.0044 468.29 c +%_264.9575 468.4023 264.8384 468.4688 264.7173 468.4443 c +%_254.2466 466.3398 244.9243 460.5811 238.27 452.4141 C +%_233.644 465.7891 223.0337 474.418 209.9692 478.0654 C +%_214.7778 483.6582 212.2622 491.5986 204.8501 492.9023 c +%_204.7368 492.9229 204.6245 492.8643 204.5757 492.7607 c +%_204.5278 492.6563 204.5542 492.5322 204.6421 492.46 c +%_208.6157 489.1143 207.1616 481.04 195.3052 481.04 c +%_187.5103 481.04 182.4849 484.2188 182.4849 488.5254 c +%_182.4849 491.9102 185.5464 493.7559 188.1255 493.7559 c +%_192.5415 493.7559 195.0649 489.7949 193.1675 486.2129 c +%_193.1128 486.1104 193.1353 485.9814 193.2231 485.9033 c +%_193.311 485.8271 193.4399 485.8184 193.5366 485.8857 c +%_195.7856 487.4492 197.356 489.5059 197.356 492.6768 c +%_197.356 498.0635 192.3306 503.8066 184.0239 503.8066 c +%_175.1021 503.8066 167.0005 496.9355 167.0005 488.5254 c +%_167.0005 476.71 177.0493 471.0918 187.6138 470.0918 C +%_183.2485 468.4189 179.98 463.5664 v +%_179.9146 463.4697 179.9243 463.3418 180.0015 463.2559 c +%_180.0796 463.1689 180.2056 463.1475 180.3091 463.2012 c +%_186.1392 466.2822 192.7954 467.9453 199.811 467.9453 c +%_219.4321 467.9453 236.3579 451.541 240.0103 430.5801 c +%_240.0317 430.4561 240.1382 430.3691 240.2622 430.3711 c +%_f +%_1 D +%_316.9399 482.7773 m +%_321.5493 490.4551 323.1919 503.627 318.897 513.46 c +%_318.8481 513.5703 318.8833 513.6992 318.9829 513.7686 c +%_319.0806 513.8379 319.2153 513.8281 319.3032 513.7461 c +%_324.1099 509.1914 328.2427 498.5684 326.0083 486.2871 C +%_329.106 483.8936 331.0532 481.5176 332.522 478.335 c +%_332.5688 478.2314 332.5415 478.1104 332.4556 478.0352 c +%_332.3696 477.9629 332.2446 477.9551 332.1489 478.0186 c +%_327.1528 481.3809 322.686 482.5283 316.9399 482.7773 C +%_f +%_306.3306 362.9707 m +%_306.4009 362.8672 306.3833 362.7266 306.2915 362.6426 c +%_306.1978 362.5586 306.0571 362.5547 305.9595 362.6348 c +%_299.145 368.1621 290.0845 371.6895 278.9243 371.6895 c +%_251.3521 371.6895 233.9517 355.1719 231.2163 337.7637 c +%_231.1987 337.6523 231.1099 337.5664 230.9985 337.5508 c +%_230.8862 337.5371 230.7778 337.5977 230.7329 337.7012 c +%_228.0073 343.959 226.3657 353.0352 234.7817 365.209 c +%_239.8159 372.4941 245.9106 377.5098 245.9106 384.0273 c +%_245.9106 388.2852 243.6509 391.1797 240.2231 391.1797 c +%_236.6177 391.1797 234.2866 388.0918 234.2866 384.625 c +%_234.2866 382.877 234.7915 381.1465 235.6958 379.5801 c +%_235.7544 379.4766 235.7358 379.3496 235.6509 379.2676 c +%_235.5649 379.1875 235.436 379.1758 235.3384 379.2402 c +%_232.3657 381.1777 229.7114 384.6367 229.7114 389.5117 c +%_229.7114 396.6836 235.8442 402.6816 244.1802 402.6816 c +%_253.1548 402.6816 260.5044 395.6328 260.5044 385.4922 c +%_260.5044 382.0156 259.5142 377.8242 257.0415 374.3613 C +%_260.4263 377.1875 262.2329 379.1875 263.7192 383.5117 C +%_274.1196 385.3223 285.2251 383.6602 294.0493 377.8691 C +%_294.3052 383.9707 296.3013 389.0605 300.3931 393.1875 c +%_300.4771 393.2715 300.6079 393.2852 300.7075 393.2227 c +%_300.8091 393.1582 300.8521 393.0332 300.811 392.9219 c +%_297.9341 384.9199 299.8657 372.7246 306.3306 362.9707 c +%_f +%_393.6978 369.6055 m +%_391.4517 364.8066 386.2388 362.1211 380.2368 362.0117 c +%_380.1118 362.0098 380.0044 362.0977 379.9829 362.2188 c +%_379.9595 362.3418 380.0278 362.4609 380.1431 362.5039 c +%_382.1899 363.2578 383.8052 364.5762 384.6646 366.4141 c +%_386.8774 371.1426 383.2974 377.5098 376.6509 380.7832 c +%_376.5728 380.8223 376.52 380.8965 376.5103 380.9824 c +%_376.5005 381.0684 376.5337 381.1523 376.6001 381.207 c +%_380.8911 384.7266 386.0122 391.2617 386.0122 404.627 c +%_386.0122 423.3086 373.8579 441.0898 357.7368 441.0898 c +%_348.5239 441.0898 341.104 434.6934 337.2661 425.0977 C +%_341.4868 430.8564 347.2446 435.2051 355.1782 435.2051 c +%_366.8208 435.2051 376.0337 422.7969 376.0337 404.8828 c +%_376.0337 387.9941 364.1333 368.2891 348.2681 368.2891 c +%_339.5669 368.2891 333.0435 375.3281 333.0435 384.4121 c +%_333.0435 392.4746 338.2896 397.0781 344.1763 397.0781 c +%_348.6099 397.0781 351.6685 393.9473 352.6196 390.5527 c +%_352.6509 390.4375 352.6001 390.3164 352.4927 390.2598 c +%_352.3872 390.2051 352.2583 390.2305 352.1802 390.3223 c +%_351.4282 391.2168 350.2837 391.9609 348.5259 391.9609 c +%_345.5825 391.9609 344.0474 389.4316 344.0474 387.6113 c +%_344.0474 384.1563 346.606 381.7246 350.4458 381.7246 c +%_355.6899 381.7246 359.7856 387.4824 359.7856 394.9023 c +%_359.7856 404.1152 350.9556 412.5586 342.1274 412.5586 c +%_333.106 412.5586 323.4478 404.5 323.4478 389.5293 c +%_323.4478 374.8164 333.4282 357.9258 349.2935 357.9258 c +%_358.5435 357.9258 366.4048 362.0957 372.436 369.002 c +%_372.5161 369.0918 372.6489 369.1152 372.7544 369.0547 c +%_372.8599 368.9941 372.9067 368.8672 372.8677 368.752 c +%_368.4341 355.8164 370.9126 343.6074 377.688 343.6074 c +%_381.0024 343.6074 382.6899 345.9863 382.6899 348.5234 c +%_382.6899 351.1309 380.7915 353.2852 377.7212 353.6777 c +%_377.6001 353.6934 377.5063 353.793 377.4985 353.9141 c +%_377.4927 354.0352 377.5708 354.1465 377.6899 354.1758 c +%_384.5044 355.9395 391.5142 352.2285 391.5142 345.1328 c +%_391.5142 338.8555 386.1372 334.002 379.1021 334.002 c +%_368.4653 334.002 363.3774 345.2715 365.6431 355.5371 C +%_360.1841 348.4922 352.0903 342.7012 340.4653 342.7012 c +%_316.9224 342.7012 305.0239 369.5703 305.0239 387.6113 c +%_305.0239 403.9883 308.3501 414.4785 315.2603 422.5391 C +%_307.1978 416.3984 303.8716 409.6172 302.3384 400.2773 C +%_296.1958 391.832 280.2036 391.832 v +%_273.5161 391.832 267.2739 394.3086 262.4302 398.998 C +%_262.4282 398.9961 262.4263 398.9941 262.4243 398.9902 C +%_262.3892 399.0313 262.3501 399.0703 262.3149 399.1094 C +%_261.9946 399.4238 261.6802 399.748 261.3716 400.082 C +%_256.3091 404.9316 246.1802 409.4785 236.9399 405.6797 c +%_236.8345 405.6367 236.7134 405.6699 236.6431 405.7578 c +%_236.5728 405.8477 236.5708 405.9727 236.6382 406.0645 c +%_241.0454 412.0898 248.6626 414.0059 254.3169 413.1309 C +%_253.272 416.8457 252.6938 421.0117 252.6938 425.6094 c +%_252.6938 442.0137 261.4927 453.5801 271.106 459.2109 C +%_267.9517 463.0137 268.5962 468.9883 272.1372 473.0449 c +%_272.2173 473.1357 272.3481 473.1582 272.4536 473.0996 c +%_272.5571 473.041 272.606 472.918 272.5708 472.8018 c +%_270.8403 467.2695 275.9634 462.6523 282.7524 462.9004 c +%_282.8755 462.9033 282.9829 462.8193 283.0103 462.6992 c +%_283.0356 462.5801 282.9712 462.457 282.8579 462.4111 c +%_272.7212 458.248 266.0005 449.4316 266.0005 438.4033 c +%_266.0005 426.8906 272.9087 417.5488 284.0415 417.5488 c +%_293.1255 417.5488 302.2095 425.8672 302.2095 436.2285 c +%_302.2095 444.2891 297.731 449.0225 291.9731 449.0225 c +%_286.9849 449.0225 283.0181 445.5684 283.0181 441.4736 c +%_283.0181 435.6211 289.6001 433.499 293.1118 438.1309 c +%_293.1821 438.2227 293.3032 438.2559 293.4087 438.2129 c +%_293.5161 438.1699 293.5806 438.0625 293.5669 437.9482 c +%_293.0435 433.5586 289.8149 429.4482 284.8091 429.4482 c +%_280.2036 429.4482 275.4692 433.2861 275.4692 441.4746 c +%_275.4692 451.1982 284.8071 461.0508 300.1606 461.0508 c +%_321.1431 461.0508 332.5317 437.3809 322.2974 418.4453 C +%_327.5415 424.459 332.2759 430.8555 332.2759 442.2432 c +%_332.2759 463.75 311.0122 478.291 285.9224 469.7441 c +%_285.8032 469.7021 285.6724 469.7559 285.6157 469.8672 c +%_285.5571 469.9785 285.5884 470.1143 285.6899 470.1895 c +%_292.6958 475.2979 300.0337 482.8262 300.0337 495.4668 c +%_300.0337 508.6475 291.3345 517.9854 277.772 517.9854 c +%_267.2798 517.9854 260.6274 511.5879 260.6274 504.04 c +%_260.6274 498.2822 264.3462 493.6768 270.7349 493.6768 c +%_280.2466 493.6768 283.481 504.0195 278.5591 508.6445 c +%_278.4751 508.7236 278.4556 508.8516 278.5103 508.9521 c +%_278.5669 509.0547 278.6841 509.1055 278.7974 509.0762 c +%_283.5669 507.8398 288.1353 503.0068 288.1353 495.7236 c +%_288.1353 483.1855 276.4927 474.8682 263.6978 474.8682 c +%_257.7017 474.8682 251.8989 476.623 247.2271 479.9102 C +%_247.7778 484.0635 246.3579 488.6602 244.2603 491.752 C +%_246.2095 484.8848 244.1021 473.5732 233.5864 473.5732 c +%_227.6958 473.5732 223.8013 478.1025 223.8013 483.4551 c +%_223.8013 489.7793 229.147 492.7314 233.4966 492.125 c +%_233.6118 492.1104 233.7007 492.0186 233.7134 491.9023 c +%_233.7271 491.7891 233.6606 491.6797 233.5532 491.6367 c +%_231.9673 491.0293 230.6108 489.3691 230.6108 487.373 c +%_230.6108 484.873 232.52 483.3906 234.52 483.3906 c +%_237.8149 483.3906 239.645 487.0605 238.4927 491.1104 C +%_238.5044 491.1104 L +%_237.4312 493.9473 236.8286 497.1152 236.8286 500.6055 c +%_236.8286 517.3672 255.0103 533.3398 277.9497 533.3398 c +%_302.1626 533.3398 315.0044 516.0664 315.0044 498.2822 c +%_315.0044 488.7461 311.4224 481.5225 306.8149 476.915 C +%_326.7368 479.0332 339.313 470.5176 346.0942 458.2354 C +%_341.6157 454.3975 339.9536 448.7676 Y +%_345.3267 455.8057 354.5376 461.9453 367.4595 461.9453 c +%_387.0356 461.9453 402.3911 442.7539 402.3911 422.1563 c +%_402.3911 409.084 397.5884 396.375 387.8267 387.9102 C +%_393.8638 382.8809 396.4731 375.5391 393.6978 369.6055 c +%_f +%_*U +%_*u +%_0 D +%_1 0.2 0 0 0 Xy +%_315.2114 494.9053 m +%_315.1782 494.7852 315.2388 494.6582 315.3521 494.6094 c +%_330.1763 488.0957 340.6372 475.6289 345.0063 461.2324 c +%_345.0415 461.1152 345.1548 461.0391 345.2778 461.0527 c +%_345.3989 461.0664 345.4946 461.166 345.5024 461.2871 c +%_346.229 471.9434 343.1274 482.4531 337.0005 491.0234 C +%_351.1216 491.9648 362.2407 499.9297 369.1997 511.5723 C +%_373.3286 505.46 381.6509 505.7969 384.8599 512.6035 c +%_384.9106 512.708 384.8833 512.832 384.7954 512.9063 c +%_384.7075 512.9805 384.5806 512.9873 384.4868 512.9219 c +%_380.2134 509.9688 372.8071 513.498 375.9282 524.9355 c +%_377.981 532.4561 382.3716 536.4668 386.5259 535.333 c +%_389.7915 534.4414 390.7661 531.002 390.0864 528.5146 c +%_388.9243 524.2539 384.438 522.8623 381.481 525.6357 c +%_381.397 525.7158 381.2681 525.7285 381.1704 525.6641 c +%_381.0728 525.5986 381.0298 525.4775 381.0688 525.3662 c +%_381.9868 522.7852 383.5571 520.7285 386.6157 519.8936 c +%_391.811 518.4756 398.6743 521.8115 400.8618 529.8252 c +%_403.2114 538.4316 398.7153 548.0566 390.604 550.2715 c +%_379.2036 553.3818 371.1392 545.166 367.3931 535.2383 C +%_366.9263 539.8896 363.1079 544.3203 v +%_363.0317 544.4092 362.9048 544.4336 362.8013 544.3818 c +%_362.6978 544.3291 362.6431 544.2129 362.6665 544.0996 c +%_364.106 537.6641 363.9575 530.8047 362.1099 524.0361 c +%_356.9438 505.1074 336.6626 493.0977 315.479 495.0938 c +%_315.354 495.1055 315.2407 495.0254 315.2114 494.9053 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_345.5806 407.1348 m +%_351.7739 400.666 364.0493 395.6133 374.6646 397.168 c +%_374.7856 397.1855 374.9009 397.1172 374.9399 397.0039 c +%_374.981 396.8906 374.936 396.7637 374.8345 396.7012 c +%_369.1743 393.2617 357.8384 392.0723 346.5786 397.4609 C +%_343.4536 395.1035 340.6489 393.8496 337.1919 393.2715 c +%_337.0806 393.2539 336.9692 393.3125 336.9204 393.4141 c +%_336.8735 393.5156 336.8989 393.6387 336.9849 393.7148 c +%_341.5454 397.6484 343.8286 401.6563 345.5806 407.1348 C +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_232.7935 448.9121 m +%_232.6753 448.8711 232.5444 448.9258 232.4878 449.0371 c +%_232.4312 449.1484 232.4644 449.2852 232.5679 449.3594 c +%_239.6938 454.4785 245.4829 462.291 248.4204 473.0566 c +%_255.6802 499.6563 244.3267 520.7921 228.2534 528.0146 c +%_228.1499 528.0605 228.0903 528.1689 228.105 528.2803 c +%_228.1216 528.3926 228.2085 528.4814 228.3198 528.4971 c +%_235.0747 529.4785 244.2622 528.6729 253.7915 517.3486 c +%_259.4927 510.5732 262.7271 503.373 269.0142 501.6563 c +%_273.1216 500.5352 276.5103 501.9551 277.4126 505.2617 c +%_278.3618 508.7393 275.9966 511.8018 272.6528 512.7148 c +%_270.9653 513.1738 269.1626 513.1436 267.4146 512.6836 c +%_267.2993 512.6533 267.1821 512.7051 267.1255 512.8086 c +%_267.0708 512.9121 267.0923 513.04 267.1802 513.1172 c +%_269.8325 515.4746 273.8677 517.125 278.5708 515.8408 c +%_285.4907 513.9531 289.6606 506.457 287.4673 498.415 c +%_285.104 489.7578 276.3696 484.5234 266.5864 487.1934 c +%_263.2329 488.1084 259.4497 490.168 256.7603 493.4648 C +%_258.5942 489.4551 260.0493 487.1855 263.8286 484.6133 C +%_262.8364 474.1035 258.3091 463.8271 250.4009 456.8389 C +%_256.2192 454.9863 260.604 451.7207 263.5083 446.6855 c +%_263.5669 446.582 263.5454 446.4531 263.4595 446.373 c +%_263.3696 446.293 263.2388 446.2832 263.1411 446.3535 c +%_256.1802 451.2344 243.9048 452.582 232.7935 448.9121 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_216.1919 362.8809 m +%_212.1538 366.3105 210.936 372.0469 212.4106 377.8672 c +%_212.4419 377.9883 212.5542 378.0684 212.6772 378.0566 c +%_212.8022 378.0469 212.8989 377.9492 212.9097 377.8281 c +%_213.0981 375.6543 213.9448 373.748 215.4917 372.4355 c +%_219.4712 369.0566 226.5562 370.834 231.4634 376.3828 c +%_231.522 376.4492 231.6079 376.4805 231.6929 376.4668 c +%_231.7788 376.4531 231.8511 376.3984 231.8862 376.3203 c +%_234.1519 371.2539 239.1079 364.5938 252.0005 361.0742 c +%_270.0239 356.1563 290.3794 363.1992 294.6235 378.752 c +%_297.0493 387.6406 292.8306 396.4824 284.5845 402.7109 C +%_289.0298 397.123 291.7075 390.4238 289.6177 382.7695 c +%_286.5532 371.5391 272.1567 365.918 254.8755 370.6348 c +%_238.5825 375.0801 222.7065 391.748 226.8833 407.0547 c +%_229.1743 415.4492 237.6821 419.8887 246.4458 417.4961 c +%_254.2231 415.375 257.2837 409.1016 255.7329 403.4219 c +%_254.5669 399.1445 250.7407 397.0195 247.2153 396.9941 c +%_247.0962 396.9941 246.9927 397.0762 246.9653 397.1934 c +%_246.9419 397.3105 246.9985 397.4277 247.1079 397.4785 c +%_248.1704 397.9688 249.188 398.877 249.6509 400.5742 c +%_250.4263 403.4121 248.3911 405.5605 246.6353 406.0391 c +%_243.3022 406.9492 240.2827 405.1211 239.271 401.416 c +%_237.8911 396.3574 242.3667 390.8906 249.5239 388.9355 c +%_258.4126 386.5117 268.8833 392.8066 271.2075 401.3223 c +%_273.5825 410.0254 268.3501 421.4648 253.9087 425.4063 c +%_239.7153 429.2813 220.7925 424.0996 216.6157 408.793 c +%_214.1802 399.8691 216.1333 391.1875 221.2075 383.5508 c +%_221.2739 383.4512 221.2612 383.3164 221.1753 383.2305 c +%_221.0884 383.1445 220.9536 383.1328 220.853 383.2012 c +%_209.5415 390.8828 197.1108 391.707 195.3267 385.1699 c +%_194.4536 381.9727 196.3042 379.7188 198.7524 379.0508 c +%_201.2681 378.3652 203.8462 379.6289 205.0327 382.4883 c +%_205.0796 382.5996 205.2007 382.6641 205.3198 382.6406 c +%_205.438 382.6133 205.5249 382.5098 205.522 382.3867 c +%_205.4292 375.3477 200.0034 369.5625 193.1577 371.4316 c +%_187.1021 373.084 183.8354 379.5488 185.688 386.3359 c +%_188.4888 396.5977 200.6997 398.5391 210.0063 393.6504 C +%_204.647 400.7715 201.1919 410.1035 204.2524 421.3184 c +%_210.4507 444.0313 239.5044 448.4355 256.9087 443.6855 c +%_272.7075 439.373 281.9517 433.4023 287.9087 424.6152 C +%_284.1079 434.0098 278.4419 439.0039 269.8345 442.9434 C +%_263.3052 451.0918 267.5161 466.5195 v +%_269.2759 472.9707 273.3091 478.3418 279.1079 481.7793 C +%_279.1079 481.7813 279.106 481.7842 279.1021 481.7871 C +%_279.1509 481.8105 279.1997 481.8379 279.2466 481.8613 C +%_279.6333 482.0879 280.0298 482.3057 280.4321 482.5146 C +%_286.4438 486.1211 293.4966 494.6973 292.2661 504.6113 c +%_292.2524 504.7236 292.3149 504.832 292.4185 504.877 c +%_292.5239 504.9219 292.645 504.8896 292.7153 504.8018 c +%_297.3677 498.9629 297.2114 491.1104 294.8794 485.8857 C +%_298.7368 485.915 302.9087 485.375 307.3442 484.165 c +%_323.1685 479.8457 332.0122 468.3135 334.9126 457.5566 C +%_339.4106 459.5977 345.0063 457.4043 347.9888 452.9199 c +%_348.0532 452.8184 348.0415 452.6855 347.9575 452.5996 c +%_347.8735 452.5156 347.7407 452.5 347.6392 452.5645 c +%_342.7583 455.6914 336.9556 451.9648 335.4048 445.3496 c +%_335.3774 445.2305 335.2681 445.1484 335.145 445.1543 c +%_335.022 445.1602 334.9204 445.2539 334.9067 445.377 c +%_333.5591 456.251 326.8228 465.0566 316.1841 467.96 c +%_305.0767 470.9922 294.2446 466.7852 291.3149 456.0469 c +%_288.9224 447.2832 294.5571 436.3301 304.5513 433.6016 c +%_312.3286 431.4785 318.0747 434.5527 319.5903 440.1074 c +%_320.9048 444.9199 318.6157 449.6563 314.6665 450.7344 c +%_309.0181 452.2754 305.2388 446.4844 308.7837 441.877 c +%_308.8521 441.7852 308.854 441.6602 308.7837 441.5684 c +%_308.7153 441.4766 308.5923 441.4434 308.4868 441.4863 c +%_304.3892 443.1465 301.2739 447.3418 302.5923 452.1729 c +%_303.8052 456.6152 308.7544 460.1729 316.6548 458.0166 c +%_326.0356 455.457 333.0806 443.8555 329.0376 429.043 c +%_323.5142 408.7988 297.6802 404.0449 282.1079 418.9043 C +%_286.5278 412.2617 291.4517 406.0098 302.438 403.0117 c +%_323.188 397.3496 342.813 414.0332 341.1724 440.4902 c +%_341.1646 440.6152 341.2505 440.7285 341.3735 440.7539 c +%_341.4946 440.7813 341.6196 440.7129 341.6646 440.5977 c +%_344.7466 432.4922 350.0786 423.4316 362.2739 420.1035 c +%_374.9888 416.6328 386.2876 422.5664 389.8599 435.6504 c +%_392.6216 445.7734 388.2017 453.875 380.9204 455.8623 c +%_375.3657 457.3789 369.9419 455.0039 368.2603 448.8398 c +%_365.7563 439.6641 374.8833 433.8203 380.6411 437.3516 c +%_380.7388 437.4121 380.8677 437.3965 380.9497 437.3164 c +%_381.0337 437.2363 381.0513 437.1094 380.9927 437.0078 c +%_378.5454 432.7324 372.6802 429.5977 365.6548 431.5156 c +%_353.5571 434.8164 348.6001 448.2383 351.9673 460.5811 c +%_353.5454 466.3652 356.7681 471.502 361.1685 475.1426 C +%_365.0298 473.5186 369.8384 473.6777 373.3735 474.8867 C +%_366.2349 474.8154 355.8794 479.8262 358.647 489.9707 c +%_360.1978 495.6533 365.5923 498.2188 370.7563 496.8086 c +%_376.8579 495.1436 378.2974 489.21 376.5688 485.1729 c +%_376.522 485.0654 376.4106 485.0039 376.2974 485.0225 c +%_376.1821 485.04 376.0942 485.1318 376.0825 485.2471 c +%_375.9146 486.9375 374.6685 488.6836 372.7446 489.208 c +%_370.3325 489.8662 368.3989 488.415 367.8735 486.4854 c +%_367.0044 483.3066 370.063 480.5752 374.2739 480.6211 C +%_374.27 480.6094 L +%_377.2896 480.8984 380.5044 480.6445 383.8716 479.7266 c +%_400.0415 475.3125 410.6646 453.5674 404.6235 431.4375 c +%_398.2485 408.0781 378.2056 400.2363 361.0474 404.9199 c +%_351.8481 407.4297 345.8228 412.7871 342.5903 418.4453 C +%_339.3892 398.668 327.8618 388.7793 314.229 385.4707 C +%_311.7056 390.8008 306.7114 393.8867 Y +%_312.0864 386.8496 315.5845 376.3477 312.1821 363.8809 c +%_307.0278 344.9961 284.4712 335.2344 264.6001 340.6582 c +%_251.9888 344.0996 240.9927 352.0801 235.397 363.7266 C +%_228.9556 359.2266 221.186 358.6406 216.1919 362.8809 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_u +%_*u +%_0 D +%_0 0 0 0 1 1 1 Xa +%_0 1 0 0 0 Xy +%_363.1294 436.9688 m +%_363.0044 436.9688 362.8989 436.877 362.8794 436.7539 c +%_360.5005 420.7402 351.2271 407.3652 338.4888 399.3594 c +%_338.3853 399.2949 338.3403 399.1641 338.3872 399.0508 c +%_338.4321 398.9375 338.5532 398.8711 338.6724 398.8965 c +%_349.145 401 358.4653 406.7598 365.1216 414.9277 C +%_369.7466 401.5508 380.3579 392.9219 393.4224 389.2734 C +%_388.6138 383.6816 391.1294 375.7402 398.5415 374.4375 c +%_398.6548 374.416 398.7661 374.4746 398.8149 374.5781 c +%_398.8638 374.6816 398.8364 374.8066 398.7485 374.8809 c +%_394.7759 378.2266 396.229 386.3008 408.0864 386.3008 c +%_415.8794 386.3008 420.9067 383.1211 420.9067 378.8145 c +%_420.9067 375.4297 417.8442 373.584 415.2642 373.584 c +%_410.8501 373.584 408.3267 377.5449 410.2231 381.127 c +%_410.2778 381.2305 410.2563 381.3574 410.1685 381.4355 c +%_410.0806 381.5137 409.9517 381.5215 409.854 381.4551 c +%_407.606 379.8906 406.0356 377.834 406.0356 374.6641 c +%_406.0356 369.2773 411.061 363.5352 419.3677 363.5332 c +%_428.2896 363.5332 436.3911 370.4043 436.3911 378.8145 c +%_436.3911 390.6309 426.3423 396.248 415.7778 397.248 C +%_420.1431 398.9219 423.4106 403.7734 v +%_423.4771 403.8691 423.4673 403.998 423.3892 404.084 c +%_423.311 404.1719 423.1841 404.1934 423.0825 404.1387 c +%_417.2524 401.0566 410.5942 399.3945 403.5806 399.3945 c +%_383.9575 399.3945 367.0337 415.7988 363.3813 436.7607 c +%_363.3599 436.8818 363.2524 436.9727 363.1294 436.9688 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_286.4517 384.5625 m +%_281.8442 376.8867 280.1997 363.7129 284.4946 353.8809 c +%_284.5435 353.7695 284.5083 353.6406 284.4087 353.5703 c +%_284.3091 353.502 284.1763 353.5117 284.0884 353.5957 c +%_279.2817 358.1484 275.1489 368.7715 277.3833 381.0527 C +%_274.2876 383.4473 272.3384 385.8223 270.8696 389.0059 c +%_270.8228 389.1074 270.8501 389.2305 270.936 389.3047 c +%_271.022 389.377 271.147 389.3848 271.2427 389.3203 c +%_276.2388 385.959 280.7056 384.8125 286.4517 384.5625 C +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_297.0591 504.3691 m +%_296.9907 504.4727 297.0083 504.6133 297.1001 504.6973 c +%_297.1938 504.7813 297.3345 504.7852 297.4321 504.7061 c +%_304.2466 499.1797 313.3071 495.6504 324.4673 495.6504 c +%_352.0376 495.6504 369.4399 512.1689 372.1743 529.5771 c +%_372.1919 529.6885 372.2817 529.7734 372.3931 529.7891 c +%_372.5044 529.8047 372.6138 529.7422 372.6587 529.6396 c +%_375.3833 523.3818 377.0259 514.3057 368.6099 502.1309 c +%_363.5747 494.8457 357.479 489.8311 357.479 483.3145 c +%_357.479 479.0566 359.7407 476.1602 363.1685 476.1602 c +%_366.7739 476.1602 369.106 479.248 369.104 482.7148 c +%_369.104 484.4629 368.6001 486.1934 367.6958 487.7607 c +%_367.6372 487.8633 367.6548 487.9902 367.7407 488.0723 c +%_367.8247 488.1523 367.9556 488.165 368.0532 488.1016 c +%_371.0259 486.1641 373.6802 482.7021 373.6802 477.8281 c +%_373.6802 470.6563 367.5474 464.6602 359.2095 464.6602 c +%_350.2368 464.6602 342.8872 471.709 342.8872 481.8477 c +%_342.8872 485.3262 343.8755 489.5156 346.3501 492.9805 C +%_342.9653 490.1523 341.1587 488.1523 339.6724 483.8271 C +%_329.272 482.0186 318.1665 483.6797 309.3403 489.4727 C +%_309.0864 483.3711 307.0903 478.2793 302.9985 474.1533 c +%_302.9146 474.0684 302.7837 474.0547 302.6841 474.1182 c +%_302.5825 474.1816 302.5415 474.3066 302.5806 474.4189 c +%_305.4575 482.4199 303.5239 494.6152 297.0591 504.3691 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_209.6938 497.7344 m +%_211.938 502.5352 217.1528 505.2188 223.1548 505.3271 c +%_223.2798 505.3311 223.3872 505.2432 223.4087 505.1211 c +%_223.4321 504.998 223.3638 504.8779 223.2485 504.8359 c +%_221.2017 504.082 219.5864 502.7637 218.7271 500.9258 c +%_216.5142 496.1973 220.0942 489.8301 226.7407 486.5566 c +%_226.8188 486.5186 226.8716 486.4434 226.8813 486.3594 c +%_226.8911 486.2725 226.856 486.1885 226.7915 486.1318 c +%_222.5005 482.6143 217.3794 476.0781 217.3794 462.7148 c +%_217.3774 444.0322 229.5337 426.25 245.6548 426.25 c +%_254.8677 426.25 262.2876 432.6465 266.1255 442.2422 C +%_261.9028 436.4844 256.145 432.1348 248.2114 432.1348 c +%_236.5708 432.1348 227.3579 444.5439 227.356 462.459 c +%_227.356 479.3457 239.2583 499.0518 255.1216 499.0508 c +%_263.8247 499.0488 270.3481 492.0117 270.3481 482.9277 c +%_270.3481 474.8672 265.1021 470.2637 259.2173 470.2637 c +%_254.7798 470.2637 251.7231 473.3936 250.772 476.7871 c +%_250.7388 476.9023 250.7915 477.0254 250.897 477.0811 c +%_251.0044 477.1357 251.1333 477.1104 251.2114 477.0186 c +%_251.9634 476.124 253.1079 475.3809 254.8657 475.3809 c +%_257.8091 475.3789 259.3442 477.9082 259.3442 479.7285 c +%_259.3442 483.1836 256.7856 485.6152 252.9458 485.6152 c +%_247.7036 485.6152 243.606 479.8564 243.606 472.4385 c +%_243.606 463.2236 252.436 454.7813 261.2642 454.7813 c +%_270.2856 454.7813 279.9438 462.8408 279.9438 477.8125 c +%_279.9419 492.5234 269.9653 509.4141 254.0981 509.4141 c +%_244.8481 509.4141 236.9849 505.2441 230.9556 498.3398 c +%_230.8755 498.248 230.7427 498.2246 230.6392 498.2852 c +%_230.5317 498.3477 230.4849 498.4727 230.5239 498.5879 c +%_234.9575 511.5234 232.4771 523.7344 225.7036 523.7324 c +%_222.3892 523.7324 220.7017 521.3535 220.7017 518.8154 c +%_220.7017 516.21 222.6001 514.0566 225.6704 513.6611 c +%_225.7915 513.6475 225.8833 513.5479 225.8931 513.4268 c +%_225.8989 513.3047 225.8188 513.1943 225.7017 513.1641 c +%_218.8872 511.4004 211.8774 515.1133 211.8774 522.2061 c +%_211.8774 528.4854 217.2544 533.3398 224.2896 533.3398 c +%_234.9263 533.3379 240.0142 522.0684 237.7485 511.8047 C +%_243.2075 518.8486 251.3013 524.6396 262.9263 524.6396 c +%_286.4692 524.6396 298.3677 497.7715 298.3677 479.7285 c +%_298.3677 463.3525 295.0415 452.8604 288.1313 444.8018 C +%_296.1938 450.9404 299.52 457.7227 301.0552 467.0645 C +%_307.1958 475.5078 323.188 475.5078 v +%_329.8755 475.5078 336.1177 473.0322 340.9614 468.3438 C +%_340.9634 468.3447 340.9653 468.3477 340.9673 468.3486 C +%_341.0024 468.3105 341.0396 468.2695 341.0767 468.2314 C +%_341.397 467.915 341.7114 467.5918 342.02 467.2578 C +%_347.0806 462.4102 357.2114 457.8633 366.4517 461.6602 c +%_366.5571 461.7031 366.6782 461.6699 366.7485 461.582 c +%_366.8188 461.4932 366.8188 461.3672 366.7524 461.2754 c +%_362.3462 455.252 354.729 453.335 349.0747 454.21 C +%_350.1177 450.4941 350.6958 446.3281 350.6958 441.7305 c +%_350.6978 425.3262 341.8989 413.7598 332.2856 408.1289 C +%_335.438 404.3281 334.7954 398.3535 331.2544 394.2949 c +%_331.1743 394.2051 331.0435 394.1816 330.938 394.2402 c +%_330.8345 394.2988 330.7837 394.4238 330.8188 394.5391 c +%_332.5513 400.0703 327.4282 404.6875 320.6392 404.4395 c +%_320.5161 404.4355 320.4067 404.5195 320.3813 404.6406 c +%_320.356 404.7617 320.4185 404.8828 320.5337 404.9277 c +%_330.6685 409.0918 337.3911 417.9102 337.3892 428.9355 c +%_337.3911 440.4492 330.481 449.79 319.3501 449.79 c +%_310.2661 449.79 301.1821 441.4727 301.1821 431.1133 c +%_301.1821 423.0508 305.6587 418.3184 311.4165 418.3164 c +%_316.4067 418.3184 320.3735 421.7715 320.3735 425.86 +endstream endobj 111 0 obj <>stream +72 c +%_320.3735 431.7188 313.7896 433.8408 310.2778 429.209 c +%_310.2095 429.1172 310.0864 429.084 309.981 429.127 c +%_309.8755 429.1689 309.811 429.2773 309.8228 429.3926 c +%_310.3462 433.7813 313.5767 437.8926 318.5825 437.8926 c +%_323.188 437.8926 327.9224 434.0518 327.9224 425.8652 c +%_327.9224 416.1406 318.5845 406.291 303.231 406.2891 c +%_282.2466 406.2891 270.8599 429.959 281.0942 448.8945 C +%_275.8501 442.8809 271.1157 436.4844 271.1157 425.0977 c +%_271.1138 403.5898 292.3794 389.0488 317.4692 397.5977 c +%_317.5884 397.6367 317.7192 397.584 317.7759 397.4746 c +%_317.8345 397.3633 317.8013 397.2266 317.6997 397.1523 c +%_310.6938 392.043 303.356 384.5137 303.356 371.873 c +%_303.356 358.6934 312.0552 349.3535 325.6196 349.3535 c +%_336.1099 349.3535 342.7642 355.752 342.7642 363.2988 c +%_342.7642 369.0566 339.0454 373.6641 332.6567 373.6641 c +%_323.1431 373.6641 319.9087 363.3203 324.8325 358.6953 c +%_324.9165 358.6152 324.936 358.4902 324.8813 358.3887 c +%_324.8247 358.2871 324.7056 358.2344 324.5942 358.2637 c +%_319.8247 359.5 315.2563 364.332 315.2563 371.6152 c +%_315.2544 384.1563 326.897 392.4727 339.6919 392.4727 c +%_345.688 392.4727 351.4907 390.7188 356.1646 387.4297 C +%_355.6118 383.2773 357.0317 378.6816 359.1313 375.5879 C +%_357.1821 382.457 359.2915 393.7656 369.8032 393.7676 c +%_375.6958 393.7656 379.5903 389.2383 379.5903 383.8867 c +%_379.5903 377.5605 374.2446 374.6094 369.895 375.2148 c +%_369.7798 375.2305 369.6899 375.3223 369.6763 375.4375 c +%_369.6646 375.5527 369.731 375.6602 369.8384 375.7031 c +%_371.4243 376.3105 372.7817 377.9727 372.7817 379.9668 c +%_372.7817 382.4668 370.8696 383.9492 368.8696 383.9492 c +%_365.5767 383.9492 363.7466 380.2793 364.8989 376.2305 C +%_364.8872 376.2285 L +%_365.9595 373.3926 366.561 370.2246 366.561 366.7363 c +%_366.561 349.9746 348.3813 334.002 325.4399 334 c +%_301.229 334 288.3872 351.2734 288.3892 369.0566 c +%_288.3892 378.5938 291.9692 385.8184 296.5767 390.4258 C +%_276.6548 388.3066 264.0786 396.8223 257.2974 409.1035 C +%_261.7759 412.9414 263.438 418.5723 Y +%_258.0649 411.5352 248.854 405.3945 235.9321 405.3945 c +%_216.356 405.3945 201.0005 424.5859 201.0005 445.1836 c +%_201.0005 458.2568 205.8032 470.9648 215.5649 479.4307 C +%_209.5278 484.459 206.9185 491.8018 209.6938 497.7344 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_U +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_0 0.25 0 0 0 Xy +%_0 0 Xd +%_6 () XW +%_U +%_/ArtDictionary : +%_1 /Bool (AIPattern_Is_Repeated_Art) , +%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , +%_; +%_ +%_9 () XW +%_u +%_*u +%_0 D +%_0 O +%_0.306889 0.577478 0.779446 0.294591 0.576471 0.376471 0.215686 Xa +%_0 1 0 0 0 Xy +%_73.2617 430.3711 m +%_73.3867 430.3711 73.4922 430.4629 73.5098 430.585 c +%_75.8906 446.5996 85.1641 459.9746 97.9023 467.9814 c +%_98.0059 468.0449 98.0488 468.1758 98.0039 468.29 c +%_97.957 468.4023 97.8379 468.4688 97.7168 468.4443 c +%_87.2461 466.3398 77.9238 460.5811 71.2695 452.4141 C +%_66.6436 465.7891 56.0332 474.418 42.9688 478.0654 C +%_47.7773 483.6582 45.2617 491.5986 37.8496 492.9023 c +%_37.7363 492.9229 37.624 492.8643 37.5752 492.7607 c +%_37.5273 492.6563 37.5537 492.5322 37.6416 492.46 c +%_41.6152 489.1143 40.1611 481.04 28.3047 481.04 c +%_20.5098 481.04 15.4844 484.2188 15.4844 488.5254 c +%_15.4844 491.9102 18.5459 493.7559 21.125 493.7559 c +%_25.541 493.7559 28.0645 489.7949 26.167 486.2129 c +%_26.1123 486.1104 26.1348 485.9814 26.2227 485.9033 c +%_26.3105 485.8271 26.4395 485.8184 26.5361 485.8857 c +%_28.7852 487.4492 30.3555 489.5059 30.3555 492.6768 c +%_30.3555 498.0635 25.3301 503.8066 17.0234 503.8066 c +%_8.10156 503.8066 0 496.9355 0 488.5254 c +%_0 476.71 10.0488 471.0918 20.6133 470.0918 C +%_16.248 468.4189 12.9795 463.5664 v +%_12.9141 463.4697 12.9238 463.3418 13.001 463.2559 c +%_13.0791 463.1689 13.2051 463.1475 13.3086 463.2012 c +%_19.1387 466.2822 25.7949 467.9453 32.8105 467.9453 c +%_52.4316 467.9453 69.3574 451.541 73.0098 430.5801 c +%_73.0313 430.4561 73.1377 430.3691 73.2617 430.3711 c +%_f +%_1 D +%_149.9395 482.7773 m +%_154.5488 490.4551 156.1914 503.627 151.8965 513.46 c +%_151.8477 513.5703 151.8828 513.6992 151.9824 513.7686 c +%_152.0801 513.8379 152.2148 513.8281 152.3027 513.7461 c +%_157.1094 509.1914 161.2422 498.5684 159.0078 486.2871 C +%_162.1055 483.8936 164.0527 481.5176 165.5215 478.335 c +%_165.5684 478.2314 165.541 478.1104 165.4551 478.0352 c +%_165.3691 477.9629 165.2441 477.9551 165.1484 478.0186 c +%_160.1523 481.3809 155.6855 482.5283 149.9395 482.7773 C +%_f +%_139.3301 362.9707 m +%_139.4004 362.8672 139.3828 362.7266 139.291 362.6426 c +%_139.1973 362.5586 139.0566 362.5547 138.959 362.6348 c +%_132.1445 368.1621 123.084 371.6895 111.9238 371.6895 c +%_84.3516 371.6895 66.9512 355.1719 64.2158 337.7637 c +%_64.1982 337.6523 64.1094 337.5664 63.998 337.5508 c +%_63.8857 337.5371 63.7773 337.5977 63.7324 337.7012 c +%_61.0068 343.959 59.3652 353.0352 67.7813 365.209 c +%_72.8154 372.4941 78.9102 377.5098 78.9102 384.0273 c +%_78.9102 388.2852 76.6504 391.1797 73.2227 391.1797 c +%_69.6172 391.1797 67.2861 388.0918 67.2861 384.625 c +%_67.2861 382.877 67.791 381.1465 68.6953 379.5801 c +%_68.7539 379.4766 68.7354 379.3496 68.6504 379.2676 c +%_68.5645 379.1875 68.4355 379.1758 68.3379 379.2402 c +%_65.3652 381.1777 62.7109 384.6367 62.7109 389.5117 c +%_62.7109 396.6836 68.8438 402.6816 77.1797 402.6816 c +%_86.1543 402.6816 93.5039 395.6328 93.5039 385.4922 c +%_93.5039 382.0156 92.5137 377.8242 90.041 374.3613 C +%_93.4258 377.1875 95.2324 379.1875 96.7188 383.5117 C +%_107.1191 385.3223 118.2246 383.6602 127.0488 377.8691 C +%_127.3047 383.9707 129.3008 389.0605 133.3926 393.1875 c +%_133.4766 393.2715 133.6074 393.2852 133.707 393.2227 c +%_133.8086 393.1582 133.8516 393.0332 133.8105 392.9219 c +%_130.9336 384.9199 132.8652 372.7246 139.3301 362.9707 c +%_f +%_226.6973 369.6055 m +%_224.4512 364.8066 219.2383 362.1211 213.2363 362.0117 c +%_213.1113 362.0098 213.0039 362.0977 212.9824 362.2188 c +%_212.959 362.3418 213.0273 362.4609 213.1426 362.5039 c +%_215.1895 363.2578 216.8047 364.5762 217.6641 366.4141 c +%_219.877 371.1426 216.2969 377.5098 209.6504 380.7832 c +%_209.5723 380.8223 209.5195 380.8965 209.5098 380.9824 c +%_209.5 381.0684 209.5332 381.1523 209.5996 381.207 c +%_213.8906 384.7266 219.0117 391.2617 219.0117 404.627 c +%_219.0117 423.3086 206.8574 441.0898 190.7363 441.0898 c +%_181.5234 441.0898 174.1035 434.6934 170.2656 425.0977 C +%_174.4863 430.8564 180.2441 435.2051 188.1777 435.2051 c +%_199.8203 435.2051 209.0332 422.7969 209.0332 404.8828 c +%_209.0332 387.9941 197.1328 368.2891 181.2676 368.2891 c +%_172.5664 368.2891 166.043 375.3281 166.043 384.4121 c +%_166.043 392.4746 171.2891 397.0781 177.1758 397.0781 c +%_181.6094 397.0781 184.668 393.9473 185.6191 390.5527 c +%_185.6504 390.4375 185.5996 390.3164 185.4922 390.2598 c +%_185.3867 390.2051 185.2578 390.2305 185.1797 390.3223 c +%_184.4277 391.2168 183.2832 391.9609 181.5254 391.9609 c +%_178.582 391.9609 177.0469 389.4316 177.0469 387.6113 c +%_177.0469 384.1563 179.6055 381.7246 183.4453 381.7246 c +%_188.6895 381.7246 192.7852 387.4824 192.7852 394.9023 c +%_192.7852 404.1152 183.9551 412.5586 175.127 412.5586 c +%_166.1055 412.5586 156.4473 404.5 156.4473 389.5293 c +%_156.4473 374.8164 166.4277 357.9258 182.293 357.9258 c +%_191.543 357.9258 199.4043 362.0957 205.4355 369.002 c +%_205.5156 369.0918 205.6484 369.1152 205.7539 369.0547 c +%_205.8594 368.9941 205.9063 368.8672 205.8672 368.752 c +%_201.4336 355.8164 203.9121 343.6074 210.6875 343.6074 c +%_214.002 343.6074 215.6895 345.9863 215.6895 348.5234 c +%_215.6895 351.1309 213.791 353.2852 210.7207 353.6777 c +%_210.5996 353.6934 210.5059 353.793 210.498 353.9141 c +%_210.4922 354.0352 210.5703 354.1465 210.6895 354.1758 c +%_217.5039 355.9395 224.5137 352.2285 224.5137 345.1328 c +%_224.5137 338.8555 219.1367 334.002 212.1016 334.002 c +%_201.4648 334.002 196.377 345.2715 198.6426 355.5371 C +%_193.1836 348.4922 185.0898 342.7012 173.4648 342.7012 c +%_149.9219 342.7012 138.0234 369.5703 138.0234 387.6113 c +%_138.0234 403.9883 141.3496 414.4785 148.2598 422.5391 C +%_140.1973 416.3984 136.8711 409.6172 135.3379 400.2773 C +%_129.1953 391.832 113.2031 391.832 v +%_106.5156 391.832 100.2734 394.3086 95.4297 398.998 C +%_95.4277 398.9961 95.4258 398.9941 95.4238 398.9902 C +%_95.3887 399.0313 95.3496 399.0703 95.3145 399.1094 C +%_94.9941 399.4238 94.6797 399.748 94.3711 400.082 C +%_89.3086 404.9316 79.1797 409.4785 69.9395 405.6797 c +%_69.834 405.6367 69.7129 405.6699 69.6426 405.7578 c +%_69.5723 405.8477 69.5703 405.9727 69.6377 406.0645 c +%_74.0449 412.0898 81.6621 414.0059 87.3164 413.1309 C +%_86.2715 416.8457 85.6934 421.0117 85.6934 425.6094 c +%_85.6934 442.0137 94.4922 453.5801 104.1055 459.2109 C +%_100.9512 463.0137 101.5957 468.9883 105.1367 473.0449 c +%_105.2168 473.1357 105.3477 473.1582 105.4531 473.0996 c +%_105.5566 473.041 105.6055 472.918 105.5703 472.8018 c +%_103.8398 467.2695 108.9629 462.6523 115.752 462.9004 c +%_115.875 462.9033 115.9824 462.8193 116.0098 462.6992 c +%_116.0352 462.5801 115.9707 462.457 115.8574 462.4111 c +%_105.7207 458.248 99 449.4316 99 438.4033 c +%_99 426.8906 105.9082 417.5488 117.041 417.5488 c +%_126.125 417.5488 135.209 425.8672 135.209 436.2285 c +%_135.209 444.2891 130.7305 449.0225 124.9727 449.0225 c +%_119.9844 449.0225 116.0176 445.5684 116.0176 441.4736 c +%_116.0176 435.6211 122.5996 433.499 126.1113 438.1309 c +%_126.1816 438.2227 126.3027 438.2559 126.4082 438.2129 c +%_126.5156 438.1699 126.5801 438.0625 126.5664 437.9482 c +%_126.043 433.5586 122.8145 429.4482 117.8086 429.4482 c +%_113.2031 429.4482 108.4688 433.2861 108.4688 441.4746 c +%_108.4688 451.1982 117.8066 461.0508 133.1602 461.0508 c +%_154.1426 461.0508 165.5313 437.3809 155.2969 418.4453 C +%_160.541 424.459 165.2754 430.8555 165.2754 442.2432 c +%_165.2754 463.75 144.0117 478.291 118.9219 469.7441 c +%_118.8027 469.7021 118.6719 469.7559 118.6152 469.8672 c +%_118.5566 469.9785 118.5879 470.1143 118.6895 470.1895 c +%_125.6953 475.2979 133.0332 482.8262 133.0332 495.4668 c +%_133.0332 508.6475 124.334 517.9854 110.7715 517.9854 c +%_100.2793 517.9854 93.627 511.5879 93.627 504.04 c +%_93.627 498.2822 97.3457 493.6768 103.7344 493.6768 c +%_113.2461 493.6768 116.4805 504.0195 111.5586 508.6445 c +%_111.4746 508.7236 111.4551 508.8516 111.5098 508.9521 c +%_111.5664 509.0547 111.6836 509.1055 111.7969 509.0762 c +%_116.5664 507.8398 121.1348 503.0068 121.1348 495.7236 c +%_121.1348 483.1855 109.4922 474.8682 96.6973 474.8682 c +%_90.7012 474.8682 84.8984 476.623 80.2266 479.9102 C +%_80.7773 484.0635 79.3574 488.6602 77.2598 491.752 C +%_79.209 484.8848 77.1016 473.5732 66.5859 473.5732 c +%_60.6953 473.5732 56.8008 478.1025 56.8008 483.4551 c +%_56.8008 489.7793 62.1465 492.7314 66.4961 492.125 c +%_66.6113 492.1104 66.7002 492.0186 66.7129 491.9023 c +%_66.7266 491.7891 66.6602 491.6797 66.5527 491.6367 c +%_64.9668 491.0293 63.6104 489.3691 63.6104 487.373 c +%_63.6104 484.873 65.5195 483.3906 67.5195 483.3906 c +%_70.8145 483.3906 72.6445 487.0605 71.4922 491.1104 C +%_71.5039 491.1104 L +%_70.4307 493.9473 69.8281 497.1152 69.8281 500.6055 c +%_69.8281 517.3672 88.0098 533.3398 110.9492 533.3398 c +%_135.1621 533.3398 148.0039 516.0664 148.0039 498.2822 c +%_148.0039 488.7461 144.4219 481.5225 139.8145 476.915 C +%_159.7363 479.0332 172.3125 470.5176 179.0938 458.2354 C +%_174.6152 454.3975 172.9531 448.7676 Y +%_178.3262 455.8057 187.5371 461.9453 200.459 461.9453 c +%_220.0352 461.9453 235.3906 442.7539 235.3906 422.1563 c +%_235.3906 409.084 230.5879 396.375 220.8262 387.9102 C +%_226.8633 382.8809 229.4727 375.5391 226.6973 369.6055 c +%_f +%_*U +%_*u +%_0 D +%_1 0.2 0 0 0 Xy +%_148.2109 494.9053 m +%_148.1777 494.7852 148.2383 494.6582 148.3516 494.6094 c +%_163.1758 488.0957 173.6367 475.6289 178.0059 461.2324 c +%_178.041 461.1152 178.1543 461.0391 178.2773 461.0527 c +%_178.3984 461.0664 178.4941 461.166 178.502 461.2871 c +%_179.2285 471.9434 176.127 482.4531 170 491.0234 C +%_184.1211 491.9648 195.2402 499.9297 202.1992 511.5723 C +%_206.3281 505.46 214.6504 505.7969 217.8594 512.6035 c +%_217.9102 512.708 217.8828 512.832 217.7949 512.9063 c +%_217.707 512.9805 217.5801 512.9873 217.4863 512.9219 c +%_213.2129 509.9688 205.8066 513.498 208.9277 524.9355 c +%_210.9805 532.4561 215.3711 536.4668 219.5254 535.333 c +%_222.791 534.4414 223.7656 531.002 223.0859 528.5146 c +%_221.9238 524.2539 217.4375 522.8623 214.4805 525.6357 c +%_214.3965 525.7158 214.2676 525.7285 214.1699 525.6641 c +%_214.0723 525.5986 214.0293 525.4775 214.0684 525.3662 c +%_214.9863 522.7852 216.5566 520.7285 219.6152 519.8936 c +%_224.8105 518.4756 231.6738 521.8115 233.8613 529.8252 c +%_236.2109 538.4316 231.7148 548.0566 223.6035 550.2715 c +%_212.2031 553.3818 204.1387 545.166 200.3926 535.2383 C +%_199.9258 539.8896 196.1074 544.3203 v +%_196.0313 544.4092 195.9043 544.4336 195.8008 544.3818 c +%_195.6973 544.3291 195.6426 544.2129 195.666 544.0996 c +%_197.1055 537.6641 196.957 530.8047 195.1094 524.0361 c +%_189.9434 505.1074 169.6621 493.0977 148.4785 495.0938 c +%_148.3535 495.1055 148.2402 495.0254 148.2109 494.9053 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_178.5801 407.1348 m +%_184.7734 400.666 197.0488 395.6133 207.6641 397.168 c +%_207.7852 397.1855 207.9004 397.1172 207.9395 397.0039 c +%_207.9805 396.8906 207.9355 396.7637 207.834 396.7012 c +%_202.1738 393.2617 190.8379 392.0723 179.5781 397.4609 C +%_176.4531 395.1035 173.6484 393.8496 170.1914 393.2715 c +%_170.0801 393.2539 169.9688 393.3125 169.9199 393.4141 c +%_169.873 393.5156 169.8984 393.6387 169.9844 393.7148 c +%_174.5449 397.6484 176.8281 401.6563 178.5801 407.1348 C +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_65.793 448.9121 m +%_65.6748 448.8711 65.5439 448.9258 65.4873 449.0371 c +%_65.4307 449.1484 65.4639 449.2852 65.5674 449.3594 c +%_72.6934 454.4785 78.4824 462.291 81.4199 473.0566 c +%_88.6797 499.6563 77.3262 520.7921 61.2529 528.0146 c +%_61.1494 528.0605 61.0898 528.1689 61.1045 528.2803 c +%_61.1211 528.3926 61.208 528.4814 61.3193 528.4971 c +%_68.0742 529.4785 77.2617 528.6729 86.791 517.3486 c +%_92.4922 510.5732 95.7266 503.373 102.0137 501.6563 c +%_106.1211 500.5352 109.5098 501.9551 110.4121 505.2617 c +%_111.3613 508.7393 108.9961 511.8018 105.6523 512.7148 c +%_103.9648 513.1738 102.1621 513.1436 100.4141 512.6836 c +%_100.2988 512.6533 100.1816 512.7051 100.125 512.8086 c +%_100.0703 512.9121 100.0918 513.04 100.1797 513.1172 c +%_102.832 515.4746 106.8672 517.125 111.5703 515.8408 c +%_118.4902 513.9531 122.6602 506.457 120.4668 498.415 c +%_118.1035 489.7578 109.3691 484.5234 99.5859 487.1934 c +%_96.2324 488.1084 92.4492 490.168 89.7598 493.4648 C +%_91.5938 489.4551 93.0488 487.1855 96.8281 484.6133 C +%_95.8359 474.1035 91.3086 463.8271 83.4004 456.8389 C +%_89.2188 454.9863 93.6035 451.7207 96.5078 446.6855 c +%_96.5664 446.582 96.5449 446.4531 96.459 446.373 c +%_96.3691 446.293 96.2383 446.2832 96.1406 446.3535 c +%_89.1797 451.2344 76.9043 452.582 65.793 448.9121 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_49.1914 362.8809 m +%_45.1533 366.3105 43.9355 372.0469 45.4102 377.8672 c +%_45.4414 377.9883 45.5537 378.0684 45.6768 378.0566 c +%_45.8018 378.0469 45.8984 377.9492 45.9092 377.8281 c +%_46.0977 375.6543 46.9443 373.748 48.4912 372.4355 c +%_52.4707 369.0566 59.5557 370.834 64.4629 376.3828 c +%_64.5215 376.4492 64.6074 376.4805 64.6924 376.4668 c +%_64.7783 376.4531 64.8506 376.3984 64.8857 376.3203 c +%_67.1514 371.2539 72.1074 364.5938 85 361.0742 c +%_103.0234 356.1563 123.3789 363.1992 127.623 378.752 c +%_130.0488 387.6406 125.8301 396.4824 117.584 402.7109 C +%_122.0293 397.123 124.707 390.4238 122.6172 382.7695 c +%_119.5527 371.5391 105.1563 365.918 87.875 370.6348 c +%_71.582 375.0801 55.7061 391.748 59.8828 407.0547 c +%_62.1738 415.4492 70.6816 419.8887 79.4453 417.4961 c +%_87.2227 415.375 90.2832 409.1016 88.7324 403.4219 c +%_87.5664 399.1445 83.7402 397.0195 80.2148 396.9941 c +%_80.0957 396.9941 79.9922 397.0762 79.9648 397.1934 c +%_79.9414 397.3105 79.998 397.4277 80.1074 397.4785 c +%_81.1699 397.9688 82.1875 398.877 82.6504 400.5742 c +%_83.4258 403.4121 81.3906 405.5605 79.6348 406.0391 c +%_76.3018 406.9492 73.2822 405.1211 72.2705 401.416 c +%_70.8906 396.3574 75.3662 390.8906 82.5234 388.9355 c +%_91.4121 386.5117 101.8828 392.8066 104.207 401.3223 c +%_106.582 410.0254 101.3496 421.4648 86.9082 425.4063 c +%_72.7148 429.2813 53.792 424.0996 49.6152 408.793 c +%_47.1797 399.8691 49.1328 391.1875 54.207 383.5508 c +%_54.2734 383.4512 54.2607 383.3164 54.1748 383.2305 c +%_54.0879 383.1445 53.9531 383.1328 53.8525 383.2012 c +%_42.541 390.8828 30.1104 391.707 28.3262 385.1699 c +%_27.4531 381.9727 29.3037 379.7188 31.752 379.0508 c +%_34.2676 378.3652 36.8457 379.6289 38.0322 382.4883 c +%_38.0791 382.5996 38.2002 382.6641 38.3193 382.6406 c +%_38.4375 382.6133 38.5244 382.5098 38.5215 382.3867 c +%_38.4287 375.3477 33.0029 369.5625 26.1572 371.4316 c +%_20.1016 373.084 16.835 379.5488 18.6875 386.3359 c +%_21.4883 396.5977 33.6992 398.5391 43.0059 393.6504 C +%_37.6465 400.7715 34.1914 410.1035 37.252 421.3184 c +%_43.4502 444.0313 72.5039 448.4355 89.9082 443.6855 c +%_105.707 439.373 114.9512 433.4023 120.9082 424.6152 C +%_117.1074 434.0098 111.4414 439.0039 102.834 442.9434 C +%_96.3047 451.0918 100.5156 466.5195 v +%_102.2754 472.9707 106.3086 478.3418 112.1074 481.7793 C +%_112.1074 481.7813 112.1055 481.7842 112.1016 481.7871 C +%_112.1504 481.8105 112.1992 481.8379 112.2461 481.8613 C +%_112.6328 482.0879 113.0293 482.3057 113.4316 482.5146 C +%_119.4434 486.1211 126.4961 494.6973 125.2656 504.6113 c +%_125.252 504.7236 125.3145 504.832 125.418 504.877 c +%_125.5234 504.9219 125.6445 504.8896 125.7148 504.8018 c +%_130.3672 498.9629 130.2109 491.1104 127.8789 485.8857 C +%_131.7363 485.915 135.9082 485.375 140.3438 484.165 c +%_156.168 479.8457 165.0117 468.3135 167.9121 457.5566 C +%_172.4102 459.5977 178.0059 457.4043 180.9883 452.9199 c +%_181.0527 452.8184 181.041 452.6855 180.957 452.5996 c +%_180.873 452.5156 180.7402 452.5 180.6387 452.5645 c +%_175.7578 455.6914 169.9551 451.9648 168.4043 445.3496 c +%_168.377 445.2305 168.2676 445.1484 168.1445 445.1543 c +%_168.0215 445.1602 167.9199 445.2539 167.9063 445.377 c +%_166.5586 456.251 159.8223 465.0566 149.1836 467.96 c +%_138.0762 470.9922 127.2441 466.7852 124.3145 456.0469 c +%_121.9219 447.2832 127.5566 436.3301 137.5508 433.6016 c +%_145.3281 431.4785 151.0742 434.5527 152.5898 440.1074 c +%_153.9043 444.9199 151.6152 449.6563 147.666 450.7344 c +%_142.0176 452.2754 138.2383 446.4844 141.7832 441.877 c +%_141.8516 441.7852 141.8535 441.6602 141.7832 441.5684 c +%_141.7148 441.4766 141.5918 441.4434 141.4863 441.4863 c +%_137.3887 443.1465 134.2734 447.3418 135.5918 452.1729 c +%_136.8047 456.6152 141.7539 460.1729 149.6543 458.0166 c +%_159.0352 455.457 166.0801 443.8555 162.0371 429.043 c +%_156.5137 408.7988 130.6797 404.0449 115.1074 418.9043 C +%_119.5273 412.2617 124.4512 406.0098 135.4375 403.0117 c +%_156.1875 397.3496 175.8125 414.0332 174.1719 440.4902 c +%_174.1641 440.6152 174.25 440.7285 174.373 440.7539 c +%_174.4941 440.7813 174.6191 440.7129 174.6641 440.5977 c +%_177.7461 432.4922 183.0781 423.4316 195.2734 420.1035 c +%_207.9883 416.6328 219.2871 422.5664 222.8594 435.6504 c +%_225.6211 445.7734 221.2012 453.875 213.9199 455.8623 c +%_208.3652 457.3789 202.9414 455.0039 201.2598 448.8398 c +%_198.7559 439.6641 207.8828 433.8203 213.6406 437.3516 c +%_213.7383 437.4121 213.8672 437.3965 213.9492 437.3164 c +%_214.0332 437.2363 214.0508 437.1094 213.9922 437.0078 c +%_211.5449 432.7324 205.6797 429.5977 198.6543 431.5156 c +%_186.5566 434.8164 181.5996 448.2383 184.9668 460.5811 c +%_186.5449 466.3652 189.7676 471.502 194.168 475.1426 C +%_198.0293 473.5186 202.8379 473.6777 206.373 474.8867 C +%_199.2344 474.8154 188.8789 479.8262 191.6465 489.9707 c +%_193.1973 495.6533 198.5918 498.2188 203.7559 496.8086 c +%_209.8574 495.1436 211.2969 489.21 209.5684 485.1729 c +%_209.5215 485.0654 209.4102 485.0039 209.2969 485.0225 c +%_209.1816 485.04 209.0938 485.1318 209.082 485.2471 c +%_208.9141 486.9375 207.668 488.6836 205.7441 489.208 c +%_203.332 489.8662 201.3984 488.415 200.873 486.4854 c +%_200.0039 483.3066 203.0625 480.5752 207.2734 480.6211 C +%_207.2695 480.6094 L +%_210.2891 480.8984 213.5039 480.6445 216.8711 479.7266 c +%_233.041 475.3125 243.6641 453.5674 237.623 431.4375 c +%_231.248 408.0781 211.2051 400.2363 194.0469 404.9199 c +%_184.8477 407.4297 178.8223 412.7871 175.5898 418.4453 C +%_172.3887 398.668 160.8613 388.7793 147.2285 385.4707 C +%_144.7051 390.8008 139.7109 393.8867 Y +%_145.0859 386.8496 148.584 376.3477 145.1816 363.8809 c +%_140.0273 344.9961 117.4707 335.2344 97.5996 340.6582 c +%_84.9883 344.0996 73.9922 352.0801 68.3965 363.7266 C +%_61.9551 359.2266 54.1855 358.6406 49.1914 362.8809 c +%_f +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_/ArtDictionary : +%_(-1.837222) /String (BBAccumRotation) , +%_; +%_ +%_u +%_*u +%_0 D +%_0 0 0 0 1 1 1 Xa +%_0 1 0 0 0 Xy +%_196.1289 436.9688 m +%_196.0039 436.9688 195.8984 436.877 195.8789 436.7539 c +%_193.5 420.7402 184.2266 407.3652 171.4883 399.3594 c +%_171.3848 399.2949 171.3398 399.1641 171.3867 399.0508 c +%_171.4316 398.9375 171.5527 398.8711 171.6719 398.8965 c +%_182.1445 401 191.4648 406.7598 198.1211 414.9277 C +%_202.7461 401.5508 213.3574 392.9219 226.4219 389.2734 C +%_221.6133 383.6816 224.1289 375.7402 231.541 374.4375 c +%_231.6543 374.416 231.7656 374.4746 231.8145 374.5781 c +%_231.8633 374.6816 231.8359 374.8066 231.748 374.8809 c +%_227.7754 378.2266 229.2285 386.3008 241.0859 386.3008 c +%_248.8794 386.3008 253.9067 383.1211 253.9067 378.8145 c +%_253.9067 375.4297 250.8442 373.584 248.2642 373.584 c +%_243.8501 373.584 241.3262 377.5449 243.2227 381.127 c +%_243.2773 381.2305 243.2559 381.3574 243.168 381.4355 c +%_243.0801 381.5137 242.9512 381.5215 242.8535 381.4551 c +%_240.6055 379.8906 239.0352 377.834 239.0352 374.6641 c +%_239.0352 369.2773 244.061 363.5352 252.3677 363.5332 c +%_261.2896 363.5332 269.3911 370.4043 269.3911 378.8145 c +%_269.3911 390.6309 259.3423 396.248 248.7778 397.248 C +%_253.1431 398.9219 256.4106 403.7734 v +%_256.4771 403.8691 256.4673 403.998 256.3892 404.084 c +%_256.311 404.1719 256.1841 404.1934 256.0825 404.1387 c +%_250.2524 401.0566 243.5938 399.3945 236.5801 399.3945 c +%_216.957 399.3945 200.0332 415.7988 196.3809 436.7607 c +%_196.3594 436.8818 196.252 436.9727 196.1289 436.9688 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_1 D +%_119.4512 384.5625 m +%_114.8438 376.8867 113.1992 363.7129 117.4941 353.8809 c +%_117.543 353.7695 117.5078 353.6406 117.4082 353.5703 c +%_117.3086 353.502 117.1758 353.5117 117.0879 353.5957 c +%_112.2813 358.1484 108.1484 368.7715 110.3828 381.0527 C +%_107.2871 383.4473 105.3379 385.8223 103.8691 389.0059 c +%_103.8223 389.1074 103.8496 389.2305 103.9355 389.3047 c +%_104.0215 389.377 104.1465 389.3848 104.2422 389.3203 c +%_109.2383 385.959 113.7051 384.8125 119.4512 384.5625 C +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_130.0586 504.3691 m +%_129.9902 504.4727 130.0078 504.6133 130.0996 504.6973 c +%_130.1934 504.7813 130.334 504.7852 130.4316 504.7061 c +%_137.2461 499.1797 146.3066 495.6504 157.4668 495.6504 c +%_185.0371 495.6504 202.4395 512.1689 205.1738 529.5771 c +%_205.1914 529.6885 205.2813 529.7734 205.3926 529.7891 c +%_205.5039 529.8047 205.6133 529.7422 205.6582 529.6396 c +%_208.3828 523.3818 210.0254 514.3057 201.6094 502.1309 c +%_196.5742 494.8457 190.4785 489.8311 190.4785 483.3145 c +%_190.4785 479.0566 192.7402 476.1602 196.168 476.1602 c +%_199.7734 476.1602 202.1055 479.248 202.1035 482.7148 c +%_202.1035 484.4629 201.5996 486.1934 200.6953 487.7607 c +%_200.6367 487.8633 200.6543 487.9902 200.7402 488.0723 c +%_200.8242 488.1523 200.9551 488.165 201.0527 488.1016 c +%_204.0254 486.1641 206.6797 482.7021 206.6797 477.8281 c +%_206.6797 470.6563 200.5469 464.6602 192.209 464.6602 c +%_183.2363 464.6602 175.8867 471.709 175.8867 481.8477 c +%_175.8867 485.3262 176.875 489.5156 179.3496 492.9805 C +%_175.9648 490.1523 174.1582 488.1523 172.6719 483.8271 C +%_162.2715 482.0186 151.166 483.6797 142.3398 489.4727 C +%_142.0859 483.3711 140.0898 478.2793 135.998 474.1533 c +%_135.9141 474.0684 135.7832 474.0547 135.6836 474.1182 c +%_135.582 474.1816 135.541 474.3066 135.5801 474.4189 c +%_138.457 482.4199 136.5234 494.6152 130.0586 504.3691 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_42.6934 497.7344 m +%_44.9375 502.5352 50.1523 505.2188 56.1543 505.3271 c +%_56.2793 505.3311 56.3867 505.2432 56.4082 505.1211 c +%_56.4316 504.998 56.3633 504.8779 56.248 504.8359 c +%_54.2012 504.082 52.5859 502.7637 51.7266 500.9258 c +%_49.5137 496.1973 53.0938 489.8301 59.7402 486.5566 c +%_59.8184 486.5186 59.8711 486.4434 59.8809 486.3594 c +%_59.8906 486.2725 59.8555 486.1885 59.791 486.1318 c +%_55.5 482.6143 50.3789 476.0781 50.3789 462.7148 c +%_50.377 444.0322 62.5332 426.25 78.6543 426.25 c +%_87.8672 426.25 95.2871 432.6465 99.125 442.2422 C +%_94.9023 436.4844 89.1445 432.1348 81.2109 432.1348 c +%_69.5703 432.1348 60.3574 444.5439 60.3555 462.459 c +%_60.3555 479.3457 72.2578 499.0518 88.1211 499.0508 c +%_96.8242 499.0488 103.3477 492.0117 103.3477 482.9277 c +%_103.3477 474.8672 98.1016 470.2637 92.2168 470.2637 c +%_87.7793 470.2637 84.7227 473.3936 83.7715 476.7871 c +%_83.7383 476.9023 83.791 477.0254 83.8965 477.0811 c +%_84.0039 477.1357 84.1328 477.1104 84.2109 477.0186 c +%_84.9629 476.124 86.1074 475.3809 87.8652 475.3809 c +%_90.8086 475.3789 92.3438 477.9082 92.3438 479.7285 c +%_92.3438 483.1836 89.7852 485.6152 85.9453 485.6152 c +%_80.7031 485.6152 76.6055 479.8564 76.6055 472.4385 c +%_76.6055 463.2236 85.4355 454.7813 94.2637 454.7813 c +%_103.2852 454.7813 112.9434 462.8408 112.9434 477.8125 c +%_112.9414 492.5234 102.9648 509.4141 87.0977 509.4141 c +%_77.8477 509.4141 69.9844 505.2441 63.9551 498.3398 c +%_63.875 498.248 63.7422 498.2246 63.6387 498.2852 c +%_63.5313 498.3477 63.4844 498.4727 63.5234 498.5879 c +%_67.957 511.5234 65.4766 523.7344 58.7031 523.7324 c +%_55.3887 523.7324 53.7012 521.3535 53.7012 518.8154 c +%_53.7012 516.21 55.5996 514.0566 58.6699 513.6611 c +%_58.791 513.6475 58.8828 513.5479 58.8926 513.4268 c +%_58.8984 513.3047 58.8184 513.1943 58.7012 513.1641 c +%_51.8867 511.4004 44.877 515.1133 44.877 522.2061 c +%_44.877 528.4854 50.2539 533.3398 57.2891 533.3398 c +%_67.9258 533.3379 73.0137 522.0684 70.748 511.8047 C +%_76.207 518.8486 84.3008 524.6396 95.9258 524.6396 c +%_119.4688 524.6396 131.3672 497.7715 131.3672 479.7285 c +%_131.3672 463.3525 128.041 452.8604 121.1309 444.8018 C +%_129.1934 450.9404 132.5195 457.7227 134.0547 467.0645 C +%_140.1953 475.5078 156.1875 475.5078 v +%_162.875 475.5078 169.1172 473.0322 173.9609 468.3438 C +%_173.9629 468.3447 173.9648 468.3477 173.9668 468.3486 C +%_174.002 468.3105 174.0391 468.2695 174.0762 468.2314 C +%_174.3965 467.915 174.7109 467.5918 175.0195 467.2578 C +%_180.0801 462.4102 190.2109 457.8633 199.4512 461.6602 c +%_199.5566 461.7031 199.6777 461.6699 199.748 461.582 c +%_199.8184 461.4932 199.8184 461.3672 199.752 461.2754 c +%_195.3457 455.252 187.7285 453.335 182.0742 454.21 C +%_183.1172 450.4941 183.6953 446.3281 183.6953 441.7305 c +%_183.6973 425.3262 174.8984 413.7598 165.2852 408.1289 C +%_168.4375 404.3281 167.7949 398.3535 164.2539 394.2949 c +%_164.1738 394.2051 164.043 394.1816 163.9375 394.2402 c +%_163.834 394.2988 163.7832 394.4238 163.8184 394.5391 c +%_165.5508 400.0703 160.4277 404.6875 153.6387 404.4395 c +%_153.5156 404.4355 153.4063 404.5195 153.3809 404.6406 c +%_153.3555 404.7617 153.418 404.8828 153.5332 404.9277 c +%_163.668 409.0918 170.3906 417.9102 170.3887 428.9355 c +%_170.3906 440.4492 163.4805 449.79 152.3496 449.79 c +%_143.2656 449.79 134.1816 441.4727 134.1816 431.1133 c +%_134.1816 423.0508 138.6582 418.3184 144.416 418.3164 c +%_149.4063 418.3184 153.373 421.7715 153.373 425.8672 c +%_153.373 431.7188 146.7891 433.8408 143.2773 429.209 c +%_143.209 429.1172 143.0859 429.084 142.9805 429.127 c +%_142.875 429.1689 142.8105 429.2773 142.8223 429.3926 c +%_143.3457 433.7813 146.5762 437.8926 151.582 437.8926 c +%_156.1875 437.8926 160.9219 434.0518 160.9219 425.8652 c +%_160.9219 416.1406 151.584 406.291 136.2305 406.2891 c +%_115.2461 406.2891 103.8594 429.959 114.0938 448.8945 C +%_108.8496 442.8809 104.1152 436.4844 104.1152 425.0977 c +%_104.1133 403.5898 125.3789 389.0488 150.4688 397.5977 c +%_150.5879 397.6367 150.7188 397.584 150.7754 397.4746 c +%_150.834 397.3633 150.8008 397.2266 150.6992 397.1523 c +%_143.6934 392.043 136.3555 384.5137 136.3555 371.873 c +%_136.3555 358.6934 145.0547 349.3535 158.6191 349.3535 c +%_169.1094 349.3535 175.7637 355.752 175.7637 363.2988 c +%_175.7637 369.0566 172.0449 373.6641 165.6563 373.6641 c +%_156.1426 373.6641 152.9082 363.3203 157.832 358.6953 c +%_157.916 358.6152 157.9355 358.4902 157.8809 358.3887 c +%_157.8242 358.2871 157.7051 358.2344 157.5938 358.2637 c +%_152.8242 359.5 148.2559 364.332 148.2559 371.6152 c +%_148.2539 384.1563 159.8965 392.4727 172.6914 392.4727 c +%_178.6875 392.4727 184.4902 390.7188 189.1641 387.4297 C +%_188.6113 383.2773 190.0313 378.6816 192.1309 375.5879 C +%_190.1816 382.457 192.291 393.7656 202.8027 393.7676 c +%_208.6953 393.7656 212.5898 389.2383 212.5898 383.8867 c +%_212.5898 377.5605 207.2441 374.6094 202.8945 375.2148 c +%_202.7793 375.2305 202.6895 375.3223 202.6758 375.4375 c +%_202.6641 375.5527 202.7305 375.6602 202.8379 375.7031 c +%_204.4238 376.3105 205.7813 377.9727 205.7813 379.9668 c +%_205.7813 382.4668 203.8691 383.9492 201.8691 383.9492 c +%_198.5762 383.9492 196.7461 380.2793 197.8984 376.2305 C +%_197.8867 376.2285 L +%_198.959 373.3926 199.5605 370.2246 199.5605 366.7363 c +%_199.5605 349.9746 181.3809 334.002 158.4395 334 c +%_134.2285 334 121.3867 351.2734 121.3887 369.0566 c +%_121.3887 378.5938 124.9688 385.8184 129.5762 390.4258 C +%_109.6543 388.3066 97.0781 396.8223 90.2969 409.1035 C +%_94.7754 412.9414 96.4375 418.5723 Y +%_91.0645 411.5352 81.8535 405.3945 68.9316 405.3945 c +%_49.3555 405.3945 34 424.5859 34 445.1836 c +%_34 458.2568 38.8027 470.9648 48.5645 479.4307 C +%_42.5273 484.459 39.918 491.8018 42.6934 497.7344 c +%_f +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_*U +%_U +%_/ArtDictionary : +%_(-3.141592) /String (BBAccumRotation) , +%_; +%_ +%_0 0.25 0 0 0 Xy +%_0 0 Xd +%_6 () XW +%_U +%_/ArtDictionary : +%_1 /Bool (AIPattern_Is_Repeated_Art) , +%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , +%_; +%_ +%_9 () XW +%_U +%_/ArtDictionary : +%_5 /Int (AIPattern_Editor_Preview_Rows) , +%_167 /Real (AIPattern_Editor_Tile_Height) , +%_1 /Bool (AIPattern_Editor_Top_in_Front) , +%_1 /Bool (AIPattern_Editor_Left_in_Front) , +%_1 /Bool (AIPattern_Editor_Dim_Copies_Key) , +%_5 /Int (AIPattern_Editor_Preview_Cols) , +%_167.0005 /Real (AIPattern_Editor_Tile_Width) , +%_4 /Int (AIPattern_Editor_Editable_Copy_Loc_Key) , +%_10 /Real (AIPattern_Editor_Dim_Percent_Key) , +%_; +%_ +%_9 () XW +E +%AI3_EndPattern +%AI5_End_NonPrinting-- +%AI5_Begin_NonPrinting +Np +%AI8_BeginBrushPattern +(New Pattern 11) 0 A +0 Xw +u +0 D +0 1 0 0 0 Xy +0 J 0 j 1 w 4 M []0 d 0 XR +-7698.6191 8089.6997 m +-7698.6191 8042.3184 L +-7746 8042.3184 L +-7746 8089.6997 L +-7698.6191 8089.6997 L +n +u +0 O +0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 Xa +-7721.4058 8085.4551 m +-7723.1816 8085.4551 L +-7723.1816 8090 L +-7721.4058 8090 L +-7721.4058 8085.4551 L +f +-7721.4058 8078.6855 m +-7723.1816 8078.6855 L +-7723.1816 8083.23 L +-7721.4058 8083.23 L +-7721.4058 8078.6855 L +f +-7721.4058 8071.918 m +-7723.1816 8071.918 L +-7723.1816 8076.4629 L +-7721.4058 8076.4629 L +-7721.4058 8071.918 L +f +-7721.4058 8065.1494 m +-7723.1816 8065.1494 L +-7723.1816 8069.6934 L +-7721.4058 8069.6934 L +-7721.4058 8065.1494 L +f +U +9 () XW +u +-7714.3809 8066.9238 m +-7714.3809 8065.1465 L +-7718.9258 8065.1465 L +-7718.9258 8066.9238 L +-7714.3809 8066.9238 L +f +-7700.8442 8066.9238 m +-7700.8442 8065.1465 L +-7705.3882 8065.1465 L +-7705.3882 8066.9238 L +-7700.8442 8066.9238 L +f +U +9 () XW +*u +1 D +-7709.4922 8065.1465 m +-7707.6118 8065.1465 L +-7707.6118 8066.9238 L +-7712.1558 8066.9238 L +-7712.1558 8065.1465 L +-7711.3306 8065.1465 L +-7712.4585 8062.2109 L +-7715.8838 8061.1733 L +-7716.3145 8061.0127 -7716.3818 8061.2061 -7716.4609 8061.5845 c +-7716.7915 8063.1582 -7718.0337 8063.582 -7719.0703 8063.1934 c +-7720.1855 8062.7749 -7720.9023 8061.4141 -7720.4785 8060.2783 c +-7720.0825 8059.2236 -7719.0215 8058.9512 -7718.0439 8059.3184 c +-7717.2817 8059.6021 -7716.6255 8060.2949 -7715.8623 8060.5791 c +-7714.9824 8060.9102 -7713.7529 8060.7222 -7712.9312 8060.3164 C +-7712.9658 8059.8135 -7713.1592 8059.3164 -7713.3945 8058.8735 c +-7713.9458 8057.8408 -7714.4375 8057.3672 -7715.3984 8056.7168 c +-7715.7842 8056.4395 -7716.2246 8056.1855 -7716.5625 8055.8359 c +-7717.1738 8055.2031 -7717.5186 8054.3398 -7717.1978 8053.4785 c +-7716.8374 8052.5215 -7715.8345 8052.1597 -7714.9146 8052.5039 c +-7713.8184 8052.9165 -7713.0513 8054.3184 -7713.4746 8055.4512 c +-7713.7007 8056.0581 -7714.2271 8056.3301 -7714.3008 8056.5254 c +-7714.4395 8056.8984 -7713.4858 8057.5664 -7713.2671 8057.7598 c +-7712.6074 8058.3184 -7712.0845 8059.3628 -7711.6978 8060.1768 C +-7705.4033 8062.1309 L +-7704.0137 8062.6504 -7702.8535 8063.5967 -7702.0103 8064.8047 C +-7710.5176 8062.8037 L +-7709.4922 8065.1465 L +f +0 D +-7714.0366 8055.1069 m +-7713.7524 8054.3452 -7714.3882 8053.3047 -7715.1113 8053.0332 c +-7715.8359 8052.7612 -7716.4214 8053.0781 -7716.6934 8053.8008 c +-7716.9863 8054.5845 -7716.1455 8055.6133 -7715.4199 8055.8838 c +-7714.7954 8056.1182 -7714.25 8055.6758 -7714.0366 8055.1069 c +f +-7718.2695 8059.8584 m +-7718.9146 8059.6172 -7719.6689 8059.8447 -7719.9185 8060.5117 c +-7720.2319 8061.3535 -7719.6685 8062.3452 -7718.8657 8062.6455 c +-7718.2002 8062.8945 -7717.4302 8062.6255 -7717.1675 8061.9199 c +-7716.8232 8061.002 -7717.4082 8060.1797 -7718.2695 8059.8584 c +f +*U +U +%AI8_EndBrushPattern +%AI8_BeginBrushPattern +(New Pattern 4) 0 A +0 Xw +u +1 Ap +0 1 0 0 0 Xy +0 J 0 j 1 w 4 M []0 d 0 XR +-7699.6191 8091 m +-7699.6191 8043.6191 L +-7747 8043.6191 L +-7747 8091 L +-7699.6191 8091 L +n +u +0 O +0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 Xa +-7742.4551 8068.2222 m +-7742.4551 8066.4453 L +-7747 8066.4453 L +-7747 8068.2222 L +-7742.4551 8068.2222 L +f +-7735.6865 8068.2222 m +-7735.6865 8066.4453 L +-7740.2314 8066.4453 L +-7740.2314 8068.2222 L +-7735.6865 8068.2222 L +f +-7728.9185 8068.2222 m +-7728.9185 8066.4453 L +-7733.4634 8066.4453 L +-7733.4634 8068.2222 L +-7728.9185 8068.2222 L +f +-7722.1494 8068.2222 m +-7722.1494 8066.4453 L +-7726.6934 8066.4453 L +-7726.6934 8068.2222 L +-7722.1494 8068.2222 L +f +-7715.3809 8068.2222 m +-7715.3809 8066.4453 L +-7719.9258 8066.4453 L +-7719.9258 8068.2222 L +-7715.3809 8068.2222 L +f +-7708.6113 8068.2222 m +-7708.6113 8066.4453 L +-7713.1558 8066.4453 L +-7713.1558 8068.2222 L +-7708.6113 8068.2222 L +f +-7701.8442 8068.2222 m +-7701.8442 8066.4453 L +-7706.3882 8066.4453 L +-7706.3882 8068.2222 L +-7701.8442 8068.2222 L +f +U +9 () XW +U +%AI8_EndBrushPattern +%AI8_BeginBrushPattern +(Unnamed 6) 0 A +0 Xw +u +u +0 Ap +0 1 0 0 0 Xy +0 J 0 j 1 w 4 M []0 d 0 XR +-3874.5 4218.5 m +-3773.1816 4218.5 L +-3773.1816 4210.7832 L +-3874.5 4210.7832 L +-3874.5 4218.5 L +n +u +0 O +0.743221 0.648188 0.629023 0.813504 0.113725 0.113725 0.105882 Xa +-3773.3 4212.207 m +-3773.1504 4212.2437 -3773.2041 4211.8247 -3773.1816 4211.7495 C +-3773.4319 4211.8423 -3773.2937 4212.3159 -3773.3 4212.207 C +f +-3775.7693 4213.1582 m +-3775.7256 4212.9873 L +-3776.0896 4213.4063 L +-3775.7693 4213.1582 L +f +-3778.0784 4213.1504 m +-3777.8601 4213.8643 -3777.2417 4213.0352 -3776.8303 4213.2891 C +-3776.7625 4213.4517 L +-3776.5769 4212.8774 L +-3777.0769 4212.9683 -3777.7263 4213.3496 -3778.0784 4213.1504 C +f +-3779.3096 4211.6064 m +-3779.2336 4211.8843 -3779.5759 4211.8457 -3779.0225 4211.6934 C +-3779.0503 4211.6631 -3779.0583 4211.6455 -3779.0745 4211.623 C +-3779.1243 4211.6274 -3779.1929 4211.6265 -3779.3096 4211.6064 C +f +-3779.0745 4211.623 m +-3778.8313 4211.603 -3779.2336 4211.3896 -3779.0745 4211.623 C +-3779.0745 4211.623 L +f +-3780.1975 4211.7822 m +-3779.8772 4211.5342 L +-3779.9441 4211.3701 -3780.2292 4211.333 -3780.1233 4211.2139 C +-3780.4519 4211.3496 -3780.3843 4211.5127 -3780.1975 4211.7822 C +f +-3780.5012 4212.3032 m +-3780.3352 4212.1982 L +-3780.3643 4212.1294 -3780.4082 4212.1055 -3780.5012 4212.3032 C +f +-3779.9832 4211.9766 m +-3780.3352 4212.1982 L +-3780.2888 4212.3135 -3780.2839 4212.5449 -3780.1736 4212.1182 C +-3780.2024 4212.3296 -3780.1328 4212.1265 -3779.9832 4211.9766 C +f +-3779.7839 4212.0854 m +-3779.6042 4212.2407 -3779.3721 4212.3384 -3779.6936 4212.5854 C +-3779.0808 4212.4873 -3779.1711 4211.9854 -3779.7839 4212.0854 C +f +-3778.1963 4213.8887 m +-3777.9561 4214.0977 L +-3777.7483 4213.8584 L +-3777.8521 4213.9771 -3778.2112 4213.665 -3778.1963 4213.8887 C +f +-3782.1929 4211.4126 m +-3782.2129 4211.5645 -3782.0852 4211.8174 -3782.0613 4212.0117 C +-3781.8247 4211.8374 L +-3781.9463 4211.7334 -3782.1768 4211.6377 -3782.1929 4211.4126 C +f +-3782.0613 4212.0117 m +-3782.4153 4212.2725 L +-3782.0991 4212.3032 -3782.0413 4212.1792 -3782.0613 4212.0117 C +f +-3780.5583 4213.0957 m +-3779.9768 4212.5479 L +-3780.6704 4213.103 L +-3780.5583 4213.0957 L +f +-3783.5449 4211.3936 m +-3783.3442 4211.042 L +-3783.7017 4211.5732 L +-3783.5449 4211.3936 L +f +-3784.4417 4211.4551 m +-3784.2932 4211.1641 -3784.6453 4210.9624 -3784.4883 4210.7832 C +-3784.7319 4210.835 -3784.9399 4211.0854 -3785.1272 4211.3101 C +-3784.9282 4211.1846 -3784.7161 4211.2168 -3784.4417 4211.4551 C +f +-3785.4417 4211.6377 m +-3785.3423 4211.5679 -3785.2393 4211.4429 -3785.1272 4211.3101 C +-3785.2329 4211.3774 -3785.3369 4211.4741 -3785.4417 4211.6377 C +f +-3783.0183 4212.1973 m +-3783.0457 4212.1055 -3783.0984 4211.8652 -3783.2969 4211.7637 C +-3783.1577 4212.1909 L +-3783.1152 4212.1934 -3783.0671 4212.1953 -3783.0183 4212.1973 C +f +-3783.1528 4212.2046 m +-3783.1577 4212.1909 L +-3783.3088 4212.1816 -3783.4136 4212.1719 -3783.4585 4212.167 c +-3783.4199 4212.1709 -3783.3279 4212.1816 -3783.1528 4212.2046 C +f +-3782.9832 4212.1992 m +-3782.9961 4212.1982 -3783.0056 4212.1973 -3783.0183 4212.1973 C +-3783.0049 4212.2393 -3782.9968 4212.2534 -3782.9832 4212.1992 C +f +-3781.4863 4212.709 m +-3781.6943 4212.9478 -3782.1279 4213.2041 -3781.7083 4213.5684 C +-3781.5591 4213.2759 -3781.7993 4213.0684 -3781.4863 4212.709 c +f +-3782.8103 4212.7334 m +-3782.4343 4212.8311 L +-3782.4417 4212.7183 -3782.5095 4212.5537 -3782.4065 4212.4351 C +-3782.8103 4212.7334 L +f +-3782.9944 4212.8691 m +-3782.8103 4212.7334 L +-3782.9497 4212.6973 L +-3782.9944 4212.8691 L +f +-3784.7976 4212.0376 m +-3784.96 4212.2236 -3785.1377 4212.2393 -3785.3384 4212.269 C +-3785.1233 4212.353 -3784.9009 4212.3984 -3784.6897 4212.3975 C +-3784.6599 4212.2632 -3784.5671 4212.0225 -3784.7976 4212.0376 C +f +-3783.9983 4212.1563 m +-3784.0095 4212.166 -3784.0239 4212.1709 -3784.0344 4212.1807 C +-3784.0122 4212.2168 -3783.9944 4212.2285 -3783.9983 4212.1563 C +f +-3787.3142 4212.2661 m +-3787.3032 4212.2896 -3787.2937 4212.3188 -3787.2825 4212.3438 C +-3787.28 4212.3188 -3787.2783 4212.2949 -3787.2751 4212.27 C +-3787.3142 4212.2661 L +f +-3784.6536 4212.4771 m +-3784.4919 4212.5596 -3784.3953 4212.4551 -3784.3032 4212.3232 C +-3784.4241 4212.3662 -3784.5522 4212.394 -3784.6897 4212.3975 C +-3784.7031 4212.458 -3784.7056 4212.498 -3784.6536 4212.4771 C +f +-3785.9929 4211.8374 m +-3785.9087 4211.9268 -3785.8132 4212.0024 -3785.7129 4212.0723 C +-3785.7952 4211.937 -3785.9631 4211.7261 -3785.9929 4211.8374 C +f +-3784.0889 4212.0625 m +-3784.0808 4212.0557 -3784.0735 4212.0479 -3784.0647 4212.0435 C +-3784.1177 4211.9517 -3784.1111 4211.9966 -3784.0889 4212.0625 C +f +-3784.0889 4212.0625 m +-3784.1721 4212.124 -3784.2375 4212.2295 -3784.3032 4212.3232 C +-3784.2048 4212.2896 -3784.1135 4212.2437 -3784.0344 4212.1807 C +-3784.0544 4212.1504 -3784.0745 4212.1045 -3784.0889 4212.0625 C +f +-3787.9128 4215.0093 m +-3787.8843 4214.6133 -3787.4592 4214.2471 -3787.0923 4214.6719 C +-3786.7312 4214.375 -3786.9673 4213.0723 -3787.2825 4212.3438 C +-3787.2937 4212.5166 -3787.2937 4212.6763 -3787.6653 4212.9102 C +-3787.5352 4213.1265 -3786.8408 4213.416 -3787.1543 4213.7744 C +-3787.6465 4213.9785 -3787.5576 4213.6343 -3787.7969 4213.4248 C +-3787.5935 4213.9185 -3788.4231 4214.1431 -3788.3159 4214.8687 C +-3787.8843 4214.6133 L +-3787.8762 4214.7261 -3788.0327 4214.9063 -3787.9128 4215.0093 C +f +-3786.5745 4212.3843 m +-3786.4216 4212.335 L +-3786.5959 4212.2661 -3786.7207 4212.1079 -3786.9504 4211.7979 C +-3787.2048 4211.9912 -3787.2576 4212.1382 -3787.2751 4212.27 C +-3786.5222 4212.3252 L +-3786.5745 4212.3843 L +f +-3785.7351 4212.3335 m +-3785.8545 4212.7646 -3786.2217 4212.9478 -3785.9968 4213.4141 C +-3785.5481 4213.3843 -3785.6824 4213.0542 -3785.4143 4212.8672 C +-3786.1384 4212.9741 -3785.2063 4212.6274 -3785.7295 4212.3828 C +-3785.5872 4212.3096 -3785.4592 4212.2871 -3785.3384 4212.269 C +-3785.4688 4212.2168 -3785.5945 4212.1519 -3785.7129 4212.0723 C +-3785.7063 4212.082 -3785.7017 4212.0894 -3785.6963 4212.0991 C +-3785.6929 4212.0977 L +-3785.6929 4212.1006 -3785.6936 4212.1016 -3785.6936 4212.1045 C +-3785.6624 4212.1582 -3785.6521 4212.1909 -3785.6873 4212.1597 C +-3785.6897 4212.165 -3785.6985 4212.167 -3785.7024 4212.1685 C +-3785.7073 4212.2285 -3785.7207 4212.2808 -3785.7351 4212.3311 C +-3785.9448 4212.2422 -3785.7681 4212.2192 -3785.7024 4212.1685 C +-3785.7 4212.1475 -3785.6943 4212.1274 -3785.6936 4212.1045 C +-3785.6943 4212.1021 -3785.6953 4212.1006 -3785.6963 4212.0991 C +-3786.4216 4212.335 L +-3786.2681 4212.395 -3786.0759 4212.3828 -3785.7351 4212.3335 C +f +-3782.0952 4214.4951 m +-3782.1177 4214.457 -3782.1167 4214.4263 -3782.1184 4214.395 C +-3782.1653 4214.4478 -3782.1831 4214.4839 -3782.0952 4214.4951 C +f +-3782.3936 4214.2349 m +-3782.3408 4214.1748 -3782.2969 4214.0024 -3782.1255 4214.0469 C +-3781.9768 4214.1763 -3782.1262 4214.2534 -3782.1184 4214.395 C +-3782.0151 4214.2808 -3781.7568 4214.0859 -3782.0808 4213.8765 C +-3782.1321 4213.9351 L +-3782.4241 4213.7871 -3782.7993 4213.2495 -3782.7483 4213.1904 C +-3782.6631 4213.5781 -3782.5879 4213.8545 -3782.3936 4214.2349 C +f +-3784.0852 4213.394 m +-3784.6892 4213.6055 L +-3784.3816 4213.9785 L +-3784.3972 4213.7544 L +-3784.0537 4213.8423 -3784.1279 4213.5664 -3784.0852 4213.394 C +f +-3787.3833 4212.0518 m +-3787.3032 4211.5967 L +-3787.6521 4212.2393 L +-3787.3833 4212.0518 L +f +-3788.1682 4212.1064 m +-3788.1392 4211.7104 L +-3788.3464 4211.9492 L +-3788.1682 4212.1064 L +f +-3832.4617 4217.0166 m +-3832.6392 4217.1289 L +-3832.5552 4217.0942 -3832.5012 4217.0566 -3832.4617 4217.0166 C +f +-3831.1768 4217.0435 m +-3831.1453 4216.8486 L +-3831.2048 4216.9561 -3831.2292 4217.0352 -3831.1768 4217.0435 C +f +-3807.4456 4212.1509 m +-3807.7041 4211.7813 -3807.9929 4211.208 -3807.9617 4211.6533 C +-3807.8823 4212.0869 L +-3807.7017 4212.0093 -3807.5632 4212.0576 -3807.4456 4212.1509 C +f +-3820.6479 4214.7412 m +-3820.6233 4214.7832 -3820.5977 4214.8286 -3820.5723 4214.873 C +-3820.5095 4214.7246 -3820.4504 4214.5869 -3820.3977 4214.458 C +-3820.4729 4214.5469 -3820.5583 4214.6416 -3820.6479 4214.7412 C +f +-3820.8303 4216.5366 m +-3821.1711 4216.2568 L +-3821.0945 4216.3545 -3820.9849 4216.4478 -3820.8303 4216.5366 C +f +-3839.4792 4217.4766 m +-3839.6863 4217.9185 L +-3839.3623 4217.916 -3839.5049 4217.6934 -3839.4792 4217.4766 C +f +-3796.2073 4212.2661 m +-3796.4304 4212.0967 -3796.6079 4212.0254 -3796.7639 4212.0044 C +-3796.4951 4212.2534 -3796.2783 4212.6274 -3796.2073 4212.2661 C +f +-3831.9561 4212.4126 m +-3832.0647 4212.4912 -3832.1111 4212.5796 -3832.1079 4212.6763 C +-3831.9961 4212.6021 -3831.9329 4212.519 -3831.9561 4212.4126 C +f +-3797.4082 4212.0059 m +-3797.3689 4212.0493 -3797.3303 4212.0713 -3797.2903 4212.1079 C +-3797.1272 4212.0352 -3796.9631 4211.9766 -3796.7639 4212.0044 C +-3796.9624 4211.8188 -3797.1897 4211.7046 -3797.4082 4212.0059 C +f +-3864.9297 4217.1172 m +-3864.9482 4217.0977 -3864.9705 4217.0884 -3864.9873 4217.0654 C +-3864.9929 4217.124 -3864.9673 4217.1274 -3864.9297 4217.1172 C +f +-3872.3442 4212.7393 m +-3872.2712 4212.7124 -3872.1521 4212.7119 -3872.0398 4212.7061 C +-3872.0945 4212.6763 -3872.1863 4212.6792 -3872.3442 4212.7393 c +f +-3791.3264 4211.917 m +-3791.1599 4211.8887 -3791.3 4211.8691 -3791.3264 4211.917 C +-3791.3264 4211.917 L +f +-3790.5168 4213.6328 m +-3790.5522 4213.6816 -3790.5791 4213.7437 -3790.5833 4213.8438 C +-3790.5696 4213.7393 -3790.5464 4213.6729 -3790.5168 4213.6328 c +f +-3799.0664 4214.7061 m +-3799.0713 4214.7061 -3799.0752 4214.7046 -3799.0808 4214.7046 C +-3799.0313 4214.7896 -3799.0398 4214.7734 -3799.0664 4214.7061 C +f +-3791.0759 4212.1143 m +-3791.1384 4212.061 -3791.2104 4212.0166 -3791.2888 4211.9854 C +-3791.2544 4212.019 -3791.1897 4212.061 -3791.0759 4212.1143 C +f +-3791.1096 4211.9092 m +-3791.0522 4211.9287 -3791.0071 4211.9395 -3790.9641 4211.9512 C +-3790.9431 4211.8789 -3790.9617 4211.8335 -3791.1096 4211.9092 C +f +-3791.5583 4211.9404 m +-3791.4631 4211.9336 -3791.3743 4211.9541 -3791.2888 4211.9854 C +-3791.3215 4211.9561 -3791.3352 4211.9316 -3791.3264 4211.917 C +-3791.3752 4211.9238 -3791.4441 4211.9326 -3791.5583 4211.9404 c +f +-3851.2932 4215.9561 m +-3851.3042 4215.9424 -3851.3169 4215.9336 -3851.3289 4215.915 C +-3851.4968 4216.0952 -3851.4231 4216.0664 -3851.2932 4215.9561 C +f +-3811.7783 4216.6563 m +-3811.7705 4216.6519 -3811.7664 4216.6406 -3811.7593 4216.6353 C +-3811.7671 4216.6309 -3811.7769 4216.625 -3811.7839 4216.6201 C +-3811.7783 4216.6563 L +f +-3812.3762 4216.9795 m +-3812.1216 4216.4395 -3811.9768 4216.5059 -3811.7839 4216.6201 C +-3811.9817 4215.3691 L +-3812.3762 4216.9795 L +f +*u +-3835.5383 4217.1416 m +-3835.1184 4217.5313 L +-3835.6252 4218.1729 -3835.9919 4217.9517 -3835.5977 4218.5 C +-3835.5383 4217.1416 -3833.9656 4218.3608 -3833.9072 4217.0039 C +-3833.6304 4217.2896 L +-3833.7097 4217.2764 -3833.7224 4217.3564 -3833.8008 4217.3428 C +-3833.2625 4217.9932 -3833.4009 4216.3608 -3832.7073 4216.5542 C +-3832.4656 4216.6582 -3832.2969 4216.8555 -3832.4617 4217.0166 C +-3831.9231 4216.6807 L +-3831.7664 4216.707 -3831.8047 4216.9429 -3831.9607 4216.917 C +-3831.1392 4216.8086 L +-3831.1453 4216.8486 L +-3831.0281 4216.6353 -3830.7625 4216.3062 -3830.6328 4216.166 C +-3830.4241 4216.3608 -3830.7375 4216.3101 -3830.6841 4216.4795 C +-3830.2292 4216.1504 L +-3830.0439 4216.5024 -3830.4209 4216.8438 -3830.7351 4216.7935 C +-3830.3103 4218.1494 -3830.3577 4216.4517 -3829.4409 4217.2437 C +-3829.8704 4217.416 L +-3829.5935 4218.1865 -3829.2583 4217.9072 -3828.7727 4218.3877 C +-3828.8879 4218.1367 -3829.7449 4217.1772 -3829.2512 4216.8389 C +-3829.1121 4216.9414 -3828.9287 4216.9902 -3828.6624 4216.7168 C +-3828.6599 4217.1997 -3828.3999 4217.0811 -3828.0745 4217.0537 C +-3828.0967 4217.6934 L +-3827.7449 4217.5088 -3827.7727 4217.1831 -3827.5657 4216.895 C +-3827.1736 4216.958 -3827.0923 4217.4536 -3827 4217.8711 C +-3826.3721 4217.9727 -3827.4336 4217.0767 -3826.6904 4216.9561 C +-3826.1682 4217.2007 -3825.8015 4216.9395 -3825.1768 4216.5566 C +-3824.8113 4216.7769 -3825.2407 4216.9478 -3825.1096 4217.1309 C +-3824.7856 4216.6206 L +-3824.7063 4216.6328 -3824.7319 4216.7896 -3824.7449 4216.8687 C +-3824.4719 4216.6709 -3824.7224 4216.2295 -3824.2932 4216.0557 C +-3824.1775 4215.3511 -3823.4121 4217.0854 -3822.8809 4216.2852 C +-3822.75 4216.4668 -3822.9441 4216.6772 -3822.9041 4216.9248 C +-3822.1753 4216.3999 -3822.2793 4216.5435 -3821.6809 4215.8369 C +-3821.1711 4216.2568 L +-3821.5457 4215.7764 -3821.0671 4215.208 -3820.6479 4214.7412 C +-3820.7808 4214.5093 -3820.8943 4214.3062 -3820.9705 4214.2095 C +-3820.3015 4213.8662 L +-3820.2207 4213.9712 -3820.2881 4214.1909 -3820.3977 4214.458 C +-3820.3521 4214.4053 -3820.3088 4214.353 -3820.2751 4214.3047 C +-3820.0359 4214.541 -3820.1599 4214.9102 -3820.3313 4215.2676 C +-3820.4128 4215.1416 -3820.4937 4215.0068 -3820.5723 4214.873 C +-3820.7375 4215.2617 -3820.8921 4215.6919 -3820.8577 4216.0664 C +-3820.8142 4215.9927 -3820.7305 4215.9292 -3820.6384 4215.8936 C +-3820.6816 4215.999 -3820.7092 4216.0933 -3820.6892 4216.1572 c +-3820.6665 4216.2246 -3820.5967 4216.083 -3820.4873 4215.9199 C +-3820.3352 4216.6328 L +-3820.2983 4216.3496 L +-3819.4231 4216.7959 L +-3818.7969 4216.0781 -3818.2522 4215.0215 -3817.2583 4214.7271 C +-3817.5049 4215.25 -3817.3113 4215.5811 -3817.3247 4216.2007 C +-3817.5959 4215.5449 -3818.0945 4216.4795 -3818.6096 4216.3462 c +-3818.3408 4216.415 -3818.3999 4216.7104 -3818.4683 4216.8135 C +-3817.5496 4216.2168 L +-3817.5703 4216.7236 -3817.3545 4216.5967 -3817.1145 4216.8062 C +-3817.2959 4215.8047 -3816.4297 4216.1392 -3816.0559 4215.832 C +-3816.0327 4216.1685 -3816.1223 4216.5117 -3816.5784 4216.4307 C +-3816.0752 4217.1846 -3815.9282 4215.2544 -3815.4343 4215.895 C +-3815.5457 4215.9033 -3815.6057 4215.8516 -3815.6497 4216.0225 C +-3815.3896 4215.7236 -3814.7537 4215.9604 -3814.9033 4216.2534 C +-3815.0144 4216.2603 L +-3814.2751 4216.3789 -3812.7639 4216.2676 -3812.6536 4215.417 C +-3812.6462 4215.5269 -3812.7505 4216.4424 -3812.7952 4216.6143 C +-3811.4761 4213.7524 L +-3811.5923 4214.4829 -3811.1462 4216.2227 -3811.7593 4216.6353 C +-3811.5833 4216.7393 -3811.3655 4216.8608 -3810.9944 4216.603 C +-3811.1145 4216.499 -3811.2937 4215.5469 -3811.1296 4215.48 C +-3810.6792 4216.2935 -3810.8169 4215.915 -3810.2617 4216.6084 C +-3810.4417 4216.4517 -3810.2417 4215.3062 -3809.9573 4215.3428 C +-3810.0017 4215.5142 -3809.9336 4216.4736 -3810.0376 4216.5928 C +-3809.3296 4215.4683 L +-3809.5063 4215.6709 -3809.3608 4216.4214 -3809.2024 4216.7393 C +-3809.2759 4216.519 -3808.5903 4216.7598 -3808.4016 4216.6484 C +-3808.7017 4216.3877 L +-3807.9023 4216.5576 -3807.9121 4214.8062 -3807.1191 4214.8652 C +-3807.2151 4215.0977 -3807.3562 4216.2949 -3806.9529 4216.4365 C +-3806.7681 4215.8604 -3806.1345 4213.666 -3805.4329 4213.2227 C +-3805.2983 4213.5518 L +-3804.76 4213.1768 L +-3805.0952 4214.0435 -3806.0359 4215.8672 -3806.5496 4216.5767 C +-3806.2505 4216.8374 -3806.4663 4216.9648 -3806.0183 4216.9351 C +-3805.8601 4217.2437 -3806.2625 4217.4033 -3806.3943 4217.4214 C +-3805.3513 4217.6206 L +-3805.3977 4216.9478 -3804.5537 4216.9463 -3804.5935 4216.3862 C +-3805.7263 4217.083 L +-3805.7722 4216.4121 -3805.0713 4215.1748 -3804.3323 4215.2935 C +-3804.1443 4215.561 -3804.4729 4216.4902 -3804.4575 4216.7144 C +-3804.3616 4216.4829 -3803.7561 4216.2725 -3803.6882 4216.4365 C +-3804.0017 4216.7959 L +-3803.5903 4217.0488 -3803.3303 4215.9048 -3802.8359 4216.5464 C +-3802.6653 4216.5894 -3802.3264 4217.4121 -3802.2969 4217.0142 C +-3802.5752 4216.2471 -3802.6296 4213.874 -3802.4441 4213.2979 C +-3802.3843 4213.3496 -3801.5481 4214.0313 -3801.3533 4214.4102 C +-3801.0723 4215.0117 -3801.7751 4215.8438 -3801.5359 4216.3604 C +-3801.5256 4216.1768 -3801.3704 4215.9502 -3801.3057 4215.8774 C +-3801.1265 4216.0342 -3801.3799 4216.4463 -3800.9905 4216.3633 C +-3800.9255 4215.6816 -3800.1985 4216.4209 -3800.8064 4215.7871 C +-3800.4255 4215.5923 -3800.4016 4215.9272 -3799.9543 4215.8975 C +-3800.0967 4215.457 -3799.5527 4214.3984 -3799.1711 4214.2041 C +-3799.1936 4214.3774 -3799.1079 4214.603 -3799.0664 4214.7061 C +-3798.2856 4214.7676 -3797.8665 4215.0771 -3797.1384 4215.083 C +-3797.0713 4215.248 -3796.72 4215.4478 -3796.8696 4215.7412 C +-3796.7649 4215.6206 -3796.6687 4215.3896 -3796.4441 4215.373 C +-3796.0095 4215.9624 -3796.9448 4215.4648 -3796.6135 4216.1729 C +-3796.5852 4215.7769 -3796.0327 4215.6265 -3795.7129 4215.3789 C +-3795.8113 4214.7671 -3796.4519 4215.2617 -3796.7722 4215.5088 C +-3796.7737 4214.665 -3796.2161 4213.7813 -3795.4551 4213.3911 C +-3794.8503 4213.1816 -3795.1929 4213.9365 -3795.0879 4213.8164 C +-3793.9519 4213.9639 -3794.1201 4212.3428 -3793.1768 4212.9517 C +-3792.8025 4213.4893 -3793.1599 4214.0215 -3793.0769 4214.4092 C +-3793.5696 4214.6128 -3793.8333 4214.0679 -3794.1672 4214.0894 C +-3793.7561 4214.3438 L +-3793.9128 4214.5225 -3794.2417 4214.6582 -3794.4209 4214.5024 C +-3794.1072 4214.9854 -3792.5017 4214.5952 -3791.6252 4215.041 C +-3791.4695 4214.8608 -3791.2007 4214.6743 -3791.3279 4214.458 C +-3791.6052 4214.5332 L +-3791.8601 4214.0996 -3791.0833 4213.9336 -3791.4343 4213.731 C +-3791.0623 4213.4263 -3790.6453 4212.9473 -3790.1216 4213.1924 C +-3790.0232 4213.8057 L +-3790.0344 4213.6265 -3790.3655 4213.4404 -3790.5127 4213.6274 c +-3790.2944 4213.3555 -3789.7097 4214.457 -3789.4705 4213.6543 C +-3789.8376 4213.2295 L +-3789.4641 4212.9214 -3789.0024 4212.2705 -3788.5383 4212.4639 C +-3788.7495 4211.8584 -3788.6453 4212.5332 -3788.9751 4211.8247 C +-3788.6892 4212.7061 -3790.1624 4211.7876 -3789.7031 4212.7139 C +-3790.0415 4211.8916 -3790.2888 4212.3652 -3790.7312 4211.6641 C +-3790.7175 4211.8662 -3790.5745 4212.0508 -3790.9641 4211.9512 C +-3790.9817 4212.0103 -3791.0232 4212.0854 -3791.0496 4212.1294 C +-3791.0615 4212.124 -3791.0657 4212.1206 -3791.0759 4212.1143 C +-3791.0681 4212.1221 -3791.0623 4212.1309 -3791.0544 4212.1382 C +-3791.0713 4212.1685 -3791.0728 4212.1748 -3791.0464 4212.1465 C +-3790.9536 4212.2349 -3790.8784 4212.3413 -3790.8479 4212.4541 C +-3791.0413 4212.9185 -3791.6609 4212.9038 -3791.8704 4213.144 C +-3792.1016 4213.0479 -3791.7737 4212.9121 -3791.8999 4212.6963 C +-3792.2129 4213.0557 L +-3792.2439 4212.6064 -3792.8271 4212.3096 -3792.2825 4212.0464 C +-3792.7727 4212.0264 L +-3793.0613 4211.7744 -3793.4583 4211.6743 -3793.7031 4211.8633 C +-3793.9343 4211.7661 -3794.2871 4212.3604 -3794.0857 4212.0088 C +-3794.8545 4212.2871 L +-3794.8616 4212.1748 L +-3795.6201 4212.1182 -3796.4231 4212.9185 -3797.2903 4212.1079 C +-3797.5457 4212.2212 -3797.8096 4212.3599 -3798.2368 4212.2324 C +-3798.3201 4211.8438 L +-3798.6479 4211.9795 -3799.3047 4211.4551 -3799.4456 4211.8599 C +-3799.7993 4210.8145 -3801.0369 4211.6318 -3801.6135 4211.4463 C +-3801.6353 4211.9536 L +-3802.0322 4211.9248 -3802.4128 4212.0688 -3802.9055 4212.2725 C +-3802.8752 4212.7207 L +-3803.3 4213.0889 -3803.9673 4212.4019 -3804.6392 4212.4478 C +-3804.5935 4212.2764 -3804.4231 4212.3213 -3804.3025 4212.4248 C +-3805.1052 4211.4121 -3805.9961 4213.1616 -3806.7241 4212.4238 C +-3806.9055 4212.5869 -3807.0369 4212.5313 -3807.1641 4212.4185 C +-3807.1472 4212.4175 -3807.1321 4212.4092 -3807.1191 4212.395 C +-3807.1377 4212.3896 -3807.1653 4212.3887 -3807.1936 4212.3896 C +-3807.2737 4212.3125 -3807.3562 4212.2227 -3807.4456 4212.1509 C +-3807.3696 4212.2598 -3807.2969 4212.3496 -3807.2336 4212.3911 C +-3807.3735 4212.4004 -3807.5857 4212.4561 -3807.7937 4212.5684 C +-3807.8823 4212.0869 L +-3807.8992 4212.0933 -3807.9128 4212.0923 -3807.9304 4212.1006 C +-3808.1345 4211.9229 -3808.0945 4212.3286 -3807.9856 4212.6909 C +-3808.0903 4212.77 -3808.1863 4212.8652 -3808.2607 4212.9814 C +-3808.4265 4212.2041 -3808.8064 4213.2432 -3809.0327 4212.4141 C +-3809.1729 4212.8184 -3810.0784 4212.7183 -3810.1892 4213.5688 C +-3810.1963 4213.458 -3810.2576 4213.4053 -3810.1453 4213.3984 C +-3810.3772 4213.3013 -3810.6089 4213.2046 -3810.8169 4213.4443 C +-3810.9153 4212.832 L +-3811.4216 4213.6553 L +-3811.7292 4213.2822 -3811.8567 4213.0654 -3811.5513 4212.5942 C +-3812.2888 4213.3188 -3812.1497 4212.8672 -3812.7769 4213.5854 C +-3812.7463 4213.1895 L +-3812.9705 4213.2046 -3813.3289 4213.7349 -3813.4641 4213.4077 C +-3813.9656 4212.6553 -3815.9456 4213.3037 -3817.2329 4212.6045 C +-3816.9832 4213.77 -3817.8313 4212.082 -3817.8823 4212.9854 C +-3817.9573 4212.71 -3818.1367 4212.5542 -3817.9282 4212.3145 C +-3818.5852 4212.5854 -3818.9153 4211.8774 -3819.3689 4212.6392 C +-3819.4441 4212.3623 -3819.2283 4212.2349 -3819.2952 4212.0713 C +-3819.3479 4212.1309 -3819.5039 4212.311 -3819.5723 4212.1465 c +-3819.6392 4211.9824 -3819.4761 4211.915 -3819.3721 4211.7949 C +-3820.0432 4211.8413 -3820.1111 4212.6909 -3820.1599 4213.4883 C +-3820.5 4213.1108 -3820.6697 4213.1641 -3820.9153 4213.687 C +-3821.0337 4213.4263 -3821.2312 4213.1533 -3820.8142 4213.0596 C +-3821.0488 4213.0215 -3822.2473 4212.6772 -3822.2712 4213.3164 C +-3822.3447 4213.1543 -3822.5991 4213.269 -3822.6609 4213.3428 C +-3823.1873 4213.3047 -3823.2336 4213.2471 -3823.7505 4213.3076 C +-3823.6072 4213.4121 L +-3823.8113 4214.1831 -3824.0369 4213.584 -3824.4536 4213.6768 C +-3824.4417 4213.5977 L +-3825.3972 4213.0415 -3824.8542 4213.8643 -3825.7969 4213.2295 C +-3825.7456 4213.709 L +-3825.8335 4214.7407 -3826.5808 4213.1006 -3827.1279 4213.4951 C +-3826.9304 4213.769 L +-3827.2292 4214.1221 -3827.7656 4212.3662 -3828.0657 4212.2373 C +-3828.1311 4212.1475 -3827.9624 4212.0933 -3827.8711 4212.0269 C +-3828.6567 4211.4185 -3827.9729 4212.6553 -3828.5583 4212.8013 C +-3828.6663 4212.4624 -3828.4192 4211.9395 -3828.8132 4211.8765 C +-3829.0095 4211.6021 -3829.9561 4212.9766 -3830.4937 4212.3267 C +-3830.3752 4212.5879 -3830.2576 4212.8486 -3830.5295 4213.0449 C +-3830.9463 4213.1382 -3831.6563 4212.0576 -3832.0327 4212.8809 C +-3832.0857 4212.8096 -3832.1057 4212.7412 -3832.1079 4212.6763 C +-3832.4265 4212.8887 -3833.1433 4213.0293 -3833.3352 4213.4756 C +-3833.6296 4211.8188 -3835.3159 4214.2813 -3835.3088 4212.7534 C +-3836.2888 4212.835 L +-3836.2632 4212.6792 L +-3836.8896 4212.5781 -3837.1111 4212.9443 -3837.3313 4213.311 C +-3837.4761 4213.207 -3837.3704 4213.0645 -3837.3584 4212.9844 C +-3838.2737 4212.6763 -3838.3647 4212.7412 -3839.1321 4213.5024 C +-3839.2119 4213.0068 L +-3839.4199 4213.2949 -3840.5352 4212.2295 -3841.4329 4212.8076 C +-3841.4241 4212.7515 -3841.4055 4212.6553 -3841.3342 4212.5854 C +-3842.3442 4213.167 -3843.7522 4211.2104 -3844.1223 4213.0156 C +-3844.7888 4213.4604 L +-3843.9265 4213.6006 -3844.9172 4214.2437 -3844.5625 4214.5435 C +-3844.9016 4214.6494 -3845.4392 4213.999 -3845.0225 4213.9063 C +-3844.9573 4213.9966 L +-3844.8042 4213.0557 -3846.0288 4213.6631 -3846.0056 4213.0225 C +-3847.7024 4213.0688 -3849.3562 4212.5479 -3850.9456 4212.5078 C +-3850.7625 4213.2393 L +-3851.3169 4213.1973 L +-3851.4624 4213.0269 -3851.5122 4212.625 -3851.1167 4212.6553 C +-3851.3247 4212.2407 -3851.78 4213.0024 -3851.7913 4213.1616 C +-3852.5657 4212.8652 -3851.4888 4212.3086 -3851.7263 4212.291 C +-3852.0488 4212.3457 L +-3851.9761 4212.4312 L +-3852.2375 4212.73 -3852.2607 4213.0469 -3852.7361 4213.0107 C +-3853.0369 4212.8643 -3852.8904 4212.5596 -3853.0088 4212.5313 C +-3853.0081 4212.4795 -3853.0481 4212.4551 -3853.1904 4212.5103 C +-3853.8889 4212.4478 L +-3853.6096 4213.0254 L +-3853.9192 4213.3101 -3854.2664 4212.9951 -3853.9441 4213.6494 c +-3854.4172 4212.6406 -3856.5496 4213.2871 -3856.8401 4212.9741 C +-3857.2737 4213.395 -3857.7017 4213.3877 -3858.2319 4213.3369 C +-3858.1001 4213.457 -3858.0212 4214.1064 -3858.4785 4214.0269 C +-3858.3113 4212.687 -3859.3159 4213.4453 -3859.6855 4212.4814 C +-3859.3552 4213.1206 -3860.9856 4212.6392 -3860.4673 4213.5469 C +-3860.8489 4213.4385 -3860.4905 4213.0454 -3860.78 4212.73 C +-3861.6882 4213.249 -3862.7815 4212.3926 -3863.9041 4212.5679 C +-3863.9216 4212.7437 -3863.7336 4213.0127 -3863.9744 4213.2744 C +-3864.5671 4212.395 L +-3864.7888 4212.4814 -3864.7712 4213.4102 -3865.1763 4212.7998 C +-3865.1191 4212.9478 -3865.0337 4213.1709 -3865.1824 4213.2271 C +-3867.3816 4212.3701 -3869.6763 4213.9292 -3871.9097 4212.3188 C +-3871.6072 4212.6597 -3871.8088 4212.6934 -3872.0398 4212.7061 C +-3871.8896 4212.7876 -3872.0432 4213.1406 -3872.0137 4213.3789 C +-3872.9487 4212.7168 L +-3873.1191 4213.3784 -3873.9512 4212.7617 -3874.0488 4213.394 C +-3873.7527 4213.2803 L +-3874.1465 4214.0269 -3873.2017 4214.9395 -3873.2593 4215.8975 C +-3872.8184 4215.0488 -3872.0967 4217.1543 -3871.3733 4215.9395 C +-3871.2136 4216.1348 -3871.5095 4216.248 -3871.4241 4216.4702 C +-3871.2407 4216.0596 -3871.0193 4215.9741 -3870.6089 4216.1582 C +-3870.6553 4216.2598 L +-3869.5024 4216.1597 -3869.0081 4216.5645 -3867.7129 4216.834 C +-3867.8088 4216.3604 L +-3867.5305 4216.4238 -3867.4719 4216.5723 -3867.3416 4216.6909 C +-3867.0222 4215.9727 -3868.1233 4216.6504 -3867.8323 4215.8584 C +-3867.4631 4216.8223 -3865.8696 4215.873 -3865.6201 4216.9683 C +-3865.1919 4216.9741 -3865.7456 4216.4199 -3865.3176 4216.4263 C +-3865.2041 4216.7227 L +-3865.0959 4216.3408 L +-3864.8152 4216.4038 -3864.6736 4216.7744 -3864.6631 4217.0254 C +-3864.7312 4216.9956 -3864.8567 4217.0957 -3864.9297 4217.1172 C +-3864.5657 4217.4663 -3863.9033 4216.998 -3863.7783 4217.1118 C +-3864.1897 4216.9292 L +-3863.0212 4216.6519 -3861.5945 4217.041 -3860.4656 4216.4385 C +-3860.5513 4216.2148 L +-3859.6892 4215.8013 -3859.8608 4216.4604 -3858.9143 4216.269 C +-3858.9487 4216.3223 L +-3858.7593 4216.0996 -3858.5063 4215.9873 -3858.2473 4216.0127 C +-3858.4863 4216.2744 -3857.7976 4216.5215 -3858.1111 4216.811 C +-3857.1763 4216.3672 -3857.6487 4216.4624 -3857.0313 4215.6318 C +-3856.8889 4216.0024 L +-3856.6785 4215.667 -3856.6609 4215.4902 -3856.1882 4215.394 C +-3856.5759 4215.7124 -3855.8865 4215.959 -3856.3208 4216.3799 C +-3855.3289 4217.1909 -3854.8479 4215.561 -3854.3928 4216.7471 C +-3853.9373 4215.7207 -3855.2512 4216.1772 -3854.9961 4215.9575 C +-3855.2097 4215.6221 -3854.6201 4215.1904 -3854.3088 4215.2935 C +-3853.9919 4215.3164 -3853.77 4216.6064 -3852.9729 4216.5869 C +-3853.0522 4216.582 -3853.0576 4216.6597 -3853.1367 4216.6553 C +-3852.8384 4216.917 -3852.5522 4216.3008 -3852.1863 4216.7261 C +-3851.9812 4216.1055 -3851.7112 4216.7617 -3851.6521 4215.9702 C +-3852.3833 4216.1533 L +-3851.9688 4215.9463 -3851.5801 4215.02 -3850.8972 4215.4692 C +-3850.9504 4215.6289 -3851.1536 4215.8389 -3851.2932 4215.9561 C +-3851.0935 4216.1895 -3850.9087 4215.8013 -3850.7017 4216.041 C +-3850.7607 4216.8335 -3851.5903 4216.2134 -3852.0344 4216.8174 C +-3851.8201 4217.1519 -3851.1943 4216.2437 -3851.4175 4217.1016 c +-3851.0967 4216.0107 -3850.6321 4217.2393 -3850.0923 4216.4063 C +-3850.1279 4216.8809 L +-3850.0425 4216.8062 -3849.8655 4216.582 -3849.7083 4216.5942 C +-3849.9929 4217.2095 L +-3849.5559 4216.6846 -3849.1504 4217.6685 -3848.7312 4217.3828 C +-3849.6089 4217.3975 -3848.9282 4216.811 -3849.2993 4216.4648 C +-3848.2168 4215.8296 -3848.6768 4217.7061 -3847.4648 4217.4785 C +-3847.6289 4217.5454 -3848.0808 4217.1934 -3847.8242 4216.9736 C +-3847.5935 4217.0713 -3847.2888 4217.2534 -3847.1472 4217.5024 C +-3846.3442 4217.4038 -3847.2705 4217.0142 -3846.9287 4216.7227 C +-3846.6553 4217.3008 -3846.5344 4216.4873 -3846.1824 4216.3022 C +-3846.1799 4216.7847 L +-3845.2649 4217.0942 -3845.9373 4215.7793 -3845.1135 4216.1533 C +-3845.4617 4216.8223 L +-3845.0322 4216.6494 L +-3845.1208 4217.1982 L +-3844.6536 4216.791 -3844.5081 4216.8965 -3844.0503 4217.0503 C +-3844.1567 4216.7104 -3843.9905 4216.1748 -3843.5852 4216.1597 C +-3843.3088 4216.4463 -3843.74 4216.6182 -3843.1655 4216.5493 C +-3843.2952 4216.8511 -3843.4373 4217.23 -3843.6873 4216.7856 C +-3843.7129 4216.9429 -3843.8152 4217.0884 -3843.8416 4217.2437 C +-3843.5439 4217.5732 -3843.0935 4217.3188 -3842.8855 4217.3145 C +-3842.9656 4217.2964 -3843.0613 4217.2705 -3843.1104 4217.2017 C +-3842.2776 4216.5332 L +-3842.1465 4216.7144 -3842.2505 4216.8599 -3842.3535 4217.0024 C +-3842.1848 4216.9502 -3842.0681 4216.7285 -3841.8201 4216.687 C +-3841.8843 4217.0791 -3841.8689 4217.4839 -3842.22 4217.6685 C +-3841.4265 4217.2334 L +-3841.3735 4217.4038 -3841.0193 4217.7017 -3841.1223 4217.8462 C +-3840.6824 4218.0767 -3840.0432 4217.0854 -3839.46 4217.3896 C +-3839.4297 4217.3135 -3839.3689 4217.2407 -3839.2449 4217.1846 C +-3838.6968 4217.2734 -3838.2112 4217.7544 -3837.5615 4217.2168 C +-3837.1929 4217.9199 L +-3836.6841 4217.7603 -3837.6919 4217.0342 -3836.8447 4216.769 C +-3836.2449 4216.5449 -3836.6208 4217.3687 -3836.4104 4217.5645 C +-3836.1121 4217.21 -3835.5935 4216.4888 -3835.0425 4217.061 C +-3835.2249 4217.1934 -3835.3679 4217.0894 -3835.5383 4217.1416 C +f +1 D +-3829.2632 4216.8301 m +-3829.3848 4216.9312 -3829.6272 4217.2437 -3829.7161 4216.959 C +-3829.5776 4216.4063 -3829.4705 4216.6709 -3829.2632 4216.8301 C +f +-3819.7241 4215.6685 m +-3819.8145 4215.8281 -3819.9543 4215.749 -3820.1121 4215.5664 C +-3819.9976 4215.5269 -3819.8679 4215.5449 -3819.7241 4215.6685 C +f +-3793.1511 4212.3096 m +-3793.1563 4212.3174 -3793.1599 4212.3232 -3793.1641 4212.333 C +-3793.4353 4212.145 -3793.3391 4212.2192 -3793.1511 4212.3096 C +f +0 D +-3792.5879 4212.519 m +-3792.5313 4212.4517 -3792.5352 4212.3848 -3792.5591 4212.3174 C +-3792.5984 4212.4395 -3792.7249 4212.4478 -3792.8689 4212.4136 C +-3792.8289 4212.54 -3792.7561 4212.6274 -3792.5879 4212.519 C +f +1 D +-3853.0713 4212.709 m +-3852.9617 4212.835 L +-3853.2092 4212.9741 -3853.1399 4212.8486 -3853.0713 4212.709 C +f +*U +0 D +-3820.8057 4216.3286 m +-3820.8401 +endstream endobj 112 0 obj <>stream +4216.2471 -3820.8496 4216.1572 -3820.8577 4216.0664 C +-3820.9055 4216.1475 -3820.9065 4216.2412 -3820.8057 4216.3286 C +f +-3839.4409 4217.395 m +-3839.4473 4217.3911 -3839.4536 4217.3926 -3839.46 4217.3896 C +-3839.4705 4217.4185 -3839.4761 4217.4478 -3839.4792 4217.4766 C +-3839.4409 4217.395 L +f +-3801.3123 4216.6094 m +-3801.4282 4216.54 -3801.4929 4216.4517 -3801.5359 4216.3604 C +-3801.5422 4216.4785 -3801.4895 4216.5781 -3801.3123 4216.6094 C +f +-3789.6033 4211.6992 m +-3789.9641 4211.8247 L +-3789.7896 4211.8008 -3789.7273 4211.9063 -3789.6392 4211.9829 C +-3789.6472 4211.8701 -3789.7161 4211.707 -3789.6033 4211.6992 C +f +-3786.4719 4214.6846 m +-3786.4192 4214.6255 -3786.3601 4214.6782 -3786.3081 4214.6182 C +-3786.3225 4214.394 L +-3786.5471 4214.4087 -3786.7041 4214.5894 -3786.4719 4214.6846 C +f +-3789.2693 4213.3022 m +-3789.2407 4213.708 -3789.0144 4213.5703 -3788.7617 4213.4951 C +-3788.7769 4213.4966 -3788.7913 4213.5 -3788.8064 4213.4951 C +-3788.7319 4212.9272 -3789.0012 4213.1152 -3789.2693 4213.3022 C +f +-3788.7031 4213.4814 m +-3788.6252 4213.4624 -3788.5457 4213.4517 -3788.4695 4213.4712 C +-3788.4399 4213.2437 -3788.5642 4213.4238 -3788.7031 4213.4814 C +f +-3791.8735 4212.25 m +-3791.7537 4212.3545 -3791.7983 4211.731 -3791.7305 4211.8965 C +-3791.5967 4211.3799 -3792.5295 4212.5215 -3791.8735 4212.25 C +f +-3789.0647 4214.6392 m +-3789.1553 4214.1382 L +-3789.2969 4214.542 L +-3789.0647 4214.6392 L +f +-3791.0601 4214.2715 m +-3790.6563 4214.4102 L +-3790.6624 4214.3262 -3790.6111 4214.2769 -3790.5481 4214.2393 C +-3790.7969 4214.2227 -3791.0696 4214.123 -3791.0601 4214.2715 C +f +-3790.5481 4214.2393 m +-3790.4185 4214.249 -3790.2952 4214.2383 -3790.2231 4214.1563 C +-3790.2932 4214.1616 -3790.4441 4214.1782 -3790.5481 4214.2393 C +f +-3789.6167 4214.7896 m +-3789.7361 4214.6851 L +-3790.0212 4214.6484 L +-3789.6167 4214.7896 L +f +-3795.4009 4214.1748 m +-3795.8416 4214.3184 L +-3795.8865 4214.4902 -3795.7664 4214.5952 -3795.6023 4214.5269 C +-3795.4968 4214.4072 -3795.3333 4214.3408 -3795.4009 4214.1748 C +f +-3794.0681 4215.5469 m +-3794.1873 4215.4429 -3794.1953 4215.3311 -3794.2625 4215.166 C +-3794.2759 4215.7871 L +-3794.0681 4215.5469 L +f +-3795.3533 4215.6919 m +-3795.3972 4215.8643 -3795.9929 4216.1865 -3795.4343 4216.1475 C +-3795.3896 4215.9766 -3794.9482 4215.8335 -3795.3533 4215.6919 C +f +-3801.9937 4214.9063 m +-3801.8816 4214.8984 L +-3801.8977 4213.8799 L +-3801.9937 4214.9063 L +f +-3807.8464 4217.3428 m +-3807.3242 4217.5869 -3807.7224 4216.7144 -3807.2505 4217.019 C +-3807.1279 4216.7783 -3807.6362 4216.7705 -3807.5105 4216.5625 C +-3807.8257 4216.8164 -3807.9912 4216.6729 -3807.8464 4217.3428 C +f +-3807.5105 4216.5625 m +-3807.46 4216.5225 -3807.4065 4216.4736 -3807.3496 4216.4077 C +-3807.4409 4216.4712 -3807.4839 4216.52 -3807.5105 4216.5625 C +f +-3873.5745 4212.1924 m +-3873.9104 4211.98 L +-3873.6936 4212.3223 L +-3873.5745 4212.1924 L +f +-3874.2192 4212.9478 m +-3874.2983 4212.2988 L +-3874.5 4212.8862 L +-3874.4241 4212.8574 -3874.2769 4212.8013 -3874.2192 4212.9478 C +f +-3828.3303 4218.1377 m +-3828.3047 4217.9814 L +-3828.3567 4217.8125 -3828.4353 4217.7998 -3828.5928 4217.7734 C +-3828.3303 4218.1377 L +f +-3832.8848 4217.6519 m +-3832.8064 4217.665 L +-3832.9529 4217.0781 L +-3832.8848 4217.6519 L +f +-3836.7073 4218.4004 m +-3836.5513 4218.4248 -3836.3679 4218.2939 -3836.2112 4218.3188 C +-3836.5513 4218.4248 -3836.7495 4217.6685 -3836.7073 4218.4004 C +f +U +9 () XW +U +9 () XW +U +%AI8_EndBrushPattern +%AI8_BeginBrushPattern +(Unnamed Brush Pat 1) 0 A +0 Xw +u +0 1 0 0 0 Xy +0 J 0 j 1 w 10 M []0 d 0 XR +-7746.75 8085.8213 m +-7667.1685 8085.8213 L +-7667.1685 8068.2422 L +-7746.75 8068.2422 L +-7746.75 8085.8213 L +n +0 R +0.113161 0.733303 0.969146 0.019532 0.839216 0.360784 0.105882 XA +1 J 1 j 0.25 w 4 M -7682.8325 8071.1836 m +-7731.0845 8071.1836 L +S +u +u +0.300481 0.561517 0.971679 0.285924 0.584314 0.384314 0.101961 XA +0.5 w -7667.8823 8073.6284 m +-7746.0356 8073.6284 l +S +u +0 O +0.300481 0.561517 0.971679 0.285924 0.584314 0.384314 0.101961 Xa +0 J 0 j 1 w 10 M -7667.9199 8072.8774 m +-7667.5049 8072.8774 -7667.1685 8073.2134 -7667.1685 8073.6284 c +-7667.1685 8074.0439 -7667.5049 8074.3804 -7667.9199 8074.3804 c +-7668.3354 8074.3804 -7668.6719 8074.0439 -7668.6719 8073.6284 c +-7668.6719 8073.2134 -7668.3354 8072.8774 -7667.9199 8072.8774 c +f +U +9 () XW +u +-7745.9985 8072.8774 m +-7746.4131 8072.8774 -7746.75 8073.2134 -7746.75 8073.6284 c +-7746.75 8074.0439 -7746.4131 8074.3804 -7745.9985 8074.3804 c +-7745.5835 8074.3804 -7745.2461 8074.0439 -7745.2461 8073.6284 c +-7745.2461 8073.2134 -7745.5835 8072.8774 -7745.9985 8072.8774 c +f +U +9 () XW +U +9 () XW +U +0 0 Xd +6 () XW +u +u +0 R +0.113161 0.733303 0.969146 0.019532 0.839216 0.360784 0.105882 XA +0.5 w 4 M -7675.3242 8070.0078 m +-7675.7363 8070.4492 l +-7682.5879 8077.7886 -7667.9067 8091 -7671.0879 8083.1719 c +-7673.9434 8076.1445 -7682.8325 8076.0757 Y +-7731.0845 8076.0757 L +-7739.9746 8076.1445 -7742.8296 8083.1719 v +-7746.0103 8091 -7731.3281 8077.7886 -7738.1807 8070.4492 C +-7738.5928 8070.0078 l +S +u +0 O +0.113161 0.733303 0.969146 0.019532 0.839216 0.360784 0.105882 Xa +1 w 10 M -7673.6777 8068.2422 m +-7674.7607 8068.7852 -7676.2485 8069.3237 -7677.4009 8069.4429 c +-7675.5405 8070.2383 l +-7674.6191 8072.04 l +-7674.5801 8070.8799 -7674.1445 8069.3589 -7673.6777 8068.2422 c +f +U +9 () XW +u +-7740.2397 8068.2422 m +-7739.1567 8068.7852 -7737.6694 8069.3237 -7736.5166 8069.4429 c +-7738.3774 8070.2383 l +-7739.2983 8072.0391 l +-7739.3369 8070.8799 -7739.7729 8069.3589 -7740.2397 8068.2422 c +f +U +9 () XW +U +9 () XW +U +0 0 Xd +6 () XW +U +%AI8_EndBrushPattern +%AI5_End_NonPrinting-- +%AI5_Begin_NonPrinting +Np +%AI10_BeginSVGFilter +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(140%) /UnicodeString (xmlnode-nodevalue) , +(width) /UnicodeString (xmlnode-nodename) , +; (width) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(140%) /UnicodeString (xmlnode-nodevalue) , +(height) /UnicodeString (xmlnode-nodename) , +; (height) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_AbgeflachteKanteMitSchatten_1) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(-20%) /UnicodeString (xmlnode-nodevalue) , +(y) /UnicodeString (xmlnode-nodename) , +; (y) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(-20%) /UnicodeString (xmlnode-nodevalue) , +(x) /UnicodeString (xmlnode-nodename) , +; (x) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(4) /UnicodeString (xmlnode-nodevalue) , +(stdDeviation) /UnicodeString (xmlnode-nodename) , +; (stdDeviation) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feGaussianBlur) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(4) /UnicodeString (xmlnode-nodevalue) , +(dy) /UnicodeString (xmlnode-nodename) , +; (dy) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(4) /UnicodeString (xmlnode-nodevalue) , +(dx) /UnicodeString (xmlnode-nodename) , +; (dx) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(offsetBlur) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feOffset) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(specularConstant) /UnicodeString (xmlnode-nodename) , +; (specularConstant) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(10) /UnicodeString (xmlnode-nodevalue) , +(specularExponent) /UnicodeString (xmlnode-nodename) , +; (specularExponent) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(5) /UnicodeString (xmlnode-nodevalue) , +(surfaceScale) /UnicodeString (xmlnode-nodename) , +; (surfaceScale) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(lighting-color:white) /UnicodeString (xmlnode-nodevalue) , +(style) /UnicodeString (xmlnode-nodename) , +; (style) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(specOut) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(-20000) /UnicodeString (xmlnode-nodevalue) , +(z) /UnicodeString (xmlnode-nodename) , +; (z) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(-10000) /UnicodeString (xmlnode-nodevalue) , +(y) /UnicodeString (xmlnode-nodename) , +; (y) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(-5000) /UnicodeString (xmlnode-nodevalue) , +(x) /UnicodeString (xmlnode-nodename) , +; (x) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(fePointLight) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feSpecularLighting) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(in) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(specOut) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(specOut) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(k3) /UnicodeString (xmlnode-nodename) , +; (k3) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0) /UnicodeString (xmlnode-nodevalue) , +(k4) /UnicodeString (xmlnode-nodename) , +; (k4) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0) /UnicodeString (xmlnode-nodevalue) , +(k1) /UnicodeString (xmlnode-nodename) , +; (k1) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(k2) /UnicodeString (xmlnode-nodename) , +; (k2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(arithmetic) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(specOut) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(litPaint) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(offsetBlur) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMergeNode) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(litPaint) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMergeNode) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMerge) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(100%) /UnicodeString (xmlnode-nodevalue) , +(width) /UnicodeString (xmlnode-nodename) , +; (width) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(100%) /UnicodeString (xmlnode-nodevalue) , +(height) /UnicodeString (xmlnode-nodename) , +; (height) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , +(filterUnits) /UnicodeString (xmlnode-nodename) , +; (filterUnits) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_Alpha_1) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0%) /UnicodeString (xmlnode-nodevalue) , +(y) /UnicodeString (xmlnode-nodename) , +; (y) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0%) /UnicodeString (xmlnode-nodevalue) , +(x) /UnicodeString (xmlnode-nodename) , +; (x) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(turbulence) /UnicodeString (xmlnode-nodevalue) , +(type) /UnicodeString (xmlnode-nodename) , +; (type) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(2) /UnicodeString (xmlnode-nodevalue) , +(numOctaves) /UnicodeString (xmlnode-nodename) , +; (numOctaves) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0.05) /UnicodeString (xmlnode-nodevalue) , +(baseFrequency) /UnicodeString (xmlnode-nodename) , +; (baseFrequency) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(noStitch) /UnicodeString (xmlnode-nodevalue) , +(stitchTiles) /UnicodeString (xmlnode-nodename) , +; (stitchTiles) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(turb) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feTurbulence) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(in) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(turb) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(100%) /UnicodeString (xmlnode-nodevalue) , +(width) /UnicodeString (xmlnode-nodename) , +; (width) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(100%) /UnicodeString (xmlnode-nodevalue) , +(height) /UnicodeString (xmlnode-nodename) , +; (height) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , +(filterUnits) /UnicodeString (xmlnode-nodename) , +; (filterUnits) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_Alpha_4) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0%) /UnicodeString (xmlnode-nodevalue) , +(y) /UnicodeString (xmlnode-nodename) , +; (y) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0%) /UnicodeString (xmlnode-nodevalue) , +(x) /UnicodeString (xmlnode-nodename) , +; (x) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(fractalNoise) /UnicodeString (xmlnode-nodevalue) , +(type) /UnicodeString (xmlnode-nodename) , +; (type) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(4) /UnicodeString (xmlnode-nodevalue) , +(numOctaves) /UnicodeString (xmlnode-nodename) , +; (numOctaves) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0.1) /UnicodeString (xmlnode-nodevalue) , +(baseFrequency) /UnicodeString (xmlnode-nodename) , +; (baseFrequency) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(noStitch) /UnicodeString (xmlnode-nodevalue) , +(stitchTiles) /UnicodeString (xmlnode-nodename) , +; (stitchTiles) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(turb) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feTurbulence) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(in) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(turb) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_Dehnen_3) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(3) /UnicodeString (xmlnode-nodevalue) , +(radius) /UnicodeString (xmlnode-nodename) , +; (radius) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(dilate) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMorphology) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_Dehnen_6) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(6) /UnicodeString (xmlnode-nodevalue) , +(radius) /UnicodeString (xmlnode-nodename) , +; (radius) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(dilate) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMorphology) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_Erodieren_3) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(3) /UnicodeString (xmlnode-nodevalue) , +(radius) /UnicodeString (xmlnode-nodename) , +; (radius) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(erode) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMorphology) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_Erodieren_6) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(6) /UnicodeString (xmlnode-nodevalue) , +(radius) /UnicodeString (xmlnode-nodename) , +; (radius) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(erode) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMorphology) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_GaußscherWeichzeichner_4) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(4) /UnicodeString (xmlnode-nodevalue) , +(stdDeviation) /UnicodeString (xmlnode-nodename) , +; (stdDeviation) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feGaussianBlur) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_GaußscherWeichzeichner_7) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(7) /UnicodeString (xmlnode-nodevalue) , +(stdDeviation) /UnicodeString (xmlnode-nodename) , +; (stdDeviation) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feGaussianBlur) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(150%) /UnicodeString (xmlnode-nodevalue) , +(width) /UnicodeString (xmlnode-nodename) , +; (width) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(150%) /UnicodeString (xmlnode-nodevalue) , +(height) /UnicodeString (xmlnode-nodename) , +; (height) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , +(filterUnits) /UnicodeString (xmlnode-nodename) , +; (filterUnits) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_Holzmaserung) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(-10%) /UnicodeString (xmlnode-nodevalue) , +(y) /UnicodeString (xmlnode-nodename) , +; (y) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(-10%) /UnicodeString (xmlnode-nodevalue) , +(x) /UnicodeString (xmlnode-nodename) , +; (x) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(4) /UnicodeString (xmlnode-nodevalue) , +(stdDeviation) /UnicodeString (xmlnode-nodename) , +; (stdDeviation) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feGaussianBlur) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(4) /UnicodeString (xmlnode-nodevalue) , +(dy) /UnicodeString (xmlnode-nodename) , +; (dy) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(4) /UnicodeString (xmlnode-nodevalue) , +(dx) /UnicodeString (xmlnode-nodename) , +; (dx) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(offset) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feOffset) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(flood-color:black; flood-opacity:0.4) /UnicodeString (xmlnode-nodevalue) , +(style) /UnicodeString (xmlnode-nodename) , +; (style) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(color) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(color) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feFlood) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(in) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(color) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(shadowColor) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(white) /UnicodeString (xmlnode-nodevalue) , +(lighting-color) /UnicodeString (xmlnode-nodename) , +; (lighting-color) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(diffuseConstant) /UnicodeString (xmlnode-nodename) , +; (diffuseConstant) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(resultScale) /UnicodeString (xmlnode-nodename) , +; (resultScale) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(5) /UnicodeString (xmlnode-nodevalue) , +(surfaceScale) /UnicodeString (xmlnode-nodename) , +; (surfaceScale) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(diffuse) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(diffuse) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(60) /UnicodeString (xmlnode-nodevalue) , +(elevation) /UnicodeString (xmlnode-nodename) , +; (elevation) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(135) /UnicodeString (xmlnode-nodevalue) , +(azimuth) /UnicodeString (xmlnode-nodename) , +; (azimuth) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(light2) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feDistantLight) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(specularConstant) /UnicodeString (xmlnode-nodename) , +; (specularConstant) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(10) /UnicodeString (xmlnode-nodevalue) , +(specularExponent) /UnicodeString (xmlnode-nodename) , +; (specularExponent) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(white) /UnicodeString (xmlnode-nodevalue) , +(lighting-color) /UnicodeString (xmlnode-nodename) , +; (lighting-color) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(5) /UnicodeString (xmlnode-nodevalue) , +(surfaceScale) /UnicodeString (xmlnode-nodename) , +; (surfaceScale) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(specularOut) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(blur) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(60) /UnicodeString (xmlnode-nodevalue) , +(elevation) /UnicodeString (xmlnode-nodename) , +; (elevation) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(135) /UnicodeString (xmlnode-nodevalue) , +(azimuth) /UnicodeString (xmlnode-nodename) , +; (azimuth) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(light) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feDistantLight) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feSpecularLighting) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(in) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(specularOut) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(specularOut) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0) /UnicodeString (xmlnode-nodevalue) , +(k3) /UnicodeString (xmlnode-nodename) , +; (k3) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0) /UnicodeString (xmlnode-nodevalue) , +(k4) /UnicodeString (xmlnode-nodename) , +; (k4) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(k1) /UnicodeString (xmlnode-nodename) , +; (k1) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0) /UnicodeString (xmlnode-nodevalue) , +(k2) /UnicodeString (xmlnode-nodename) , +; (k2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(arithmetic) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(diffuse) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(litPaint) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(k3) /UnicodeString (xmlnode-nodename) , +; (k3) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0) /UnicodeString (xmlnode-nodevalue) , +(k4) /UnicodeString (xmlnode-nodename) , +; (k4) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0) /UnicodeString (xmlnode-nodevalue) , +(k1) /UnicodeString (xmlnode-nodename) , +; (k1) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1) /UnicodeString (xmlnode-nodevalue) , +(k2) /UnicodeString (xmlnode-nodename) , +; (k2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(arithmetic) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(specularOut) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(litPaint) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(litPaint) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMergeNode) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(litPaint) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMergeNode) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMerge) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(fractalNoise) /UnicodeString (xmlnode-nodevalue) , +(type) /UnicodeString (xmlnode-nodename) , +; (type) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(10) /UnicodeString (xmlnode-nodevalue) , +(numOctaves) /UnicodeString (xmlnode-nodename) , +; (numOctaves) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(.05) /UnicodeString (xmlnode-nodevalue) , +(baseFrequency) /UnicodeString (xmlnode-nodename) , +; (baseFrequency) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(noStitch) /UnicodeString (xmlnode-nodevalue) , +(stitchTiles) /UnicodeString (xmlnode-nodename) , +; (stitchTiles) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(Turbulence) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feTurbulence) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(matrix) /UnicodeString (xmlnode-nodevalue) , +(type) /UnicodeString (xmlnode-nodename) , +; (type) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1) /UnicodeString (xmlnode-nodevalue) , +(values) /UnicodeString (xmlnode-nodename) , +; (values) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(Grayscale) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(Turbulence) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feColorMatrix) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(4) /UnicodeString (xmlnode-nodevalue) , +(stdDeviation) /UnicodeString (xmlnode-nodename) , +; (stdDeviation) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(BlurredAlpha) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feGaussianBlur) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(-5) /UnicodeString (xmlnode-nodevalue) , +(dy) /UnicodeString (xmlnode-nodename) , +; (dy) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(-4) /UnicodeString (xmlnode-nodevalue) , +(dx) /UnicodeString (xmlnode-nodename) , +; (dx) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(BlurredAlpha) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feOffset) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(in) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(Grayscale) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1.5) /UnicodeString (xmlnode-nodevalue) , +(stdDeviation) /UnicodeString (xmlnode-nodename) , +; (stdDeviation) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(CompBlurTurb2) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feGaussianBlur) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(CompXferFire) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(Grayscale) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(table) /UnicodeString (xmlnode-nodevalue) , +(type) /UnicodeString (xmlnode-nodename) , +; (type) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(2 0) /UnicodeString (xmlnode-nodevalue) , +(tableValues) /UnicodeString (xmlnode-nodename) , +; (tableValues) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feFuncR) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(table) /UnicodeString (xmlnode-nodevalue) , +(type) /UnicodeString (xmlnode-nodename) , +; (type) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(.7 0 ) /UnicodeString (xmlnode-nodevalue) , +(tableValues) /UnicodeString (xmlnode-nodename) , +; (tableValues) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feFuncG) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(table) /UnicodeString (xmlnode-nodevalue) , +(type) /UnicodeString (xmlnode-nodename) , +; (type) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(.1 0) /UnicodeString (xmlnode-nodevalue) , +(tableValues) /UnicodeString (xmlnode-nodename) , +; (tableValues) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feFuncB) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComponentTransfer) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(in) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , +(in2) /UnicodeString (xmlnode-nodename) , +; (in2) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(CompXferFire) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feComposite) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(MergeAll) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMergeNode) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMerge) /UnicodeString (xmlnode-nodename) , +; , +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(filter) /UnicodeString (xmlnode-nodename) , +; /Def ; +/SVGFilter : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(110%) /UnicodeString (xmlnode-nodevalue) , +(width) /UnicodeString (xmlnode-nodename) , +; (width) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(140%) /UnicodeString (xmlnode-nodevalue) , +(height) /UnicodeString (xmlnode-nodename) , +; (height) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , +(filterUnits) /UnicodeString (xmlnode-nodename) , +; (filterUnits) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(AI_KühleBrise) /UnicodeString (xmlnode-nodevalue) , +(id) /String (xmlnode-nodename) , +; (id) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(-40%) /UnicodeString (xmlnode-nodevalue) , +(y) /UnicodeString (xmlnode-nodename) , +; (y) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(-5%) /UnicodeString (xmlnode-nodevalue) , +(x) /UnicodeString (xmlnode-nodename) , +; (x) , +; (xmlnode-attributes) , +/Array : +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1.2) /UnicodeString (xmlnode-nodevalue) , +(radius) /UnicodeString (xmlnode-nodename) , +; (radius) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(dilate) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(a) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(a) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMorphology) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(1.2) /UnicodeString (xmlnode-nodevalue) , +(radius) /UnicodeString (xmlnode-nodename) , +; (radius) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(dilate) /UnicodeString (xmlnode-nodevalue) , +(operator) /UnicodeString (xmlnode-nodename) , +; (operator) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(a) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feMorphology) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(-4) /UnicodeString (xmlnode-nodevalue) , +(dy) /UnicodeString (xmlnode-nodename) , +; (dy) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b1) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b1) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feOffset) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(fractalNoise) /UnicodeString (xmlnode-nodevalue) , +(type) /UnicodeString (xmlnode-nodename) , +; (type) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(5) /UnicodeString (xmlnode-nodevalue) , +(numOctaves) /UnicodeString (xmlnode-nodename) , +; (numOctaves) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(0.2) /UnicodeString (xmlnode-nodevalue) , +(baseFrequency) /UnicodeString (xmlnode-nodename) , +; (baseFrequency) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(noStitch) /UnicodeString (xmlnode-nodevalue) , +(stitchTiles) /UnicodeString (xmlnode-nodename) , +; (stitchTiles) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b2) /UnicodeString (xmlnode-nodevalue) , +(result) /UnicodeString (xmlnode-nodename) , +; (result) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b1) /UnicodeString (xmlnode-nodevalue) , +(in) /UnicodeString (xmlnode-nodename) , +; (in) , +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(b2) /UnicodeString (xmlnode-nodevalue) , +(id) /UnicodeString (xmlnode-nodename) , +; (id) , +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +1 /Int (xmlnode-nodetype) , + /String (xmlnode-nodevalue) , +(feTurbulence) /UnicodeString (xmlnode-nodename) , +; , +/XMLNode : +/Dictionary : +/XMLNode : +/Dictionary : +; (xmlnode-attributes) , +/Array : +; (xmlnode-children) , +2 /Int (xmlnode-nodetype) , +(3) /UnicodeString (xmlnode-nodevalue) , +(sc +endstream endobj 5 0 obj <> endobj 33 0 obj <> endobj 60 0 obj <> endobj 68 0 obj [/View/Design] endobj 69 0 obj <>>> endobj 41 0 obj [/View/Design] endobj 42 0 obj <>>> endobj 14 0 obj [/View/Design] endobj 15 0 obj <>>> endobj 88 0 obj [87 0 R] endobj 113 0 obj <> endobj xref +0 114 +0000000004 65535 f +0000000016 00000 n +0000000187 00000 n +0000043535 00000 n +0000000006 00000 f +0000884844 00000 n +0000000008 00000 f +0000043586 00000 n +0000000009 00000 f +0000000010 00000 f +0000000011 00000 f +0000000012 00000 f +0000000013 00000 f +0000000016 00000 f +0000885339 00000 n +0000885370 00000 n +0000000017 00000 f +0000000018 00000 f +0000000019 00000 f +0000000020 00000 f +0000000021 00000 f +0000000022 00000 f +0000000023 00000 f +0000000024 00000 f +0000000025 00000 f +0000000026 00000 f +0000000027 00000 f +0000000028 00000 f +0000000029 00000 f +0000000030 00000 f +0000000031 00000 f +0000000032 00000 f +0000000034 00000 f +0000884929 00000 n +0000000035 00000 f +0000000036 00000 f +0000000037 00000 f +0000000038 00000 f +0000000039 00000 f +0000000040 00000 f +0000000043 00000 f +0000885223 00000 n +0000885254 00000 n +0000000044 00000 f +0000000045 00000 f +0000000046 00000 f +0000000047 00000 f +0000000048 00000 f +0000000049 00000 f +0000000050 00000 f +0000000051 00000 f +0000000052 00000 f +0000000053 00000 f +0000000054 00000 f +0000000055 00000 f +0000000056 00000 f +0000000057 00000 f +0000000058 00000 f +0000000059 00000 f +0000000000 00000 f +0000885018 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000885107 00000 n +0000885138 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000050389 00000 n +0000885455 00000 n +0000043921 00000 n +0000050707 00000 n +0000050594 00000 n +0000049452 00000 n +0000049827 00000 n +0000049875 00000 n +0000050478 00000 n +0000050509 00000 n +0000050781 00000 n +0000051216 00000 n +0000052260 00000 n +0000058867 00000 n +0000124457 00000 n +0000190047 00000 n +0000255637 00000 n +0000321227 00000 n +0000360124 00000 n +0000425714 00000 n +0000491304 00000 n +0000556894 00000 n +0000622484 00000 n +0000688074 00000 n +0000753664 00000 n +0000819254 00000 n +0000885480 00000 n +trailer +<]>> +startxref +885709 +%%EOF diff --git a/xfce-themes/nord-xfce-terminal-develop/src/assets/nord-xfce-terminal-banner.svg b/xfce-themes/nord-xfce-terminal-develop/src/assets/nord-xfce-terminal-banner.svg new file mode 100644 index 0000000..afac3c4 --- /dev/null +++ b/xfce-themes/nord-xfce-terminal-develop/src/assets/nord-xfce-terminal-banner.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/xfce-themes/nord-xfce-terminal-develop/src/assets/scrot-colortest.png b/xfce-themes/nord-xfce-terminal-develop/src/assets/scrot-colortest.png new file mode 100644 index 0000000..2be69e1 Binary files /dev/null and b/xfce-themes/nord-xfce-terminal-develop/src/assets/scrot-colortest.png differ diff --git a/xfce-themes/nord-xfce-terminal-develop/src/assets/scrot-htop.png b/xfce-themes/nord-xfce-terminal-develop/src/assets/scrot-htop.png new file mode 100644 index 0000000..930da50 Binary files /dev/null and b/xfce-themes/nord-xfce-terminal-develop/src/assets/scrot-htop.png differ diff --git a/xfce-themes/nord-xfce-terminal-develop/src/assets/scrot-readme-color-preset.png b/xfce-themes/nord-xfce-terminal-develop/src/assets/scrot-readme-color-preset.png new file mode 100755 index 0000000..2d9a9ad Binary files /dev/null and b/xfce-themes/nord-xfce-terminal-develop/src/assets/scrot-readme-color-preset.png differ diff --git a/xfce-themes/nord-xfce-terminal-develop/src/nord.theme b/xfce-themes/nord-xfce-terminal-develop/src/nord.theme new file mode 100644 index 0000000..5bdd426 --- /dev/null +++ b/xfce-themes/nord-xfce-terminal-develop/src/nord.theme @@ -0,0 +1,9 @@ +[Scheme] +Name=Nord +ColorCursor=#D8DEE9 +ColorForeground=#D8DEE9 +ColorBackground=#2E3440 +TabActivityColor=#88C0D0 +ColorPalette=#3B4252;#BF616A;#A3BE8C;#EBCB8B;#81A1C1;#B48EAD;#88C0D0;#E5E9F0;#4C566A;#BF616A;#A3BE8C;#EBCB8B;#81A1C1;#B48EAD;#8FBCBB;#ECEFF4 +ColorBold=#D8DEE9 +ColorBoldUseDefault=FALSE