diff --git a/.analysis_options b/.analysis_options index 064bef2..7ef324b 100644 --- a/.analysis_options +++ b/.analysis_options @@ -1,3 +1,8 @@ +# Analyzer options: +# https://www.dartlang.org/guides/language/analysis-options +# analyzer: + strong-mode: true + exclude: - - 'samples/**' \ No newline at end of file + - 'tool/templates/**' diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..36f0d34 --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ +.buildlog +.DS_Store +.idea +.pub/ +build/ +packages +pubspec.lock +.sass-cache +lib/sass/*/*.css +.bs +*.css.map +example/*/*.css +example/**/*.css +*.applescript +syncsite + +site/downloads/ +web/downloads diff --git a/.sitegen/html/_content/index.html b/.sitegen/html/_content/index.html new file mode 100644 index 0000000..32525d5 --- /dev/null +++ b/.sitegen/html/_content/index.html @@ -0,0 +1,2 @@ +title: Material Design Lite / Dart +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/.sitegen/html/_data/downloads.json b/.sitegen/html/_data/downloads.json new file mode 100644 index 0000000..beff2e2 --- /dev/null +++ b/.sitegen/html/_data/downloads.json @@ -0,0 +1,59 @@ +[ +{ "name" : "mdl_animation" }, + { "name" : "mdl_badge" }, + { "name" : "mdl_button" }, + { "name" : "mdl_card" }, + { "name" : "mdl_checkbox" }, + { "name" : "mdl_data-table" }, + { "name" : "mdl_footer" }, + { "name" : "mdl_grid" }, + { "name" : "mdl_icon-toggle" }, + { "name" : "mdl_layout" }, + { "name" : "mdl_menu" }, + { "name" : "mdl_palette" }, + { "name" : "mdl_progress" }, + { "name" : "mdl_radio" }, + { "name" : "mdl_shadow" }, + { "name" : "mdl_slider" }, + { "name" : "mdl_spinner" }, + { "name" : "mdl_switch" }, + { "name" : "mdl_tabs" }, + { "name" : "mdl_textfield" }, + { "name" : "mdl_tooltip" }, + { "name" : "mdl_typography" }, + { "name" : "mdld_attribute" }, + { "name" : "mdld_class" }, + { "name" : "mdld_formatter" }, + { "name" : "mdld_model" }, + { "name" : "mdld_observe" }, + { "name" : "mdld_repeat" }, + { "name" : "mdld_repeat_callback" }, + { "name" : "mdld_repeat_data-table" }, + { "name" : "mdlo_icons" }, + { "name" : "mdlo_list" }, + { "name" : "mdlx_accordion" }, + { "name" : "mdlx_data-table2" }, + { "name" : "mdlx_dialog" }, + { "name" : "mdlx_dnd" }, + { "name" : "mdlx_forms" }, + { "name" : "mdlx_nav-pills" }, + { "name" : "mdlx_notification" }, + { "name" : "mdlx_panel" }, + { "name" : "mdlx_snackbar" }, + { "name" : "spa_chartjs" }, + { "name" : "spa_plotly" }, + { "name" : "spa_content" }, + { "name" : "spa_include" }, + { "name" : "spa_inplace" }, + { "name" : "spa_todo" }, + { "name" : "styleguide" }, + { "name" : "template_android-dot-com" }, + { "name" : "template_article" }, + { "name" : "template_blog" }, + { "name" : "template_dashboard" }, + { "name" : "template_fixed-header" }, + { "name" : "template_spa" }, + { "name" : "template_sticky-footer" }, + { "name" : "template_text-only" } + +] \ No newline at end of file diff --git a/.sitegen/html/_templates/default.html b/.sitegen/html/_templates/default.html new file mode 100644 index 0000000..9e47a02 --- /dev/null +++ b/.sitegen/html/_templates/default.html @@ -0,0 +1,770 @@ + + + + + + + + {{title}} + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ + + + +
+ + + + + + + + +
+
+ +
+ + + + +
+ +
+ + + +
+ +
+ +

Material Design Lite /

+ +

Lite weight + 'batteries included'

+ +

Material Design Lite for Dart (MDL/Dart) is a library of components + for web developers based on + Google's Material Design philosophy.
+ In Dart - for Dart, for you! +

+ +
+import 'package:mdl/mdl.dart';
+
+main() {
+    registerMdl();
+    componentFactory().run().then((_) {
+    });
+}
+ + + + +
+ + +
+ intro-image + +
+<button class="mdl-button">Flat</button>
+<button class="mdl-button mdl-button--raised">
+    Raised
+</button>
+<button class="mdl-button mdl-button--fab ">
+    <i class="material-icons">add</i>
+</button>
+<button class="mdl-button mdl-button--icon ">
+    <i class="material-icons">create</i>
+</button>
+
+ +
+ + +
+ +
+
+

Getting started

+ +

Let's do it!

+
+ +
+ + +
+ gettingstarted-image +
+ +
+
+ +
+ +
+

+ Please follow the guide on + styleguide.material-design-lite.pub + +

+
+
+ + +
+ +
+

+ Go to Resources + +

    +
  1. Unpack the downloade file.
  2. +
  3. "cd" to samples/<your file>/
  4. +
  5. pup get
  6. +
+ +

+
+
+ +
+
+
+
+ +
+ + + + + +
+
+ +
+

The problem

+ +

Why you should use MDL/Dart

+
+ +
+
+ + +
+ + +
+ + +

+

    +
  • warning + There is no "pure" Dart UI Library +
  • + +
  • warning + Polymer is written in JS, Polymer.Dart is "just" a wrapper +
  • + +
  • warning + Angular is written in Typescript - slows down development +
  • + +
  • warning + Both, Polymer.Dart and Angular.Dart are huge, slow and hard to debug +
  • +
+ + It's always the same - the more calls a lib has to make until it gets a result, the + slower it becomes. +

+
+
+ + +
    +
  • check + MDL/Dart is written in pure Dart.
    + The styling-part is written in SCSS, prefixed (mdl-) and easy to use. +
  • + +
  • check + + MDL/Dart-Code is easy to read.
    + The component-registration has about 55 lines of code.
    + More on GitHub +
    +
  • + +
  • check + DI (Dependency Injection)
    + You can use it but you don't have to.
    + If you like DI it's easy to implement e.g. a MessageBus for your components. +
  • + +
  • check + No HTML-Imports
    + Google says HTML-Imports are a feature - I don't agree.
    + All you get is a bloated HTML-Header.
    + In MDL/Dart you have your HTML with your components and your main.dart where you + define all the necessary imports - that's it!
    +
  • + + +
  • check + + You can use classes, attributes or tags as your component
    + (Not supported in MDL/JS)
    + E.g. MaterialCheckbox uses mdl-js-checkbox for the Component-Registration
    + The D&D sample uses the mdl-draggable tag
    + as basis for the Component: - it's up to you!
    + MaterialObserve uses an attribute as basis
    +
    +
  • + +
  • check + Easy to use public component + functions
    +
  • + +
  • check + + Routing is included!
    + The Styleguide + uses all the SPA (SinglePageApplication) features + like routing, dependency-injection or dynamic-content (dynamic views) +
    +
  • + +
  • check + + Theming
    + Sure Polymer has theming but with it's encapsulation approach
    + it's more a pain then it helps.
    + Here are the SCSS-Themes: GitHub +
    +
  • + +
+
+
+ +
+ +
+ about-image +
+
+ + + +
+ +
+ + +
+
+ +
+

THE FEATURES

+ +

HOW WE DO IT

+
+ + +
+ + +
+
+ +
+ loyalty +
+ + +
+

Lightweight

+ +

MDL/Dart ist lightweight! material.min.css has about 170KB and main.dart.js for styleguide with all it's views, samples aso. has ~700KB.
+ The styleguide-sample takes about 500ms (cached-version) and about 900ms if cache + is disabled!
+ (Pagespeed turned on) +

+
+
+ + +
+ + +
+
+ +
+ redeem +
+ + +
+

Full featured framework. The following "batteries" are included:

+ +
    +
  • Single Page Application (Sample) +
  • +
  • Routing (Styleguide) +
  • +
  • Write your own components (GitHub) +
  • +
  • Easy to use SCSS-Components (GitHub) +
  • +
  • Dependency injection (GitHub) +
  • +
  • Samples, samples, samples (Styleguide) +
  • + +
+
+
+ +
+ + +
+
+ +
+ now_widgets +
+ + +
+

Components ready to use

+ +
    +
  • 16 base components designed / confirmed by Googles + Material Design Team like MaterialButton, + MaterialCheckbox, MaterialLayout, MaterialTabs aso. +
  • +
  • 4 + different dialogs like AlertDialog, ConfirmDialog, Notification-Messages and + Snackbar +
  • +
  • Directives + for easy data-binding +
  • +
  • Drag + and Drop +
  • +
  • Formatters to format the "observer" output directly from + your HTML +
  • +
  • + Mustache-Based-Components (Template-Based)
    + E.g. define your event-handler in HTML:
    +
    <button class="mdl-button mdl-js-button mdl-button--colored mdl-js-ripple-effect"
    +                                                                              data-mdl-click="handleButtonClick()">Click me!</button>
    +
    +
  • +
  • You are not tied to css-class-based components. Choose weither your own + component should be + class-bases, attribute-based or tag-based! (GitHub) +
  • +
+
+
+ +
+ + +
+
+ +
+ color_lens +
+ + +
+

Theming

+ +

343 Precompiled (SCSS->CSS) Color-Themes for your application. All themes are based + on Googles Material Design Color + spec. +

+
+
+ +
+ + +
+
+ +
+ view_quilt +
+ + +
+

Templates

+ +

Nice templates as a quick-start for you +

+
+
+ +
+
+
+ +
+ + + + + + + +
+
+ +
+

Resources

+

Check it out

+
+

All samples as TGZ-File

+
+ {{#_data.downloads}} + + file_download{{name}} + {{/_data.downloads}} + +
+

    +
  1. Unpack the downloade file.
  2. +
  3. "cd" to samples/<your file>/
  4. +
  5. pup get
  6. +
+ +

+
+ +
+ + +
+
+ +
+

Contact

+ +

How you reach us

+
+ +
+
+
+ place +
+

Office Location

+ +

Dorfstrasse 112, Westendorf 6363, Austria

+
+
+
+ email +
+

Email Address

+ office@mikemitterer.at +
+
+
+ bug_report +
+

Issue reports

+ GitHub +
+
+
+ +
+ + +
+ +
+ +
+ + + + + +
+
+ + + + diff --git a/.sitegen/site.yaml b/.sitegen/site.yaml new file mode 100644 index 0000000..71b0913 --- /dev/null +++ b/.sitegen/site.yaml @@ -0,0 +1,25 @@ +# template_dir: ../_templates +# assets_dir: ../_assets +# watchfolder1: ../../lib/assets/styles/connections + +# Turne it off while developing +#autoprefixer: false + +# Usage: _site. +# Sample: _site.site_name +site_options: + name: Mike + site_name: MDL/Dart + SiteGen Sample + author: Mike Mitterer + + # Logo + # Usage: + mdl-dart-logo: packages/mdl/assets/images/mdl-dart-logo.svg + + +# SASS_PATH wird nur durch "sass" unterstützt +# Usage: sitegen -c +sasscompiler: sass +sass_path: + - "package:mdl" + diff --git a/.stagedive/_templates/sample/.sitegen/html/_content/index.html b/.stagedive/_templates/sample/.sitegen/html/_content/index.html new file mode 100644 index 0000000..6024981 --- /dev/null +++ b/.stagedive/_templates/sample/.sitegen/html/_content/index.html @@ -0,0 +1,7 @@ +title: <%= title %> +samplename: <%= package %> +sampleurl: https://github.com/MikeMitterer/dart-material-design-lite/tree/mdl/example/<%= basename %>/web +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +
+ <<%= tag %>>> +
diff --git a/samples/mdlo_list/.sitegen/site.yaml b/.stagedive/_templates/sample/.sitegen/site.yaml similarity index 100% rename from samples/mdlo_list/.sitegen/site.yaml rename to .stagedive/_templates/sample/.sitegen/site.yaml diff --git a/.stagedive/_templates/sample/manifest.yaml b/.stagedive/_templates/sample/manifest.yaml new file mode 100644 index 0000000..37339a5 --- /dev/null +++ b/.stagedive/_templates/sample/manifest.yaml @@ -0,0 +1,28 @@ +# templatename is not optional! +templatename: MDL Sample Template (private) +keeptemplateprivate: true + +prompts: + package: + type: lowercasee + question: "Enter the sample-name:" + hint: "This is the 'name: ' in your pubspec.yaml. [ name: mdl_<%= package %>_sample ]" + + sample: + type: input + question: "Sample description:" + hint: "Description in pubspec.yaml. [ description: Material Design Lite '<%= sample %>' Sample ]" + + title: + type: uppercase + question: "Title for HTML file:" + + prefix: + type: lowercase + question: "Prefix for sample:" + hint: "mdl_, mdlx_, spa_ - Used for sempleurl in index.html" + + tag: + type: lowercase + question: "TAG you want to test:" + hint: "Used in index.html. [ Your sample works ]" diff --git a/.stagedive/_templates/sample/pubspec.yaml b/.stagedive/_templates/sample/pubspec.yaml new file mode 100644 index 0000000..dae0c7d --- /dev/null +++ b/.stagedive/_templates/sample/pubspec.yaml @@ -0,0 +1,33 @@ +name: mdl_<%= package %>_sample +description: Material Design Lite '<%= sample %>' Sample +version: 0.1.0 +author: Mike Mitterer +homepage: https://github.com/MikeMitterer/dart-material-design-lite + +dependencies: + browser: any + + intl: any + args: any + validate: any + browser_detect: any + + logging: any + logging_handlers: any + console_log_handler: any + # path: /Volumes/Daten/DevLocal/DevDart/ConsoleLogHandler + + mdl: + path: /Volumes/Daten/DevLocal/DevDart/MaterialDesignLite + + di: any + +transformers: + - di + +# - $dart2js: +# minify: false +# sourceMaps: true + + + diff --git a/.stagedive/_templates/sample/web/demo.scss b/.stagedive/_templates/sample/web/demo.scss new file mode 100644 index 0000000..a62de17 --- /dev/null +++ b/.stagedive/_templates/sample/web/demo.scss @@ -0,0 +1,5 @@ +//@import "packages/mdl/assets/styles/material-design-lite"; + +.demo-page--<%= package %>, .demo-section--<%= package %> { + +} diff --git a/.stagedive/_templates/sample/web/main.dart b/.stagedive/_templates/sample/web/main.dart new file mode 100644 index 0000000..b5b59bb --- /dev/null +++ b/.stagedive/_templates/sample/web/main.dart @@ -0,0 +1,48 @@ +import "dart:html" as dom; +import "dart:async"; +import "dart:math" as Math; + +import 'package:logging/logging.dart'; +import 'package:console_log_handler/console_log_handler.dart'; +import 'package:di/di.dart' as di; + +import 'package:mdl/mdl.dart'; +import 'package:mdl/mdlobservable.dart'; + +@MdlComponentModel @di.Injectable() +class Application extends MaterialApplication { + final Logger _logger = new Logger('main.Application'); + + Application() { + } + + @override + void run() { + } + + //- private ----------------------------------------------------------------------------------- + +} + +main() async { + final Logger _logger = new Logger('main.<%= sample %>'); + + configLogging(); + + registerMdl(); + + final MaterialApplication application = await componentFactory(). + rootContext(Application).run(enableVisualDebugging: true); + + application.run(); +} + + +void configLogging() { + hierarchicalLoggingEnabled = false; // set this to true - its part of Logging SDK + + // now control the logging. + // Turn off all logging first + Logger.root.level = Level.INFO; + Logger.root.onRecord.listen(new LogConsoleHandler()); +} \ No newline at end of file diff --git a/.stagedive/_templates/sample/web/styles.css b/.stagedive/_templates/sample/web/styles.css new file mode 100644 index 0000000..e8c8de8 --- /dev/null +++ b/.stagedive/_templates/sample/web/styles.css @@ -0,0 +1,94 @@ +html, body { + margin: 0; + padding: 0; +} + +h1, h2 { + font-family: 'Roboto','Helvetica','Arial',sans-serif; + font-weight: 400; +} + +h2 { + font-size: 24px; + line-height: 1.35; + + margin-top: 0.66em; + margin-bottom: 0.66em; +} + + +.ribbon { + width: 100%; + height: 30vh; +} + +.demo-page > .mdl-layout__container > .mdl-layout > * { + flex-shrink: 0; +} + +.demo-page > .mdl-layout__container > .mdl-layout > main.mdl-layout__content.mdl-layout__content { + margin-top: -25vh; +} + +/*header.mdl-layout__header {*/ + /*display: flex !important;*/ +/*}*/ + +.container { + max-width: 1600px; + width: 100%; + margin: 0 auto; +} + +.content { + border-radius: 2px; + padding: 24px; +} + +.mdl-layout__content .demo-section { min-height: 500px; } + +.mdl-mini-footer { + padding-top: 12px; + padding-bottom: 12px; +} + +#view-source { + position: fixed; + display: block; + right: 0; + top: 37px; + margin-right: 40px; + z-index: 900; +} + +.sitegen-link, .mm-link { margin-bottom: 0; } +.is-small-screen .sitegen-link .additional-info { display: none; } +.mm-link { font-size: 12px; } + +/* + Solves bug in grid... +*/ + +@media (max-width: 479px) { + .mdl-grid { + padding: 0; + } +} + +@media (max-width: 640px) { + .mm-link { + display: none; + } +} + +@media (max-width: 839px) and (min-width: 480px) { + .mdl-grid { + padding: 0; + } +} + +@media (max-width: 850px) { + #view-source { + top: 29px; + } +} diff --git a/.stagedive/config.yaml b/.stagedive/config.yaml new file mode 100644 index 0000000..4b2ecf5 --- /dev/null +++ b/.stagedive/config.yaml @@ -0,0 +1 @@ +templatefolder: .stagedive/_templates diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..8c1fd91 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,34 @@ +# Change Log for mdl_site +Material Design Lite WebSite + +## [v1.17.6](http://github.com/mikemitterer/dart-material-design-lite-site/compare/v1.17.6) - 2016-10-11 + +### Feature +* Filter-Sample for Div-Data-Table [f51437b](https://github.com/mikemitterer/dart-material-design-lite-site/commit/f51437bb1a1310eef13fe8cc78287226e3e274fe) +* DataTable2 can now scroll its data-section [47135b2](https://github.com/mikemitterer/dart-material-design-lite-site/commit/47135b26cefb67bfe8814ea05b7cba3ae73a632c) +* Improved Form-Sample (with labelfield) [4d9b794](https://github.com/mikemitterer/dart-material-design-lite-site/commit/4d9b794eb5d555a62a727da424f5c6f43d5db7b5) +* properties--sticky works [94244d3](https://github.com/mikemitterer/dart-material-design-lite-site/commit/94244d313976346e9edebd3348c71471bd74ca85) +* All samples can be downloaded, new Logo [8adb901](https://github.com/mikemitterer/dart-material-design-lite-site/commit/8adb90152528d2d61b7664e4376efd866e49c7d6) + +### Fixes +* Wrong Theming-URL [6af54af](https://github.com/mikemitterer/dart-material-design-lite-site/commit/6af54af43f22a46d7d31f64ae8b59675c222f853) + +### Bugs +* Links were broken [e22f023](https://github.com/mikemitterer/dart-material-design-lite-site/commit/e22f023bee587a9638c7deaf651de5d0d2f05ac4) +* Mustache-lib has a problem if a class overwrites ==operator [513c028](https://github.com/mikemitterer/dart-material-design-lite-site/commit/513c028905f73551b2d9e7e0c71903b279fd0197) + +### Docs +* Updated all the samples (+site) according to mdl v1.17.6 [6b40829](https://github.com/mikemitterer/dart-material-design-lite-site/commit/6b40829923200799b35ab88ed31c80d8150206bf) +* Updated site after MDL 1.17.4 update [5994042](https://github.com/mikemitterer/dart-material-design-lite-site/commit/59940423f301a85ed7310a490771a495b4b20ca6) +* Styleguide - Formatter-Sample integrated [f1e8e33](https://github.com/mikemitterer/dart-material-design-lite-site/commit/f1e8e334fedeea6837daf8d75a51179b351836b5) +* Form-Labels - sample improved [42c2834](https://github.com/mikemitterer/dart-material-design-lite-site/commit/42c2834aef5ec9c6e36b184e9d512af78f60fbef) +* Inplace- + Form-Sample improved [78ca550](https://github.com/mikemitterer/dart-material-design-lite-site/commit/78ca550f2646e9fb893f7a6e2b7befca9658a9a7) +* InplaceEdit-Sample added [96f6c7c](https://github.com/mikemitterer/dart-material-design-lite-site/commit/96f6c7cde13ddb79cd99ddb5269a86855099e7c9) +* Updated samples and 'Getting started' [9b9791f](https://github.com/mikemitterer/dart-material-design-lite-site/commit/9b9791f526af5505bf1ed97e764bc2a28e859434) +* New mdl-list sample [4196aaf](https://github.com/mikemitterer/dart-material-design-lite-site/commit/4196aafdaf38a0763baefb1ab5414c01feaa509b) +* ListSample updated, Styleguide got the latest ToDo (MDL-Flux) sample [b802e90](https://github.com/mikemitterer/dart-material-design-lite-site/commit/b802e90f4beec1e6d47f26282294d84ea6b93013) +* Grinder builds Site + Samples [97dbc59](https://github.com/mikemitterer/dart-material-design-lite-site/commit/97dbc594b8bdb9c7bc0954ec01ac9d99b6213591) +* ToDo-Sample is now mdlFlux-based [50c6607](https://github.com/mikemitterer/dart-material-design-lite-site/commit/50c6607f2c551c66980f93c3cb9929c7fae30de3) + + +This CHANGELOG.md was generated with [**Changelog for Dart**](https://pub.dartlang.org/packages/changelog) diff --git a/README.md b/README.md new file mode 100644 index 0000000..1851e31 --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +# SITE for MaterialDesignLite +> The goal is to illustrate implementing a real-world-looking site with **Material Design Lite**. + +###License### + + Copyright 2016 Michael Mitterer (office@mikemitterer.at), + IT-Consulting and Development Limited, Austrian Branch + + __ ___ ____ __ __ __ ____ __ + / |/ // __ \ / / / // / / __ \ ____ _ _____ / /_ + / /|_/ // / / // / / // /_ / / / // __ `// ___// __/ + / / / // /_/ // /___/__ __// /_/ // /_/ // / / /_ + /_/ /_//_____//_____/ /_/ /_____/ \__,_//_/ \__/ + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, + either express or implied. See the License for the specific language + governing permissions and limitations under the License. + + diff --git a/build.jenkins b/build.jenkins new file mode 100644 index 0000000..aaab9ca --- /dev/null +++ b/build.jenkins @@ -0,0 +1,48 @@ +pipeline { + agent { + label 'linux' + } + stages { + stage('Preparation') { + steps { + timeout(time: 15, unit: 'MINUTES') { + ansiColor('xterm') { + sh 'pub update' + sh 'pub global activate grinder' + } + } + } + } + stage('Analyze') { + steps { + ansiColor('xterm') { + sh 'grind analyze-site' + sh 'grind analyze-samples' + } + } + } + + stage('Samples') { + steps { + ansiColor('xterm') { + sh 'grind gen-samples' + sh 'grind gen-styleguide' + sh 'grind run-site-gen-for-samples' + sh 'grind build-samples' + } + } + } + + stage('Site') { + steps { + ansiColor('xterm') { + sh 'grind run-site-gen' + sh 'grind analyze-site' + sh 'pub build' + sh './tgzsample --genall' + } + } + } + } +} + \ No newline at end of file diff --git a/deploy-samples.sh b/deploy-samples.sh new file mode 100755 index 0000000..5d81ac0 --- /dev/null +++ b/deploy-samples.sh @@ -0,0 +1,121 @@ +#!/usr/bin/env bash +# ----------------------------------------------------------------------------- +# Deploys sample to LightSail II +# +# rsync-destination must be defined in a .rsync-file for each sample +# ----------------------------------------------------------------------------- + +# Vars die in .bashrc gesetzt werden. ~ (DEV_DOCKER, DEV_SEC, DEV_LOCAL) ~~~~~~ +# [] müssen entfernt werden (IJ Bug https://goo.gl/WJQGMa) +if [ -z ${DEV_DOCKER+set} ]; then echo "Var 'DEV_DOCKER' nicht gesetzt!"; exit 1; fi +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +# Abbruch bei Problemen (https://goo.gl/hEEJCj) +# +# Wenn ein Fehler nicht automatisch zu einem exit führen soll dann +# kann 'command || true' verwendet werden +# +# Für die $1, $2 Abfragen kann 'CMDLINE=${1:-}' verwendet werden +# +# -e Any subsequent(*) commands which fail will cause the shell script to exit immediately +# -o pipefail sets the exit code of a pipeline to that of the rightmost command +# -u treat unset variables as an error and exit +# -x print each command before executing it +set -eou pipefail + +APPNAME="`basename $0`" + +SCRIPT=`realpath $0` +SCRIPTPATH=`dirname ${SCRIPT}` + +#------------------------------------------------------------------------------ +# Einbinden der globalen Build-Lib +# Hier sind z.B. Farben, generell globale VARs und Funktionen definiert +# + +GLOBAL_DIR="${DEV_DOCKER}/_global" +LIB_DIR="${GLOBAL_DIR}/lib" + +SAMPLES_LIB="samples.lib.sh" + +if [[ ! -f "${LIB_DIR}/${SAMPLES_LIB}" ]] +then + echo "Samples-lib ${LIB_DIR}/${SAMPLES_LIB} existiert nicht!" + exit 1 +fi + +. "${LIB_DIR}/${SAMPLES_LIB}" + + +#------------------------------------------------------------------------------ +# BASIS + +#------------------------------------------------------------------------------ +# Functions +# + +#------------------------------------------------------------------------------ +# Options +# + +#------------------------------------------------------------------------------ +# Options +# + +usage() { + echo + echo "Usage: ${APPNAME} [ options ]" + echo -e "\t-l | --list [example_name] Lists all examples from '${YELLOW}${EXAMPLE_FOLDER}'${NC}-folder" + echo -e "\t-d | --deploy [example_name] Creates 'deploy'-dir for Dart" + echo -e "\t-p | --publish [example_name] [--force] Publish samples to AWS/S3 (only on day ${PUBLISH_ONLY_ON_DAY})" + echo -e "\t use --force to ignore Monday as publishing day" +} + +CMDLINE=${1:-} +OPTION1=${2:-} +OPTION2=${3:-} + +case "${CMDLINE}" in + -l|list|-list|--list) + if [ -n "${OPTION1+set}" -a "${OPTION1}" != "" ]; then + listSamples "${EXAMPLE_FOLDER}/${OPTION1}" + else + listSamples "${EXAMPLES[@]}" + fi + ;; + + -d|deploy|-deploy|--deploy) + if [ -n "${OPTION1+set}" -a "${OPTION1}" != "" ]; then + deploySamples "${EXAMPLE_FOLDER}/${OPTION1}" + else + deploySamples "${EXAMPLES[@]}" + fi + ;; + + -p|publish|-publish|--publish) + if [ -n "${OPTION1+set}" -a "${OPTION1}" != "--force" ]; then + publishSamples "${EXAMPLE_FOLDER}/${OPTION1}" + else + publishSamples "${EXAMPLES[@]}" + fi + ;; + + + -g|generate|-generate|--generate) + if [ -n "${OPTION1+set}" -a "${OPTION1}" != "--force" -a "${OPTION1}" != "" ]; then + generateRsyncSetting "${EXAMPLE_FOLDER}/${OPTION1}" + else + generateRsyncSetting "${EXAMPLES[@]}" + fi + ;; + + -h|-help|--help|*) + usage + ;; + +esac + +#------------------------------------------------------------------------------ +# Alles OK... + +exit 0 diff --git a/doc/logo/mdl-dart-logo-500px.png b/doc/logo/mdl-dart-logo-500px.png new file mode 100644 index 0000000..7eec38e Binary files /dev/null and b/doc/logo/mdl-dart-logo-500px.png differ diff --git a/doc/logo/mdl-dart-logo-800px.png b/doc/logo/mdl-dart-logo-800px.png new file mode 100644 index 0000000..2905dbb Binary files /dev/null and b/doc/logo/mdl-dart-logo-800px.png differ diff --git a/doc/logo/mdl-dart-logo.ai b/doc/logo/mdl-dart-logo.ai new file mode 100644 index 0000000..600cc25 --- /dev/null +++ b/doc/logo/mdl-dart-logo.ai @@ -0,0 +1,411 @@ +%PDF-1.5 % +1 0 obj <>/OCGs[13 0 R 16 0 R]>>/Type/Catalog>> endobj 30 0 obj <>stream + + + + + application/pdf + + + mdl-dart-logo + + + + + Adobe Illustrator CS3 + 2016-01-18T11:18:59+01:00 + 2016-01-18T11:18:59+01:00 + 2016-01-18T11:18:59+01:00 + + + + 256 + 96 + JPEG + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAYAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq8 s83+Y72+jttZ07mr6XJ9etIGHF629UvLaShPWM8/9X55t9NhEJHHLlIV8/pLzWbXynMEchvHvuP1 xPw39z0CHX7W4ttKu7cepaaqVEUtacecRkWo33PHjSua2WIxJB5xd3LVAcBHKZr7Cf0I6K6tZZHj imSSSOnqIrBitenIA7dMrILfHLGRIBBIfOH5q3XnbVvz6tfKOi+Z9Q0S3v7eEJ9XuJ0hRhC8jN6U ckYJbhgbEL5wsfz0/KVIPMQ81y+YtH9ZYrhbuSWdQW6LLFOzlUelOUb1+W2KvVtW/PbynpHkPRfN t/DcmPXI62tnbx+o3qqP3sbSNwjHBqipIrSoBxWkn8p/85L+VNb8wWuiX+m3ui3N+yR2ctyFaNnl NIwxFGXmSAp409xitIrzP/zkd5M8tebNQ8u6raXqy6cP3lzGkbo7GISKiDmGq3IKK0FeppitPNfz w/NXWb2x8k+YfLl9qOkWOqR3cr2kFw8DyCGdIwJBC/Fj8Jp164qHvH5d+dZ/OWhfpptIuNJtpJCl ql0wLyquzSAACi8th40xQmOs+ZrbTbuGxS2uNQ1G4RpY7K0RWcRqaGRy7IiJXarNuemX4tOZgysR iOpaMuoECI0ZSPQInTNWS+iDSW01hOWdRa3aqkp9OnJlCs6svxD4lJGQyY+E8wR3hnjycQ5EHuKW 3nnK1S9lsdNsrrWbi3NLv6ksbRwn+R5JHjTn/kgk+NMujpTVyIiDyvq0y1QuogyI510TDRNcstYt GubUOhjkaG4gmUxyxSp9qORD0YVyrLhOM0f7W3FmGQWP7EwyptdirsVdirsVdirsVdirsVdirsVd irsVdirsVdirsVU7i4t7aFpriVIYU+3LIwVRU03Y0GGMSTQRKQAsvPfMOnyWHmKaO3Wsepf7kNPW lQbmIUuIgO/qx/EfE0GbOEuPED1hsfd0+TzPaGAwynh/i9cf6w+ofEb/ACU7F5/KmjR6RcaJfa7p 1xLLdabHaW7T/VreWjLDMT0kVnfp9/gZgZ5cfFGEqANmrPeHNgBDEIyhKcTuBV0D0PnzR+jeatRe 7is9H8m3FmkrJ9YluzHZ8I60LspDO/EH55Xk00ACZZAfdu2afKInhx4uHv5R/aXkfn7WNM0b/nKX SdT1S4S0sLaCJp7iTZUBtpVBNPcgZrnbor/nIH86/Jet+TJ/K3l26/St5qMsPrTRI4iiSGVZdnYD k7MgAC9q7+KoCR+c9d82/l7+X3kDydB6GnXNxFJfXd9dQpM1vNLOZAF9RJBG0P1g82VS3h7qsJ84 XepTeffL8WoebYfN80MtsRfW/wAUUQecH0g9ByO3I+FfGuKWex6Lpmsf85bXlrqUCXVqkrT+hIAy M8VgrpyUgggMAfoxQmX/ADlQYdP8yeRbx09Oyt5J2YouwEc0DsAB7YqHu3lnzp5W80R3Unl/UYtR jspBDcvFyorlQ43YDkCD9pajqOoOKEDqb32jeZ5dYWwn1DT760itpzap6s8Elu8jKfTqGZHE2/Gu 4zMxiOTHwWIyBvfkbr9Th5DLHk46MokVtzFX+tL9T0fVfOlxCbiCXQtKsnLQXDAJqUjEcW9M/F6E Z71qzeAy3HljpwaPHI/6X9pasmKWoIscER/pv2BMNPZvKek2WlNYXF+kaOBc6dajgeLfD6kasSJG U1ZqUJrlU/30jKwP6x/GzbD9xERon+qPxuiPKlnqHrapq19bmyk1adJY7JiC8cUUSxIZONR6j8OT AE02GR1Mo1GMTfCOfxv5MtNGVylIVxHl8K+bIMxXKdirsVdirsVdirsVdirsVdirsVdirsVdirsV dirsVS7zBoyaxpUtg78Fl6ggMjU/ZdT9pcsxZDCXEHG1enOWBiDwn8c/J5y1jB5Msne9d5jBcRHT 7OWUzW9kXqi3YNRKsHNgrJue++bWGU55UNtt65y8u63SRBwxrJ9cT6Rdgd0+/hvakbc+VvOE9zJc PYWLyzEvJLDcTIrljWtC3vlQnp++XyDTk7LzykZGMbPOpFk3k/y3NpsUk99bW0V85KobdpXpFQbE yE/ET/LmJqckSagTXm7Ts3s8YQZSjET8rO3x/QkHm38ufyq8zeY7u78x6Q1zqlvbK81yZ7mJWhjG wUQzItVDb/DlPAaty5a2EZygdjGPF8GvKv5d/lHoE9pqeleX1tLqYq1tPcJcXLI7HioWSYzoj122 auJxlENfjkIn1Di5ek9fMbX8Uz8zaT5E87aXDZeY7E3MPIvCHSZJISWMYf1YwpiDFe7AH3picZRj 7QxyAO4vyPfW+23xY3Yfk3+SkT2wttCkeSyL3EN0r3pcvHIgP2XDS8XpQcWUb++PAWUddjkaFnY/ wnoQPeefRkmn+TvID+d2812ent/iWdZXkv2kuFpwVbd1aF3CK3FgP7vAYEM8eqhOXDG+R6VyNHnv 1VPNOk+VPN+nLpvmLSHutNNwYobiQqoSdXaIMjxSeslWBWtBXvh4GuOtBP0yEeLhvaruu++fko+T PL/5d+TLCeHy5a/U47lozPJwuJJbg1KxkNIGeVd248aqK7dcfDKfz+Krv7Dvfdtv8LZI+uWCOUk9 RWHDivpuXbmpbaMAvsF3qu2PAVOtxg0b6dD135c/fs1D5g0meWOOKZmMnDg3pyBP3g5IC5XiCw6A nE4yFhrsUiADzroevLeq3RSXcb3ktqAfUhSORiacaSlwKb/8VmuRra28ZQZmHUAH53+pL4PM2nSu wKyoAkbKTG7FjLyoqhA3I/D29/A5M4y4kO0ccj1Gw6Hrewq/x7imVvcQ3EKzQtyjf7JoR0NDUGhB ByBFOZjyCY4hyVMDN2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxVj3m7yyNahiCqrEhoLlG NOVvKKPvv8S/aXwOX4Mxxm3W6/RnKYyjzGx84nn+xNNE039F6Raad673ItIliE8tObBBQVp7ZDLk 45GVVbnYsfBERu6RuVtiXXWg2Vzdi6lL+oJEkIBAU8ABwO32TQEj2yYmQKcPLoYTnxG7sH5dPchh 5TsBLBJ60x+rNG8SkxmjRNyUglOQr3AIBw+KWn+S8dg3L01XLp8PnTj5U04zJKzM7pt+8SCSq8y4 X44mpQsdxQ++Pilf5Mx2D3d4iet9Y/durS+XrSSJI/VlTgjIrKVrRpVlNaqQfiTuKUwDIWyWggQB Z2FdO8S7vJdpmg2enOrwM5KrIoDcAtJWVm2VVA3TamMpkstPoYYjcb693Wj0A7nJoUKsFe4mltlm a4W1f0/TEjOZP2UVyA7VALY8aBoh1lIx4uLh2q7vuvn5oaPyjpkcDwoWVGpSkdvUBTUAn0vjH/GT l9+S8UtMeysQiYjl7o/8Tv8A51rZfLhtoozprsLiOgWR5RHxAVlNKRSrvy6cflTEZL5ol2fwAeH9 Q866H+jL7vdSvp/l6G2tIYpJGeRDBI7CgBeBQBSorQ0wSyWW3BoBCABO44T8YomXTS9613FdTW7u iRyJGIirLGWK19RHP7Z6HIiW1U3S09z4xKUSQBtw9L7we9ByeVNOkjWNnkKKsYVWETisRbi1HRgT SRhuKe2S8UuPLszGRVnp3Hle+48z5eSZ2VpFaWsdtFThGCBRUTqak8Y1RRuewyBNm3Nw4hjiIjkP cPuAH2K2BsdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVd irsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdi rsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirs VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsV dirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVd irsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdi rsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir//Z + + + + + + uuid:30A085F765BFE511A3C0D00742C31621 + uuid:ef22d05d-09f1-0a47-b5cb-7facf55b59bd + + uuid:2FA085F765BFE511A3C0D00742C31621 + uuid:2EA085F765BFE511A3C0D00742C31621 + + + + 1 + False + False + + 800.000000 + 600.000000 + Pixels + + + + + ArialMT + Arial + Regular + Open Type + Version 5.01.2x + False + Arial.ttf + + + + + + Cyan + Magenta + Yellow + Black + + + + + + Default Swatch Group + 0 + + + + + + Document + + + Adobe PDF library 8.00 + + + + + + + + + + + + + + + + + + + + + + + + + endstream endobj 2 0 obj <> endobj 13 0 obj <> endobj 16 0 obj <> endobj 17 0 obj [/View/Design] endobj 18 0 obj <>>> endobj 14 0 obj [/View/Design] endobj 15 0 obj <>>> endobj 12 0 obj [16 0 R 13 0 R] endobj 5 0 obj <>/ArtBox[285.197 321.238 466.638 366.238]/MediaBox[0.0 0.0 800.0 600.0]/Thumb 29 0 R/TrimBox[0.0 0.0 800.0 600.0]/Resources<>/Properties<>/ExtGState<>>>/Type/Page/LastModified(D:20160118111859+01'00')>> endobj 24 0 obj <>stream +HW˒ WLޏ(Y'aK?™HT.EwmTW@">?>z[8Z;~ǿ6N8~ǟoy>k?ShxϷxΒtP68rž6Џ;qVi4aP{OIm[`\rp`m5$OP,"t#[2}MJd.N2y)sFl@OYJ_`WrAVüO J0ǜza-X4So m߬"n=ZS^Lk7:N11AΈg1pNg ܻEA 2CiAԙ*\!aަI/|lk aw-.$)Ãx#oEC +=/$r^kyc\2B֥W(v +{0aV;AM hdE0r5u*Y!X^f) ˝JIܞhۇ|(1>1Dd~<΃]NP`KKLzYv+c j)Y Sj^S}镇UguwgeV']k=J,\A|k_ai55 \pCBMV!2ڦ],JI! YmEȰ@EN7(Zjߖ =,@kҸery-xVe>[),i+ߒ_p|+,k5lMafJ`g'2[IFd,ΕJՑLL]y,)9j>mgmYV/ \bE]!naot /"VFfX詻lYӎ{m4SwfT}?ۘ VQV}k3CJUJ; 2,8—'(/vWϗ>}< m1t endstream endobj 29 0 obj <>stream +8;U#6YmnK&%*AmJ=Ia9bI"[o6M1=ZY>"L1Y";1u[&QH[h7p5m?4iTu0bY4B73I5h$ +Xs#b(Ddu"fBWJ46en1h(!%uhF$i~> endstream endobj 19 0 obj <> endobj 23 0 obj <>/ProcSet[/PDF/Text]/ExtGState<>>>/BBox[330.342 335.83 464.736 321.439]>>stream +BT +0.133 0.827 0.773 rg +1 i +/GS0 gs +/TT0 1 Tf +0 Tc 0 Tw 0 Ts 100 Tz 0 Tr 15.2075 0 0 12.166 330.3418 325.3896 Tm +(Material Design Lite)Tj +ET + endstream endobj 20 0 obj <> endobj 21 0 obj <> endobj 22 0 obj <> endobj 26 0 obj <>stream +HwpǿۻE*4!$@"56C ,"4 iC!$bB0jl; "e 8&%{{o`iH1ppˋRޠ26mZ3/edfjֱ ] +19qkk؃Fg<~yS`J@<1ytکC_%:wt'kN-@mʇ̜IOx*H:1ad%LG\.~DqS36 v Q5kĜ;{Ӳ^>wmn|O٩#7rrvN{ Fdc\FjxL(kq^C*!TAۢ>I@! J%^,0_3Ę3g5pT923 Ӵ|mvècyئ`GNڞTh{Hfබ2Fcmee TX#VgS?EwJllhhR*c#HB;tE 0Br6fb>bއmsHS*[2x=Z[tVQK<*i=rQME$aDQ}V"9SS`rdg99TE59Ewr:jrjr.jrCY&W<, I`~u!uC#BMhTh:eeI{`(j-:7M8dc +!rk؊88+(1r;C m9۵/vv/ S# ]9/vKBX }9/vPtsZE}HΧ9G/v>"sjS8G/ti_׾9AB$YOw9eȜ6d2g sgs`\4\..%eC!rf\Dn"7 RC!!&rc5D"eA$XH!yd|m"h" o͎yb|g<5dw37CG^4<"yD$wȀGD +="H~QBD,f zDPa.U<"GDVsY#"#kzddGFY#k>1O{2pc5\.L'`7D"" FHcC!h45D"5HKC$I6DZ"j" 6H[C5c2yݐ`t4d:ydnu/(OA-$~Nћ|#D6*Wj5*W#Mǝ7*W]ʍhT.剦/d"Zz[=S1G]3.nI#Cv2r}Q[E7Jn}W_m;~Ew=+گܯ}+JL4z[L'$} +ȡx:T\-:`;zzgZ HDY1^,ף#ouwrאּ5؆<'GYխ8dnY\+?*Z1_ Sb']nNQ}uF+N**;G,`nt̹ +1ՙ[S;Ny?_]%_겯ꪯiй9 +qzhvl5Tg]QjF'O#7|vݟaᰅl15l=En` +Y!X1l "VN\ҮQ>]K64lEgEyl)q{!}uhH=VVU9 6X)X ۃ{i~F{۳YNC8+=E;vm|ˎZðcyވ'9|_|_zG" w~'~_-~/ Dc^tDUtDoO Cěb!ƈ1QFVL;b%ybX(%bJJ5}AlbP;Oc8-΋K⪸)n2H<Osc0;®bװ8]׎vCh7[vk5bS4{bpspKpbV!TUUTjƪJVmT;QuST_s5H UT2#:r#Z& <'t8|IE%>F"Psi+Ӫ,C +|5"Z|_w<3{Vxed+"C{ًn^R &d[HO* +^tExVXXx2瀋/> + ݒא5try7CtW? |C| 5^n«ʋwel>*V[j5jwܞV`7h٨q͢Gi*.>u'wҩsݺ٫wAӇd 6|QYnj7~&>)SL;3o7̝7o/\xeW|gּv 7m~omwTv{G>GN~zϿ8}.~K*|嫫MxFzsZ +.{/nRh5AMSs|zJMز З 4]=oH~g +sW?u9[;;8{8{989:;?u8;:8_ʻ<@W+rEb\ 4hWk뀛ܕUw;ѝNs繗y)8=D@ϐ{OۂecUYViE[t+ʷ[K .k/8 +wٽЮ$ B`2` )N8` &1cc)]4B{.*ze $+)WQ<8osߝ{fg+y_ɗo::>H6UTQ㢄t t +X ]ʪ`u`MofnC1%2MMCgM}H 39ظBijJЧ>234qv8*v;_wfۙ<PM-USˈPO-KSˍ/ o&S b/IWG-{eSM.H^QO툦vQSI=w\YZZTQ|qkj^UWgR)m\uZORj\g/Z0XA:K#0>O`| +[a! F@> m<MhFYqTA5Jd8,hA+*a!.\E +\p5O 7܊Ў p;C0|p0w.Hq/+0: XlqxsxLD<0x lI.m-vA;i=k~:@#tq:A'4W5hd ClX 3tH2CWK%䣫tJ:ݠtn^/#?ݥ{T^Kx*T6!2Tp!#e12V6q!2^&DU}%ʧkT]W7MuKݶ}k{l{b{j{f{n ؂*[v T&dds"Se #YE(-GH9Jc2Gx9ANd+ȩr.gy(ypQΔdv9r, e\$% n"ȥH. +RVQnUQUjC9UJPJRʥi<_܍̓uſ77[M_=o܋{s RU ZVJWwTj2T[ȓx2x:<ɳ8g &n+>>@VC| >g[`X՘4I!HH"R(}䳋h$BDJDHl"JDXĊ&"N8Sg :o$bMH%"EzEG]QBWH-E+Z6"C+bD|*p-FH1J#b1>'$)>g,|/%nr *_R7&\~+>?J~ȏ[~O)?"G5!jqWFiDq,hFc1YBiab(hlM8a8-vK0^&5]k}D^rnB"!4HMcVU )Ua=U5y(my:hQE_ZI㽽 C _"/޽kϰY~G.Hl@5(jRբJu.գ +pEI (Q RcjBq)5(S jI 0G5QJ(Q{@u.U_q pVstjEOPwzzPOJ(zQoCԗQt:;A4 A4JCh(34S: zF(]D4s<hH/x@<1_, "X,a[&MBo;bX-IM}KۢP:^oR.g Lc6Mr*>%ʣ̓<+/KM&H7-Q ՟O&%.eqW2 ҐBJ1QL$lϣ;bgݰ;&coCpf`&>/D'^i8g|Br\>lq ~p# 6܎;p~fsal'{tc> +^[2U USJ؂\\G*ZŨ*N5SaB%lHI\wTe5EuUn ]=z*Y=RT/[Qi5 қGRK^>jJSjZRiUV=+܊g[ Vk+jouY=+` Ҭtki^gg]gk)4`00TfY$4iNh5`b1~qtr;n;8:Gӹ:O'IN?₸(|: 6gb2`+l9l:^}0S&wfe3od_OdjeqNZhbc +wtaXǬ\+O?J_ZXlFcXl,1&5j$zޡw]zޣ}q@aqD9y8!"_S8#~gůSKFHfr8)L^LPLg'dcf3oG(0/xpl$cdl4_WLy.l"El&l![oM&/e4I .&s2jɋ +Lf'&Oi7n 7*^5gL*Q=+uYZ\s`ȱr"7㘁5yV]"7|m>U\ءo۵0_i[ m_RW+mnme]Za1mwY֋+mSeKލXeGvdM݌lc&(xX œ_.~/$gfYɰ*̷AiIX5r,qN21 a.^Uo"٤AXi:fT4ԞjokM9ΩMUNBךjW3O iaUN589EWz@N)U9-Z*CS۪FDgrNiq9Џ\iř/T4o9N!w*rrN ΰƖJGt%%]=~jjj}N>GO.V`:eܦ>`Ra&(l9g`虸{{~X>>?;;- =]=]<6VxO'S1ܗ>yYQlnruorwqwtwp7tG#Ῥ,Uͻ##4#8ېC!!Y!q7Ow~+`;dOHr̳."`܋ȍM/S%7ra&S͝<(OOx?m8-A{V_Ƚ_Uw*_ȠA{Y}t9ï0\X9{U 00W`5lp = >a0B: 8 G( ȃc ³pI8'`$\̆L;XEѽVηM"iyk۶m۶mm9Ƙigښf`:bae~ahEi1<4f!!%4|Z@ iY +&G~ZLK2ZN+h%մ:ZOh#mʹ|3Wh4IFh7EbŦ8R\ +:H0ţfHпQb +t|7?C) %dtNI:E sA)2j]Kt3)%Ԕ<6O芌12Vx eL)2Ut!32Kf2G/r$rL 9)䴜rN/o_x<O=x '\+Q|^rCn--wܓ@#y,OXXl9ҳc?8GcqlC8.PF8>rNȉ81q8'ᱜQfs$SsNXXXXXXX؀؄؂؆؁؅؃؇888q\6rƽu{t3pFę9 glspN\p^."\qq.%2\qyW*\qu5:\q}n 7&ܔqsn-6ܖq{w.ܕqw=Nro}<`CyNp88󸀋Wpp7ppwppO/o_?x$bx1X^l/ 5,{Pd}ֳbZl{ ^"/ۀf^/̋1m,ƱqmgP&lbfm&6MiS6MkyɽHfm&fYm69m.Rx)m^-d "-f-aK4 Os}FwQqs\xytAuHNБҤВJ-@-@BO$zB/={ż3gιs;?բTR=O (R#jLԄR3jrP jI5Dm-ԁ:R'L]gJ8SIP/M}/4 t#t =3,=[G9zz! g_KK82^+x%/~foB$jMa|brҬ6kM3[No!sL?2)9o.4s1CX?OS33\r-ռk~o_W~w6ƀN7E$VXau56F[;`쎽2EpQ8q*48ggJ\qu76܎q۲G0SL)O H t1Jd:N)tN):Mg,t._t.J4J:ݠtnK(zH1=A zI5λ]x^w||~N?!RXaUZX6FMVa]@<} A8cpRSpY8\\+ +ipu7܆;pA:܇cxO!2kuxW8s +|O>'X^O ^Y6} AmT9QQ*D9L}42A45LsTw=7lv/spNId9.)z +_PګbT +z/ҋ-0&;u"omwNŻy>#>t>S }R_WtNW5}]7-'{%'yc &)d>1vv7 loSzx qt})bb+P]&LqmiJǔ6eKS i3>S>/`;{؞枹tgzUWŜE%-m˸۵+@[VbX|e6OMaT!(TVeQY)_PTvCTTnG}|C_}>VTA'T~yGu]a?+$QBSHIB$E`##a QL1Ʀb! 6Pb˿gp$λ={^Q Q5HDj"P  ""hG + h$E;GtD'tFtE7$;zED/F +< )4U30X1\V͙_a~a!zJ5uj}֩ XNPu.kY_OV U-lSXuOU3YR#^^|@RM{2jIݛ$oT1"ɟ_%E^F?# +^ xo`FbF#c00pac9yx8{5 K ˱oc%rǸo.:2D 8O;(Q~c8'qJ8/Yz~'s~nw}O?=)'wQ?.H~߃r?w?rlY41pݍRM .Ke'KǹlHl^e씒RJK %r.%9(=]JKw(.x_JR$DB$=8qLJKp_&ۤIMYBs' 6 '#X93+=GuAm~WmsX,`4l!F# $%וJ2LR%кJe* %lic 'Bcx+ٚcͷ<^١Y`z%Yߚ_X_Q==(ŶP%zD2g Bc3leLEֻVUI%c<^?݌3Ts\ׇth8edf9:AԥRRcFՂ~hɿk5:/e`g%B*WJsV  [9@qP('"+>-uA/0\uofT-)-()SƻX@NC['c1o3mWܷhk +]II&˹TiB\*jh2[ޑNr WfST +esN}C-PKU>[F}t(c]⬦yl[y#7,96Wk f>>G_Y7\<'SUdSw6ş {b #GHN%w9tusqU;Z[+4|N;ڮtI]Nԭt/:[o{lkT1Bp#he1ˍeyؼd Mm=>׾~'ܱ-`g(}uRZHj5UM-pZn:I^NwVXC׍\Qy_ƪ6l|'._ ݞ*cĚKlQ ]Yq[YϼY嶶Ӗ*j/r}E}4,F?z +x5]Qhi+' c*#P:1s6bKl7i/9|"cՇX0L6I?31eh#q*=Ӷ;$ rP]<<" +ʠǻ1Eڎ~f aabZ|0+ǵ:2sVژ*L uُe$r#܅)ͬYTwufŬx>1 ^sUD=-DkUX*xn"A.9Fh i a.h gײKqbiڤq ׋[vȈ5W  qT\bʖ)R%K-cVgb2[Gy~;Sy").O%>:Hs<:2#_~ld܃q)1t$8xcxgw뺷  8\HH6tL&_?vs8oXvT@BM +>9)W3>RxFq]{.އw,]?k,vq^ 6ŴIpS"& RŏRHMT!ĥcG6E?FAiQޞ;k;XΞ=qι߽wfض=۷) ڧHh5 +JY\ʰ[(4tRh)2e4\Єudho`rt n2Tso*;5 +Uqxk{ik\$_(Ч +F>C*4U9j-)T Q=P /,dU(c9z! edU] 5BQ崽dU)~'+KK9dj`_†=s +>>c Md> r;nGtO:8=[4&-g,Y|j9dYn^Pɓ ˷[;m`1/;YXXmzpVw-*ed0cY{+S%+ܜE+rasYld>Ǘ4 +"Q],:W؀jx4*)e`e6K3] :,E+EꊊE6b_UY:6*Z"ȵ⡾qɰ*:aQqB'O)!`2$Uؘ$ӳg-\#"ze鷠'ꉁp=V: Sm_xDnp7I)>RU xj7qŁktQ$" n7ȠUbu pGJV\j!toV XI})5f]'=8?zA ygyo* \N):3\ DW#QwzHӰ%zyUhkGgGG{[|M\?xwOr?|i+?80ҷzq촯[ 7[XxgbGK?߾E> #LlL5xņm&9ɹp_I|9--<5!;aOd2;A(E_h$zHOR(̺Ɓ0. tq_L}tWh- ݝ\R$ˑ4X7ox4h(^IەT^^yCGu&?륒(nnj5A!і%lv9;vX,<h6 ڶ@k"I}I~&)$M +%/k]J,\F(%)EI.\ "#Z)do5¸!Y85KXQhig!x [YE${tir\7/$D2qtZh.Vmə$y+7hXpuSz9I4RNpA'Pg8kr \KҦ49?ݣyݹzzg޹'oi(p'1]@<-c@c1SW:蠿68: T4m.ynÏi`t50ڇN=P">alޑqgvown^8}{w糍í!J $ДiϸI(!5mi"Hp"i7"()V"EJeGj<@E)+VB0sg ngg[m;ĭ#LjX 5~?$ ͅ`Kh\zh~O`6Taťk.Gi!:rJ*BqE ΃ZT1Ƈ|!"XpJDvi._L. +L"j V+·.ؠp B++<_0FM-3ߙY=3Ѧ3"WS19C(LRE،}/w2q@<.<~Zjquot.ٛ9w7Jm~n"ֹhó #8m؉kn}r+5rv|eۏSZkF٫Bie?+'ȭ~^4+rҟ5 Uray|Co=/M--I=: + ryyukC6Wof/V<5>p;5R K A4Ʃl< X9{(HѐSu:)a:VuKu[eP,n=:k7ʮ%'pRMk)8yeL*$vŦ0v DiJĦl_u~ɴ\\M#^tՙfJp=c3[DE$! e{rz}BbDJrnYÍ:c'op׎?'x86۲q#?wdfc{^=;}!LZ8ixPQ8% +H =xeqV"FX Mm?ÈD⅄cd QrdpD8 KnD] R`-cX <{"0BbW_Qez`ddglI~}=E/̟agC7.ʳ1__,,D@R.l?fd'2e=T mw$Ζ$@]}£h""ԧ/gV% + +91;'X6M, (&נΟ|9}?mȮxwB=~jo6)SV?#q٘5Hw5o.`^sI.7,8a+5L(2jPr!ɂO+(ԒXl5geL6@ ƔCư1j4Sn]nCA +y`71IQKܦMW;w▢zUI*=A&=M45#JI +H +XBREY 44$Du|UI\U<|gun`f7c<[>(u|V ?{='Kԃ +yrjKFC:g-vKr5I)d<mo/oIn/Hq>_s8{h+kΗSԜI%ՀG؜3=RtΈ9'i#pJ$I<21jfY0'1W̰˼d+3ߦ_0cv5cas|I=yuT R,9_KW,LBp39X>i>bF`U&S&>&ᧅx.Ci<Ӱ HCaƵ7`Q:ȶJ+7 + GlO2P3^ ˄ozJoSq]*KP;M²P\'J޶dT] ziQca< u %_4CX{bTX%=W6>T F{OX\NGTkRgH +K2.Og݋P;}ZI3yTPPiQJ:B)AqU=` +pZy=.moYoo ;wִO?aDž}[/f$r۶pf?2uk*}Rc4>E:H>KE1hRtI؆4U(.PQ(]ބ +VKABDQa\q` 1!*1e\xSndS۾UXO܃0^H0"D占 4҂BT`baH %tflvb: J +Tu='^Nzfg?^{:vRKafQgjիj:Q "ujS9 wV wݺWk+ק~ʞJ̪XV9j#OfOk9T]R:ڭo9l?%#@bh5%gy<'i1 n)_sJ6h/dU.D'N{)p݂|3\c_ +"I*%sts8A:[:ޫܣ,72n+2H0fEVgж\TV`~9d;7x|9ǂEq<OkPnցﰔ~!f>qxAn :Vl~rz<{n:5FZq`_N8,C8bK)\ځ;C2۽M,w\~v ɝ)-5*s:9}|k8/f]wZ?#;mpYO8R0Ka~js=w~0}g ػ%êOXS] [u`,3O[/8@ Y[X1Ϩo7݌ϦΜgTs:RΩE}]vDsRwuS sO(A|+bwa9v1?.SU"Vp'B\sG`GSeGhd#sN%leC wzH_/6C +x"Qk=eسVǦrkZ<z<ވ)+2]j>U3 `?+N$NXຈi(=u/r<ȍ^ rr>y;ǩ%nmU*v,Jd=*bkهLs2qd[ M~ FEi 4Ay^gOKbMY\yAs;k.2m/Y&_ ~дS͛,U s {eCѳO>"-ĉZ>r6&: +[$fH@Ҍ)V=6["j e'NzP&s*R߆p/63 +T]cJش#N5yRlT-xذ}z-U}_Izb<~TV'Yw)m %ma%aZh%Q RSAwޓJg,ƏoNOI\ZkA4ΎiJOn 2 N9 jd}HG"밤GAudhƴ_y=.ϵ))2A? +wA\N +Xv75bQnev馰;k΁ubоf| лw T:kߣ%~>W&c`x<6;(\On~ڜO +,WA +GCQGR-e"uĒsCwoFZE"gO0iN6ue[~MMJ?[3'[[:neȳޗpob*#Cp25 O!.l7^/јv]>1Y 0luֲZ?1dfXi14Ukg_a>5ju څ\Bv5bOKFW4]-u{CSQNbkDNK͑SBL#b"/M埒3畣<PS$ +E.mT4!7U^;.Y%Gqߋi@]*I -шL9xA`m$/SC ț3ު?ꐟDNL)!f6qԇ媿_0;:kdlY/*3?绶EV6Z\وJŁ(j"Q7 +t +ނn eFق|=~fyg>ӀsFxt1b|qi0=Ne"lZ ި+Xh[ ~<>}$i#v.&z.']-Ohi|LxX~[d3\GiDz i{_J=5^#C#{ƾ/g{3d<1k%8;UvMXQl.+ RWH$Z65Ҧm$qUcb1 +O51.Jkk9k32@nI:b̟uibJH3y~FN{jle7gc~`cuMΐFv}ӵmU2k?/֥/-h_u "%zYi{Gt} Pޑ +(pt +V(f< +g[fj%FLMAe\FvesJ]؛WkϘV?ET:roz>/~EZVW̻N爦rG@fˆOI]8:@ǥڽ|)]=Z,\`Q!®!&ӝ7*V2Nh2KqSpj!i]@=twc cd_Թ23;֓3!_w6k15C0C3?G_\|ȟ?ަ;ox;<QMi6)ZyLʴa۠KS~p:}i3qg~ףv9̷Pܟ[}nPh/>=~9zuc6usL*:秴n _yeCaٷs_ l7.Q@tRA}?˔_姉M>A+ R<>.wr~[5B.aMmEOr2eJm P$[Unos#VՐ`6+IkSo'mץ5;/;{˰rbxaWC3x$m3Ux"Qb$Δ%yU.g2,0=A7`/;k%Ghl{;hbW&mY͙k椏|?6Gou'+e2NU ;>tۤ5X&M%K4p> CjD60.Mw|o>|s7h~o廸jQ=jy'ƼCNթFںzs~y/w3RÉmbg'it;{{η]F=F}˷Y]݇K%6KUKu6{(oezE +6M/αAS5{"ձU_{[ТAϝI⮑kE@$Q{bu~ 'DawDYXPܔ'ĠocOPpFLRǁ5\0@cqAe(Q˪(RuO1YvyΎ9߶Mˉƞ w $6P9nI'ʖX/[*ܕJg,umشE%@م=a\q g/)W[uy TXW] [/h![z*=5_ĹлA)?_ u+уB|Gы"K-=߬hم}$޶U۪co|w+̣S*T7x9rjHc{. +zml@֥ݞskd:j"O{Z~_i˽?oߨ\🐅\^4E#e-_<"s%r*;e7[ W&Y6(GU/i|iYSv48M{qNL L_i(RrQn}):P :e%e +V J`Eۿ(ڝ:,c2=AukjEI<.36F`/3.[we珕AqlYm͏59}%r)+|A&:;j6H8ӒR#Vd;\{׌ bqľ(Z-һi&>,:NPV+Єo(NÍzjkh U4A=ns4Zw+':)zwe鱷=CK9enԺ^pũc񮻙֭?~o>ҬV}hQ}o[_U]UoH^B&2sRH($!B@2&&}%juu*˲b]P֡Rő%8TU+UP+buaq} /i?{;Ϲ0#tAtRƒ9w,b[xhJS 4}G1I%~ +T_?_ W脟BϲLgQ{u漺_ΦyRr!iշKT 狺ݗOdߗ}V~##ySgSǠ.`|,vupWg:'exN"wA$Fb:8NG'r[}9 +]%cpcy T'x~k"{/wj,9߷:3./ +1!E/xM}QGT!0RCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC(˘Pu@#2Q.sCO3 &O RR<xc xe xq:y(XqFb(@!(A)0C00#pFbFc bcJ\1`&ʩ\eELp9|N|, E`)n2,MXXŹo5紵X#f>#nzq+6a3`+nc?[x &'vS]vSCQŃ>}')O3,>/x _ACI?OS</_7x)4^G K ^_qYT@8U' *b*R*40N# +Ih442Jt MTN44*i: I44ovĎ1;n'줝v9;o]vŮ5n7ݲv=o=Ğ3{n/쥽;{o}ž7n?ڿ@#8B $B!4 ,!<" ""!2 *!z<@LBlA\xHDH$H4 ɐ)iYِ9yPPEPP%PPePPPPUPP5PPuPP M-m]=}00C00#00c00009h`*a:f`&fa6`.a>`!a1`)a9V`%Va5`-a=6`#6a3`+a;v`'va7`/a? 0(8N$N4,<.".2*:n&n6.>!1)9^%^5-=>#>3+;~'~7/1F!aQ1q1323 23S2S3 233233 23s2s32  KK ˲˳++ +kkI6e36g d+fe;gvd'vfve7vgd/fe? 0(8N$NN4Nl\|.B.b.R.rJjZm&nn6n ~AaQqIiYy^E^e^U^uMm]}>C>c>S>sKk[{~G~g~W~wOo_SL%)B(B)()"(")()b(b)(n7_ PXITɔ\)RZiV>`ʤʢʦʡʥU>WT!V XJdKUFeUNUAUIUEUUMUC5UKUGuUO@ HDMLB-JFmNAIE]MC=KG}O5@5H5DC5L5B#5J5Fc5N5A5I5ES5M5C35K5Gs5O@ HDKL˵B+JFkNAIE[M۵C;KG{Ou@uHuDGuLuB'uJuFguNuAuIuEWuMuC7uKuGwuO@HDOLB/JFoNAIE_MC?KGσNCz(a<#z$Qgiû(W{f۶e۵_Z[-۶m۶m۶y=^gm A6؆PfmQ6XgmMI6٦TfmʹY6\gm-EؖR[fmUZ[gmmMٶVfm]^gCv؎Q;f턝SvY;g]KvٮUfݴ[v]g=G؞S{f텽W[{g}OپWf_Ȉo * !8DCt@LBlA\C|$@B$Bb$AR$Cr@JBjAZCzd@FdBfdAVdCv@NBnA^C~@ABaAQCq@IBi/ʢʣ** +jj -xhB;#0: zzcbcbcFbFc bc&b&c +bcfbfcbcbc bcVbVc bc6b6c bcvbvcbNN .. +nn ^^ >> ~~3#2QMF$EhX8xLDL$LdLLTL4LtL L,l\<|,B,",b,,R,2eYcyV`EVbeVaUVcu`Mbma]c}6`C6bc6aS6cs@[[3mؖAl`=;0pvbgvaWvcw`Oboa_c@`PpHhXxNDNdNTNtLl\|.B.b.R.rJjZznFnfnVnvNn^~AaQqIiYy^E^e^U^uMm]}>C>c>S>sKk[{~G~g~W~wOoEPDE"+壨2AMC1KGqO@ HDILɕB)JFiNAIEYMٕC9KGyOU@UHUDEULUB%UJUF*r* +J*jZ:zjFj&jfj.?QKRk*HWN.n^>~A!aQ1q I)iY9yZEZ%ZeZZUZ5ZuZ ڨMڬ-ڪmڮک]ڭ=ګ}گ:C:#:c::S:3:s: K+k[;{zGz'zgzzWz7zwzO/o_".r]|\TgNιh.bX.x.KD.KⒺd.KRT.KҺt.2L.Ⲻl.r\.|.+ +BplAA^szUu;\r + +l1cdT E  + NЎ!vb%[z:yS2UH?)><|m=GàD\[sl]F>:cJ d<8ؕ3y Ы[~Zo<*{;se䝉;t>kcuMM[\c<o13൤17 ㇦{ܽ 6 2xLSͮqVxm6w.ͺӡdXo2;:w)fr:,k̟|ЦZ~{ as=떕^Qoۢ]5+juwo(}ʪn}c;?\BtcG/!339mE~ɡFXWű;c!^߯UvmSS g5Gf}a#L[iۤWitTM3M?Tۋo.v4ӹIbn|yry&wvw{K=i,~#y?1kFgr.LoQkZoMoq)F\ˋƾ̪]6*ҸNu^w(Fwz}|&rOHOȃL88ә ytO$3ޟQ^0W~4JfsC9gYʼ&k{6ɼKMԧ]7~{Ϟmrondp)&Vo }fzy>8xASzﬓT2?/"1n>؂oSMdS?2]wb +áޱY7zs(ߟ G۞gtx^aCQ7G_tlQPziJo>"C͡ C[]㺟.ԛWpsѹ\wR,}(rJF5tMQ \\\\\\\\\\\\?g3 |>g3 |>s9|>s9|>/ |_/ |_/Jp%\ W+Jp%< +]oo)L~^B}(rJ}.t @ch5u p7n{cQWbuŨ+/F}1Q_SM7EyS  |ԯ!7?W/ +og6.&>$~ψ %k7'R[BIH= ! '$$z5ԙVz7ri5&P# +=p+g +p(? +=p)~~e9T@%TAh]A#(ROd@B@[ìج\`|КjiMW6J,0YM2(uc+s[#`CAIJݸԍ> _t7ʃqɡQΔ4<%ᛍ% cvxLYXZ +f8n3sf!cӋaA-5ǘ3oJxN9eӥԺn!_leNS(;Nn` vr 999 C9 'MOt +In\ucጆ3UtU]UAWU`U]UAWUUXUAWUUtUVUUtU]UUX㤬)MKB`q]AG\/:gI_GuD:Œz61s9r.p.tne_:1cp;w 1c!C8p 1cHǐ!C:t 1cHǐC9r 1c(PglƑ0|d d՜|!G֬])J6W&A9>$ ->F7^0h +/ _0|a /0h -0h -0 +#F(P0Ba ٔ+#+eTQSF2* W0\ap ++ W00J+}J+},/=J_׮j>Z oojyYuluXxq$^vv~nn~N;N]]aXw`c73qOƫf{s==|M?OFJ 4FƋ19\z+<H?W֫ ?īvø^}c^]<ʃYgUϚ>1?^9ף9.eD~|:ws n[֏wY_FeU/q/~Iޭuwe}\uwd}ϵW (Y-2ʯ/NN]_}Z/\s1sq\.rqŴ3|NyujYĻt _~3ΫGIgge/\? /OOSSO?(OTFJNuOKwurb a [a`=l&l~hwQٞ_ %?Em0lm o#>%۴:, b^ 9V~7 תP3߆}>>a>އ_zC6}_aֻ~>ݶmmmüm~mfavs}g0{fٯd׫_~>0k}ӯC }#}݇pvü>vlf}>w׫_~>}ס߆}m|>k﮿p>ܿnk>W6}_a_~>{amg߯>oC}lwzWjH!j|?ԇz^GdiH!diH1NӮˣ!<hȣ!ƌ/<hȣ!<hȣ1ʟ!gȟ!g~~~~~~7~o 7~o ˹!熜rnȹ!熜rnȹ!熜rnȹ!熜rnȱ!džrB !'rB !'iW++B"䊐+B"䊐+B׹+B"䊐+¿ osn[nwݼ}7ynwݼﶾx|oچoK7-_??l辇qwswswvv?yp^00a~={0z=w{<}}O={͏_-_QF1hQF!hQF!hQF!hQF!hQFEhQFEhQFEh7PcRg5Ԧ.njW_jqwIXeqXvwqYY\'hq'hq'hq'hq'hq=W'>}|ǛowwϡoN=IP]C}ֳN?O?O?O?3?3?3?3?~~~~~~~~7~o 7~o / / / / ++++oooowyݼn^7uy=yvϳ{;O^*zUUѫWE^*zU>UѫWE^*TSѧOE=*zTQѣGE=*zTQ/GE=*zTQѣGE=*zTQѣGE=*zTQџ?E)SMћ7Eo)zStK-'EO=)zRIѓ'EO=)zRIѓ'EO=)zRIѓ'EO=)zR:^xup{➸'{➸'{➸'{➸xxx8s\8΅sy{p/ ½p/s^_xWxS8S8S8S83<uRguQWk}?|W_]|go?_???acϺ5 Q5_j}~5Tʼ2~֮>SMgY ꥚kғJf(dJf(d5gWj&3P2C %3P +o)%sQ2G%sQ +o)%R2K,%R2K,%R2K,%R2K,%R2K,%R2K,%R2K,%R2K,%R2K,%R +o)%S2O<%S +o)%3T2SL%3T2SLLU +o\LV +ol%V2[l%V2[l%V>}&M{y_u~8*|ǻMI6(kI6M❟;Ik!i$@LJ4A@HDA- G}४H2 + )K 'J̙oζ};swoL>yQG?Ep4 䓓o?6w6W{`xjhv7?[5+jJ\͊eiU ===ѩ/wNVP*WbUATP*c駎8jadV1|- Biv BiPl&;+ UK<2Fi@ɱPrl0%szxz1)< y8(MNuO?[p _29bdz'^6EϢzu>k}C߇}>@?~@?~CB?~!CB?~!ЯC:vUyyyc""ftG&4kUsk_᱗pӯgg>kpe3>kF2L,l9y챆kaa8}ɩOxKlAWcOgcOgcOgcOgcOgcOgcOU,{5{S,:7_oDʨceԱ2Xu:VF+1Fz?L7/YO Y*`pb'Afƫ\fkW-.Ai[C}%m^kif{V]gb8%'  1S@ !"\$n: ' 3q֧%lѵ]HX"hB';L'L 3Τ_9I8C''iik[=1e&Gӯ|59ҡ?HʻJH)aʛܳɌb^¼jtSdR₶Z4JDn,3ZҤ8&kl6jI-ns&xX/. z{⌺?s#<aЩ.wDz[ FS t 1j}baW.ʮ~9޿ԯ\+w䊹V>u^M>zρI|EVE:鋲DSyU1ۢ^!6/e]6\_5+SRxE{!(ʜ~CV"W-IttTW']RKM??QL GNYK_>vkh9}xDߙJa(uR[d/-xm[xəm˭ϭ O|G^E~UknmHЫ[Y#_P%|d^Eژ{4ck_c}tCK.pcنP6z؁ rKX#)Cm8p%йKBsϮs:$>=vgW-޴a0ͤ[wQP`Yݤ 8paU1!Env'OPKa_{_'1ikgqH^4^ܲMvב +\m:3zC֌.1pgunq޾#:]'f<#zq_#+c.$UIݣȅl[a}ň}OfQRQLfLYdȺBy@yWH(t<L0I_50dNM>tm߰=zz8hR{ 1| ߒCCbh9fôŧNv'd2Y'bVm]CjZE8a4N>W/Wއ:f){%I1.M1ZpOG0K9=M‚ފ> +H7;sxǃ@A9\Eh$ -Y,ޱ endstream endobj 27 0 obj [/Indexed/DeviceRGB 255 28 0 R] endobj 28 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 6 0 obj <> endobj 7 0 obj <> endobj 8 0 obj <>stream +%!PS-Adobe-3.0 %%Creator: Adobe Illustrator(R) 13.0 %%AI8_CreatorVersion: 13.0.0 %%For: (Mike Mitterer) () %%Title: (mdl-dart-logo.svg) %%CreationDate: 1/18/16 11:18 AM %%BoundingBox: 206 222 595 403 %%HiResBoundingBox: 206.6001 222 594.4004 402.2383 %%DocumentProcessColors: Cyan Magenta Yellow Black %AI5_FileFormat 9.0 %AI12_BuildNumber: 406 %AI3_ColorUsage: Color %AI7_ImageSettings: 0 %%RGBProcessColor: 0 0 0 ([Registration]) %AI3_Cropmarks: 285.1973 321.2383 466.6377 366.2383 %AI3_TemplateBox: 400.5 299.5 400.5 299.5 %AI3_TileBox: 120.5 -80 679.5 703 %AI3_DocumentPreview: None %AI5_ArtSize: 800 600 %AI5_RulerUnits: 6 %AI9_ColorModel: 1 %AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 %AI5_TargetResolution: 800 %AI5_NumLayers: 2 %AI9_OpenToView: 171.8428 492.2559 4.4567 2218 1355 18 0 0 6 75 0 0 1 1 1 0 1 %AI5_OpenViewLayers: 77 %%PageOrigin:0 0 %AI7_GridSettings: 64.3465 3 64.3465 3 1 0 0.8 0.8 0.8 0.9 0.9 0.9 %AI9_Flatten: 1 %AI12_CMSettings: 00.MS %%EndComments endstream endobj 9 0 obj <>stream +%%BoundingBox: 206 222 595 367 %%HiResBoundingBox: 206.6001 222 594.4004 366.439 %AI7_Thumbnail: 128 48 8 %%BeginData: 3064 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 %524C45FD1EFF5BA9FD09FFFD057DA8FD0FFF7D7DFD5DFF8B5A5AFD09FF52 %FD05F852FD0DFFA8F827FD5CFFAF608B36AFFF8BAFFD05FF4C27A8FF7D27 %F87DFFFF5252277DFFFF527D7D7DA82727527DFD04FFAF5A85A9FFFFFFA9 %855AA9FD4BFF3685605A5AFF60AFA88AA8FFFF52F8FFFFFF7DF827FF27F8 %2727F87DA8F8F8F827A8F82727A8FFFFFFA936A984A9A8FF845A7EAF3685 %FD4AFF8B608B8436AFFF848B84FFFFFF5227A8FFFFFF2727FFFF7DA87D27 %52FF272777FFA82752FD05FF5AFD04FF85365BAFFFFFFF5AFD4AFFAF6160 %8A3660FD04FFA9FFFF52F8FFFFFFA82727FF5227F827F852A82727FFFFA8 %F852FD05FF60A8FFFFAF365A5AFFFFFFA95AFD4BFF6161608B855B5A615A %365AFF5227A8FFFF52F87DA8F827FF77F852FF2052FFFFA82727FD05FFA9 %5A84855AAFFFFFA985845BA9FD49FFA9A8FF3685A8FF5A5A5A6084FFFF52 %F8522727F827A8A8F8275227F852A82727FFFFFFF8212752FD04FFA8847E %FD05FF8485A8FD4AFF365A8485A9FF608B608B60AFFFFF522720272776A8 %FFFF7DF827272752FF2752FFFFFFA8212752FD58FFAE60365AA9AF5A6160 %603685FD06FFCAFD07FFA8FD0BFFA8FD5BFF8A8AA95A855A616061A9FFFF %FF84FFFFAFFFFFFFAFAFFFFFFFAFFFFFFFAFFFFFAF84AFFFFFAFFFFFFFAF %FFAFFD05FFAEFFFFAF84FD4BFF8B5A36FD06FFAFFFFF6084AF60AF608B60 %8A608B848A84AF608A84FF84AF848B8484848A848B848A848A60AFFF8AA8 %FF8460848A60FD48FFAE673685FD08FF848B848B848B84AF608B8A8BAF8B %8A8A84AFFF8BAFAF848B84AF608B848BAF8B84AF8AFF84AFAF8B848B608B %FD49FF60605AFD08FFAF84AFAEAF84AFA8AF84AFAFFFA8AF84AFA8FFA88A %84FFA8AFA8AFA8AF846660AFA8FFFFAF84AFAEAFA8AFAEFD49FFAF84FD27 %FF84FDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFD %FCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDF7FFFF %%EndData endstream endobj 10 0 obj <>stream +%AI12_CompressedDatax}Zʲw Ĩ 2AF\WݙC&}YgS]]swz 3X@8HmNge%l]oXt䱓 +e*߰ɰrď"z}72fð 뱻=1x6. ̖ep# Hڐ!2"vLq{d`e$Se$"vYA M4T8^/9<>^疳%Ns ]wOWf6[mκrvҝ5df ԏ3H81@ywcO Be*$n'vch4Eܓ5tzX2;uftDRV{s?1 8 駇.W.;wx$H&ba{"19tai0 SةD"_-a|I'8aPÒ5aN #N' x O>/&4 4w3DYSGJ.;b6v5.`W4be8Mt&I؁"pp%D/"bPo;1Ъ" +!xc] z3 Bx0HC\Dtr3`L!T[ϺM >,R#?"4ߪov .Pu;C?]c2k4E?%pפߝ [Cb#Ѝ3f1H8JZ׫n eS-,Х3`Fc&%n&MDi*^ .7-=Œ"l̳`rϵ$g;@x]Bd3 +b +i*]+b +ר5 q-r0ܣzMļgͺ},Hsm QgL4{F+M"ٍp¢DV?iW!VHxtnƟc{'$/`! G44Y A6d^/h~8 {0cZ?|<͙Qn#;;Pw/"x'I +/f1bM3`NϼuBܿG8u0JW6=̶.b9_#so/NVCx DZ"ߐɆ1T#ڳv=7˙?#m|_Xw1 Ԙ1f.l'}-ELܳ=2Ē=Y%ny@?cC3CPddw r%x,ˮ@i9 ,q9_x^wW f\-x]tY;/DR%qD/0։ R6@B f{X}wP}A#<%5UsE |I!pV&D2~7N}w[O] <n6;!;ngO㎊A0ctwXqBь^:Ԇhm:a]p!@Hz{[D}CV쇀n8 7 k{pBxn6g'$@&4Ή{ <\aeA)L[pkZnT[1b`5 rhN9c; {fYڟ(Rី .\7,uPD]zUHa_.b|;/G-@]v`\<Ժ/&m!004?RJ.O3#g<| Oџ͟0u.̓_Vhu-@m7NosBGbߎ^-Sf`elB#M' Goi^'ތ3vY]I%<8:+0":]./E] ?,٤] { *3pkQVfyN&i:H !Aw+#Zgǂq`32,vThd@ | cIsWX~-g&œt ڏā8+$k60n#2 H__a' D"nb]~#M8A5;I+"N3lvi7G>/&}0L$b B2kfcZM3. 7 ~Q&插yA[s1@hS Mx5hXx#J$pd$B.)LYX"'"ڍ_$֜0ׄ)H>iȰ1_ Bµ de/Q]X + rAu&Pz.Rtsr,Nb%kugEE@AOC x#~wz,&qfPÆোe +c +l v࣑H8AePfX }-fJMA%p}B;tR2M +iΊ-ID<NMWK#h)jw1vGa /I hKv 8}+QfB?C{B}=i1m6u4Q"Q%h[_]dCHM0,GCn"k1 c +%m5;Ĵ1{dfahDוFG>ׁH⋜@疠OAx_cˮ QTZj5B|GTh^vzY"^ZKp$PtW+f`I˕զORS+#z &?`DF#Ns74y_t/n͏DqL>,(DiV0+1y~MJ$ Ljnk0/L& 1cp5 YݿDuvd85oE"h"#W rk_cA #QwOv@&YoDO6q>A +E6szUKBa[#mwˡ~oS!hMd'hZL6v(*be?[ +)4zv%v6Ihb왊._į^QI@+C72jNV=ǩJv͠ɷlڏx َKH 4ȵ'c¾XJ5v!\OB(VYzIwbU9jr +.Pp׺ +PmTJc<(2f*"?Ύ)~}"r9f57r[c5?-Bh1AeK jk@f -z3} hwJf+d|^A_`/M  u<=@oɚB諭q+nϘ>ĥ`=h ᮿ><(#<8@&WAỉzM+ִ˨  ͜j'[Ӕ^+7x{aG_~7wD<^v']ZJc dGAm%N[#2mAqwk#B,ɕ4F&mz(g1;Xq+Ʒ_XwV:NsJ@|%317kŌ[, m&2:`}S-jgpk{4=~iC7l]&y袦\vw5WSqPA,]E-Eb,K&B CxiC 9,m=uWZog`h5  i6SA_H#^iմˉ.یUPBKzNAdBᒘ-0f{f EIFk ^[h˚'UM'YHpq26NT[ͪvZ!JpZh|nǥ M<{j.A{\?cX;kcRK^m0* xuj)^C ̈2j§#4^n{`d=Q/q\ڐoQ޸x)-r-xImN,{ȮX!|I?|>|NCT<8zH_}KE 4[]I7>> dtuG_'4NJ.$i O/Ao:_[*ds/VhtɎʏtfU? F;W[iof3f컊ny%=s؜!qvK cL#l#K~Sg:}ys[tCթmϗXvxH9}N]^88u=j/'_T@,S.>͙v~ѝӝT>e_t\1[Ut|wj+ c3I1vroٙ`}L~I_܌6g,"\Nbzΰ +&Ib?nb.&&I.ԅ%.?^t:})5K=zz-۾Tsz zOєG_ D T .΋Dу6؜DBkU1_^ +\^ +n]]TztyL] x&Z6cFRHj^đw0EFۗn +ݮ,=?&L-}듟grdsfF#[tV萾fnejK'7.s稘zI W,4XJmV-GoVGu */Lf2:b:HN-9 oJ]G:Y *;~_vhJIY +qxTtS-e:7$昔ouUto"xF&V8Acʛ ٢4ƭ3q +=U<3Oñ ^;$Y'*.OC'wBBe~* log[!Of{a,t;61+.{Eke#x둷C  N,&'rh o{*E(Y-sQ&XN[xF]>߽GMiI`XW"Dp<3r962[`wN9=Q(,:z޿)ejɀx=PRWMiuK$|lU'HI8 Sgi=!O5*HjIOMOsG:A;"CZ$ + )uN$F#GT#(B۟bay,Y=Wo:;}ufMk ^#C^/S|4[̣ayj /g,;%U e(_yz񄛀vNյ:oՋ蕝ǍQ'1rN''óX) Fi]yCyCsdf#bM_6\^J D3warzΟ)_^)E|6èQ_TM.ghŤ_#d)~ 4܍9G:*sko';AA sF/?T~VHN0?SG~XZ&'g`lY\UZ<1]m_%!2SKnٕ{r@btr:燉Pٜf] r\Ŕ"KyuE%WѰ$B#K"sm||vIV24$N7n1z$|aF..z[))J*V*}yx'* FiGts`_Eo NOe9iDO"O)LK 5CQmz ׮"xk< zv =b8I`eUrilPa`5G*aI|91\Y{BP8_r2b$\|[`/HGLBO +UG؋Jߙ C}=MVrY dT$3]DHQXp#vjhڤbuQG9h˕0efpDw0XƹÒ*؞=u(_H>]^KE9F*gx.|7o72b3J QnxJ)V<qWl +%^G\rdf]J"n@[r'Odl*S9Q@cxOqR\> `;` 0ZmNK:5+z>X]_ /lP|W뷄A[!]=(BMN)ޡ;PtdtFLޠ@}hIaO9櫟9"N3Jm{$`-$.[Uޥ7!. c9?dvXL8t@q H.Sa^Fޅ fB{FUhd`m>6\97~$z 󷷩qXcy!} ngGP>h)*4(p^{Z'ۛ0iv*@ +dW?ޛ|?ם潓PGgJTPlxx5NYpym+C';ù2S72/9iڤeIIIYDcPk."(Br07޶ + p^OӼi@\ˁb{(`fo,`)=?vѮbWRa(c* +ݯ&l=}u!BfgQz7Bб<*Ɣ'gѽA̐>? B ~e6 P~"H kz y #OW%~T`<"*Wq9X,&|aM|Gy6r= h[$w\ڂ'8L憥Z:[nuͲԺo̾= @?n8W -BWYқa\%gߪ<:KM:^OmY׼g&1!apȅlhrϜ7 QmJsi"0RzT_!mq]Wǻ"$6 m;|:޴6K\9 #쁥V;ob{vg76UF)xũV϶dK}{i!]E )̋.fHO݈.RcVgSg$A!FCiʌ1RSJxS#jcZT͉gJW\;sAVc+5jGpFoH,Q?0RcVNk?6cʺHo?+Rоzg5m]-HIEi.Hmݱ&Nh#NBi}B +:mJwK:{Iٜ&7";F5#J|v|H'ӤޯB3mx\GzHB5L6Sk,{8BC=ٔ&n9!KH viZi@zɪ-MrN^RdRWTOD%BU6Y-kw@>^'ϒ[aU!㻌߿#]Qk Ho**[HAH)as$0xɜA%=sGx0_IOV\Ei p7y +E!U+pOfkKS&O״ QF;K}֯<=tOԛ驊bAs!?A)n1N.g%\-h4xkQZix9Kd/BN4lyu~Ĉ_zGh?_Nh'ÒAmD)XM&;{d]{Z'oOntRl!_oϵFڋEjZ?8\Q!qG➫u9RͷSKQGbO_b${ xuk{e{N{]]ЬduC3&6'.R^oF +=\6t+/ &a> p8;ϫٻ Đ-w@Sb}\< 'w +e͞PˇdZ4יr,%rkKIqEJGݗǸ6!2@Z +$dHRuҷцU[ꅀ4S-GJ$ *-6MB𡍔~}E+tar&gǖ>R#-X*_wf4+ϓ]ځh? Ҟ-jTW]\s?R_$˸]=/Q/_OUBq:4/rZQX1AI\j?ϝnKort=O>%pe*8w[r|~AK#)(|64fN򚨨$qF\[|N?>ka>>d˾3+td>?T$]T)teoyN6`ꗜ%Ș!yz%k18/{RK3]#.wTϫ@ Hl0J2bsRvJ*wu;']5hWh:ԶTrЮ!C0HM0'Ҧqa;*n,97*m.z am S=WiʇȂl~[i[>y.w+0>Tg|n: [{Œ"ES8kkUK>PZUmٵ9MwP"g!ޓ(ӄÌX=.Qٷčcť&Nu$M4gpzfXZ?c.ey}}3ͽ%ӖA]?#QLϫņI(h kIyՏ*p`z3*c3Y1PB@Lق{ms +0Q-݅}e,:᳋۪mٜ:{}jP,EW)b#֣eGH늉J#; ML^&DFe6Wk-{g%M)ōه#{}RB]--XGԠ> >bv]dZSӃWZW+Z +0Gc{t õ:;9Iox k +$~jsj>:19<$֞"n@,,m."]RFp.kufgɓ ɹ!fAGJq2% +2$)Y'YkiMٸ?!ώ?ġy\$Y3 M5Zkf Dr}jUT,FIp{ب\B259ӫۃsfZm *9nwr|鱠|u6~UhpJge@ʝ<Ї*[Sؗ2t +@0txMfeM퐎/yJ.}s맻a[u.Danll{,A"`VlFd~)|2^!-dC^Eq[x x gs*~ݓ} ,x0eZMI[Á+ JinC `GoOlj@4W OF9;.JڑKhղF`h4S?Bd-ěh"Kap cEFSytxxH Vlg|I2ҡT(7u=+a7ZM J/lث7VWx*VZg4kMM&JA]{M(_1mV3r-W[IPcݓQ-[oćbYbFQ{-P6pHDaź'wGbNJjޛ# p~STq +pބ ZCwlaì!t}cuʶFwI7;% +RJqr($ߊtwXckm@/NlZTusKVg,lSu +G,&*z d]jYٹgcD+ k-fbZx-kP|g0ͷ9XFo![M0ԇ ey< GMv6Km\5`[(&b`\Agsθ:GmͤW'XBiĴ(?Q'>G9H8MS q<]2MRB)܉_X Jʹ +L]Ƿ1s',&{-ׁi^Jby{;X.-2%='M3oϹ2fM=8b._I~_=aS&~L*֏ʺ<o˖͋vZ`i9#|MJWGH_7ݕ͵t Y[LA\ O,ɖKʈẠ[f* +bhWY/1ʕa习VWmwYuUz#d0{-L +ZG"Ű}Wx t~:;;(b*/#%lMeK. 3^bY\*݁Jߨ22٥>K` na vǻ6Kehfdp=| -9T_gd <ۣ<Ǡ8h*dK$BV,k,]C$Mvy[ 41~fέ6 ehǰ}1r:IՂuu@ĴND])lAJ[zjHz%0ӊ_Zc[gc YeExLnׇ+]wP]AuR'#+*D9R=TN+GiVN-딚˃+y ՋY ·';ݛ[aҳ坐pv>k +/ Tgq 8qjgoSaʫGΘk&p1vi[]?$Gt& E&=Fkku1ԍ^1ŰK Ju̱0͝O̘}mJ?+c=FHw@*և뱗cV"?GH%OGH8GHEPQ"կY v"ࣩ{o2 G Jdzlj=J$V'?xR89ŎVS +gRI1UDfqqJ᰼[#Y cֶ݁4p uo_$c;~4E dlc[a^ICy*<ѻ02:շ-ngy\,>: +8ßzqA o#EeDPkr*ﲐqR {sxugkR~x;{y>*N.R|詢,J]a6+9"Hѡ"Ru-L}ߧA cITU솎AKxWz%`Fn#B)Q,U9fOiiH"EnNu=u|Fuj ~VΕxU$|%mnW;eۡ/cܵK3TИwQAp]Sy=QPeV>ϥ"dT]ڳJ;YȒX?լs3ZmHIrZ]YN$g5 :9Tf|_șg~羙6bu|Õ-u +Ώޥ*axv_@=zj:)(vj:٬$uN9cy9j5r2|j:[RnXtr`5>tDtVUiYPzj:Z:=r VM'o,~WWtZ xGܾNN)N92ǪӚ?ᄩUizWN =L(vj:Z(YMgbTi-O.>N@HK;UMUKYcV?r5vzj:- |j:mrj:-b'N_8Tr5K<BZrNnۣjn6G]:KΫOaUTN'I gj9g+2>NKzBwhso"LOUiNE2x04n#+9|,s'|S%?;r:54c4ί4+;׳5@)3eJsQTtKYd+ӯ}xv˜Msu{:푶(ЎPski/.*;:;wJkt{ղNs̫Ҭm"CԉYd'lweTgЙ]طMVwCaXp< A^~ ǨVbslW-(諀J JvRv3lZq߸Va7)fL֒tsk;_D,BVʾz%e}aLJ^ P7wt=Իn)z*Sw1O0|Z`,/3z9v'0BKÿ9jP:(Z)L@)d0_kW > x#v.&'unO۩|<\ 5NIy{wzN+gc;KO=UyƝPF #LybT3ga-ybVtsм֒'͜c9srݍNXY}V2Eu\~}"&Ƨ\ "kX_SƤGʖql?2&@=L?lמ6]RrjI*-2+;/1tzq!tI +׸vV\=1jlk՛X*wafs_zaFJkomT}\JzIyo'竖ӫz6q.YYvT;fTWltsRh>cZF*|4J pU׀-5ǡË̗MkMh5ϔrYRVȴrӣ~ܚ#'* Uo+~K +K1Rvb4R+N0b䒑g!o:3r)w.ٟ&s`WtiU-T{RN]OiP2=Y8+:0Stv@##`f>3Lw73=Og z~>k}H@VzZ(h擭uWZvM+ZlZhR.9j~KUVkVߌkk6I>|'P=8Mj TUׇivCq峙hP>3:-x_yС|.1eVA#Yi0P;f/7G6߆p}JG8T?߆2>:O!oCvE;;~qF%o)Y s3َtŎqqN1;x@;\?N\vʽE|5*?.>v\xi쿑wXUմgJ;O.Cۯi@i3w +WzsWST?.|*1SxR$^qkN*?husqms4jEuzTC~Hy|Ń?89V9gD,m{ȹ~Zuҩ~ +,ÝS~[fRB|b3q3^ny|~oo'ke9O [cgLJ' x㽪lQrXyIbHyr"2{bk&DzWOth93dNN*];P"jǎwwq.^}tI +!H1L7?Fﹳpex<9IݧB'kV>J[S•e8cpa)iE\_^Ҫ#}eG@&:J@j{X>#9J{ZTؕ&,QoR~>mG{r).DqGЌu!Dһ:W0{.[eCs'uO;!WUmNY>r=4{=ܣ{Ȅ]H?q[)қg7G^&FI_T,bcyHhtWI>K7O77ΡLJ~Iw H4П$PBd:s Z`;zH#trƒ\R|DeߞG|QFxP#m0.=9RΏHT ^0e>s>[xD/`w~|l&u Rq\P5ڇZegMN=Ov:EO} 8'BՀK]E߀bP7u-\TLNZU^[M*ύ[(hU sLKŴi+hJUL~,˕ +uNyzлrD~ jl?Coצ +E_:BJ˗:"؋RiQl@di9"@1è1^,`b^pO ro@)B^bӳEAnϜR=$ +X )kBV!_Ê0u`(.Yay:%a2AɼWO'rS/8Q|P{7eҡ7K )G]vxߏٜN>(eGwr?8%-G K^d~[Co#>Y>庤v4Q͹v|Gbbmb[ƲM--upe{N8Hc=[qee.{6gWosO(k$x3(!Hav# Vaiz}&px8}L2_qL#x,wo̔ߚpƹ./\@Msk_B|Py}v2pu)OD.+3>h\g1rnl z>2gW\o4}Y P$(9G,lQ% OH]'Lތ3g&eWNG'A4/$9qbI5yF+O,vI%uB oaaѺ-y rӫZd96|.ִ꟟RjtI}n1S$g5&YT=q'zpzGk򓩋s3rgȅ&KtJ[<9T!Շh"Fy*CT-4)c͇;'sdoIW.cp殝$y]Heuӎcm=dN]OjOA+痯? {H4>1n!%~}f # c~A^Y>qy#\ne$!zeSq'wgPM~X\$6]O5m@zҬ̸YFRA!W~r~=9GA͟&Ŏr9$͒,_?rؽQeg$wK.\rc>uy|`òl;4Dy4 a(uBϧ,8f*h~d +dJھԷg9 RUsNvXLd)*]qV؉ۜXovvYoBc>$-^ϕ-K8 BOhmPBϋ2Lg_sf'L=W#y0v&O,oz9r1DiZ>}̠\'\D#O܂IK8 <mJqG!Y"ޢT૸3uMK|ȿ_eՄEUfi9܁ tV`mg2rhY8rNS&6JZՔ/ݳ._#!O^@؏5dj3קX²gCjcvV [-)AگXu]WGŠL]Uerr _RQZ[mjH_-=SxV]ޖ?Tbrm,DV]5|"@H3@?[XE7@gAEV\$"[~y,Sɴ=8ZegӸ%ru)=D8FK8&,Y.~ي0@{ +r4bb)Q, +?` Xb&~uCC՟^9>2n%hvFݟwn }9x3 rҎOζG0B&94҇s82*N Dc@~-H9\].h,A: oRKk"һpH09畢qND̂nrʲ^ +fB;">j䫱j5ظ"n˙j,˦wRzJZ6S3{UlH,JՎ>dA3Z@~X")k^ФJ}aFC:0Dyqׇl_Wbdik'n'uBSRJgn[,T~"ʑ-'5zK=or"@D_䈐KDҋ< DԛDt:9]D:tKt~hΝ.,cm/[]46kf5r<*B*^-0u/;häۯ@% rÐo`A o݉Y +D;M肰g\c!ҍRcxDb=9':U @B F7u/ȸ@;Ʊo +{3VaJJ#8TJ2z~d--y9b;\%oW= +v,gE3" uFt@_MNi2<Q>KF9P$ *iEly/zma[Yd gaI|?SEK "ʾ|fk@1ÿeȊU˚}ÿe(W,9s53Ҫ߱-c(>Q[:JV"^3WgqCH Gg/_E b _j9plh_C%2ɢð6G_* {ݬlnNyՅ eM~L.ǞDZwJޞsm;Txv7 ԃV8:ǎgm,#~10!FRqѝ.{t?rׄf#q*FGh"N[DH~A&V[i'EDQ a2]m U{EO5OCmZPeR>Ɵ#Y6$!7eេ-jw{LPLK:Lc@ĤD pd4Fbqj$q#,D0LME@wX8 +w8ID{h,fн(BG8Aq+SG7"Dkt$a +L A(h +CAX4X0 Q N@H ;GA1 +K u*L1b (^Ќ$U +FI zp 4 Gp$(D**HSAǁf!3maD*sT K {fCTJ<`-bH=f*>H> 9U#s˪JclZ^_4UL5YF -S@жvPK}FڈԑӀ Q2*(gA=ȋg GBtQKOIӯ([ h9 @PdTL.FnsDSQ\Qw0\D+[|"րPiMwbٓeUDrJiQ@CAM>g -2jd'2 )}foݨ$1[OC@?GER|-M/x8T]ܼ?/􇠈am#UzRs/6䇱e!kļ vˑ4z5KǪkd'YEknFꌰu;}ZvsfSص`uEȵA]mnkz^ﴞlec-̜`:d`+*?pdanD<F#?EZ @>;dX4ဍA4=O{L%Y>jNt 4-) ˁDVȿXGF;K~"P(."vDrv$y+H]5-k픚<٢LRıIJgM*Yx^MK[Y~$Y -K/KS}B% + RB 0kZH,Ƕ)7jNE Q除dMq`5 ܳGU81iz֎cCil[Qa~ߤ ¬/,}Ձ`g[)[5 #DjquB^բdvGs}OK'kX̐(<Γ\02RM꦳\^aI%ɤ{ HoAJӧG뺝IybV魫'Vcld~P-gJmAު]dQ0\RIcyzߕT~jӯY*G-\r:)CkOAI]u4tNi;d& +EJk'l8݅Rl!x,7wG%;Ih>+&B{96=ȳC޹Q=ۉֱjOҴsR %j逩$wD:{c/?o?,nn秓fqLJǴf0V 0S=LOYv+dKub[c!d;wxF\OJ4A',m '.jZhSjH/bVm`4c/} oL 5]Z[3;TJ\H-1 (f%Jú%v[`jyEFR.yj6}gb~$opI9>Mp,ud= 2z _1 (Ne;cNqMPxH}URƜS^c'YoCաs X!kVRʚ,ΡZޝHsxk^U[2X&f8AJȀJm\`X׫ W JWw0s C<uؤY5)şF4DlHƆdc4ڬ-HÿEm8u_UV$s@'݃ҒʨV.dc”(Nj  Vle7hpbA>&l%RoHrځ9 \z9<]˩'dPJ CsotB8Vw-Lw})gؾrt8 %Nxn[,]@#C^VʪPt`m\[k ڠV]4&FW$: uM&# zf7Y:$A^nK’fl=>ɁRl9'ɷlj}LliSadr¸ij s4+Kw~检̭j@4q^MÈxALDkZ;=#U{ )1qzNJT@|ʤj֓ }*~mR6hPJDgRJkJiy8"Cv@BZQp2hʄ6q_G->di>Γ}@U>[rHXDUYvmΘT# 9ha*c& Z~}[}DnAKYr_$ fma"2喯2)9z l%i4fВyuGx鏾P<߫z7_Ds߽=w i#`.H7 ze"$qɟ? =S?==ތGʮs!|3r]>; K °l>,O?kx>γχ!-|0'w%Qt=b|w/L{~˿ Ԁ^͛?|ۇӛǛoo7oa67n_on?ܞ~l_ou/: endstream endobj 25 0 obj <> endobj xref 0 31 0000000003 65535 f +0000000016 00000 n +0000012190 00000 n +0000000004 00001 f +0000000011 00000 f +0000012647 00000 n +0000059418 00000 n +0000059490 00000 n +0000059661 00000 n +0000060676 00000 n +0000063934 00000 n +0000000000 00001 f +0000012615 00000 n +0000012241 00000 n +0000012499 00000 n +0000012530 00000 n +0000012312 00000 n +0000012383 00000 n +0000012414 00000 n +0000016172 00000 n +0000016652 00000 n +0000016714 00000 n +0000017063 00000 n +0000016285 00000 n +0000013058 00000 n +0000090956 00000 n +0000017310 00000 n +0000058857 00000 n +0000058905 00000 n +0000015938 00000 n +0000000162 00000 n +trailer <]>> startxref 91133 %%EOF \ No newline at end of file diff --git a/doc/logo/mdl-dart-logo.png b/doc/logo/mdl-dart-logo.png new file mode 100644 index 0000000..8006c98 Binary files /dev/null and b/doc/logo/mdl-dart-logo.png differ diff --git a/doc/logo/mdl-dart-logo.svg b/doc/logo/mdl-dart-logo.svg new file mode 100644 index 0000000..f59b3f6 --- /dev/null +++ b/doc/logo/mdl-dart-logo.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + Material Design Lite + + + + + + + + + + + diff --git a/doc/mdl/mdlflux/mdlFlux.eps b/doc/mdl/mdlflux/mdlFlux.eps new file mode 100644 index 0000000..1972bdc --- /dev/null +++ b/doc/mdl/mdlflux/mdlFlux.eps @@ -0,0 +1,7890 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%HiResBoundingBox: 0.000000 0.000000 824.000000 551.000000 +%APL_DSC_Encoding: UTF8 +%APLProducer: (Version 10.9.5 (Build 13F1507) Quartz PS Context) +%%Title: (Unknown) +%%Creator: (Unknown) +%%CreationDate: (Unknown) +%%For: (Unknown) +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%Pages: 1 +%%BoundingBox: 0 0 824 551 +%%EndComments +%%BeginProlog +%%BeginFile: cg-pdf.ps +%%Copyright: Copyright 2000-2004 Apple Computer Incorporated. +%%Copyright: All Rights Reserved. +currentpacking true setpacking +/cg_md 141 dict def +cg_md begin +/L3? languagelevel 3 ge def +/bd{bind def}bind def +/ld{load def}bd +/xs{exch store}bd +/xd{exch def}bd +/cmmtx matrix def +mark +/sc/setcolor +/scs/setcolorspace +/dr/defineresource +/fr/findresource +/T/true +/F/false +/d/setdash +/w/setlinewidth +/J/setlinecap +/j/setlinejoin +/M/setmiterlimit +/i/setflat +/rc/rectclip +/rf/rectfill +/rs/rectstroke +/f/fill +/f*/eofill +/sf/selectfont +/s/show +/xS/xshow +/yS/yshow +/xyS/xyshow +/S/stroke +/m/moveto +/l/lineto +/c/curveto +/h/closepath +/n/newpath +/q/gsave +/Q/grestore +counttomark 2 idiv +{ld}repeat pop +/SC{ + /ColorSpace fr scs +}bd +/sopr /setoverprint where{pop/setoverprint}{/pop}ifelse ld +/soprm /setoverprintmode where{pop/setoverprintmode}{/pop}ifelse ld +/cgmtx matrix def +/sdmtx{cgmtx currentmatrix pop}bd +/CM {cgmtx setmatrix}bd +/cm {cmmtx astore CM concat}bd +/W{clip newpath}bd +/W*{eoclip newpath}bd +statusdict begin product end dup (HP) anchorsearch{ + pop pop pop + true +}{ + pop + (hp) anchorsearch{ + pop pop true + }{ + pop false + }ifelse +}ifelse +{ + { + { + pop pop + (0)dup 0 4 -1 roll put + F charpath + }cshow + } +}{ + {F charpath} +}ifelse +/cply exch bd +/cps {cply stroke}bd +/pgsave 0 def +/bp{/pgsave save store}bd +/ep{pgsave restore showpage}def +/re{4 2 roll m 1 index 0 rlineto 0 exch rlineto neg 0 rlineto h}bd +/scrdict 10 dict def +/scrmtx matrix def +/patarray 0 def +/createpat{patarray 3 1 roll put}bd +/makepat{ +scrmtx astore pop +gsave +initgraphics +CM +patarray exch get +scrmtx +makepattern +grestore +setpattern +}bd +/cg_BeginEPSF{ + userdict save/cg_b4_Inc_state exch put + userdict/cg_endepsf/cg_EndEPSF load put + count userdict/cg_op_count 3 -1 roll put + countdictstack dup array dictstack userdict/cg_dict_array 3 -1 roll put + 3 sub{end}repeat + /showpage {} def + 0 setgray 0 setlinecap 1 setlinewidth 0 setlinejoin + 10 setmiterlimit [] 0 setdash newpath + false setstrokeadjust false setoverprint +}bd +/cg_EndEPSF{ + countdictstack 3 sub { end } repeat + cg_dict_array 3 1 index length 3 sub getinterval + {begin}forall + count userdict/cg_op_count get sub{pop}repeat + userdict/cg_b4_Inc_state get restore + F setpacking +}bd +/cg_biproc{currentfile/RunLengthDecode filter}bd +/cg_aiproc{currentfile/ASCII85Decode filter/RunLengthDecode filter}bd +/ImageDataSource 0 def +L3?{ + /cg_mibiproc{pop pop/ImageDataSource{cg_biproc}def}bd + /cg_miaiproc{pop pop/ImageDataSource{cg_aiproc}def}bd +}{ + /ImageBandMask 0 def + /ImageBandData 0 def + /cg_mibiproc{ + string/ImageBandMask xs + string/ImageBandData xs + /ImageDataSource{[currentfile/RunLengthDecode filter dup ImageBandMask/readstring cvx + /pop cvx dup ImageBandData/readstring cvx/pop cvx]cvx bind}bd + }bd + /cg_miaiproc{ + string/ImageBandMask xs + string/ImageBandData xs + /ImageDataSource{[currentfile/ASCII85Decode filter/RunLengthDecode filter + dup ImageBandMask/readstring cvx + /pop cvx dup ImageBandData/readstring cvx/pop cvx]cvx bind}bd + }bd +}ifelse +/imsave 0 def +/BI{save/imsave xd mark}bd +/EI{imsave restore}bd +/ID{ +counttomark 2 idiv +dup 2 add +dict begin +{def} repeat +pop +/ImageType 1 def +/ImageMatrix[Width 0 0 Height neg 0 Height]def +currentdict dup/ImageMask known{ImageMask}{F}ifelse exch +L3?{ + dup/MaskedImage known + { + pop + << + /ImageType 3 + /InterleaveType 2 + /DataDict currentdict + /MaskDict + << /ImageType 1 + /Width Width + /Height Height + /ImageMatrix ImageMatrix + /BitsPerComponent 1 + /Decode [0 1] + currentdict/Interpolate known + {/Interpolate Interpolate}if + >> + >> + }if +}if +exch +{imagemask}{image}ifelse +end +}bd +/cguidfix{statusdict begin mark version end +{cvr}stopped{cleartomark 0}{exch pop}ifelse +2012 lt{dup findfont dup length dict begin +{1 index/FID ne 2 index/UniqueID ne and +{def} {pop pop} ifelse}forall +currentdict end definefont pop +}{pop}ifelse +}bd +/t_array 0 def +/t_i 0 def +/t_c 1 string def +/x_proc{ + exch t_array t_i get add exch moveto + /t_i t_i 1 add store +}bd +/y_proc{ + t_array t_i get add moveto + /t_i t_i 1 add store +}bd +/xy_proc{ + + t_array t_i 2 copy 1 add get 3 1 roll get + 4 -1 roll add 3 1 roll add moveto + /t_i t_i 2 add store +}bd +/sop 0 def +/cp_proc/x_proc ld +/base_charpath +{ + /t_array xs + /t_i 0 def + { + t_c 0 3 -1 roll put + currentpoint + t_c cply sop + cp_proc + }forall + /t_array 0 def +}bd +/sop/stroke ld +/nop{}def +/xsp/base_charpath ld +/ysp{/cp_proc/y_proc ld base_charpath/cp_proc/x_proc ld}bd +/xysp{/cp_proc/xy_proc ld base_charpath/cp_proc/x_proc ld}bd +/xmp{/sop/nop ld /cp_proc/x_proc ld base_charpath/sop/stroke ld}bd +/ymp{/sop/nop ld /cp_proc/y_proc ld base_charpath/sop/stroke ld}bd +/xymp{/sop/nop ld /cp_proc/xy_proc ld base_charpath/sop/stroke ld}bd +/refnt{ +findfont dup length dict copy dup +/Encoding 4 -1 roll put +definefont pop +}bd +/renmfont{ +findfont dup length dict copy definefont pop +}bd +L3? dup dup{save exch}if +/Range 0 def +/DataSource 0 def +/val 0 def +/nRange 0 def +/mulRange 0 def +/d0 0 def +/r0 0 def +/di 0 def +/ri 0 def +/a0 0 def +/a1 0 def +/r1 0 def +/r2 0 def +/dx 0 def +/Nsteps 0 def +/sh3tp 0 def +/ymax 0 def +/ymin 0 def +/xmax 0 def +/xmin 0 def +/setupFunEval +{ + begin + /nRange Range length 2 idiv store + /mulRange + + [ + 0 1 nRange 1 sub + { + 2 mul/nDim2 xd + Range nDim2 get + Range nDim2 1 add get + 1 index sub + + 255 div + exch + }for + ]store + end +}bd +/FunEval +{ + begin + + nRange mul /val xd + + 0 1 nRange 1 sub + { + dup 2 mul/nDim2 xd + val + add DataSource exch get + mulRange nDim2 get mul + mulRange nDim2 1 add get + add + }for + end +}bd +/max +{ + 2 copy lt + {exch pop}{pop}ifelse +}bd +/sh2 +{ + /Coords load aload pop + 3 index 3 index translate + + 3 -1 roll sub + 3 1 roll exch + sub + 2 copy + dup mul exch dup mul add sqrt + dup + scale + atan + + rotate + + /Function load setupFunEval + + + clippath {pathbbox}stopped {0 0 0 0}if newpath + /ymax xs + /xmax xs + /ymin xs + /xmin xs + currentdict/Extend known + { + /Extend load 0 get + { + 0/Function load FunEval sc + xmin ymin xmin abs ymax ymin sub rectfill + }if + }if + + /Nsteps/Function load/Size get 0 get 1 sub store + /dx 1 Nsteps div store + gsave + /di ymax ymin sub store + /Function load + + 0 1 Nsteps + { + 1 index FunEval sc + 0 ymin dx di rectfill + dx 0 translate + }for + pop + grestore + currentdict/Extend known + { + /Extend load 1 get + { + Nsteps/Function load FunEval sc + 1 ymin xmax 1 sub abs ymax ymin sub rectfill + }if + }if +}bd +/shp +{ + 4 copy + + dup 0 gt{ + 0 exch a1 a0 arc + }{ + pop 0 moveto + }ifelse + dup 0 gt{ + 0 exch a0 a1 arcn + }{ + pop 0 lineto + }ifelse + + fill + + dup 0 gt{ + 0 exch a0 a1 arc + }{ + pop 0 moveto + }ifelse + dup 0 gt{ + 0 exch a1 a0 arcn + }{ + pop 0 lineto + }ifelse + + fill +}bd +/calcmaxs +{ + + xmin dup mul ymin dup mul add sqrt + xmax dup mul ymin dup mul add sqrt + xmin dup mul ymax dup mul add sqrt + xmax dup mul ymax dup mul add sqrt + max max max +}bd +/sh3 +{ + /Coords load aload pop + 5 index 5 index translate + 3 -1 roll 6 -1 roll sub + 3 -1 roll 5 -1 roll sub + 2 copy dup mul exch dup mul add sqrt + /dx xs + 2 copy 0 ne exch 0 ne or + { + + exch atan rotate + }{ + pop pop + }ifelse + + /r2 xs + /r1 xs + /Function load + dup/Size get 0 get 1 sub + /Nsteps xs + setupFunEval + + + + + + dx r2 add r1 lt{ + + 0 + }{ + dx r1 add r2 le + { + 1 + }{ + r1 r2 eq + { + 2 + }{ + 3 + }ifelse + }ifelse + }ifelse + /sh3tp xs + clippath {pathbbox}stopped {0 0 0 0}if + newpath + /ymax xs + /xmax xs + /ymin xs + /xmin xs + + dx dup mul r2 r1 sub dup mul sub dup 0 gt + { + sqrt r2 r1 sub atan + /a0 exch 180 exch sub store + /a1 a0 neg store + }{ + pop + /a0 0 store + /a1 360 store + }ifelse + currentdict/Extend known + { + /Extend load 0 get r1 0 gt and + { + 0/Function load FunEval sc + + + + + { + { + dx 0 r1 360 0 arcn + xmin ymin moveto + xmax ymin lineto + xmax ymax lineto + xmin ymax lineto + xmin ymin lineto + eofill + } + { + r1 0 gt{0 0 r1 0 360 arc fill}if + } + { + + + + + 0 r1 xmin abs r1 add neg r1 shp + } + { + + + r2 r1 gt{ + + 0 r1 + r1 neg r2 r1 sub div dx mul + 0 + shp + }{ + + + + 0 r1 calcmaxs + dup + + r2 add dx mul dx r1 r2 sub sub div + neg + exch 1 index + abs exch sub + shp + }ifelse + } + }sh3tp get exec + }if + }if + + /d0 0 store + /r0 r1 store + /di dx Nsteps div store + /ri r2 r1 sub Nsteps div store + /Function load + 0 1 Nsteps + { + 1 index FunEval sc + d0 di add r0 ri add d0 r0 shp + { + + d0 0 r0 a1 a0 arc + d0 di add 0 r0 ri add a0 a1 arcn + fill + + + d0 0 r0 a0 a1 arc + d0 di add 0 r0 ri add a1 a0 arcn + fill + }pop + + + /d0 d0 di add store + /r0 r0 ri add store + }for + pop + + currentdict/Extend known + { + /Extend load 1 get r2 0 gt and + { + Nsteps/Function load FunEval sc + + + + + { + { + dx 0 r2 0 360 arc fill + } + { + dx 0 r2 360 0 arcn + xmin ymin moveto + xmax ymin lineto + xmax ymax lineto + xmin ymax lineto + xmin ymin lineto + eofill + } + { + + + xmax abs r1 add r1 dx r1 shp + } + { + + r2 r1 gt{ + + + + calcmaxs dup + + r1 add dx mul dx r2 r1 sub sub div + exch 1 index + exch sub + dx r2 + shp + }{ + + r1 neg r2 r1 sub div dx mul + 0 + dx + r2 + shp + }ifelse + } + } + sh3tp get exec + }if + }if +}bd +/sh +{ + begin + /ShadingType load dup dup 2 eq exch 3 eq or + { + gsave + newpath + /ColorSpace load scs + currentdict/BBox known + { + /BBox load aload pop + 2 index sub + 3 index + 3 -1 roll exch sub + exch rectclip + }if + 2 eq + {sh2}{sh3}ifelse + grestore + }{ + + pop + (DEBUG: shading type unimplemented\n)print flush + }ifelse + end +}bd +{restore}if not dup{save exch}if + L3?{ + /sh/shfill ld + /csq/clipsave ld + /csQ/cliprestore ld + }if +{restore}if +end +setpacking +%%EndFile +%%EndProlog +%%BeginSetup +%%EndSetup +%%Page: 1 1 +%%PageBoundingBox: 0 0 824 551 +%%BeginPageSetup +cg_md begin +bp +sdmtx +%RBIBeginFontSubset: Monaco +%!FontType1-1.0: Monaco 1.0000.2.0000 + 14 dict begin/FontName /Monaco def + /PaintType 0 def + /Encoding 256 array 0 1 255{1 index exch/.notdef put}for + dup 33 /A put + dup 34 /c put + dup 35 /t put + dup 36 /i put + dup 37 /o put + dup 38 /n put + dup 39 /D put + dup 40 /s put + dup 41 /p put + dup 42 /a put + dup 43 /h put + dup 44 /e put + dup 45 /r put + dup 46 /S put + dup 47 /V put + dup 48 /w put + readonly def + 42/FontType resourcestatus{pop pop false}{true}ifelse + %APLsfntBegin + {currentfile 0(%APLsfntEnd\n)/SubFileDecode filter flushfile}if + /FontType 42 def + /FontMatrix matrix def + /FontBBox[2048 -1249 1 index div -862 2 index div 1647 3 index div 2504 5 -1 roll div]cvx def + /sfnts [< + 74727565000900000000000063767420000000000000009C000003F66670676D000000000000049400000518676C796600000000000009AC00001104686561640000000000001AB000000036686865610000000000001AE800000024686D74780000000000001B0C000000486C6F63610000000000001B54000000266D6178700000000000001B7C00000020707265700000000000001B9C0000053E064E001F0610002F0610002E045D001F0000FFD10000FFE10000FFD1FE4EFFE1066D0000FE8C0000026D001700BE000000BE0000000000000000009B00BA00BA0047007C007C009B00CA009B009B009B00BA00B3016A01C2FFB800CA009B043E009100F801B300CA00020076FFFF004800B4009B00AB0021002E007E0114000F00C2011F009B009C021F00100021007E009B014901B1FE44000B00380057020DFF71003E00C900C903CE0021005D007D008D0095009D00AC011101400146019001C6FF4C00BA00BC017101D104CAFFA90002001F002F00470099009B00BA00C20146014F01710008001F002E004A005D009701B80374048CFF63FF82FF8AFFD00014001F004F005D006A007C007E009B009B00B400D300D9020A02CA03A303CAFEB5FEE3FF53FF73FF7EFFB8FFE0FFE0FFE000480074007D008D0094009900A300B600BA00BA00C900E200F8019801F1036503AB04460452FF2DFF67FF82FFFF00010020002D003E00470055005600720075007A009900BA00DB00E300F800FA011F0127012E01430155017A019001D7021F0241024D0327034603B203CA041F042F0465047B066DFDE0FE73FF0EFFB000050033004800540065006F007D007E007F0091009B00AB00BA00F8010001110117012A0155015801A301A901E902000217022C02300249024E0265026D02F90314035403550361048C07B2FE29FE9DFEF8FF07FF47FF99FFA1000100020004000800080019001E0027002900300036003F0048004F00550056005F00630066006C00740076008500940098009900BC00BC00C100C100CB00CB00CD00D000DB00F000F200F800F900FA01080111011F0127012E01360143015701630175018001B201BB01C701D101D501E301E901F8024B029802AB02BC02F00308036C0374038C03AB03CA03D903E103E103F803FC041F041F042704560551FC05FE98FEC8FEEFFFC1FFD0002800300067006D0084009300A900B400BA00C500C600D100D200E200EA00F000F000F50103010F011001110118011F0133013401380138013F014A015601590168016D0175017C01810194019B01B201B201CA01D101F102050218024A028C029402AA02DA02E103080327033F03460346038C03A303FB041F043E043E043F0465046D0484048A04A404CA057405EC0610078407E100BE00CA00BD00C200000000000000000000000000AB00A3 + 07C20084009D009B00B200D000AB009A007A00BB00AB00BA006C00AB04C600ED011F011F0172011C0146023600DB0120006E021A018B01C4014E022202A301A901E901780308021F0000000000CA00B801CD025D059C00FA026D014F0202014F01D1021E00AB0485007C00A3FBE7FC9B0324FCDBFE840382FC50FD9B050800200079008B00DD0392041F00AC00820030002A0000403231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A191817161514131211100F0E0D0C0B0A090807060504030201002C4523466020B02660B004262348482D2C452346236120B02661B004262348482D2C45234660B0206120B04660B004262348482D2C4523462361B0206020B02661B02061B004262348482D2C45234660B0406120B06660B004262348482D2C4523462361B0406020B02661B04061B004262348482D2C0110203C003C2D2C20452320B0CD442320B8015A51582320B08D44235920B0ED51582320B04D44235920B0042651582320B00D44235921212D2C20204518684420B001602045B04676688A4560442D2C01B9400000000A2D2C00B9000040000B2D2C2045B00043617D6818B0004360442D2C45B01A234445B01923442D2C2045B00325456164B050515845441B2121592D2CB00143632362B0002342B00F2B2D2C2045B0004360442D2C01B00743B006430A2D2C2069B04061B0008B20B12CC08A8CB8100062602B0C642364615C58B00361592D2C45B0112BB0172344B0177AE4182D2CB801A65458B00943B801005458B9001AFF80B11980444459592D2C45B0112BB017458CB0172344B0177AE5182D2CB002254661658A46B040608B482D2CB0022546608A46B040618C482D2C01182F2D2C20B0032545B019234445B01A23444565234520B00325606A20B009234223688A6A606120B01A8AB000527921B21A1A40B9FFE0001A45208A54582321B03F1B235961441CB114008A5279B31940201945208A54582321B03F1B235961442D2CB9187E3B210B2D2CB92D412D410B2D2CB93B21187E0B2D2CB93B21E7830B2D2CB92D41D2C00B2D2CB9187EC4E00B2D2C4B525845441B2121592D2C0120B003252349B04060B0206320B000525823B002253823B002256538008A63381B212121212159012D2C4569B00943608A103A2D2C01B005251023208AF500B0016023EDEC2D2C01B005251023208AF500B0016123EDEC2D2C01B0062510F500EDEC2D2C20B001600110203C003C2D2C20B001610110203C003C2D2CB02B2BB02A2A2D2C00B0064365B007430B2D2C3EB02A2A2D2C352D2C76B01B23701020B01B4520B0005058B00161593A2F182D2C21210C6423648BB84000622D2C21B08051580C6423648BB82000621BB200402F2B59B002602D2C21B0C051580C6423648BB81555621BB200802F2B59B002602D2C0C64 + 23648BB84000626023212D2CB4000100000015B00826B00826B00826B008260F10161345683AB001162D2CB4000100000015B00826B00826B00826B008260F1016134568653AB001162DB800322C4BB800095058B101018E59B801FF85B800441DB9000900035F5E2DB800332C2020456944B001602DB800342CB800332A212DB800352C2046B003254652582359208A208A49648A204620686164B004254620686164525823658A592F20B00053586920B000545821B040591B6920B000545821B0406559593A2DB800362C2046B00425465258238A592046206A6164B0042546206A61645258238A592FFD2DB800372C4B20B0032650585158B080441BB04044591B21212045B0C05058B0C0441B2159592DB800382C2020456944B001602020457D691844B001602DB800392CB800382A2DB8003A2C4B20B003265358B0801BB040598A8A20B0032653582321B0C08A8A1B8A235920B0032653582321B801008A8A1B8A235920B0032653582321B801408A8A1B8A235920B80003265358B0032545B8018050582321B8018023211BB003254523212321591B2159442DB8003B2C4B535845441B2121592D000200930000036D0610000300070045400907061D0104051D0302B801A340120000010A04071D03001A0905061D02011908BA012C010100182B4E10F43C4DFD3C4E10F63C4DFD3C003F3C10FD3CFD3C10FD3C31302901112107211121036DFD2602DA96FE5201AE061096FB1C00000000020021000004AD06100007000C0136409806000905022F0B8F0A8F0B8F0C9F0A9F0B9F0CBF0ABF0BBF0C0A280329042F0A260C67006701680267036A0488068507840889098A0A95009A0595089A09990A960CAB02A503C806C607D600D905E500EA05F500F701F904F80520070803030006090B0B0005050207080C0B0006090A0B0B0507080200060905A60B020320030B05052412040403020B000029120101020B080302020607B801B0403D091F080108EE010504040101000800020103050B043B046B047B04AB04BB040604F10B0B3B0B6B0B7B0BAB0BBB0B060BF1CF01EF01020119470D3B96182B194E1076F45D184DFD5DED5D183939123939003F3C103C103C10FD5D3CFD3C3F3C123987052E2B877DC4872E182B877DC42B1139391112393987100EC4053C3C870EC405C4C4871008C4053CC48710C4C43130015D005D017133230133012303213721032707E3C201DECD01E1D56AFDDE3001C5BB2C270610F9F001559B024D9C9C000002009B0000047C0610000A00150073402FC30FDE05D107EF05E307E30EEF12070304018B0E8B12022B080CE3001548010200081033069517150B2401003D17162FC4F53CFD3C10F5ED003F3FED10ED31304379401E031308260E25042512260D09102B011303102B010F070C2B001105142B01 + 2B2B012B2B2B2B2B2B81015D00715D3311213216121514020623273332361235342E012B019B0170FEF77C83F0FEA687CDAF4B58A4BB970610B1FE9AF5E8FEA1BDAB920103E4DFF0810000000001009DFFD1044F063E002600CF40834C0D4C185A18650F7A0D741F7020870CA508C826EA260B080F081007220723261B25204B0459055A0D661B6620BD10B223DB100E0B0505170923030B0C0C0A1D1E1F1C200A030D161C1F1F24120A0A0C1F1C0C0A04160314E340136A121639110301E340006A12033924091F1C0C0A04071914830733211A2819330E3F0019275A7D182B4E10F44DF4ED4E10F64DEDE411121739003FED4B5258B0001A59FC1AED3FED4B5258B0001A59FC1AED11121739870E2E2B7D10C4001139111239070E3C3C07100E3C313001715D005D37351633323E013534262F022435343621321715262322061514161F03161514002122269DF0C452964D6A926667FEF0F30102A69BABA2819F7A5F4E6152FFFEFAFEDF5CA721BE723F7645518D553B3BA1EFAFEF30AD4288605F7E352F3B309CECB4FEFE1F000000010021000004AD0610000800C64024B307D307E70803280027022A032705270628087900770508070700050502080700060705B8FF5A40600703022000010202291207070005040303241207070507030504040101000203020803050400020B012B013B017B01AB01BB01EB010701F10B072B073B077B07AB07BB07EB070707F104041004240434047404A404B404E404080419093B96182B194E10F45D184DFD5DED5D3939123939003F3C3F3C103C103C123987052E2B877DC4872E182B877DC42B870EC4870EC4871008C43130015D005D01330123013301173703EBC2FE22CDFE1FD501512C270610F9F00610FBC49E9D00020066FFE1045E046D0014002000E3405CC615E507F40703008904A91ABE09DA1F040D09011F401E0325081516181E0B161B0000011012121F121313000010181E0F4518230B0A0713120A1E3A030B0013161222121369161F100F75701201121A221B2D7006010619214E7E182B4E10F45D4DED4E10F65D4DF43CFDE4111239111239003FED3F3C3F3CEDE41112393987052E2B87087DC40111123900111239393130184379401A191D040908261D041B310019091B2A001C051E31001A07182A012B2B012B2B2B81810049547940121F20010220011E4A041F02154A012015010001103C103C2B002B818101715D00715D250E01232226353412363332171617331114172326031126232202151416333236037955EF648CDF94F8B7356B1020BB2AC2160D6355ACE57D5057D2FB8C8EF2F6C20131B10B0203FCEBCA7E5C017C01DF1AFEF6E5A6A9B000000100A4FFE10447047C0018009D404E640B740B9418AB00A50BBB1806B604B208B210B613B414CC03CC08DB03DB0809 + 05080128080C180E150CA10B0B0E23090718A10000153A020B0B0C700001001A1A122D2F06BF06020619192E50182B4E10F45D4DED4E10F65D3939003F4DED3910ED3FFD3910ED1112393931304379401C0F140308042510251403122A000F08122A001305152A0011070E2A012B2B012B2B2B2B818101715D005D250623222402353400333217152623220E01151412333236370447BBA9A8FEFB92014BEAADC1C39A66B462BDCA3D769F203F9B0109A9FE015041B35965D67197FEEE11360000020082FFE0044C047C0015001D00B7404F46155515BA0C03871DA404A408A90CB504B508B511CA16DB0B0905040139080002151316180F0E1F0C1716470E0F0F021B230A071323020B18A11545700C010C1A1F0FA12F063F060206191E357E182B4E10F45D4DED4E10F65D4DE4ED003FED3FED12392F3CFD3C011112391112390012391139313043794029191D031211260425082612030F2A001A0B1831011C09162A001D1005132A00190C1B31011D071B2A012B2B2B013C2B2B2B2B2B2B818101715D005D25062322260235341236333212111521141E013332370121353426232206043CDFC797EE8F88F496C7F1FCFE619E65B4DAFD19022D867071A54A6A9601179F99011A9DFEE4FED82874C0607801A71B89A2A50000000001009B0000043E064E001700944030C407011F4006131F080316170100133A0607170E0A0F0E1F0C0D0D700B900B020B1A1902171F012F00010019182E50182B4E10F45D3C4DFD3C4E10F65D3C103C4DFD3C003F3C3FED3F11393931304379401607120A0B090B080B0306112612070F3101100B1331012B012B2B2A81004954794012141504051504134A051405164A001516040301103C103C2B002B8181015D331133113E01333216171E0115112311342E0123220607119BBA50E2715F9D1F1912BA1F533162E149064EFD1B819261453577BAFD900287A16742BA8CFD750000000002009E000003C5066D00070013003E401311E50B0101022604030606052607000A08E50EB801F1400C06E8051F02E800191465C9182B4E10F44DE4FDE4F4FD003F3CFD3C3F3CFD3C3FED313001211121352111211501343633321615140623222601D4FECA01F00137FDF0562627565627265603C29BFC3E9B05F03F3E3E3F3E3E3E000001009B0000043E047C0015008F4030C407011F4006111908031415113A06070106150C0A0D0C1F0A0B0B7009900902091A1702151F012F00010019162E50182B4E10F45D3C4DFD3C4E10F65D3C103C4DFD3C003F3C3F3FED113939313043794010071008250F2610070D31010E091131012B012B2B2B81004954794012121304051304114A051205144A001314040301103C103C2B002B8181015D00331133153E0133321E0115112311342E0123220607119BBA50E27163A241BA + 1F533162E149045DF4819269AAF9FD900287A16742BA8CFD7500000000020057FFE10476047C000B001700A9405796029A049A08960A04C601C602C604C605C907C908C90AC90BC90DC90EC910C911C613C614C616C617ED01ED05E407E40BFC01FC05F307F30B183708122306070C23000B0F2D700901091A19152D7003010319184E67182B4E10F45D4DED4E10F65D4DED003FED3FED31304379402A01170D0B0F2A011701152A0011070F2A011305152A000E0A0C2A0016020C2A001008122A011404122A012B2B2B2B012B2B2B2B81015D005D0522003534003332001514002732363534262322061514160267F0FEE00120F0EF0120FEE0EF95B0B09596B0B01F014FFFFF014EFEB2FFFFFEB19BE8CBCAE8E8CACBE80002008DFE4E045B047C0012001E00C44051B409C009D102D41D048A058118AC18D218EB05EC07E617FB07081F40031C2508141300031C161314190F0E450A1C3A0307110616230A0B100E192D700601061A20120F1F10102F11A0110211191F2E7E182B4E10F45D3C4D10FD3C4E10F65D4DED003F3FED3F3FED10E40111123939001112173931304379401A171B040908261709192A011B041931011807162A001A051C31012B2B012B2B2B81810049547940121D1E01021E011C4A051D02134A001E13010001103C103C2B002B8181005D015D013E0133321615140206232227262711231133190116333212353426232206014756EE648CE095F8B7346C1020BABA6555A9E77E5057D103628C8EF2F6C2FECFB10B0203FE4E060FFE28FE211A0109E6A7A8B000000100FA00000440047C00110073402B1F40060D1000030B0D0A0806020A0A00020D3A06070206000A0B0A1F0909081A1302111F01001912BF50182B4E10F43C4DFD3C4E10F63C4D10FD3C003F3F3FED1112392F11123911123939123931300049547940120E0F04050F040D4A050E05104A000F10040301103C103C2B002B8181331133153E01333217112335262322060711FABA57E18A6565B32F1B68C85F045DF48A891FFE6DFF08A4A4FD770000000100A8FFE10434047C0029015840B102222F002F012F022F293B093B0A361E361F642264236424780F7810732173227323732493139A27AB27BA12B813B429D409D40AE509E50AF409F40A1E0309030A090F0910091D091E0601010F160F171A002B00281628173C004B00452045215B00542054216C00690B690D690E690F651F65207A00790B790C790D790E79177918751F75208A009A00AC00B920B921C60DD60CD60D264A08221F0E0A0419040E110A1F1C2207179E5F16751923140701B8011C400A04000423280B17B54707B801B6B6702501251A2B1CB801B6400B2F1101116900192A2EAD182B4E10F44DF45DED4E10F65D4DED76E418003FED3910E43FEDFC1AED011139123939113900 + 111217393130437940341A2705131A131C3000052707300109230730011E0F1C30001B12193001062604300008240A30012322090A1D101F30001E1F0F0E103C103C2B103C103C2B2B2B012B2B2B2B8181005D01715D37351E01333236353427262F022627263534363332171526232206151417161F011617161514062322A870FA578D7C1D1D734081D03637D5EFB3A0B8A276853A39817EAD4646DFF5D63BC5493B5B442D20202F1A33514544628AB234A942533E3C24242F2E3F4A4A6F91BB00000000010060FFE1044105C20018007C40138A0087059A009505AA0005190800031809160DB80139B50A1009260F0AB80197400A1623030B006920100110B80186400F0D121F0C07E81F09010919194E50182B4E10F45D4DF43CFD3CF45DE4003FEDFD3CFD3C10E41112391239313043794010041514260525150412310013061631002B012B2B2B8101005D250E0123222E01351121352111331121152111141E01333237044183763775C263FEE90117BA01F1FE0F406B4987952D37155AB0B801C29B01C2FE3E9BFE41876F345500000000010014000004B8045D001300CF409D000F0010001100120407000904090F0912190A190D1B122609290D280E390D4A0D5A0D660163026C0B680C750172027B0B790C850085019806960FC50FEA05EA06E60EE60FF905F906F70EF70F22080E080F46024603D60AD70BDA0C0704110910040D0C0206070B0C050106130E0D03000A10090410110607090D0E0400136F0C7F0C020CE40E1F0D70071F0670240C01131F476F007F000200E4011410D6F45D76ED5DFCFDFDED18FD5D11123911123911123939192F2F3D2F18003F173C3F173C11121739313001715D005D3303331317371333131737133303230327230703CAB6AD6A1C1BB2A7C923176B8FB5AED622051FBA045DFD589E9E02A8FD589E9E02A8FBA302CF9E9DFD30000001000000020000B6BFC4065F0F3CF501110800000000005EE2C58000000000CD9E1534FB1FFCA2066F09C8000000090001000000000000000100000800FE0000AB04DAFB1FFD74066F00010000000000000000000000000000001204CD009304CD002104CD009B04CD009D04CD002104CD006604CD00A404CD008204CD009B04CD009E04CD009B04CD005704CD008D04CD00FA04CD00A804CD006004CD0014040000000000003800F0015001F2026C0312038A0418048A04CC053805B6064A06A2078C07F40882088200000001000000120070000C004E0005000200100010003C000007E8053E00030001B800322B40212F4E7F4EAF2EAF67042F6B2F95306BCF6BCF95F06B062F3D303DCF3DD03DF03D05B8016AB22D361FBD01F501F60021001F01F401E4B2221F50411B0173000100F00173000100600174007001740080017400E00174000400200174009001 + 7400F0017400030050017400B00174000201F1401708321F5108151F0D0B331F0706331F0908311F0302311FB801C3B624191FC024191FB8012FB224191FB801C2B224191F410D01BF01BB0081001F01BD01BB0801001F01BC01BB0081001F01BBB23A811FBC01BA01B90052001F01B9B21F351FB801B8B226811FB801B7B23A381FBC01B6001F0101001F01B5B21F431FBC01B301B40052001F01B4B2242E1FB801B1B224351FB801B0B427811F0840BB01A600000009016AB22D361FB8012AB22D2D1F410B012200620125001F012100620125001F011E00230401B61FE51F231FE33AB80401401B1FE0234A1FBE2D2D1FB9233F1FB823361FA52D2D1FA42DAB1FA352B80401B21FA262B80401B21FA162B80401B21F9F23B80101B21F9E23B80401B61F9B23451F8723B80401B61F85233B1F6E62B80401B21F6362B80401B21F5352B80401B21F4823B80401B61F4723471F4323B80801B21F4223B80401B21F2962B80125B21F2862B80401B21F2623B80401B21F2523B80401400B1F2223431F2123431F1D23B80401403B1F5518091809907707906007904F07904007903E07903107903007902B07902A07901E071408120810080E080C080A080808060804080208000814B8FFE0402B00000100140610000001000604000001000410000001001002000001000200000001000002010802004A00B214201445604418B9000101FF858D16763F183F123E113946443E113946443E113946443E113946443E11394660443E11394660442B2B2B2B2B2B2B2B2B2B2B182B2B2B2B2B2B2B2B2B2B014B5079BC001F016C0007001F010DB6071FE9071F4A072B2B2B2B4B5379BC0090016C00070090010DB60790E907904A072B2B2B2B181DB0964B5358B0AA1D59B0324B5358B0FF1D594BB09E53205C58B901A801A64544B901A701A645445958B903A401A8455258B901A803A44459594BB09E53205C58B9001F01A84544B9002D01A845445958B9039F001F455258B9001F039F4459594BB8040153205C58B9002401A74544B9003301A745445958B919400024455258B9002419404459594BB8040153205C58B1621F4544B11F1F45445958B917400062455258B9006217404459594BB8080153205C58B1522D4544B12D2D45445958B932800052455258B9005232804459594BB06153205C58B123234544B13A2345445958B901D10023455258B9002301D14459594BB8030153205C58B123234544B1272345445958B90E880023455258B900230E884459594BB8030153205C58B123234544B1392345445958B90E880023455258B900230E884459592B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B6542B33D7D6B95456523456023456560234560B08B766818B080622020B16B7D4565234520B003 + 266062636820B003266165B07D236544B06B234420B13D954565234520B003266062636820B003266165B095236544B03D2344B10095455458B195406544B23D403D4523614459B32E504E67456523456023456560234560B089766818B080622020B14E504565234520B003266062636820B003266165B050236544B04E234420B12E674565234520B003266062636820B003266165B067236544B02E2344B10067455458B167406544B22E402E4523614459456953422B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B73747573742B2B2B7373730000 + 00>] def + /CharStrings 18 dict dup begin + /.notdef 0 def +/A 1 def +/D 2 def +/S 3 def +/V 4 def +/a 5 def +/c 6 def +/e 7 def +/h 8 def +/i 9 def +/n 10 def +/o 11 def +/p 12 def +/r 13 def +/s 14 def +/t 15 def +/w 16 def +/VariantTag1 17 def + end readonly def + currentdict dup/FontName get exch definefont pop end + %APLsfntEnd + 42/FontType resourcestatus{pop pop true}{false}ifelse + {currentfile 0(%APLT1End\n)/SubFileDecode filter flushfile}if + /FontType 1 def + /FontMatrix [ 0.00048828125 0 0 0.00048828125 0 0 ] def + /FontBBox{-1249 -862 1647 2504}def + /UniqueID 4508934 def + currentdict currentfile eexec + 54544758EC884CF30C3CD503CEDBFF3839C47C3C3333173232E3FDBFF439491DB843E1924E63AA7726BBB0485AB56D93D8C0906F647A47162891E73FFC2A9873C4B1EAC5EEBDFFC4D06084FBD84139DF4583C6E259D10699944D1068C9C45667DCCCFB9B7EA01B606435EDCBD273ABAC093D14085CCBAC149BD7382E842CFE0D7FE4FD2EF589A2471F6074A80A8B675C2F7A50D63AC1EF90D787BADD11633CB01CF6EE3B37AAF9078A69AC4740E9B6525D78BBD839551A1CB80DB8682FA5E87591BBD6EE8B946063A2A58D9CA3685AB305495DC5FB5747EB8A9A059C4976C0FE4EEAB1D56FF47F1E9664ED9F4A7DAB763AF92B2F6CF2FA7DEC24710E0B9096E30F772BA7FEA9BDBE496C42ED2CEB58F54E80BDF57CE7B4DB6CCFE7182F43BF93CCA0767AF95D62C5D2C3DC6AE1E6D139F51A2C63432117F1714C5566572EE9967A715420ABDCD1D7BD74F8450B89965FCC81C6ACA565C5F3CCF91D430D1F953E4F1A645300A98DD8C47CD64555F08F422340A85404EAE0D3229C4F9336B9470CACBD6BBF3395104750A915CC6EAAC197668267B8C62D2764C8CD69FD937CA3C924D997A0EDE7964BEB9EA2F92EF70C5E5DA0AA5567765E71F2B911B3C5586B741EEB93F3C73016EC16BFF283758900903D203992EFC8BAFAF13579C602F38C91BC64A62485D7C863002D39D4194FF17CC8AA420E752C449BD1094F4D1EC7207B0530DDF710335D6110AC23B32B7D1C3529BADE1C93EBE650C560D954989595D13140A87F5619A98DC17F7D95C9E7083447CFB80E18F9E3928C3A3FC92DD3012936004A4680293BCA0FBDFA0C0785B02169526295392A1AEAB6F4C014EFA0378661890689B544488BCE404EF03F62739EE57D57FA2D7B915D9EAED40B6C3629E3BA4F67EED68C8FEABA084CBF8213C37FFA4F5E1BA4C54467F9E2A1302DB774ED2B72F5ACD66995B08CC516DA83C9EAEDF215A5C5962FC2D71471742AD9A785A61E0158F9E7E509984F485F1A07E5AD2F67EAE90FD0EC4D3757F419B439A6142F28849403FD8B23859E26A8FAA59C8E6B4D9997592877F6024CD8A75348373E0716AAA1A8A987675CC69E5587DFF4B7AB39B45DAFC4CEE8DDD31FE11ED9FD8A352C936C2DCF9E884D9860076E6514C3AFA214F219F90632E5271F438C3530F7B53A4BF98CCBD495B56633DDFD040335927A40499B85E827595B0737D4CD1B61059712A126D876DCF3987CB70C6C2DCD526D0575790EC6745E3997DC810BD04CAAFF8B3533B6ED353A40B5A594969F1AFC892687D5BA446BB208D40BC7DFBE60A86678E8EADF3B40AE8CDC3318E791FDB60C9B3F64E571E128FBCD2351189511C923758CE6C854041168A4583DEEED70DC2D58C1908DCF08ECC26DFDD5FF27D3D3B4EF314A628CCB1EAB78F4C5060F438282E371EA2C326A8F7D592776A22E8396 + 1C9399F0AB710D3C291A5A01978A1CBCB21F5D66AC6E04A1220DF0A4320D2062E70E0786EF09C723A638A4503C3352DE5A9AE0FB555BA5FA783A6C1F7800B95B2DEB6F330A2BCA40409881343B00E456F684918E1307C5D0FF606B686FA2329640A741CC8D2B2C15D969D725BAC93D24EEB4BCF16AC4535487208D201E32208E1DF062BE49AB46D32F26AD59C458BDD47E53ABBC3004FCCF0E4DF1CBEE49F1F44650B9391F97A496613AA63370F58FCD86EFBD6F6FF8E0677494727732757D4FC9089A891D7E638C10955155ABDA02CA3CC979CB6B655FA3E0E59AA6C81ECB4C519FC1082A9DD9AF3213DB2099F71E9219EE7A16E3A3888BE8D2E5EA957FBA6A9645AF86DDA7F0162274EC30906B3AB82B1A4EE2B3784E2925979FE935245963AD4DC5CB01CA35CB2DA6EB5EA208C3029082E394842614694A56C6D62C3AF2B8CB48DD3D1D9F2300A73750073E51DF23AA57B4518C3B3667D7C62379891225048282321BD19EAA01AFB05D27EFCD71E874B36954030344041CF96EA26C36DCB6B6CD89C889060E6FF363060DC3A35FFF8A763992A9BAA2D34A7F4501A13067392B54E5C4609B01F8EFAAF04411927D34191B5FECF07EB0A90D54625CB7E9E6CD51D5520C77B1879B0760266A6DDF8FDAFD04AAA0B4C366719E1328469BACB1FAF850469650974AEFFF4E826ADA7477C73B7D1D042B99CDEABA41597D55120A67EF7299AB2CE15946B4935355DD845EB5D2A266FB3545C0829AE38F315BBA3807034F568E0591545554B5F36A2E146809748289F5C1C1829FA50B888B78BCFBFD821BF5052278B40B5840BAA93FEC996B5C2033DD4FD1072EAB20883AE53901DEBCD468284F69126D4F307E653BC413471AA364E9C06DA0588AB47253461B7D9ADDAD2887B73479CDDAD1F5F87548B12B2E6F1C38DBD7A8E4CDFAAA7B92FA44659ED13A602EB3612C63C29D436AB05C5CAFC09CEBAC8C9E277B69A262E63AF204CDC2493E50F614E538DD5472BAD0FD3EC5A56EDCC60C46D4AB24589248029C9432AFE76762E7BA3664CA515DEB1728D99B61A81E940C3DA24B645D450405E3B004EEE70FEC90357411F0E16FA780B8E492CFBE6F5DAA9FC72BCC0266D5D5CBF9CE693970D6DCDDC82C7C35506A76DDD8168B6969E49A89F7C016DDDD933CACA1F202D3DC094B9AAAE73C8B78653F223C16E5718A7EC0B826E9A6EEB5098D1C30312646F7CD41094CDDA4DE111BAA4B033E69ADB94D6223E5AE88C11B38E25B16511A6F5EEDFC71DB02307C0A2659BC7E6FC5FE301DA765242E75E252E5D507BAD51AA7DF0ACDE0E3386A21B73ED9C355738C856E3C14E27D723F39EBB345898B506F2FFF23A88723DF6B1273ABDFB99DF89C12BE210CDF66C61771725074471DC7EA2373640077A395BD932E771C6925ECC764783E2CCB7AF548485D1BCEB41A + 96EA9F8881CDF2F040AF8A6A1FF93F6301EFED0A6994686F749F25850AA0D2763E126A5BCDC188C1E28A2938D3FDA20985586998DD7F423B838B73A9E0B22391667C52E537FF27C27272ACB562A904382D163DFF6AC08496C94B131A159B79D0086E360E71781789049CA473B191CC89151D83AD37104603B1A94677B25542EAF6A2BC293DDC2939E54ADAB4D12DE57086A04520A3F13AD844D4C7F8E2AABB729214E77E41AF355D682F5192D0BFE6E6D19327DB399E0DB61C3A737FADDB147C556BA6438EF9587CB4C4EF21C49A8B92297D013F8C5867FE228A9519B768635441580578D5CF16B0588868155259BFF7291678F9A8C9E3367B20E2C7F9A8481F61F55B439D0F1297C9770857DF91086C9B6CAB7425136DF31C20D4EAEB060B9E1506AC70F73E258F62FEF9FC9954F5D0A39B42D9F2722F5436C669F3278709F51FAC2CEAA51B9E8716AB1B3E26F159970E84B08C54E3D08E4E7E5BB68198544E058952CC180C9A606DD8F3844C777316D7A0E84EB313A6C0AF6666C15B5B8AFD28ED1915C5710A7FB5F313B52C98BE6C1ED20CAC53AFFF8A8A39EDB0E2698B45CA6D12BA4DA28E19391926062D3879A1A15DE6EEE662AECCDACA324AF9DC07B7DBA63DFF876BFF3D6BEE44880412EDD1E110832505D8C397A1C1DAE0C9E8A8350D0942E2D74E33DFE5C7A62FE1CD1620B8E77C2C909A3CAA0E603A7743EF7774CA389CA9DEFCA749181918DF464BD56DB10F9762D4C9607BDD4134069D408C454256D793AAD231283E7C780B4B1AA92A7F022E0A109A7DE0E53788C81F4FDCC7DC327627743A6AE6CF248E9F33AD994DB8E0844B10273370EBE5A12629FC1A0050AF21A0C21686F007BF913CB660BB68E873E0F576BFBEF6FFED2E261C7ADF8EEA5B7BAD73A2D3EEC50228B4460AB1010B6E1000DAF59FB295E98FCE6F6AF1B0260AF4E9427E0C591767C3AC78F367E2CDB9F6FD6FA09D922845319EAA292723B2E0077EEB8094C401C29FDF704ADAA2081291582D70B860D296E11D1C3FC5D973283837A7C87057D0EE0FFE27F3A92174A7B85673CE212A7FBCBEFDE5463ED2D2B7788157F873D585001DD1B51593F6050E3400BA0E2D0EF6399BF8313750BB6E832E2E854466D22C6133B2C75977B145C064F71D9125E5AFB529F7825790A4B35B1E56CB8BB28CEC53D4901BB3942F14398C04CB5F36C80432AC870FECAD924C1B231A43D033DEBBB87068C3BB54933E10F6CF2F93EE9E56212253742BEE5B679F49B3E0BD10469156C3BD910B620B05D6DAEEBD123347407057DA69A73D1514ADA82941302F8F3E6B49D2CE9603F6709E4EADA11F72EDA1B14BE68A7A5AADE6492D34C59F9C + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark end + %APLT1End + %RBIEndFontSubset +/Monaco cguidfix +/F1.1/Monaco renmfont +%RBIBeginFontSubset: Helvetica +%!FontType1-1.0: Helvetica 1.0000.0.0000 + 14 dict begin/FontName /Helvetica def + /PaintType 0 def + /Encoding 256 array 0 1 255{1 index exch/.notdef put}for + dup 33 /M put + dup 34 /e put + dup 35 /s put + dup 36 /a put + dup 37 /g put + dup 38 /hyphen put + dup 39 /B put + dup 40 /u put + readonly def + 42/FontType resourcestatus{pop pop false}{true}ifelse + %APLsfntBegin + {currentfile 0(%APLsfntEnd\n)/SubFileDecode filter flushfile}if + /FontType 42 def + /FontMatrix matrix def + /FontBBox[2048 -1947 1 index div -985 2 index div 2961 3 index div 2297 5 -1 roll div]cvx def + /sfnts [< + 74727565000900000000000063767420000000000000009C0000036C6670676D000000000000040800000A1D676C79660000000000000E2800000AA46865616400000000000018CC0000003668686561000000000000190400000024686D74780000000000001928000000286C6F63610000000000001950000000166D617870000000000000196800000020707265700000000000001988000003CF05C0001005BD00280580001A042F001F0000FFD90000FFDA0000FFD9FE55FFE605C70010FE6DFFF1033B000000B9000000B902FE3F3C00C0008D009B00AF000600A800C00028005E009800C9016A00B9015C00B400D6011E002E0080000400B8004C00CC01FFFFD1006600A400AF007400C2009500B1000C0028006D0015004C008E0125FF7A000C0040004C00620084FFA200240038008600BD0039005E008E00EDFFA9FFB300400052005500AA00AB00C200CB012302B10413FFAEFFE4000800510074008400AA00D1FF4CFFAF0012002C004200500051008400BE012503DAFF680018003B0098009C009F00A100C100EC018201B4FF68FF76FFD0FFE100020018001C00530053007D01B401E103AF0486FF9CFFEAFFFE001F0028002A00520060009300A300AA00AF00AF00C001000145016B0174019301950240028202B404850517FEFD00060029004700470048006F008800B400B900C400F200F901EF02180310037403C5FF35FFF3000B004B004C0052005500650076007600870087008E00AB00BB0106013001430150017D0194019501D3022A025502580277027802E6034E035C037903D3047304B2058C0598060BFEF5FFBBFFC7FFD50017001D005B0072007E009C00C200D000F400FA01030106011C0125013B0142015E015E0180019B02B901A101B9025001C001D002AA01DF01E301EF01FB0205020C0215022B0274029302AB02C202CE03690395039903DF03F5043E050205A105E5062507DBFE62FE89FECEFF3BFFE1FFF800030008002100390042004E005F0061006F00700034007F008E00AD00AD00AF00BD00C400C500C900C900C900E3011C00ED00F800F901000112011A0132014D014D014E014F01660169019E01BA01BA01BE01E301EF01F602000200020902110217021C02530262026D028002D50280031B032A034A035A03AF03AF03C803D603FB03FB04050413041504470449008C046D049A049A04A604A804B204CF0539053E054E055605800589058C036305D105D6067E068E06B206EF06F00728074C076F078C00B400C900C000C10000000000000000000000000004012400AF0032006E0063014401620096014301A10161008A00740064018801EF01700028FF5D037E0347023000AA00BE007B0062009A007D0089035C00A1FFD803AA00D70093006C0000008000A70442001D0597001D00820030002A + 002A002A002A002A40292A292827262524232221201F1E1D1C1B1A191817161514131211100D0C0B0A090807060504030201002C4523466020B02660B004262348482D2C452346236120B02661B004262348482D2C45234660B0206120B04660B004262348482D2C4523462361B0206020B02661B02061B004262348482D2C45234660B0406120B06660B004262348482D2C4523462361B0406020B02661B04061B004262348482D2C0110203C003C2D2C20452320B0CD442320B8015A51582320B08D44235920B0ED51582320B04D44235920B09051582320B00D44235921212D2C20204518684420B001602045B04676688A4560442D2C01B9400000000A2D2C00B9000040000B2D2C2045B00043617D6818B0004360442D2C45B01A234445B01923442D2C2045B00325456164B050515845441B2121592D2C20B0032552582359212D2C69B04061B0008B0C6423648BB8400062600C642364615C58B0036159B002602D2C45B0112BB0172344B0177AE5182D2C45B0112BB01723442D2C45B0112BB017458CB0172344B0177AE5182D2CB002254661658A46B040608B482D2CB0022546608A46B040618C482D2C4B53205C58B002855958B00185592D2C20B0032545B019236A4445B01A23444565234520B00325606A20B009234223688A6A606120B0005258B21A401A4523614459B0005058B219401945236144592D2CB9187E3B210B2D2CB92D412D410B2D2CB93B21187E0B2D2CB93B21E7830B2D2CB92D41D2C00B2D2CB9187EC4E00B2D2C4B525845441B2121592D2C0120B003252349B04060B0206320B000525823B002253823B002256538008A63381B212121212159012D2C456920B00943B0022660B00325B005254961B0805358B21940194523616844B21A401A4523606A44B209191A45652345604259B00943608A103A2D2C01B005251023208AF500B0016023EDEC2D2C01B005251023208AF500B0016123EDEC2D2C01B0062510F500EDEC2D2C20B001600110203C003C2D2C20B001610110203C003C2D2C764520B003254523616818236860442D2C7645B00325452361682318456860442D2C7645B0032545616823452361442D2C4569B014B0324B505821B0205961442DB8002B2C4BB800095058B101018E59B801FF85B800441DB9000900035F5E2DB8002C2C2020456944B001602DB8002D2CB8002C2A212DB8002E2C2046B003254652582359208A208A49648A204620686164B004254620686164525823658A592F20B00053586920B000545821B040591B6920B000545821B0406559593A2DB8002F2C2046B00425465258238A592046206A6164B0042546206A61645258238A592FFD2DB800302C4B20B0032650585158B080441BB04044591B21212045B0C05058B0C0441B2159592DB800312C2020456944B0016020 + 20457D691844B001602DB800322CB800312A2DB800332C4B20B003265358B0801BB040598A8A20B0032653582321B0C08A8A1B8A235920B0032653582321B801008A8A1B8A235920B0032653582321B801408A8A1B8A235920B80003265358B0032545B8018050582321B8018023211BB003254523212321591B2159442DB800342C4B535845441B2121592DB800352C4BB800095058B101018E59B801FF85B800441DB9000900035F5E2DB800362C2020456944B001602DB800372CB800362A212DB800382C2046B003254652582359208A208A49648A204620686164B004254620686164525823658A592F20B00053586920B000545821B040591B6920B000545821B0406559593A2DB800392C2046B00425465258238A592046206A6164B0042546206A61645258238A592FFD2DB8003A2C4B20B0032650585158B080441BB04044591B21212045B0C05058B0C0441B2159592DB8003B2C2020456944B001602020457D691844B001602DB8003C2CB8003B2A2DB8003D2C4B20B003265358B0801BB040598A8A20B0032653582321B0C08A8A1B8A235920B0032653582321B801008A8A1B8A235920B0032653582321B801408A8A1B8A235920B80003265358B0032545B8018050582321B8018023211BB003254523212321591B2159442DB8003E2C4B535845441B2121592DB8003F2C4BB800095058B101018E59B801FF85B800441DB9000900035F5E2DB800402C2020456944B001602DB800412CB800402A212DB800422C2046B003254652582359208A208A49648A204620686164B004254620686164525823658A592F20B00053586920B000545821B040591B6920B000545821B0406559593A2DB800432C2046B00425465258238A592046206A6164B0042546206A61645258238A592FFD2DB800442C4B20B0032650585158B080441BB04044591B21212045B0C05058B0C0441B2159592DB800452C2020456944B001602020457D691844B001602DB800462CB800452A2DB800472C4B20B003265358B0801BB040598A8A20B0032653582321B0C08A8A1B8A235920B0032653582321B801008A8A1B8A235920B0032653582321B801408A8A1B8A235920B80003265358B0032545B8018050582321B8018023211BB003254523212321591B2159442DB800482C4B535845441B2121592DB800492C4BB800095058B101018E59B801FF85B800441DB9000900035F5E2DB8004A2C2020456944B001602DB8004B2CB8004A2A212DB8004C2C2046B003254652582359208A208A49648A204620686164B004254620686164525823658A592F20B00053586920B000545821B040591B6920B000545821B0406559593A2DB8004D2C2046B00425465258238A592046206A6164B0042546206A61645258238A592FFD2DB8004E2C4B20B0032650585158 + B080441BB04044591B21212045B0C05058B0C0441B2159592DB8004F2C2020456944B001602020457D691844B001602DB800502CB8004F2A2DB800512C4B20B003265358B0801BB040598A8A20B0032653582321B0C08A8A1B8A235920B0032653582321B801008A8A1B8A235920B0032653582321B801408A8A1B8A235920B80003265358B0032545B8018050582321B8018023211BB003254523212321591B2159442DB800522C4B535845441B2121592DB800532C4BB800095058B101018E59B801FF85B800441DB9000900035F5E2DB800542C2020456944B001602DB800552CB800542A212DB800562C2046B003254652582359208A208A49648A204620686164B004254620686164525823658A592F20B00053586920B000545821B040591B6920B000545821B0406559593A2DB800572C2046B00425465258238A592046206A6164B0042546206A61645258238A592FFD2DB800582C4B20B0032650585158B080441BB04044591B21212045B0C05058B0C0441B2159592DB800592C2020456944B001602020457D691844B001602DB8005A2CB800592A2DB8005B2C4B20B003265358B0401BB000598A8A20B0032653582321B0808A8A1B8A235920B0032653582321B800C08A8A1B8A235920B0032653582321B801008A8A1B8A235920B0032653582321B801408A8A1B8A235920B80003265358B0032545B8018050582321B8018023211BB003254523212321591B2159442DB8005C2C4B535845441B2121592D00000000020042000004D005BD000300070043B800532BB800082FB800042FB8000810B80000D0B800002FB8000410B80003DCB8000010B80007DCB8000310B80009DC00BA0007000000562BBA0002000500562B3031331121112711211142048EB8FCE205BDFA43B8044DFBB300000001005501DE024B029700030020400A002F03011A0500190405B80142B321BA48182B2B4EE410E6002F4DED3130132115215501F6FE0A0297B90000000300970000050405BD000A00150028008240385A0D5A116A026A0D6A117A02772107490D4811021D081F0F041F131E000027081E17020B1E270804311B690F31231A2A091525281619292AB8015FB3217666182B2B4EF43C4DFD3C4E10F64DEDF4ED003FFD3FED12392FFD3901111239313043794012181A0508192506260718042B01051A082B01002B012B2B2B8181015D5D013237363534272623211101323736353427262321110321201716151407060716171615140706290102C47E466E754282FE9D01ADB74E318F4C7DFE75C3027701026D404F294D7138635985FEDEFD93035023378F90321CFE39FD5A6A435FA03A1FFDFB05139A5B778B592F272B3660A98E73AC000100970000061705BD001300CB405944014B03020601090316011903D7010513011C03140B1B0C + 57015803D401DB03D40BDB0C0A040A040D45028602045102970202290A280D380A380D4702570276020725640D0A0203120301020B0C120306081517171A040405B8019B400D0A1F030B06FD0C0102FD0D1F12B8019BB6130019147670182B4E10F43C4DFDE419F43939F4393918E4FD3C4E10456544E6003F173C3F3C1217394B5279B10D0CB801AAB40201020A0BB801AAB202020387054D2E7AFD047DC487052E7AFD047DC43130005D727101725D71132109012111231134363501230115141615112397011D01A601A3011ABD04FE5DC5FE5A05BE05BDFB2604DAFA4303632DD077FB2904D72D36DD34FC9D000000030052FFDC04470449000F003B003C00DD40382A30010A100B1B0C1C2733481069096A10073908120C09031B320724091D100C1D3B2B022E293BB73B023B322A2512100705081C2722171CB8018A4023171D1F07271D2E0B021D350B3C073C3C1C1407292AA8241A3E1B291C4A0F2738193D3EBC0197002100B9019600182B2B4EF44DEDF4ED4E10F64DE4FDC412392F003F3FED3FED3FEDED1239111217395D1112392EED2EED01111239111739313043794028363715220001192501360F2100181E1B21001620142101212200370221001A1D1721011521172101002B2B2B01103C2B2B2B2B818181005D015D2416333237363D010E010F0106070615013637363534262322070607233E01333217161511141633323637150E0123222726270E012322263534363713010E724E5F59962168326D62315301B43E150C837A8D3B210AA805F7A3BD767517250C1E112A2C265D2A160937CE7C95BDBA978ACF5A2C49A691151C060E0D1C2F67016C082C182D5C534C2A53C69B484898FD971C220303850C06422340486AB58895A41301E40000030048FFDA041A0449001C00240025010C40799708991AA71F03050E020F0514150E120F1514400C401408291A014B0BB603C701C603C71BD808D909D61FD823E817E8230BC711C712025C080521240F9A161D243906070716211D1C070A1D160B2507971CA71CB71CD71C0425160F251C05190A0C07110E270F1D27051A27242E072719192627D421A65D182B2B4EF44DFDE44E10F64DEDD4FD391239391112393912392F5D003F3FED3FED12392F3CFD3C10ED1112393130437940460023040503050205010504061F26111012101310141004060C25221B24260020001D26011E1D09170726000B150E26010D0E231A2126011E0521260108180A26000D100A2600002B2B2B2B01103C2B2B103C2B2B2B2A2B2A8101715D00715D5D00161716171615211E013332373637330E01070607062322001110003301262726232206070102B4D638361210FCEF0590978D543014B1074F3152794152C8FEEA0118E2011F0B284AAD7CA805012304476B55516C4AA2A3C55D36473B91 + 2E501C100123010601020142FE26754682B38A01DC0000000003003DFE3B03E80449001F002D002E00B7404D36144908490958085909880CA91BA81DA927A62BB91B0B4008031622290EC40A221D1F070406291D190A121D0A0F2E072E2E051C032E162E2D29051A300C0E270D3E26271C192F3087217242182B2B4EF44DEDF4ED394E10F64DFDE4F51112392F003F3FED3FED3F3FED10ED1112393931304379402C23281A1E0B1124251026231E262600281A262600110B0E21000F0E0C0D251D222601271B2926000F0C122100002B2B2B01103C103C2B2B2B2B2B818181005D00171617353311140706212226273316171633323736270E0123222411100033002623220706151416333237363501027C5E3335A63C70FEC9ADEC0EB70D273D83CF40260336987DAEFEFB0107BA0144A47FBE4625937CC24F2CFED104423E234387FC32CC76DA9BA548273C9256DD5250F7011D010D012EFEA1C0B25F9AB5BDAF6384022D000000020042FFD703B6044B002E002F012E408F38099805961299149815982A062824252736214621472447275624572766246726790C790D790E7623742474257426A61EA82C1303000B15052D042E13001A151B171C18152D142E280F0B6908262536250225220D0A042B1318C61C1D1307041D2E9A2B0B2F07090E100207002F212F1A1F18161827173E28260727281A310E1F27103E00272E193031B221A65D182B2B4EF44DEDF4FD394E10F64DFD3910F4FD3911123939392F111239113939003F3FEDED3FEDED111217397131304379404C012D022615251A26210E1F21000926072101032C002100052A0721011D121F21001B14182101200F22210021220E0D08270A21012625090A012D04210006290421001E111C210119161C2101002B2B2B2B103C103C2B103C103C2B012B2B2B2B2B2B2B2B2B81005D5D015D13161716333236353427262F01262726353436333217160723262726232206151417161F011617161514062322262701EF082544A864983D27738F894174DBB9F26B4302AA05263E99666945284E77C24269D9DEEFC70701B701505A3057575B4524161D24222A498198BC8E5A683D32474E40462A19131D2F2C45948FD0D9A002F900020080FFE303DE044900170018005E403AB814C81402091308141913191428067703D707070800050E0A00060D0A051D120B180718180B160D2E0A290C0B1A1A01291619191AD2216242182B2B4EF44DED4E10F63C4DFDE41112392F003F3FED3F3F3C391112393130005D015D0111141716333237363511331123370607062322272635112501381A3083BC4425B4AA0223346793E5532D01AF042FFD39523460A85A9D020EFBD19E3D2A5499528902D81A000001005EFFFB041D059F001E008FB800532BBA0000001000562BBA0007000600562BB800 + 0010B8000DDCBA000E00100000111239B80011D0BA001200100000111239B8001010B80013D0B8000D10B80015D0B8000010B80017D0B8000110B80018D0BA001900100007111239B8000010B8001BD0B8000110B8001CD0BA001D00100007111239B8000710B80020DC00B800162FBA0001000C00562B30310111323E023533140E022B01110735373507353711331125150515251501EE63986735984EA3FCAE36EEEEEEEEA2016FFE91016F02EEFDAB4278A76592E49C5202AD648264926481650161FEE49C819C939D82000100000000000030CEDBBF5F0F3CF500110800000000005F4D8F0000000000CDB9BAB7F865FC270B9108F9000000090001000000000000000100000629FE2900000C01F865FCED0B9100010000000000000000000000000000000A0512004202AA00550556009706AA009704730052047300480473003D04000042047300800473005E00000036005400D80164022E02F803A0048004DA0552000000010000000A00920009006B0007000200100010005D000007E80A1D00040001B800532BB800492BB8003F2BB800352BB8002B2B4118008001A6009001A600A001A600030069018B0079018B0089018B0099018B00040089018B0099018B00A9018B00B9018BB2040840BA0179001A014A400B041F5414191F180A0B1FD2B80106B49E1FD918E3BB0119000D00E10119B20D0009410A01A0019F0064001F01A50025017A00480028019AB3296C1F60410A01A9007001A9008001A90003008001A9000101A9B21E321FBE012C00250401001F0126001E0401B61FE7312D1FE531B80201B21FC227B80401B21FC11EB80201400F1FC01D9E1FBF1D671FBE1D671FAB27B80401B21FAA29B80401B61FA91D6C1F931EB8019AB21F921DB80101B21F911DB80101B21F751DB80201B61F6D29961F6431B8019AB21F4C96B802ABB21F391DB80156400B1F3638211F351DE41F2F27B80801400B1F2D1D4C1F2A31CD1F241DB802ABB21F201EB8012540111F1C1D931F3A1D4C1F1E1D45273A1D4527BB01AA019B002A019BB2254A1FBA019B0025017AB349293896B8017BB348283125B8017A403648289629482725294C1F252946272729482756C80784075B07410732072B072807260721071B071408120810080E080C080A08080807B801ACB23F1F06BB01AB003F001F01ABB308060805B801AEB23F1F04BB01AD003F001F01ADB70804080208000814B8FFE0B40000010014B801ABB41000000100B801ABB606100000010006B801ADB300000100B801AD401F04000001000410000001001002000001000200000001000002010802004A00B0018DB806008516763F183F123E113946443E113946443E113946443E113946443E113946443E11394660443E11394660443E11394660442B2B2B2B2B2B2B2B2B2B2B2B2B2B + 2B2B2B2B2B2B2B2B2B2B2B2B2B18011DB0964B5358B0AA1D59B0324B5358B0FF1D592B2B2B2B2B2B2B2B182B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B74752B2B2B65422B2B4B5279B376706A66456523456023456560234560B08B766818B080622020B16A704565234520B003266062636820B003266165B070236544B06A234420B176664565234520B003266062636820B003266165B066236544B0762344B10066455458B166406544B27640764523614459B36242725D456523456023456560234560B089766818B080622020B172424565234520B003266062636820B003266165B042236544B072234420B1625D4565234520B003266062636820B003266165B05D236544B0622344B1005D455458B15D406544B262406245236144592B2B2B2B456953427374B8019A2045694B20B02853B049515A58B020615944B801A6204569447500 + 00>] def + /CharStrings 10 dict dup begin + /.notdef 0 def +/hyphen 1 def +/B 2 def +/M 3 def +/a 4 def +/e 5 def +/g 6 def +/s 7 def +/u 8 def +/u20BA 9 def + end readonly def + currentdict dup/FontName get exch definefont pop end + %APLsfntEnd + 42/FontType resourcestatus{pop pop true}{false}ifelse + {currentfile 0(%APLT1End\n)/SubFileDecode filter flushfile}if + /FontType 1 def + /FontMatrix [ 0.00048828125 0 0 0.00048828125 0 0 ] def + /FontBBox{-1947 -985 2961 2297}def + /UniqueID 4449471 def + currentdict currentfile eexec + 54544758EC884CF30C3CD503CEDBFF3839C47C3C3333173232E3FDBFF439491DB843E1924E63AA7726BBB0485AB56D93D8C0906F647A47162891E73FFC2A9873C4B1EAC5EEBDFFC4D06084FBD84139DF4583C6E259D10699944D1068C9C45667DCCCFB9B7EA01B606435EDCBD273ABAC093D14085CCBAC149BD7382E842CFE0D7FE4FD2EF589A2471F6074A80A8B675C2F7A50D63AC1EF90D787BADD11633CB01CF6EE3B37AAF9078A69AC4740E9B6525D78BBD839551A1CB80DB8682FA5E87591BBD6EE8B946063A2A58D9CA3685AB305495DC5FB5747EB8A9A059C4976C0FE4EEAB1D56FF47F1E9664ED9F4A7DAB763AF92B2F6CF2FA7DEC24710E0B9096E30F772BA7FEA9BDBE496C42ED2CEB58F54E80BDF57CE7B4DB6CCFE7182F43BF93CCA0767AF95D62C5D2C3DC6AE1E6D139F51A2C63432117F1714C5566572EE9967A715420ABDCD1D7BD74F8450B89965FCC81C6ACA565C5F3CCF91D430D1F953E4F1A645300A98DD8C47CD64555F08F422340A85404EAE0D3229C4F9336B9470CACBD6BBF3395104750A915CC6EAAC197668267B8C62D2764C8CD69FD937CA3C924D997A0EDE7964BEB9EA2F92EF70C5E5DA0AA5567765E71F2B911B3C5586B741EEB93F3C73016EC16BFF283758900903D203992EFC8BAFAF13579C602F38C91B4F1C51BADFF3495C2924BE71970B75EDF2A199B50F98194813A33F63946432A100A72F0700E471C6AECB1F3AE72601F4FBA141E6DAA154933D47293681E1AF19EB09BC4B0B8EA08CB9CABB31741A44CF2EAB20ADC8CCB10041E91A324EB16F8246B53EFF668607F210E4555A009307A5109132EFED71C9ADD7FC7AEE4EA8F5D22BD59D49E39A1062F8ACBA46F35F160E81454B2A134EF644D91BB6F10CB65843C076BEA673DAB05B9F13D851E6E5DF48DD68BD8F9A52D2ADD93130453C2C565395BDB13D38CA050AC3B5276EB3786FB072E55C72D37301DA6763700266B69A7801FC254C9C0254ADFF62F1F8BE9845559E87DB99B2054ABF728E37B2CD7069FB213EB6C78ADE3F894AAD19723080CB774DF467EA73A08F162EA4F33FE6E0B972B6CDEF2711DCC2935ABEB26CA472D74B4DD1A8E2BB6BBF1D42E619EFB549F150CF2A6A266DD98A68E039C2625825240BFCF0E02D1CA17D360EDFD239BEA6CCB4FA28BB123B10B9BD7114775C5F87870E78BC1B4CD18FE905BB65012257B465A054823B7DFEF679A51307E2264079216F53B4C0A2BAD1FFA3001F7C9C1B6587016C0345AF295F4ADD77D8E898CA83755F47989DA857DBAD37BB0334347353E929D6BB9DBA93C29F44EF66CA7E2BABB448117FAEAD84BA0343994646180E664821A280C03A891013DA6CF6CE397EED91C1F5C90ABED7DC104690E4E88B3185C21D246A32D9D9C49C4CB0073FBDF07559AB99FF0764C48BDDCC23D6835D73E47E0 + 763C9273FAA4FF3CAFB195617402D2047FD79115DB1183DC50FB4403BCDAD3727422F9371088CAE0F83BA9175E74F190C575812E878D2DE33EA23D39D9C06FEBC5FF695B742EA48B280BC7DA1D7430335D49EE22AFD58EC2AC316BC601F3EEE2A210D8F0D1826068C347CCFE0FF7DA6E20E3E1B9787E5A033FD10C3F8038ACCC4B8C907B3D33524FEFC89E5E0AEE62A89070E81CE0DD1768AC7E85077D0D4941D1A4241AE9CE82888E6F0E2CE68F7E030EB3C69E17A01C285EF4C42EFBF6A4D4B20663404E5E6F4B9CEA11DEDFAED25CEE00B690D13DFF15FD6EFABA3B20CEA218BD99849B82AAFE413B1006D0B35A6A9D2665FDA59FB0AC7AB98EEAABFF4D2F296324B1007DC2D6DB04FD6BEA868E42E9FC6E9B551BD52FA1BE8BF3FC6518373DB41C13DFE893BC53D38057B36853BA7BD92CF5D50DF4661AA8190C58A3AFE5528B5E7A2AC270A6197026DF5C96FA0B4EA19104C6BCB5B680E47D7470D6D26E9C0932B034FDA64048E2E89D73DABC1662A798537DF5CEA6A5091923C77B53727E63A9B2E0AEA0E2A36FAFA998CC3CB9BBCE826DB2AE6A451FD6C0E71E4BFA5E5422E4E04F531EA5F4D2CB028B123D8B2BEDCFFCD06B7455A55B60A2E71680BC9CE8E84D25433EAB7135B2789AB0003D743CD201ECA7A2EA7F6FC60D9C6ED5F5B5C07B0729DF8446B35FABF03164877F038BCCE55F7315F8014E8391D310EE338E0B2AD9DA32E5C27F1C6541F8880891C839A3397C80112954459D22DB9343FB182532BADA521AF0E2B692422ED7FA253E0EF9755525D41480324313BF51C50921D2721F8CCD43A58BF744D7AC2BCCAEF1AA7B3E6D48C182A6090C995C51B941B274C8CC686A7B31E0AFECF94AC3EEA977A699441B0F22C05D5DECEF0C1985138E0DAE0BEAF2966F0DEFEE6BD4B95CFCFFD398CDBEEA63D8A06FC9ED5668912B8D6319D4890238314A8FCEDEBB9BF21D58E33B454B339353E1AB7CD445A33063F0A58551CF50CDD832BD0B1594D60FDBDD1A11E4AD89811EF96AF92DFC800CB53D847D851D7CA408679C467B10048C78B01EF2082F6968A9E2E106D266BCC739AF23F056B06EEE2B6E618ACBA3223879745EA74125C96402CBBE423FA25906451443007F0A9EF9550D1FB014BD0B472BC26ABE79510DF9BD5914EEDE81E63A5BB597E8D703F77E0204675E71D7FF95653527AE56FC194A6F8244547CC2CF4D6C2FC4C6A43A2C7FBF5D29E644B1D20E752B53E95EEF7321AC0C2B45837E1CBBE68DE49E481092892B7867ED65F89239D3A22792354F68307052D78CF17F53CB9104826A848639E66519B1CBAB0AB8081CC7E1EB1B2D0AF9BD993F1A07789BEF03515CDD772CCFA7A1A02C869CF52AFB8877F5DE00CC464633249E65E60B575D569A8D94671C2E293394CE9D54599F1D899CD65EA73142B5EFB1713D676A75C90F + 52D35B505F4A14A8ACDE88D0BB72B8ED089E195614D48055F4E688A29D9805EF3371C48CC894CA4505CFFEC70AF1729E41893AA9437A8BF9191653E9BB86B1BA707A2F89E97600FDFCA5F7D3A6BC8820C4E806FF914B227CF6EE3C23D2482E27CB77CD41A8FEAAA08AAF74DB60097A46BF322BC06DD9A67CA87A66545183C208A53CB79666BF2668D860C2DAA183871587161B1A9DC56A742007B9644C92DAC4BD06A371B5A9183AB632965A1A + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark end + %APLT1End + %RBIEndFontSubset +/Helvetica cguidfix +/F2.1/Helvetica renmfont +%RBIBeginFontSubset: AvenirNext-Regular +%!FontType1-1.0: AvenirNext-Regular 1.0000.2.0000 + /FontInfo 1 dict dup begin + /FSType 4 def + end readonly def + 14 dict begin/FontName /AvenirNext-Regular def + /PaintType 0 def + /Encoding 256 array 0 1 255{1 index exch/.notdef put}for + dup 33 /E put + dup 34 /v put + dup 35 /e put + dup 36 /r put + dup 37 /y put + dup 38 /space put + dup 39 /a put + dup 40 /c put + dup 41 /t put + dup 42 /i put + dup 43 /o put + dup 44 /n put + dup 45 /s put + dup 46 /l put + dup 47 /period put + dup 48 /T put + dup 49 /h put + dup 50 /d put + dup 51 /S put + dup 52 /m put + dup 53 /hyphen put + dup 54 /L put + dup 55 /A put + dup 56 /f put + dup 57 /u put + dup 58 /p put + dup 59 /comma put + dup 60 /g put + dup 61 /w put + dup 62 /parenleft put + dup 63 /parenright put + readonly def + 42/FontType resourcestatus{pop pop false}{true}ifelse + %APLsfntBegin + {currentfile 0(%APLsfntEnd\n)/SubFileDecode filter flushfile}if + /FontType 42 def + /FontMatrix matrix def + /FontBBox[1000 -394 1 index div -411 2 index div 1309 3 index div 1192 5 -1 roll div]cvx def + /sfnts [< + 74727565000900000000000063767420000000000000009C0000001A6670676D00000000000000B800000173676C7966000000000000022C000021E068656164000000000000240C0000003668686561000000000000244400000024686D74780000000000002468000000846C6F636100000000000024EC000000446D617870000000000000253000000020707265700000000000002550000000720014003600400090004800000012FF10000001D4000C02C400120000B800002C4BB800095058B101018E59B801FF85B800441DB9000900035F5E2DB800012C2020456944B001602DB800022CB800012A212DB800032C2046B003254652582359208A208A49648A204620686164B004254620686164525823658A592F20B00053586920B000545821B040591B6920B000545821B0406559593A2DB800042C2046B00425465258238A592046206A6164B0042546206A61645258238A592FFD2DB800052C4B20B0032650585158B080441BB04044591B21212045B0C05058B0C0441B2159592DB800062C2020456944B001602020457D691844B001602DB800072CB800062A2DB800082C4B20B003265358B0401BB000598A8A20B0032653582321B0808A8A1B8A235920B0032653582321B800C08A8A1B8A235920B0032653582321B801008A8A1B8A235920B0032653582321B801408A8A1B8A235920B80003265358B0032545B8018050582321B8018023211BB003254523212321591B2159442DB800092C4B535845441B2121592D00000400000000020002CE000300230027002B0049B8002C2FB8001C2FB8002C10B80026D0B800262FB900160004F4B8001C10B900250004F4B8002DDC00BB00030002002400042BBB00250001001900042BBB00040001000100042B3031373533152F0134373E01373E0335342623220607273E0133321615140607060706151711211101112111DE3835020D07161110140A042D1F1F2D0632074A3636461926250606BFFE6401CEFE00754343751138190D1D110F1713110924312C33084841473C20352321131434B80269FD97029CFD3202CE00010020FF6100E602DF0015001BBA0005000B00032BB8000510B80017DC00BA0010000600032B303113141E0217072E0335343E0237170E03621423301D342035271616273520341D30231401203A726A6028212A65737C41407D73652A2128606A720000010046FF61010C02DF00150063BB000B0004000000042B410500DA000000EA000000025D411B0009000000190000002900000039000000490000005900000069000000790000008900000099000000A9000000B9000000C90000000D5DB8000B10B80017DC00BA0006001000032B303113342E0227371E0315140E0207273E03CA1423311C341F3627161627361F341C31231401203A726A602821 + 2A65737D40417C73652A2128606A72000001002DFF7400B7005F00030017BB00030004000100042B00BB00020003000000042B303117233733663943478CEB000001003000D60110010F00030015BA0000000100032B00BB00030001000000042B3031252335330110E0E0D6390000000001004CFFFA00B80066000B0077BB00000004000600042B411B0006000000160000002600000036000000460000005600000066000000760000008600000096000000A6000000B6000000C60000000D5D410500D5000000E5000000025D00B800004558B800032F1BB9000300053E59B900090003F44105000700090017000900025D3031371406232226353436333216B81E18181E1E18181E301521211515212100000002000A000002B202C40007000A004000B800004558B800022F1BB90002000B3E59B800004558B800002F1BB9000000053E59B800004558B800042F1BB9000400053E59BB00090002000600042B30313323013301232721372103594F0132460130504EFE921B01389C02C4FD3CBA42017800000001005E0000022102C4000B0055BB00000004000300042BB8000010B80007D000B800004558B800042F1BB90004000B3E59B800004558B800022F1BB9000200053E59BB00090002000A00042BB8000210B900000002F4B8000410B900060002F43031372115211121152115211521A6017BFE3D01B7FE910157FEA9404002C440F43F000001005E000001F002C400050035BB00000004000300042B00B800004558B800042F1BB90004000B3E59B800004558B800022F1BB9000200053E59B900000002F43031372115211133A6014AFE6E48404002C40000010032FFEE01F802D600370181B800382FB800252F410500DA002500EA002500025D411B0009002500190025002900250039002500490025005900250069002500790025008900250099002500A9002500B9002500C90025000D5DB80000D0B800002FB8003810B8002FD0B8002F2FB900080004F4411B0006000800160008002600080036000800460008005600080066000800760008008600080096000800A6000800B6000800C60008000D5D410500D5000800E5000800025DB8002510B900120004F4B80039DC00B800004558B800342F1BB90034000B3E59B800004558B800172F1BB9001700053E59B8003410B900030002F4410500D9000300E9000300025D411B0008000300180003002800030038000300480003005800030068000300780003008800030098000300A8000300B8000300C80003000D5DB8001710B900200002F4411B0007002000170020002700200037002000470020005700200067002000770020008700200097002000A7002000B7002000C70020000D5D410500D6002000E6002000025D3031012E0123220E0215141E02171E0315140E + 0223222E0227371E0133323E0235342E02272E0335343E023332161701B51748331A362C1B1A2B371E254B3C262941532A20403A32133E1753381B382D1D1D303E22234436212942502748661A0252202710213222222C1F140A0C1C2D4535354D32180D1A281A2E263311233322253121160B0B1C2D4230334A3016332300000001000C0000022E02C400070041BB00000004000100042B00B800004558B800042F1BB90004000B3E59B800004558B800002F1BB9000000053E59B8000410B900020002F4B80006D0B80007D030312123112335211523014148ED0222ED02844040000000020037FFF401C901E0002500360182B800372FB800002FB8003710B80020D0B800202FB9002B0004F4411B0006002B0016002B0026002B0036002B0046002B0056002B0066002B0076002B0086002B0096002B00A6002B00B6002B00C6002B000D5D410500D5002B00E5002B00025DB80006D0B800062FB8000010B9000F0004F4B8000010B80017D0B800172FBA00180000000F111239B8000010B80035D0B8000F10B80038DC00B800004558B8000A2F1BB9000A00093E59B800004558B800132F1BB9001300053E59B800004558B8001B2F1BB9001B00053E59BB00250001003600042BB8000A10B900030001F4410500D9000300E9000300025D411B0008000300180003002800030038000300480003005800030068000300780003008800030098000300A8000300B8000300C80003000D5DBA0018001B000A111239B8001B10B900300001F4411B0007003000170030002700300037003000470030005700300067003000770030008700300097003000A7003000B7003000C70030000D5D410500D6003000E6003000025D303101342623220607273E0133321E021D01141617232E0135230E0123222E0235343E023307220E0215141E0233323E023D010181403D2A4819261D5F3C2642321C04043D0304022051391B392F1F375C7740142A55452C1320271424382614012E3D3C1E192D1D26152A402BCD1B3A141128132F290F223627363F1F09350715282119221509192B381F2300010038FFF401E401E000210115BB00080004001900042B411B0006000800160008002600080036000800460008005600080066000800760008008600080096000800A6000800B6000800C60008000D5D410500D5000800E5000800025D00B800004558B8001E2F1BB9001E00093E59B800004558B800142F1BB9001400053E59B8001E10B900030001F4410500D9000300E9000300025D411B0008000300180003002800030038000300480003005800030068000300780003008800030098000300A8000300B8000300C80003000D5DB8001410B9000D0001F4411B0007000D0017000D0027000D0037000D0047000D0057000D0067000D0077000D008700 + 0D0097000D00A7000D00B7000D00C7000D000D5D410500D6000D00E6000D00025D3031012E0123220E0215141E0233323637170E0123222E0235343E023332161701AB11412629422F19192E42292D3E14331E573D395C412424415C392F611E01691B231D3345282844331D221B26252C25425A35355A422529280000020038FFF4022102F40016002A016EB8002B2FB800122FB80000D0B800002FB8002B10B80008D0B800082FB8001210B80010D0B800102FB8001210B900130004F4B8001210B80015D0B8000810B900170004F4411B0006001700160017002600170036001700460017005600170066001700760017008600170096001700A6001700B6001700C60017000D5D410500D5001700E5001700025DB8001310B8002CDC00B800004558B8000D2F1BB9000D00093E59B800004558B800142F1BB9001400053E59B800004558B800032F1BB9000300053E59BA00110003000D111239B9001C0001F4411B0007001C0017001C0027001C0037001C0047001C0057001C0067001C0077001C0087001C0097001C00A7001C00B7001C00C7001C000D5D410500D6001C00E6001C00025DB8000D10B900260001F4410500D9002600E9002600025D411B0008002600180026002800260038002600480026005800260068002600780026008800260098002600A8002600B8002600C80026000D5D3031250E0123222E0235343E023332161733113311233525141E0233323E0235342E0223220E0201DB1E603337593F23233F593733601E024444FEA3182D422A2742301B1B3042272A422D184F2D2E26425A34345A42262F2E0171FD0C4F9B2745331D1D3245282845331D1E3345000000020038FFF4020401E000080027011BB800282FB800002FB8002810B8001ED0B8001E2FB900080004F4B8000010B900090004F4B8000CD0B8000C2FB8000810B8000DD0B8000D2FB8000010B80015D0B800152FB8000910B80029DC00B800004558B800232F1BB9002300093E59B800004558B800192F1BB9001900053E59BB00000001000C00042BB8002310B900030001F4410500D9000300E9000300025D411B0008000300180003002800030038000300480003005800030068000300780003008800030098000300A8000300B8000300C80003000D5DB8001910B900120001F4411B0007001200170012002700120037001200470012005700120067001200770012008700120097001200A7001200B7001200C70012000D5D410500D6001200E6001200025D3031012E0123220E0207051C0107211E0333323637170E0123222E0235343E0233321E0201BF034F49223A2C1A02018401FE7C011A2E3E24354D14332A653A34594025244056323754381D010E4257192B371E16071009233E2E1B312028352E25425A35355A4225253F540001000C + 0000014503000019006CBB00020004000300042BB8000310B80007D0B8000210B80017D000B800004558B800062F1BB9000600093E59B800004558B800182F1BB9001800093E59B800004558B800022F1BB9000200053E59BB000B0002001200042BB8001810B900000001F4B80004D0B80005D03031012311231123353335343633321617072E0123220E021D013301206E4462624E510D1E0D0C0B160E1B2313076E019BFE65019B3980505C03043C030412212C19780000020038FF10022101E00026003A01F8B8003B2FB800082FB8000AD0B8000A2FB8003B10B80012D0B800122FB8000810B8001AD0B8001A2FB8000810B9001E0004F4BA001B0012001E111239B8000810B8001CD0B8001210B900270004F4411B0006002700160027002600270036002700460027005600270066002700760027008600270096002700A6002700B6002700C60027000D5D410500D5002700E5002700025DB8001E10B8003CDC00B800004558B800172F1BB9001700093E59B800004558B800232F1BB9002300073E59B800004558B800082F1BB9000800053E59B800004558B8000D2F1BB9000D00053E59B800004558B8001E2F1BB9001E00053E59B8002310B900030002F4411B0007000300170003002700030037000300470003005700030067000300770003008700030097000300A7000300B7000300C70003000D5D410500D6000300E6000300025DBA000A00230017111239BA001B00230017111239B8000D10B9002C0001F4411B0007002C0017002C0027002C0037002C0047002C0057002C0067002C0077002C0087002C0097002C00A7002C00B7002C00C7002C000D5D410500D6002C00E6002C00025DB8001710B900360001F4410500D9003600E9003600025D411B0008003600180036002800360038003600480036005800360068003600780036008800360098003600A8003600B8003600C80036000D5D3031171E0133323E023D01230E0123222E0235343E023332161733353311140E022322262713141E0233323E0235342E0223220E02731C613632462B14021B633337593F23233F593733621C02441539624E41762A3E182D422A2742301B1B3042272A422D185E24321D324326582C30243F583332584226302D51FE3026564830322C01822542321D1A3043292542321E1E324200000001005C000001F102F4001800C2B800192FB800082FB8001910B80015D0B800152FB900140004F4B80000D0B800002FB8000810B900070004F4B8001410B80017D0B8000710B8001ADC00B800004558B800032F1BB9000300093E59B800004558B800072F1BB9000700053E59B800004558B800142F1BB9001400053E59B8000310B9000E0001F4410500D9000E00E9000E00025D411B0008000E0018000E0028000E0038000E0048000E00 + 58000E0068000E0078000E0088000E0098000E00A8000E00B8000E00C8000E000D5D3031133E0133321615112311342E0223220E021D0123113311A21358325959440C1D31251B3328184444018729306A57FEE10103253C2B18162D452FF002F4FE93000002004D000000AD02B80003000F0082BB00040004000A00042B411B0006000400160004002600040036000400460004005600040066000400760004008600040096000400A6000400B6000400C60004000D5D410500D5000400E5000400025DBA0001000A0004111239B800012FB900000004F400B800004558B800002F1BB9000000053E59BB000D0002000700042B3031332311333714062322263534363332169F44440E1E12121E1E12121E01D4B4151B1B15151B1B0001005C000000A002F40003001EBB00000004000100042B00B800004558B800002F1BB9000000053E59303133231133A0444402F4000000000100560000031D01E00031010ABB00270004002800042BBB001A0004001B00042BBB000F0004001000042BBA0008001B001A111239B8002810B8002CD0B8002C2FB8002710B8002DD0B8002D2FB8002710B80030D0B800302FB8000F10B80033DC00B800004558B800032F1BB9000300093E59B800004558B8000B2F1BB9000B00093E59B800004558B8000F2F1BB9000F00053E59B800004558B8001A2F1BB9001A00053E59B800004558B800272F1BB9002700053E59BA0008000F0003111239B8000B10B900140001F4410500D9001400E9001400025D411B0008001400180014002800140038001400480014005800140068001400780014008800140098001400A8001400B8001400C80014000D5DB80021D03031133E0133321E02173E0133321615112311342623220E021D012311342E0223220E021D012311342627331E0115339D145333132927210C185339595944374225331F0E440A192C221831271844020241020202018429330817261E30336A57FEE101034A5A1E313E21F9011122382715162D452FF0016D133C18132E0F00000000010056000001EF01E0001D00E6B8001E2FB8000C2FB8001E10B80019D0B800192FB900180004F4B80000D0B800002FB8001810B80003D0B800032FBA000400190018111239B8000C10B9000B0004F4B8001910B8001DD0B8001D2FB8000B10B8001FDC00B800004558B800072F1BB9000700093E59B800004558B8000B2F1BB9000B00053E59B800004558B800182F1BB9001800053E59BA0004000B0007111239B8000710B900120001F4410500D9001200E9001200025D411B0008001200180012002800120038001200480012005800120068001200780012008800120098001200A8001200B8001200C80012000D5D3031131E0115333E0133321615112311342E0223220E021D01231134262797020202 + 145A325959440C1D31251B33281844020201D4132E0F29336A57FEE10103253C2B18162D452FF0016D133C1800020038FFF4022B01E0001300270179B800282FB800142F410500DA001400EA001400025D411B0009001400190014002900140039001400490014005900140069001400790014008900140099001400A9001400B9001400C90014000D5DB900000004F4B8002810B8000AD0B8000A2FB9001E0004F4411B0006001E0016001E0026001E0036001E0046001E0056001E0066001E0076001E0086001E0096001E00A6001E00B6001E00C6001E000D5D410500D5001E00E5001E00025DB8000010B80029DC00B800004558B8000F2F1BB9000F00093E59B800004558B800052F1BB9000500053E59B8000F10B900190001F4410500D9001900E9001900025D411B0008001900180019002800190038001900480019005800190068001900780019008800190098001900A8001900B8001900C80019000D5DB8000510B900230001F4411B0007002300170023002700230037002300470023005700230067002300770023008700230097002300A7002300B7002300C70023000D5D410500D6002300E6002300025D303125140E0223222E0235343E0233321E0207342E0223220E0215141E0233323E02022B25425C37365C422525425C36375C422548192E422929412E19192E412929422E19EA355A422525425A35355A422525425A352745331E1E3345272745331D1D33450002005AFF10024301E00016002A0167B8002B2FB800172FB8002B10B80001D0B800012FB900000004F4B80003D0B8000010B80005D0B800052F410500DA001700EA001700025D411B0009001700190017002900170039001700490017005900170069001700790017008900170099001700A9001700B9001700C90017000D5DB8001710B9000D0004F4B8000010B80015D0B800152FB8000D10B8002CDC00B800004558B800082F1BB9000800093E59B800004558B800122F1BB9001200053E59BA000500120008111239BA001600120008111239B8000810B9001C0001F4410500D9001C00E9001C00025D411B0008001C0018001C0028001C0038001C0048001C0058001C0068001C0078001C0088001C0098001C00A8001C00B8001C00C8001C000D5DB8001210B900260001F4411B0007002600170026002700260037002600470026005700260067002600770026008700260097002600A7002600B7002600C70026000D5D410500D6002600E6002600025D30311723113315333E0133321E0215140E02232226272325342E0223220E0215141E0233323E029E4444031D613237593F23233F593732611D03015D182D422A2742301B1B3042272A422D18F002C4512E2F26425A34345A42262F2C9B2745331E1D3345282845321D1D334500000000010056 + 0000016001E0001A00D0BB00170004000000042BB8000010B80003D0B800032FB8001710B80004D0B800042FB8001710B80007D0B800072FBA000800000017111239B8000010B80019D000B800004558B8000B2F1BB9000B00093E59B800004558B8000E2F1BB9000E00093E59B800004558B800182F1BB9001800053E59BA00080018000B111239B8000B10B900120002F4410500D9001200E9001200025D411B0008001200180012002800120038001200480012005800120068001200780012008800120098001200A8001200B8001200C80012000D5D303113342627331E0115333E0133321617072E0123220E021D0123115A0202410202021450320D150B09061C0E1B32251744016D133C18132E0F29330203400204142B432FF0016D00010026FFF4018F01E0002F0181B800302FB8001F2F410500DA001F00EA001F00025D411B0009001F0019001F0029001F0039001F0049001F0059001F0069001F0079001F0089001F0099001F00A9001F00B9001F00C9001F000D5DB80000D0B800002FB8003010B80027D0B800272FB900080004F4411B0006000800160008002600080036000800460008005600080066000800760008008600080096000800A6000800B6000800C60008000D5D410500D5000800E5000800025DB8001F10B9000E0004F4B80031DC00B800004558B8002C2F1BB9002C00093E59B800004558B800132F1BB9001300053E59B8002C10B900030001F4410500D9000300E9000300025D411B0008000300180003002800030038000300480003005800030068000300780003008800030098000300A8000300B8000300C80003000D5DB8001310B9001A0001F4411B0007001A0017001A0027001A0037001A0047001A0057001A0067001A0077001A0087001A0097001A00A7001A00B7001A00C7001A000D5D410500D6001A00E6001A00025D3031012E0123220E02151416171E0115140E0223222627371E0133323E02353426272E0335343E023332161701530F3D2712241C11363A534F1F323F203564203612462A16281E124743152F281A1C2F3C20315C1701651D2508121C1321230C1141372837230F2C2F281F2A08141F17252510050F1D2C21243321102C280000010004FFFA012D0258001B00C0BB00020004001300042BB8001310B80017D0B8000210B80019D000B800004558B800162F1BB9001600093E59B800004558B8001A2F1BB9001A00093E59B800004558B8000E2F1BB9000E00053E59B8001A10B900000001F4B8000E10B900070001F4411B0007000700170007002700070037000700470007005700070067000700770007008700070097000700A7000700B7000700C70007000D5D410500D6000700E6000700025DBA000A000E0016111239B8000010B80014D0B80015D03031012311141E02 + 33323637170E0123222E02351123353335331533012D840A131A0F0E1F0E03122717132A241761614484019BFEEF1A22130708073B07070A1C3027012439848400010056FFF401EF01D4001D00C7B8001E2FB800172FB80000D0B800002FB8001710B80003D0B800032FB8001710B9001A0004F4BA00040017001A111239B8001E10B8000AD0B8000A2FB9000D0004F4B8001A10B8001DD0B8001D2FB8001A10B8001FDC00B800004558B800002F1BB9000000053E59B800004558B800072F1BB9000700053E59B900120001F4411B0007001200170012002700120037001200470012005700120067001200770012008700120097001200A7001200B7001200C70012000D5D410500D6001200E6001200025D3031212E0135230E0123222635113311141E0233323E023D01331114161701AE020202145A325959440C1D31251B332818440202132E0F29336A57011FFEFD253C2B18162D452FF0FE93133C1800010010000001D801D40007001400B800004558B800002F1BB9000000053E5930312123033313331333011A4BBF4C9802994901D4FE74018C0000000001001A000002D001D4000F007600B800004558B800002F1BB9000000093E59B800004558B800032F1BB9000300093E59B800004558B800072F1BB9000700093E59B800004558B800092F1BB9000900053E59B800004558B8000D2F1BB9000D00053E59BA000200090000111239BA000600090000111239BA000C0009000011123930311B0133133313331333032303230323036371027E4280027048944A7D027B4A9401D4FE84017CFE84017CFE2C017BFE8501D4000000010010FF1001D801D40012007500B800004558B800072F1BB9000700073E59B800004558B800092F1BB9000900073E59B8000710B9000C0002F4411B0007000C0017000C0027000C0037000C0047000C0057000C0067000C0077000C0087000C0097000C00A7000C00B7000C00C7000C000D5D410500D6000C00E6000C00025D303137331333030E0123222737163332363F010333FB02914AE915413D1F1E07181A23280F26C84C49018BFDB33641063E082B286201D300020014000002A501D40011001C00A2BB000C0004001900042B410500DA001900EA001900025D411B0009001900190019002900190039001900490019005900190069001900790019008900190099001900A9001900B9001900C90019000D5DB8000C10B8001EDC00B800004558B800042F1BB9000400093E59B800004558B800002F1BB9000000053E59B800004558B800022F1BB9000200053E59BB00060001001200042BB8000010B900130001F43031210B012313331733321E0215140E0223271733323E02353426230184919847C33C3F9534492D14182F452E844C281C30211343400182FE7E01D4A21729382020382A + 18FCC50917261D3A280000000001000000020000DEE514725F0F3CF5001903E800000000C05A9A6900000000CC4602CDFE76FE65051D04A80000000900020000000000000001000003E8FE9200000621FE76FED7051D0001000000000000000000000000000000210200000000FA0000012C0020012C00460104002D014000300104004C02BC000A0250005E01FE005E02340032023A000C0216003701F40038027D0038023C00380127000C027800380247005C00FA004D00FC005C037300560245005602630038027B005A0168005601BC0026013D00040245005601E8001002EA001A01E8001002C300140000006A006A009C00F2010A0122017401AE01F0021A032A035C046A0528061E06E807460894091C097809940A600B000BF60CE80D7A0E800F0A0F9A0FB81014107010F0000100000021006C000700000000000100000000000A00000200032700000000B800002B00BA0001000300022B01BA0004000100022B01BF0004004D0043003400260018000000082B00BF0001006600540041002F0018000000082BBF000200560043003400260018000000082BBF00030027002000190012000B000000082B00BA0005000400072BB8000020457D6918440000 + 00>] def + /CharStrings 33 dict dup begin + /.notdef 0 def +/space 1 def +/parenleft 2 def +/parenright 3 def +/comma 4 def +/hyphen 5 def +/period 6 def +/A 7 def +/E 8 def +/L 9 def +/S 10 def +/T 11 def +/a 12 def +/c 13 def +/d 14 def +/e 15 def +/f 16 def +/g 17 def +/h 18 def +/i 19 def +/l 20 def +/m 21 def +/n 22 def +/o 23 def +/p 24 def +/r 25 def +/s 26 def +/t 27 def +/u 28 def +/v 29 def +/w 30 def +/y 31 def +/u0459 32 def + end readonly def + currentdict dup/FontName get exch definefont pop end + %APLsfntEnd + 42/FontType resourcestatus{pop pop true}{false}ifelse + {currentfile 0(%APLT1End\n)/SubFileDecode filter flushfile}if + /FontInfo 1 dict dup begin + /FSType 4 def + end readonly def + /FontType 1 def + /FontMatrix [ 0.001 0 0 0.001 0 0 ] def + /FontBBox{-394 -411 1309 1192}def + /UniqueID 4332914 def + currentdict currentfile eexec + 54544758EC884CF30C3CD503CEDBFF3839C47C3C3333173232E3FDBFF439491DB843E1924E63AA7726BBB0485AB56D93D8C0906F647A47162891E73FFC2A9873C4B1EAC5EEBDFFC4D06084FBD84139DF4583C6E259D10699944D1068C9C45667DCCCFB9B7EA01B606435EDCBD273ABAC093D14085CCBAC149BD7382E842CFE0D7FE4FD2EF589A2471F6074A80A8B675C2F7A50D63AC1EF90D787BADD11633CB01CF6EE3B37AAF9078A69AC4740E9B6525D78BBD839551A1CB80DB8682FA5E87591BBD6EE8B946063A2A58D9CA3685AB305495DC5FB5747EB8A9A059C4976C0FE4EEAB1D56FF47F1E9664ED9F4A7DAB763AF92B2F6CF2FA7DEC24710E0B9096E30F772BA7FEA9BDBE496C42ED2CEB58F54E80BDF57CE7B4DB6CCFE7182F43BF93CCA0767AF95D62C5D2C3DC6AE1E6D139F51A2C63432117F1714C5566572EE9967A715420ABDCD1D7BD74F8450B89965FCC81C6ACA565C5F3CCF91D430D1F953E4F1A645300A98DD8C47CD64555F08F422340A85404EAE0D3229C4F9336B9470CACBD6BBF3395104750A915CC6EAAC197668267B8C62D2764C8CD69FD937CA3C924D997A0EDE7964BEB9EA2F92EF70C5E5DA0AA5567765E71F2B911B3C5586B741EEB93F3C73016EC16BFF283758900903D203992EFC8BAFAF13579C602F38C9312448060975EE3A7373C3A15976847AEC4213ADF0F8E546DBAEAEDA222E72E4B676F122CE7CC6EE3439AB2FB333E4771EEADE31E8DDDC0665D4F5237D01882DAE6770CFC123E1055EF9EC78AF0C847950F04CF0123FBF7F76ED80BC1C97E37B6BFA46CAE084FD2065D3218FFD2BD747DC0D7ED959146FDEA319025D165F2D7A610EC7B54D49B8CF22ED6752FDF4BE208352A3E0C7BDD952C85687D5B58B8DB3E6D6568D86BF6C42C4AA2D3A180AAF60DAE7B20C5C214F0623DA0664C39867D44DCB2B2806B3F7DDFB2B83567A3A5CAB24FF7F68A0CF79971955005EBF49D9828C04B112F534292CEE4A270B6526183B7C9BBD4D75F850A271A8EF73BA1510C2137788A90438574DAE76D883ED4C7DAB87E366C4323F4F13064EF27AFD617D8E471E7D602B3CA933A082974815E3D422A318B1BC90792468D81AEF727D4CB23FC277511CB3F1563A24B3D93BDC6A2F7A0D2A0E26500F29B0BD20FBE20DD5D67CE8C8ACD916D85C2A0A81A6B192B1B163B0514580A991C728C7925AD6599413BD5F922CB29CBCDE56D43D8D7000F210BDBFAB759A99CB4D857A87BACB4529A80419D6987C3C4AE6B6BBA1AA0823571BB57214EE36A35850F018AF6CFAB5C68C5106A6D8EF0BB70338D3F046E1F33925DDED1B77A898C9E58F697C0BAA4EC01788DEDC6A02A6F70EB9935BBCC3A84B304A10BEA8C8FC1D8377A4BD6C85AE8FBFC9F24066EB43B8F92CF578468E7D2350CF244724309D9DCCA41A1528EE4B54B1F36 + 1DDE6A0191DC31C55A0705F4EB885EDCF9A86CE810E429D70C31EBBE1B483314D4E9A592BBC6F35E36DF1938B8543CE28B50E5BBD461ADA44E77422AB33578B2E1D0863C9627F6F0B8F43A686529B303D2E8193645815DA7C63D808ED57E4B130BEDB1D2CEDDEE844B8E360227B69CE48087627A4A019A6C9DEEBD7D2D59D5442E6BA10F7DE7334FC009BEAE55BBAD6C5AE565DC7B5A789CFFA76225D4F177B577A975C252C527957888F445AD59E7FAE06BA65D330CD1CBEECD0BAFA40EAA5FE75EFA842FEC5DA8FAC7033B876F9FD90425FD688AF503C8E9B6926C99A7C87D509E73D55B19707C47DC7CD29348F957D2B29E60E0518E593824CA2E5E4B6D999E39CCFF1F6DE848375D1B74BEF5C81C790B1813306EDC24E27C65CBAFB4F1386A9E506BFF09897E43842ADA1FCBE93038A6CD4E261BBF7CDD0D9DED321DA63E027AC99110C2BEA2C20703FCCC5FC0D27034F5CA8C361BD2050F0D3A289F7A00A9146909D72177BE21EEEA8C6CBFD0274A1E871CC55F47DB1EBF55534CD7251C1AACDC5CC9458FD19F488EAE87D203759E9E215F6DAB35FB5DBE51EDEE6CD7B0B4F44637DC47E8A58BF3A68AEF032CECF4923395FE766136406587C07019FE2C64959AB2855A68E0526CCB2E433AAE83E59C798EE1CB14D0C002E2DDD195C18C20FA16C65CFB0CC71F32F3C62E47D4C6E7F06EB43AE5A578EB53894337FFC40BB3ED926EF6A7A43AD2C5AB9A5B2BD9EF4F59F8436E81ADC78E01E3C984E6A4ACB2759E68CC22F00B141E98BC9294FC576EBBE28144DBCEF927B4002AEEECA8C46FD302973F8C005980355608FF35BE33077316F41AE0B833B2DFB5250BC81FA051E44A23559E0C2198726C6269A91E45A9943FCA5D81140B0DAA9125B61C637578A7FCADFC3881E4FE8BC1B2B7154B4AE95D55E023D0539453F1945CCB412FF2D2B54929CD201766C73C0D793F2A594AC08C95C525AF7CE0B14EAF8B21F9BDC71E5044B59BE5EF52F8D4EDDDB7C70EE67E5C79273C3E0D185C932AB824EFD6C6A5859C1AFC56116FFB5038AB10ECD3931B283055FA3B4C5FCDD94AD291C8068D992B8C868E25D23428FA382727B9C848CCD5FE464F90D3D3A8437DF35AF021906C136B700259DB4314CD23D1009EC858ADF8D8D24802D72F240A70A2C2A1FC6B4BBB86F3623E0C8C53DD7C334F724E81449109BBB3ADBBF74F3A1DC71654A1957AFF62DFE53BCD7BFA905359C5CA1BE2D5985B4501F278D423D2468E9C2041CFD1B353639D398FD47367C9450CB96D14B16A2EE534F3160FE366BF9DA1C34C6460978D2BFE32B86B5AEC18E4E890574AF7A482B5FBBF8722D9F3B7D1A26B7F798B0A2B2569028A70C2E3373D4CBDDF5FF2B29A6085C826C69241048BF80B15935095637BDF3B19BC996A590AC125B6F00BDEE629B6343B0A1F3058E2ACDB343E + 4E3A973D887D6091CCA08014BBC9B1FBD0390D0BEF934C511D61B43648090623E10FB70D3EA13B57BEEDD5C4A1229D72EE0510EC7DDDC13D4147EC9091DFB5FEDBC5D0B02DD2BEE8882BC6D803F1DC5741FECE7A27B4D7BA18C3782E5DCACB6E1D183BA42E0C452717AE951E429088A83B88AB22878792722B440041C823BC0D35C9E1E45AC618903EF3E13EE032039EA55F0192ED3F557F04327FB33B00227678AB5A584864D73AA2C9BC2E0AA42E9FDB1AE71D112A4B73CEDEB9899A99147255C6C9E938AF8A2782E1A9344054826F117866B168F9AC34CF2FA7B11129677D5A574329989AE48020DDE6D0704D201B8770B73D143C0BB2FD4C5A335E681D06EA74A2406B55B5924361BAE71A8D107A37EC6BECE897FCC294A89C5EA4323012B0EBA29D32C0DA7E29CB5F979DCAA35CC01C323BA37E58B28A1B3573D0F8CCC07019C5877B2E53F78DC3B66E8D689CC21598EF94CA46696F5CB6197F1C888674C44D44FB7261FEADBB1697B2575F9EEF0A4A1C480210FC850148D5B4B8DA99B5E471517EF1F66E5FCA2C1392651E5A7945F46119D656C4816C8519DA76F24A938963507A8BDEF28C920E21B70F19923B7C441636C6156595009004ED57BC9991042068ECF656E90C891A4985C6489AA43E75EA1D0B4EF8B8AE0732DD0A0C1EF2080204C603CC7DBA88DD9A778D510B3CD0CD4A3716BCAA7985E5033585DA0DA1D2A154527A1FF083300FAC07C5840FDEBC9EC7F1961FEBBBCB6AA1C126D7CB6294EBB05AFE9920AEBC42760EB80B77FC01C1CF8DCDF6D421056FDA74B6928ADB7B720ED55787A14F839E3C7A2ACCB11B03274E32A2EC3C5FA4FED88E320D236F6482181879A71E8508A3F023D8B0EA6C4BC0CC800F9BDB5B03D8B6C8315A4560285BC9034072502D1B3EAC091099305032AB0A3BFE264EA6FB872328E684A25FBC82B2E375BF6FEB46A79249C4E1EC0230EC69367C92654EA2750EF75585269EC681815291BC855DD609104ECFC25D47E56CE480866AC43E4EE4393A1854BA6C1793A9A08EFB4876A9F219E2420E3A62C039DA61C9659C86B0A59CF3F1E3B3F57A87BB6223D979EC9FFF7E6BE576A6D19A5E6494D44B1D6C6453F979096632D390DF676B2BCB1A77547C0B99BAFDA5278ACF3EF7B36E13DD9DD562196E4A4F36A9DB949C2350654D2611059574854727E48C069C5624CFF3D068D55E9AA29B26622024932196303E91CC3DE6C761FAE6ED6E717413E5615FEB3B614E10D7EC1514519906325C79C0E11CC7CF253890884CBB18820C007B3ED886CD1C553B05019FBCEE6F7FA61F743BB25F82AB95C72F118AF72817FE920F5BC16C1DCBD5E14B5E41054C18C97593882EC8472172AD9481020B382AA41EA560FA3C3AB37EBFCB89B4DEE4C3B236DFD3408843268098BCE3B0FF750C261CEC0531630A785A2316 + 771F48CD931BD7EB459500707BA8E0C0CC0941A4D861B66CA2D6989A72A13A52377C913CFF92106A5A4865570BB9BAC187EA7C1E70A84A91497B130819B65A2E7D543922BB32F80FF182E6E04A8AF787BD3BE120EC56B90EFE983C8AB7E60FDD033B007CAB95A413506CE46E910AD5C7E6E007F8C39DEBE96DDAD96DEFE5F9303020863669CB5312125ED5B46A81510F855D5FB3E6A1B3F49DA86D2DB9C389D1418E0E02195964B7E4B99D0CFEB5C1102FED57BDE3E0B095C5610B5735AB45A7E8C62F08C635E3AD72725A009A099E65B37DC2C4079781EE5B718F954E3123B27F6FB8DCF8598044A6141A32935889565FD27107C002669F03ECFB9A282622FA0402C8DEA5FFED95C0960AA879677D45D3804A18433DB994A8D44CC167AB99EC8CE3855288D74DFFB62C22198EFEE925205BA1A823B1CFEA7AA580356EAC03DC13ECBDFEDBF2145139F44D03A5BCEB76F36993DADDFC7ACEF886A17DF0B4CCF54D99FBCC8226D81E65C28E6EEE73174AB70CCCE6886C7A4B44760DE7BE7ACBA961BA449AF77541F8296B84A3F3FB751C1C5B640926B8AA147D31913F526F732DF13B0A1389EA606DA5A274114ECF9BB8A54FDB07F44629CCDB619C8357574EE602620A5D04B4ADCD5D043A49E9651BBB344DC8DBE0112CC472D7CD0A1B77D004F2157E6C8144978ADC636324DA2B7D20015110EF54287FC653C3CD9DA6C3372CF58A717BC57090AF2F491005648C885C5BFAF5110D40F2B98A684C1F803CB4CC38C8FF95445250149ADE4B902DC42F6AA3B2E20DE2289EC303D5E8041AAA918230822EA0177793D8649BE48D3E0080C7C4CFF22CCE3F57DEAD89B0517A347DDFE0F2E6DB1A1750A1A0A2C052B80F576938AFE7153E86A5CFF6EDE5A7C5FE246CAA03DBBF9D7F3F0E063CC41291AD586EF9DE8B535D3A0F300952592A45E04F5BBDCC8D9A16BAB6724EAA746D9BA641FB5BECE02A56CBED4F7D8B877B571B246A2219C083D7E0C40517C9440A53F4D079647EFB3956C4A937250BADBCC8824B01FFC6533970674A9C48368F7EDB17CCF20313A10DAB42BB3BFA815A641A3DA1B27966D259E42A28774E8E25DD7BE312DB5D71FCCC548E8E6C4F567CDF9F9008023ECF763879CE516EF0CBD41F418AF3A1CF65511C8F50167BAB876ECE1C5499865816DDF20F4B1EF48659840512FDD1EECD2247121B2802A7B37908000F513C8D96DD396CF5D086D140CA7D0308113A1098C651B8A2182FEEB0535207B5C9BFC6D5728524667869118260D67FE2DFD682A79E8D01032FAFA51F9EAFAD6954B9D20C2F0EC5820A42D1AA908059D1A61CE99ADC169011DEF8BEE4F61D7850FF6252E8B83660EAF3C60F09F8EB4B5B272693B73A12E61698A916F8F1DD6CFB514752FD7CE9153EA116EC420A07EEF41DD8A40D4E5822C33B79C1CEBA11E07969FEE0 + 386C5611976FF03E98FF5EF96D1EFCAA96782BED61185BA878742823577905DC617907CDA4518D5694231058AA3E576A19C96D39F08E8777D5641C5484B2BB4B1196366C1C97DD9CE22612F3CEC7602525D4E8E824003C6803887F3A0B01D0D914FA1BDBA288FD0A4C4006509BFB35ACCF0EA5B6F6402BA5CA3C46CDE330746EA23AACE70BE4387AB35D082C3079173891AF1F4E0F19B9894D4D84C5261369033FF292E261755ED2EA549039AB8EBCBB7DDCF62F1E73F66011E4576E8014149AD3164BA8B1DD7E7B7FD4F3305AC8851CC7DC66A76A3F707C49C06F6980933FCA0FBE7D4C501BB7D71C7C2CFEF3A839909FC0A376DC3F9F6D2CE4CE189994AEF8C1072968189D64A022D1E9C5611A7F3F45462ABB668CDCFE62B570C0C6C153BF31228A6642928E89A46CF7E4C2F6EC07F48291716B40180690107D04FEF1AF9421DE923A0EDBE233B8771F27CC89E3134A10F9B16DC86F49F878311A4AC942F319CE41E6D83D12864E4A8F8DC582B40842AD35741FAF69B616F444E9A7C98DC4EFB0B885291C9CB52A9E4E9F407536C8C7E85A08EC730064FE5AC935A394FEEAF33160CB3F41342E49DE7F8417901245EBE8BF26436EA787A3BE2571CAEB8075B2AD02F6CC1E739EA45DD3CB5EFCA66C9A264AC178092077E9E274D4E63450989E3820251AF6CD9C50410F5D523328D7F93EEFDD8A530A21DFE4D0C304E8859BA8C88E53B88FD015B17B585CAD09FC729F8D5B29023151FA6A7BBCC7ED59327E48E93A1AA4EB4B449672ED19F7D049F86BBB259FF8B68EC53CF66F37063CA9FE8562E70C18AAEC7D9EDBD8F8A2E2B88A9F0B9A2A032BAEBBAC8C0B68AE919B9EFB59C2009A226DBBE38ABE4D4872B6A0893F76C0F1B61A1B1C17D5FE5D0899B54180251845BF7AFB943BF3DEC899B2ADBA5C24EAAA1D1F6EFC2E8FEF26659992D286C2ECA2B6DEC36AF15241223CCCF80E112D364A565E956658F6CF7CCDE75B8E0BAB58125F48CF992A4DA5B2394AC1CB6DB4F8682F90E96285D2A8DAEBFD704F04120C6A3F84ED9059677AD4AB1D2BA52736CD44702BF7544B2F5A798124A6CF99FD3E215942AA2208F3FF773CDCA52D6BDC63C3AFA75EFF22837377A0E4F92CF89957F7E7D85B21436FB16C15B173D3300D28015B6E655F2804AB79593C38EB4FFF97ED6C152AA26136D0B58F0664B8C97FD713E9541F9C0B3E0D32AAE1BC9C61866AD45C8E1D571D5E41AC7F71012E88742231DAA64753F7B22F8844F5F91082E11E594C78C66F25FC173F9A277757874D484E005F31728C17F1D3B1250E8338732C8957D7A180D39A9CD6185133A4FF7A384F7FDD344F4B2BCD519AFD656C8A0182D2A87EFBEE43F9544D6021CA4772ED27807466CF46C45EE1A3D884242851A7823AD107442CD0D32E0A5860220E90F96ACF88F429F8B109FDFFE3C149 + A2F9E420C57FA862DC3D56DB30A05B1BBCA1AE18DD76372417FA60BB252DFFC75EAB285901006E2BAF19E7E6DEEF1F7FDEA50834CC08859223C6B75A9138B6E5D13957D18EA6980197FB7F6D7C6B4B110922F5CC20CE424BE945E84EA04C171EB0C8138A79D61B8D41505FFDC2788E60D5C877F17F26A2297972D7618D905EE292BBBB528B0EEE2FCE8431BE7470EC0AB69DDB92FB85B59619E50367BE4FA560EBBE818AED0FB62309B671C7DDCFFE4A2FAC4A48CDB8A1FE63A023C13AD40C7BECD61322493C5201ED3F069F35265B63F304D2950BB03393FD8AD363AA59E89106EE428102C8FDFAF122E153B40FB29053CC3FACE67E4DD14F3EDC492B3D24E639BF29222714E6FDBAF951CC3B82EC65132FD8080494C3A341BCA6C3A1344E240F7E11EC93CBD0B9143ADD488F30254750DF338D1624C34B4E029247B17160E3699FFDCB3CEF31349F2123C961B2346D27EC48DDE054C2F98F406E98F5F12ED94BF1585D42544070A77E15086D64ADE20B450420FF806622B100669AD2254888BA266E07F9D1AD10609EC8ADE7CCE0C0E93EBC959C8A5105B6D9E4CC879F68ECE0F69C1C6322B112D8F7216D617A4C9F61E39EA5F02187DE2EC194DE1915F6 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark end + %APLT1End + %RBIEndFontSubset +/AvenirNext-Regular cguidfix +/F3.1/AvenirNext-Regular renmfont +[ /CIEBasedABC 4 dict dup begin +/WhitePoint [ 0.9505 1.0000 1.0891 ] def +/DecodeABC [ { 1.8008 exp } bind { 1.8008 exp } bind { 1.8008 exp } bind ] def +/MatrixABC [ 0.4295 0.2318 0.0204 0.3278 0.6722 0.1111 0.1933 0.0960 0.9578 ] def +/RangeLMN [ 0.0 0.9505 0.0 1.0000 0.0 1.0891 ] def +end ] /Cs1 exch/ColorSpace dr pop +[ /CIEBasedABC 4 dict dup begin +/WhitePoint [ 0.9505 1.0000 1.0891 ] def +/DecodeABC [ +{ 1.0 0.0 3 -1 roll 1 index 1 index le { exch pop} { pop } ifelse + 1 index 1 index ge { exch pop } { pop } ifelse < +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000001010101010101010101010101 +0101010101010101010101010101010101010101010101020202020202020202 +0202020202020202020202020202020202030303030303030303030303030303 +0303030303030304040404040404040404040404040404040404050505050505 +0505050505050505050506060606060606060606060606060607070707070707 +0707070707070708080808080808080808080808090909090909090909090909 +0a0a0a0a0a0a0a0a0a0a0a0b0b0b0b0b0b0b0b0b0b0b0c0c0c0c0c0c0c0c0c0c +0d0d0d0d0d0d0d0d0d0d0e0e0e0e0e0e0e0e0e0f0f0f0f0f0f0f0f0f10101010 +1010101010111111111111111112121212121212121313131313131313141414 +1414141414151515151515151616161616161616171717171717171818181818 +18181919191919191a1a1a1a1a1a1a1b1b1b1b1b1b1c1c1c1c1c1c1c1d1d1d1d +1d1d1e1e1e1e1e1e1f1f1f1f1f1f202020202020212121212121222222222223 +2323232323242424242425252525252526262626262727272727282828282829 +292929292a2a2a2a2a2b2b2b2b2b2c2c2c2c2c2d2d2d2d2d2e2e2e2e2e2f2f2f +2f2f303030303131313131323232323333333333343434343535353535363636 +36373737373838383839393939393a3a3a3a3b3b3b3b3c3c3c3c3d3d3d3d3e3e +3e3e3f3f3f3f4040404041414141424242424343434444444445454545464646 +4647474748484848494949494a4a4a4b4b4b4b4c4c4c4d4d4d4d4e4e4e4f4f4f +4f50505051515151525252535353535454545555555656565657575758585859 +59595a5a5a5a5b5b5b5c5c5c5d5d5d5e5e5e5f5f5f6060606061616162626263 +63636464646565656666666767676868686969696a6a6a6b6b6b6c6c6d6d6d6e +6e6e6f6f6f707070717171727273737374747475757576767677777878787979 +797a7a7b7b7b7c7c7c7d7d7e7e7e7f7f7f808081818182828283838484848585 +86868687878888888989898a8a8b8b8b8c8c8d8d8d8e8e8f8f90909091919292 +9293939494949595969697979798989999999a9a9b9b9c9c9c9d9d9e9e9f9f9f +a0a0a1a1a2a2a3a3a3a4a4a5a5a6a6a6a7a7a8a8a9a9aaaaabababacacadadae +aeafafb0b0b0b1b1b2b2b3b3b4b4b5b5b6b6b6b7b7b8b8b9b9bababbbbbcbcbd +bdbebebebfbfc0c0c1c1c2c2c3c3c4c4c5c5c6c6c7c7c8c8c9c9cacacbcbcccc +cdcdcececfcfd0d0d1d1d2d2d3d3d4d4d5d5d6d6d7d7d8d8d9d9dadadbdcdcdd +dddededfdfe0e0e1e1e2e2e3e3e4e4e5e6e6e7e7e8e8e9e9eaeaebebecededee +eeefeff0f0f1f1f2f3f3f4f4f5f5f6f6f7f8f8f9f9fafafbfcfcfdfdfefeffff +> dup length 1 sub 3 -1 roll mul dup dup floor cvi exch ceiling + cvi 3 index exch get 4 -1 roll 3 -1 roll get + dup 3 1 roll sub 3 -1 roll dup floor cvi sub mul add 255 div } bind + +{ 1.0 0.0 3 -1 roll 1 index 1 index le { exch pop} { pop } ifelse + 1 index 1 index ge { exch pop } { pop } ifelse < +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000001010101010101010101010101 +0101010101010101010101010101010101010101010101020202020202020202 +0202020202020202020202020202020202030303030303030303030303030303 +0303030303030304040404040404040404040404040404040404050505050505 +0505050505050505050506060606060606060606060606060607070707070707 +0707070707070708080808080808080808080808090909090909090909090909 +0a0a0a0a0a0a0a0a0a0a0a0b0b0b0b0b0b0b0b0b0b0b0c0c0c0c0c0c0c0c0c0c +0d0d0d0d0d0d0d0d0d0d0e0e0e0e0e0e0e0e0e0f0f0f0f0f0f0f0f0f10101010 +1010101010111111111111111112121212121212121313131313131313141414 +1414141414151515151515151616161616161616171717171717171818181818 +18181919191919191a1a1a1a1a1a1a1b1b1b1b1b1b1c1c1c1c1c1c1c1d1d1d1d +1d1d1e1e1e1e1e1e1f1f1f1f1f1f202020202020212121212121222222222223 +2323232323242424242425252525252526262626262727272727282828282829 +292929292a2a2a2a2a2b2b2b2b2b2c2c2c2c2c2d2d2d2d2d2e2e2e2e2e2f2f2f +2f2f303030303131313131323232323333333333343434343535353535363636 +36373737373838383839393939393a3a3a3a3b3b3b3b3c3c3c3c3d3d3d3d3e3e +3e3e3f3f3f3f4040404041414141424242424343434444444445454545464646 +4647474748484848494949494a4a4a4b4b4b4b4c4c4c4d4d4d4d4e4e4e4f4f4f +4f50505051515151525252535353535454545555555656565657575758585859 +59595a5a5a5a5b5b5b5c5c5c5d5d5d5e5e5e5f5f5f6060606061616162626263 +63636464646565656666666767676868686969696a6a6a6b6b6b6c6c6d6d6d6e +6e6e6f6f6f707070717171727273737374747475757576767677777878787979 +797a7a7b7b7b7c7c7c7d7d7e7e7e7f7f7f808081818182828283838484848585 +86868687878888888989898a8a8b8b8b8c8c8d8d8d8e8e8f8f90909091919292 +9293939494949595969697979798989999999a9a9b9b9c9c9c9d9d9e9e9f9f9f +a0a0a1a1a2a2a3a3a3a4a4a5a5a6a6a6a7a7a8a8a9a9aaaaabababacacadadae +aeafafb0b0b0b1b1b2b2b3b3b4b4b5b5b6b6b6b7b7b8b8b9b9bababbbbbcbcbd +bdbebebebfbfc0c0c1c1c2c2c3c3c4c4c5c5c6c6c7c7c8c8c9c9cacacbcbcccc +cdcdcececfcfd0d0d1d1d2d2d3d3d4d4d5d5d6d6d7d7d8d8d9d9dadadbdcdcdd +dddededfdfe0e0e1e1e2e2e3e3e4e4e5e6e6e7e7e8e8e9e9eaeaebebecededee +eeefeff0f0f1f1f2f3f3f4f4f5f5f6f6f7f8f8f9f9fafafbfcfcfdfdfefeffff +> dup length 1 sub 3 -1 roll mul dup dup floor cvi exch ceiling + cvi 3 index exch get 4 -1 roll 3 -1 roll get + dup 3 1 roll sub 3 -1 roll dup floor cvi sub mul add 255 div } bind + +{ 1.0 0.0 3 -1 roll 1 index 1 index le { exch pop} { pop } ifelse + 1 index 1 index ge { exch pop } { pop } ifelse < +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000001010101010101010101010101 +0101010101010101010101010101010101010101010101020202020202020202 +0202020202020202020202020202020202030303030303030303030303030303 +0303030303030304040404040404040404040404040404040404050505050505 +0505050505050505050506060606060606060606060606060607070707070707 +0707070707070708080808080808080808080808090909090909090909090909 +0a0a0a0a0a0a0a0a0a0a0a0b0b0b0b0b0b0b0b0b0b0b0c0c0c0c0c0c0c0c0c0c +0d0d0d0d0d0d0d0d0d0d0e0e0e0e0e0e0e0e0e0f0f0f0f0f0f0f0f0f10101010 +1010101010111111111111111112121212121212121313131313131313141414 +1414141414151515151515151616161616161616171717171717171818181818 +18181919191919191a1a1a1a1a1a1a1b1b1b1b1b1b1c1c1c1c1c1c1c1d1d1d1d +1d1d1e1e1e1e1e1e1f1f1f1f1f1f202020202020212121212121222222222223 +2323232323242424242425252525252526262626262727272727282828282829 +292929292a2a2a2a2a2b2b2b2b2b2c2c2c2c2c2d2d2d2d2d2e2e2e2e2e2f2f2f +2f2f303030303131313131323232323333333333343434343535353535363636 +36373737373838383839393939393a3a3a3a3b3b3b3b3c3c3c3c3d3d3d3d3e3e +3e3e3f3f3f3f4040404041414141424242424343434444444445454545464646 +4647474748484848494949494a4a4a4b4b4b4b4c4c4c4d4d4d4d4e4e4e4f4f4f +4f50505051515151525252535353535454545555555656565657575758585859 +59595a5a5a5a5b5b5b5c5c5c5d5d5d5e5e5e5f5f5f6060606061616162626263 +63636464646565656666666767676868686969696a6a6a6b6b6b6c6c6d6d6d6e +6e6e6f6f6f707070717171727273737374747475757576767677777878787979 +797a7a7b7b7b7c7c7c7d7d7e7e7e7f7f7f808081818182828283838484848585 +86868687878888888989898a8a8b8b8b8c8c8d8d8d8e8e8f8f90909091919292 +9293939494949595969697979798989999999a9a9b9b9c9c9c9d9d9e9e9f9f9f +a0a0a1a1a2a2a3a3a3a4a4a5a5a6a6a6a7a7a8a8a9a9aaaaabababacacadadae +aeafafb0b0b0b1b1b2b2b3b3b4b4b5b5b6b6b6b7b7b8b8b9b9bababbbbbcbcbd +bdbebebebfbfc0c0c1c1c2c2c3c3c4c4c5c5c6c6c7c7c8c8c9c9cacacbcbcccc +cdcdcececfcfd0d0d1d1d2d2d3d3d4d4d5d5d6d6d7d7d8d8d9d9dadadbdcdcdd +dddededfdfe0e0e1e1e2e2e3e3e4e4e5e6e6e7e7e8e8e9e9eaeaebebecededee +eeefeff0f0f1f1f2f3f3f4f4f5f5f6f6f7f8f8f9f9fafafbfcfcfdfdfefeffff +> dup length 1 sub 3 -1 roll mul dup dup floor cvi exch ceiling + cvi 3 index exch get 4 -1 roll 3 -1 roll get + dup 3 1 roll sub 3 -1 roll dup floor cvi sub mul add 255 div } bind +] def +/MatrixABC [ 0.4124 0.2126 0.0193 0.3576 0.7151 0.1192 0.1805 0.0722 0.9508 ] def +/RangeLMN [ 0.0 0.9505 0.0 1.0000 0.0 1.0891 ] def +end ] /Cs2 exch/ColorSpace dr pop +[ /CIEBasedA 5 dict dup begin /WhitePoint [ 0.9505 1.0000 1.0891 ] def +/DecodeA { { 1.8008 exp } bind exec} bind +def +/MatrixA [ 0.9642 1.0000 0.8249 ] def +/RangeLMN [ 0.0 2.0000 0.0 2.0000 0.0 2.0000 ] def +/DecodeLMN [ { 0.9857 mul} bind { 1.0000 mul} bind { 1.3202 mul} bind ] def +end ] /Cs3 exch/ColorSpace dr pop +%%EndPageSetup +0.60000002 i +/Cs1 SC +0.24482 0.24482 0.24482 sc +q +0 0 824 551 rc +9 542 m +815 542 l +815 6 l +9 6 l +h +9 542 m +f +0.25205901 0.25205901 0.25205901 sc +9 542 m +814.03937 542 l +814.03937 9.0866175 l +9 9.0866175 l +h +9 542 m +f +Q +/Cs2 SC +0 0.45899999 0.78799999 sc +T soprm +q +603.26318 62.944885 m +777.92126 62.944885 l +777.92126 18.283466 l +603.26318 18.283466 l +h +603.26318 62.944885 m +W +603.26318 62.769112 m +777.92126 62.769112 l +777.92126 18.459641 l +603.26318 18.459641 l +h +W +603.26318 18.283468 174.65805 44.661419 rc +733.48889 53.662788 m +735.39246 55.701145 740.57129 55.868614 742.58411 53.809525 c +742.4278 53.256874 742.03784 52.937881 741.85126 52.415535 c +737.9173 55.610229 731.97687 52.562271 732.46252 47.353943 c +732.7345 44.434376 735.32629 41.972561 738.77057 42.293945 c +740.71167 42.474174 742.14709 43.813141 743.5387 44.860229 c +745.00604 45.96553 746.35699 47.031761 747.71912 47.941681 c +746.81158 48.843632 745.67914 49.519093 744.63843 50.288662 c +744.80432 50.830944 745.20544 51.139568 745.37134 51.681854 c +746.69275 50.850883 747.87457 49.881149 749.1131 48.968037 c +750.32684 49.747971 751.57251 50.657097 752.85327 51.608486 c +754.04706 52.495281 755.22339 53.587029 756.44751 54.323101 c +758.85907 55.77132 762.91583 55.596672 764.88324 53.662788 c +765.21497 53.358952 765.53314 53.040756 765.83698 52.709007 c +767.97821 50.693779 767.97821 45.335526 765.83698 43.320297 c +765.53314 42.988548 765.21497 42.670353 764.88324 42.366516 c +762.97961 40.328159 757.80078 40.161488 755.78796 42.220577 c +755.97382 42.742126 756.36456 43.061916 756.52087 43.61377 c +760.04413 40.616051 765.48291 43.145649 765.90955 47.281372 c +766.30353 51.097301 763.49243 54.098213 759.6015 53.736156 c +757.68835 53.557522 756.25769 52.240089 754.83417 51.169075 c +753.30859 50.019909 751.87634 48.953682 750.65302 48.014252 c +751.64587 47.221561 752.67938 46.471134 753.7345 45.740643 c +753.57098 45.195168 753.20496 44.851456 753.00079 44.346653 c +751.68335 45.182407 750.49115 46.140976 749.25903 47.061268 c +748.04529 46.281334 746.79962 45.372208 745.51886 44.420818 c +744.32501 43.534023 743.14874 42.441479 741.92462 41.706203 c +739.51385 40.257984 735.4563 40.432629 733.48889 42.366516 c +733.15717 42.670353 732.83972 42.988548 732.53589 43.320297 c +730.39465 45.335526 730.39386 50.693779 732.53589 52.709007 c +732.83972 53.040756 733.15717 53.358952 733.48889 53.662788 c +f* +0 0.65899998 0.88200003 sc +616.26666 36.077362 m +615.76746 35.778309 615.06885 36.177048 614.86945 36.776752 c +612.27368 42.666126 609.87805 48.455818 607.38275 53.747082 c +607.08209 54.345192 607.28229 54.944897 607.78149 55.244747 c +607.88196 55.343636 608.08057 55.343636 608.18103 55.444115 c +608.68024 55.643486 609.27832 55.444115 609.57819 54.844414 c +612.07349 49.454258 614.56964 43.66457 617.16541 37.974564 c +617.46527 37.374859 617.26508 36.67627 616.76587 36.376419 c +616.56573 36.277531 616.4668 36.177048 616.26666 36.077362 c +f +0 0.45899999 0.78799999 sc +613.67175 34.180244 m +613.57123 33.582134 613.27222 33.181801 612.97235 33.282284 c +610.27686 34.480892 607.68188 35.978558 605.18579 37.775272 c +604.88672 37.974644 604.78625 38.573551 604.88672 39.072769 c +604.88672 39.171658 604.98639 39.371826 604.98639 39.472305 c +605.08606 39.971527 605.38593 40.270584 605.685 40.170101 c +608.18109 38.573551 610.77612 37.276054 613.47156 36.077442 c +613.77142 35.978558 613.87189 35.378853 613.77142 34.679466 c +613.77142 34.580578 613.67175 34.380409 613.67175 34.180244 c +f +623.05457 43.66433 m +622.5553 43.364479 621.85754 43.564644 621.65735 44.163551 c +619.06158 49.654186 616.46655 55.344193 613.97046 60.735142 c +613.67145 61.333252 613.87158 62.032639 614.37 62.331696 c +614.46967 62.431377 614.66986 62.53186 614.76874 62.631546 c +615.26794 62.930599 615.86768 62.731232 616.16675 62.132324 c +618.66284 56.741375 621.25781 51.051369 623.85443 45.561531 c +624.15344 44.961826 623.95331 44.263237 623.4549 43.863701 c +623.35516 43.863701 623.2547 43.764015 623.05457 43.66433 c +f +0.133 0.82700002 0.773 sc +619.66138 39.971291 m +619.16211 39.670639 618.46277 39.971291 618.26337 40.569397 c +615.6684 46.260201 613.1723 52.049889 610.67615 57.340359 c +610.37714 57.939266 610.57648 58.638653 611.07489 58.838024 c +611.17542 58.937706 611.37555 59.037392 611.47522 59.137875 c +611.97449 59.436928 612.57257 59.23756 612.87323 58.638653 c +615.36853 53.247704 617.86462 47.557697 620.55933 41.967377 c +620.85919 41.368469 620.65979 40.669083 620.16058 40.270344 c +619.96039 40.169861 619.86072 40.070972 619.66138 39.971291 c +f +611.7746 30.686573 m +611.67493 30.087666 611.37585 29.688129 611.07526 29.888296 c +608.38135 31.385162 605.88525 33.181881 603.5885 35.178764 c +603.38916 35.378933 603.18976 35.978638 603.28943 36.477058 c +603.28943 36.576744 603.28943 36.776913 603.38916 36.875797 c +603.48883 37.375019 603.7879 37.575188 603.98804 37.375019 c +606.38446 35.479416 608.87976 33.881268 611.57446 32.484089 c +611.87512 32.383606 611.97479 31.685015 611.87512 31.086109 c +611.87512 30.986423 611.7746 30.787054 611.7746 30.686573 c +f +0 0.45899999 0.78799999 sc +620.85919 22.200928 m +621.3584 22.501577 621.65747 23.100483 621.45807 23.399538 c +619.96039 26.194698 618.36383 29.09034 616.96588 31.985186 c +616.76569 32.285038 616.26648 32.285038 615.76727 32.084869 c +615.6684 31.985186 615.4682 31.985186 615.36853 31.884703 c +614.86932 31.585649 614.56946 31.186111 614.7688 30.886261 c +616.26648 27.891731 617.66449 24.897202 619.26184 22.102041 c +619.46118 21.802189 619.96039 21.802189 620.45966 22.102041 c +620.55933 22.002356 620.75867 22.102041 620.85919 22.200928 c +f +0.133 0.82700002 0.773 sc +617.76422 18.807739 m +618.26343 19.106792 618.5625 19.606014 618.36395 19.905069 c +616.86627 22.800711 615.36859 25.796038 613.87177 28.890253 c +613.67157 29.189306 613.17236 29.289789 612.67316 29.09042 c +612.57263 28.990736 612.37408 28.990736 612.27362 28.890253 c +611.77435 28.690086 611.47534 28.291348 611.67468 27.992292 c +613.0719 24.897282 614.56952 21.802269 616.0672 18.807739 c +616.26654 18.508684 616.76581 18.408203 617.26501 18.707256 c +617.46521 18.707256 617.66455 18.707256 617.76422 18.807739 c +f +0 0.45899999 0.78799999 sc +642.12231 44.163471 m +642.22119 44.762379 641.82245 45.062229 641.32404 44.961746 c +636.43152 43.564564 631.04059 43.165028 625.65118 43.664249 c +625.05151 43.664249 624.55231 43.165028 624.45258 42.566124 c +624.45258 42.365955 624.45258 42.166588 624.3537 41.967216 c +624.25323 41.268627 624.75244 40.668922 625.25165 40.668922 c +630.74152 40.270184 636.13245 40.769405 641.02338 42.365955 c +641.52264 42.566124 642.02185 43.165028 642.02185 43.763935 c +642.12231 43.763935 642.12231 43.963303 642.12231 44.163471 c +f +0 0.65899998 0.88200003 sc +636.03223 33.681023 m +636.13269 34.380409 635.73315 34.779945 635.13428 34.580578 c +629.94269 33.381969 624.25269 33.582134 618.76282 34.779945 c +618.16394 34.879631 617.66473 34.480892 617.56421 33.881187 c +617.56421 33.681023 617.56421 33.482449 617.46533 33.381969 c +617.36566 32.683376 617.7644 32.084473 618.36407 31.884304 c +623.85394 30.586807 629.54315 30.487921 634.83521 31.684935 c +635.43329 31.785418 635.93256 32.484009 635.93256 33.082912 c +636.03223 33.381969 636.03223 33.582134 636.03223 33.681023 c +f +0.133 0.82700002 0.773 sc +639.02667 38.772758 m +639.12714 39.371666 638.7276 39.771202 638.12872 39.670719 c +633.0368 38.373222 627.5462 38.173855 622.05634 38.872444 c +621.45825 38.972927 620.95898 38.473705 620.85931 37.775116 c +620.85931 37.574947 620.85931 37.374779 620.75885 37.275894 c +620.65997 36.576504 621.05872 35.978397 621.65759 35.877914 c +627.14746 35.078842 632.73773 35.279007 637.82965 36.776672 c +638.32886 36.97604 638.82812 37.574947 638.9278 38.173855 c +638.9278 38.373222 638.9278 38.573391 639.02667 38.772758 c +f +0.13699999 0.122 0.125 sc +661.98688 43.065422 m +663.38483 44.362919 664.08423 46.26012 664.08423 48.755428 c +664.08423 51.251534 663.38483 53.248421 661.98688 54.545918 c +660.58966 55.842617 658.4931 56.641689 655.59827 56.641689 c +652.30469 56.641689 l +652.30469 41.068539 l +655.99701 41.068539 l +658.59357 41.068539 660.58966 41.767929 661.98688 43.065422 c +666.08032 58.038872 m +668.47595 55.842617 669.67377 52.749199 669.67377 48.855114 c +669.67377 44.961826 668.47595 41.767929 666.17999 39.471989 c +663.88403 37.175251 660.19012 36.077126 655.39886 36.077126 c +646.91376 36.077126 l +646.91376 61.234364 l +655.69794 61.234364 l +660.19012 61.234364 663.68469 60.235924 666.08032 58.038872 c +f +684.34821 43.464962 m +684.34821 44.263237 l +680.95416 44.263237 l +678.75873 44.263237 677.65979 43.66433 677.65979 42.366035 c +677.65979 41.668243 677.9588 41.169022 678.45807 40.769485 c +678.95728 40.369949 679.75714 40.270264 680.6543 40.270264 c +681.65277 40.270264 682.45184 40.569317 683.15039 41.169022 c +684.04919 41.767929 684.34821 42.566204 684.34821 43.464962 c +689.73999 35.978237 m +684.74854 35.978237 l +684.74854 38.373062 l +683.35059 36.576347 681.65277 35.778069 679.55695 35.778069 c +677.45959 35.778069 675.76337 36.376179 674.36542 37.574787 c +672.96741 38.772598 672.26959 40.369949 672.26959 42.366035 c +672.26959 44.362919 672.96741 45.860584 674.46509 46.859028 c +675.86304 47.85667 677.85992 48.355892 680.45496 48.355892 c +684.44794 48.355892 l +684.44794 48.556061 l +684.44794 50.65263 683.35059 51.650272 681.1535 51.650272 c +680.25555 51.650272 679.25793 51.450905 678.159 51.051369 c +677.16052 50.65263 676.26257 50.253094 675.4635 49.654186 c +673.06787 53.147938 l +675.6629 55.045139 678.55853 55.9431 681.85291 55.9431 c +684.24933 55.9431 686.04608 55.344193 687.64258 54.146381 c +689.14026 52.94857 689.83887 51.051369 689.83887 48.556061 c +689.83887 35.978237 l +h +f +704.11377 50.752075 m +702.51721 50.752075 701.21973 50.153168 700.41986 49.055042 c +699.62158 47.956913 699.12238 46.359566 699.12238 44.462364 c +699.12238 35.978794 l +693.73224 35.978794 l +693.73224 55.443638 l +699.12238 55.443638 l +699.12238 52.94833 l +699.82178 53.746605 700.8194 54.445194 701.81787 54.944416 c +702.81628 55.543324 704.11377 55.843174 705.21271 55.843174 c +705.21271 50.752075 l +h +f +713.89691 51.550671 m +713.89691 42.96582 l +713.89691 42.267227 714.09631 41.668324 714.49664 41.169102 c +714.89459 40.769566 715.39459 40.569397 715.89301 40.569397 c +716.89148 40.569397 717.79022 41.068619 718.48962 41.967377 c +720.48651 38.173775 l +718.78864 36.676109 716.99194 35.877834 715.19525 35.877834 c +713.39771 35.877834 711.80035 36.476742 710.4024 37.674553 c +709.10486 38.872364 708.50677 40.569397 708.50677 42.665966 c +708.50677 61.234444 l +713.89691 61.234444 l +713.89691 55.842697 l +719.68744 55.842697 l +716.69287 51.550671 l +h +f +0.133 0.82700002 0.773 sc +628.14618 49.554264 m +627.94684 49.554264 627.64697 49.653946 627.64697 49.953003 c +627.3479 51.949886 626.94836 53.945972 626.64935 55.843174 c +626.64935 56.042545 626.74823 56.24271 626.94836 56.24271 c +627.14777 56.24271 l +627.3479 56.24271 627.54651 56.143024 627.64697 55.94286 c +627.94684 54.046455 628.24591 51.949886 628.64545 50.052685 c +628.64545 49.853317 628.54492 49.653946 628.34637 49.653946 c +628.24591 49.554264 628.24591 49.554264 628.14618 49.554264 c +f +4 M +T setstrokeadjust +0.79747796 0 0 0.79747796 628.14618 49.554264 cm +0 0 m +-0.25 0 -0.62599999 0.125 -0.62599999 0.5 c +-1.001 3.0039999 -1.502 5.507 -1.877 7.8860002 c +-1.877 8.1359997 -1.753 8.3870001 -1.502 8.3870001 c +-1.252 8.3870001 l +-1.001 8.3870001 -0.75199997 8.2620001 -0.62599999 8.0109997 c +-0.25 5.6329999 0.125 3.0039999 0.62599999 0.625 c +0.62599999 0.375 0.5 0.125 0.25099999 0.125 c +0.125 0 0.125 0 0 0 c +h +S +CM +630.3432 49.454178 m +630.44208 49.25481 630.64221 49.055439 630.84161 49.155125 c +632.73798 49.553864 634.73486 50.053085 636.63208 50.552307 c +636.83148 50.552307 636.93115 50.751675 636.93115 51.051529 c +636.93115 51.250896 l +636.83148 51.450268 636.63208 51.550751 636.43195 51.550751 c +634.53473 51.151211 632.53864 50.651993 630.64221 50.152771 c +630.44208 50.152771 630.3432 49.9534 630.3432 49.653549 c +h +f +0.79747796 0 0 0.79747796 630.3432 49.454178 cm +0 0 m +0.124 -0.25 0.375 -0.5 0.625 -0.375 c +3.003 0.125 5.507 0.75099999 7.8860002 1.377 c +8.1359997 1.377 8.2609997 1.627 8.2609997 2.003 c +8.2609997 2.253 l +8.1359997 2.503 7.8860002 2.6289999 7.6350002 2.6289999 c +5.256 2.128 2.753 1.502 0.375 0.87599999 c +0.124 0.87599999 0 0.62599999 0 0.25 c +0 0 l +h +S +Q +/Cs1 SC +0.430089 0.74602401 1 sc +F soprm +q +0 0 824 551 rc +240.62991 414.44095 m +312.97638 414.44095 l +315.73779 414.44095 317.97638 412.20236 317.97638 409.44095 c +317.97638 365.44095 l +317.97638 362.67953 315.73779 360.44095 312.97638 360.44095 c +240.62991 360.44095 l +237.8685 360.44095 235.62991 362.67953 235.62991 365.44095 c +235.62991 409.44095 l +235.62991 412.20236 237.8685 414.44095 240.62991 414.44095 c +h +240.62991 414.44095 m +f +2 w +1 J +1 j +1 1 1 sc +1 0 0 -1 9 542 cm +232 128 m +303.97638 128 l +306.73779 127.55905 308.97638 129.79764 309 132.55905 c +309 176.55905 l +308.97638 179.32048 306.73779 181.55905 303.97638 182 c +231.62991 182 l +228.8685 181.55905 226.62991 179.32048 227 176.55905 c +227 132.55905 l +226.62991 129.79764 228.8685 127.55905 232 128 c +h +232 128 m +S +/Cs3 SC +1 sc +0 i +1 0 0 -1 276.80316 387.44095 cm +/F1.1[ 12 0 0 -12 0 0]sf +-21.603516 4 m +(!"#$%&)[ 7.201172 7.201172 7.201172 7.201172 7.201172 0.000000 ] xS +0.60000002 i +/Cs1 SC +0.29209799 0.140109 0 sc +CM +181.24409 323.7323 m +253.59055 323.7323 l +256.35196 323.7323 258.59055 321.49371 258.59055 318.7323 c +258.59055 274.7323 l +258.59055 271.97086 256.35196 269.7323 253.59055 269.7323 c +181.24409 269.7323 l +178.48267 269.7323 176.24409 271.97086 176.24409 274.7323 c +176.24409 318.7323 l +176.24409 321.49371 178.48267 323.7323 181.24409 323.7323 c +h +181.24409 323.7323 m +f +1 1 1 sc +1 0 0 -1 9 542 cm +172 218 m +244.59055 218 l +247.35197 218.26772 249.59055 220.50629 250 223.26772 c +250 267.2677 l +249.59055 270.02914 247.35197 272.2677 244.59055 272 c +172.24409 272 l +169.48267 272.2677 167.24409 270.02914 167 267.2677 c +167 223.26772 l +167.24409 220.50629 169.48267 218.26772 172 218 c +h +172 218 m +S +/Cs3 SC +1 sc +0 i +1 0 0 -1 217.41733 296.7323 cm +-36.005859 4 m +('$\(\)*#"+,-)[ 7.201172 7.201172 7.201172 7.201172 7.201172 7.201172 7.201172 7.201172 7.201172 0.000000 ] xS +0.60000002 i +/Cs1 SC +0.14919101 0.25699201 0.34591499 sc +CM +253.4567 233.02362 m +325.80316 233.02362 l +328.56458 233.02362 330.80316 230.78505 330.80316 228.02362 c +330.80316 184.02362 l +330.80316 181.26221 328.56458 179.02362 325.80316 179.02362 c +253.4567 179.02362 l +250.69527 179.02362 248.4567 181.26221 248.4567 184.02362 c +248.4567 228.02362 l +248.4567 230.78505 250.69527 233.02362 253.4567 233.02362 c +h +253.4567 233.02362 m +f +1 1 1 sc +1 0 0 -1 9 542 cm +244 309 m +316.80316 309 l +319.56458 308.97638 321.80316 311.21497 322 313.97638 c +322 357.97638 l +321.80316 360.73779 319.56458 362.97638 316.80316 363 c +244.4567 363 l +241.69527 362.97638 239.4567 360.73779 239 357.97638 c +239 313.97638 l +239.4567 311.21497 241.69527 308.97638 244 309 c +h +244 309 m +S +/Cs3 SC +1 sc +0 i +1 0 0 -1 289.62991 206.02362 cm +-18.00293 4 m +(.#%-,)[ 7.201172 7.201172 7.201172 7.201172 0.000000 ] xS +0.60000002 i +/Cs1 SC +0.19182 0.51373601 0.039434601 sc +CM +253.4567 148.12599 m +325.80316 148.12599 l +328.56458 148.12599 330.80316 145.88741 330.80316 143.12599 c +330.80316 99.125984 l +330.80316 96.364563 328.56458 94.125984 325.80316 94.125984 c +253.4567 94.125984 l +250.69527 94.125984 248.4567 96.364563 248.4567 99.125984 c +248.4567 143.12599 l +248.4567 145.88741 250.69527 148.12599 253.4567 148.12599 c +h +253.4567 148.12599 m +f +1 1 1 sc +1 0 0 -1 9 542 cm +244 394 m +316.80316 394 l +319.56458 393.87402 321.80316 396.11258 322 398.87402 c +322 442.87402 l +321.80316 445.63544 319.56458 447.87402 316.80316 448 c +244.4567 448 l +241.69527 447.87402 239.4567 445.63544 239 442.87402 c +239 398.87402 l +239.4567 396.11258 241.69527 393.87402 244 394 c +h +244 394 m +S +/Cs3 SC +1 sc +0 i +1 0 0 -1 289.62991 121.12598 cm +-14.402344 4 m +(/$,0)[ 7.201172 7.201172 7.201172 0.000000 ] xS +0.60000002 i +/Cs1 SC +0.84914201 0.0200174 0 sc +CM +57.188976 507.98425 m +714.82678 507.98425 l +714.82678 485.3071 l +57.188976 485.3071 l +h +57.188976 507.98425 m +f +1 w +0 0 0 sc +1 0 0 -1 9 542 cm +48.5 34.5 m +706.5 34.5 l +706.5 56.5 l +48.5 56.5 l +h +48.5 34.015747 m +S +/Cs3 SC +0 sc +0 i +1 0 0 -1 386.00787 496.64566 cm +/F2.1[ 12 0 0 -12 0 0]sf +-36.682617 4 m +(!"##$%"&'\(#)[ 9.996094 6.673828 6.000000 6.000000 6.673828 6.673828 6.673828 3.996094 8.003906 6.673828 0.000000 ] xS +0.60000002 i +/Cs1 SC +1 0.88315499 0 sc +1 0 0 -1 9 542 cm +280.5 363.97638 m +280.5 383.974 l +S +CM +289.62991 150.02599 m +292.62991 158.02599 l +286.62991 158.02599 l +h +289.62991 150.02599 m +f +0 J +0 j +1 0 0 -1 9 542 cm +280.62991 391.974 m +283.62991 383.974 l +277.62991 383.974 l +h +280.62991 391.974 m +S +1 J +1 j +208.41733 272.2677 m +245.52596 302.69876 l +S +CM +260.71194 234.22842 m +256.42825 241.621 l +252.62364 236.98151 l +h +260.71194 234.22842 m +f +0 J +0 j +1 0 0 -1 9 542 cm +251.71193 307.77158 m +247.42825 300.379 l +243.62364 305.01849 l +h +251.71193 307.77158 m +S +1 J +1 j +266.95255 182.08485 m +216.83838 213.06235 l +S +CM +219.03348 324.73129 m +227.41576 326.38583 l +224.26099 331.4895 l +h +219.03348 324.73129 m +f +0 J +0 j +1 0 0 -1 9 542 cm +210.03348 217.26871 m +218.41576 215.61418 l +215.26099 210.51051 l +h +210.03348 217.26871 m +S +1 J +1 j +267.40158 56.692913 m +267.74704 117.65921 l +S +CM +276.79239 416.34091 m +279.74701 424.35779 l +273.7471 424.32379 l +h +276.79239 416.34091 m +f +0 J +0 j +1 0 0 -1 9 542 cm +267.79239 125.65909 m +270.74701 117.64221 l +264.7471 117.67622 l +h +267.79239 125.65909 m +S +0.430089 0.74602401 1 sc +CM +569.59058 235.85828 m +641.93701 235.85828 l +644.69843 235.85828 646.93701 233.61969 646.93701 230.85828 c +646.93701 186.85828 l +646.93701 184.09685 644.69843 181.85828 641.93701 181.85828 c +569.59058 181.85828 l +566.8291 181.85828 564.59058 184.09685 564.59058 186.85828 c +564.59058 230.85828 l +564.59058 233.61969 566.8291 235.85828 569.59058 235.85828 c +h +569.59058 235.85828 m +f +2 w +1 J +1 j +1 1 1 sc +1 0 0 -1 9 542 cm +561 306 m +632.93701 306 l +635.69843 306.14172 637.93701 308.38031 638 311.14172 c +638 355.14172 l +637.93701 357.90317 635.69843 360.14172 632.93701 360 c +560.59058 360 l +557.8291 360.14172 555.59058 357.90317 556 355.14172 c +556 311.14172 l +555.59058 308.38031 557.8291 306.14172 561 306 c +h +561 306 m +S +/Cs3 SC +1 sc +0 i +1 0 0 -1 605.76379 208.85828 cm +/F1.1[ 12 0 0 -12 0 0]sf +-21.603516 4 m +(!"#$%&)[ 7.201172 7.201172 7.201172 7.201172 7.201172 0.000000 ] xS +1 w +0.60000002 i +/Cs1 SC +1 0.88315499 0 sc +1 0 0 -1 9 542 cm +280.5 447.87402 m +280.5 460.5 l +597.5 460.5 l +597.5 372.04172 l +597.5 370.04172 l +S +CM +605.76379 179.95827 m +602.76379 171.95827 l +608.76379 171.95827 l +h +605.76379 179.95827 m +f +0 J +0 j +1 0 0 -1 9 542 cm +596.76379 362.04172 m +593.76379 370.04172 l +599.76379 370.04172 l +h +596.76379 362.04172 m +S +1 J +1 j +596.76379 306.14172 m +596.242 66.592888 l +S +CM +605.22461 483.4071 m +602.24207 475.40057 l +608.242 475.41364 l +h +605.22461 483.4071 m +f +0 J +0 j +1 0 0 -1 9 542 cm +596.22461 58.592907 m +593.24207 66.599426 l +599.242 66.586357 l +h +596.22461 58.592907 m +S +2 w +1 J +1 j +[ +2 +8 +] 0 d +1 1 1 sc +96 309 m +167.91339 309 l +170.6748 308.97638 172.91339 311.21497 173 313.97638 c +173 357.97638 l +172.91339 360.73779 170.6748 362.97638 167.91339 363 c +95.566925 363 l +92.805504 362.97638 90.566925 360.73779 91 357.97638 c +91 313.97638 l +90.566925 311.21497 92.805504 308.97638 96 309 c +h +96 309 m +S +/Cs3 SC +1 sc +0 i +1 0 0 -1 140.74016 206.02362 cm +-18.00293 4 m +(.#%-,)[ 7.201172 7.201172 7.201172 7.201172 0.000000 ] xS +1 w +[] 0 d +0.60000002 i +/Cs1 SC +1 0.88315499 0 sc +1 0 0 -1 9 542 cm +208.41733 272.2677 m +167.1254 303.05835 l +S +CM +169.71213 234.15941 m +177.91875 236.53668 l +174.33205 241.34665 l +h +169.71213 234.15941 m +f +0 J +0 j +1 0 0 -1 9 542 cm +160.71213 307.84058 m +168.91875 305.46332 l +165.33205 300.65335 l +h +160.71213 307.84058 m +S +2 w +1 J +1 j +[ +2 +8 +] 0 d +1 1 1 sc +144 394 m +216.84645 394 l +219.60788 393.87402 221.84645 396.11258 222 398.87402 c +222 442.87402 l +221.84645 445.63544 219.60788 447.87402 216.84645 448 c +144.5 448 l +141.73857 447.87402 139.5 445.63544 139 442.87402 c +139 398.87402 l +139.5 396.11258 141.73857 393.87402 144 394 c +h +144 394 m +S +/Cs3 SC +1 sc +0 i +1 0 0 -1 189.67323 121.12598 cm +-14.402344 4 m +(/$,0)[ 7.201172 7.201172 7.201172 0.000000 ] xS +/Cs2 SC +83 0 0 55 99 179 cm +BI +/Width 249 +/Height 165 +/BitsPerComponent 8 +/Decode[ +0 1 +0 1 +0 1 +] +/DataSource cg_aiproc +ID +h,=5_rhBD$rfR2ErnHoArnIF9r`.->r`/r]rnHoArnIF9r`.->r`/r]rnHoArn@F:!L&`H*s8LdPPQ"SZ;A=_/ +49+@As5X1Rh#kd-)4-::A7A-m;Z9\qPQ'>*s8LgQP5\J;;W^mV=T4E]d/O!ts8J5*;Z;m?s8J5*;Z;mA +rrN0"rfbN'rfcCBrfbN'rfcCBrfbN'rfcsRnc/TPb>S>'j8]+Br_a5/=AI/R(:'\\J9X1W=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;Hqi/h;eMsf\>1N;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>M7cejo7LDs4H)]7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;Hqi/h;eMsf\>1N;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>M7cej8V3ngY>7r>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLpg"Y?Ss7-+Nf\>1N;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>M7cej8V3ngY>7r>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLpg"Y?Crs7B7h+gjJ:f:6P;X[N_g;s:UMj'Mt;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>Dn]4j8V3!PF+g;>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpMj'Ois#pD^Mj'Mt;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>Dn]4j8V3!PF+g;>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpMj'Ogs#Z.&QpstX7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*HKPF1tAnc(\/PF+g;>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpMj'Ogs#Z.&QpstX7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*HKPF1D1%Z6F:7T*G[;HlXh>#%spku-tJrnco>#k.9PU8Y0HgYM>u +8(lYQMj'N"=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +8QB)UPF:+Yh=(A6g"Y>@PF+pA?:Igs7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G^=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G^=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^m?At)9g"Y?Os$tbsh2@Ja8QB(d;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=hh$N0B[_gYM]*p]!b:gYIdO +Qq::a7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^m?At)9 +g"Y?Os$tbsh2@Ja8QB(d;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=hh$N0B[_gYM>u(t[KsNKfl'=MLp7T*G[;Hldl=&J?_mo'/$n,Imnhr1#sV,CT17T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLm>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[>>eZp;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G];Hcjo<:WrX;@$,t;cI(8`lcO&s*s;! +m&R@uB5r/c;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*Z! +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[?;aus;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>>8!roht?YIn=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;K,i0;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV?;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpIn!=? +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;L_n? +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=N%! +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hlsq;ts8`;L_D==MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+;37T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpIn!=?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;L_n?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=N(">=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl[i +=]+umpelT<;H$(`>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MM6>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV? +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +In!=?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;L_n?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=N.$>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>>.pqqbm2eIn=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Kc86;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[B2Vr';HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;Hlpp;uT\l;L_J?<(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T+M97T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[B2Vr';HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hlak=T24q +;L_D=<^otk7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T+M97T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW? +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM? +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +B2Vr';HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl[i>5hFs;L_;:=%6(l7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+M97T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[C/S8*;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>>\9rqbho7;HZIe>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM9>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;Hlpp<;odF;,U:];HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUgHs9'<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H1H@`lK`;WYa:Jt.];HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgHs9'<>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7V#D$7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpJVfHbs8GoG:/Y%\;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgHs9'<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7V#D$7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLpcI(,=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUgHs9'<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7U]2!7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLprr2fpr_e5@;H-+` +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM<>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[@8^=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*Ics8GoG:/Y%\;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgHs9'<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7U]2!7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLpq#C=kInim@7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;LD\<;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlV?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLpIn!=?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;L_n?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=N%!>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>PS6t;L_G><(9bi7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV!;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hrqrr_e5M?X]J!VjsKZ<*s9-;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[@8^=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*Ics8I0r,H%8@^>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUgF'D+3>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7Xn=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[A5ZW$;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*IMjQ6:=rknF/J%rnA7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;K,i0;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpIn!=?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;L_n?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=N.$>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>F(hSqu?Zmp&G$gIn!=?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;JfW-;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hln"@]$62mdKZ6s*mL9>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+)-7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[C/S8*;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>>8.'n,Il,;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MM->=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j=muB?7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgD-KJ->=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpIn!=?7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;L_n?;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=N@*>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G^;H`JgIn!=?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;JfW-;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp8Q&^[s*mL9>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+)-7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[C/S8*;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=h^qrpTO[J*l[m7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;K,i0;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlV?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLpIn!=?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;L_n?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=N@*>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G^;Ha"! +p&BN=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MM0>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[C/S8*;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=h^qraGrObfot_J&ojZ=CQ&8;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;KH&3;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;Hl^j=oM=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUgHs9'<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j +=oM=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUgHs9'<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j=oM=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgHs9'<>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j=oM=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgHs9'<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;Hl^j=oM=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUgHs9'<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j +=oM=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUgHs9'<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j=oM=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgHs9'<>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j=oM=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgHs9'<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;Hl^j=oM=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUgHs9'<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j +=oM=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUgHs9'<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j=oM=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgHs9'<>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H1H@`iJ`Vrbb:/Y%\;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgHs9'<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7V#D$7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLpJVfHbs8GoG:/Y%\;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUgHs9'<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7V#D$7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpcI(,=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgHs9'< +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B? +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7U]2! +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLprr2fpr_e5@;H-+`>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[@8^=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*Ics8GoG:/Y%\;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUgHs9'<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7U]2!7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpq#C=kInim@7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;LD\<;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV?;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpIn!=?7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;L_n?;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=N%!>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>PS6t;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV!;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;Hrqrr_e5M?X]J!VjsKZ<*s9-;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MM<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[@8^=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*Ics8I0r,H%8@^ +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgF'D+3>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[A5ZW$;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*IMjQ6:=rknF/J%rnA7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;K,i0;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlV?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLpIn!=?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;L_n?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=N.$>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>F(hSqu?Zmp&G$g +In!=?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;JfW-;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;Hln"@]$62mdKZ6s*mL9>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+)-7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[C/S8*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>>8.' +n,Il,;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MM->=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j=muB?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgD-KJ->=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlV?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLpIn!=?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;L_n?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=N@*>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G^ +;H`JgIn!=?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;JfW-;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp8Q&^[s*mL9>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+)-7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[C/S8*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=h^qrpTO[J*l[m7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;K,i0;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV?;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpIn!=? +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;L_n? +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=N@* +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G^;Ha"!p&BN=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM0>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[C/S8*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=h^qraGrObfot_J&ojZ=CQ&8;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;KH&3;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j=oM=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +Hs9'<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*? +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H? +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +Ip5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j=oM=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgHs9'<>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp;f@)LVR+"Ycdpk+g=tE:gYCB3eAm'X_QB]1JTks#;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j=oM=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgAm7`&>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlV&OiQPPli6b[J+1Wp;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>BWJ6>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;L_n?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=N@*>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G^;H`usInim@7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;INd!;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp;hhgRk5Y5VJ+qH3;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hn+/Zbsc! +^;.V"^p@uc>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>BWJ6>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;L_n?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=N@*>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G^ +;H`usInim@7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;I3Qs;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MnbkOAK[n*&]\f@\g8jQGn%qtU15pXjF_>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>GBaEq>Ys>W,Gm0;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUc;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[C/S8*;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=h^qr_e5@;H-+`>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLr>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H\cLCN,'(b&$ +JS&+U;HlUg>=MLp7T*G[-rOVqL6o6ggtpMd;c6gh;HlUg>=MLp7T*G[;HlUg>=MLp7T*H\e+!25J+TIR +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7SZic +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;L_n?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=N@*>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G^;H`usInim@ +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hm?p +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUrQfn)B(%^%[7T*G[;HlUg>=MLp7T*G[;HlU=;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Ho[?nG3*6oV-8.7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[:/Y:c;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j=oM=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>?aQp>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=N5(oCr8# +n=4)p7T*G[;HlUg>=MLp7T*G[;HlU=;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Ho[? +nG3*6oV-8.7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[:/Y:c;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j +=oM=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>?aQp>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>>pNuqtU1-oZpiA>=MLp7T*G[;HlUg>=MLp7T*G[-rO8= +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H\e+!25J+TIR>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7SZic7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;L_n?;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=N@*>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G^;H`usInim@7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hm?p;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlV?\G,at(@7Q'>=MLp7T*G[;HlUg>=MLp7T*G[-rO8=;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*H\e+!25J+TIR>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*fRTX`5#i9Tarlg4!(m-O'%jOVGdQ%*X?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +??_'RL5UV;Mg9Mh7SZic7T*G[;HlUg>BuI4_pd8ukih@!m-!TnhV6Pt]<6]s>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MM%JXWa^e(j!Ikj.U%lg4!$i.'ChVNFeT>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=N@*>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G^;H`usInim@7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;Hm?p;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV&WUoi`(%]nR7T*G[;HlUg>=MLp7T*G[ +;HlU=;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HoF3nG3)Dn=3cg7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpBT9ObpZVW$n)232?!Bcr>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUgFj]sZrs\eWE)Kn0;Hn+/^$#.UruBanI7@+=7T*G[;HlUg>=MLp7T*G[;Hn^L_X$sb +s8;nHpZ/&uAO]R%7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLpAO]R%7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>B+t?^V[th;L_G><(9bi7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*Jq7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;LQd]o`#QicE:)D>=MLp7T*G[;HlUg>=L#=>=MLp7T*G[;HlUg>=MLp7T*G[;Hn+5^!Y=MLp7T*G[;HlUg>=MLp7T*HO +^u4)L*U'GOAO]R%7T*G[;HlUg>=MLp7T*G[;HlUgFj0LRrs/;J?;b!g`T61](Y5I37T*G[;HlUg>=MLp +7T*G[;Iuu^nEU&Ks*sg]RWV(t>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=Mgp>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpJVfHbs8GoG:/Y%\;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg?!Bcr>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLpE3%X^rt#"ne=KK.>=MLp7T*G[;HlUg>=MLp7T*G[;HomIpsB$V +qq,jc>=MLp7T*G[;HlUg>=MLpO20iIrsJ5UfYbMA_o^Eoo^`##n>LP87T*G[;HlUg>=MLp7T*G[;HlUg +Fj0LRrrh]3S?^`;rri)go_87WrtO%]I7@+=7T*G[;HlUg>=MLpO2^>RrsJ)MfYb\Jf&Z?#s7QDAn=ji* +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[=Ai?m +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*I9dF8!mr_e5@;H-+`>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLu>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hp9Xo^Ded +j3FuE;HlUg>=KK.>=MLp7T*G[;HlUg>=MLp7T*G[;HomIo[*UPpXjF_>=MLp7T*G[;HlUg>=O+Pqt9t& +qrk/:D+7E-7T*G[;HlUg>F!"Zo`#ctb?e(N7T*G[;HlUg>=MLp7T*G[;K^4Um/ILkg;U46?!Bcr>@*uP +q#:uXVL:p3>=MLp7T*G[;Hm(S^&.L&&+J54Dd,\/>=MLp7T*H(PQAJdpA]X6e"]B1>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLi>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>Q4X!s8GoG:/Y%\;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg@p;E#>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Jj//q!S.cqs_=mMaf'l>=MLp +7T*G[;HlUg>=MLp7T*G[;Hn^WcfaNQj5f:]jQ,@ZjR=MLpXl0!Kru(^pQ"F5i;HlUg>=MLp7T*G[;HlUg>C!L+p&>fORVbMl>=MLp7T*G[ +;HlUg>=MM5bk1B(&+$EQAO]R%7T*G[;Hmh-eG0%Teu!jb;HlUg>=MLp7T+*DnFlkpm)s'?>=MLp7T*G[ +;HlUg>=MKm>@*cApA]X'Lf.GH;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*Ics8GoG:/Y%\;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgAm7`&>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUgAZ3o=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*HUcLCZ0 +/+B'7>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O+Pp\+V-d@bVO;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*I#jSS]O($NM5;HlUg>=MLp7T*G[;HlUgFj0LKrt=h"G?[O7>=MLp7T*G[;Hmh-eG0%R +eu!jb;HlUg>=MLp;hi0_rtP@EL0I,F>=MLp7T*G[;HlUg>=MKo>=MM-a6`R#J'k-97T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;GgXf;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLpq#C=kInim@7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;J]Q,;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>>p$Hf'N2%s8;mAg:N\@ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>Fa13q>Vr:W,Gm0;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*H9Z/#*R+8ai=;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HmIrch@AQoV-8.7T*G[;HlUg +>=MLp7T+BQo^r.tbb0)J;HlUg>=MLp7T*G[;Hmh3f_GIVg8fWk;HlUg>=MLpQ-SajrtY%H?;aus;HlUg +>=MLp7T*G[;HlUg#$XPp>F!M'q#>ikTQN_%>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLf>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hrqrr_e5@;H-+`>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM1>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>BumYlhgDUq>VT#`LTIr>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>Fa13q>Vr:U2O7*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*HbfC\k<,59]g7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;N'E/q#;'#U2O7*;HlUg>=MLp7T*G[;K^4Up\ul;f<.S@>=MLp +7T*G[;HlUg>=MLp7V7R\]=kPZ\?ifWO*>/);HlUg>=MM5bk1W/($rqrNL,p!SX#Y7Q("8/R[o_4SX#WI +SWAbsa6`R#J*Y4I7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;GgXf;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpq#C=kIp68gS>)pOU8LstB1>d'7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Kc86;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUgD4J5jqtpEeruK[kI7@+=7T*G[;HlUg>=MLp7T*G[;HlUg>Fa13q>Vr: +U2O7*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H\cLCW/,3-:t7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;K^4Up\toSVKG@+>=MLp7T*G[;HlUgFj0LQs"ESs?!Bcr>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MM5bk0innc++1f;V5;>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLf>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hrqrrd"M>qu;0AqYG/V +J4=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM3>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=NP%hY7'Mo`#lkLf.GH;HlUg>=MLp +7T*G[;HlUg>=MLpSC@!'s!dT7Dd,\/>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;JjJ@p\uGb +VKG@+>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM5bk1Z0'@s%/7T*G[;HlUg>=MLp7T+BQo_JM?o[IPP +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7U;SJhuE6HJ+qQo7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;H-ji;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLpioK4us8Kq/s*qf$a$rs27T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T+207T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+oe +!:]X\)VVHL7T*G[;HlUg>=MLp7T*G[;HlUg>Fa13q>Vr:U2O7*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*g-jS8NM,13'+7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;K^4Up\toXVL:p3>=MLp +7T*G[;HlUgFj0LRs"O2sBMr&(;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgOlQ?4 +rtY%ahW3bXjQ,@^jQ#=^j5f:]jQ,@^J)oYNjQ#=^j5f:]jQ,@bkg?i$7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7V#D$7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpQCXcI +s8Mogs8MnF7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUgD-KJ->=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlTl?(L=MLp7T*G[;Ho[?nG3)6oV-8.7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLpSC@!&s!$dNSOQL]7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+BQo_8A!a-pj7;HlUg>=MLp7T*G[ +;K^4Uq>W/Ce7_`a7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;K^4Uq#;0"S6]>g +;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[C/S8*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*Gc>%4A1YjUuL +n,Il,;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MM->=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=J`n>GBU=q#;9(f;V5; +>=MLp7T*G[;HlUg>=MLp7T*H\e+!25.eKHR>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>Fa13q#;N3gTF"D>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MnhkP+ujoV-8.7T*G[;HlUg>=MLp7T+BQ +o_JM@pXEkS>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+BQo_8A$g9H<#;HlUg +>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[C/S8*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>>8.'n,Il, +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM- +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=J`n>DU)Yq#;9(f;V5;>=MLp +7T*G[;HlUg>=MLp7T*H\e+!25.eKie>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>A0nd +pAZ2tO&B1O;HlUg>=MLp7T*G[;HlUg>=MLp7T*H0X4[.G'^V?%>=MLp7T*G[;HlUg>=MM5bk1`21&'12 +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpO2^>WrtXn?;c6gh;HlUg>=MLp +7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j=muB?7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgD-KJ->=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlTn;Hp*Sq"Xk-n'7[t;HlUg>=MLp7T*G[ +;HlUg>=MLpU=]&4s!la'I7@+=7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=N5"lh:>uj1C4= +;HlUg>=MLp7T*G[;HlUg>=MLp7T+BQo_8A$pY2i?;HlUg>=MLp7T*G[;HlUgFj0LRs"a>uBMr&(;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O+Pp\+V#d@bVO;HlUg>=MLp7T*G[;HlUg +Ip5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j=muB?7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgD-KJ->=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HmI^SYDR+ +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hm'$L;!3Pru0:XF[f857T*G[;HlUg>=MLp7T*G[;Hn^a +jS/[)nBYcG>=MLp7T*G[;HlUg>=MLp7T*G[Ap%Ec>=MLp7T*G[;HlUg>Fa".pAZ!)^5Zu!;HlUg>=MLp +7T*G[;HlUg>GBF0pAYs+\:7^P;HlUg>=MLp7T*G[;HlUgFj0LRs"sK"BMr&(;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM%\E*P\rt4UlG?[O7>=MLp7T*G[;HlUgIp5B?>=MLp7T*Gs +J"tETm(S^$7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j=muB?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg93Xk`>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HomIq#::7qt0*m]<6^/D+7E- +7T*G[;HlUg>=MLp7T*H9TYg=MLp7T*G[;HlUg>=MLp7Xr,KpAYj$i5U=[>=MLp +7T*G[;HmgaQak?!rr3VbVL:p3>=MLp7T*G[;HlV&Sa5qJ')U(bSPrEj7T*G[;HlV&Mo4KFp&>p(gTs@I +>=MLp7T*G[;HlUg>=MLp7T+BQo_JMEpXEkS>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlV/WUKKZ%eRuRSS2;57T*G[;HlUg$!U_SKUf=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*Do7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G^;Ha"fp&BO/mdEVC>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLc>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpSC@!"rt"krkN(FGcHEr;`m!&mn+Zb[pAZ8UP\ilf>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUgD8,62o)AshnEfK-nFuhSrtO%]I7@+=7T*G[;HlUg>=MLpBU[-7rs/Gn +n*oi8nF5uJ)u&!9;HlUg>=MLp7T*G[;HlUg>=MLp7T+BQo_JMGpXEkS>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>B$XmnG`dkoC2,4m-scHnc+*iVL:p3>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLo>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp8Q&^jWqHCAV5g^g;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg:0U1c>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>GBaAhuENP-/,ei7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUrQeqW!rtsIjI7@+=7T*G[;HlUg>=MLp7T*GsPeH\Iru_.%bBZui7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MM5dId873qq-;;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>DT`?lMpDSJ&e"#7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;Hd9o;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hl^j=oMk3b08*,rI;o4c<+Ok7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*2i7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HmIeZek3HirB#X0D+>-NHI]g>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUrMo4<5qs48* +puBi?Lh9j\;HlUg>=MLp7T*G[;HlUg>=MLp7U:qig[+5*,P9BlQUXkW7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T+BLnG3)LoZq2K>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*GhJ"t6KnF6JSs*se4kfgiFH"L8M;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*`#7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp8Q&^j;L_G><*a0V +?"e1H;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>>o-^O.`hscIC_3kj.a-n*oi8nF5c1khb(H_n379ItiA@;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[?$1srWOTa`a2uNB^qI(ZY*G!" +;c6gh;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp;f@SgZ+\3'cbmB)^<+^Fahk!LOag\8>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>>oHnS?'0;aih`HbK%`E\@-mnS=5RZ +An=G0>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp8Q&^j;L_G><(9bi7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp8Q&^j;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp8Q&^j;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp8Q&^j;L_G><(9bi +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp8Q&^j;L_G><(9bi7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp8Q&^j;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp8Q&^j;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp8Q&^j;L_G><(9bi +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp8Q&^j;L_G><(9bi7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp8Q&^j;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>B+t?^V[th;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlV$;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hn^/O8JtV;L_G><(9bi7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV$;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HqGoe,01E;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV!;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;Hs/"qu?XnInim@7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;LD\<;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlV?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLpIn!=?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;L_n?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=N%!>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>PS6t;L_G><(9bi7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV!;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hrqrr_e5@;H-+`>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[@8^=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*Ics8GoG:/Y%\;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUgHs9'<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7U]2!7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpq#C=kIp68gS>)pOU8LstB1>d' +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;LD\<;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV?;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpIn!=?7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;L_n?;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=N%!>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>PS6tH2d[;s*sk@qJ^_17T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+;37T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlV?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLpIn!=?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;L_n?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=N.$>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>N4`*qu?Z5 +p&BNV_oG5E>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MM0>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[A5ZW$;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*HVSYH#]rqlBgrqh17;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM->=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp:0M,( +XK_-]nF-C,7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUgD-KJ->=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV?;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpIn!=?7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;L_n?;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=N@*>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*Gb+nIn!=?7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;JfW-;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp8Q&^[s*mL9>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T+)-7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[C/S8* +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=h^qn,Il,;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM->=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;Hl^j=muB?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUgD-KJ->=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV?;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpIn!=? +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;L_n? +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=N@* +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G^;Ha"fp&BO/mdEVC>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM0>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[C/S8*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=h^qri5YkJ#00K7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;K,i0;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlV?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLpIn!=?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;L_n?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=N@*>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G^;Ha!.!m8a2qu)#c +bg'="CIV3+7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM3 +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp8Q&^j;L_G><*a0V?"e1H;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp8Q&^j;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +8Q&^j;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp8Q&^j;L_G><(9bi7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp8Q&^j;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp8Q&^j;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +8Q&^j;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp8Q&^j;L_G><(9bi7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp8Q&^j;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp8Q&^j;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +8Q&^j;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>B+t?^V[th;L_G><(9bi7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV$;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hn^/O8JtV;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV$;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HqGoe,01E;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlV!;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hs/"qu?XnInim@7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;LD\<;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV?;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpIn!=?7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;L_n?;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=N%!>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>PS6t;L_G><(9bi7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+V<7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV!;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;Hrqrr_e5@;H-+`>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MM<>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[@8^=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*Ics8GoG:/Y%\;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgHs9'<>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7U]2!7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpq#C=kIp?AjR\6LJUo77"B1>d'7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;LD\<;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpIn!=?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;L_n?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=N%!>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>PS6tGlIR:s8MhDEI*1*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUgE*Ge0>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*? +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H? +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +Ip5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7V#D$7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpioK4us8Kt0s*qf$`^Wj17T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+207T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV$;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HoHXUAOuir:U)>q>0qW;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUgE*Ge0>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=O*?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*H?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUgIp5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7VYh*7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp:0M,'X0:s[nFHVYr-q16>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+)-7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[C/S8*;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>>8.'o)J^bIn!=?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;JfW-;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp8Q&^^s*s\6ogVh` +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+207T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp8lAd^s*sS0o0uV^7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+207T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp9i>$_ +s*sS0njZM]7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T+207T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp:Jt0_s*s"fj@3$O7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+207T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV*;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp;,U=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUgE*Ge0>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*? +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H? +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +Ip5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7V>V'7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G];H`usrc.r8qu;01lK`5-HU^n;7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM3>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[Io9K?;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>CT+?>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T+_?7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV';HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>>%jqr_i_nraPkhJ"!"(9NY[l;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Kc86;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[B2Vr';HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G\;Hlsq +;uT\i;L_PA;FaVg7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T+D67T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*? +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H? +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +Ip5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7V#D$7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp9i>!g;Y=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgF'D+3>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7Xn=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HnW?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MM?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[@8^=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp8Q&^d;Y!_892\h\;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUgE*Ge0>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*? +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H? +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +Ip5B?>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7U]2!7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlXh>#8*qpepZ\Io0*A85`S[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;K,i0;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlV?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpIn!=?7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;L_n?;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=Mps>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7oEPd;H=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MM->=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=O*?>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*H?7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUgIp5B?>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7U&bp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp=MLp8Q&\f;H*-aku&s+;H$+a=[l:n7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp>%DKJXg.?a +nac]PqYL*%_8L27IR[4>7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;Hm=8D5XM@n*ol=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp>%DKJXg.?anb<(]s%<.aqn0b`D0LFu;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp>%DKJXg.?anac]PqYL*%_8L27IR[4>7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;Hm=8D5XM@n*ol=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +>%DKJXTPisnF?)L9)AD]]YVO'GCE"Z>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*GoA8S6HZ1%2Po)D>YqYRqA`,0^I7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>?PKQVl[/lnF>lF#i=M!9j(q!;HE-^j&-mk;H?:c>"2Co +7T*G[;HlUg>=MLp7T*G[;HqJqeE6cpp\=M[>\$<%>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLpcdL>*s$$2PpeY4+7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HqJqeFES4s$$2PpeY4+7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[ +;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HqJqeE6cpp\=M[>\$<%>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpcdL>*s$6>RpeY4+7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HqJqeGoR4s$$2PpeY4+7T*G[;HlUg>=MLp7T*G[;HlUg +>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HqJqeE6cpp\=M[>\$<%>=MLp7T*G[;HlUg>=MLp +7T*G[;HlUg>=MLp7T*G[;HlUg>=MLp7T*G[;HlUg>=MLpcdL>'rrTX<\*6fH;A;u+;GL+h9N"n`;HQFe +>";Io@r6;Fs#?=7Tgr!a7oEM\;HcRg>";Io7oEM\;HcRg>";Io7oEM\;HcRg>";Io7oEM\;HcRg>";Io +@r6;Fs#?=7Tgr!a7oEM\;HcRg>";Io7oEM\;HcRg>";Io7oEM\;HcRg>";Io7oEM\;HcRg>";Io@r6;T +s7?7MQCOX=;HcRg>";Io7oEM\;HcRg>";Io7oEM\;HcRg>";Io7oEM\;HcRg>";Io7oEM\;HdRIF5['X +QCOX=;HcRg>";Io7oEM\;HcRg>";Io7oEM\;HcRg>";Io7oEM\;HcRg>";Io7oEM\;HdRIF5['XQCOX= +;HcRg>";Io7oEM\;HcRg>";Io7oEM\;HcRg>";Io7oEM\;HcRg>";Io7oEM\;HdRIF8Z("s#?=7Tgr!a +7oEM\;HcRg>";Io7oEM\;HcRg>";Io7oEM\;HcRg>";Io7oEM\;HcRg>";Io@r6;Fs#?=7Tgr!a7oEM\ +;HcRg>";Io7oEM\;HcRg>";Io7oEM\;HcRg>";Io7oEM\;HcRg>";Io@r-5Es8K^r;Le +~> %APLeod +EI +83 0 0 55 148 94 cm +BI +/Width 249 +/Height 165 +/BitsPerComponent 8 +/Decode[ +0 1 +0 1 +0 1 +] +/DataSource cg_aiproc +ID +h,=5Prfd?9n,NCArfd=]b>S=>rfd?9n,NCArfd=]b>S=>rfd?9n,NCArfd=]rDLs>r`/r]rnHoArnIF9 +r`.->r`/r]rnHoArnIF9r`.->r`/r]rnHrB!<<&Qrfd=]b>S=>rfd?9n,NCArfd=]b>S=>rfd?9n,NCA +rfd=]e5GX2ra>_OreLJPr_i`Zj8]+Bb>S>'j8]+Bb>S>'j8]+BrDLs>rfcCBrfbN'rfcCBrfbN'rfcXI +qZ$PYb>S>'j8]+Bb>S>'j8]+Be5Ga5reg^Mqu?ZCra5ZZj8V3phUkP06;:fR9j^4]?U@Io6;:fR9j^4] +?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fRg>:KBs#\rkfM,^>9j^4]?U@Io6;:fR9j^4]?U@Io +6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^6@hUplg#27qd9j^4]1g`RD?U@Io6;:fR9j^4]?U@Io +6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^6@hUplg45/QD9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR +9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?UEK'f]2ung>:IV?U@Io6;:fR9j^4]?U@Io6;:fR9j^4] +?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6JC;KlMp_\45/QD9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR +9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?UEK'f]2ung>:IV?U@Io6;:fR9j^4]?U@Io6;:fR9j^4] +?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6JC;Kj8TD=hUkV+8l8J`g/@K>rh]Vnp&>3#\ZFKAf&Qcl +f](=JFsoe&-q/;-7rs%-8 +dRA=-75T097s#\lm +dRA=-77b`Wm/II"a/DOR/;pKPg#LQMs$tc&du12M89c[SFsoe&-q/;-7WH^sY/4F_1765T?7WH^sY +/4F_17/9OU3W;Z9SnMM4[jNB7h4Fsoe&-q/;-7h4Fsoe&-q/;-7M4[jNB7M4[jNB7h4Fsoe&-q/;-7h4Fsoe&-q/;-7c/JQpoCMYHoD&4O9]3'OFsoe&-q/;-7kt +-q/;-7-q/;-7jAh2Zn37j(`I:7!-q/;-7?'Fsoe&-q/;-7j@]q@JVFsoe&-q/;-7ipGa3,jQ#1c2 +D0V=_Ga3,rRW`q:91="P71s8)a4qm`(W7V'%a_,cF7V8sc%\Z1-q/;-7-q/;-7UusU5:9eFsoe&-q/;-W8.";rt!Yi@mtPh7M4[jNB7WpduK857[N*qYprcQ%LJRFsoe&-q/=2rs[Gf@mtPh +7Eme?_fdBcqDFsoe3S+HIU$hN#?7M +4[jNB7[N*p\uZ0U4Xj_Fsoe&-q/;-7%)uq#;c; +c=_;K7UikeW!"@-q/;-SCmH1rseGI +NCA"=7Cpm_<%N-q/;-7^S<-q/;P_X@7"$2DeYFsoe&G2E/orrr;5V3Tp8q>Ucoc=_;K7Eo(r@qe[&@HFsoe&-q/;- +7M4[jNB7Xo(W.lqrb+NFsoe&4LjSO +q#;i(`HF[n-q/;-7U]fS:`4YQ*gGbrs%G4FssKUp\Fgp +pT9K)76V.!WPdqu6s!la0*(-uc]Kq#:QY^hlMgQ1OkP%doj>-q/;-7[N*q>UZrkH8Hd[/9b#&,=F_Fsoe&-q/;-7^S<-q/;- +7%*$q>UTXdD+Q5qu7'$\=,NKFsoe&9?6Vurr_5Y\Bb!O&GtXn;KaHWFsoe&-q/;-70Fsoe&.#?.1q>UQooC`"Xrt+eSPsojE7t2pAY-jrr3T-]q@JVFsoe&-q/;-7%)uq#;l;a_,cF7,*NiJ)(Wf<:DNKpMmB720sFsoe& +-q/;-7[N&o`#d"beT3NI4.O--q/;-7h4Fsoe&-q/;-7mruKXr@mtPh7h4Fsoe& +-q/;-7h4Fsoe&-q/;-74@OEA7M4[jNB7M +4[jNB7M4[jNB7M4[jNB7M4[jNB7M4[jNB7M4[jNB7M4[jNB7M4[jNB +7M4[jNB7M4[jNB7M4[jNB7M4[jNB7M4[jNB7Rp@59%TO!@A7t%A!3(Im@78O78O7"MCr5Y>ZL8n^1VBK/Ut3(djDMOf7T +s#>(WAP-Vq8n^1VBK/Ut3(djD8n^1VBK/Ut3(djD8n^1VBK/Ut3(djD8n^1VBK/Ut3(djDMOf7Ts#>(W +AP-Vq8n^1VBK/Ut3(djD8n^1VBK/Ut3(djD8n^1VBK/Ut3(djD8n^1VBK/Ut3(djDMOf7ks6BVDF,FO$ +BK/Ut3(djD8n^1VBK/Ut3(djD8n^1VBK/Ut3(djD8n^1VBK/Ut3(djD8n^1VBK1m?J)L>dF,FO$BK/Ut +3(djD8n^1VBK/Ut3(djD8n^1VBK/Ut3(djD8n^1VBK/Ut3(djD8n^1VBK1m?J)L>`F,FO$BK/Ut3(djD +8n^1VBK/Ut3(djD8n^1VBK/Ut3(djD8n^1VBK/Ut3(djD8n^1VBEL5OSU]St3-0sg8n^1VBK/Ut3(djD +8n^1VBK/Ut3(djD8n^1VBK/Ut3(djD8n^1VBK/Ut3(djD8n^2ASU]St4*-9j8n^1VBK/Ut3(djD8n^1V +BK/Ut3(djD8n^1VBK/Ut3(djD8n^1VBK/Ut3(djD8n^1]D*Rmnq<%_Vi;QmM;Le +~> %APLeod +EI +83 0 0 55 48 94 cm +BI +/Width 249 +/Height 165 +/BitsPerComponent 8 +/Decode[ +0 1 +0 1 +0 1 +] +/DataSource cg_aiproc +ID +JPq%sJPq%sJPqe3JPq%sJPq%sJPqe3e5Ccm=%c:p6qq#T9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4] +?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io +6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fb6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io +6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@J:?U@Io6;:fR9j^4]?U@Io +6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR +9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fRIna9:9j^4]?U@Io6;:fR +9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4] +?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?[kC:?U@Io6;:fR9j^4] +?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io +6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;9gS6;:fR9j^4]?U@Io +6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6;:fR9j^4]?U@Io6VgiV;,^?G;WCZ);,g=c +?:.@s4%O3E7W^+KFsoe&-q/;-7t%5(/4F_17!iX;L_GI77DAJ7sq,)-q/;-7XeNf +In4H377L4[jNB7qbm)b +Io'6?7=&Y;L_P: +AiiG)-q/;-7 %APLeod +EI +133 0 0 15 645 18 cm +BI +/Width 399 +/Height 45 +/BitsPerComponent 8 +/Decode[ +0 1 +0 1 +0 1 +] +/DataSource cg_aiproc +ID +JPq%sJPq%sJPq%sJPq%sJPsuqJPq%sJPq%sJPq%sJPq%sJPsuqJPq%sJPq%sJPq%sJPq%sJPsuqJPq%s +JPq%sJPq%sJPq%sJPsuqJPq%sJPq%sJPq%sJPq%sJPsuqohlK#?!U97?r16=:gd[-?slf=?r16=b>JpK +?slf=?r16=:gd[-?sli;?%Go=;P-hs;,^Ci?slf=?r16=:gd\/;@ZQ&;c$k0:gd[-?sli6=PHaA;D1jP +>u4p::gd[-?slf=?r16=:gd[-?slf=?r16=:gd[-?slf=?r1-7;-I.$<)eEHa&2t9;c='#?slf=?r16= +:gd[^;R011:gd[-?slf=?r16=;-dJn;Vk:];,^Ci?slf=?r16=:gd[c;Y4!;he,1FLTe&3<[#r2,1FLTe&0s@&-[15Eh9Te&,1FLTe&8ghQn,1FLTe&u4g4 +:Ln!/F`fs;Qnl7\,1FLTe&,1FLTe&%R@,8J`?NdM +,1FL\ae#D.ohleX`5*YH`?NdM,1FL_`4-u>`?NdM,1FLTe&>",B\cQ,7='8(e&s<5Eh9Te&"a!\6^*WsTpe3>RQmL75G=E6L5&H=CJe,5ku&X$<`W*s +;_>So,1FLTe&QUcdb:2=WB<`\?\&PQ_G,1FLTe&RRE@%8pYe\?sll1;$=IIJ3T`t4JnT4TpeB5O%a\=;H?i5;@uc( +;BXH-,1FLTe&9Z]ctqE,1FLTe&p;-6pt +=BJF$6n>2rL'9OqZXe&0s@-LQ?:LIQb]!Wa2`?NdM,1FLT +e&'?!SZ'`?NdM,1FLTe%\g[;=%13:LIQb]!Wa2`?NdM +,1FLTe&e&jkPl:0h-8 +,1FLTe&Xohl8p?!SZ'`?NdM,1FLXcCY#5,>2ff-cs4Le&X697"Be3e&%A7Qn5`?NdM,1FLTe&>0s@.-uQ/\8V>e&=bG +^9]K,[PkOVpeh`">$<)u`?NdM,1FLTe&]ctqE,1FLTe&H:`?NdM,1FLTe&&LYN5,1FLTe&.!ABRj_;,U:7e&X696\^=I +`4.J7ZR*o8,1FLTe&=bG^9]K,[PkOVpej(H>$<)u`?NdM,1FLTe&*;c=gf`?NdM,1FLT +e&=k:FQl[53h`5ke&`?NdM,1FL``1$$j&g#N@,1FLTe&`?NdM,1FLTe&=APNr;l@ +;@tgfY9MH7,1FLTe&!g!/\8V>e&#j]_&LtN0,1FLTe&&LYN5,1FLTe&Xpeh\gPER3>`?NdM,1FLTe&=AP +Noj4O2QO#*e&_C,1FLTe&.! +@.-u'7"Be3e&!fs3Mr`+`4.,=`$3[L +3j=A!;@u0s@/*V0+4J1Qe&5%Sp836(*g.F`gMkA5QH2ohkibA7Q/oe&0s@-LPh +;;kCe;,gL_L5$o$`?NdM,1FLTe%8OW;=[Tp4.2K\e&!g!9OqZXe&!g!9OqZXe&0s@.dD09OqZXe&0s@/Ejp;@Y(m_'7@I,1FLTe&=YIHhC8H+4J1Qe&+%AGB%79OqZXe&2cGUpU`?NdM,1FLTe&!g!9OqZXe&.!@/*V39OqZXe&(&Q)G(+Oe:Re&%A7Qn5`?NdM,1FLT +e%8OW;=[Tp4.2K\e&\SH?r.5H?r//H:`F/8U>\S +H?r//H:`F/8U>\SH?r//H:`F/8U>\SH?r/5J5TEKpeh\tA7Qn5`?NdM,1FLTe%8OW;%S[AZ<`PY-7J;-dK,;@uT5A0TLA +,1FLTe&\SH?r//H:`F/8U>\SH?r//H:`F/ +8U>\SH?r//H:`F/8U>\SJ:LNu\S +H?r//H:`F/8U>\SH?r//H:`F/8U>\SH?r//H:`F/8U>\SH?r//H:`X;;H?iq;Y,1FLTe&5=XCMQgI<:!Kp4.2K\e&=$-:KU^Ce&.;@uT5A0TLA,1FLTe&u/D263r*e&"+C.9QbJSA7SP@>#J6qpeh\tA7Qn5`?NdM,1FLTe%8OW;"2Cu\D*1omi)e&"+C.9QbJSA7SP@>#J6qqbm)b%O]32,1FLTe&6hDm5 +e&6k=nkl,9OqZXe&X5m +9OqZD,1FLTe&e&0s@.dD03h`5ke&%O]32 +,1FLTe&$CAm(JAOZ+k+CSe&0s@.dD09OqZXe&.!@.-u*9OqZXe&=$'7s/que&L*>$b,1FLT +e&OSO&[2 +5G=N1Tpe3>RQmL76(+!%Tpe!BU,'0s@.dD09OqZXe&=>;BXH-,1FLTe&RQmL75G=N1 +Tpe3>RQh[`RQmL75G=N1Tpe3>RQmL75G=N1Tq"i"C\Ud>9OqZXe&#k>qohl8I`5*YH`?NdM,1FLtTmQ-('K__N,1FLTe&",B_#%A9OqZXe&.Be&!gN+jS"Me&_C,1FLT +e&6moph,1FLTe&`?NdM,1FLTe&0s@.dD0 +9OqZXe&=>;BXH-,1FLTe&.Be&YF^h,5mg +TqN[Z`?NdM,1FLTe&=>;BXH-,1FLTe&,1FLTe&0s@-gc97Y$";ahf7N`?NdM,1FLTe&l`?NdM,1FLTe&,1FLTe&$<)u +`?NdM,1FLTe$r=T;9i&e;,U:7e&#AC(;-$`X;?0N,=BJ74CJ/em9Q4rEE,\QfCJeACM,G$b<`Vt.B1mAi +9Q4rGCMQaWA5QB.U/HP?r)+5*=BJ74CJ/em9Q4rEE,\QfCJeACcr(WX;c$k09Q4rDF`gAsE)(1a;.*d/ +<`\6Y\Pa#4B4iF;`?NdM,1FLTe%8OW;1VX";R'+-;-$^o>$=d*=A`+"j&-Rf=BJ74CJ/em9Q4rEE,\Qf +CJeACj&1G+JPq%sJPq%sJPt`1&Q)G(+4J1UcFkmFYW/k[;Hd2_;@Y1j^EV.G,1FLTe&\(+,\)$+..#$5"*#=?;&.*-\)#,&8+$&)[ 6.624000 6.996000 6.864000 3.000000 5.856000 3.000000 6.864000 8.952000 3.000000 3.600000 6.000000 7.332000 6.972000 3.804000 4.104000 7.332000 3.024000 3.024000 6.864000 4.032000 3.840000 5.856000 3.000000 6.864000 8.952000 3.600000 2.760000 3.000000 3.024000 3.000000 5.328000 3.804000 6.864000 6.972000 3.000000 3.540000 7.332000 4.320000 0.000000 ] xS +-114.05511 18.637796 m +(\(1',<#5#"#,\)-;&$#\)$*#"#&\)1#&,#=&2'\)'&)[ 6.000000 6.996000 6.408000 6.972000 7.584000 6.864000 3.840000 6.864000 5.856000 6.864000 6.972000 3.804000 5.328000 2.760000 3.000000 4.104000 6.864000 3.804000 4.320000 3.000000 6.864000 5.856000 6.864000 3.000000 3.804000 6.996000 6.864000 3.000000 6.972000 6.864000 8.952000 3.000000 7.644000 6.288000 3.804000 6.408000 0.000000 ] xS +-114.05511 34.637794 m +(8$+4&\)1#&-\)+$#-&',2&:$+"*2#&\)1#&,#=&2'\)'&)[ 3.540000 4.104000 7.332000 10.596000 3.000000 3.804000 6.996000 6.864000 3.000000 5.328000 3.804000 7.332000 4.104000 6.864000 5.328000 3.000000 6.408000 6.972000 7.644000 3.000000 7.620000 4.104000 7.332000 5.856000 3.000000 7.644000 6.864000 3.000000 3.804000 6.996000 6.864000 3.000000 6.972000 6.864000 8.952000 3.000000 7.644000 6.288000 3.804000 6.408000 0.000000 ] xS +-114.05511 50.637794 m +(\)+&\)1#*$&\(1*.2&"*#=-/)[ 3.804000 7.332000 3.000000 3.804000 6.996000 6.864000 3.000000 4.320000 3.000000 6.000000 6.996000 3.000000 3.024000 7.644000 3.000000 5.856000 3.000000 6.864000 8.952000 5.328000 0.000000 ] xS +1 J +1 j +0.60000002 i +1 0.48626199 0.047367401 sc +1 0 0 -1 9 542 cm +308.5 393.87402 m +308.5 372.87637 l +S +CM +317.07874 177.12363 m +314.07874 169.12363 l +320.07874 169.12363 l +h +317.07874 177.12363 m +f +0 J +0 j +1 0 0 -1 9 542 cm +308.07874 364.87637 m +305.07874 372.87637 l +311.07874 372.87637 l +h +308.07874 364.87637 m +S +ep +end +%%Trailer +%%EOF diff --git a/doc/mdl/mdlflux/mdlFlux.graffle/data.plist b/doc/mdl/mdlflux/mdlFlux.graffle/data.plist new file mode 100644 index 0000000..abb1c09 Binary files /dev/null and b/doc/mdl/mdlflux/mdlFlux.graffle/data.plist differ diff --git a/doc/mdl/mdlflux/mdlFlux.graffle/image4.pdf b/doc/mdl/mdlflux/mdlFlux.graffle/image4.pdf new file mode 100644 index 0000000..17e8aec Binary files /dev/null and b/doc/mdl/mdlflux/mdlFlux.graffle/image4.pdf differ diff --git a/doc/mdl/mdlflux/mdlFlux.sketch b/doc/mdl/mdlflux/mdlFlux.sketch new file mode 100644 index 0000000..dd164e5 Binary files /dev/null and b/doc/mdl/mdlflux/mdlFlux.sketch differ diff --git a/pubspec.yaml b/pubspec.yaml index 97a10d4..910fb80 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: mdl_site -version: 0.0.1 +version: 1.19.4 description: Material Design Lite author: homepage: http://www.material-design-lite.pub/ @@ -8,30 +8,26 @@ environment: sdk: ^1.0.0 dependencies: - browser: ^0.10.0 - mdl: + # '>=2.1.0 <3.0.0' +# git: +# url: git@github.com:MikeMitterer/dart-material-design-lite.git + # ref: v2.2 path: /Volumes/Daten/DevLocal/DevDart/MaterialDesignLite - logging: ^0.11.0 - logging_handlers: ^0.8.0 - console_log_handler: ^0.1.0 + logging: '>=0.11.3 <1.0.0' + console_log_handler: ^1.0.0 + # git: git@github.com:MikeMitterer/dart-console_log_handler.git + # path: /Volumes/Daten/DevLocal/DevDart/ConsoleLogHandler prettify: ^0.1.0 - di: ^3.3.0 - -#dependency_overrides: -# analyzer: ">=0.23.0 <0.26.0" - dev_dependencies: test: any grinder: any + mdl_grinder: + #git: https://github.com/MikeMitterer/dart-mdl-grinder + path: /Volumes/Daten/DevLocal/DevDart/MaterialGrinder -transformers: - - di - - - $dart2js: - commandLineOptions: [--enable-experimental-mirrors] -# minify: false -# sourceMaps: true + build_runner: any + build_web_compilers: any \ No newline at end of file diff --git a/samples/.rsync b/samples/.rsync new file mode 100644 index 0000000..4a53f1c --- /dev/null +++ b/samples/.rsync @@ -0,0 +1,14 @@ +# Rsync-Destination für dieses sample +# +# - ssh ls2 +# - cd ~/website/config/nginx +# - cp -a m4d_router.conf samples.conf +# - ls -la ~/website/data/example/ +# - sudo mcedit samples.conf +# - sudo mkdir ~/website/data/example/samples +# - sudo chown ubuntu:ubuntu ~/website/data/example/samples +# - sudo chmod 775 ~/website/data/example/samples +# +RSYNC_DESTINATION=:/Users/mikemitterer/website/data/example/samples/ +EXAMPLE_URL=http://samples.example.mikemitterer.at/ + diff --git a/samples/_templates/default.html b/samples/_templates/default.html index 4ac56eb..2485b2e 100644 --- a/samples/_templates/default.html +++ b/samples/_templates/default.html @@ -6,7 +6,8 @@ {{title}} - + {{_site.js1}} + @@ -50,7 +51,7 @@
Loading...
-
+
{{title}}-Sample @@ -83,7 +84,7 @@
- + diff --git a/samples/index.old.html b/samples/index.old.html index c81f741..a002021 100644 --- a/samples/index.old.html +++ b/samples/index.old.html @@ -45,7 +45,7 @@
-

Material Design Lite, Dart version

+

Material Design Lite, Dart version

A port of Googles Material Design Lite to Dart

Material Design Lite strives to give you a high performance starting point out of the box @@ -59,7 +59,7 @@

-

Styleguide

+

Styleguide

The Styleguide shows all samples in one page. It is also a nice example for a Single-Page-Application (SPA). All views are loaded dynamically via "MaterialContent-Component" @@ -68,7 +68,7 @@

Styleguide

-

Components - Material Design Lite (MDL)

+

Components - Material Design Lite (MDL)

  • @@ -169,7 +169,7 @@

    Components - Material Design Lite (MDL)

-

Components - EXTRA (Dart-Version)

+

Components - EXTRA (Dart-Version)

  • @@ -202,7 +202,7 @@

    Components - EXTRA (Dart-Version)

-

Single Page Sample (SPA)

+

Single Page Sample (SPA)

  • @@ -216,7 +216,7 @@

    Single Page Sample (SPA)

    -

    Theming

    +

    Theming

    Theming is very easy. This is your basic SCSS file:

    main.scss:

    @@ -304,12 +304,12 @@ 

    Theming

@@ -73,21 +86,25 @@ Mike Mitterer, IT-Consulting and Development Ltd.

+ - - + + + diff --git a/samples/mdl_animation/web/main.dart b/samples/mdl_animation/web/main.dart index f8dce4a..92ed187 100644 --- a/samples/mdl_animation/web/main.dart +++ b/samples/mdl_animation/web/main.dart @@ -1,26 +1,18 @@ -import 'package:logging/logging.dart'; +import 'dart:async'; import 'package:console_log_handler/console_log_handler.dart'; import 'package:mdl/mdl.dart'; import 'package:mdl/mdldemo.dart'; -main() { +import 'main.reflectable.dart'; + +Future main() async { configLogging(); + initializeReflectable(); // registerDemoAnimation and import mdldemo.dart is only necessary for animation sample registerDemoAnimation(); registerMdl(); - componentFactory().run().then((_){ - - }); + await componentFactory().run(); } - -void configLogging() { - hierarchicalLoggingEnabled = false; // set this to true - its part of Logging SDK - - // now control the logging. - // Turn off all logging first - Logger.root.level = Level.INFO; - Logger.root.onRecord.listen(new LogConsoleHandler()); -} \ No newline at end of file diff --git a/samples/mdl_animation/web/main.reflectable.dart b/samples/mdl_animation/web/main.reflectable.dart new file mode 100644 index 0000000..2ea20d3 --- /dev/null +++ b/samples/mdl_animation/web/main.reflectable.dart @@ -0,0 +1,41 @@ +// This file has been generated by the reflectable package. +// https://github.com/dart-lang/reflectable. + +import "dart:core"; +import 'dart:async' as prefix12; +import 'dart:html' as prefix13; +import 'package:dryice/dryice.dart' as prefix0; +import 'package:l10n/l10n.dart' as prefix10; +import 'package:mdl/mdlapplication.dart' as prefix5; +import 'package:mdl/mdlcomponents.dart' as prefix1; +import 'package:mdl/mdlcore.dart' as prefix4; +import 'package:mdl/mdldialog.dart' as prefix7; +import 'package:mdl/mdldirective.dart' as prefix9; +import 'package:mdl/mdlflux.dart' as prefix6; +import 'package:mdl/mdlformatter.dart' as prefix3; +import 'package:mdl/mdltemplate.dart' as prefix8; +import 'package:mdl/src/core/annotations.dart' as prefix11; +import 'package:reflected_mustache/mustache.dart' as prefix2; + +// ignore:unused_import +import "package:reflectable/mirrors.dart" as m; +// ignore:unused_import +import "package:reflectable/src/reflectable_transformer_based.dart" as r; +// ignore:unused_import +import "package:reflectable/reflectable.dart" show isTransformed; + +final _data = {const prefix0.InjectAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"MaterialBadge", r"mdlcomponents.MaterialBadge", 7, 0, const prefix0.InjectAnnotation(), const [46, 47, 48, 49], const [50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 47, 48], const [46], -1, {r"widget": () => prefix1.MaterialBadge.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialBadge.fromElement(element, injector) : null}, 0, 0, const [], const [prefix11.Component, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 1, const prefix0.InjectAnnotation(), const [72, 73, 74, 75, 76, 77, 78, 79], const [50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78], const [72], -1, {r"widget": () => prefix1.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialButton.fromElement(element, injector) : null}, 0, 1, const [], const [prefix11.Component, prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 2, const prefix0.InjectAnnotation(), const [80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95], const [50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 85, 67, 68, 69, 70, 71, 96, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94], const [80], 32, {r"widget": () => prefix1.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialCheckbox.fromElement(element, injector) : null}, 0, 2, const [], const [prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"Formatter", r"mdlformatter.Formatter", 7, 3, const prefix0.InjectAnnotation(), const [4, 5, 6, 7, 8, 102], const [50, 51, 52, 53, 54, 97, 98, 99, 100, 101], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.Formatter() : null}, 1, 3, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FallbackFormatter", r"mdlformatter.FallbackFormatter", 519, 4, const prefix0.InjectAnnotation(), const [96, 103], const [50, 51, 52, 53, 54, 96], const [], -1, {}, {}, {}, 1, 4, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ChooseFormatter", r"mdlformatter.ChooseFormatter", 7, 5, const prefix0.InjectAnnotation(), const [104, 105], const [50, 51, 52, 53, 54, 104], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.ChooseFormatter() : null}, 1, 5, const [], const [prefix11.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DecoratorFormatter", r"mdlformatter.DecoratorFormatter", 7, 6, const prefix0.InjectAnnotation(), const [106, 107, 108], const [50, 51, 52, 53, 54, 106, 107], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.DecoratorFormatter() : null}, 1, 6, const [], const [prefix11.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"LowerCaseFormatter", r"mdlformatter.LowerCaseFormatter", 7, 7, const prefix0.InjectAnnotation(), const [109, 110, 111], const [50, 51, 52, 53, 54, 109, 110], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.LowerCaseFormatter() : null}, 1, 7, const [], const [prefix11.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"NumberFormatter", r"mdlformatter.NumberFormatter", 7, 8, const prefix0.InjectAnnotation(), const [112, 113, 114], const [50, 51, 52, 53, 54, 112, 113], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.NumberFormatter() : null}, 1, 8, const [], const [prefix11.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"UpperCaseFormatter", r"mdlformatter.UpperCaseFormatter", 7, 9, const prefix0.InjectAnnotation(), const [115, 116, 117], const [50, 51, 52, 53, 54, 115, 116], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.UpperCaseFormatter() : null}, 1, 9, const [], const [prefix11.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialApplication", r"mdlcore.MaterialApplication", 7, 10, const prefix0.InjectAnnotation(), const [118, 119], const [50, 51, 52, 53, 54, 118], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix4.MaterialApplication() : null}, 2, 10, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"RefreshableComponent", r"mdlcore.RefreshableComponent", 519, 11, const prefix0.InjectAnnotation(), const [120, 121], const [50, 51, 52, 53, 54], const [], -1, {}, {}, {}, 2, 11, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DomRenderer", r"mdlapplication.DomRenderer", 7, 12, const prefix0.InjectAnnotation(), const [122, 123, 124], const [50, 51, 52, 53, 54, 122, 123], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.DomRenderer() : null}, 3, 12, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"EventCompiler", r"mdlapplication.EventCompiler", 7, 13, const prefix0.InjectAnnotation(), const [9, 125, 127], const [50, 51, 52, 53, 54, 125], const [126], -1, {r"datasets": () => prefix5.EventCompiler.datasets}, {}, {r"": (b) => () => b ? new prefix5.EventCompiler() : null}, 3, 13, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"RootScope", r"mdlapplication.RootScope", 7, 14, const prefix0.InjectAnnotation(), const [128], const [50, 51, 52, 53, 54, 129, 130, 131, 132], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.RootScope() : null}, 3, 14, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBus", r"mdlflux.ActionBus", 519, 15, const prefix0.InjectAnnotation(), const [133, 134, 135], const [50, 51, 52, 53, 54], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix6.ActionBus() : null}, 4, 15, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBusImpl", r"mdlflux.ActionBusImpl", 7, 16, const prefix0.InjectAnnotation(), const [136, 137, 138], const [50, 51, 52, 53, 54, 136, 137], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix6.ActionBusImpl() : null}, 4, 16, const [15], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DataStore", r"mdlflux.DataStore", 519, 17, const prefix0.InjectAnnotation(), const [139, 140], const [50, 51, 52, 53, 54, 141, 142], const [], -1, {}, {}, {}, 4, 17, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FireOnlyDataStore", r"mdlflux.FireOnlyDataStore", 7, 18, const prefix0.InjectAnnotation(), const [143, 144], const [50, 51, 52, 53, 54, 141, 142, 143], const [], 17, {}, {}, {r"": (b) => (_actionbus) => b ? new prefix6.FireOnlyDataStore(_actionbus) : null}, 4, 18, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialAlertDialog", r"mdldialog.MaterialAlertDialog", 7, 19, const prefix0.InjectAnnotation(), const [10, 11, 12, 13, 145, 146, 155, 156], const [50, 51, 52, 53, 54, 157, 55, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix7.MaterialAlertDialog() : null}, 5, 19, const [], const [prefix11.Component, prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"MdlConfirmDialog", r"mdldialog.MdlConfirmDialog", 7, 20, const prefix0.InjectAnnotation(), const [16, 17, 18, 19, 20, 168, 169, 170, 181, 182], const [50, 51, 52, 53, 54, 157, 55, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix7.MdlConfirmDialog() : null}, 5, 20, const [], const [prefix11.Component, prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialSnackbar", r"mdldialog.MaterialSnackbar", 7, 21, const prefix0.InjectAnnotation(), const [21, 22, 23, 24, 25, 26, 27, 28, 183, 184, 185, 198, 199, 200], const [50, 51, 52, 53, 54, 157, 55, 184, 159, 160, 161, 162, 163, 164, 165, 166, 167, 183, 185, 187, 188, 191, 192, 193, 194, 195, 196, 197, 198, 199], const [186, 189, 190], -1, {r"DEFAULT_CONFIRM_BUTTON": () => prefix7.MaterialSnackbar.DEFAULT_CONFIRM_BUTTON, r"LONG_DELAY": () => prefix7.MaterialSnackbar.LONG_DELAY, r"SHORT_DELAY": () => prefix7.MaterialSnackbar.SHORT_DELAY}, {}, {r"": (b) => () => b ? new prefix7.MaterialSnackbar() : null}, 5, 21, const [], const [prefix11.Component, prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialNotification", r"mdldialog.MaterialNotification", 7, 22, const prefix0.InjectAnnotation(), const [29, 30, 31, 32, 33, 34, 35, 36, 201, 202, 203, 218, 219, 220, 221, 222, 223], const [50, 51, 52, 53, 54, 157, 55, 202, 159, 160, 161, 162, 163, 164, 165, 166, 167, 201, 203, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222], const [204, 205], -1, {r"LONG_DELAY": () => prefix7.MaterialNotification.LONG_DELAY, r"SHORT_DELAY": () => prefix7.MaterialNotification.SHORT_DELAY}, {}, {r"": (b) => () => b ? new prefix7.MaterialNotification() : null}, 5, 22, const [], const [prefix11.Component, prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialDatePicker", r"mdldialog.MaterialDatePicker", 7, 23, const prefix0.InjectAnnotation(), const [37, 38, 39, 40, 224, 225, 226, 227, 228, 229, 230, 231, 232, 241, 242, 243, 244], const [50, 51, 52, 53, 54, 157, 55, 224, 159, 160, 161, 162, 163, 164, 165, 166, 167, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix7.MaterialDatePicker() : null}, 5, 23, const [], const [prefix11.Component, prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialTimePicker", r"mdldialog.MaterialTimePicker", 7, 24, const prefix0.InjectAnnotation(), const [41, 42, 245, 246, 247, 248, 249, 250, 251, 256, 257, 258], const [50, 51, 52, 53, 54, 157, 55, 245, 159, 160, 161, 162, 163, 164, 165, 166, 167, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix7.MaterialTimePicker() : null}, 5, 24, const [], const [prefix11.Component, prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialDialogComponent", r"mdldialog.MaterialDialogComponent", 7, 25, const prefix0.InjectAnnotation(), const [259, 260, 261, 262], const [50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 260, 261], const [259], -1, {r"widget": () => prefix7.MaterialDialogComponent.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix7.MaterialDialogComponent.fromElement(element, injector) : null}, 5, 25, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"TemplateRenderer", r"mdltemplate.TemplateRenderer", 7, 26, const prefix0.InjectAnnotation(), const [43, 263, 264, 267], const [50, 51, 52, 53, 54, 263, 264, 265, 266], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix8.TemplateRenderer(_renderer, _eventCompiler) : null}, 6, 26, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ListRenderer", r"mdltemplate.ListRenderer", 7, 27, const prefix0.InjectAnnotation(), const [44, 45, 268, 273], const [50, 51, 52, 53, 54, 268, 269, 270, 271, 272], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix8.ListRenderer(_renderer, _eventCompiler) : null}, 6, 27, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialModel", r"mdldirective.MaterialModel", 7, 28, const prefix0.InjectAnnotation(), const [274, 275, 276], const [50, 51, 52, 53, 54, 55, 56, 57, 274, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 275], const [], -1, {}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix9.MaterialModel.fromElement(element, injector) : null}, 7, 28, const [11], const [prefix11.Component, prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"ModelObserverFactory", r"mdldirective.ModelObserverFactory", 7, 29, const prefix0.InjectAnnotation(), const [277, 278, 279], const [50, 51, 52, 53, 54, 277, 278], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix9.ModelObserverFactory() : null}, 7, 29, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"Translator", r"l10n.Translator", 519, 30, const prefix0.InjectAnnotation(), const [280, 281, 282], const [50, 51, 52, 53, 54, 281], const [], -1, {}, {}, {}, 8, 30, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"L10NTranslate", r"l10n.L10NTranslate", 7, 31, const prefix0.InjectAnnotation(), const [283, 284, 285, 286, 287, 288, 289, 290, 291, 292], const [50, 51, 52, 53, 54, 286, 283, 284, 285, 287, 288, 289], const [], 30, {}, {}, {r"withTranslation": (b) => (translation, {locale: "en"}) => b ? new prefix10.L10NTranslate.withTranslation(translation, locale: locale) : null, r"withTranslations": (b) => (translations) => b ? new prefix10.L10NTranslate.withTranslations(translations) : null, r"": (b) => () => b ? new prefix10.L10NTranslate() : null}, 8, 31, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 32, const prefix0.InjectAnnotation(), const [96], const [50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 96], const [], -1, const {}, const {}, const {}, 0, 4, const [], const [], null)], [new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix0.InjectAnnotation(), -1, 33, 34, const []), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix0.InjectAnnotation(), -1, 35, 35, const []), new r.VariableMirrorImpl(r"element", 33797, null, const prefix0.InjectAnnotation(), -1, 36, 36, const []), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix0.InjectAnnotation(), -1, 37, 37, const []), new r.VariableMirrorImpl(r"number", 33797, 3, const prefix0.InjectAnnotation(), 8, 8, 8, const []), new r.VariableMirrorImpl(r"decorate", 33797, 3, const prefix0.InjectAnnotation(), 6, 6, 6, const []), new r.VariableMirrorImpl(r"uppercase", 33797, 3, const prefix0.InjectAnnotation(), 9, 9, 9, const []), new r.VariableMirrorImpl(r"lowercase", 33797, 3, const prefix0.InjectAnnotation(), 7, 7, 7, const []), new r.VariableMirrorImpl(r"choose", 33797, 3, const prefix0.InjectAnnotation(), 5, 5, 5, const []), new r.VariableMirrorImpl(r"datasets", 2130965, 13, const prefix0.InjectAnnotation(), -1, 38, 39, const []), new r.VariableMirrorImpl(r"title", 32773, 19, const prefix0.InjectAnnotation(), -1, 40, 40, const []), new r.VariableMirrorImpl(r"text", 32773, 19, const prefix0.InjectAnnotation(), -1, 40, 40, const []), new r.VariableMirrorImpl(r"okButton", 32773, 19, const prefix0.InjectAnnotation(), -1, 40, 40, const []), new r.VariableMirrorImpl(r"template", 32773, 19, const prefix0.InjectAnnotation(), -1, 40, 40, const [override]), new r.VariableMirrorImpl(r"lambdas", 2130949, null, const prefix0.InjectAnnotation(), -1, 41, 42, const []), new r.VariableMirrorImpl(r"dialog", 32773, null, const prefix0.InjectAnnotation(), -1, 43, 43, const []), new r.VariableMirrorImpl(r"template", 32773, 20, const prefix0.InjectAnnotation(), -1, 40, 40, const [override]), new r.VariableMirrorImpl(r"title", 32773, 20, const prefix0.InjectAnnotation(), -1, 40, 40, const []), new r.VariableMirrorImpl(r"text", 32773, 20, const prefix0.InjectAnnotation(), -1, 40, 40, const []), new r.VariableMirrorImpl(r"yesButton", 32773, 20, const prefix0.InjectAnnotation(), -1, 40, 40, const []), new r.VariableMirrorImpl(r"noButton", 32773, 20, const prefix0.InjectAnnotation(), -1, 40, 40, const []), new r.VariableMirrorImpl(r"DEFAULT_CONFIRM_BUTTON", 33941, 21, const prefix0.InjectAnnotation(), -1, 40, 40, const []), new r.VariableMirrorImpl(r"template", 32773, 21, const prefix0.InjectAnnotation(), -1, 40, 40, const [override]), new r.VariableMirrorImpl(r"LONG_DELAY", 33941, 21, const prefix0.InjectAnnotation(), -1, 44, 44, const []), new r.VariableMirrorImpl(r"SHORT_DELAY", 33941, 21, const prefix0.InjectAnnotation(), -1, 44, 44, const []), new r.VariableMirrorImpl(r"position", 33797, 21, const prefix0.InjectAnnotation(), -1, 45, 45, const []), new r.VariableMirrorImpl(r"text", 32773, 21, const prefix0.InjectAnnotation(), -1, 40, 40, const []), new r.VariableMirrorImpl(r"confirmButton", 32773, 21, const prefix0.InjectAnnotation(), -1, 40, 40, const []), new r.VariableMirrorImpl(r"timeout", 32773, 21, const prefix0.InjectAnnotation(), -1, 44, 44, const []), new r.VariableMirrorImpl(r"LONG_DELAY", 33941, 22, const prefix0.InjectAnnotation(), -1, 44, 44, const []), new r.VariableMirrorImpl(r"SHORT_DELAY", 33941, 22, const prefix0.InjectAnnotation(), -1, 44, 44, const []), new r.VariableMirrorImpl(r"type", 32773, 22, const prefix0.InjectAnnotation(), -1, 46, 46, const []), new r.VariableMirrorImpl(r"title", 32773, 22, const prefix0.InjectAnnotation(), -1, 40, 40, const []), new r.VariableMirrorImpl(r"subtitle", 32773, 22, const prefix0.InjectAnnotation(), -1, 40, 40, const []), new r.VariableMirrorImpl(r"content", 32773, 22, const prefix0.InjectAnnotation(), -1, 40, 40, const []), new r.VariableMirrorImpl(r"timeout", 32773, 22, const prefix0.InjectAnnotation(), -1, 44, 44, const []), new r.VariableMirrorImpl(r"template", 32773, 22, const prefix0.InjectAnnotation(), -1, 40, 40, const [override]), new r.VariableMirrorImpl(r"dateTime", 32773, 23, const prefix0.InjectAnnotation(), -1, 47, 47, const []), new r.VariableMirrorImpl(r"yearFrom", 32773, 23, const prefix0.InjectAnnotation(), -1, 44, 44, const []), new r.VariableMirrorImpl(r"yearTo", 32773, 23, const prefix0.InjectAnnotation(), -1, 44, 44, const []), new r.VariableMirrorImpl(r"template", 32773, 23, const prefix0.InjectAnnotation(), -1, 40, 40, const [override]), new r.VariableMirrorImpl(r"dateTime", 32773, 24, const prefix0.InjectAnnotation(), -1, 47, 47, const []), new r.VariableMirrorImpl(r"template", 32773, 24, const prefix0.InjectAnnotation(), -1, 40, 40, const [override]), new r.VariableMirrorImpl(r"appendNewNodes", 32773, 26, const prefix0.InjectAnnotation(), -1, 37, 37, const []), new r.VariableMirrorImpl(r"listTag", 32773, 27, const prefix0.InjectAnnotation(), -1, 40, 40, const []), new r.VariableMirrorImpl(r"itemTag", 32773, 27, const prefix0.InjectAnnotation(), -1, 40, 40, const []), new r.MethodMirrorImpl(r"widget", 131090, 0, 0, 0, 0, const [0], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 0, null, -1, -1, const [3], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 0, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 0, -1, 0, 0, const [1, 2], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"==", 131074, null, -1, 37, 37, const [4], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [5], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 44, 44, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 48, 48, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 0, 33, 34, 55), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [6], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"query", 131074, null, -1, 36, 36, const [7, 8], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"waitForChild", 4325378, null, -1, 49, 50, const [9, 10, 11], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 1, 35, 35, 62), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 2, 36, 36, 63), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 37, 37, 64), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 37, 37, 65), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 36, 36, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 51, 51, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 52, 53, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 54, 55, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 56, 57, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 58, 58, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 1, 1, 1, 1, const [13], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 1, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 1, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled=", 262148, 1, null, -1, -1, const [16], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled", 131075, 1, -1, 37, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 1, null, -1, -1, const [17], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 1, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 1, -1, 1, 1, const [14, 15], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 2, 2, 2, 2, const [18], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"check", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uncheck", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hub", 131075, 2, -1, 36, 36, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"inputElement", 131075, 2, -1, 59, 59, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked=", 262148, 2, null, -1, -1, const [21], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked", 131075, 2, -1, 37, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled=", 262148, 2, null, -1, -1, const [22], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled", 131075, 2, -1, 37, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label", 131075, 2, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label=", 262148, 2, null, -1, -1, const [23], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 2, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 2, null, -1, -1, const [24], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 2, -1, 2, 2, const [19, 20], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"formatterFor", 131074, 4, -1, 60, 60, const [25, 26], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 4, 8, 8, 97), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 5, 6, 6, 98), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 6, 9, 9, 99), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 7, 7, 7, 100), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 8, 5, 5, 101), new r.MethodMirrorImpl(r"", 64, 3, -1, 3, 3, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 4, -1, 4, 4, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"choose", 131074, 5, -1, 40, 40, const [27, 28, 29], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 5, -1, 5, 5, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"decorate", 131074, 6, -1, 40, 40, const [30], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 6, -1, 40, 40, const [31], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 6, -1, 6, 6, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"lowercase", 131074, 7, -1, 40, 40, const [32], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 7, -1, 40, 40, const [33], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 7, -1, 7, 7, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"number", 131074, 8, -1, 40, 40, const [34, 35], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 8, -1, 40, 40, const [36, 37], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 8, -1, 8, 8, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uppercase", 131074, 9, -1, 40, 40, const [38], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 9, -1, 40, 40, const [39], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 9, -1, 9, 9, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"run", 262146, 10, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 10, -1, 10, 10, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"refresh", 262658, 11, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 11, -1, 11, 11, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"render", 4325378, 12, -1, 61, 62, const [40, 41, 42], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"renderBefore", 4325378, 12, -1, 61, 62, const [43, 44, 45], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 12, -1, 12, 12, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"compileElement", 4325378, 13, -1, 63, 64, const [46, 47], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 9, 38, 39, 126), new r.MethodMirrorImpl(r"", 0, 13, -1, 13, 13, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 14, -1, 14, 14, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context", 131075, null, -1, 65, 65, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context=", 262148, null, null, -1, -1, const [48], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parentContext", 131075, null, -1, 65, 65, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"rootContext", 131075, null, -1, 65, 65, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 15, null, -1, -1, const [49], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"on", 4325890, 15, -1, 66, 67, const [50], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 1, 15, -1, 15, 15, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 16, null, -1, -1, const [51], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"on", 4325378, 16, -1, 66, 67, const [52], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 1, 16, -1, 16, 16, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 17, null, -1, -1, const [53], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 17, -1, 17, 17, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"emitChange", 262146, null, null, -1, -1, const [54], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onChange", 4325379, null, -1, 68, 69, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 18, null, -1, -1, const [55], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 0, 18, -1, 18, 18, const [56], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 19, 19, 19, 19, const [57, 58, 59], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClose", 262146, 19, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 40, 40, 147), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 40, 40, 148), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 40, 40, 149), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 40, 40, 150), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 12, 40, 40, 151), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 12, 40, 40, 152), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 13, 40, 40, 153), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 13, 40, 40, 154), new r.MethodMirrorImpl(r"hasTitle", 131075, 19, -1, 37, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 19, -1, 19, 19, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 14, 41, 42, 157), new r.MethodMirrorImpl(r"show", 4325378, null, -1, 70, 71, const [64, 65], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"close", 4325378, null, -1, 63, 64, const [66], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"query", 131074, null, -1, 36, 36, const [67], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 15, 43, 43, 161), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 15, 43, 43, 162), new r.MethodMirrorImpl(r"id", 131075, null, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hasTimer", 131075, null, -1, 37, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hasNoTimer", 131075, null, -1, 37, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"isAutoCloseEnabled", 131075, null, -1, 37, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"scope", 131075, null, -1, 72, 72, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 20, 20, 20, 20, const [69, 70, 71, 72], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onYes", 262146, 20, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onNo", 262146, 20, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 16, 40, 40, 171), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 16, 40, 40, 172), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 17, 40, 40, 173), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 17, 40, 40, 174), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 18, 40, 40, 175), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 18, 40, 40, 176), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 19, 40, 40, 177), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 19, 40, 40, 178), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 20, 40, 40, 179), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 20, 40, 40, 180), new r.MethodMirrorImpl(r"hasTitle", 131075, 20, -1, 37, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 20, -1, 20, 20, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 21, 21, 21, 21, const [78, 79], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"show", 4325378, 21, -1, 70, 71, const [80, 81], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"onClose", 262146, 21, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 21, 40, 40, 186), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 22, 40, 40, 187), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 22, 40, 40, 188), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 23, 44, 44, 189), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 24, 44, 44, 190), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 25, 45, 45, 191), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 26, 40, 40, 192), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 26, 40, 40, 193), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 27, 40, 40, 194), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 27, 40, 40, 195), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 28, 44, 44, 196), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 28, 44, 44, 197), new r.MethodMirrorImpl(r"waitingForConfirmation", 131075, 21, -1, 37, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hasConfirmButton", 131075, 21, -1, 37, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 21, -1, 21, 21, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 22, 22, 22, 22, const [86, 87, 88, 89], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"show", 4325378, 22, -1, 70, 71, const [90, 91], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"onClose", 262146, 22, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 29, 44, 44, 204), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 30, 44, 44, 205), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 31, 46, 46, 206), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 31, 46, 46, 207), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 32, 40, 40, 208), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 32, 40, 40, 209), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 33, 40, 40, 210), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 33, 40, 40, 211), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 34, 40, 40, 212), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 34, 40, 40, 213), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 35, 44, 44, 214), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 35, 44, 44, 215), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 36, 40, 40, 216), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 36, 40, 40, 217), new r.MethodMirrorImpl(r"hasTitle", 131075, 22, -1, 37, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hasSubTitle", 131075, 22, -1, 37, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hasContent", 131075, 22, -1, 37, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"autoClose=", 262148, 22, null, -1, -1, const [98], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"autoClose", 131075, 22, -1, 37, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 22, -1, 22, 22, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"show", 4325378, 23, -1, 70, 71, const [99, 100], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"onClose", 262146, 23, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onCancel", 262146, 23, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickLeft", 262146, 23, null, -1, -1, const [101], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickRight", 262146, 23, null, -1, -1, const [102], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickDay", 262146, 23, null, -1, -1, const [103], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickYear", 262146, 23, null, -1, -1, const [104], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickDate", 262146, 23, null, -1, -1, const [105], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickItemInYearList", 262146, 23, null, -1, -1, const [106], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 37, 47, 47, 233), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 37, 47, 47, 234), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 38, 44, 44, 235), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 38, 44, 44, 236), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 39, 44, 44, 237), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 39, 44, 44, 238), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 40, 40, 40, 239), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 40, 40, 40, 240), new r.MethodMirrorImpl(r"year", 131075, 23, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"date", 131075, 23, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"month", 131075, 23, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 23, -1, 23, 23, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"show", 4325378, 24, -1, 70, 71, const [111, 112], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"onClose", 262146, 24, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onCancel", 262146, 24, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickHour", 262146, 24, null, -1, -1, const [113], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickMinute", 262146, 24, null, -1, -1, const [114], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickDialogBarHour", 262146, 24, null, -1, -1, const [115], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickDialogBarMinute", 262146, 24, null, -1, -1, const [116], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 41, 47, 47, 252), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 41, 47, 47, 253), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 42, 40, 40, 254), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 42, 40, 40, 255), new r.MethodMirrorImpl(r"hour", 131075, 24, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"minute", 131075, 24, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 24, -1, 24, 24, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 25, 25, 25, 25, const [119], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"scope", 131075, 25, -1, 72, 72, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parentScope=", 262148, 25, null, -1, -1, const [122], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"fromElement", 0, 25, -1, 25, 25, const [120, 121], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 26, -1, 73, 73, const [123, 124, 125], const prefix0.InjectAnnotation(), const [deprecated]), new r.MethodMirrorImpl(r"render", 4325378, 26, -1, 63, 64, const [126, 127, 128, 129], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 43, 37, 37, 265), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 43, 37, 37, 266), new r.MethodMirrorImpl(r"", 0, 26, -1, 26, 26, const [130, 131], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 27, -1, 73, 73, const [133, 134, 135, 136], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 44, 40, 40, 269), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 44, 40, 40, 270), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 45, 40, 40, 271), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 45, 40, 40, 272), new r.MethodMirrorImpl(r"", 0, 27, -1, 27, 27, const [137, 138], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attached", 262146, 28, null, -1, -1, const [], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"refresh", 262146, 28, null, -1, -1, const [], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"fromElement", 0, 28, -1, 28, 28, const [141, 142], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"createFor", 131074, 29, -1, 74, 74, const [143], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"setBuilderFor", 262146, 29, null, -1, -1, const [144, 145], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 29, -1, 29, 29, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"translate", 131586, 30, -1, 40, 40, const [146], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 30, -1, 40, 40, const [147], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 30, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"setTranslation", 262146, 31, null, -1, -1, const [148, 149], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"remove", 262146, 31, null, -1, -1, const [150], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"translate", 131074, 31, -1, 40, 40, const [151], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 31, -1, 40, 40, const [152], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"translateStatusCode", 131074, 31, -1, 40, 40, const [153], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"locale", 131075, 31, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"locale=", 262148, 31, null, -1, -1, const [157], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"withTranslation", 0, 31, -1, 31, 31, const [154, 155], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"withTranslations", 0, 31, -1, 31, 31, const [156], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 31, -1, 31, 31, const [], const prefix0.InjectAnnotation(), const [])], [new r.ParameterMirrorImpl(r"element", 33798, 46, const prefix0.InjectAnnotation(), -1, 43, 43, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 49, const prefix0.InjectAnnotation(), -1, 43, 43, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 49, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 47, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"other", 16390, 50, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 52, const prefix0.InjectAnnotation(), -1, 75, 75, const [], null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 57, const prefix0.InjectAnnotation(), -1, 76, 77, const [], null, null), new r.ParameterMirrorImpl(r"selector", 33798, 60, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"logError", 48134, 60, const prefix0.InjectAnnotation(), -1, 37, 37, const [], true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 61, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"wait", 48134, 61, const prefix0.InjectAnnotation(), -1, 78, 78, const [], const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 61, const prefix0.InjectAnnotation(), -1, 44, 44, const [], 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 65, const prefix0.InjectAnnotation(), -1, 37, 37, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 72, const prefix0.InjectAnnotation(), -1, 43, 43, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 79, const prefix0.InjectAnnotation(), -1, 43, 43, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 79, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 75, const prefix0.InjectAnnotation(), -1, 37, 37, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 77, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 80, const prefix0.InjectAnnotation(), -1, 43, 43, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 95, const prefix0.InjectAnnotation(), -1, 43, 43, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 95, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 87, const prefix0.InjectAnnotation(), -1, 37, 37, const [], null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 89, const prefix0.InjectAnnotation(), -1, 37, 37, const [], null, null), new r.ParameterMirrorImpl(r"v", 33798, 92, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 94, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 96, const prefix0.InjectAnnotation(), -1, 36, 36, const [], null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 96, const prefix0.InjectAnnotation(), -1, 36, 36, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 104, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"option1", 39942, 104, const prefix0.InjectAnnotation(), -1, 40, 40, const [], "Yes", null), new r.ParameterMirrorImpl(r"option2", 39942, 104, const prefix0.InjectAnnotation(), -1, 40, 40, const [], "No", null), new r.ParameterMirrorImpl(r"value", 17414, 106, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 107, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 109, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 110, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicValue", 17414, 112, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicFractionSize", 21510, 112, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 113, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"fractionSize", 21510, 113, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 115, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 116, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 122, const prefix0.InjectAnnotation(), -1, 36, 36, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 122, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 122, const prefix0.InjectAnnotation(), -1, 37, 37, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"parent", 33798, 123, const prefix0.InjectAnnotation(), -1, 36, 36, const [], null, null), new r.ParameterMirrorImpl(r"reference", 33798, 123, const prefix0.InjectAnnotation(), -1, 36, 36, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 123, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 125, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 125, const prefix0.InjectAnnotation(), -1, 36, 36, const [], null, null), new r.ParameterMirrorImpl(r"cntxt", 33798, 130, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 133, const prefix0.InjectAnnotation(), -1, 79, 79, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 134, const prefix0.InjectAnnotation(), -1, 80, 80, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 136, const prefix0.InjectAnnotation(), -1, 79, 79, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 137, const prefix0.InjectAnnotation(), -1, 80, 80, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 139, const prefix0.InjectAnnotation(), -1, 79, 79, const [], null, null), new r.ParameterMirrorImpl(r"action", 48134, 141, const prefix0.InjectAnnotation(), -1, 79, 79, const [], prefix6.UpdateViewAction, #action), new r.ParameterMirrorImpl(r"action", 33798, 143, const prefix0.InjectAnnotation(), -1, 79, 79, const [], null, null), new r.ParameterMirrorImpl(r"_actionbus", 32806, 144, const prefix0.InjectAnnotation(), 15, 15, 15, const [], null, null), new r.ParameterMirrorImpl(r"text", 33798, 145, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"title", 48134, 145, const prefix0.InjectAnnotation(), -1, 40, 40, const [], "", #title), new r.ParameterMirrorImpl(r"okButton", 48134, 145, const prefix0.InjectAnnotation(), -1, 40, 40, const [], "OK", #okButton), new r.ParameterMirrorImpl(r"_title", 32870, 148, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"_text", 32870, 150, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"_okButton", 32870, 152, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"_template", 32870, 154, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"timeout", 46086, 158, const prefix0.InjectAnnotation(), -1, 78, 78, const [], null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 158, const prefix0.InjectAnnotation(), null, 81, 81, const [], null, #onDialogInit), new r.ParameterMirrorImpl(r"status", 33798, 159, const prefix0.InjectAnnotation(), -1, 82, 82, const [], null, null), new r.ParameterMirrorImpl(r"selector", 33798, 160, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"_dialog", 32870, 162, const prefix0.InjectAnnotation(), -1, 43, 43, const [], null, null), new r.ParameterMirrorImpl(r"text", 33798, 168, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"title", 48134, 168, const prefix0.InjectAnnotation(), -1, 40, 40, const [], "", #title), new r.ParameterMirrorImpl(r"yesButton", 48134, 168, const prefix0.InjectAnnotation(), -1, 40, 40, const [], "Yes", #yesButton), new r.ParameterMirrorImpl(r"noButton", 48134, 168, const prefix0.InjectAnnotation(), -1, 40, 40, const [], "No", #noButton), new r.ParameterMirrorImpl(r"_template", 32870, 172, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"_title", 32870, 174, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"_text", 32870, 176, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"_yesButton", 32870, 178, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"_noButton", 32870, 180, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"text", 33798, 183, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"confirmButton", 48134, 183, const prefix0.InjectAnnotation(), -1, 40, 40, const [], "", #confirmButton), new r.ParameterMirrorImpl(r"timeout", 45062, 184, const prefix0.InjectAnnotation(), -1, 78, 78, const [], null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 184, const prefix0.InjectAnnotation(), null, 83, 83, const [], null, #onDialogInit), new r.ParameterMirrorImpl(r"_template", 32870, 188, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"_text", 32870, 193, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"_confirmButton", 32870, 195, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"_timeout", 32870, 197, const prefix0.InjectAnnotation(), -1, 44, 44, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 201, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"type", 48134, 201, const prefix0.InjectAnnotation(), -1, 46, 46, const [], prefix7.NotificationType.INFO, #type), new r.ParameterMirrorImpl(r"title", 48134, 201, const prefix0.InjectAnnotation(), -1, 40, 40, const [], "", #title), new r.ParameterMirrorImpl(r"subtitle", 48134, 201, const prefix0.InjectAnnotation(), -1, 40, 40, const [], "", #subtitle), new r.ParameterMirrorImpl(r"timeout", 46086, 202, const prefix0.InjectAnnotation(), -1, 78, 78, const [], null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 202, const prefix0.InjectAnnotation(), null, 84, 84, const [], null, #onDialogInit), new r.ParameterMirrorImpl(r"_type", 32870, 207, const prefix0.InjectAnnotation(), -1, 46, 46, const [], null, null), new r.ParameterMirrorImpl(r"_title", 32870, 209, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"_subtitle", 32870, 211, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"_content", 32870, 213, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"_timeout", 32870, 215, const prefix0.InjectAnnotation(), -1, 44, 44, const [], null, null), new r.ParameterMirrorImpl(r"_template", 32870, 217, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"enabled", 33798, 221, const prefix0.InjectAnnotation(), -1, 37, 37, const [], null, null), new r.ParameterMirrorImpl(r"timeout", 46086, 224, const prefix0.InjectAnnotation(), -1, 78, 78, const [], null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 224, const prefix0.InjectAnnotation(), null, 84, 84, const [], null, #onDialogInit), new r.ParameterMirrorImpl(r"event", 33798, 227, const prefix0.InjectAnnotation(), -1, 85, 85, const [], null, null), new r.ParameterMirrorImpl(r"event", 33798, 228, const prefix0.InjectAnnotation(), -1, 85, 85, const [], null, null), new r.ParameterMirrorImpl(r"event", 33798, 229, const prefix0.InjectAnnotation(), -1, 85, 85, const [], null, null), new r.ParameterMirrorImpl(r"event", 33798, 230, const prefix0.InjectAnnotation(), -1, 85, 85, const [], null, null), new r.ParameterMirrorImpl(r"event", 33798, 231, const prefix0.InjectAnnotation(), -1, 85, 85, const [], null, null), new r.ParameterMirrorImpl(r"event", 33798, 232, const prefix0.InjectAnnotation(), -1, 85, 85, const [], null, null), new r.ParameterMirrorImpl(r"_dateTime", 32870, 234, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"_yearFrom", 32870, 236, const prefix0.InjectAnnotation(), -1, 44, 44, const [], null, null), new r.ParameterMirrorImpl(r"_yearTo", 32870, 238, const prefix0.InjectAnnotation(), -1, 44, 44, const [], null, null), new r.ParameterMirrorImpl(r"_template", 32870, 240, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"timeout", 46086, 245, const prefix0.InjectAnnotation(), -1, 78, 78, const [], null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 245, const prefix0.InjectAnnotation(), null, 84, 84, const [], null, #onDialogInit), new r.ParameterMirrorImpl(r"event", 33798, 248, const prefix0.InjectAnnotation(), -1, 85, 85, const [], null, null), new r.ParameterMirrorImpl(r"event", 33798, 249, const prefix0.InjectAnnotation(), -1, 85, 85, const [], null, null), new r.ParameterMirrorImpl(r"event", 33798, 250, const prefix0.InjectAnnotation(), -1, 85, 85, const [], null, null), new r.ParameterMirrorImpl(r"event", 33798, 251, const prefix0.InjectAnnotation(), -1, 85, 85, const [], null, null), new r.ParameterMirrorImpl(r"_dateTime", 32870, 253, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"_template", 32870, 255, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 259, const prefix0.InjectAnnotation(), -1, 43, 43, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 262, const prefix0.InjectAnnotation(), -1, 43, 43, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 262, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"dialog", 33798, 261, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 263, const prefix0.InjectAnnotation(), -1, 36, 36, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 263, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 263, const prefix0.InjectAnnotation(), null, 86, 86, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 264, const prefix0.InjectAnnotation(), -1, 36, 36, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 264, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 264, const prefix0.InjectAnnotation(), null, 86, 86, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 264, const prefix0.InjectAnnotation(), -1, 37, 37, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"_renderer", 32806, 267, const prefix0.InjectAnnotation(), 12, 12, 12, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 267, const prefix0.InjectAnnotation(), 13, 13, 13, const [], null, null), new r.ParameterMirrorImpl(r"_appendNewNodes", 32870, 266, const prefix0.InjectAnnotation(), -1, 37, 37, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 268, const prefix0.InjectAnnotation(), -1, 36, 36, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 268, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null), new r.ParameterMirrorImpl(r"items", 2130950, 268, const prefix0.InjectAnnotation(), -1, 87, 88, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 268, const prefix0.InjectAnnotation(), null, 86, 86, const [], null, null), new r.ParameterMirrorImpl(r"_renderer", 32806, 273, const prefix0.InjectAnnotation(), 12, 12, 12, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 273, const prefix0.InjectAnnotation(), 13, 13, 13, const [], null, null), new r.ParameterMirrorImpl(r"_listTag", 32870, 270, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"_itemTag", 32870, 272, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 276, const prefix0.InjectAnnotation(), -1, 43, 43, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 276, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 277, const prefix0.InjectAnnotation(), -1, 36, 36, const [], null, null), new r.ParameterMirrorImpl(r"type", 33798, 278, const prefix0.InjectAnnotation(), -1, 48, 48, const [], null, null), new r.ParameterMirrorImpl(r"builder", 1030, 278, const prefix0.InjectAnnotation(), null, 89, 89, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 280, const prefix0.InjectAnnotation(), -1, 90, 90, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 281, const prefix0.InjectAnnotation(), -1, 90, 90, const [], null, null), new r.ParameterMirrorImpl(r"translation", 2130950, 283, const prefix0.InjectAnnotation(), -1, 52, 53, const [], null, null), new r.ParameterMirrorImpl(r"locale", 48134, 283, const prefix0.InjectAnnotation(), -1, 40, 40, const [], "en", #locale), new r.ParameterMirrorImpl(r"locale", 33798, 284, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 285, const prefix0.InjectAnnotation(), -1, 90, 90, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 286, const prefix0.InjectAnnotation(), -1, 90, 90, const [], null, null), new r.ParameterMirrorImpl(r"status", 33798, 287, const prefix0.InjectAnnotation(), -1, 44, 44, const [], null, null), new r.ParameterMirrorImpl(r"translation", 2130950, 290, const prefix0.InjectAnnotation(), -1, 52, 53, const [], null, null), new r.ParameterMirrorImpl(r"locale", 48134, 290, const prefix0.InjectAnnotation(), -1, 40, 40, const [], "en", #locale), new r.ParameterMirrorImpl(r"translations", 2130950, 291, const prefix0.InjectAnnotation(), -1, 91, 92, const [], null, null), new r.ParameterMirrorImpl(r"locale", 33798, 289, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null)], [prefix1.MaterialBadge, prefix1.MaterialButton, prefix1.MaterialCheckbox, prefix3.Formatter, prefix3.FallbackFormatter, prefix3.ChooseFormatter, prefix3.DecoratorFormatter, prefix3.LowerCaseFormatter, prefix3.NumberFormatter, prefix3.UpperCaseFormatter, prefix4.MaterialApplication, prefix4.RefreshableComponent, prefix5.DomRenderer, prefix5.EventCompiler, prefix5.RootScope, prefix6.ActionBus, prefix6.ActionBusImpl, prefix6.DataStore, prefix6.FireOnlyDataStore, prefix7.MaterialAlertDialog, prefix7.MdlConfirmDialog, prefix7.MaterialSnackbar, prefix7.MaterialNotification, prefix7.MaterialDatePicker, prefix7.MaterialTimePicker, prefix7.MaterialDialogComponent, prefix8.TemplateRenderer, prefix8.ListRenderer, prefix9.MaterialModel, prefix9.ModelObserverFactory, prefix10.Translator, prefix10.L10NTranslate, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), const m.TypeValue>>().type, List, prefix0.Injector, prefix13.Element, bool, const m.TypeValue>().type, Map, String, const m.TypeValue>().type, Map, prefix13.HtmlElement, int, prefix7.SnackbarPosition, prefix7.NotificationType, DateTime, Type, const r.FakeType(r"dart.async.FutureOr"), prefix12.FutureOr, prefix13.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix13.ElementStream, const m.TypeValue>().type, prefix13.ElementStream, prefix4.MdlComponent, prefix13.CheckboxInputElement, prefix3.MaterialFormatter, const m.TypeValue>().type, prefix12.Future, const m.TypeValue>().type, prefix12.Future, Object, const m.TypeValue>().type, prefix12.Stream, const m.TypeValue>>().type, prefix12.Stream, const m.TypeValue>().type, prefix12.Future, prefix5.Scope, prefix8.Renderer, prefix9.ModelObserver, Invocation, const m.TypeValue>().type, prefix12.StreamSubscription, Duration, prefix6.Action, prefix6.ActionName, const m.TypeValue Function(String)>().type, prefix7.MdlDialogStatus, const m.TypeValue Function(String)>().type, const m.TypeValue().type, prefix13.Event, const m.TypeValue().type, const m.TypeValue>().type, List, const m.TypeValue().type, prefix10.L10N, const m.TypeValue>>().type, Map], 33, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"eventStreams": (dynamic instance) => instance.eventStreams, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"query": (dynamic instance) => instance.query, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"value": (dynamic instance) => instance.value, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label, r"number": (dynamic instance) => instance.number, r"decorate": (dynamic instance) => instance.decorate, r"uppercase": (dynamic instance) => instance.uppercase, r"lowercase": (dynamic instance) => instance.lowercase, r"choose": (dynamic instance) => instance.choose, r"call": (dynamic instance) => instance.call, r"run": (dynamic instance) => instance.run, r"render": (dynamic instance) => instance.render, r"renderBefore": (dynamic instance) => instance.renderBefore, r"compileElement": (dynamic instance) => instance.compileElement, r"context": (dynamic instance) => instance.context, r"parentContext": (dynamic instance) => instance.parentContext, r"rootContext": (dynamic instance) => instance.rootContext, r"fire": (dynamic instance) => instance.fire, r"on": (dynamic instance) => instance.on, r"emitChange": (dynamic instance) => instance.emitChange, r"onChange": (dynamic instance) => instance.onChange, r"lambdas": (dynamic instance) => instance.lambdas, r"show": (dynamic instance) => instance.show, r"close": (dynamic instance) => instance.close, r"dialog": (dynamic instance) => instance.dialog, r"id": (dynamic instance) => instance.id, r"hasTimer": (dynamic instance) => instance.hasTimer, r"hasNoTimer": (dynamic instance) => instance.hasNoTimer, r"isAutoCloseEnabled": (dynamic instance) => instance.isAutoCloseEnabled, r"scope": (dynamic instance) => instance.scope, r"onClose": (dynamic instance) => instance.onClose, r"title": (dynamic instance) => instance.title, r"text": (dynamic instance) => instance.text, r"okButton": (dynamic instance) => instance.okButton, r"template": (dynamic instance) => instance.template, r"hasTitle": (dynamic instance) => instance.hasTitle, r"onYes": (dynamic instance) => instance.onYes, r"onNo": (dynamic instance) => instance.onNo, r"yesButton": (dynamic instance) => instance.yesButton, r"noButton": (dynamic instance) => instance.noButton, r"position": (dynamic instance) => instance.position, r"confirmButton": (dynamic instance) => instance.confirmButton, r"timeout": (dynamic instance) => instance.timeout, r"waitingForConfirmation": (dynamic instance) => instance.waitingForConfirmation, r"hasConfirmButton": (dynamic instance) => instance.hasConfirmButton, r"type": (dynamic instance) => instance.type, r"subtitle": (dynamic instance) => instance.subtitle, r"content": (dynamic instance) => instance.content, r"hasSubTitle": (dynamic instance) => instance.hasSubTitle, r"hasContent": (dynamic instance) => instance.hasContent, r"autoClose": (dynamic instance) => instance.autoClose, r"onCancel": (dynamic instance) => instance.onCancel, r"onClickLeft": (dynamic instance) => instance.onClickLeft, r"onClickRight": (dynamic instance) => instance.onClickRight, r"onClickDay": (dynamic instance) => instance.onClickDay, r"onClickYear": (dynamic instance) => instance.onClickYear, r"onClickDate": (dynamic instance) => instance.onClickDate, r"onClickItemInYearList": (dynamic instance) => instance.onClickItemInYearList, r"dateTime": (dynamic instance) => instance.dateTime, r"yearFrom": (dynamic instance) => instance.yearFrom, r"yearTo": (dynamic instance) => instance.yearTo, r"year": (dynamic instance) => instance.year, r"date": (dynamic instance) => instance.date, r"month": (dynamic instance) => instance.month, r"onClickHour": (dynamic instance) => instance.onClickHour, r"onClickMinute": (dynamic instance) => instance.onClickMinute, r"onClickDialogBarHour": (dynamic instance) => instance.onClickDialogBarHour, r"onClickDialogBarMinute": (dynamic instance) => instance.onClickDialogBarMinute, r"hour": (dynamic instance) => instance.hour, r"minute": (dynamic instance) => instance.minute, r"appendNewNodes": (dynamic instance) => instance.appendNewNodes, r"listTag": (dynamic instance) => instance.listTag, r"itemTag": (dynamic instance) => instance.itemTag, r"refresh": (dynamic instance) => instance.refresh, r"createFor": (dynamic instance) => instance.createFor, r"setBuilderFor": (dynamic instance) => instance.setBuilderFor, r"setTranslation": (dynamic instance) => instance.setTranslation, r"remove": (dynamic instance) => instance.remove, r"translate": (dynamic instance) => instance.translate, r"translateStatusCode": (dynamic instance) => instance.translateStatusCode, r"locale": (dynamic instance) => instance.locale}, {r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"value=": (dynamic instance, value) => instance.value = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value, r"context=": (dynamic instance, value) => instance.context = value, r"dialog=": (dynamic instance, value) => instance.dialog = value, r"title=": (dynamic instance, value) => instance.title = value, r"text=": (dynamic instance, value) => instance.text = value, r"okButton=": (dynamic instance, value) => instance.okButton = value, r"template=": (dynamic instance, value) => instance.template = value, r"yesButton=": (dynamic instance, value) => instance.yesButton = value, r"noButton=": (dynamic instance, value) => instance.noButton = value, r"confirmButton=": (dynamic instance, value) => instance.confirmButton = value, r"timeout=": (dynamic instance, value) => instance.timeout = value, r"type=": (dynamic instance, value) => instance.type = value, r"subtitle=": (dynamic instance, value) => instance.subtitle = value, r"content=": (dynamic instance, value) => instance.content = value, r"autoClose=": (dynamic instance, value) => instance.autoClose = value, r"dateTime=": (dynamic instance, value) => instance.dateTime = value, r"yearFrom=": (dynamic instance, value) => instance.yearFrom = value, r"yearTo=": (dynamic instance, value) => instance.yearTo = value, r"parentScope=": (dynamic instance, value) => instance.parentScope = value, r"appendNewNodes=": (dynamic instance, value) => instance.appendNewNodes = value, r"listTag=": (dynamic instance, value) => instance.listTag = value, r"itemTag=": (dynamic instance, value) => instance.itemTag = value, r"locale=": (dynamic instance, value) => instance.locale = value}, [new r.LibraryMirrorImpl(r"mdlcomponents", Uri.parse(r"reflectable://0/mdlcomponents"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlformatter", Uri.parse(r"reflectable://1/mdlformatter"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlcore", Uri.parse(r"reflectable://2/mdlcore"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlapplication", Uri.parse(r"reflectable://3/mdlapplication"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlflux", Uri.parse(r"reflectable://4/mdlflux"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdldialog", Uri.parse(r"reflectable://5/mdldialog"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdltemplate", Uri.parse(r"reflectable://6/mdltemplate"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdldirective", Uri.parse(r"reflectable://7/mdldirective"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"l10n", Uri.parse(r"reflectable://8/l10n"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null)], []), const prefix2.MustacheMirrorsUsedAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 0, const prefix2.MustacheMirrorsUsedAnnotation(), const [37, 38, 39, 40, 41, 42, 43, 44], const [45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 38, 39, 40, 41, 42, 43], const [37], -1, {r"widget": () => prefix1.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialButton.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 1, const prefix2.MustacheMirrorsUsedAnnotation(), const [67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82], const [45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 72, 62, 63, 64, 65, 66, 83, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 79, 80, 81], const [67], -1, {r"widget": () => prefix1.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialCheckbox.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialAlertDialog", r"mdldialog.MaterialAlertDialog", 7, 2, const prefix2.MustacheMirrorsUsedAnnotation(), const [4, 5, 6, 7, 84, 85, 94, 95], const [45, 46, 47, 48, 49, 96, 50, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix7.MaterialAlertDialog() : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MdlConfirmDialog", r"mdldialog.MdlConfirmDialog", 7, 3, const prefix2.MustacheMirrorsUsedAnnotation(), const [10, 11, 12, 13, 14, 107, 108, 109, 120, 121], const [45, 46, 47, 48, 49, 96, 50, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix7.MdlConfirmDialog() : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialSnackbar", r"mdldialog.MaterialSnackbar", 7, 4, const prefix2.MustacheMirrorsUsedAnnotation(), const [15, 16, 17, 18, 19, 20, 21, 22, 122, 123, 124, 137, 138, 139], const [45, 46, 47, 48, 49, 96, 50, 123, 98, 99, 100, 101, 102, 103, 104, 105, 106, 122, 124, 126, 127, 130, 131, 132, 133, 134, 135, 136, 137, 138], const [125, 128, 129], -1, {r"DEFAULT_CONFIRM_BUTTON": () => prefix7.MaterialSnackbar.DEFAULT_CONFIRM_BUTTON, r"LONG_DELAY": () => prefix7.MaterialSnackbar.LONG_DELAY, r"SHORT_DELAY": () => prefix7.MaterialSnackbar.SHORT_DELAY}, {}, {r"": (b) => () => b ? new prefix7.MaterialSnackbar() : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialNotification", r"mdldialog.MaterialNotification", 7, 5, const prefix2.MustacheMirrorsUsedAnnotation(), const [23, 24, 25, 26, 27, 28, 29, 30, 140, 141, 142, 157, 158, 159, 160, 161, 162], const [45, 46, 47, 48, 49, 96, 50, 141, 98, 99, 100, 101, 102, 103, 104, 105, 106, 140, 142, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161], const [143, 144], -1, {r"LONG_DELAY": () => prefix7.MaterialNotification.LONG_DELAY, r"SHORT_DELAY": () => prefix7.MaterialNotification.SHORT_DELAY}, {}, {r"": (b) => () => b ? new prefix7.MaterialNotification() : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialDatePicker", r"mdldialog.MaterialDatePicker", 7, 6, const prefix2.MustacheMirrorsUsedAnnotation(), const [31, 32, 33, 34, 163, 164, 165, 166, 167, 168, 169, 170, 171, 180, 181, 182, 183], const [45, 46, 47, 48, 49, 96, 50, 163, 98, 99, 100, 101, 102, 103, 104, 105, 106, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix7.MaterialDatePicker() : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialTimePicker", r"mdldialog.MaterialTimePicker", 7, 7, const prefix2.MustacheMirrorsUsedAnnotation(), const [35, 36, 184, 185, 186, 187, 188, 189, 190, 195, 196, 197], const [45, 46, 47, 48, 49, 96, 50, 184, 98, 99, 100, 101, 102, 103, 104, 105, 106, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix7.MaterialTimePicker() : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialModel", r"mdldirective.MaterialModel", 7, 8, const prefix2.MustacheMirrorsUsedAnnotation(), const [198, 199, 200], const [45, 46, 47, 48, 49, 50, 51, 52, 198, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 199], const [], -1, {}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix9.MaterialModel.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 9, const prefix2.MustacheMirrorsUsedAnnotation(), const [83], const [45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 83], const [], -1, const {}, const {}, const {}, -1, -1, const [-1], null, null)], [new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 10, 11, null), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 12, 12, null), new r.VariableMirrorImpl(r"element", 33797, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 13, 13, null), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 14, 14, null), new r.VariableMirrorImpl(r"title", 32773, 2, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"text", 32773, 2, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"okButton", 32773, 2, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"template", 32773, 2, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"lambdas", 2130949, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 16, 17, null), new r.VariableMirrorImpl(r"dialog", 32773, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 18, 18, null), new r.VariableMirrorImpl(r"template", 32773, 3, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"title", 32773, 3, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"text", 32773, 3, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"yesButton", 32773, 3, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"noButton", 32773, 3, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"DEFAULT_CONFIRM_BUTTON", 33941, 4, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"template", 32773, 4, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"LONG_DELAY", 33941, 4, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 19, 19, null), new r.VariableMirrorImpl(r"SHORT_DELAY", 33941, 4, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 19, 19, null), new r.VariableMirrorImpl(r"position", 33797, 4, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 20, 20, null), new r.VariableMirrorImpl(r"text", 32773, 4, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"confirmButton", 32773, 4, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"timeout", 32773, 4, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 19, 19, null), new r.VariableMirrorImpl(r"LONG_DELAY", 33941, 5, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 19, 19, null), new r.VariableMirrorImpl(r"SHORT_DELAY", 33941, 5, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 19, 19, null), new r.VariableMirrorImpl(r"type", 32773, 5, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null), new r.VariableMirrorImpl(r"title", 32773, 5, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"subtitle", 32773, 5, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"content", 32773, 5, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"timeout", 32773, 5, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 19, 19, null), new r.VariableMirrorImpl(r"template", 32773, 5, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"dateTime", 32773, 6, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null), new r.VariableMirrorImpl(r"yearFrom", 32773, 6, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 19, 19, null), new r.VariableMirrorImpl(r"yearTo", 32773, 6, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 19, 19, null), new r.VariableMirrorImpl(r"template", 32773, 6, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"dateTime", 32773, 7, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null), new r.VariableMirrorImpl(r"template", 32773, 7, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.MethodMirrorImpl(r"widget", 131090, 0, 0, 0, 0, const [0], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 0, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 0, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled=", 262148, 0, null, -1, -1, const [3], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled", 131075, 0, -1, 14, 14, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 0, null, -1, -1, const [4], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 0, -1, 15, 15, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 0, -1, 0, 0, const [1, 2], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"==", 131074, null, -1, 14, 14, const [5], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 15, 15, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [6], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 19, 19, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 23, 23, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 0, 10, 11, 50), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [7], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"query", 131074, null, -1, 13, 13, const [8, 9], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"waitForChild", 4325378, null, -1, 24, 25, const [10, 11, 12], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 1, 12, 12, 57), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 2, 13, 13, 58), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 3, 14, 14, 59), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 3, 14, 14, 60), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 13, 13, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 26, 26, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 27, 28, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 29, 30, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 31, 32, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 33, 33, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"widget", 131090, 1, 1, 1, 1, const [14], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"check", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"uncheck", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hub", 131075, 1, -1, 13, 13, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"inputElement", 131075, 1, -1, 34, 34, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked=", 262148, 1, null, -1, -1, const [17], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked", 131075, 1, -1, 14, 14, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled=", 262148, 1, null, -1, -1, const [18], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled", 131075, 1, -1, 14, 14, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label", 131075, 1, -1, 15, 15, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label=", 262148, 1, null, -1, -1, const [19], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 1, -1, 15, 15, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 1, null, -1, -1, const [20], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 1, -1, 1, 1, const [15, 16], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"formatterFor", 131074, null, -1, 35, 35, const [21, 22], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"call", 131074, 2, 2, 2, 2, const [23, 24, 25], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClose", 262146, 2, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 4, 15, 15, 86), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 4, 15, 15, 87), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 5, 15, 15, 88), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 5, 15, 15, 89), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 6, 15, 15, 90), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 6, 15, 15, 91), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 7, 15, 15, 92), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 7, 15, 15, 93), new r.MethodMirrorImpl(r"hasTitle", 131075, 2, -1, 14, 14, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"", 0, 2, -1, 2, 2, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 8, 16, 17, 96), new r.MethodMirrorImpl(r"show", 4325378, null, -1, 36, 37, const [30, 31], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"close", 4325378, null, -1, 38, 39, const [32], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"query", 131074, null, -1, 13, 13, const [33], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 9, 18, 18, 100), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 9, 18, 18, 101), new r.MethodMirrorImpl(r"id", 131075, null, -1, 15, 15, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hasTimer", 131075, null, -1, 14, 14, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hasNoTimer", 131075, null, -1, 14, 14, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"isAutoCloseEnabled", 131075, null, -1, 14, 14, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"scope", 131075, null, -1, 40, 40, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"call", 131074, 3, 3, 3, 3, const [35, 36, 37, 38], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onYes", 262146, 3, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onNo", 262146, 3, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 10, 15, 15, 110), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 10, 15, 15, 111), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 11, 15, 15, 112), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 11, 15, 15, 113), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 12, 15, 15, 114), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 12, 15, 15, 115), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 13, 15, 15, 116), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 13, 15, 15, 117), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 14, 15, 15, 118), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 14, 15, 15, 119), new r.MethodMirrorImpl(r"hasTitle", 131075, 3, -1, 14, 14, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"", 0, 3, -1, 3, 3, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"call", 131074, 4, 4, 4, 4, const [44, 45], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"show", 4325378, 4, -1, 36, 37, const [46, 47], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClose", 262146, 4, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 15, 15, 15, 125), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 16, 15, 15, 126), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 16, 15, 15, 127), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 17, 19, 19, 128), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 18, 19, 19, 129), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 19, 20, 20, 130), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 20, 15, 15, 131), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 20, 15, 15, 132), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 21, 15, 15, 133), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 21, 15, 15, 134), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 22, 19, 19, 135), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 22, 19, 19, 136), new r.MethodMirrorImpl(r"waitingForConfirmation", 131075, 4, -1, 14, 14, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hasConfirmButton", 131075, 4, -1, 14, 14, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"", 0, 4, -1, 4, 4, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"call", 131074, 5, 5, 5, 5, const [52, 53, 54, 55], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"show", 4325378, 5, -1, 36, 37, const [56, 57], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClose", 262146, 5, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 23, 19, 19, 143), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 24, 19, 19, 144), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 25, 21, 21, 145), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 25, 21, 21, 146), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 26, 15, 15, 147), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 26, 15, 15, 148), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 27, 15, 15, 149), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 27, 15, 15, 150), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 28, 15, 15, 151), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 28, 15, 15, 152), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 29, 19, 19, 153), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 29, 19, 19, 154), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 30, 15, 15, 155), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 30, 15, 15, 156), new r.MethodMirrorImpl(r"hasTitle", 131075, 5, -1, 14, 14, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hasSubTitle", 131075, 5, -1, 14, 14, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hasContent", 131075, 5, -1, 14, 14, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"autoClose=", 262148, 5, null, -1, -1, const [64], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"autoClose", 131075, 5, -1, 14, 14, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"", 0, 5, -1, 5, 5, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"show", 4325378, 6, -1, 36, 37, const [65, 66], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClose", 262146, 6, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onCancel", 262146, 6, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickLeft", 262146, 6, null, -1, -1, const [67], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickRight", 262146, 6, null, -1, -1, const [68], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickDay", 262146, 6, null, -1, -1, const [69], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickYear", 262146, 6, null, -1, -1, const [70], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickDate", 262146, 6, null, -1, -1, const [71], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickItemInYearList", 262146, 6, null, -1, -1, const [72], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 31, 22, 22, 172), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 31, 22, 22, 173), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 32, 19, 19, 174), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 32, 19, 19, 175), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 33, 19, 19, 176), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 33, 19, 19, 177), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 34, 15, 15, 178), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 34, 15, 15, 179), new r.MethodMirrorImpl(r"year", 131075, 6, -1, 15, 15, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"date", 131075, 6, -1, 15, 15, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"month", 131075, 6, -1, 15, 15, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"", 0, 6, -1, 6, 6, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"show", 4325378, 7, -1, 36, 37, const [77, 78], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClose", 262146, 7, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onCancel", 262146, 7, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickHour", 262146, 7, null, -1, -1, const [79], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickMinute", 262146, 7, null, -1, -1, const [80], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickDialogBarHour", 262146, 7, null, -1, -1, const [81], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickDialogBarMinute", 262146, 7, null, -1, -1, const [82], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 35, 22, 22, 191), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 35, 22, 22, 192), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 36, 15, 15, 193), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 36, 15, 15, 194), new r.MethodMirrorImpl(r"hour", 131075, 7, -1, 15, 15, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"minute", 131075, 7, -1, 15, 15, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"", 0, 7, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attached", 262146, 8, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"refresh", 262146, 8, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 8, -1, 8, 8, const [85, 86], const prefix2.MustacheMirrorsUsedAnnotation(), null)], [new r.ParameterMirrorImpl(r"element", 33798, 37, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 18, 18, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 44, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 18, 18, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 44, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 12, 12, null, null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 40, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 14, 14, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 42, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"other", 16390, 45, const prefix2.MustacheMirrorsUsedAnnotation(), null, null, null, null, null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 47, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 41, 41, null, null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 52, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 42, 43, null, null, null), new r.ParameterMirrorImpl(r"selector", 33798, 55, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"logError", 48134, 55, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 14, 14, null, true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 56, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"wait", 48134, 56, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 44, 44, null, const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 56, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 19, 19, null, 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 60, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 14, 14, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 67, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 18, 18, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 82, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 18, 18, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 82, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 12, 12, null, null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 74, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 14, 14, null, null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 76, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 14, 14, null, null, null), new r.ParameterMirrorImpl(r"v", 33798, 79, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 81, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 83, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 13, 13, null, null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 83, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 13, 13, null, null, null), new r.ParameterMirrorImpl(r"text", 33798, 84, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"title", 48134, 84, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, "", #title), new r.ParameterMirrorImpl(r"okButton", 48134, 84, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, "OK", #okButton), new r.ParameterMirrorImpl(r"_title", 32870, 87, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"_text", 32870, 89, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"_okButton", 32870, 91, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"_template", 32870, 93, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"timeout", 46086, 97, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 44, 44, null, null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 97, const prefix2.MustacheMirrorsUsedAnnotation(), null, 45, 45, null, null, #onDialogInit), new r.ParameterMirrorImpl(r"status", 33798, 98, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 46, 46, null, null, null), new r.ParameterMirrorImpl(r"selector", 33798, 99, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"_dialog", 32870, 101, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 18, 18, null, null, null), new r.ParameterMirrorImpl(r"text", 33798, 107, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"title", 48134, 107, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, "", #title), new r.ParameterMirrorImpl(r"yesButton", 48134, 107, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, "Yes", #yesButton), new r.ParameterMirrorImpl(r"noButton", 48134, 107, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, "No", #noButton), new r.ParameterMirrorImpl(r"_template", 32870, 111, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"_title", 32870, 113, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"_text", 32870, 115, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"_yesButton", 32870, 117, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"_noButton", 32870, 119, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"text", 33798, 122, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"confirmButton", 48134, 122, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, "", #confirmButton), new r.ParameterMirrorImpl(r"timeout", 45062, 123, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 44, 44, null, null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 123, const prefix2.MustacheMirrorsUsedAnnotation(), null, 47, 47, null, null, #onDialogInit), new r.ParameterMirrorImpl(r"_template", 32870, 127, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"_text", 32870, 132, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"_confirmButton", 32870, 134, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"_timeout", 32870, 136, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 19, 19, null, null, null), new r.ParameterMirrorImpl(r"content", 33798, 140, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"type", 48134, 140, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, prefix7.NotificationType.INFO, #type), new r.ParameterMirrorImpl(r"title", 48134, 140, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, "", #title), new r.ParameterMirrorImpl(r"subtitle", 48134, 140, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, "", #subtitle), new r.ParameterMirrorImpl(r"timeout", 46086, 141, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 44, 44, null, null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 141, const prefix2.MustacheMirrorsUsedAnnotation(), null, 48, 48, null, null, #onDialogInit), new r.ParameterMirrorImpl(r"_type", 32870, 146, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"_title", 32870, 148, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"_subtitle", 32870, 150, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"_content", 32870, 152, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"_timeout", 32870, 154, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 19, 19, null, null, null), new r.ParameterMirrorImpl(r"_template", 32870, 156, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"enabled", 33798, 160, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 14, 14, null, null, null), new r.ParameterMirrorImpl(r"timeout", 46086, 163, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 44, 44, null, null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 163, const prefix2.MustacheMirrorsUsedAnnotation(), null, 48, 48, null, null, #onDialogInit), new r.ParameterMirrorImpl(r"event", 33798, 166, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 49, 49, null, null, null), new r.ParameterMirrorImpl(r"event", 33798, 167, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 49, 49, null, null, null), new r.ParameterMirrorImpl(r"event", 33798, 168, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 49, 49, null, null, null), new r.ParameterMirrorImpl(r"event", 33798, 169, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 49, 49, null, null, null), new r.ParameterMirrorImpl(r"event", 33798, 170, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 49, 49, null, null, null), new r.ParameterMirrorImpl(r"event", 33798, 171, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 49, 49, null, null, null), new r.ParameterMirrorImpl(r"_dateTime", 32870, 173, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null, null, null), new r.ParameterMirrorImpl(r"_yearFrom", 32870, 175, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 19, 19, null, null, null), new r.ParameterMirrorImpl(r"_yearTo", 32870, 177, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 19, 19, null, null, null), new r.ParameterMirrorImpl(r"_template", 32870, 179, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"timeout", 46086, 184, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 44, 44, null, null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 184, const prefix2.MustacheMirrorsUsedAnnotation(), null, 48, 48, null, null, #onDialogInit), new r.ParameterMirrorImpl(r"event", 33798, 187, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 49, 49, null, null, null), new r.ParameterMirrorImpl(r"event", 33798, 188, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 49, 49, null, null, null), new r.ParameterMirrorImpl(r"event", 33798, 189, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 49, 49, null, null, null), new r.ParameterMirrorImpl(r"event", 33798, 190, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 49, 49, null, null, null), new r.ParameterMirrorImpl(r"_dateTime", 32870, 192, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null, null, null), new r.ParameterMirrorImpl(r"_template", 32870, 194, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 200, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 18, 18, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 200, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 12, 12, null, null, null)], [prefix1.MaterialButton, prefix1.MaterialCheckbox, prefix7.MaterialAlertDialog, prefix7.MdlConfirmDialog, prefix7.MaterialSnackbar, prefix7.MaterialNotification, prefix7.MaterialDatePicker, prefix7.MaterialTimePicker, prefix9.MaterialModel, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), const m.TypeValue>>().type, List, prefix0.Injector, prefix13.Element, bool, String, const m.TypeValue>().type, Map, prefix13.HtmlElement, int, prefix7.SnackbarPosition, prefix7.NotificationType, DateTime, Type, const r.FakeType(r"dart.async.FutureOr"), prefix12.FutureOr, prefix13.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix13.ElementStream, const m.TypeValue>().type, prefix13.ElementStream, prefix4.MdlComponent, prefix13.CheckboxInputElement, prefix3.MaterialFormatter, const m.TypeValue>().type, prefix12.Future, const m.TypeValue>().type, prefix12.Future, prefix5.Scope, Invocation, const m.TypeValue>().type, prefix12.StreamSubscription, Duration, const m.TypeValue Function(String)>().type, prefix7.MdlDialogStatus, const m.TypeValue Function(String)>().type, const m.TypeValue().type, prefix13.Event], 10, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"eventStreams": (dynamic instance) => instance.eventStreams, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"query": (dynamic instance) => instance.query, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"value": (dynamic instance) => instance.value, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label, r"lambdas": (dynamic instance) => instance.lambdas, r"show": (dynamic instance) => instance.show, r"close": (dynamic instance) => instance.close, r"dialog": (dynamic instance) => instance.dialog, r"id": (dynamic instance) => instance.id, r"hasTimer": (dynamic instance) => instance.hasTimer, r"hasNoTimer": (dynamic instance) => instance.hasNoTimer, r"isAutoCloseEnabled": (dynamic instance) => instance.isAutoCloseEnabled, r"scope": (dynamic instance) => instance.scope, r"call": (dynamic instance) => instance.call, r"onClose": (dynamic instance) => instance.onClose, r"title": (dynamic instance) => instance.title, r"text": (dynamic instance) => instance.text, r"okButton": (dynamic instance) => instance.okButton, r"template": (dynamic instance) => instance.template, r"hasTitle": (dynamic instance) => instance.hasTitle, r"onYes": (dynamic instance) => instance.onYes, r"onNo": (dynamic instance) => instance.onNo, r"yesButton": (dynamic instance) => instance.yesButton, r"noButton": (dynamic instance) => instance.noButton, r"position": (dynamic instance) => instance.position, r"confirmButton": (dynamic instance) => instance.confirmButton, r"timeout": (dynamic instance) => instance.timeout, r"waitingForConfirmation": (dynamic instance) => instance.waitingForConfirmation, r"hasConfirmButton": (dynamic instance) => instance.hasConfirmButton, r"type": (dynamic instance) => instance.type, r"subtitle": (dynamic instance) => instance.subtitle, r"content": (dynamic instance) => instance.content, r"hasSubTitle": (dynamic instance) => instance.hasSubTitle, r"hasContent": (dynamic instance) => instance.hasContent, r"autoClose": (dynamic instance) => instance.autoClose, r"onCancel": (dynamic instance) => instance.onCancel, r"onClickLeft": (dynamic instance) => instance.onClickLeft, r"onClickRight": (dynamic instance) => instance.onClickRight, r"onClickDay": (dynamic instance) => instance.onClickDay, r"onClickYear": (dynamic instance) => instance.onClickYear, r"onClickDate": (dynamic instance) => instance.onClickDate, r"onClickItemInYearList": (dynamic instance) => instance.onClickItemInYearList, r"dateTime": (dynamic instance) => instance.dateTime, r"yearFrom": (dynamic instance) => instance.yearFrom, r"yearTo": (dynamic instance) => instance.yearTo, r"year": (dynamic instance) => instance.year, r"date": (dynamic instance) => instance.date, r"month": (dynamic instance) => instance.month, r"onClickHour": (dynamic instance) => instance.onClickHour, r"onClickMinute": (dynamic instance) => instance.onClickMinute, r"onClickDialogBarHour": (dynamic instance) => instance.onClickDialogBarHour, r"onClickDialogBarMinute": (dynamic instance) => instance.onClickDialogBarMinute, r"hour": (dynamic instance) => instance.hour, r"minute": (dynamic instance) => instance.minute, r"refresh": (dynamic instance) => instance.refresh}, {r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"value=": (dynamic instance, value) => instance.value = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value, r"dialog=": (dynamic instance, value) => instance.dialog = value, r"title=": (dynamic instance, value) => instance.title = value, r"text=": (dynamic instance, value) => instance.text = value, r"okButton=": (dynamic instance, value) => instance.okButton = value, r"template=": (dynamic instance, value) => instance.template = value, r"yesButton=": (dynamic instance, value) => instance.yesButton = value, r"noButton=": (dynamic instance, value) => instance.noButton = value, r"confirmButton=": (dynamic instance, value) => instance.confirmButton = value, r"timeout=": (dynamic instance, value) => instance.timeout = value, r"type=": (dynamic instance, value) => instance.type = value, r"subtitle=": (dynamic instance, value) => instance.subtitle = value, r"content=": (dynamic instance, value) => instance.content = value, r"autoClose=": (dynamic instance, value) => instance.autoClose = value, r"dateTime=": (dynamic instance, value) => instance.dateTime = value, r"yearFrom=": (dynamic instance, value) => instance.yearFrom = value, r"yearTo=": (dynamic instance, value) => instance.yearTo = value}, null, [])}; + + +final _memberSymbolMap = null; + +initializeReflectable() { + if (!isTransformed) { + throw new UnsupportedError( + "The transformed code is running with the untransformed " + "reflectable package. Remember to set your package-root to " + "'build/.../packages'."); + } + r.data = _data; + r.memberSymbolMap = _memberSymbolMap; +} diff --git a/samples/mdl_badge/.analysis_options.yaml b/samples/mdl_badge/.analysis_options.yaml new file mode 100644 index 0000000..a10d4c5 --- /dev/null +++ b/samples/mdl_badge/.analysis_options.yaml @@ -0,0 +1,2 @@ +analyzer: + strong-mode: true diff --git a/samples/mdl_badge/.rsync b/samples/mdl_badge/.rsync new file mode 100644 index 0000000..5c8dbec --- /dev/null +++ b/samples/mdl_badge/.rsync @@ -0,0 +1,14 @@ +# Rsync-Destination für dieses sample +# +# - ssh ls2 +# - cat ~/website/config/nginx/_template.conf.txt | sed -e 's/%example%/mdl_badge/' > ~/website/config/nginx/mdl_badge.conf +# - cat ~/website/config/nginx/mdl_badge.conf +# - sudo mkdir -p ~/website/data/example/mdl_badge +# - sudo chown ubuntu:ubuntu ~/website/data/example/mdl_badge +# - sudo chmod 775 ~/website/data/example/mdl_badge +# - ls -lad ~/website/data/example/mdl_badge +# - cd ~/website && docker-compose restart +# +RSYNC_DESTINATION=":~/website/data/example/mdl_badge/" +EXAMPLE_URL="http://mdl_badge.example.mikemitterer.at/" + diff --git a/samples/mdl_badge/.sitegen/html/_content/index.html b/samples/mdl_badge/.sitegen/html/_content/index.html index a7789b8..f72bb5f 100644 --- a/samples/mdl_badge/.sitegen/html/_content/index.html +++ b/samples/mdl_badge/.sitegen/html/_content/index.html @@ -1,13 +1,13 @@ title: BADGE samplename: badge -sampleurl: https://github.com/MikeMitterer/dart-material-design-lite/tree/master/samples/mdl_badge/web +sampleurl: https://github.com/MikeMitterer/dart-material-design-lite-site/tree/master/samples/mdl_badge/web ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
print
+
print
@@ -51,7 +51,7 @@
-
Text
+
Text
I am in a span Me too
I am in a div, but that makes no sense here
@@ -62,7 +62,7 @@
Text
+ - - + + + diff --git a/samples/mdl_badge/web/main.dart b/samples/mdl_badge/web/main.dart index d2b3428..df43f42 100644 --- a/samples/mdl_badge/web/main.dart +++ b/samples/mdl_badge/web/main.dart @@ -6,11 +6,14 @@ import 'package:console_log_handler/console_log_handler.dart'; import 'package:mdl/mdl.dart'; +import 'main.reflectable.dart'; + main() { final Logger _logger = new Logger('main.MaterialBadge'); configLogging(); - + initializeReflectable(); + registerMdl(); componentFactory().run().then((_) { diff --git a/samples/mdl_badge/web/main.reflectable.dart b/samples/mdl_badge/web/main.reflectable.dart new file mode 100644 index 0000000..f34467b --- /dev/null +++ b/samples/mdl_badge/web/main.reflectable.dart @@ -0,0 +1,40 @@ +// This file has been generated by the reflectable package. +// https://github.com/dart-lang/reflectable. + +import "dart:core"; +import 'dart:async' as prefix11; +import 'dart:html' as prefix12; +import 'package:dryice/dryice.dart' as prefix0; +import 'package:l10n/l10n.dart' as prefix9; +import 'package:mdl/mdlapplication.dart' as prefix5; +import 'package:mdl/mdlcomponents.dart' as prefix1; +import 'package:mdl/mdlcore.dart' as prefix4; +import 'package:mdl/mdldirective.dart' as prefix8; +import 'package:mdl/mdlflux.dart' as prefix6; +import 'package:mdl/mdlformatter.dart' as prefix3; +import 'package:mdl/mdltemplate.dart' as prefix7; +import 'package:mdl/src/core/annotations.dart' as prefix10; +import 'package:mustache/mustache.dart' as prefix2; + +// ignore:unused_import +import "package:reflectable/mirrors.dart" as m; +// ignore:unused_import +import "package:reflectable/src/reflectable_transformer_based.dart" as r; +// ignore:unused_import +import "package:reflectable/reflectable.dart" show isTransformed; + +final _data = {const prefix0.InjectAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"MaterialBadge", r"mdlcomponents.MaterialBadge", 7, 0, const prefix0.InjectAnnotation(), const [13, 14, 15, 16], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 14, 15], const [13], -1, {r"widget": () => prefix1.MaterialBadge.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialBadge.fromElement(element, injector) : null}, 0, 0, const [], const [prefix10.Component, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 1, const prefix0.InjectAnnotation(), const [39, 40, 41, 42, 43, 44, 45, 46], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45], const [39], -1, {r"widget": () => prefix1.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialButton.fromElement(element, injector) : null}, 0, 1, const [], const [prefix10.Component, prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 2, const prefix0.InjectAnnotation(), const [47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 52, 34, 35, 36, 37, 38, 63, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61], const [47], 22, {r"widget": () => prefix1.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialCheckbox.fromElement(element, injector) : null}, 0, 2, const [], const [prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"Formatter", r"mdlformatter.Formatter", 7, 3, const prefix0.InjectAnnotation(), const [4, 5, 6, 7, 8, 69], const [17, 18, 19, 20, 21, 64, 65, 66, 67, 68], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.Formatter() : null}, 1, 3, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FallbackFormatter", r"mdlformatter.FallbackFormatter", 519, 4, const prefix0.InjectAnnotation(), const [63, 70], const [17, 18, 19, 20, 21, 63], const [], -1, {}, {}, {}, 1, 4, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ChooseFormatter", r"mdlformatter.ChooseFormatter", 7, 5, const prefix0.InjectAnnotation(), const [71, 72, 73], const [17, 18, 19, 20, 21, 71, 72], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.ChooseFormatter() : null}, 1, 5, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DecoratorFormatter", r"mdlformatter.DecoratorFormatter", 7, 6, const prefix0.InjectAnnotation(), const [74, 75, 76], const [17, 18, 19, 20, 21, 74, 75], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.DecoratorFormatter() : null}, 1, 6, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"LowerCaseFormatter", r"mdlformatter.LowerCaseFormatter", 7, 7, const prefix0.InjectAnnotation(), const [77, 78, 79], const [17, 18, 19, 20, 21, 77, 78], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.LowerCaseFormatter() : null}, 1, 7, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"NumberFormatter", r"mdlformatter.NumberFormatter", 7, 8, const prefix0.InjectAnnotation(), const [80, 81, 82], const [17, 18, 19, 20, 21, 80, 81], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.NumberFormatter() : null}, 1, 8, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"UpperCaseFormatter", r"mdlformatter.UpperCaseFormatter", 7, 9, const prefix0.InjectAnnotation(), const [83, 84, 85], const [17, 18, 19, 20, 21, 83, 84], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.UpperCaseFormatter() : null}, 1, 9, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialApplication", r"mdlcore.MaterialApplication", 7, 10, const prefix0.InjectAnnotation(), const [86, 87], const [17, 18, 19, 20, 21, 86], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix4.MaterialApplication() : null}, 2, 10, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DomRenderer", r"mdlapplication.DomRenderer", 7, 11, const prefix0.InjectAnnotation(), const [88, 89, 90], const [17, 18, 19, 20, 21, 88, 89], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.DomRenderer() : null}, 3, 11, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"EventCompiler", r"mdlapplication.EventCompiler", 7, 12, const prefix0.InjectAnnotation(), const [9, 91, 93], const [17, 18, 19, 20, 21, 91], const [92], -1, {r"datasets": () => prefix5.EventCompiler.datasets}, {}, {r"": (b) => () => b ? new prefix5.EventCompiler() : null}, 3, 12, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"RootScope", r"mdlapplication.RootScope", 7, 13, const prefix0.InjectAnnotation(), const [94], const [17, 18, 19, 20, 21, 95, 96, 97, 98], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.RootScope() : null}, 3, 13, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBus", r"mdlflux.ActionBus", 519, 14, const prefix0.InjectAnnotation(), const [99, 100, 101], const [17, 18, 19, 20, 21], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix6.ActionBus() : null}, 4, 14, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBusImpl", r"mdlflux.ActionBusImpl", 7, 15, const prefix0.InjectAnnotation(), const [102, 103, 104], const [17, 18, 19, 20, 21, 102, 103], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix6.ActionBusImpl() : null}, 4, 15, const [14], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DataStore", r"mdlflux.DataStore", 519, 16, const prefix0.InjectAnnotation(), const [105, 106], const [17, 18, 19, 20, 21, 107, 108], const [], -1, {}, {}, {}, 4, 16, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FireOnlyDataStore", r"mdlflux.FireOnlyDataStore", 7, 17, const prefix0.InjectAnnotation(), const [109, 110], const [17, 18, 19, 20, 21, 107, 108, 109], const [], 16, {}, {}, {r"": (b) => (_actionbus) => b ? new prefix6.FireOnlyDataStore(_actionbus) : null}, 4, 17, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"TemplateRenderer", r"mdltemplate.TemplateRenderer", 7, 18, const prefix0.InjectAnnotation(), const [10, 111, 112, 115], const [17, 18, 19, 20, 21, 111, 112, 113, 114], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix7.TemplateRenderer(_renderer, _eventCompiler) : null}, 5, 18, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ListRenderer", r"mdltemplate.ListRenderer", 7, 19, const prefix0.InjectAnnotation(), const [11, 12, 116, 121], const [17, 18, 19, 20, 21, 116, 117, 118, 119, 120], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix7.ListRenderer(_renderer, _eventCompiler) : null}, 5, 19, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ModelObserverFactory", r"mdldirective.ModelObserverFactory", 7, 20, const prefix0.InjectAnnotation(), const [122, 123, 124], const [17, 18, 19, 20, 21, 122, 123], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix8.ModelObserverFactory() : null}, 6, 20, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"Translator", r"l10n.Translator", 519, 21, const prefix0.InjectAnnotation(), const [125, 126, 127], const [17, 18, 19, 20, 21, 126], const [], -1, {}, {}, {}, 7, 21, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 22, const prefix0.InjectAnnotation(), const [63], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 63], const [], -1, const {}, const {}, const {}, 0, 4, const [], const [], null)], [new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix0.InjectAnnotation(), -1, 23, 24, const []), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix0.InjectAnnotation(), -1, 25, 25, const []), new r.VariableMirrorImpl(r"element", 33797, null, const prefix0.InjectAnnotation(), -1, 26, 26, const []), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix0.InjectAnnotation(), -1, 27, 27, const []), new r.VariableMirrorImpl(r"number", 33797, 3, const prefix0.InjectAnnotation(), 8, 8, 8, const []), new r.VariableMirrorImpl(r"decorate", 33797, 3, const prefix0.InjectAnnotation(), 6, 6, 6, const []), new r.VariableMirrorImpl(r"uppercase", 33797, 3, const prefix0.InjectAnnotation(), 9, 9, 9, const []), new r.VariableMirrorImpl(r"lowercase", 33797, 3, const prefix0.InjectAnnotation(), 7, 7, 7, const []), new r.VariableMirrorImpl(r"choose", 33797, 3, const prefix0.InjectAnnotation(), 5, 5, 5, const []), new r.VariableMirrorImpl(r"datasets", 2130965, 12, const prefix0.InjectAnnotation(), -1, 28, 29, const []), new r.VariableMirrorImpl(r"appendNewNodes", 32773, 18, const prefix0.InjectAnnotation(), -1, 27, 27, const []), new r.VariableMirrorImpl(r"listTag", 32773, 19, const prefix0.InjectAnnotation(), -1, 30, 30, const []), new r.VariableMirrorImpl(r"itemTag", 32773, 19, const prefix0.InjectAnnotation(), -1, 30, 30, const []), new r.MethodMirrorImpl(r"widget", 131090, 0, 0, 0, 0, const [0], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 0, null, -1, -1, const [3], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 0, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 0, -1, 0, 0, const [1, 2], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"==", 131074, null, -1, 27, 27, const [4], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [5], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 31, 31, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 32, 32, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 0, 23, 24, 22), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [6], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"query", 131074, null, -1, 26, 26, const [7, 8], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"waitForChild", 65538, null, null, null, null, const [9, 10, 11], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 1, 25, 25, 29), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 2, 26, 26, 30), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 27, 27, 31), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 27, 27, 32), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 26, 26, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 33, 33, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 34, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 36, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 38, 39, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 1, 1, 1, 1, const [13], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 1, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 1, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled=", 262148, 1, null, -1, -1, const [16], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled", 131075, 1, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 1, null, -1, -1, const [17], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 1, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 1, -1, 1, 1, const [14, 15], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 2, 2, 2, 2, const [18], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"check", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uncheck", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hub", 131075, 2, -1, 26, 26, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"inputElement", 131075, 2, -1, 41, 41, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked=", 262148, 2, null, -1, -1, const [21], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked", 131075, 2, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled=", 262148, 2, null, -1, -1, const [22], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled", 131075, 2, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label", 131075, 2, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label=", 262148, 2, null, -1, -1, const [23], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 2, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 2, null, -1, -1, const [24], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 2, -1, 2, 2, const [19, 20], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"formatterFor", 131074, 4, -1, 42, 42, const [25, 26], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 4, 8, 8, 64), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 5, 6, 6, 65), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 6, 9, 9, 66), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 7, 7, 7, 67), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 8, 5, 5, 68), new r.MethodMirrorImpl(r"", 64, 3, -1, 3, 3, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 4, -1, 4, 4, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"choose", 131074, 5, -1, 30, 30, const [27, 28, 29], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 5, -1, 30, 30, const [30, 31, 32], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 5, -1, 5, 5, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"decorate", 131074, 6, -1, 30, 30, const [33], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 6, -1, 30, 30, const [34], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 6, -1, 6, 6, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"lowercase", 131074, 7, -1, 30, 30, const [35], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 7, -1, 30, 30, const [36], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 7, -1, 7, 7, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"number", 131074, 8, -1, 30, 30, const [37, 38], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 8, -1, 30, 30, const [39, 40], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 8, -1, 8, 8, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uppercase", 131074, 9, -1, 30, 30, const [41], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 9, -1, 30, 30, const [42], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 9, -1, 9, 9, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"run", 262146, 10, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 10, -1, 10, 10, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"render", 4325378, 11, -1, 43, 44, const [43, 44, 45], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"renderBefore", 4325378, 11, -1, 43, 44, const [46, 47, 48], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 11, -1, 11, 11, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"compileElement", 4325378, 12, -1, 45, 46, const [49, 50], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 9, 28, 29, 92), new r.MethodMirrorImpl(r"", 0, 12, -1, 12, 12, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 13, -1, 13, 13, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context=", 262148, null, null, -1, -1, const [51], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parentContext", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"rootContext", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 14, null, -1, -1, const [52], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"on", 4325890, 14, -1, 48, 49, const [53], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 1, 14, -1, 14, 14, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 15, null, -1, -1, const [54], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"on", 4325378, 15, -1, 48, 49, const [55], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 1, 15, -1, 15, 15, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 16, null, -1, -1, const [56], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 16, -1, 16, 16, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"emitChange", 262146, null, null, -1, -1, const [57], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onChange", 4325379, null, -1, 50, 51, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 17, null, -1, -1, const [58], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 0, 17, -1, 17, 17, const [59], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 18, -1, 52, 52, const [60, 61, 62], const prefix0.InjectAnnotation(), const [deprecated]), new r.MethodMirrorImpl(r"render", 4325378, 18, -1, 45, 46, const [63, 64, 65, 66], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 27, 27, 113), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 27, 27, 114), new r.MethodMirrorImpl(r"", 0, 18, -1, 18, 18, const [67, 68], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 19, -1, 52, 52, const [70, 71, 72, 73], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 30, 30, 117), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 30, 30, 118), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 12, 30, 30, 119), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 12, 30, 30, 120), new r.MethodMirrorImpl(r"", 0, 19, -1, 19, 19, const [74, 75], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"createFor", 131074, 20, -1, 53, 53, const [78], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"setBuilderFor", 262146, 20, null, -1, -1, const [79, 80], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 20, -1, 20, 20, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"translate", 131586, 21, -1, 30, 30, const [81], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 21, -1, 30, 30, const [82], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 21, -1, 21, 21, const [], const prefix0.InjectAnnotation(), const [])], [new r.ParameterMirrorImpl(r"element", 33798, 13, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 16, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 16, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 14, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"other", 16390, 17, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 19, const prefix0.InjectAnnotation(), -1, 55, 55, const [], null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 24, const prefix0.InjectAnnotation(), -1, 56, 57, const [], null, null), new r.ParameterMirrorImpl(r"selector", 33798, 27, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"logError", 48134, 27, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 28, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"wait", 48134, 28, const prefix0.InjectAnnotation(), -1, 58, 58, const [], const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 28, const prefix0.InjectAnnotation(), -1, 31, 31, const [], 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 32, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 39, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 46, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 46, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 42, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 44, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 47, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 62, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 62, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 54, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 56, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"v", 33798, 59, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 61, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 63, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 63, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 71, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"option1", 39942, 71, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "Yes", null), new r.ParameterMirrorImpl(r"option2", 39942, 71, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "No", null), new r.ParameterMirrorImpl(r"value", 17414, 72, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"option1", 39942, 72, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "Yes", null), new r.ParameterMirrorImpl(r"option2", 39942, 72, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "No", null), new r.ParameterMirrorImpl(r"value", 17414, 74, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 75, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 77, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 78, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicValue", 17414, 80, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicFractionSize", 21510, 80, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 81, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"fractionSize", 21510, 81, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 83, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 84, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 88, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 88, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 88, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"parent", 33798, 89, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"reference", 33798, 89, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 89, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 91, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 91, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"cntxt", 33798, 96, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 99, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 100, const prefix0.InjectAnnotation(), -1, 60, 60, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 102, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 103, const prefix0.InjectAnnotation(), -1, 60, 60, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 105, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"action", 48134, 107, const prefix0.InjectAnnotation(), -1, 59, 59, const [], prefix6.UpdateViewAction, #action), new r.ParameterMirrorImpl(r"action", 33798, 109, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"_actionbus", 32806, 110, const prefix0.InjectAnnotation(), 14, 14, 14, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 111, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 111, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 111, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 112, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 112, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 112, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 112, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"_renderer", 32806, 115, const prefix0.InjectAnnotation(), 11, 11, 11, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 115, const prefix0.InjectAnnotation(), 12, 12, 12, const [], null, null), new r.ParameterMirrorImpl(r"_appendNewNodes", 32870, 114, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 116, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 116, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"items", 2130950, 116, const prefix0.InjectAnnotation(), -1, 62, 63, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 116, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"_renderer", 32806, 121, const prefix0.InjectAnnotation(), 11, 11, 11, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 121, const prefix0.InjectAnnotation(), 12, 12, 12, const [], null, null), new r.ParameterMirrorImpl(r"_listTag", 32870, 118, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"_itemTag", 32870, 120, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 122, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"type", 33798, 123, const prefix0.InjectAnnotation(), -1, 32, 32, const [], null, null), new r.ParameterMirrorImpl(r"builder", 1030, 123, const prefix0.InjectAnnotation(), null, 64, 64, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 125, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 126, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null)], [prefix1.MaterialBadge, prefix1.MaterialButton, prefix1.MaterialCheckbox, prefix3.Formatter, prefix3.FallbackFormatter, prefix3.ChooseFormatter, prefix3.DecoratorFormatter, prefix3.LowerCaseFormatter, prefix3.NumberFormatter, prefix3.UpperCaseFormatter, prefix4.MaterialApplication, prefix5.DomRenderer, prefix5.EventCompiler, prefix5.RootScope, prefix6.ActionBus, prefix6.ActionBusImpl, prefix6.DataStore, prefix6.FireOnlyDataStore, prefix7.TemplateRenderer, prefix7.ListRenderer, prefix8.ModelObserverFactory, prefix9.Translator, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), const m.TypeValue>>().type, List, prefix0.Injector, prefix12.Element, bool, const m.TypeValue>().type, Map, String, int, Type, prefix12.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix12.ElementStream, const m.TypeValue>().type, prefix12.ElementStream, prefix4.MdlComponent, prefix12.CheckboxInputElement, prefix3.MaterialFormatter, const m.TypeValue>().type, prefix11.Future, const m.TypeValue>().type, prefix11.Future, Object, const m.TypeValue>().type, prefix11.Stream, const m.TypeValue>>().type, prefix11.Stream, prefix7.Renderer, prefix8.ModelObserver, prefix12.HtmlElement, Invocation, const m.TypeValue>().type, prefix11.StreamSubscription, Duration, prefix6.Action, prefix6.ActionName, const m.TypeValue().type, const m.TypeValue>().type, List, const m.TypeValue().type, prefix9.L10N], 23, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"eventStreams": (dynamic instance) => instance.eventStreams, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"query": (dynamic instance) => instance.query, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"value": (dynamic instance) => instance.value, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label, r"number": (dynamic instance) => instance.number, r"decorate": (dynamic instance) => instance.decorate, r"uppercase": (dynamic instance) => instance.uppercase, r"lowercase": (dynamic instance) => instance.lowercase, r"choose": (dynamic instance) => instance.choose, r"call": (dynamic instance) => instance.call, r"run": (dynamic instance) => instance.run, r"render": (dynamic instance) => instance.render, r"renderBefore": (dynamic instance) => instance.renderBefore, r"compileElement": (dynamic instance) => instance.compileElement, r"context": (dynamic instance) => instance.context, r"parentContext": (dynamic instance) => instance.parentContext, r"rootContext": (dynamic instance) => instance.rootContext, r"fire": (dynamic instance) => instance.fire, r"on": (dynamic instance) => instance.on, r"emitChange": (dynamic instance) => instance.emitChange, r"onChange": (dynamic instance) => instance.onChange, r"appendNewNodes": (dynamic instance) => instance.appendNewNodes, r"listTag": (dynamic instance) => instance.listTag, r"itemTag": (dynamic instance) => instance.itemTag, r"createFor": (dynamic instance) => instance.createFor, r"setBuilderFor": (dynamic instance) => instance.setBuilderFor}, {r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"value=": (dynamic instance, value) => instance.value = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value, r"context=": (dynamic instance, value) => instance.context = value, r"appendNewNodes=": (dynamic instance, value) => instance.appendNewNodes = value, r"listTag=": (dynamic instance, value) => instance.listTag = value, r"itemTag=": (dynamic instance, value) => instance.itemTag = value}, [new r.LibraryMirrorImpl(r"mdlcomponents", Uri.parse(r"reflectable://0/mdlcomponents"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlformatter", Uri.parse(r"reflectable://1/mdlformatter"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlcore", Uri.parse(r"reflectable://2/mdlcore"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlapplication", Uri.parse(r"reflectable://3/mdlapplication"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlflux", Uri.parse(r"reflectable://4/mdlflux"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdltemplate", Uri.parse(r"reflectable://5/mdltemplate"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdldirective", Uri.parse(r"reflectable://6/mdldirective"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"l10n", Uri.parse(r"reflectable://7/l10n"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null)], []), const prefix2.MustacheMirrorsUsedAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 0, const prefix2.MustacheMirrorsUsedAnnotation(), const [4, 5, 6, 7, 8, 9, 10, 11], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 5, 6, 7, 8, 9, 10], const [4], -1, {r"widget": () => prefix1.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialButton.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 1, const prefix2.MustacheMirrorsUsedAnnotation(), const [34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 39, 29, 30, 31, 32, 33, 50, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48], const [34], -1, {r"widget": () => prefix1.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialCheckbox.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 2, const prefix2.MustacheMirrorsUsedAnnotation(), const [50], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 50], const [], -1, const {}, const {}, const {}, -1, -1, const [-1], null, null)], [new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 3, 4, null), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null), new r.VariableMirrorImpl(r"element", 33797, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null), new r.MethodMirrorImpl(r"widget", 131090, 0, 0, 0, 0, const [0], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 0, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 0, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled=", 262148, 0, null, -1, -1, const [3], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled", 131075, 0, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 0, null, -1, -1, const [4], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 0, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 0, -1, 0, 0, const [1, 2], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"==", 131074, null, -1, 7, 7, const [5], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [6], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 9, 9, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 10, 10, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 0, 3, 4, 17), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [7], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"query", 131074, null, -1, 6, 6, const [8, 9], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"waitForChild", 65538, null, null, null, null, const [10, 11, 12], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 1, 5, 5, 24), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 2, 6, 6, 25), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 3, 7, 7, 26), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 3, 7, 7, 27), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 6, 6, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 11, 11, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 12, 13, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 14, 15, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 16, 17, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 18, 18, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"widget", 131090, 1, 1, 1, 1, const [14], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"check", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"uncheck", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hub", 131075, 1, -1, 6, 6, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"inputElement", 131075, 1, -1, 19, 19, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked=", 262148, 1, null, -1, -1, const [17], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked", 131075, 1, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled=", 262148, 1, null, -1, -1, const [18], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled", 131075, 1, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label", 131075, 1, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label=", 262148, 1, null, -1, -1, const [19], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 1, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 1, null, -1, -1, const [20], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 1, -1, 1, 1, const [15, 16], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"formatterFor", 131074, null, -1, 20, 20, const [21, 22], const prefix2.MustacheMirrorsUsedAnnotation(), null)], [new r.ParameterMirrorImpl(r"element", 33798, 4, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 11, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 11, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null, null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 7, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 9, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"other", 16390, 12, const prefix2.MustacheMirrorsUsedAnnotation(), null, null, null, null, null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 14, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null, null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 19, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 23, 24, null, null, null), new r.ParameterMirrorImpl(r"selector", 33798, 22, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"logError", 48134, 22, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"wait", 48134, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 25, 25, null, const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 9, 9, null, 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 27, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 34, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 49, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 49, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null, null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 41, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 43, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"v", 33798, 46, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 48, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 50, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null, null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 50, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null, null, null)], [prefix1.MaterialButton, prefix1.MaterialCheckbox, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), const m.TypeValue>>().type, List, prefix0.Injector, prefix12.Element, bool, String, int, Type, prefix12.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix12.ElementStream, const m.TypeValue>().type, prefix12.ElementStream, prefix4.MdlComponent, prefix12.CheckboxInputElement, prefix3.MaterialFormatter, prefix12.HtmlElement, Invocation, const m.TypeValue>().type, prefix11.StreamSubscription, Duration], 3, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"eventStreams": (dynamic instance) => instance.eventStreams, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"query": (dynamic instance) => instance.query, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"value": (dynamic instance) => instance.value, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label}, {r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"value=": (dynamic instance, value) => instance.value = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value}, null, [])}; + + +final _memberSymbolMap = null; + +initializeReflectable() { + if (!isTransformed) { + throw new UnsupportedError( + "The transformed code is running with the untransformed " + "reflectable package. Remember to set your package-root to " + "'build/.../packages'."); + } + r.data = _data; + r.memberSymbolMap = _memberSymbolMap; +} diff --git a/samples/mdl_button/.analysis_options.yaml b/samples/mdl_button/.analysis_options.yaml new file mode 100644 index 0000000..58522ed --- /dev/null +++ b/samples/mdl_button/.analysis_options.yaml @@ -0,0 +1,6 @@ +# Analyzer options: +# https://www.dartlang.org/guides/language/analysis-options +# +analyzer: + strong-mode: true + diff --git a/samples/mdl_button/.rsync b/samples/mdl_button/.rsync new file mode 100644 index 0000000..021cfd8 --- /dev/null +++ b/samples/mdl_button/.rsync @@ -0,0 +1,14 @@ +# Rsync-Destination für dieses sample +# +# - ssh ls2 +# - cat ~/website/config/nginx/_template.conf.txt | sed -e 's/%example%/mdl_button/' > ~/website/config/nginx/mdl_button.conf +# - cat ~/website/config/nginx/mdl_button.conf +# - sudo mkdir -p ~/website/data/example/mdl_button +# - sudo chown ubuntu:ubuntu ~/website/data/example/mdl_button +# - sudo chmod 775 ~/website/data/example/mdl_button +# - ls -lad ~/website/data/example/mdl_button +# - cd ~/website && docker-compose restart +# +RSYNC_DESTINATION=":~/website/data/example/mdl_button/" +EXAMPLE_URL="http://mdl_button.example.mikemitterer.at/" + diff --git a/samples/mdl_button/.sitegen/html/_content/index.html b/samples/mdl_button/.sitegen/html/_content/index.html index f76dba5..b735ce4 100644 --- a/samples/mdl_button/.sitegen/html/_content/index.html +++ b/samples/mdl_button/.sitegen/html/_content/index.html @@ -1,55 +1,55 @@ title: BUTTON samplename: button -sampleurl: https://github.com/MikeMitterer/dart-material-design-lite/tree/master/samples/mdl_button/web +sampleurl: https://github.com/MikeMitterer/dart-material-design-lite-site/tree/master/samples/mdl_button/web ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
Flat:
-
Raised:
-
FAB:
-
Icon:
+
Flat:
+
Raised:
+
FAB:
+
Icon:
-
With Ripples
+
With Ripples
-
Flat:
-
Raised:
-
FAB:
-
Icon:
+
Flat:
+
Raised:
+
FAB:
+
Icon:
-
.mdl-button--colored
+
.mdl-button--colored
-
Flat:
-
Raised:
-
FAB:
+
Flat:
+
Raised:
+
FAB:
-
With Ripples
+
With Ripples
-
Flat:
-
Raised:
-
FAB:
+
Flat:
+
Raised:
+
FAB:
-
.mdl-button--primary
+
.mdl-button--primary
-
Flat:
-
Raised:
-
FAB:
-
Icon:
+
Flat:
+
Raised:
+
FAB:
+
Icon:
-
.mdl-button--accent
+
.mdl-button--accent
-
Flat:
-
Raised:
-
FAB:
-
Icon:
+
Flat:
+
Raised:
+
FAB:
+
Icon:
-
.mdl-button--mini-fab
+
.mdl-button--mini-fab
-
+
-
Disabled
+
Disabled
-
Flat:
-
Raised:
-
FAB:
-
Icon:
+
Flat:
+
Raised:
+
FAB:
+
Icon:
\ No newline at end of file diff --git a/samples/mdl_button/pubspec.yaml b/samples/mdl_button/pubspec.yaml index 8e02fed..e74696d 100644 --- a/samples/mdl_button/pubspec.yaml +++ b/samples/mdl_button/pubspec.yaml @@ -5,30 +5,27 @@ author: Mike Mitterer homepage: https://github.com/MikeMitterer/dart-material-design-lite dependencies: - browser: any - - intl: ^0.12.0 + intl: ^0.15.0 args: any validate: ^1.0.0 browser_detect: ^1.0.0 - logging: ^0.11.0 - logging_handlers: ^0.8.0 - console_log_handler: ^0.1.0 + logging: '>=0.11.3 <1.0.0' + console_log_handler: ^1.0.0 + # git: git@github.com:MikeMitterer/dart-console_log_handler.git # path: /Volumes/Daten/DevLocal/DevDart/ConsoleLogHandler mdl: + # '>=2.1.0 <3.0.0' + # git: + # url: git@github.com:MikeMitterer/dart-material-design-lite.git + # ref: v2.2 path: /Volumes/Daten/DevLocal/DevDart/MaterialDesignLite - di: ^3.3.0 - - dart_to_js_script_rewriter: ^0.1.0 - -transformers: - - di - - dart_to_js_script_rewriter + reflected_mustache: + path: /Volumes/Daten/DevLocal/DevDart/reflected_mustache -# - $dart2js: -# commandLineOptions: [--enable-experimental-mirrors] -# minify: false -# sourceMaps: true \ No newline at end of file +dev_dependencies: + build_runner: any + build_web_compilers: any + sass_builder: any \ No newline at end of file diff --git a/samples/mdl_button/web/README.md b/samples/mdl_button/web/README.md index 3052237..cc3a5b6 100755 --- a/samples/mdl_button/web/README.md +++ b/samples/mdl_button/web/README.md @@ -16,7 +16,7 @@ To use any MDL component, you must include the minified CSS and JavaScript files ```  2. Add one or more MDL classes, separated by spaces, to the button using the `class` attribute. ```html - + ``` The button component is ready for use. @@ -24,17 +24,17 @@ The button component is ready for use. #### Examples A button with the "raised" effect. ```html - + ``` A button with the "fab" effect. ```html - + ``` A button with the "icon" and "colored" effects. ```html - + ``` @@ -53,7 +53,7 @@ The MDL CSS classes apply various predefined visual and behavioral enhancements | `mdl-button--colored` | Applies *colored* display effect (primary or accent color, depending on the type of button) | Colors are defined in `material.min.css` | | `mdl-button--primary` | Applies *primary* color display effect | Colors are defined in `material.min.css` | | `mdl-button--accent` | Applies *accent* color display effect | Colors are defined in `material.min.css` | -| `mdl-js-ripple-effect` | Applies *ripple* click effect | May be used in combination with any other classes | +| `mdl-ripple-effect` | Applies *ripple* click effect | May be used in combination with any other classes | ->**Note:** Disabled versions of all the available button types are provided, and are invoked with the standard HTML boolean attribute `disabled`. ``. Alternatively, the `mdl-button--disabled` class can be used to achieve the same result. +>**Note:** Disabled versions of all the available button types are provided, and are invoked with the standard HTML boolean attribute `disabled`. ``. Alternatively, the `mdl-button--disabled` class can be used to achieve the same result. >This attribute may be added or removed programmatically via scripting. diff --git a/samples/mdl_button/web/index.html b/samples/mdl_button/web/index.html index 9df6df4..19ee0eb 100644 --- a/samples/mdl_button/web/index.html +++ b/samples/mdl_button/web/index.html @@ -6,43 +6,57 @@ BUTTON + + + + + + + + + +
Loading...
-
+
BUTTON-Sample
+
@@ -53,54 +67,57 @@
-
Flat:
-
Raised:
-
FAB:
-
Icon:
+
Flat:
+
Raised:
+
FAB:
+
Icon:
-
With Ripples
+
With Ripples
-
Flat:
-
Raised:
-
FAB:
-
Icon:
+
Flat:
+
Raised: + +
+
FAB:
+
Icon:
+

(Raised button logs message to console)

-
.mdl-button--colored
+
.mdl-button--colored
-
Flat:
-
Raised:
-
FAB:
+
Flat:
+
Raised:
+
FAB:
-
With Ripples
+
With Ripples
-
Flat:
-
Raised:
-
FAB:
+
Flat:
+
Raised:
+
FAB:
-
.mdl-button--primary
+
.mdl-button--primary
-
Flat:
-
Raised:
-
FAB:
-
Icon:
+
Flat:
+
Raised:
+
FAB:
+
Icon:
-
.mdl-button--accent
+
.mdl-button--accent
-
Flat:
-
Raised:
-
FAB:
-
Icon:
+
Flat:
+
Raised:
+
FAB:
+
Icon:
-
.mdl-button--mini-fab
+
.mdl-button--mini-fab
-
+
-
Disabled
+
Disabled
-
Flat:
-
Raised:
-
FAB:
-
Icon:
+
Flat:
+
Raised:
+
FAB:
+
Icon:
@@ -116,21 +133,25 @@
Disabled
Mike Mitterer, IT-Consulting and Development Ltd.

+ - - + + + diff --git a/samples/mdl_button/web/main.dart b/samples/mdl_button/web/main.dart index 1509547..85ae86a 100644 --- a/samples/mdl_button/web/main.dart +++ b/samples/mdl_button/web/main.dart @@ -1,25 +1,32 @@ -import "dart:html" as dom; +import 'dart:html' as dom; +import 'dart:async'; -import 'package:logging/logging.dart'; import 'package:console_log_handler/console_log_handler.dart'; import 'package:mdl/mdl.dart'; +import 'package:dryice/dryice.dart'; -main() { - configLogging(); +import 'main.reflectable.dart'; - registerMdl(); +@inject +class Application extends MaterialApplication { + final Logger _logger = new Logger('mdl_button.main'); - componentFactory().run().then((_) { - //final MaterialButton button = MaterialButton() - }); + @override + void run() { + MaterialButton.widget(dom.querySelector("#with-event")).onClick.listen((_) { + _logger.info("Clicked!"); + }); + } } -void configLogging() { - hierarchicalLoggingEnabled = false; // set this to true - its part of Logging SDK +Future main() async { + configLogging(show: Level.INFO); + initializeReflectable(); + + registerMdl(); + + final Application app = await componentFactory().rootContext(Application).run(); + app.run(); +} - // now control the logging. - // Turn off all logging first - Logger.root.level = Level.INFO; - Logger.root.onRecord.listen(new LogConsoleHandler()); -} \ No newline at end of file diff --git a/samples/mdl_button/web/main.reflectable.dart b/samples/mdl_button/web/main.reflectable.dart new file mode 100644 index 0000000..a474e9d --- /dev/null +++ b/samples/mdl_button/web/main.reflectable.dart @@ -0,0 +1,44 @@ +// This file has been generated by the reflectable package. +// https://github.com/dart-lang/reflectable. + +import "dart:core"; +import 'dart:async' as prefix14; +import 'dart:html' as prefix15; +import 'dart:math' as prefix16; +import 'main.dart' as prefix1; +import 'package:dryice/dryice.dart' as prefix0; +import 'package:l10n/l10n.dart' as prefix12; +import 'package:mdl/mdlapplication.dart' as prefix7; +import 'package:mdl/mdlcomponents.dart' as prefix4; +import 'package:mdl/mdlcore.dart' as prefix6; +import 'package:mdl/mdldialog.dart' as prefix2; +import 'package:mdl/mdldirective.dart' as prefix11; +import 'package:mdl/mdlflux.dart' as prefix8; +import 'package:mdl/mdlformatter.dart' as prefix5; +import 'package:mdl/mdlobservable.dart' as prefix10; +import 'package:mdl/mdltemplate.dart' as prefix9; +import 'package:mdl/src/core/annotations.dart' as prefix13; +import 'package:reflected_mustache/mustache.dart' as prefix3; + +// ignore:unused_import +import "package:reflectable/mirrors.dart" as m; +// ignore:unused_import +import "package:reflectable/src/reflectable_transformer_based.dart" as r; +// ignore:unused_import +import "package:reflectable/reflectable.dart" show isTransformed; + +final _data = {const prefix0.InjectAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"Application", r".Application", 7, 0, const prefix0.InjectAnnotation(), const [46, 47], const [48, 49, 50, 51, 52, 46], const [], 18, {}, {}, {r"": (b) => () => b ? new prefix1.Application() : null}, 0, 0, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialAlertDialog", r"mdldialog.MaterialAlertDialog", 7, 1, const prefix0.InjectAnnotation(), const [0, 1, 2, 3, 53, 54, 63, 64], const [48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix2.MaterialAlertDialog() : null}, 1, 1, const [], const [prefix13.Component, prefix0.inject, prefix3.mustache], null), new r.NonGenericClassMirrorImpl(r"MdlConfirmDialog", r"mdldialog.MdlConfirmDialog", 7, 2, const prefix0.InjectAnnotation(), const [7, 8, 9, 10, 11, 77, 78, 79, 90, 91], const [48, 49, 50, 51, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix2.MdlConfirmDialog() : null}, 1, 2, const [], const [prefix13.Component, prefix0.inject, prefix3.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialSnackbar", r"mdldialog.MaterialSnackbar", 7, 3, const prefix0.InjectAnnotation(), const [12, 13, 14, 15, 16, 17, 18, 19, 92, 93, 94, 107, 108, 109], const [48, 49, 50, 51, 52, 65, 66, 93, 68, 69, 70, 71, 72, 73, 74, 75, 76, 92, 94, 96, 97, 100, 101, 102, 103, 104, 105, 106, 107, 108], const [95, 98, 99], -1, {r"DEFAULT_CONFIRM_BUTTON": () => prefix2.MaterialSnackbar.DEFAULT_CONFIRM_BUTTON, r"LONG_DELAY": () => prefix2.MaterialSnackbar.LONG_DELAY, r"SHORT_DELAY": () => prefix2.MaterialSnackbar.SHORT_DELAY}, {}, {r"": (b) => () => b ? new prefix2.MaterialSnackbar() : null}, 1, 3, const [], const [prefix13.Component, prefix0.inject, prefix3.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialNotification", r"mdldialog.MaterialNotification", 7, 4, const prefix0.InjectAnnotation(), const [20, 21, 22, 23, 24, 25, 26, 27, 110, 111, 112, 127, 128, 129, 130, 131, 132], const [48, 49, 50, 51, 52, 65, 66, 111, 68, 69, 70, 71, 72, 73, 74, 75, 76, 110, 112, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131], const [113, 114], -1, {r"LONG_DELAY": () => prefix2.MaterialNotification.LONG_DELAY, r"SHORT_DELAY": () => prefix2.MaterialNotification.SHORT_DELAY}, {}, {r"": (b) => () => b ? new prefix2.MaterialNotification() : null}, 1, 4, const [], const [prefix13.Component, prefix0.inject, prefix3.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialDatePicker", r"mdldialog.MaterialDatePicker", 7, 5, const prefix0.InjectAnnotation(), const [28, 29, 30, 31, 133, 134, 135, 136, 137, 138, 139, 140, 141, 150, 151, 152, 153], const [48, 49, 50, 51, 52, 65, 66, 133, 68, 69, 70, 71, 72, 73, 74, 75, 76, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix2.MaterialDatePicker() : null}, 1, 5, const [], const [prefix13.Component, prefix0.inject, prefix3.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialTimePicker", r"mdldialog.MaterialTimePicker", 7, 6, const prefix0.InjectAnnotation(), const [32, 33, 154, 155, 156, 157, 158, 159, 160, 165, 166, 167], const [48, 49, 50, 51, 52, 65, 66, 154, 68, 69, 70, 71, 72, 73, 74, 75, 76, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix2.MaterialTimePicker() : null}, 1, 6, const [], const [prefix13.Component, prefix0.inject, prefix3.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialDialogComponent", r"mdldialog.MaterialDialogComponent", 7, 7, const prefix0.InjectAnnotation(), const [168, 169, 170, 171], const [48, 49, 50, 51, 52, 66, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 169, 170], const [168], -1, {r"widget": () => prefix2.MaterialDialogComponent.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix2.MaterialDialogComponent.fromElement(element, injector) : null}, 1, 7, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialBadge", r"mdlcomponents.MaterialBadge", 7, 8, const prefix0.InjectAnnotation(), const [188, 189, 190, 191], const [48, 49, 50, 51, 52, 66, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 189, 190], const [188], -1, {r"widget": () => prefix4.MaterialBadge.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix4.MaterialBadge.fromElement(element, injector) : null}, 2, 8, const [], const [prefix13.Component, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 9, const prefix0.InjectAnnotation(), const [192, 193, 194, 195, 196, 197, 198, 199], const [48, 49, 50, 51, 52, 66, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 193, 194, 195, 196, 197, 198], const [192], -1, {r"widget": () => prefix4.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix4.MaterialButton.fromElement(element, injector) : null}, 2, 9, const [], const [prefix13.Component, prefix0.inject, prefix3.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 10, const prefix0.InjectAnnotation(), const [200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215], const [48, 49, 50, 51, 52, 66, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 205, 183, 184, 185, 186, 187, 216, 201, 202, 203, 204, 206, 207, 208, 209, 210, 211, 212, 213, 214], const [200], 34, {r"widget": () => prefix4.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix4.MaterialCheckbox.fromElement(element, injector) : null}, 2, 10, const [], const [prefix0.inject, prefix3.mustache], null), new r.NonGenericClassMirrorImpl(r"Formatter", r"mdlformatter.Formatter", 7, 11, const prefix0.InjectAnnotation(), const [37, 38, 39, 40, 41, 222], const [48, 49, 50, 51, 52, 217, 218, 219, 220, 221], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.Formatter() : null}, 3, 11, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FallbackFormatter", r"mdlformatter.FallbackFormatter", 519, 12, const prefix0.InjectAnnotation(), const [216, 223], const [48, 49, 50, 51, 52, 216], const [], -1, {}, {}, {}, 3, 12, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ChooseFormatter", r"mdlformatter.ChooseFormatter", 7, 13, const prefix0.InjectAnnotation(), const [224, 225], const [48, 49, 50, 51, 52, 224], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.ChooseFormatter() : null}, 3, 13, const [], const [prefix13.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DecoratorFormatter", r"mdlformatter.DecoratorFormatter", 7, 14, const prefix0.InjectAnnotation(), const [226, 227, 228], const [48, 49, 50, 51, 52, 226, 227], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.DecoratorFormatter() : null}, 3, 14, const [], const [prefix13.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"LowerCaseFormatter", r"mdlformatter.LowerCaseFormatter", 7, 15, const prefix0.InjectAnnotation(), const [229, 230, 231], const [48, 49, 50, 51, 52, 229, 230], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.LowerCaseFormatter() : null}, 3, 15, const [], const [prefix13.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"NumberFormatter", r"mdlformatter.NumberFormatter", 7, 16, const prefix0.InjectAnnotation(), const [232, 233, 234], const [48, 49, 50, 51, 52, 232, 233], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.NumberFormatter() : null}, 3, 16, const [], const [prefix13.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"UpperCaseFormatter", r"mdlformatter.UpperCaseFormatter", 7, 17, const prefix0.InjectAnnotation(), const [235, 236, 237], const [48, 49, 50, 51, 52, 235, 236], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.UpperCaseFormatter() : null}, 3, 17, const [], const [prefix13.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialApplication", r"mdlcore.MaterialApplication", 7, 18, const prefix0.InjectAnnotation(), const [238, 239], const [48, 49, 50, 51, 52, 238], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix6.MaterialApplication() : null}, 4, 18, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"RefreshableComponent", r"mdlcore.RefreshableComponent", 519, 19, const prefix0.InjectAnnotation(), const [240, 241], const [48, 49, 50, 51, 52], const [], -1, {}, {}, {}, 4, 19, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DomRenderer", r"mdlapplication.DomRenderer", 7, 20, const prefix0.InjectAnnotation(), const [242, 243, 244], const [48, 49, 50, 51, 52, 242, 243], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix7.DomRenderer() : null}, 5, 20, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"EventCompiler", r"mdlapplication.EventCompiler", 7, 21, const prefix0.InjectAnnotation(), const [42, 245, 247], const [48, 49, 50, 51, 52, 245], const [246], -1, {r"datasets": () => prefix7.EventCompiler.datasets}, {}, {r"": (b) => () => b ? new prefix7.EventCompiler() : null}, 5, 21, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"RootScope", r"mdlapplication.RootScope", 7, 22, const prefix0.InjectAnnotation(), const [248], const [48, 49, 50, 51, 52, 249, 250, 251, 252], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix7.RootScope() : null}, 5, 22, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBus", r"mdlflux.ActionBus", 519, 23, const prefix0.InjectAnnotation(), const [253, 254, 255], const [48, 49, 50, 51, 52], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix8.ActionBus() : null}, 6, 23, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBusImpl", r"mdlflux.ActionBusImpl", 7, 24, const prefix0.InjectAnnotation(), const [256, 257, 258], const [48, 49, 50, 51, 52, 256, 257], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix8.ActionBusImpl() : null}, 6, 24, const [23], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DataStore", r"mdlflux.DataStore", 519, 25, const prefix0.InjectAnnotation(), const [259, 260], const [48, 49, 50, 51, 52, 261, 262], const [], -1, {}, {}, {}, 6, 25, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FireOnlyDataStore", r"mdlflux.FireOnlyDataStore", 7, 26, const prefix0.InjectAnnotation(), const [263, 264], const [48, 49, 50, 51, 52, 261, 262, 263], const [], 25, {}, {}, {r"": (b) => (_actionbus) => b ? new prefix8.FireOnlyDataStore(_actionbus) : null}, 6, 26, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"TemplateRenderer", r"mdltemplate.TemplateRenderer", 7, 27, const prefix0.InjectAnnotation(), const [43, 265, 266, 269], const [48, 49, 50, 51, 52, 265, 266, 267, 268], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix9.TemplateRenderer(_renderer, _eventCompiler) : null}, 7, 27, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ListRenderer", r"mdltemplate.ListRenderer", 7, 28, const prefix0.InjectAnnotation(), const [44, 45, 270, 275], const [48, 49, 50, 51, 52, 270, 271, 272, 273, 274], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix9.ListRenderer(_renderer, _eventCompiler) : null}, 7, 28, const [], const [prefix0.inject], null), new r.GenericClassMirrorImpl(r"ObservableList", r"mdlobservable.ObservableList", 7, 29, const prefix0.InjectAnnotation(), const [276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294], const [48, 295, 50, 51, 52, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 290, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 278, 279, 284, 285, 286, 282, 317, 318, 319, 320, 321, 322, 323, 324, 283, 325, 326, 327, 328, 329, 330, 331, 281, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 276, 277, 280, 287, 288, 289, 291, 292, 293], const [], -1, {}, {}, {r"": (b) => ({updateCallback}) => b ? new prefix10.ObservableList(updateCallback: updateCallback) : null}, 8, 29, const [], const [prefix13.Directive, prefix0.inject], null, (o) { return o is prefix10.ObservableList; }, const [35], 29), new r.NonGenericClassMirrorImpl(r"MaterialModel", r"mdldirective.MaterialModel", 7, 30, const prefix0.InjectAnnotation(), const [344, 345, 346], const [48, 49, 50, 51, 52, 66, 172, 173, 344, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 345], const [], -1, {}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix11.MaterialModel.fromElement(element, injector) : null}, 9, 30, const [19], const [prefix13.Component, prefix0.inject, prefix3.mustache], null), new r.NonGenericClassMirrorImpl(r"ModelObserverFactory", r"mdldirective.ModelObserverFactory", 7, 31, const prefix0.InjectAnnotation(), const [347, 348, 349], const [48, 49, 50, 51, 52, 347, 348], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix11.ModelObserverFactory() : null}, 9, 31, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"Translator", r"l10n.Translator", 519, 32, const prefix0.InjectAnnotation(), const [350, 351, 352], const [48, 49, 50, 51, 52, 351], const [], -1, {}, {}, {}, 10, 32, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"L10NTranslate", r"l10n.L10NTranslate", 7, 33, const prefix0.InjectAnnotation(), const [353, 354, 355, 356, 357, 358, 359, 360, 361, 362], const [48, 49, 50, 51, 52, 356, 353, 354, 355, 357, 358, 359], const [], 32, {}, {}, {r"withTranslation": (b) => (translation, {locale: "en"}) => b ? new prefix12.L10NTranslate.withTranslation(translation, locale: locale) : null, r"withTranslations": (b) => (translations) => b ? new prefix12.L10NTranslate.withTranslations(translations) : null, r"": (b) => () => b ? new prefix12.L10NTranslate() : null}, 10, 33, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 34, const prefix0.InjectAnnotation(), const [216], const [48, 49, 50, 51, 52, 66, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 216], const [], -1, const {}, const {}, const {}, 2, 12, const [], const [], null), new r.TypeVariableMirrorImpl(r"T", r"mdlobservable.ObservableList.T", const prefix0.InjectAnnotation(), -1, 29, [])], [new r.VariableMirrorImpl(r"title", 32773, 1, const prefix0.InjectAnnotation(), -1, 35, 35, const []), new r.VariableMirrorImpl(r"text", 32773, 1, const prefix0.InjectAnnotation(), -1, 35, 35, const []), new r.VariableMirrorImpl(r"okButton", 32773, 1, const prefix0.InjectAnnotation(), -1, 35, 35, const []), new r.VariableMirrorImpl(r"template", 32773, 1, const prefix0.InjectAnnotation(), -1, 35, 35, const [override]), new r.VariableMirrorImpl(r"lambdas", 2130949, null, const prefix0.InjectAnnotation(), -1, 36, 37, const []), new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix0.InjectAnnotation(), -1, 38, 39, const []), new r.VariableMirrorImpl(r"dialog", 32773, null, const prefix0.InjectAnnotation(), -1, 40, 40, const []), new r.VariableMirrorImpl(r"template", 32773, 2, const prefix0.InjectAnnotation(), -1, 35, 35, const [override]), new r.VariableMirrorImpl(r"title", 32773, 2, const prefix0.InjectAnnotation(), -1, 35, 35, const []), new r.VariableMirrorImpl(r"text", 32773, 2, const prefix0.InjectAnnotation(), -1, 35, 35, const []), new r.VariableMirrorImpl(r"yesButton", 32773, 2, const prefix0.InjectAnnotation(), -1, 35, 35, const []), new r.VariableMirrorImpl(r"noButton", 32773, 2, const prefix0.InjectAnnotation(), -1, 35, 35, const []), new r.VariableMirrorImpl(r"DEFAULT_CONFIRM_BUTTON", 33941, 3, const prefix0.InjectAnnotation(), -1, 35, 35, const []), new r.VariableMirrorImpl(r"template", 32773, 3, const prefix0.InjectAnnotation(), -1, 35, 35, const [override]), new r.VariableMirrorImpl(r"LONG_DELAY", 33941, 3, const prefix0.InjectAnnotation(), -1, 41, 41, const []), new r.VariableMirrorImpl(r"SHORT_DELAY", 33941, 3, const prefix0.InjectAnnotation(), -1, 41, 41, const []), new r.VariableMirrorImpl(r"position", 33797, 3, const prefix0.InjectAnnotation(), -1, 42, 42, const []), new r.VariableMirrorImpl(r"text", 32773, 3, const prefix0.InjectAnnotation(), -1, 35, 35, const []), new r.VariableMirrorImpl(r"confirmButton", 32773, 3, const prefix0.InjectAnnotation(), -1, 35, 35, const []), new r.VariableMirrorImpl(r"timeout", 32773, 3, const prefix0.InjectAnnotation(), -1, 41, 41, const []), new r.VariableMirrorImpl(r"LONG_DELAY", 33941, 4, const prefix0.InjectAnnotation(), -1, 41, 41, const []), new r.VariableMirrorImpl(r"SHORT_DELAY", 33941, 4, const prefix0.InjectAnnotation(), -1, 41, 41, const []), new r.VariableMirrorImpl(r"type", 32773, 4, const prefix0.InjectAnnotation(), -1, 43, 43, const []), new r.VariableMirrorImpl(r"title", 32773, 4, const prefix0.InjectAnnotation(), -1, 35, 35, const []), new r.VariableMirrorImpl(r"subtitle", 32773, 4, const prefix0.InjectAnnotation(), -1, 35, 35, const []), new r.VariableMirrorImpl(r"content", 32773, 4, const prefix0.InjectAnnotation(), -1, 35, 35, const []), new r.VariableMirrorImpl(r"timeout", 32773, 4, const prefix0.InjectAnnotation(), -1, 41, 41, const []), new r.VariableMirrorImpl(r"template", 32773, 4, const prefix0.InjectAnnotation(), -1, 35, 35, const [override]), new r.VariableMirrorImpl(r"dateTime", 32773, 5, const prefix0.InjectAnnotation(), -1, 44, 44, const []), new r.VariableMirrorImpl(r"yearFrom", 32773, 5, const prefix0.InjectAnnotation(), -1, 41, 41, const []), new r.VariableMirrorImpl(r"yearTo", 32773, 5, const prefix0.InjectAnnotation(), -1, 41, 41, const []), new r.VariableMirrorImpl(r"template", 32773, 5, const prefix0.InjectAnnotation(), -1, 35, 35, const [override]), new r.VariableMirrorImpl(r"dateTime", 32773, 6, const prefix0.InjectAnnotation(), -1, 44, 44, const []), new r.VariableMirrorImpl(r"template", 32773, 6, const prefix0.InjectAnnotation(), -1, 35, 35, const [override]), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix0.InjectAnnotation(), -1, 45, 45, const []), new r.VariableMirrorImpl(r"element", 33797, null, const prefix0.InjectAnnotation(), -1, 46, 46, const []), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix0.InjectAnnotation(), -1, 47, 47, const []), new r.VariableMirrorImpl(r"number", 33797, 11, const prefix0.InjectAnnotation(), 16, 16, 16, const []), new r.VariableMirrorImpl(r"decorate", 33797, 11, const prefix0.InjectAnnotation(), 14, 14, 14, const []), new r.VariableMirrorImpl(r"uppercase", 33797, 11, const prefix0.InjectAnnotation(), 17, 17, 17, const []), new r.VariableMirrorImpl(r"lowercase", 33797, 11, const prefix0.InjectAnnotation(), 15, 15, 15, const []), new r.VariableMirrorImpl(r"choose", 33797, 11, const prefix0.InjectAnnotation(), 13, 13, 13, const []), new r.VariableMirrorImpl(r"datasets", 2130965, 21, const prefix0.InjectAnnotation(), -1, 48, 49, const []), new r.VariableMirrorImpl(r"appendNewNodes", 32773, 27, const prefix0.InjectAnnotation(), -1, 47, 47, const []), new r.VariableMirrorImpl(r"listTag", 32773, 28, const prefix0.InjectAnnotation(), -1, 35, 35, const []), new r.VariableMirrorImpl(r"itemTag", 32773, 28, const prefix0.InjectAnnotation(), -1, 35, 35, const []), new r.MethodMirrorImpl(r"run", 262146, 0, null, -1, -1, const [], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 64, 0, -1, 0, 0, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"==", 131074, null, -1, 47, 47, const [0], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 35, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [1], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 41, 41, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 50, 50, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 1, 1, 1, 1, const [2, 3, 4], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClose", 262146, 1, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 0, 35, 35, 55), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 0, 35, 35, 56), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 1, 35, 35, 57), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 1, 35, 35, 58), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 2, 35, 35, 59), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 2, 35, 35, 60), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 35, 35, 61), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 35, 35, 62), new r.MethodMirrorImpl(r"hasTitle", 131075, 1, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 1, -1, 1, 1, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 4, 36, 37, 65), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 5, 38, 39, 66), new r.MethodMirrorImpl(r"show", 4325378, null, -1, 51, 52, const [9, 10], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"close", 4325378, null, -1, 53, 54, const [11], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"query", 131074, null, -1, 46, 46, const [12], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 6, 40, 40, 70), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 6, 40, 40, 71), new r.MethodMirrorImpl(r"id", 131075, null, -1, 35, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hasTimer", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hasNoTimer", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"isAutoCloseEnabled", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"scope", 131075, null, -1, 55, 55, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 2, 2, 2, 2, const [14, 15, 16, 17], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onYes", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onNo", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 7, 35, 35, 80), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 7, 35, 35, 81), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 8, 35, 35, 82), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 8, 35, 35, 83), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 9, 35, 35, 84), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 9, 35, 35, 85), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 35, 35, 86), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 35, 35, 87), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 35, 35, 88), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 35, 35, 89), new r.MethodMirrorImpl(r"hasTitle", 131075, 2, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 2, -1, 2, 2, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 3, 3, 3, 3, const [23, 24], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"show", 4325378, 3, -1, 51, 52, const [25, 26], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"onClose", 262146, 3, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 12, 35, 35, 95), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 13, 35, 35, 96), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 13, 35, 35, 97), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 14, 41, 41, 98), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 15, 41, 41, 99), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 16, 42, 42, 100), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 17, 35, 35, 101), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 17, 35, 35, 102), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 18, 35, 35, 103), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 18, 35, 35, 104), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 19, 41, 41, 105), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 19, 41, 41, 106), new r.MethodMirrorImpl(r"waitingForConfirmation", 131075, 3, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hasConfirmButton", 131075, 3, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 3, -1, 3, 3, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 4, 4, 4, 4, const [31, 32, 33, 34], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"show", 4325378, 4, -1, 51, 52, const [35, 36], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"onClose", 262146, 4, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 20, 41, 41, 113), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 21, 41, 41, 114), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 22, 43, 43, 115), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 22, 43, 43, 116), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 23, 35, 35, 117), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 23, 35, 35, 118), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 24, 35, 35, 119), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 24, 35, 35, 120), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 25, 35, 35, 121), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 25, 35, 35, 122), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 26, 41, 41, 123), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 26, 41, 41, 124), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 27, 35, 35, 125), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 27, 35, 35, 126), new r.MethodMirrorImpl(r"hasTitle", 131075, 4, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hasSubTitle", 131075, 4, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hasContent", 131075, 4, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"autoClose=", 262148, 4, null, -1, -1, const [43], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"autoClose", 131075, 4, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 4, -1, 4, 4, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"show", 4325378, 5, -1, 51, 52, const [44, 45], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"onClose", 262146, 5, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onCancel", 262146, 5, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickLeft", 262146, 5, null, -1, -1, const [46], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickRight", 262146, 5, null, -1, -1, const [47], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickDay", 262146, 5, null, -1, -1, const [48], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickYear", 262146, 5, null, -1, -1, const [49], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickDate", 262146, 5, null, -1, -1, const [50], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickItemInYearList", 262146, 5, null, -1, -1, const [51], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 28, 44, 44, 142), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 28, 44, 44, 143), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 29, 41, 41, 144), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 29, 41, 41, 145), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 30, 41, 41, 146), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 30, 41, 41, 147), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 31, 35, 35, 148), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 31, 35, 35, 149), new r.MethodMirrorImpl(r"year", 131075, 5, -1, 35, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"date", 131075, 5, -1, 35, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"month", 131075, 5, -1, 35, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 5, -1, 5, 5, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"show", 4325378, 6, -1, 51, 52, const [56, 57], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"onClose", 262146, 6, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onCancel", 262146, 6, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickHour", 262146, 6, null, -1, -1, const [58], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickMinute", 262146, 6, null, -1, -1, const [59], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickDialogBarHour", 262146, 6, null, -1, -1, const [60], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClickDialogBarMinute", 262146, 6, null, -1, -1, const [61], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 32, 44, 44, 161), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 32, 44, 44, 162), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 33, 35, 35, 163), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 33, 35, 35, 164), new r.MethodMirrorImpl(r"hour", 131075, 6, -1, 35, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"minute", 131075, 6, -1, 35, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 6, -1, 6, 6, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 7, 7, 7, 7, const [64], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"scope", 131075, 7, -1, 55, 55, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parentScope=", 262148, 7, null, -1, -1, const [67], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"fromElement", 0, 7, -1, 7, 7, const [65, 66], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [68], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"query", 131074, null, -1, 46, 46, const [69, 70], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"waitForChild", 4325378, null, -1, 56, 57, const [71, 72, 73], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 34, 45, 45, 178), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 35, 46, 46, 179), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 36, 47, 47, 180), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 36, 47, 47, 181), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 46, 46, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 58, 58, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 59, 60, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 61, 62, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 63, 64, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 65, 65, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 8, 8, 8, 8, const [75], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 8, null, -1, -1, const [78], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 8, -1, 35, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 8, -1, 8, 8, const [76, 77], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 9, 9, 9, 9, const [79], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 9, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 9, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled=", 262148, 9, null, -1, -1, const [82], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled", 131075, 9, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 9, null, -1, -1, const [83], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 9, -1, 35, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 9, -1, 9, 9, const [80, 81], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 10, 10, 10, 10, const [84], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 10, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 10, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"check", 262146, 10, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uncheck", 262146, 10, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hub", 131075, 10, -1, 46, 46, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"inputElement", 131075, 10, -1, 66, 66, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked=", 262148, 10, null, -1, -1, const [87], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked", 131075, 10, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled=", 262148, 10, null, -1, -1, const [88], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled", 131075, 10, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label", 131075, 10, -1, 35, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label=", 262148, 10, null, -1, -1, const [89], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 10, -1, 35, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 10, null, -1, -1, const [90], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 10, -1, 10, 10, const [85, 86], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"formatterFor", 131074, 12, -1, 67, 67, const [91, 92], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 37, 16, 16, 217), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 38, 14, 14, 218), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 39, 17, 17, 219), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 40, 15, 15, 220), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 41, 13, 13, 221), new r.MethodMirrorImpl(r"", 64, 11, -1, 11, 11, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 12, -1, 12, 12, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"choose", 131074, 13, -1, 35, 35, const [93, 94, 95], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 13, -1, 13, 13, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"decorate", 131074, 14, -1, 35, 35, const [96], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 14, -1, 35, 35, const [97], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 14, -1, 14, 14, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"lowercase", 131074, 15, -1, 35, 35, const [98], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 15, -1, 35, 35, const [99], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 15, -1, 15, 15, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"number", 131074, 16, -1, 35, 35, const [100, 101], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 16, -1, 35, 35, const [102, 103], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 16, -1, 16, 16, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uppercase", 131074, 17, -1, 35, 35, const [104], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 17, -1, 35, 35, const [105], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 17, -1, 17, 17, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"run", 262146, 18, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 18, -1, 18, 18, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"refresh", 262658, 19, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 19, -1, 19, 19, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"render", 4325378, 20, -1, 68, 69, const [106, 107, 108], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"renderBefore", 4325378, 20, -1, 68, 69, const [109, 110, 111], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 20, -1, 20, 20, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"compileElement", 4325378, 21, -1, 53, 54, const [112, 113], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 42, 48, 49, 246), new r.MethodMirrorImpl(r"", 0, 21, -1, 21, 21, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 22, -1, 22, 22, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context", 131075, null, -1, 70, 70, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context=", 262148, null, null, -1, -1, const [114], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parentContext", 131075, null, -1, 70, 70, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"rootContext", 131075, null, -1, 70, 70, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 23, null, -1, -1, const [115], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"on", 4325890, 23, -1, 71, 72, const [116], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 1, 23, -1, 23, 23, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 24, null, -1, -1, const [117], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"on", 4325378, 24, -1, 71, 72, const [118], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 1, 24, -1, 24, 24, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 25, null, -1, -1, const [119], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 25, -1, 25, 25, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"emitChange", 262146, null, null, -1, -1, const [120], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onChange", 4325379, null, -1, 73, 74, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 26, null, -1, -1, const [121], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 0, 26, -1, 26, 26, const [122], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 27, -1, 75, 75, const [123, 124, 125], const prefix0.InjectAnnotation(), const [deprecated]), new r.MethodMirrorImpl(r"render", 4325378, 27, -1, 53, 54, const [126, 127, 128, 129], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 43, 47, 47, 267), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 43, 47, 47, 268), new r.MethodMirrorImpl(r"", 0, 27, -1, 27, 27, const [130, 131], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 28, -1, 75, 75, const [133, 134, 135, 136], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 44, 35, 35, 271), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 44, 35, 35, 272), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 45, 35, 35, 273), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 45, 35, 35, 274), new r.MethodMirrorImpl(r"", 0, 28, -1, 28, 28, const [137, 138], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"[]=", 262146, 29, null, -1, -1, const [141, 142], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"[]", 2, 29, -1, -1, -1, const [143], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"add", 262146, 29, null, -1, -1, const [144], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"addAll", 262146, 29, null, -1, -1, const [145], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"addIfAbsent", 262146, 29, null, -1, -1, const [146], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"insert", 262146, 29, null, -1, -1, const [147, 148], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"clear", 262146, 29, null, -1, -1, const [], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"removeRange", 262146, 29, null, -1, -1, const [149, 150], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"remove", 131074, 29, -1, 47, 47, const [151], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"removeWhere", 262146, 29, null, -1, -1, const [152], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"retainWhere", 262146, 29, null, -1, -1, const [153], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"filter", 262146, 29, null, -1, -1, const [154], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"resetFilter", 262146, 29, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"update", 131074, 29, -1, 47, 47, const [155, 156], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"where", 4325378, 29, 29, 76, 29, const [157], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onChange", 4325379, 29, -1, 77, 78, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"length", 131075, 29, -1, 41, 41, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"length=", 262148, 29, null, -1, -1, const [159], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 29, -1, 76, 29, const [158], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 35, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"elementAt", 2, null, -1, -1, -1, const [160], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"followedBy", 4325378, null, -1, 79, 80, const [161], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"forEach", 262146, null, null, -1, -1, const [162], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"contains", 131074, null, -1, 47, 47, const [163], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"every", 131074, null, -1, 47, 47, const [164], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"any", 131074, null, -1, 47, 47, const [165], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"firstWhere", 2, null, -1, -1, -1, const [166, 167], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"lastWhere", 2, null, -1, -1, -1, const [168, 169], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"singleWhere", 2, null, -1, -1, -1, const [170, 171], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"join", 131074, null, -1, 35, 35, const [172], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"whereType", 4325378, null, -1, 81, 82, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"map", 4325378, null, -1, 83, 84, const [173], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"expand", 4325378, null, -1, 85, 86, const [174], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"reduce", 2, null, -1, -1, -1, const [175], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fold", 2, null, -1, -1, -1, const [176, 177], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"skip", 4325378, null, -1, 79, 80, const [178], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"skipWhile", 4325378, null, -1, 79, 80, const [179], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"take", 4325378, null, -1, 79, 80, const [180], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"takeWhile", 4325378, null, -1, 79, 80, const [181], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"toList", 4325378, null, -1, 87, 88, const [182], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"toSet", 4325378, null, -1, 89, 90, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"cast", 4325378, null, -1, 91, 92, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"removeLast", 2, null, -1, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"sort", 262146, null, null, -1, -1, const [183], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"shuffle", 262146, null, null, -1, -1, const [184], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"asMap", 4325378, null, -1, 93, 94, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"+", 4325378, null, -1, 87, 88, const [185], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"sublist", 4325378, null, -1, 87, 88, const [186, 187], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"getRange", 4325378, null, -1, 79, 80, const [188, 189], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fillRange", 262146, null, null, -1, -1, const [190, 191, 192], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"setRange", 262146, null, null, -1, -1, const [193, 194, 195, 196], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"replaceRange", 262146, null, null, -1, -1, const [197, 198, 199], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"indexOf", 131074, null, -1, 41, 41, const [200, 201], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"indexWhere", 131074, null, -1, 41, 41, const [202, 203], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"lastIndexOf", 131074, null, -1, 41, 41, const [204, 205], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"lastIndexWhere", 131074, null, -1, 41, 41, const [206, 207], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"removeAt", 2, null, -1, -1, -1, const [208], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"insertAll", 262146, null, null, -1, -1, const [209, 210], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"setAll", 262146, null, null, -1, -1, const [211, 212], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"iterator", 4325379, null, -1, 95, 96, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"isEmpty", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"isNotEmpty", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"first", 3, null, -1, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"first=", 262148, null, null, -1, -1, const [213], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"last", 3, null, -1, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"last=", 262148, null, null, -1, -1, const [214], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"single", 3, null, -1, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"reversed", 4325379, null, -1, 79, 80, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attached", 262146, 30, null, -1, -1, const [], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"refresh", 262146, 30, null, -1, -1, const [], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"fromElement", 0, 30, -1, 30, 30, const [215, 216], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"createFor", 131074, 31, -1, 97, 97, const [217], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"setBuilderFor", 262146, 31, null, -1, -1, const [218, 219], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 31, -1, 31, 31, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"translate", 131586, 32, -1, 35, 35, const [220], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 32, -1, 35, 35, const [221], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 32, -1, 32, 32, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"setTranslation", 262146, 33, null, -1, -1, const [222, 223], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"remove", 262146, 33, null, -1, -1, const [224], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"translate", 131074, 33, -1, 35, 35, const [225], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 33, -1, 35, 35, const [226], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"translateStatusCode", 131074, 33, -1, 35, 35, const [227], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"locale", 131075, 33, -1, 35, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"locale=", 262148, 33, null, -1, -1, const [231], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"withTranslation", 0, 33, -1, 33, 33, const [228, 229], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"withTranslations", 0, 33, -1, 33, 33, const [230], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 33, -1, 33, 33, const [], const prefix0.InjectAnnotation(), const [])], [new r.ParameterMirrorImpl(r"other", 16390, 48, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 50, const prefix0.InjectAnnotation(), -1, 98, 98, const [], null, null), new r.ParameterMirrorImpl(r"text", 33798, 53, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"title", 48134, 53, const prefix0.InjectAnnotation(), -1, 35, 35, const [], "", #title), new r.ParameterMirrorImpl(r"okButton", 48134, 53, const prefix0.InjectAnnotation(), -1, 35, 35, const [], "OK", #okButton), new r.ParameterMirrorImpl(r"_title", 32870, 56, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"_text", 32870, 58, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"_okButton", 32870, 60, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"_template", 32870, 62, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"timeout", 46086, 67, const prefix0.InjectAnnotation(), -1, 99, 99, const [], null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 67, const prefix0.InjectAnnotation(), null, 100, 100, const [], null, #onDialogInit), new r.ParameterMirrorImpl(r"status", 33798, 68, const prefix0.InjectAnnotation(), -1, 101, 101, const [], null, null), new r.ParameterMirrorImpl(r"selector", 33798, 69, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"_dialog", 32870, 71, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"text", 33798, 77, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"title", 48134, 77, const prefix0.InjectAnnotation(), -1, 35, 35, const [], "", #title), new r.ParameterMirrorImpl(r"yesButton", 48134, 77, const prefix0.InjectAnnotation(), -1, 35, 35, const [], "Yes", #yesButton), new r.ParameterMirrorImpl(r"noButton", 48134, 77, const prefix0.InjectAnnotation(), -1, 35, 35, const [], "No", #noButton), new r.ParameterMirrorImpl(r"_template", 32870, 81, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"_title", 32870, 83, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"_text", 32870, 85, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"_yesButton", 32870, 87, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"_noButton", 32870, 89, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"text", 33798, 92, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"confirmButton", 48134, 92, const prefix0.InjectAnnotation(), -1, 35, 35, const [], "", #confirmButton), new r.ParameterMirrorImpl(r"timeout", 45062, 93, const prefix0.InjectAnnotation(), -1, 99, 99, const [], null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 93, const prefix0.InjectAnnotation(), null, 102, 102, const [], null, #onDialogInit), new r.ParameterMirrorImpl(r"_template", 32870, 97, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"_text", 32870, 102, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"_confirmButton", 32870, 104, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"_timeout", 32870, 106, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 110, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"type", 48134, 110, const prefix0.InjectAnnotation(), -1, 43, 43, const [], prefix2.NotificationType.INFO, #type), new r.ParameterMirrorImpl(r"title", 48134, 110, const prefix0.InjectAnnotation(), -1, 35, 35, const [], "", #title), new r.ParameterMirrorImpl(r"subtitle", 48134, 110, const prefix0.InjectAnnotation(), -1, 35, 35, const [], "", #subtitle), new r.ParameterMirrorImpl(r"timeout", 46086, 111, const prefix0.InjectAnnotation(), -1, 99, 99, const [], null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 111, const prefix0.InjectAnnotation(), null, 103, 103, const [], null, #onDialogInit), new r.ParameterMirrorImpl(r"_type", 32870, 116, const prefix0.InjectAnnotation(), -1, 43, 43, const [], null, null), new r.ParameterMirrorImpl(r"_title", 32870, 118, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"_subtitle", 32870, 120, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"_content", 32870, 122, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"_timeout", 32870, 124, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"_template", 32870, 126, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"enabled", 33798, 130, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"timeout", 46086, 133, const prefix0.InjectAnnotation(), -1, 99, 99, const [], null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 133, const prefix0.InjectAnnotation(), null, 103, 103, const [], null, #onDialogInit), new r.ParameterMirrorImpl(r"event", 33798, 136, const prefix0.InjectAnnotation(), -1, 104, 104, const [], null, null), new r.ParameterMirrorImpl(r"event", 33798, 137, const prefix0.InjectAnnotation(), -1, 104, 104, const [], null, null), new r.ParameterMirrorImpl(r"event", 33798, 138, const prefix0.InjectAnnotation(), -1, 104, 104, const [], null, null), new r.ParameterMirrorImpl(r"event", 33798, 139, const prefix0.InjectAnnotation(), -1, 104, 104, const [], null, null), new r.ParameterMirrorImpl(r"event", 33798, 140, const prefix0.InjectAnnotation(), -1, 104, 104, const [], null, null), new r.ParameterMirrorImpl(r"event", 33798, 141, const prefix0.InjectAnnotation(), -1, 104, 104, const [], null, null), new r.ParameterMirrorImpl(r"_dateTime", 32870, 143, const prefix0.InjectAnnotation(), -1, 44, 44, const [], null, null), new r.ParameterMirrorImpl(r"_yearFrom", 32870, 145, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"_yearTo", 32870, 147, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"_template", 32870, 149, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"timeout", 46086, 154, const prefix0.InjectAnnotation(), -1, 99, 99, const [], null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 154, const prefix0.InjectAnnotation(), null, 103, 103, const [], null, #onDialogInit), new r.ParameterMirrorImpl(r"event", 33798, 157, const prefix0.InjectAnnotation(), -1, 104, 104, const [], null, null), new r.ParameterMirrorImpl(r"event", 33798, 158, const prefix0.InjectAnnotation(), -1, 104, 104, const [], null, null), new r.ParameterMirrorImpl(r"event", 33798, 159, const prefix0.InjectAnnotation(), -1, 104, 104, const [], null, null), new r.ParameterMirrorImpl(r"event", 33798, 160, const prefix0.InjectAnnotation(), -1, 104, 104, const [], null, null), new r.ParameterMirrorImpl(r"_dateTime", 32870, 162, const prefix0.InjectAnnotation(), -1, 44, 44, const [], null, null), new r.ParameterMirrorImpl(r"_template", 32870, 164, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 168, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 171, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 171, const prefix0.InjectAnnotation(), -1, 45, 45, const [], null, null), new r.ParameterMirrorImpl(r"dialog", 33798, 170, const prefix0.InjectAnnotation(), -1, 70, 70, const [], null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 173, const prefix0.InjectAnnotation(), -1, 105, 106, const [], null, null), new r.ParameterMirrorImpl(r"selector", 33798, 176, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"logError", 48134, 176, const prefix0.InjectAnnotation(), -1, 47, 47, const [], true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 177, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"wait", 48134, 177, const prefix0.InjectAnnotation(), -1, 99, 99, const [], const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 177, const prefix0.InjectAnnotation(), -1, 41, 41, const [], 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 181, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 188, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 191, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 191, const prefix0.InjectAnnotation(), -1, 45, 45, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 189, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 192, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 199, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 199, const prefix0.InjectAnnotation(), -1, 45, 45, const [], null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 195, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 197, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 200, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 215, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 215, const prefix0.InjectAnnotation(), -1, 45, 45, const [], null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 207, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 209, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"v", 33798, 212, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 214, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 216, const prefix0.InjectAnnotation(), -1, 46, 46, const [], null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 216, const prefix0.InjectAnnotation(), -1, 46, 46, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 224, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"option1", 39942, 224, const prefix0.InjectAnnotation(), -1, 35, 35, const [], "Yes", null), new r.ParameterMirrorImpl(r"option2", 39942, 224, const prefix0.InjectAnnotation(), -1, 35, 35, const [], "No", null), new r.ParameterMirrorImpl(r"value", 17414, 226, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 227, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 229, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 230, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicValue", 17414, 232, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicFractionSize", 21510, 232, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 233, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"fractionSize", 21510, 233, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 235, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 236, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 242, const prefix0.InjectAnnotation(), -1, 46, 46, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 242, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 242, const prefix0.InjectAnnotation(), -1, 47, 47, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"parent", 33798, 243, const prefix0.InjectAnnotation(), -1, 46, 46, const [], null, null), new r.ParameterMirrorImpl(r"reference", 33798, 243, const prefix0.InjectAnnotation(), -1, 46, 46, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 243, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 245, const prefix0.InjectAnnotation(), -1, 70, 70, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 245, const prefix0.InjectAnnotation(), -1, 46, 46, const [], null, null), new r.ParameterMirrorImpl(r"cntxt", 33798, 250, const prefix0.InjectAnnotation(), -1, 70, 70, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 253, const prefix0.InjectAnnotation(), -1, 107, 107, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 254, const prefix0.InjectAnnotation(), -1, 108, 108, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 256, const prefix0.InjectAnnotation(), -1, 107, 107, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 257, const prefix0.InjectAnnotation(), -1, 108, 108, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 259, const prefix0.InjectAnnotation(), -1, 107, 107, const [], null, null), new r.ParameterMirrorImpl(r"action", 48134, 261, const prefix0.InjectAnnotation(), -1, 107, 107, const [], prefix8.UpdateViewAction, #action), new r.ParameterMirrorImpl(r"action", 33798, 263, const prefix0.InjectAnnotation(), -1, 107, 107, const [], null, null), new r.ParameterMirrorImpl(r"_actionbus", 32806, 264, const prefix0.InjectAnnotation(), 23, 23, 23, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 265, const prefix0.InjectAnnotation(), -1, 46, 46, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 265, const prefix0.InjectAnnotation(), -1, 70, 70, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 265, const prefix0.InjectAnnotation(), null, 109, 109, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 266, const prefix0.InjectAnnotation(), -1, 46, 46, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 266, const prefix0.InjectAnnotation(), -1, 70, 70, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 266, const prefix0.InjectAnnotation(), null, 109, 109, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 266, const prefix0.InjectAnnotation(), -1, 47, 47, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"_renderer", 32806, 269, const prefix0.InjectAnnotation(), 20, 20, 20, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 269, const prefix0.InjectAnnotation(), 21, 21, 21, const [], null, null), new r.ParameterMirrorImpl(r"_appendNewNodes", 32870, 268, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 270, const prefix0.InjectAnnotation(), -1, 46, 46, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 270, const prefix0.InjectAnnotation(), -1, 70, 70, const [], null, null), new r.ParameterMirrorImpl(r"items", 2130950, 270, const prefix0.InjectAnnotation(), -1, 110, 111, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 270, const prefix0.InjectAnnotation(), null, 109, 109, const [], null, null), new r.ParameterMirrorImpl(r"_renderer", 32806, 275, const prefix0.InjectAnnotation(), 20, 20, 20, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 275, const prefix0.InjectAnnotation(), 21, 21, 21, const [], null, null), new r.ParameterMirrorImpl(r"_listTag", 32870, 272, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"_itemTag", 32870, 274, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"index", 32774, 276, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"value", 6, 276, const prefix0.InjectAnnotation(), null, -1, -1, const [], null, null), new r.ParameterMirrorImpl(r"index", 32774, 277, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"value", 1030, 278, const prefix0.InjectAnnotation(), null, -1, -1, const [], null, null), new r.ParameterMirrorImpl(r"all", 2129926, 279, const prefix0.InjectAnnotation(), -1, 112, 113, const [], null, null), new r.ParameterMirrorImpl(r"value", 1030, 280, const prefix0.InjectAnnotation(), null, -1, -1, const [], null, null), new r.ParameterMirrorImpl(r"index", 32774, 281, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"element", 6, 281, const prefix0.InjectAnnotation(), null, -1, -1, const [], null, null), new r.ParameterMirrorImpl(r"start", 32774, 283, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"end", 32774, 283, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 284, const prefix0.InjectAnnotation(), -1, 70, 70, const [], null, null), new r.ParameterMirrorImpl(r"test", 6, 285, const prefix0.InjectAnnotation(), null, 114, 114, const [], null, null), new r.ParameterMirrorImpl(r"test", 6, 286, const prefix0.InjectAnnotation(), null, 114, 114, const [], null, null), new r.ParameterMirrorImpl(r"test", 6, 287, const prefix0.InjectAnnotation(), null, 114, 114, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 289, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"item", 1030, 289, const prefix0.InjectAnnotation(), null, -1, -1, const [], null, null), new r.ParameterMirrorImpl(r"test", 6, 290, const prefix0.InjectAnnotation(), null, 114, 114, const [], null, null), new r.ParameterMirrorImpl(r"updateCallback", 13318, 294, const prefix0.InjectAnnotation(), null, 115, 115, const [], null, #updateCallback), new r.ParameterMirrorImpl(r"length", 32774, 293, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"index", 32774, 296, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"other", 2129926, 297, const prefix0.InjectAnnotation(), -1, 79, 80, const [], null, null), new r.ParameterMirrorImpl(r"action", 6, 298, const prefix0.InjectAnnotation(), null, 116, 116, const [], null, null), new r.ParameterMirrorImpl(r"element", 32774, 299, const prefix0.InjectAnnotation(), -1, 70, 70, const [], null, null), new r.ParameterMirrorImpl(r"test", 6, 300, const prefix0.InjectAnnotation(), null, 117, 117, const [], null, null), new r.ParameterMirrorImpl(r"test", 6, 301, const prefix0.InjectAnnotation(), null, 117, 117, const [], null, null), new r.ParameterMirrorImpl(r"test", 6, 302, const prefix0.InjectAnnotation(), null, 117, 117, const [], null, null), new r.ParameterMirrorImpl(r"orElse", 12294, 302, const prefix0.InjectAnnotation(), null, 118, 118, const [], null, #orElse), new r.ParameterMirrorImpl(r"test", 6, 303, const prefix0.InjectAnnotation(), null, 117, 117, const [], null, null), new r.ParameterMirrorImpl(r"orElse", 12294, 303, const prefix0.InjectAnnotation(), null, 118, 118, const [], null, #orElse), new r.ParameterMirrorImpl(r"test", 6, 304, const prefix0.InjectAnnotation(), null, 117, 117, const [], null, null), new r.ParameterMirrorImpl(r"orElse", 12294, 304, const prefix0.InjectAnnotation(), null, 118, 118, const [], null, #orElse), new r.ParameterMirrorImpl(r"separator", 38918, 305, const prefix0.InjectAnnotation(), -1, 35, 35, const [], "", null), new r.ParameterMirrorImpl(r"f", 6, 307, const prefix0.InjectAnnotation(), null, 119, 119, const [], null, null), new r.ParameterMirrorImpl(r"f", 6, 308, const prefix0.InjectAnnotation(), null, 120, 120, const [], null, null), new r.ParameterMirrorImpl(r"combine", 6, 309, const prefix0.InjectAnnotation(), null, 121, 121, const [], null, null), new r.ParameterMirrorImpl(r"initialValue", 6, 310, const prefix0.InjectAnnotation(), null, -1, -1, const [], null, null), new r.ParameterMirrorImpl(r"combine", 6, 310, const prefix0.InjectAnnotation(), null, 122, 122, const [], null, null), new r.ParameterMirrorImpl(r"count", 32774, 311, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"test", 6, 312, const prefix0.InjectAnnotation(), null, 117, 117, const [], null, null), new r.ParameterMirrorImpl(r"count", 32774, 313, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"test", 6, 314, const prefix0.InjectAnnotation(), null, 117, 117, const [], null, null), new r.ParameterMirrorImpl(r"growable", 47110, 315, const prefix0.InjectAnnotation(), -1, 47, 47, const [], true, #growable), new r.ParameterMirrorImpl(r"compare", 4102, 319, const prefix0.InjectAnnotation(), null, 123, 123, const [], null, null), new r.ParameterMirrorImpl(r"random", 36870, 320, const prefix0.InjectAnnotation(), -1, 124, 124, const [], null, null), new r.ParameterMirrorImpl(r"other", 2129926, 322, const prefix0.InjectAnnotation(), -1, 87, 88, const [], null, null), new r.ParameterMirrorImpl(r"start", 32774, 323, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"end", 36870, 323, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"start", 32774, 324, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"end", 32774, 324, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"start", 32774, 325, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"end", 32774, 325, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"fill", 4102, 325, const prefix0.InjectAnnotation(), null, -1, -1, const [], null, null), new r.ParameterMirrorImpl(r"start", 32774, 326, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"end", 32774, 326, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"iterable", 2129926, 326, const prefix0.InjectAnnotation(), -1, 79, 80, const [], null, null), new r.ParameterMirrorImpl(r"skipCount", 38918, 326, const prefix0.InjectAnnotation(), -1, 41, 41, const [], 0, null), new r.ParameterMirrorImpl(r"start", 32774, 327, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"end", 32774, 327, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"newContents", 2129926, 327, const prefix0.InjectAnnotation(), -1, 79, 80, const [], null, null), new r.ParameterMirrorImpl(r"element", 32774, 328, const prefix0.InjectAnnotation(), -1, 70, 70, const [], null, null), new r.ParameterMirrorImpl(r"start", 38918, 328, const prefix0.InjectAnnotation(), -1, 41, 41, const [], 0, null), new r.ParameterMirrorImpl(r"test", 6, 329, const prefix0.InjectAnnotation(), null, 117, 117, const [], null, null), new r.ParameterMirrorImpl(r"start", 38918, 329, const prefix0.InjectAnnotation(), -1, 41, 41, const [], 0, null), new r.ParameterMirrorImpl(r"element", 32774, 330, const prefix0.InjectAnnotation(), -1, 70, 70, const [], null, null), new r.ParameterMirrorImpl(r"start", 36870, 330, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"test", 6, 331, const prefix0.InjectAnnotation(), null, 117, 117, const [], null, null), new r.ParameterMirrorImpl(r"start", 36870, 331, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"index", 32774, 332, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"index", 32774, 333, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"iterable", 2129926, 333, const prefix0.InjectAnnotation(), -1, 79, 80, const [], null, null), new r.ParameterMirrorImpl(r"index", 32774, 334, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"iterable", 2129926, 334, const prefix0.InjectAnnotation(), -1, 79, 80, const [], null, null), new r.ParameterMirrorImpl(r"value", 6, 339, const prefix0.InjectAnnotation(), null, -1, -1, const [], null, null), new r.ParameterMirrorImpl(r"value", 6, 341, const prefix0.InjectAnnotation(), null, -1, -1, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 346, const prefix0.InjectAnnotation(), -1, 40, 40, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 346, const prefix0.InjectAnnotation(), -1, 45, 45, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 347, const prefix0.InjectAnnotation(), -1, 46, 46, const [], null, null), new r.ParameterMirrorImpl(r"type", 33798, 348, const prefix0.InjectAnnotation(), -1, 50, 50, const [], null, null), new r.ParameterMirrorImpl(r"builder", 1030, 348, const prefix0.InjectAnnotation(), null, 125, 125, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 350, const prefix0.InjectAnnotation(), -1, 126, 126, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 351, const prefix0.InjectAnnotation(), -1, 126, 126, const [], null, null), new r.ParameterMirrorImpl(r"translation", 2130950, 353, const prefix0.InjectAnnotation(), -1, 59, 60, const [], null, null), new r.ParameterMirrorImpl(r"locale", 48134, 353, const prefix0.InjectAnnotation(), -1, 35, 35, const [], "en", #locale), new r.ParameterMirrorImpl(r"locale", 33798, 354, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 355, const prefix0.InjectAnnotation(), -1, 126, 126, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 356, const prefix0.InjectAnnotation(), -1, 126, 126, const [], null, null), new r.ParameterMirrorImpl(r"status", 33798, 357, const prefix0.InjectAnnotation(), -1, 41, 41, const [], null, null), new r.ParameterMirrorImpl(r"translation", 2130950, 360, const prefix0.InjectAnnotation(), -1, 59, 60, const [], null, null), new r.ParameterMirrorImpl(r"locale", 48134, 360, const prefix0.InjectAnnotation(), -1, 35, 35, const [], "en", #locale), new r.ParameterMirrorImpl(r"translations", 2130950, 361, const prefix0.InjectAnnotation(), -1, 127, 128, const [], null, null), new r.ParameterMirrorImpl(r"locale", 33798, 359, const prefix0.InjectAnnotation(), -1, 35, 35, const [], null, null)], [prefix1.Application, prefix2.MaterialAlertDialog, prefix2.MdlConfirmDialog, prefix2.MaterialSnackbar, prefix2.MaterialNotification, prefix2.MaterialDatePicker, prefix2.MaterialTimePicker, prefix2.MaterialDialogComponent, prefix4.MaterialBadge, prefix4.MaterialButton, prefix4.MaterialCheckbox, prefix5.Formatter, prefix5.FallbackFormatter, prefix5.ChooseFormatter, prefix5.DecoratorFormatter, prefix5.LowerCaseFormatter, prefix5.NumberFormatter, prefix5.UpperCaseFormatter, prefix6.MaterialApplication, prefix6.RefreshableComponent, prefix7.DomRenderer, prefix7.EventCompiler, prefix7.RootScope, prefix8.ActionBus, prefix8.ActionBusImpl, prefix8.DataStore, prefix8.FireOnlyDataStore, prefix9.TemplateRenderer, prefix9.ListRenderer, prefix10.ObservableList, prefix11.MaterialModel, prefix11.ModelObserverFactory, prefix12.Translator, prefix12.L10NTranslate, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), String, const m.TypeValue>().type, Map, const m.TypeValue>>().type, List, prefix15.HtmlElement, int, prefix2.SnackbarPosition, prefix2.NotificationType, DateTime, prefix0.Injector, prefix15.Element, bool, const m.TypeValue>().type, Map, Type, const m.TypeValue>().type, prefix14.Future, const m.TypeValue>().type, prefix14.Future, prefix7.Scope, const r.FakeType(r"dart.async.FutureOr"), prefix14.FutureOr, prefix15.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix15.ElementStream, const m.TypeValue>().type, prefix15.ElementStream, prefix6.MdlComponent, prefix15.CheckboxInputElement, prefix5.MaterialFormatter, const m.TypeValue>().type, prefix14.Future, Object, const m.TypeValue>().type, prefix14.Stream, const m.TypeValue>>().type, prefix14.Stream, prefix9.Renderer, const r.FakeType(r"mdlobservable.ObservableList"), const r.FakeType(r"dart.async.Stream>"), prefix14.Stream, const r.FakeType(r"dart.core.Iterable"), Iterable, const r.FakeType(r"dart.core.Iterable"), Iterable, const r.FakeType(r"dart.core.Iterable"), Iterable, const r.FakeType(r"dart.core.Iterable"), Iterable, const r.FakeType(r"dart.core.List"), List, const r.FakeType(r"dart.core.Set"), Set, const r.FakeType(r"dart.core.List"), List, const r.FakeType(r"dart.core.Map"), Map, const r.FakeType(r"dart.core.Iterator"), Iterator, prefix11.ModelObserver, Invocation, Duration, const m.TypeValue Function(String)>().type, prefix2.MdlDialogStatus, const m.TypeValue Function(String)>().type, const m.TypeValue().type, prefix15.Event, const m.TypeValue>().type, prefix14.StreamSubscription, prefix8.Action, prefix8.ActionName, const m.TypeValue().type, const m.TypeValue>().type, List, const r.FakeType(r"dart.core.Iterable"), Iterable, const m.TypeValue().type, const m.TypeValue().type, const m.TypeValue().type, const m.TypeValue().type, const m.TypeValue().type, const m.TypeValue().type, const m.TypeValue().type, const m.TypeValue().type, const m.TypeValue().type, const m.TypeValue().type, prefix16.Random, const m.TypeValue().type, prefix12.L10N, const m.TypeValue>>().type, Map], 35, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"run": (dynamic instance) => instance.run, r"lambdas": (dynamic instance) => instance.lambdas, r"eventStreams": (dynamic instance) => instance.eventStreams, r"show": (dynamic instance) => instance.show, r"close": (dynamic instance) => instance.close, r"query": (dynamic instance) => instance.query, r"dialog": (dynamic instance) => instance.dialog, r"id": (dynamic instance) => instance.id, r"hasTimer": (dynamic instance) => instance.hasTimer, r"hasNoTimer": (dynamic instance) => instance.hasNoTimer, r"isAutoCloseEnabled": (dynamic instance) => instance.isAutoCloseEnabled, r"scope": (dynamic instance) => instance.scope, r"call": (dynamic instance) => instance.call, r"onClose": (dynamic instance) => instance.onClose, r"title": (dynamic instance) => instance.title, r"text": (dynamic instance) => instance.text, r"okButton": (dynamic instance) => instance.okButton, r"template": (dynamic instance) => instance.template, r"hasTitle": (dynamic instance) => instance.hasTitle, r"onYes": (dynamic instance) => instance.onYes, r"onNo": (dynamic instance) => instance.onNo, r"yesButton": (dynamic instance) => instance.yesButton, r"noButton": (dynamic instance) => instance.noButton, r"position": (dynamic instance) => instance.position, r"confirmButton": (dynamic instance) => instance.confirmButton, r"timeout": (dynamic instance) => instance.timeout, r"waitingForConfirmation": (dynamic instance) => instance.waitingForConfirmation, r"hasConfirmButton": (dynamic instance) => instance.hasConfirmButton, r"type": (dynamic instance) => instance.type, r"subtitle": (dynamic instance) => instance.subtitle, r"content": (dynamic instance) => instance.content, r"hasSubTitle": (dynamic instance) => instance.hasSubTitle, r"hasContent": (dynamic instance) => instance.hasContent, r"autoClose": (dynamic instance) => instance.autoClose, r"onCancel": (dynamic instance) => instance.onCancel, r"onClickLeft": (dynamic instance) => instance.onClickLeft, r"onClickRight": (dynamic instance) => instance.onClickRight, r"onClickDay": (dynamic instance) => instance.onClickDay, r"onClickYear": (dynamic instance) => instance.onClickYear, r"onClickDate": (dynamic instance) => instance.onClickDate, r"onClickItemInYearList": (dynamic instance) => instance.onClickItemInYearList, r"dateTime": (dynamic instance) => instance.dateTime, r"yearFrom": (dynamic instance) => instance.yearFrom, r"yearTo": (dynamic instance) => instance.yearTo, r"year": (dynamic instance) => instance.year, r"date": (dynamic instance) => instance.date, r"month": (dynamic instance) => instance.month, r"onClickHour": (dynamic instance) => instance.onClickHour, r"onClickMinute": (dynamic instance) => instance.onClickMinute, r"onClickDialogBarHour": (dynamic instance) => instance.onClickDialogBarHour, r"onClickDialogBarMinute": (dynamic instance) => instance.onClickDialogBarMinute, r"hour": (dynamic instance) => instance.hour, r"minute": (dynamic instance) => instance.minute, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"value": (dynamic instance) => instance.value, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label, r"number": (dynamic instance) => instance.number, r"decorate": (dynamic instance) => instance.decorate, r"uppercase": (dynamic instance) => instance.uppercase, r"lowercase": (dynamic instance) => instance.lowercase, r"choose": (dynamic instance) => instance.choose, r"render": (dynamic instance) => instance.render, r"renderBefore": (dynamic instance) => instance.renderBefore, r"compileElement": (dynamic instance) => instance.compileElement, r"context": (dynamic instance) => instance.context, r"parentContext": (dynamic instance) => instance.parentContext, r"rootContext": (dynamic instance) => instance.rootContext, r"fire": (dynamic instance) => instance.fire, r"on": (dynamic instance) => instance.on, r"emitChange": (dynamic instance) => instance.emitChange, r"onChange": (dynamic instance) => instance.onChange, r"appendNewNodes": (dynamic instance) => instance.appendNewNodes, r"listTag": (dynamic instance) => instance.listTag, r"itemTag": (dynamic instance) => instance.itemTag, r"elementAt": (dynamic instance) => instance.elementAt, r"followedBy": (dynamic instance) => instance.followedBy, r"forEach": (dynamic instance) => instance.forEach, r"contains": (dynamic instance) => instance.contains, r"every": (dynamic instance) => instance.every, r"any": (dynamic instance) => instance.any, r"firstWhere": (dynamic instance) => instance.firstWhere, r"lastWhere": (dynamic instance) => instance.lastWhere, r"singleWhere": (dynamic instance) => instance.singleWhere, r"join": (dynamic instance) => instance.join, r"where": (dynamic instance) => instance.where, r"whereType": (dynamic instance) => instance.whereType, r"map": (dynamic instance) => instance.map, r"expand": (dynamic instance) => instance.expand, r"reduce": (dynamic instance) => instance.reduce, r"fold": (dynamic instance) => instance.fold, r"skip": (dynamic instance) => instance.skip, r"skipWhile": (dynamic instance) => instance.skipWhile, r"take": (dynamic instance) => instance.take, r"takeWhile": (dynamic instance) => instance.takeWhile, r"toList": (dynamic instance) => instance.toList, r"toSet": (dynamic instance) => instance.toSet, r"add": (dynamic instance) => instance.add, r"addAll": (dynamic instance) => instance.addAll, r"remove": (dynamic instance) => instance.remove, r"removeWhere": (dynamic instance) => instance.removeWhere, r"retainWhere": (dynamic instance) => instance.retainWhere, r"clear": (dynamic instance) => instance.clear, r"cast": (dynamic instance) => instance.cast, r"removeLast": (dynamic instance) => instance.removeLast, r"sort": (dynamic instance) => instance.sort, r"shuffle": (dynamic instance) => instance.shuffle, r"asMap": (dynamic instance) => instance.asMap, r"+": (dynamic instance) => (x) => instance + x, r"sublist": (dynamic instance) => instance.sublist, r"getRange": (dynamic instance) => instance.getRange, r"removeRange": (dynamic instance) => instance.removeRange, r"fillRange": (dynamic instance) => instance.fillRange, r"setRange": (dynamic instance) => instance.setRange, r"replaceRange": (dynamic instance) => instance.replaceRange, r"indexOf": (dynamic instance) => instance.indexOf, r"indexWhere": (dynamic instance) => instance.indexWhere, r"lastIndexOf": (dynamic instance) => instance.lastIndexOf, r"lastIndexWhere": (dynamic instance) => instance.lastIndexWhere, r"insert": (dynamic instance) => instance.insert, r"removeAt": (dynamic instance) => instance.removeAt, r"insertAll": (dynamic instance) => instance.insertAll, r"setAll": (dynamic instance) => instance.setAll, r"iterator": (dynamic instance) => instance.iterator, r"isEmpty": (dynamic instance) => instance.isEmpty, r"isNotEmpty": (dynamic instance) => instance.isNotEmpty, r"first": (dynamic instance) => instance.first, r"last": (dynamic instance) => instance.last, r"single": (dynamic instance) => instance.single, r"reversed": (dynamic instance) => instance.reversed, r"[]=": (dynamic instance) => (x, v) => instance[x] = v, r"[]": (dynamic instance) => (x) => instance[x], r"addIfAbsent": (dynamic instance) => instance.addIfAbsent, r"filter": (dynamic instance) => instance.filter, r"resetFilter": (dynamic instance) => instance.resetFilter, r"length": (dynamic instance) => instance.length, r"refresh": (dynamic instance) => instance.refresh, r"createFor": (dynamic instance) => instance.createFor, r"setBuilderFor": (dynamic instance) => instance.setBuilderFor, r"setTranslation": (dynamic instance) => instance.setTranslation, r"translate": (dynamic instance) => instance.translate, r"translateStatusCode": (dynamic instance) => instance.translateStatusCode, r"locale": (dynamic instance) => instance.locale}, {r"dialog=": (dynamic instance, value) => instance.dialog = value, r"title=": (dynamic instance, value) => instance.title = value, r"text=": (dynamic instance, value) => instance.text = value, r"okButton=": (dynamic instance, value) => instance.okButton = value, r"template=": (dynamic instance, value) => instance.template = value, r"yesButton=": (dynamic instance, value) => instance.yesButton = value, r"noButton=": (dynamic instance, value) => instance.noButton = value, r"confirmButton=": (dynamic instance, value) => instance.confirmButton = value, r"timeout=": (dynamic instance, value) => instance.timeout = value, r"type=": (dynamic instance, value) => instance.type = value, r"subtitle=": (dynamic instance, value) => instance.subtitle = value, r"content=": (dynamic instance, value) => instance.content = value, r"autoClose=": (dynamic instance, value) => instance.autoClose = value, r"dateTime=": (dynamic instance, value) => instance.dateTime = value, r"yearFrom=": (dynamic instance, value) => instance.yearFrom = value, r"yearTo=": (dynamic instance, value) => instance.yearTo = value, r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"parentScope=": (dynamic instance, value) => instance.parentScope = value, r"value=": (dynamic instance, value) => instance.value = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value, r"context=": (dynamic instance, value) => instance.context = value, r"appendNewNodes=": (dynamic instance, value) => instance.appendNewNodes = value, r"listTag=": (dynamic instance, value) => instance.listTag = value, r"itemTag=": (dynamic instance, value) => instance.itemTag = value, r"first=": (dynamic instance, value) => instance.first = value, r"last=": (dynamic instance, value) => instance.last = value, r"length=": (dynamic instance, value) => instance.length = value, r"locale=": (dynamic instance, value) => instance.locale = value}, [new r.LibraryMirrorImpl(r"", Uri.parse(r"reflectable://0/"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdldialog", Uri.parse(r"reflectable://1/mdldialog"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlcomponents", Uri.parse(r"reflectable://2/mdlcomponents"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlformatter", Uri.parse(r"reflectable://3/mdlformatter"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlcore", Uri.parse(r"reflectable://4/mdlcore"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlapplication", Uri.parse(r"reflectable://5/mdlapplication"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlflux", Uri.parse(r"reflectable://6/mdlflux"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdltemplate", Uri.parse(r"reflectable://7/mdltemplate"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlobservable", Uri.parse(r"reflectable://8/mdlobservable"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdldirective", Uri.parse(r"reflectable://9/mdldirective"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"l10n", Uri.parse(r"reflectable://10/l10n"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null)], []), const prefix3.MustacheMirrorsUsedAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"MaterialAlertDialog", r"mdldialog.MaterialAlertDialog", 7, 0, const prefix3.MustacheMirrorsUsedAnnotation(), const [0, 1, 2, 3, 37, 38, 47, 48], const [49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix2.MaterialAlertDialog() : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MdlConfirmDialog", r"mdldialog.MdlConfirmDialog", 7, 1, const prefix3.MustacheMirrorsUsedAnnotation(), const [7, 8, 9, 10, 11, 66, 67, 68, 79, 80], const [49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix2.MdlConfirmDialog() : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialSnackbar", r"mdldialog.MaterialSnackbar", 7, 2, const prefix3.MustacheMirrorsUsedAnnotation(), const [12, 13, 14, 15, 16, 17, 18, 19, 81, 82, 83, 96, 97, 98], const [49, 50, 51, 52, 53, 54, 55, 82, 57, 58, 59, 60, 61, 62, 63, 64, 65, 81, 83, 85, 86, 89, 90, 91, 92, 93, 94, 95, 96, 97], const [84, 87, 88], -1, {r"DEFAULT_CONFIRM_BUTTON": () => prefix2.MaterialSnackbar.DEFAULT_CONFIRM_BUTTON, r"LONG_DELAY": () => prefix2.MaterialSnackbar.LONG_DELAY, r"SHORT_DELAY": () => prefix2.MaterialSnackbar.SHORT_DELAY}, {}, {r"": (b) => () => b ? new prefix2.MaterialSnackbar() : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialNotification", r"mdldialog.MaterialNotification", 7, 3, const prefix3.MustacheMirrorsUsedAnnotation(), const [20, 21, 22, 23, 24, 25, 26, 27, 99, 100, 101, 116, 117, 118, 119, 120, 121], const [49, 50, 51, 52, 53, 54, 55, 100, 57, 58, 59, 60, 61, 62, 63, 64, 65, 99, 101, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120], const [102, 103], -1, {r"LONG_DELAY": () => prefix2.MaterialNotification.LONG_DELAY, r"SHORT_DELAY": () => prefix2.MaterialNotification.SHORT_DELAY}, {}, {r"": (b) => () => b ? new prefix2.MaterialNotification() : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialDatePicker", r"mdldialog.MaterialDatePicker", 7, 4, const prefix3.MustacheMirrorsUsedAnnotation(), const [28, 29, 30, 31, 122, 123, 124, 125, 126, 127, 128, 129, 130, 139, 140, 141, 142], const [49, 50, 51, 52, 53, 54, 55, 122, 57, 58, 59, 60, 61, 62, 63, 64, 65, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix2.MaterialDatePicker() : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialTimePicker", r"mdldialog.MaterialTimePicker", 7, 5, const prefix3.MustacheMirrorsUsedAnnotation(), const [32, 33, 143, 144, 145, 146, 147, 148, 149, 154, 155, 156], const [49, 50, 51, 52, 53, 54, 55, 143, 57, 58, 59, 60, 61, 62, 63, 64, 65, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix2.MaterialTimePicker() : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 6, const prefix3.MustacheMirrorsUsedAnnotation(), const [157, 158, 159, 160, 161, 162, 163, 164], const [49, 50, 51, 52, 53, 55, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 158, 159, 160, 161, 162, 163], const [157], -1, {r"widget": () => prefix4.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix4.MaterialButton.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 7, const prefix3.MustacheMirrorsUsedAnnotation(), const [181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196], const [49, 50, 51, 52, 53, 55, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 186, 176, 177, 178, 179, 180, 197, 182, 183, 184, 185, 187, 188, 189, 190, 191, 192, 193, 194, 195], const [181], -1, {r"widget": () => prefix4.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix4.MaterialCheckbox.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialModel", r"mdldirective.MaterialModel", 7, 8, const prefix3.MustacheMirrorsUsedAnnotation(), const [198, 199, 200], const [49, 50, 51, 52, 53, 55, 165, 166, 198, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 199], const [], -1, {}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix11.MaterialModel.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 9, const prefix3.MustacheMirrorsUsedAnnotation(), const [197], const [49, 50, 51, 52, 53, 55, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 197], const [], -1, const {}, const {}, const {}, -1, -1, const [-1], null, null)], [new r.VariableMirrorImpl(r"title", 32773, 0, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"text", 32773, 0, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"okButton", 32773, 0, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"template", 32773, 0, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"lambdas", 2130949, null, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 11, 12, null), new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 13, 14, null), new r.VariableMirrorImpl(r"dialog", 32773, null, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null), new r.VariableMirrorImpl(r"template", 32773, 1, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"title", 32773, 1, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"text", 32773, 1, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"yesButton", 32773, 1, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"noButton", 32773, 1, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"DEFAULT_CONFIRM_BUTTON", 33941, 2, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"template", 32773, 2, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"LONG_DELAY", 33941, 2, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 16, 16, null), new r.VariableMirrorImpl(r"SHORT_DELAY", 33941, 2, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 16, 16, null), new r.VariableMirrorImpl(r"position", 33797, 2, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 17, 17, null), new r.VariableMirrorImpl(r"text", 32773, 2, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"confirmButton", 32773, 2, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"timeout", 32773, 2, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 16, 16, null), new r.VariableMirrorImpl(r"LONG_DELAY", 33941, 3, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 16, 16, null), new r.VariableMirrorImpl(r"SHORT_DELAY", 33941, 3, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 16, 16, null), new r.VariableMirrorImpl(r"type", 32773, 3, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 18, 18, null), new r.VariableMirrorImpl(r"title", 32773, 3, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"subtitle", 32773, 3, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"content", 32773, 3, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"timeout", 32773, 3, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 16, 16, null), new r.VariableMirrorImpl(r"template", 32773, 3, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"dateTime", 32773, 4, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 19, 19, null), new r.VariableMirrorImpl(r"yearFrom", 32773, 4, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 16, 16, null), new r.VariableMirrorImpl(r"yearTo", 32773, 4, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 16, 16, null), new r.VariableMirrorImpl(r"template", 32773, 4, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"dateTime", 32773, 5, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 19, 19, null), new r.VariableMirrorImpl(r"template", 32773, 5, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 20, 20, null), new r.VariableMirrorImpl(r"element", 33797, null, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null), new r.MethodMirrorImpl(r"call", 131074, 0, 0, 0, 0, const [0, 1, 2], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClose", 262146, 0, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 0, 10, 10, 39), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 0, 10, 10, 40), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 1, 10, 10, 41), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 1, 10, 10, 42), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 2, 10, 10, 43), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 2, 10, 10, 44), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 3, 10, 10, 45), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 3, 10, 10, 46), new r.MethodMirrorImpl(r"hasTitle", 131075, 0, -1, 22, 22, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"", 0, 0, -1, 0, 0, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"==", 131074, null, -1, 22, 22, const [7], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 10, 10, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [8], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 16, 16, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 23, 23, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 4, 11, 12, 54), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 5, 13, 14, 55), new r.MethodMirrorImpl(r"show", 4325378, null, -1, 24, 25, const [9, 10], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"close", 4325378, null, -1, 26, 27, const [11], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"query", 131074, null, -1, 21, 21, const [12], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 6, 15, 15, 59), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 6, 15, 15, 60), new r.MethodMirrorImpl(r"id", 131075, null, -1, 10, 10, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hasTimer", 131075, null, -1, 22, 22, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hasNoTimer", 131075, null, -1, 22, 22, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"isAutoCloseEnabled", 131075, null, -1, 22, 22, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"scope", 131075, null, -1, 28, 28, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"call", 131074, 1, 1, 1, 1, const [14, 15, 16, 17], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onYes", 262146, 1, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onNo", 262146, 1, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 7, 10, 10, 69), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 7, 10, 10, 70), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 8, 10, 10, 71), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 8, 10, 10, 72), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 9, 10, 10, 73), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 9, 10, 10, 74), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 10, 10, 10, 75), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 10, 10, 10, 76), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 11, 10, 10, 77), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 11, 10, 10, 78), new r.MethodMirrorImpl(r"hasTitle", 131075, 1, -1, 22, 22, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"", 0, 1, -1, 1, 1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"call", 131074, 2, 2, 2, 2, const [23, 24], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"show", 4325378, 2, -1, 24, 25, const [25, 26], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClose", 262146, 2, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 12, 10, 10, 84), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 13, 10, 10, 85), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 13, 10, 10, 86), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 14, 16, 16, 87), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 15, 16, 16, 88), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 16, 17, 17, 89), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 17, 10, 10, 90), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 17, 10, 10, 91), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 18, 10, 10, 92), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 18, 10, 10, 93), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 19, 16, 16, 94), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 19, 16, 16, 95), new r.MethodMirrorImpl(r"waitingForConfirmation", 131075, 2, -1, 22, 22, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hasConfirmButton", 131075, 2, -1, 22, 22, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"", 0, 2, -1, 2, 2, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"call", 131074, 3, 3, 3, 3, const [31, 32, 33, 34], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"show", 4325378, 3, -1, 24, 25, const [35, 36], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClose", 262146, 3, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 20, 16, 16, 102), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 21, 16, 16, 103), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 22, 18, 18, 104), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 22, 18, 18, 105), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 23, 10, 10, 106), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 23, 10, 10, 107), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 24, 10, 10, 108), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 24, 10, 10, 109), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 25, 10, 10, 110), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 25, 10, 10, 111), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 26, 16, 16, 112), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 26, 16, 16, 113), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 27, 10, 10, 114), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 27, 10, 10, 115), new r.MethodMirrorImpl(r"hasTitle", 131075, 3, -1, 22, 22, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hasSubTitle", 131075, 3, -1, 22, 22, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hasContent", 131075, 3, -1, 22, 22, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"autoClose=", 262148, 3, null, -1, -1, const [43], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"autoClose", 131075, 3, -1, 22, 22, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"", 0, 3, -1, 3, 3, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"show", 4325378, 4, -1, 24, 25, const [44, 45], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClose", 262146, 4, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onCancel", 262146, 4, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickLeft", 262146, 4, null, -1, -1, const [46], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickRight", 262146, 4, null, -1, -1, const [47], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickDay", 262146, 4, null, -1, -1, const [48], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickYear", 262146, 4, null, -1, -1, const [49], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickDate", 262146, 4, null, -1, -1, const [50], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickItemInYearList", 262146, 4, null, -1, -1, const [51], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 28, 19, 19, 131), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 28, 19, 19, 132), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 29, 16, 16, 133), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 29, 16, 16, 134), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 30, 16, 16, 135), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 30, 16, 16, 136), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 31, 10, 10, 137), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 31, 10, 10, 138), new r.MethodMirrorImpl(r"year", 131075, 4, -1, 10, 10, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"date", 131075, 4, -1, 10, 10, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"month", 131075, 4, -1, 10, 10, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"", 0, 4, -1, 4, 4, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"show", 4325378, 5, -1, 24, 25, const [56, 57], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClose", 262146, 5, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onCancel", 262146, 5, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickHour", 262146, 5, null, -1, -1, const [58], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickMinute", 262146, 5, null, -1, -1, const [59], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickDialogBarHour", 262146, 5, null, -1, -1, const [60], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClickDialogBarMinute", 262146, 5, null, -1, -1, const [61], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 32, 19, 19, 150), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 32, 19, 19, 151), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 33, 10, 10, 152), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 33, 10, 10, 153), new r.MethodMirrorImpl(r"hour", 131075, 5, -1, 10, 10, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"minute", 131075, 5, -1, 10, 10, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"", 0, 5, -1, 5, 5, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"widget", 131090, 6, 6, 6, 6, const [64], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 6, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 6, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled=", 262148, 6, null, -1, -1, const [67], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled", 131075, 6, -1, 22, 22, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 6, null, -1, -1, const [68], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 6, -1, 10, 10, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 6, -1, 6, 6, const [65, 66], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [69], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"query", 131074, null, -1, 21, 21, const [70, 71], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"waitForChild", 4325378, null, -1, 29, 30, const [72, 73, 74], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 34, 20, 20, 171), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 35, 21, 21, 172), new r.ImplicitGetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 36, 22, 22, 173), new r.ImplicitSetterMirrorImpl(const prefix3.MustacheMirrorsUsedAnnotation(), 36, 22, 22, 174), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 21, 21, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 31, 31, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 32, 33, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 34, 35, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 36, 37, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 38, 38, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"widget", 131090, 7, 7, 7, 7, const [76], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 7, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 7, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"check", 262146, 7, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"uncheck", 262146, 7, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hub", 131075, 7, -1, 21, 21, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"inputElement", 131075, 7, -1, 39, 39, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked=", 262148, 7, null, -1, -1, const [79], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked", 131075, 7, -1, 22, 22, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled=", 262148, 7, null, -1, -1, const [80], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled", 131075, 7, -1, 22, 22, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label", 131075, 7, -1, 10, 10, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label=", 262148, 7, null, -1, -1, const [81], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 7, -1, 10, 10, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 7, null, -1, -1, const [82], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 7, -1, 7, 7, const [77, 78], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"formatterFor", 131074, null, -1, 40, 40, const [83, 84], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attached", 262146, 8, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"refresh", 262146, 8, null, -1, -1, const [], const prefix3.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 8, -1, 8, 8, const [85, 86], const prefix3.MustacheMirrorsUsedAnnotation(), null)], [new r.ParameterMirrorImpl(r"text", 33798, 37, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"title", 48134, 37, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, "", #title), new r.ParameterMirrorImpl(r"okButton", 48134, 37, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, "OK", #okButton), new r.ParameterMirrorImpl(r"_title", 32870, 40, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"_text", 32870, 42, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"_okButton", 32870, 44, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"_template", 32870, 46, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"other", 16390, 49, const prefix3.MustacheMirrorsUsedAnnotation(), null, null, null, null, null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 51, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 41, 41, null, null, null), new r.ParameterMirrorImpl(r"timeout", 46086, 56, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 42, 42, null, null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 56, const prefix3.MustacheMirrorsUsedAnnotation(), null, 43, 43, null, null, #onDialogInit), new r.ParameterMirrorImpl(r"status", 33798, 57, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 44, 44, null, null, null), new r.ParameterMirrorImpl(r"selector", 33798, 58, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"_dialog", 32870, 60, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"text", 33798, 66, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"title", 48134, 66, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, "", #title), new r.ParameterMirrorImpl(r"yesButton", 48134, 66, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, "Yes", #yesButton), new r.ParameterMirrorImpl(r"noButton", 48134, 66, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, "No", #noButton), new r.ParameterMirrorImpl(r"_template", 32870, 70, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"_title", 32870, 72, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"_text", 32870, 74, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"_yesButton", 32870, 76, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"_noButton", 32870, 78, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"text", 33798, 81, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"confirmButton", 48134, 81, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, "", #confirmButton), new r.ParameterMirrorImpl(r"timeout", 45062, 82, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 42, 42, null, null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 82, const prefix3.MustacheMirrorsUsedAnnotation(), null, 45, 45, null, null, #onDialogInit), new r.ParameterMirrorImpl(r"_template", 32870, 86, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"_text", 32870, 91, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"_confirmButton", 32870, 93, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"_timeout", 32870, 95, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 16, 16, null, null, null), new r.ParameterMirrorImpl(r"content", 33798, 99, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"type", 48134, 99, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 18, 18, null, prefix2.NotificationType.INFO, #type), new r.ParameterMirrorImpl(r"title", 48134, 99, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, "", #title), new r.ParameterMirrorImpl(r"subtitle", 48134, 99, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, "", #subtitle), new r.ParameterMirrorImpl(r"timeout", 46086, 100, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 42, 42, null, null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 100, const prefix3.MustacheMirrorsUsedAnnotation(), null, 46, 46, null, null, #onDialogInit), new r.ParameterMirrorImpl(r"_type", 32870, 105, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 18, 18, null, null, null), new r.ParameterMirrorImpl(r"_title", 32870, 107, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"_subtitle", 32870, 109, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"_content", 32870, 111, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"_timeout", 32870, 113, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 16, 16, null, null, null), new r.ParameterMirrorImpl(r"_template", 32870, 115, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"enabled", 33798, 119, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null, null, null), new r.ParameterMirrorImpl(r"timeout", 46086, 122, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 42, 42, null, null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 122, const prefix3.MustacheMirrorsUsedAnnotation(), null, 46, 46, null, null, #onDialogInit), new r.ParameterMirrorImpl(r"event", 33798, 125, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 47, 47, null, null, null), new r.ParameterMirrorImpl(r"event", 33798, 126, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 47, 47, null, null, null), new r.ParameterMirrorImpl(r"event", 33798, 127, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 47, 47, null, null, null), new r.ParameterMirrorImpl(r"event", 33798, 128, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 47, 47, null, null, null), new r.ParameterMirrorImpl(r"event", 33798, 129, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 47, 47, null, null, null), new r.ParameterMirrorImpl(r"event", 33798, 130, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 47, 47, null, null, null), new r.ParameterMirrorImpl(r"_dateTime", 32870, 132, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 19, 19, null, null, null), new r.ParameterMirrorImpl(r"_yearFrom", 32870, 134, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 16, 16, null, null, null), new r.ParameterMirrorImpl(r"_yearTo", 32870, 136, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 16, 16, null, null, null), new r.ParameterMirrorImpl(r"_template", 32870, 138, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"timeout", 46086, 143, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 42, 42, null, null, #timeout), new r.ParameterMirrorImpl(r"onDialogInit", 12294, 143, const prefix3.MustacheMirrorsUsedAnnotation(), null, 46, 46, null, null, #onDialogInit), new r.ParameterMirrorImpl(r"event", 33798, 146, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 47, 47, null, null, null), new r.ParameterMirrorImpl(r"event", 33798, 147, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 47, 47, null, null, null), new r.ParameterMirrorImpl(r"event", 33798, 148, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 47, 47, null, null, null), new r.ParameterMirrorImpl(r"event", 33798, 149, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 47, 47, null, null, null), new r.ParameterMirrorImpl(r"_dateTime", 32870, 151, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 19, 19, null, null, null), new r.ParameterMirrorImpl(r"_template", 32870, 153, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 157, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 164, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 164, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 20, 20, null, null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 160, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 162, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 166, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 48, 49, null, null, null), new r.ParameterMirrorImpl(r"selector", 33798, 169, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"logError", 48134, 169, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null, true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 170, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"wait", 48134, 170, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 42, 42, null, const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 170, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 16, 16, null, 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 174, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 181, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 196, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 196, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 20, 20, null, null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 188, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null, null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 190, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null, null, null), new r.ParameterMirrorImpl(r"v", 33798, 193, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 195, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 10, 10, null, null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 197, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 197, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 200, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 15, 15, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 200, const prefix3.MustacheMirrorsUsedAnnotation(), -1, 20, 20, null, null, null)], [prefix2.MaterialAlertDialog, prefix2.MdlConfirmDialog, prefix2.MaterialSnackbar, prefix2.MaterialNotification, prefix2.MaterialDatePicker, prefix2.MaterialTimePicker, prefix4.MaterialButton, prefix4.MaterialCheckbox, prefix11.MaterialModel, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), String, const m.TypeValue>().type, Map, const m.TypeValue>>().type, List, prefix15.HtmlElement, int, prefix2.SnackbarPosition, prefix2.NotificationType, DateTime, prefix0.Injector, prefix15.Element, bool, Type, const m.TypeValue>().type, prefix14.Future, const m.TypeValue>().type, prefix14.Future, prefix7.Scope, const r.FakeType(r"dart.async.FutureOr"), prefix14.FutureOr, prefix15.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix15.ElementStream, const m.TypeValue>().type, prefix15.ElementStream, prefix6.MdlComponent, prefix15.CheckboxInputElement, prefix5.MaterialFormatter, Invocation, Duration, const m.TypeValue Function(String)>().type, prefix2.MdlDialogStatus, const m.TypeValue Function(String)>().type, const m.TypeValue().type, prefix15.Event, const m.TypeValue>().type, prefix14.StreamSubscription], 10, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"lambdas": (dynamic instance) => instance.lambdas, r"eventStreams": (dynamic instance) => instance.eventStreams, r"show": (dynamic instance) => instance.show, r"close": (dynamic instance) => instance.close, r"query": (dynamic instance) => instance.query, r"dialog": (dynamic instance) => instance.dialog, r"id": (dynamic instance) => instance.id, r"hasTimer": (dynamic instance) => instance.hasTimer, r"hasNoTimer": (dynamic instance) => instance.hasNoTimer, r"isAutoCloseEnabled": (dynamic instance) => instance.isAutoCloseEnabled, r"scope": (dynamic instance) => instance.scope, r"call": (dynamic instance) => instance.call, r"onClose": (dynamic instance) => instance.onClose, r"title": (dynamic instance) => instance.title, r"text": (dynamic instance) => instance.text, r"okButton": (dynamic instance) => instance.okButton, r"template": (dynamic instance) => instance.template, r"hasTitle": (dynamic instance) => instance.hasTitle, r"onYes": (dynamic instance) => instance.onYes, r"onNo": (dynamic instance) => instance.onNo, r"yesButton": (dynamic instance) => instance.yesButton, r"noButton": (dynamic instance) => instance.noButton, r"position": (dynamic instance) => instance.position, r"confirmButton": (dynamic instance) => instance.confirmButton, r"timeout": (dynamic instance) => instance.timeout, r"waitingForConfirmation": (dynamic instance) => instance.waitingForConfirmation, r"hasConfirmButton": (dynamic instance) => instance.hasConfirmButton, r"type": (dynamic instance) => instance.type, r"subtitle": (dynamic instance) => instance.subtitle, r"content": (dynamic instance) => instance.content, r"hasSubTitle": (dynamic instance) => instance.hasSubTitle, r"hasContent": (dynamic instance) => instance.hasContent, r"autoClose": (dynamic instance) => instance.autoClose, r"onCancel": (dynamic instance) => instance.onCancel, r"onClickLeft": (dynamic instance) => instance.onClickLeft, r"onClickRight": (dynamic instance) => instance.onClickRight, r"onClickDay": (dynamic instance) => instance.onClickDay, r"onClickYear": (dynamic instance) => instance.onClickYear, r"onClickDate": (dynamic instance) => instance.onClickDate, r"onClickItemInYearList": (dynamic instance) => instance.onClickItemInYearList, r"dateTime": (dynamic instance) => instance.dateTime, r"yearFrom": (dynamic instance) => instance.yearFrom, r"yearTo": (dynamic instance) => instance.yearTo, r"year": (dynamic instance) => instance.year, r"date": (dynamic instance) => instance.date, r"month": (dynamic instance) => instance.month, r"onClickHour": (dynamic instance) => instance.onClickHour, r"onClickMinute": (dynamic instance) => instance.onClickMinute, r"onClickDialogBarHour": (dynamic instance) => instance.onClickDialogBarHour, r"onClickDialogBarMinute": (dynamic instance) => instance.onClickDialogBarMinute, r"hour": (dynamic instance) => instance.hour, r"minute": (dynamic instance) => instance.minute, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"value": (dynamic instance) => instance.value, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label, r"refresh": (dynamic instance) => instance.refresh}, {r"dialog=": (dynamic instance, value) => instance.dialog = value, r"title=": (dynamic instance, value) => instance.title = value, r"text=": (dynamic instance, value) => instance.text = value, r"okButton=": (dynamic instance, value) => instance.okButton = value, r"template=": (dynamic instance, value) => instance.template = value, r"yesButton=": (dynamic instance, value) => instance.yesButton = value, r"noButton=": (dynamic instance, value) => instance.noButton = value, r"confirmButton=": (dynamic instance, value) => instance.confirmButton = value, r"timeout=": (dynamic instance, value) => instance.timeout = value, r"type=": (dynamic instance, value) => instance.type = value, r"subtitle=": (dynamic instance, value) => instance.subtitle = value, r"content=": (dynamic instance, value) => instance.content = value, r"autoClose=": (dynamic instance, value) => instance.autoClose = value, r"dateTime=": (dynamic instance, value) => instance.dateTime = value, r"yearFrom=": (dynamic instance, value) => instance.yearFrom = value, r"yearTo=": (dynamic instance, value) => instance.yearTo = value, r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"value=": (dynamic instance, value) => instance.value = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value}, null, [])}; + + +final _memberSymbolMap = null; + +initializeReflectable() { + if (!isTransformed) { + throw new UnsupportedError( + "The transformed code is running with the untransformed " + "reflectable package. Remember to set your package-root to " + "'build/.../packages'."); + } + r.data = _data; + r.memberSymbolMap = _memberSymbolMap; +} diff --git a/samples/mdl_card/.analysis_options.yaml b/samples/mdl_card/.analysis_options.yaml new file mode 100644 index 0000000..58522ed --- /dev/null +++ b/samples/mdl_card/.analysis_options.yaml @@ -0,0 +1,6 @@ +# Analyzer options: +# https://www.dartlang.org/guides/language/analysis-options +# +analyzer: + strong-mode: true + diff --git a/samples/mdl_card/.rsync b/samples/mdl_card/.rsync new file mode 100644 index 0000000..aa06e44 --- /dev/null +++ b/samples/mdl_card/.rsync @@ -0,0 +1,14 @@ +# Rsync-Destination für dieses sample +# +# - ssh ls2 +# - cat ~/website/config/nginx/_template.conf.txt | sed -e 's/%example%/mdl_card/' > ~/website/config/nginx/mdl_card.conf +# - cat ~/website/config/nginx/mdl_card.conf +# - sudo mkdir -p ~/website/data/example/mdl_card +# - sudo chown ubuntu:ubuntu ~/website/data/example/mdl_card +# - sudo chmod 775 ~/website/data/example/mdl_card +# - ls -lad ~/website/data/example/mdl_card +# - cd ~/website && docker-compose restart +# +RSYNC_DESTINATION=":~/website/data/example/mdl_card/" +EXAMPLE_URL="http://mdl_card.example.mikemitterer.at/" + diff --git a/samples/mdl_card/.sitegen/html/_content/index.html b/samples/mdl_card/.sitegen/html/_content/index.html index 67df9ad..71e488b 100644 --- a/samples/mdl_card/.sitegen/html/_content/index.html +++ b/samples/mdl_card/.sitegen/html/_content/index.html @@ -1,11 +1,11 @@ title: CARD samplename: card -sampleurl: https://github.com/MikeMitterer/dart-material-design-lite/tree/master/samples/mdl_card/web +sampleurl: https://github.com/MikeMitterer/dart-material-design-lite-site/tree/master/samples/mdl_card/web ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-

Wide card with share menu button

+

Wide card with share menu button

+
Loading...
-
+
CARD-Sample
+
@@ -54,7 +68,7 @@
-

Wide card with share menu button

+

Wide card with share menu button

@@ -188,7 +205,7 @@

- + Add to Calendar
@@ -207,7 +224,7 @@

Integer lectus lacus, co Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris sagittis pellentesque lacus eleifend lacinia. Donec ut risus suscipit, convallis diam et, mattis urna. Phasellus sit amet ipsum nisl. Aliquam sed dictum neque. Vestibulum tempus at lacus et volutpat. Mauris molestie vel mauris id scelerisque.

@@ -223,13 +240,13 @@

Integer lectus lacus, co Lorem ipsum dolor sit amet.

- -
    +
      @@ -237,7 +254,6 @@

      Integer lectus lacus, co

- @@ -252,21 +268,25 @@

Integer lectus lacus, co Mike Mitterer, IT-Consulting and Development Ltd.

+ - - + + + diff --git a/samples/mdl_card/web/main.dart b/samples/mdl_card/web/main.dart index 97efb88..17656b1 100644 --- a/samples/mdl_card/web/main.dart +++ b/samples/mdl_card/web/main.dart @@ -1,25 +1,13 @@ -import "dart:html" as dom; - -import 'package:logging/logging.dart'; import 'package:console_log_handler/console_log_handler.dart'; import 'package:mdl/mdl.dart'; +import 'main.reflectable.dart'; -main() { +main() async { configLogging(); + initializeReflectable(); registerMdl(); - componentFactory().run().then((_) { - - }); + await componentFactory(); } - -void configLogging() { - hierarchicalLoggingEnabled = false; // set this to true - its part of Logging SDK - - // now control the logging. - // Turn off all logging first - Logger.root.level = Level.INFO; - Logger.root.onRecord.listen(new LogConsoleHandler()); -} \ No newline at end of file diff --git a/samples/mdl_card/web/main.reflectable.dart b/samples/mdl_card/web/main.reflectable.dart new file mode 100644 index 0000000..f34467b --- /dev/null +++ b/samples/mdl_card/web/main.reflectable.dart @@ -0,0 +1,40 @@ +// This file has been generated by the reflectable package. +// https://github.com/dart-lang/reflectable. + +import "dart:core"; +import 'dart:async' as prefix11; +import 'dart:html' as prefix12; +import 'package:dryice/dryice.dart' as prefix0; +import 'package:l10n/l10n.dart' as prefix9; +import 'package:mdl/mdlapplication.dart' as prefix5; +import 'package:mdl/mdlcomponents.dart' as prefix1; +import 'package:mdl/mdlcore.dart' as prefix4; +import 'package:mdl/mdldirective.dart' as prefix8; +import 'package:mdl/mdlflux.dart' as prefix6; +import 'package:mdl/mdlformatter.dart' as prefix3; +import 'package:mdl/mdltemplate.dart' as prefix7; +import 'package:mdl/src/core/annotations.dart' as prefix10; +import 'package:mustache/mustache.dart' as prefix2; + +// ignore:unused_import +import "package:reflectable/mirrors.dart" as m; +// ignore:unused_import +import "package:reflectable/src/reflectable_transformer_based.dart" as r; +// ignore:unused_import +import "package:reflectable/reflectable.dart" show isTransformed; + +final _data = {const prefix0.InjectAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"MaterialBadge", r"mdlcomponents.MaterialBadge", 7, 0, const prefix0.InjectAnnotation(), const [13, 14, 15, 16], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 14, 15], const [13], -1, {r"widget": () => prefix1.MaterialBadge.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialBadge.fromElement(element, injector) : null}, 0, 0, const [], const [prefix10.Component, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 1, const prefix0.InjectAnnotation(), const [39, 40, 41, 42, 43, 44, 45, 46], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45], const [39], -1, {r"widget": () => prefix1.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialButton.fromElement(element, injector) : null}, 0, 1, const [], const [prefix10.Component, prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 2, const prefix0.InjectAnnotation(), const [47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 52, 34, 35, 36, 37, 38, 63, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61], const [47], 22, {r"widget": () => prefix1.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialCheckbox.fromElement(element, injector) : null}, 0, 2, const [], const [prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"Formatter", r"mdlformatter.Formatter", 7, 3, const prefix0.InjectAnnotation(), const [4, 5, 6, 7, 8, 69], const [17, 18, 19, 20, 21, 64, 65, 66, 67, 68], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.Formatter() : null}, 1, 3, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FallbackFormatter", r"mdlformatter.FallbackFormatter", 519, 4, const prefix0.InjectAnnotation(), const [63, 70], const [17, 18, 19, 20, 21, 63], const [], -1, {}, {}, {}, 1, 4, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ChooseFormatter", r"mdlformatter.ChooseFormatter", 7, 5, const prefix0.InjectAnnotation(), const [71, 72, 73], const [17, 18, 19, 20, 21, 71, 72], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.ChooseFormatter() : null}, 1, 5, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DecoratorFormatter", r"mdlformatter.DecoratorFormatter", 7, 6, const prefix0.InjectAnnotation(), const [74, 75, 76], const [17, 18, 19, 20, 21, 74, 75], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.DecoratorFormatter() : null}, 1, 6, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"LowerCaseFormatter", r"mdlformatter.LowerCaseFormatter", 7, 7, const prefix0.InjectAnnotation(), const [77, 78, 79], const [17, 18, 19, 20, 21, 77, 78], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.LowerCaseFormatter() : null}, 1, 7, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"NumberFormatter", r"mdlformatter.NumberFormatter", 7, 8, const prefix0.InjectAnnotation(), const [80, 81, 82], const [17, 18, 19, 20, 21, 80, 81], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.NumberFormatter() : null}, 1, 8, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"UpperCaseFormatter", r"mdlformatter.UpperCaseFormatter", 7, 9, const prefix0.InjectAnnotation(), const [83, 84, 85], const [17, 18, 19, 20, 21, 83, 84], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.UpperCaseFormatter() : null}, 1, 9, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialApplication", r"mdlcore.MaterialApplication", 7, 10, const prefix0.InjectAnnotation(), const [86, 87], const [17, 18, 19, 20, 21, 86], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix4.MaterialApplication() : null}, 2, 10, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DomRenderer", r"mdlapplication.DomRenderer", 7, 11, const prefix0.InjectAnnotation(), const [88, 89, 90], const [17, 18, 19, 20, 21, 88, 89], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.DomRenderer() : null}, 3, 11, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"EventCompiler", r"mdlapplication.EventCompiler", 7, 12, const prefix0.InjectAnnotation(), const [9, 91, 93], const [17, 18, 19, 20, 21, 91], const [92], -1, {r"datasets": () => prefix5.EventCompiler.datasets}, {}, {r"": (b) => () => b ? new prefix5.EventCompiler() : null}, 3, 12, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"RootScope", r"mdlapplication.RootScope", 7, 13, const prefix0.InjectAnnotation(), const [94], const [17, 18, 19, 20, 21, 95, 96, 97, 98], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.RootScope() : null}, 3, 13, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBus", r"mdlflux.ActionBus", 519, 14, const prefix0.InjectAnnotation(), const [99, 100, 101], const [17, 18, 19, 20, 21], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix6.ActionBus() : null}, 4, 14, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBusImpl", r"mdlflux.ActionBusImpl", 7, 15, const prefix0.InjectAnnotation(), const [102, 103, 104], const [17, 18, 19, 20, 21, 102, 103], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix6.ActionBusImpl() : null}, 4, 15, const [14], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DataStore", r"mdlflux.DataStore", 519, 16, const prefix0.InjectAnnotation(), const [105, 106], const [17, 18, 19, 20, 21, 107, 108], const [], -1, {}, {}, {}, 4, 16, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FireOnlyDataStore", r"mdlflux.FireOnlyDataStore", 7, 17, const prefix0.InjectAnnotation(), const [109, 110], const [17, 18, 19, 20, 21, 107, 108, 109], const [], 16, {}, {}, {r"": (b) => (_actionbus) => b ? new prefix6.FireOnlyDataStore(_actionbus) : null}, 4, 17, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"TemplateRenderer", r"mdltemplate.TemplateRenderer", 7, 18, const prefix0.InjectAnnotation(), const [10, 111, 112, 115], const [17, 18, 19, 20, 21, 111, 112, 113, 114], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix7.TemplateRenderer(_renderer, _eventCompiler) : null}, 5, 18, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ListRenderer", r"mdltemplate.ListRenderer", 7, 19, const prefix0.InjectAnnotation(), const [11, 12, 116, 121], const [17, 18, 19, 20, 21, 116, 117, 118, 119, 120], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix7.ListRenderer(_renderer, _eventCompiler) : null}, 5, 19, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ModelObserverFactory", r"mdldirective.ModelObserverFactory", 7, 20, const prefix0.InjectAnnotation(), const [122, 123, 124], const [17, 18, 19, 20, 21, 122, 123], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix8.ModelObserverFactory() : null}, 6, 20, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"Translator", r"l10n.Translator", 519, 21, const prefix0.InjectAnnotation(), const [125, 126, 127], const [17, 18, 19, 20, 21, 126], const [], -1, {}, {}, {}, 7, 21, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 22, const prefix0.InjectAnnotation(), const [63], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 63], const [], -1, const {}, const {}, const {}, 0, 4, const [], const [], null)], [new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix0.InjectAnnotation(), -1, 23, 24, const []), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix0.InjectAnnotation(), -1, 25, 25, const []), new r.VariableMirrorImpl(r"element", 33797, null, const prefix0.InjectAnnotation(), -1, 26, 26, const []), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix0.InjectAnnotation(), -1, 27, 27, const []), new r.VariableMirrorImpl(r"number", 33797, 3, const prefix0.InjectAnnotation(), 8, 8, 8, const []), new r.VariableMirrorImpl(r"decorate", 33797, 3, const prefix0.InjectAnnotation(), 6, 6, 6, const []), new r.VariableMirrorImpl(r"uppercase", 33797, 3, const prefix0.InjectAnnotation(), 9, 9, 9, const []), new r.VariableMirrorImpl(r"lowercase", 33797, 3, const prefix0.InjectAnnotation(), 7, 7, 7, const []), new r.VariableMirrorImpl(r"choose", 33797, 3, const prefix0.InjectAnnotation(), 5, 5, 5, const []), new r.VariableMirrorImpl(r"datasets", 2130965, 12, const prefix0.InjectAnnotation(), -1, 28, 29, const []), new r.VariableMirrorImpl(r"appendNewNodes", 32773, 18, const prefix0.InjectAnnotation(), -1, 27, 27, const []), new r.VariableMirrorImpl(r"listTag", 32773, 19, const prefix0.InjectAnnotation(), -1, 30, 30, const []), new r.VariableMirrorImpl(r"itemTag", 32773, 19, const prefix0.InjectAnnotation(), -1, 30, 30, const []), new r.MethodMirrorImpl(r"widget", 131090, 0, 0, 0, 0, const [0], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 0, null, -1, -1, const [3], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 0, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 0, -1, 0, 0, const [1, 2], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"==", 131074, null, -1, 27, 27, const [4], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [5], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 31, 31, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 32, 32, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 0, 23, 24, 22), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [6], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"query", 131074, null, -1, 26, 26, const [7, 8], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"waitForChild", 65538, null, null, null, null, const [9, 10, 11], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 1, 25, 25, 29), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 2, 26, 26, 30), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 27, 27, 31), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 27, 27, 32), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 26, 26, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 33, 33, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 34, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 36, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 38, 39, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 1, 1, 1, 1, const [13], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 1, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 1, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled=", 262148, 1, null, -1, -1, const [16], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled", 131075, 1, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 1, null, -1, -1, const [17], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 1, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 1, -1, 1, 1, const [14, 15], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 2, 2, 2, 2, const [18], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"check", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uncheck", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hub", 131075, 2, -1, 26, 26, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"inputElement", 131075, 2, -1, 41, 41, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked=", 262148, 2, null, -1, -1, const [21], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked", 131075, 2, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled=", 262148, 2, null, -1, -1, const [22], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled", 131075, 2, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label", 131075, 2, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label=", 262148, 2, null, -1, -1, const [23], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 2, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 2, null, -1, -1, const [24], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 2, -1, 2, 2, const [19, 20], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"formatterFor", 131074, 4, -1, 42, 42, const [25, 26], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 4, 8, 8, 64), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 5, 6, 6, 65), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 6, 9, 9, 66), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 7, 7, 7, 67), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 8, 5, 5, 68), new r.MethodMirrorImpl(r"", 64, 3, -1, 3, 3, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 4, -1, 4, 4, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"choose", 131074, 5, -1, 30, 30, const [27, 28, 29], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 5, -1, 30, 30, const [30, 31, 32], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 5, -1, 5, 5, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"decorate", 131074, 6, -1, 30, 30, const [33], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 6, -1, 30, 30, const [34], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 6, -1, 6, 6, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"lowercase", 131074, 7, -1, 30, 30, const [35], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 7, -1, 30, 30, const [36], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 7, -1, 7, 7, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"number", 131074, 8, -1, 30, 30, const [37, 38], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 8, -1, 30, 30, const [39, 40], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 8, -1, 8, 8, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uppercase", 131074, 9, -1, 30, 30, const [41], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 9, -1, 30, 30, const [42], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 9, -1, 9, 9, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"run", 262146, 10, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 10, -1, 10, 10, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"render", 4325378, 11, -1, 43, 44, const [43, 44, 45], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"renderBefore", 4325378, 11, -1, 43, 44, const [46, 47, 48], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 11, -1, 11, 11, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"compileElement", 4325378, 12, -1, 45, 46, const [49, 50], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 9, 28, 29, 92), new r.MethodMirrorImpl(r"", 0, 12, -1, 12, 12, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 13, -1, 13, 13, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context=", 262148, null, null, -1, -1, const [51], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parentContext", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"rootContext", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 14, null, -1, -1, const [52], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"on", 4325890, 14, -1, 48, 49, const [53], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 1, 14, -1, 14, 14, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 15, null, -1, -1, const [54], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"on", 4325378, 15, -1, 48, 49, const [55], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 1, 15, -1, 15, 15, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 16, null, -1, -1, const [56], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 16, -1, 16, 16, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"emitChange", 262146, null, null, -1, -1, const [57], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onChange", 4325379, null, -1, 50, 51, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 17, null, -1, -1, const [58], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 0, 17, -1, 17, 17, const [59], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 18, -1, 52, 52, const [60, 61, 62], const prefix0.InjectAnnotation(), const [deprecated]), new r.MethodMirrorImpl(r"render", 4325378, 18, -1, 45, 46, const [63, 64, 65, 66], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 27, 27, 113), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 27, 27, 114), new r.MethodMirrorImpl(r"", 0, 18, -1, 18, 18, const [67, 68], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 19, -1, 52, 52, const [70, 71, 72, 73], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 30, 30, 117), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 30, 30, 118), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 12, 30, 30, 119), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 12, 30, 30, 120), new r.MethodMirrorImpl(r"", 0, 19, -1, 19, 19, const [74, 75], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"createFor", 131074, 20, -1, 53, 53, const [78], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"setBuilderFor", 262146, 20, null, -1, -1, const [79, 80], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 20, -1, 20, 20, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"translate", 131586, 21, -1, 30, 30, const [81], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 21, -1, 30, 30, const [82], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 21, -1, 21, 21, const [], const prefix0.InjectAnnotation(), const [])], [new r.ParameterMirrorImpl(r"element", 33798, 13, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 16, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 16, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 14, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"other", 16390, 17, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 19, const prefix0.InjectAnnotation(), -1, 55, 55, const [], null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 24, const prefix0.InjectAnnotation(), -1, 56, 57, const [], null, null), new r.ParameterMirrorImpl(r"selector", 33798, 27, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"logError", 48134, 27, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 28, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"wait", 48134, 28, const prefix0.InjectAnnotation(), -1, 58, 58, const [], const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 28, const prefix0.InjectAnnotation(), -1, 31, 31, const [], 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 32, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 39, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 46, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 46, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 42, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 44, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 47, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 62, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 62, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 54, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 56, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"v", 33798, 59, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 61, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 63, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 63, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 71, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"option1", 39942, 71, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "Yes", null), new r.ParameterMirrorImpl(r"option2", 39942, 71, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "No", null), new r.ParameterMirrorImpl(r"value", 17414, 72, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"option1", 39942, 72, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "Yes", null), new r.ParameterMirrorImpl(r"option2", 39942, 72, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "No", null), new r.ParameterMirrorImpl(r"value", 17414, 74, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 75, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 77, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 78, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicValue", 17414, 80, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicFractionSize", 21510, 80, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 81, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"fractionSize", 21510, 81, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 83, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 84, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 88, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 88, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 88, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"parent", 33798, 89, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"reference", 33798, 89, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 89, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 91, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 91, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"cntxt", 33798, 96, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 99, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 100, const prefix0.InjectAnnotation(), -1, 60, 60, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 102, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 103, const prefix0.InjectAnnotation(), -1, 60, 60, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 105, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"action", 48134, 107, const prefix0.InjectAnnotation(), -1, 59, 59, const [], prefix6.UpdateViewAction, #action), new r.ParameterMirrorImpl(r"action", 33798, 109, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"_actionbus", 32806, 110, const prefix0.InjectAnnotation(), 14, 14, 14, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 111, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 111, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 111, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 112, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 112, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 112, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 112, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"_renderer", 32806, 115, const prefix0.InjectAnnotation(), 11, 11, 11, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 115, const prefix0.InjectAnnotation(), 12, 12, 12, const [], null, null), new r.ParameterMirrorImpl(r"_appendNewNodes", 32870, 114, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 116, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 116, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"items", 2130950, 116, const prefix0.InjectAnnotation(), -1, 62, 63, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 116, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"_renderer", 32806, 121, const prefix0.InjectAnnotation(), 11, 11, 11, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 121, const prefix0.InjectAnnotation(), 12, 12, 12, const [], null, null), new r.ParameterMirrorImpl(r"_listTag", 32870, 118, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"_itemTag", 32870, 120, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 122, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"type", 33798, 123, const prefix0.InjectAnnotation(), -1, 32, 32, const [], null, null), new r.ParameterMirrorImpl(r"builder", 1030, 123, const prefix0.InjectAnnotation(), null, 64, 64, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 125, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 126, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null)], [prefix1.MaterialBadge, prefix1.MaterialButton, prefix1.MaterialCheckbox, prefix3.Formatter, prefix3.FallbackFormatter, prefix3.ChooseFormatter, prefix3.DecoratorFormatter, prefix3.LowerCaseFormatter, prefix3.NumberFormatter, prefix3.UpperCaseFormatter, prefix4.MaterialApplication, prefix5.DomRenderer, prefix5.EventCompiler, prefix5.RootScope, prefix6.ActionBus, prefix6.ActionBusImpl, prefix6.DataStore, prefix6.FireOnlyDataStore, prefix7.TemplateRenderer, prefix7.ListRenderer, prefix8.ModelObserverFactory, prefix9.Translator, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), const m.TypeValue>>().type, List, prefix0.Injector, prefix12.Element, bool, const m.TypeValue>().type, Map, String, int, Type, prefix12.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix12.ElementStream, const m.TypeValue>().type, prefix12.ElementStream, prefix4.MdlComponent, prefix12.CheckboxInputElement, prefix3.MaterialFormatter, const m.TypeValue>().type, prefix11.Future, const m.TypeValue>().type, prefix11.Future, Object, const m.TypeValue>().type, prefix11.Stream, const m.TypeValue>>().type, prefix11.Stream, prefix7.Renderer, prefix8.ModelObserver, prefix12.HtmlElement, Invocation, const m.TypeValue>().type, prefix11.StreamSubscription, Duration, prefix6.Action, prefix6.ActionName, const m.TypeValue().type, const m.TypeValue>().type, List, const m.TypeValue().type, prefix9.L10N], 23, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"eventStreams": (dynamic instance) => instance.eventStreams, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"query": (dynamic instance) => instance.query, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"value": (dynamic instance) => instance.value, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label, r"number": (dynamic instance) => instance.number, r"decorate": (dynamic instance) => instance.decorate, r"uppercase": (dynamic instance) => instance.uppercase, r"lowercase": (dynamic instance) => instance.lowercase, r"choose": (dynamic instance) => instance.choose, r"call": (dynamic instance) => instance.call, r"run": (dynamic instance) => instance.run, r"render": (dynamic instance) => instance.render, r"renderBefore": (dynamic instance) => instance.renderBefore, r"compileElement": (dynamic instance) => instance.compileElement, r"context": (dynamic instance) => instance.context, r"parentContext": (dynamic instance) => instance.parentContext, r"rootContext": (dynamic instance) => instance.rootContext, r"fire": (dynamic instance) => instance.fire, r"on": (dynamic instance) => instance.on, r"emitChange": (dynamic instance) => instance.emitChange, r"onChange": (dynamic instance) => instance.onChange, r"appendNewNodes": (dynamic instance) => instance.appendNewNodes, r"listTag": (dynamic instance) => instance.listTag, r"itemTag": (dynamic instance) => instance.itemTag, r"createFor": (dynamic instance) => instance.createFor, r"setBuilderFor": (dynamic instance) => instance.setBuilderFor}, {r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"value=": (dynamic instance, value) => instance.value = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value, r"context=": (dynamic instance, value) => instance.context = value, r"appendNewNodes=": (dynamic instance, value) => instance.appendNewNodes = value, r"listTag=": (dynamic instance, value) => instance.listTag = value, r"itemTag=": (dynamic instance, value) => instance.itemTag = value}, [new r.LibraryMirrorImpl(r"mdlcomponents", Uri.parse(r"reflectable://0/mdlcomponents"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlformatter", Uri.parse(r"reflectable://1/mdlformatter"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlcore", Uri.parse(r"reflectable://2/mdlcore"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlapplication", Uri.parse(r"reflectable://3/mdlapplication"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlflux", Uri.parse(r"reflectable://4/mdlflux"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdltemplate", Uri.parse(r"reflectable://5/mdltemplate"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdldirective", Uri.parse(r"reflectable://6/mdldirective"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"l10n", Uri.parse(r"reflectable://7/l10n"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null)], []), const prefix2.MustacheMirrorsUsedAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 0, const prefix2.MustacheMirrorsUsedAnnotation(), const [4, 5, 6, 7, 8, 9, 10, 11], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 5, 6, 7, 8, 9, 10], const [4], -1, {r"widget": () => prefix1.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialButton.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 1, const prefix2.MustacheMirrorsUsedAnnotation(), const [34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 39, 29, 30, 31, 32, 33, 50, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48], const [34], -1, {r"widget": () => prefix1.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialCheckbox.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 2, const prefix2.MustacheMirrorsUsedAnnotation(), const [50], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 50], const [], -1, const {}, const {}, const {}, -1, -1, const [-1], null, null)], [new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 3, 4, null), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null), new r.VariableMirrorImpl(r"element", 33797, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null), new r.MethodMirrorImpl(r"widget", 131090, 0, 0, 0, 0, const [0], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 0, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 0, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled=", 262148, 0, null, -1, -1, const [3], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled", 131075, 0, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 0, null, -1, -1, const [4], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 0, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 0, -1, 0, 0, const [1, 2], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"==", 131074, null, -1, 7, 7, const [5], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [6], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 9, 9, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 10, 10, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 0, 3, 4, 17), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [7], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"query", 131074, null, -1, 6, 6, const [8, 9], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"waitForChild", 65538, null, null, null, null, const [10, 11, 12], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 1, 5, 5, 24), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 2, 6, 6, 25), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 3, 7, 7, 26), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 3, 7, 7, 27), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 6, 6, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 11, 11, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 12, 13, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 14, 15, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 16, 17, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 18, 18, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"widget", 131090, 1, 1, 1, 1, const [14], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"check", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"uncheck", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hub", 131075, 1, -1, 6, 6, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"inputElement", 131075, 1, -1, 19, 19, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked=", 262148, 1, null, -1, -1, const [17], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked", 131075, 1, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled=", 262148, 1, null, -1, -1, const [18], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled", 131075, 1, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label", 131075, 1, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label=", 262148, 1, null, -1, -1, const [19], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 1, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 1, null, -1, -1, const [20], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 1, -1, 1, 1, const [15, 16], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"formatterFor", 131074, null, -1, 20, 20, const [21, 22], const prefix2.MustacheMirrorsUsedAnnotation(), null)], [new r.ParameterMirrorImpl(r"element", 33798, 4, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 11, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 11, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null, null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 7, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 9, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"other", 16390, 12, const prefix2.MustacheMirrorsUsedAnnotation(), null, null, null, null, null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 14, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null, null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 19, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 23, 24, null, null, null), new r.ParameterMirrorImpl(r"selector", 33798, 22, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"logError", 48134, 22, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"wait", 48134, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 25, 25, null, const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 9, 9, null, 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 27, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 34, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 49, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 49, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null, null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 41, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 43, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"v", 33798, 46, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 48, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 50, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null, null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 50, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null, null, null)], [prefix1.MaterialButton, prefix1.MaterialCheckbox, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), const m.TypeValue>>().type, List, prefix0.Injector, prefix12.Element, bool, String, int, Type, prefix12.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix12.ElementStream, const m.TypeValue>().type, prefix12.ElementStream, prefix4.MdlComponent, prefix12.CheckboxInputElement, prefix3.MaterialFormatter, prefix12.HtmlElement, Invocation, const m.TypeValue>().type, prefix11.StreamSubscription, Duration], 3, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"eventStreams": (dynamic instance) => instance.eventStreams, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"query": (dynamic instance) => instance.query, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"value": (dynamic instance) => instance.value, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label}, {r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"value=": (dynamic instance, value) => instance.value = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value}, null, [])}; + + +final _memberSymbolMap = null; + +initializeReflectable() { + if (!isTransformed) { + throw new UnsupportedError( + "The transformed code is running with the untransformed " + "reflectable package. Remember to set your package-root to " + "'build/.../packages'."); + } + r.data = _data; + r.memberSymbolMap = _memberSymbolMap; +} diff --git a/samples/mdl_checkbox/.analysis_options.yaml b/samples/mdl_checkbox/.analysis_options.yaml new file mode 100644 index 0000000..58522ed --- /dev/null +++ b/samples/mdl_checkbox/.analysis_options.yaml @@ -0,0 +1,6 @@ +# Analyzer options: +# https://www.dartlang.org/guides/language/analysis-options +# +analyzer: + strong-mode: true + diff --git a/samples/mdl_checkbox/.rsync b/samples/mdl_checkbox/.rsync new file mode 100644 index 0000000..900d13e --- /dev/null +++ b/samples/mdl_checkbox/.rsync @@ -0,0 +1,14 @@ +# Rsync-Destination für dieses sample +# +# - ssh ls2 +# - cat ~/website/config/nginx/_template.conf.txt | sed -e 's/%example%/mdl_checkbox/' > ~/website/config/nginx/mdl_checkbox.conf +# - cat ~/website/config/nginx/mdl_checkbox.conf +# - sudo mkdir -p ~/website/data/example/mdl_checkbox +# - sudo chown ubuntu:ubuntu ~/website/data/example/mdl_checkbox +# - sudo chmod 775 ~/website/data/example/mdl_checkbox +# - ls -lad ~/website/data/example/mdl_checkbox +# - cd ~/website && docker-compose restart +# +RSYNC_DESTINATION=":~/website/data/example/mdl_checkbox/" +EXAMPLE_URL="http://mdl_checkbox.example.mikemitterer.at/" + diff --git a/samples/mdl_checkbox/.sitegen/html/_content/index.html b/samples/mdl_checkbox/.sitegen/html/_content/index.html index 2f4a943..e3b2170 100644 --- a/samples/mdl_checkbox/.sitegen/html/_content/index.html +++ b/samples/mdl_checkbox/.sitegen/html/_content/index.html @@ -1,25 +1,25 @@ title: CHECKBOX samplename: checkbox -sampleurl: https://github.com/MikeMitterer/dart-material-design-lite/tree/master/samples/mdl_checkbox/web +sampleurl: https://github.com/MikeMitterer/dart-material-design-lite-site/tree/master/samples/mdl_checkbox/web ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
+ - - + + + diff --git a/samples/mdl_checkbox/web/main.dart b/samples/mdl_checkbox/web/main.dart index 97efb88..82a84be 100644 --- a/samples/mdl_checkbox/web/main.dart +++ b/samples/mdl_checkbox/web/main.dart @@ -1,25 +1,14 @@ -import "dart:html" as dom; - -import 'package:logging/logging.dart'; import 'package:console_log_handler/console_log_handler.dart'; import 'package:mdl/mdl.dart'; +import 'main.reflectable.dart'; -main() { +main() async { configLogging(); + initializeReflectable(); registerMdl(); - componentFactory().run().then((_) { - - }); + await componentFactory().run(); } -void configLogging() { - hierarchicalLoggingEnabled = false; // set this to true - its part of Logging SDK - - // now control the logging. - // Turn off all logging first - Logger.root.level = Level.INFO; - Logger.root.onRecord.listen(new LogConsoleHandler()); -} \ No newline at end of file diff --git a/samples/mdl_checkbox/web/main.reflectable.dart b/samples/mdl_checkbox/web/main.reflectable.dart new file mode 100644 index 0000000..f34467b --- /dev/null +++ b/samples/mdl_checkbox/web/main.reflectable.dart @@ -0,0 +1,40 @@ +// This file has been generated by the reflectable package. +// https://github.com/dart-lang/reflectable. + +import "dart:core"; +import 'dart:async' as prefix11; +import 'dart:html' as prefix12; +import 'package:dryice/dryice.dart' as prefix0; +import 'package:l10n/l10n.dart' as prefix9; +import 'package:mdl/mdlapplication.dart' as prefix5; +import 'package:mdl/mdlcomponents.dart' as prefix1; +import 'package:mdl/mdlcore.dart' as prefix4; +import 'package:mdl/mdldirective.dart' as prefix8; +import 'package:mdl/mdlflux.dart' as prefix6; +import 'package:mdl/mdlformatter.dart' as prefix3; +import 'package:mdl/mdltemplate.dart' as prefix7; +import 'package:mdl/src/core/annotations.dart' as prefix10; +import 'package:mustache/mustache.dart' as prefix2; + +// ignore:unused_import +import "package:reflectable/mirrors.dart" as m; +// ignore:unused_import +import "package:reflectable/src/reflectable_transformer_based.dart" as r; +// ignore:unused_import +import "package:reflectable/reflectable.dart" show isTransformed; + +final _data = {const prefix0.InjectAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"MaterialBadge", r"mdlcomponents.MaterialBadge", 7, 0, const prefix0.InjectAnnotation(), const [13, 14, 15, 16], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 14, 15], const [13], -1, {r"widget": () => prefix1.MaterialBadge.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialBadge.fromElement(element, injector) : null}, 0, 0, const [], const [prefix10.Component, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 1, const prefix0.InjectAnnotation(), const [39, 40, 41, 42, 43, 44, 45, 46], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45], const [39], -1, {r"widget": () => prefix1.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialButton.fromElement(element, injector) : null}, 0, 1, const [], const [prefix10.Component, prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 2, const prefix0.InjectAnnotation(), const [47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 52, 34, 35, 36, 37, 38, 63, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61], const [47], 22, {r"widget": () => prefix1.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialCheckbox.fromElement(element, injector) : null}, 0, 2, const [], const [prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"Formatter", r"mdlformatter.Formatter", 7, 3, const prefix0.InjectAnnotation(), const [4, 5, 6, 7, 8, 69], const [17, 18, 19, 20, 21, 64, 65, 66, 67, 68], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.Formatter() : null}, 1, 3, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FallbackFormatter", r"mdlformatter.FallbackFormatter", 519, 4, const prefix0.InjectAnnotation(), const [63, 70], const [17, 18, 19, 20, 21, 63], const [], -1, {}, {}, {}, 1, 4, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ChooseFormatter", r"mdlformatter.ChooseFormatter", 7, 5, const prefix0.InjectAnnotation(), const [71, 72, 73], const [17, 18, 19, 20, 21, 71, 72], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.ChooseFormatter() : null}, 1, 5, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DecoratorFormatter", r"mdlformatter.DecoratorFormatter", 7, 6, const prefix0.InjectAnnotation(), const [74, 75, 76], const [17, 18, 19, 20, 21, 74, 75], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.DecoratorFormatter() : null}, 1, 6, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"LowerCaseFormatter", r"mdlformatter.LowerCaseFormatter", 7, 7, const prefix0.InjectAnnotation(), const [77, 78, 79], const [17, 18, 19, 20, 21, 77, 78], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.LowerCaseFormatter() : null}, 1, 7, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"NumberFormatter", r"mdlformatter.NumberFormatter", 7, 8, const prefix0.InjectAnnotation(), const [80, 81, 82], const [17, 18, 19, 20, 21, 80, 81], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.NumberFormatter() : null}, 1, 8, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"UpperCaseFormatter", r"mdlformatter.UpperCaseFormatter", 7, 9, const prefix0.InjectAnnotation(), const [83, 84, 85], const [17, 18, 19, 20, 21, 83, 84], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.UpperCaseFormatter() : null}, 1, 9, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialApplication", r"mdlcore.MaterialApplication", 7, 10, const prefix0.InjectAnnotation(), const [86, 87], const [17, 18, 19, 20, 21, 86], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix4.MaterialApplication() : null}, 2, 10, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DomRenderer", r"mdlapplication.DomRenderer", 7, 11, const prefix0.InjectAnnotation(), const [88, 89, 90], const [17, 18, 19, 20, 21, 88, 89], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.DomRenderer() : null}, 3, 11, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"EventCompiler", r"mdlapplication.EventCompiler", 7, 12, const prefix0.InjectAnnotation(), const [9, 91, 93], const [17, 18, 19, 20, 21, 91], const [92], -1, {r"datasets": () => prefix5.EventCompiler.datasets}, {}, {r"": (b) => () => b ? new prefix5.EventCompiler() : null}, 3, 12, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"RootScope", r"mdlapplication.RootScope", 7, 13, const prefix0.InjectAnnotation(), const [94], const [17, 18, 19, 20, 21, 95, 96, 97, 98], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.RootScope() : null}, 3, 13, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBus", r"mdlflux.ActionBus", 519, 14, const prefix0.InjectAnnotation(), const [99, 100, 101], const [17, 18, 19, 20, 21], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix6.ActionBus() : null}, 4, 14, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBusImpl", r"mdlflux.ActionBusImpl", 7, 15, const prefix0.InjectAnnotation(), const [102, 103, 104], const [17, 18, 19, 20, 21, 102, 103], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix6.ActionBusImpl() : null}, 4, 15, const [14], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DataStore", r"mdlflux.DataStore", 519, 16, const prefix0.InjectAnnotation(), const [105, 106], const [17, 18, 19, 20, 21, 107, 108], const [], -1, {}, {}, {}, 4, 16, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FireOnlyDataStore", r"mdlflux.FireOnlyDataStore", 7, 17, const prefix0.InjectAnnotation(), const [109, 110], const [17, 18, 19, 20, 21, 107, 108, 109], const [], 16, {}, {}, {r"": (b) => (_actionbus) => b ? new prefix6.FireOnlyDataStore(_actionbus) : null}, 4, 17, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"TemplateRenderer", r"mdltemplate.TemplateRenderer", 7, 18, const prefix0.InjectAnnotation(), const [10, 111, 112, 115], const [17, 18, 19, 20, 21, 111, 112, 113, 114], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix7.TemplateRenderer(_renderer, _eventCompiler) : null}, 5, 18, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ListRenderer", r"mdltemplate.ListRenderer", 7, 19, const prefix0.InjectAnnotation(), const [11, 12, 116, 121], const [17, 18, 19, 20, 21, 116, 117, 118, 119, 120], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix7.ListRenderer(_renderer, _eventCompiler) : null}, 5, 19, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ModelObserverFactory", r"mdldirective.ModelObserverFactory", 7, 20, const prefix0.InjectAnnotation(), const [122, 123, 124], const [17, 18, 19, 20, 21, 122, 123], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix8.ModelObserverFactory() : null}, 6, 20, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"Translator", r"l10n.Translator", 519, 21, const prefix0.InjectAnnotation(), const [125, 126, 127], const [17, 18, 19, 20, 21, 126], const [], -1, {}, {}, {}, 7, 21, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 22, const prefix0.InjectAnnotation(), const [63], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 63], const [], -1, const {}, const {}, const {}, 0, 4, const [], const [], null)], [new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix0.InjectAnnotation(), -1, 23, 24, const []), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix0.InjectAnnotation(), -1, 25, 25, const []), new r.VariableMirrorImpl(r"element", 33797, null, const prefix0.InjectAnnotation(), -1, 26, 26, const []), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix0.InjectAnnotation(), -1, 27, 27, const []), new r.VariableMirrorImpl(r"number", 33797, 3, const prefix0.InjectAnnotation(), 8, 8, 8, const []), new r.VariableMirrorImpl(r"decorate", 33797, 3, const prefix0.InjectAnnotation(), 6, 6, 6, const []), new r.VariableMirrorImpl(r"uppercase", 33797, 3, const prefix0.InjectAnnotation(), 9, 9, 9, const []), new r.VariableMirrorImpl(r"lowercase", 33797, 3, const prefix0.InjectAnnotation(), 7, 7, 7, const []), new r.VariableMirrorImpl(r"choose", 33797, 3, const prefix0.InjectAnnotation(), 5, 5, 5, const []), new r.VariableMirrorImpl(r"datasets", 2130965, 12, const prefix0.InjectAnnotation(), -1, 28, 29, const []), new r.VariableMirrorImpl(r"appendNewNodes", 32773, 18, const prefix0.InjectAnnotation(), -1, 27, 27, const []), new r.VariableMirrorImpl(r"listTag", 32773, 19, const prefix0.InjectAnnotation(), -1, 30, 30, const []), new r.VariableMirrorImpl(r"itemTag", 32773, 19, const prefix0.InjectAnnotation(), -1, 30, 30, const []), new r.MethodMirrorImpl(r"widget", 131090, 0, 0, 0, 0, const [0], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 0, null, -1, -1, const [3], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 0, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 0, -1, 0, 0, const [1, 2], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"==", 131074, null, -1, 27, 27, const [4], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [5], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 31, 31, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 32, 32, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 0, 23, 24, 22), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [6], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"query", 131074, null, -1, 26, 26, const [7, 8], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"waitForChild", 65538, null, null, null, null, const [9, 10, 11], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 1, 25, 25, 29), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 2, 26, 26, 30), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 27, 27, 31), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 27, 27, 32), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 26, 26, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 33, 33, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 34, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 36, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 38, 39, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 1, 1, 1, 1, const [13], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 1, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 1, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled=", 262148, 1, null, -1, -1, const [16], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled", 131075, 1, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 1, null, -1, -1, const [17], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 1, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 1, -1, 1, 1, const [14, 15], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 2, 2, 2, 2, const [18], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"check", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uncheck", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hub", 131075, 2, -1, 26, 26, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"inputElement", 131075, 2, -1, 41, 41, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked=", 262148, 2, null, -1, -1, const [21], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked", 131075, 2, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled=", 262148, 2, null, -1, -1, const [22], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled", 131075, 2, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label", 131075, 2, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label=", 262148, 2, null, -1, -1, const [23], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 2, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 2, null, -1, -1, const [24], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 2, -1, 2, 2, const [19, 20], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"formatterFor", 131074, 4, -1, 42, 42, const [25, 26], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 4, 8, 8, 64), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 5, 6, 6, 65), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 6, 9, 9, 66), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 7, 7, 7, 67), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 8, 5, 5, 68), new r.MethodMirrorImpl(r"", 64, 3, -1, 3, 3, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 4, -1, 4, 4, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"choose", 131074, 5, -1, 30, 30, const [27, 28, 29], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 5, -1, 30, 30, const [30, 31, 32], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 5, -1, 5, 5, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"decorate", 131074, 6, -1, 30, 30, const [33], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 6, -1, 30, 30, const [34], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 6, -1, 6, 6, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"lowercase", 131074, 7, -1, 30, 30, const [35], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 7, -1, 30, 30, const [36], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 7, -1, 7, 7, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"number", 131074, 8, -1, 30, 30, const [37, 38], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 8, -1, 30, 30, const [39, 40], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 8, -1, 8, 8, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uppercase", 131074, 9, -1, 30, 30, const [41], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 9, -1, 30, 30, const [42], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 9, -1, 9, 9, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"run", 262146, 10, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 10, -1, 10, 10, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"render", 4325378, 11, -1, 43, 44, const [43, 44, 45], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"renderBefore", 4325378, 11, -1, 43, 44, const [46, 47, 48], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 11, -1, 11, 11, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"compileElement", 4325378, 12, -1, 45, 46, const [49, 50], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 9, 28, 29, 92), new r.MethodMirrorImpl(r"", 0, 12, -1, 12, 12, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 13, -1, 13, 13, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context=", 262148, null, null, -1, -1, const [51], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parentContext", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"rootContext", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 14, null, -1, -1, const [52], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"on", 4325890, 14, -1, 48, 49, const [53], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 1, 14, -1, 14, 14, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 15, null, -1, -1, const [54], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"on", 4325378, 15, -1, 48, 49, const [55], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 1, 15, -1, 15, 15, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 16, null, -1, -1, const [56], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 16, -1, 16, 16, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"emitChange", 262146, null, null, -1, -1, const [57], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onChange", 4325379, null, -1, 50, 51, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 17, null, -1, -1, const [58], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 0, 17, -1, 17, 17, const [59], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 18, -1, 52, 52, const [60, 61, 62], const prefix0.InjectAnnotation(), const [deprecated]), new r.MethodMirrorImpl(r"render", 4325378, 18, -1, 45, 46, const [63, 64, 65, 66], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 27, 27, 113), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 27, 27, 114), new r.MethodMirrorImpl(r"", 0, 18, -1, 18, 18, const [67, 68], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 19, -1, 52, 52, const [70, 71, 72, 73], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 30, 30, 117), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 30, 30, 118), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 12, 30, 30, 119), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 12, 30, 30, 120), new r.MethodMirrorImpl(r"", 0, 19, -1, 19, 19, const [74, 75], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"createFor", 131074, 20, -1, 53, 53, const [78], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"setBuilderFor", 262146, 20, null, -1, -1, const [79, 80], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 20, -1, 20, 20, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"translate", 131586, 21, -1, 30, 30, const [81], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 21, -1, 30, 30, const [82], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 21, -1, 21, 21, const [], const prefix0.InjectAnnotation(), const [])], [new r.ParameterMirrorImpl(r"element", 33798, 13, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 16, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 16, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 14, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"other", 16390, 17, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 19, const prefix0.InjectAnnotation(), -1, 55, 55, const [], null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 24, const prefix0.InjectAnnotation(), -1, 56, 57, const [], null, null), new r.ParameterMirrorImpl(r"selector", 33798, 27, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"logError", 48134, 27, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 28, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"wait", 48134, 28, const prefix0.InjectAnnotation(), -1, 58, 58, const [], const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 28, const prefix0.InjectAnnotation(), -1, 31, 31, const [], 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 32, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 39, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 46, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 46, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 42, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 44, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 47, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 62, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 62, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 54, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 56, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"v", 33798, 59, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 61, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 63, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 63, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 71, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"option1", 39942, 71, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "Yes", null), new r.ParameterMirrorImpl(r"option2", 39942, 71, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "No", null), new r.ParameterMirrorImpl(r"value", 17414, 72, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"option1", 39942, 72, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "Yes", null), new r.ParameterMirrorImpl(r"option2", 39942, 72, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "No", null), new r.ParameterMirrorImpl(r"value", 17414, 74, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 75, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 77, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 78, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicValue", 17414, 80, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicFractionSize", 21510, 80, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 81, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"fractionSize", 21510, 81, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 83, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 84, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 88, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 88, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 88, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"parent", 33798, 89, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"reference", 33798, 89, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 89, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 91, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 91, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"cntxt", 33798, 96, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 99, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 100, const prefix0.InjectAnnotation(), -1, 60, 60, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 102, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 103, const prefix0.InjectAnnotation(), -1, 60, 60, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 105, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"action", 48134, 107, const prefix0.InjectAnnotation(), -1, 59, 59, const [], prefix6.UpdateViewAction, #action), new r.ParameterMirrorImpl(r"action", 33798, 109, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"_actionbus", 32806, 110, const prefix0.InjectAnnotation(), 14, 14, 14, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 111, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 111, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 111, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 112, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 112, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 112, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 112, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"_renderer", 32806, 115, const prefix0.InjectAnnotation(), 11, 11, 11, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 115, const prefix0.InjectAnnotation(), 12, 12, 12, const [], null, null), new r.ParameterMirrorImpl(r"_appendNewNodes", 32870, 114, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 116, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 116, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"items", 2130950, 116, const prefix0.InjectAnnotation(), -1, 62, 63, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 116, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"_renderer", 32806, 121, const prefix0.InjectAnnotation(), 11, 11, 11, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 121, const prefix0.InjectAnnotation(), 12, 12, 12, const [], null, null), new r.ParameterMirrorImpl(r"_listTag", 32870, 118, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"_itemTag", 32870, 120, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 122, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"type", 33798, 123, const prefix0.InjectAnnotation(), -1, 32, 32, const [], null, null), new r.ParameterMirrorImpl(r"builder", 1030, 123, const prefix0.InjectAnnotation(), null, 64, 64, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 125, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 126, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null)], [prefix1.MaterialBadge, prefix1.MaterialButton, prefix1.MaterialCheckbox, prefix3.Formatter, prefix3.FallbackFormatter, prefix3.ChooseFormatter, prefix3.DecoratorFormatter, prefix3.LowerCaseFormatter, prefix3.NumberFormatter, prefix3.UpperCaseFormatter, prefix4.MaterialApplication, prefix5.DomRenderer, prefix5.EventCompiler, prefix5.RootScope, prefix6.ActionBus, prefix6.ActionBusImpl, prefix6.DataStore, prefix6.FireOnlyDataStore, prefix7.TemplateRenderer, prefix7.ListRenderer, prefix8.ModelObserverFactory, prefix9.Translator, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), const m.TypeValue>>().type, List, prefix0.Injector, prefix12.Element, bool, const m.TypeValue>().type, Map, String, int, Type, prefix12.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix12.ElementStream, const m.TypeValue>().type, prefix12.ElementStream, prefix4.MdlComponent, prefix12.CheckboxInputElement, prefix3.MaterialFormatter, const m.TypeValue>().type, prefix11.Future, const m.TypeValue>().type, prefix11.Future, Object, const m.TypeValue>().type, prefix11.Stream, const m.TypeValue>>().type, prefix11.Stream, prefix7.Renderer, prefix8.ModelObserver, prefix12.HtmlElement, Invocation, const m.TypeValue>().type, prefix11.StreamSubscription, Duration, prefix6.Action, prefix6.ActionName, const m.TypeValue().type, const m.TypeValue>().type, List, const m.TypeValue().type, prefix9.L10N], 23, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"eventStreams": (dynamic instance) => instance.eventStreams, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"query": (dynamic instance) => instance.query, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"value": (dynamic instance) => instance.value, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label, r"number": (dynamic instance) => instance.number, r"decorate": (dynamic instance) => instance.decorate, r"uppercase": (dynamic instance) => instance.uppercase, r"lowercase": (dynamic instance) => instance.lowercase, r"choose": (dynamic instance) => instance.choose, r"call": (dynamic instance) => instance.call, r"run": (dynamic instance) => instance.run, r"render": (dynamic instance) => instance.render, r"renderBefore": (dynamic instance) => instance.renderBefore, r"compileElement": (dynamic instance) => instance.compileElement, r"context": (dynamic instance) => instance.context, r"parentContext": (dynamic instance) => instance.parentContext, r"rootContext": (dynamic instance) => instance.rootContext, r"fire": (dynamic instance) => instance.fire, r"on": (dynamic instance) => instance.on, r"emitChange": (dynamic instance) => instance.emitChange, r"onChange": (dynamic instance) => instance.onChange, r"appendNewNodes": (dynamic instance) => instance.appendNewNodes, r"listTag": (dynamic instance) => instance.listTag, r"itemTag": (dynamic instance) => instance.itemTag, r"createFor": (dynamic instance) => instance.createFor, r"setBuilderFor": (dynamic instance) => instance.setBuilderFor}, {r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"value=": (dynamic instance, value) => instance.value = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value, r"context=": (dynamic instance, value) => instance.context = value, r"appendNewNodes=": (dynamic instance, value) => instance.appendNewNodes = value, r"listTag=": (dynamic instance, value) => instance.listTag = value, r"itemTag=": (dynamic instance, value) => instance.itemTag = value}, [new r.LibraryMirrorImpl(r"mdlcomponents", Uri.parse(r"reflectable://0/mdlcomponents"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlformatter", Uri.parse(r"reflectable://1/mdlformatter"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlcore", Uri.parse(r"reflectable://2/mdlcore"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlapplication", Uri.parse(r"reflectable://3/mdlapplication"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlflux", Uri.parse(r"reflectable://4/mdlflux"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdltemplate", Uri.parse(r"reflectable://5/mdltemplate"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdldirective", Uri.parse(r"reflectable://6/mdldirective"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"l10n", Uri.parse(r"reflectable://7/l10n"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null)], []), const prefix2.MustacheMirrorsUsedAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 0, const prefix2.MustacheMirrorsUsedAnnotation(), const [4, 5, 6, 7, 8, 9, 10, 11], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 5, 6, 7, 8, 9, 10], const [4], -1, {r"widget": () => prefix1.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialButton.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 1, const prefix2.MustacheMirrorsUsedAnnotation(), const [34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 39, 29, 30, 31, 32, 33, 50, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48], const [34], -1, {r"widget": () => prefix1.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialCheckbox.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 2, const prefix2.MustacheMirrorsUsedAnnotation(), const [50], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 50], const [], -1, const {}, const {}, const {}, -1, -1, const [-1], null, null)], [new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 3, 4, null), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null), new r.VariableMirrorImpl(r"element", 33797, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null), new r.MethodMirrorImpl(r"widget", 131090, 0, 0, 0, 0, const [0], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 0, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 0, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled=", 262148, 0, null, -1, -1, const [3], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled", 131075, 0, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 0, null, -1, -1, const [4], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 0, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 0, -1, 0, 0, const [1, 2], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"==", 131074, null, -1, 7, 7, const [5], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [6], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 9, 9, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 10, 10, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 0, 3, 4, 17), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [7], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"query", 131074, null, -1, 6, 6, const [8, 9], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"waitForChild", 65538, null, null, null, null, const [10, 11, 12], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 1, 5, 5, 24), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 2, 6, 6, 25), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 3, 7, 7, 26), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 3, 7, 7, 27), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 6, 6, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 11, 11, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 12, 13, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 14, 15, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 16, 17, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 18, 18, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"widget", 131090, 1, 1, 1, 1, const [14], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"check", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"uncheck", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hub", 131075, 1, -1, 6, 6, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"inputElement", 131075, 1, -1, 19, 19, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked=", 262148, 1, null, -1, -1, const [17], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked", 131075, 1, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled=", 262148, 1, null, -1, -1, const [18], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled", 131075, 1, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label", 131075, 1, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label=", 262148, 1, null, -1, -1, const [19], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 1, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 1, null, -1, -1, const [20], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 1, -1, 1, 1, const [15, 16], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"formatterFor", 131074, null, -1, 20, 20, const [21, 22], const prefix2.MustacheMirrorsUsedAnnotation(), null)], [new r.ParameterMirrorImpl(r"element", 33798, 4, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 11, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 11, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null, null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 7, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 9, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"other", 16390, 12, const prefix2.MustacheMirrorsUsedAnnotation(), null, null, null, null, null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 14, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null, null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 19, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 23, 24, null, null, null), new r.ParameterMirrorImpl(r"selector", 33798, 22, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"logError", 48134, 22, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"wait", 48134, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 25, 25, null, const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 9, 9, null, 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 27, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 34, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 49, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 49, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null, null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 41, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 43, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"v", 33798, 46, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 48, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 50, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null, null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 50, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null, null, null)], [prefix1.MaterialButton, prefix1.MaterialCheckbox, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), const m.TypeValue>>().type, List, prefix0.Injector, prefix12.Element, bool, String, int, Type, prefix12.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix12.ElementStream, const m.TypeValue>().type, prefix12.ElementStream, prefix4.MdlComponent, prefix12.CheckboxInputElement, prefix3.MaterialFormatter, prefix12.HtmlElement, Invocation, const m.TypeValue>().type, prefix11.StreamSubscription, Duration], 3, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"eventStreams": (dynamic instance) => instance.eventStreams, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"query": (dynamic instance) => instance.query, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"value": (dynamic instance) => instance.value, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label}, {r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"value=": (dynamic instance, value) => instance.value = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value}, null, [])}; + + +final _memberSymbolMap = null; + +initializeReflectable() { + if (!isTransformed) { + throw new UnsupportedError( + "The transformed code is running with the untransformed " + "reflectable package. Remember to set your package-root to " + "'build/.../packages'."); + } + r.data = _data; + r.memberSymbolMap = _memberSymbolMap; +} diff --git a/samples/mdl_data-table/.analysis_options.yaml b/samples/mdl_data-table/.analysis_options.yaml new file mode 100644 index 0000000..58522ed --- /dev/null +++ b/samples/mdl_data-table/.analysis_options.yaml @@ -0,0 +1,6 @@ +# Analyzer options: +# https://www.dartlang.org/guides/language/analysis-options +# +analyzer: + strong-mode: true + diff --git a/samples/mdl_data-table/.rsync b/samples/mdl_data-table/.rsync new file mode 100644 index 0000000..61a2140 --- /dev/null +++ b/samples/mdl_data-table/.rsync @@ -0,0 +1,14 @@ +# Rsync-Destination für dieses sample +# +# - ssh ls2 +# - cat ~/website/config/nginx/_template.conf.txt | sed -e 's/%example%/mdl_data-table/' > ~/website/config/nginx/mdl_data-table.conf +# - cat ~/website/config/nginx/mdl_data-table.conf +# - sudo mkdir -p ~/website/data/example/mdl_data-table +# - sudo chown ubuntu:ubuntu ~/website/data/example/mdl_data-table +# - sudo chmod 775 ~/website/data/example/mdl_data-table +# - ls -lad ~/website/data/example/mdl_data-table +# - cd ~/website && docker-compose restart +# +RSYNC_DESTINATION=":~/website/data/example/mdl_data-table/" +EXAMPLE_URL="http://mdl_data-table.example.mikemitterer.at/" + diff --git a/samples/mdl_data-table/.sitegen/html/_content/index.html b/samples/mdl_data-table/.sitegen/html/_content/index.html index 1ad6644..f0020f4 100644 --- a/samples/mdl_data-table/.sitegen/html/_content/index.html +++ b/samples/mdl_data-table/.sitegen/html/_content/index.html @@ -1,10 +1,10 @@ title: DATA-TABLE samplename: data-table -sampleurl: https://github.com/MikeMitterer/dart-material-design-lite/tree/master/samples/mdl_data-table/web +sampleurl: https://github.com/MikeMitterer/dart-material-design-lite-site/tree/master/samples/mdl_data-table/web ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- +
diff --git a/samples/mdl_data-table/pubspec.yaml b/samples/mdl_data-table/pubspec.yaml index c830261..21824e6 100644 --- a/samples/mdl_data-table/pubspec.yaml +++ b/samples/mdl_data-table/pubspec.yaml @@ -5,30 +5,24 @@ author: Mike Mitterer homepage: https://github.com/MikeMitterer/dart-material-design-lite dependencies: - browser: any - - intl: ^0.12.0 + intl: ^0.15.0 args: any validate: ^1.0.0 browser_detect: ^1.0.0 - logging: ^0.11.0 - logging_handlers: ^0.8.0 - console_log_handler: ^0.1.0 + logging: '>=0.11.3 <1.0.0' + console_log_handler: ^1.0.0 + # git: git@github.com:MikeMitterer/dart-console_log_handler.git # path: /Volumes/Daten/DevLocal/DevDart/ConsoleLogHandler mdl: + # '>=2.1.0 <3.0.0' + # git: + # url: git@github.com:MikeMitterer/dart-material-design-lite.git + # ref: v2.2 path: /Volumes/Daten/DevLocal/DevDart/MaterialDesignLite - di: ^3.3.0 - - dart_to_js_script_rewriter: ^0.1.0 - -transformers: - - di - - dart_to_js_script_rewriter - -# - $dart2js: -# commandLineOptions: [--enable-experimental-mirrors] -# minify: false -# sourceMaps: true \ No newline at end of file +dev_dependencies: + build_runner: any + build_web_compilers: any + sass_builder: any \ No newline at end of file diff --git a/samples/mdl_data-table/web/index.html b/samples/mdl_data-table/web/index.html index c8e09b7..c0329e6 100644 --- a/samples/mdl_data-table/web/index.html +++ b/samples/mdl_data-table/web/index.html @@ -6,43 +6,57 @@ DATA-TABLE + + + + + + + + + +
Loading...
-
+
DATA-TABLE-Sample
+
@@ -53,7 +67,7 @@
-
Material
+
@@ -80,7 +94,6 @@
Material
- @@ -95,21 +108,25 @@ Mike Mitterer, IT-Consulting and Development Ltd.

+ - - + + + diff --git a/samples/mdl_data-table/web/main.dart b/samples/mdl_data-table/web/main.dart index 97efb88..18d26ed 100644 --- a/samples/mdl_data-table/web/main.dart +++ b/samples/mdl_data-table/web/main.dart @@ -1,25 +1,13 @@ -import "dart:html" as dom; - -import 'package:logging/logging.dart'; import 'package:console_log_handler/console_log_handler.dart'; import 'package:mdl/mdl.dart'; +import 'main.reflectable.dart'; -main() { +main() async { configLogging(); + initializeReflectable(); registerMdl(); - componentFactory().run().then((_) { - - }); + await componentFactory().run(); } - -void configLogging() { - hierarchicalLoggingEnabled = false; // set this to true - its part of Logging SDK - - // now control the logging. - // Turn off all logging first - Logger.root.level = Level.INFO; - Logger.root.onRecord.listen(new LogConsoleHandler()); -} \ No newline at end of file diff --git a/samples/mdl_data-table/web/main.reflectable.dart b/samples/mdl_data-table/web/main.reflectable.dart new file mode 100644 index 0000000..f34467b --- /dev/null +++ b/samples/mdl_data-table/web/main.reflectable.dart @@ -0,0 +1,40 @@ +// This file has been generated by the reflectable package. +// https://github.com/dart-lang/reflectable. + +import "dart:core"; +import 'dart:async' as prefix11; +import 'dart:html' as prefix12; +import 'package:dryice/dryice.dart' as prefix0; +import 'package:l10n/l10n.dart' as prefix9; +import 'package:mdl/mdlapplication.dart' as prefix5; +import 'package:mdl/mdlcomponents.dart' as prefix1; +import 'package:mdl/mdlcore.dart' as prefix4; +import 'package:mdl/mdldirective.dart' as prefix8; +import 'package:mdl/mdlflux.dart' as prefix6; +import 'package:mdl/mdlformatter.dart' as prefix3; +import 'package:mdl/mdltemplate.dart' as prefix7; +import 'package:mdl/src/core/annotations.dart' as prefix10; +import 'package:mustache/mustache.dart' as prefix2; + +// ignore:unused_import +import "package:reflectable/mirrors.dart" as m; +// ignore:unused_import +import "package:reflectable/src/reflectable_transformer_based.dart" as r; +// ignore:unused_import +import "package:reflectable/reflectable.dart" show isTransformed; + +final _data = {const prefix0.InjectAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"MaterialBadge", r"mdlcomponents.MaterialBadge", 7, 0, const prefix0.InjectAnnotation(), const [13, 14, 15, 16], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 14, 15], const [13], -1, {r"widget": () => prefix1.MaterialBadge.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialBadge.fromElement(element, injector) : null}, 0, 0, const [], const [prefix10.Component, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 1, const prefix0.InjectAnnotation(), const [39, 40, 41, 42, 43, 44, 45, 46], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45], const [39], -1, {r"widget": () => prefix1.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialButton.fromElement(element, injector) : null}, 0, 1, const [], const [prefix10.Component, prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 2, const prefix0.InjectAnnotation(), const [47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 52, 34, 35, 36, 37, 38, 63, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61], const [47], 22, {r"widget": () => prefix1.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialCheckbox.fromElement(element, injector) : null}, 0, 2, const [], const [prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"Formatter", r"mdlformatter.Formatter", 7, 3, const prefix0.InjectAnnotation(), const [4, 5, 6, 7, 8, 69], const [17, 18, 19, 20, 21, 64, 65, 66, 67, 68], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.Formatter() : null}, 1, 3, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FallbackFormatter", r"mdlformatter.FallbackFormatter", 519, 4, const prefix0.InjectAnnotation(), const [63, 70], const [17, 18, 19, 20, 21, 63], const [], -1, {}, {}, {}, 1, 4, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ChooseFormatter", r"mdlformatter.ChooseFormatter", 7, 5, const prefix0.InjectAnnotation(), const [71, 72, 73], const [17, 18, 19, 20, 21, 71, 72], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.ChooseFormatter() : null}, 1, 5, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DecoratorFormatter", r"mdlformatter.DecoratorFormatter", 7, 6, const prefix0.InjectAnnotation(), const [74, 75, 76], const [17, 18, 19, 20, 21, 74, 75], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.DecoratorFormatter() : null}, 1, 6, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"LowerCaseFormatter", r"mdlformatter.LowerCaseFormatter", 7, 7, const prefix0.InjectAnnotation(), const [77, 78, 79], const [17, 18, 19, 20, 21, 77, 78], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.LowerCaseFormatter() : null}, 1, 7, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"NumberFormatter", r"mdlformatter.NumberFormatter", 7, 8, const prefix0.InjectAnnotation(), const [80, 81, 82], const [17, 18, 19, 20, 21, 80, 81], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.NumberFormatter() : null}, 1, 8, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"UpperCaseFormatter", r"mdlformatter.UpperCaseFormatter", 7, 9, const prefix0.InjectAnnotation(), const [83, 84, 85], const [17, 18, 19, 20, 21, 83, 84], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.UpperCaseFormatter() : null}, 1, 9, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialApplication", r"mdlcore.MaterialApplication", 7, 10, const prefix0.InjectAnnotation(), const [86, 87], const [17, 18, 19, 20, 21, 86], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix4.MaterialApplication() : null}, 2, 10, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DomRenderer", r"mdlapplication.DomRenderer", 7, 11, const prefix0.InjectAnnotation(), const [88, 89, 90], const [17, 18, 19, 20, 21, 88, 89], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.DomRenderer() : null}, 3, 11, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"EventCompiler", r"mdlapplication.EventCompiler", 7, 12, const prefix0.InjectAnnotation(), const [9, 91, 93], const [17, 18, 19, 20, 21, 91], const [92], -1, {r"datasets": () => prefix5.EventCompiler.datasets}, {}, {r"": (b) => () => b ? new prefix5.EventCompiler() : null}, 3, 12, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"RootScope", r"mdlapplication.RootScope", 7, 13, const prefix0.InjectAnnotation(), const [94], const [17, 18, 19, 20, 21, 95, 96, 97, 98], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.RootScope() : null}, 3, 13, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBus", r"mdlflux.ActionBus", 519, 14, const prefix0.InjectAnnotation(), const [99, 100, 101], const [17, 18, 19, 20, 21], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix6.ActionBus() : null}, 4, 14, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBusImpl", r"mdlflux.ActionBusImpl", 7, 15, const prefix0.InjectAnnotation(), const [102, 103, 104], const [17, 18, 19, 20, 21, 102, 103], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix6.ActionBusImpl() : null}, 4, 15, const [14], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DataStore", r"mdlflux.DataStore", 519, 16, const prefix0.InjectAnnotation(), const [105, 106], const [17, 18, 19, 20, 21, 107, 108], const [], -1, {}, {}, {}, 4, 16, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FireOnlyDataStore", r"mdlflux.FireOnlyDataStore", 7, 17, const prefix0.InjectAnnotation(), const [109, 110], const [17, 18, 19, 20, 21, 107, 108, 109], const [], 16, {}, {}, {r"": (b) => (_actionbus) => b ? new prefix6.FireOnlyDataStore(_actionbus) : null}, 4, 17, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"TemplateRenderer", r"mdltemplate.TemplateRenderer", 7, 18, const prefix0.InjectAnnotation(), const [10, 111, 112, 115], const [17, 18, 19, 20, 21, 111, 112, 113, 114], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix7.TemplateRenderer(_renderer, _eventCompiler) : null}, 5, 18, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ListRenderer", r"mdltemplate.ListRenderer", 7, 19, const prefix0.InjectAnnotation(), const [11, 12, 116, 121], const [17, 18, 19, 20, 21, 116, 117, 118, 119, 120], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix7.ListRenderer(_renderer, _eventCompiler) : null}, 5, 19, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ModelObserverFactory", r"mdldirective.ModelObserverFactory", 7, 20, const prefix0.InjectAnnotation(), const [122, 123, 124], const [17, 18, 19, 20, 21, 122, 123], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix8.ModelObserverFactory() : null}, 6, 20, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"Translator", r"l10n.Translator", 519, 21, const prefix0.InjectAnnotation(), const [125, 126, 127], const [17, 18, 19, 20, 21, 126], const [], -1, {}, {}, {}, 7, 21, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 22, const prefix0.InjectAnnotation(), const [63], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 63], const [], -1, const {}, const {}, const {}, 0, 4, const [], const [], null)], [new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix0.InjectAnnotation(), -1, 23, 24, const []), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix0.InjectAnnotation(), -1, 25, 25, const []), new r.VariableMirrorImpl(r"element", 33797, null, const prefix0.InjectAnnotation(), -1, 26, 26, const []), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix0.InjectAnnotation(), -1, 27, 27, const []), new r.VariableMirrorImpl(r"number", 33797, 3, const prefix0.InjectAnnotation(), 8, 8, 8, const []), new r.VariableMirrorImpl(r"decorate", 33797, 3, const prefix0.InjectAnnotation(), 6, 6, 6, const []), new r.VariableMirrorImpl(r"uppercase", 33797, 3, const prefix0.InjectAnnotation(), 9, 9, 9, const []), new r.VariableMirrorImpl(r"lowercase", 33797, 3, const prefix0.InjectAnnotation(), 7, 7, 7, const []), new r.VariableMirrorImpl(r"choose", 33797, 3, const prefix0.InjectAnnotation(), 5, 5, 5, const []), new r.VariableMirrorImpl(r"datasets", 2130965, 12, const prefix0.InjectAnnotation(), -1, 28, 29, const []), new r.VariableMirrorImpl(r"appendNewNodes", 32773, 18, const prefix0.InjectAnnotation(), -1, 27, 27, const []), new r.VariableMirrorImpl(r"listTag", 32773, 19, const prefix0.InjectAnnotation(), -1, 30, 30, const []), new r.VariableMirrorImpl(r"itemTag", 32773, 19, const prefix0.InjectAnnotation(), -1, 30, 30, const []), new r.MethodMirrorImpl(r"widget", 131090, 0, 0, 0, 0, const [0], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 0, null, -1, -1, const [3], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 0, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 0, -1, 0, 0, const [1, 2], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"==", 131074, null, -1, 27, 27, const [4], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [5], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 31, 31, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 32, 32, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 0, 23, 24, 22), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [6], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"query", 131074, null, -1, 26, 26, const [7, 8], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"waitForChild", 65538, null, null, null, null, const [9, 10, 11], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 1, 25, 25, 29), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 2, 26, 26, 30), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 27, 27, 31), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 27, 27, 32), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 26, 26, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 33, 33, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 34, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 36, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 38, 39, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 1, 1, 1, 1, const [13], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 1, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 1, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled=", 262148, 1, null, -1, -1, const [16], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled", 131075, 1, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 1, null, -1, -1, const [17], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 1, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 1, -1, 1, 1, const [14, 15], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 2, 2, 2, 2, const [18], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"check", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uncheck", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hub", 131075, 2, -1, 26, 26, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"inputElement", 131075, 2, -1, 41, 41, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked=", 262148, 2, null, -1, -1, const [21], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked", 131075, 2, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled=", 262148, 2, null, -1, -1, const [22], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled", 131075, 2, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label", 131075, 2, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label=", 262148, 2, null, -1, -1, const [23], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 2, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 2, null, -1, -1, const [24], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 2, -1, 2, 2, const [19, 20], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"formatterFor", 131074, 4, -1, 42, 42, const [25, 26], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 4, 8, 8, 64), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 5, 6, 6, 65), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 6, 9, 9, 66), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 7, 7, 7, 67), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 8, 5, 5, 68), new r.MethodMirrorImpl(r"", 64, 3, -1, 3, 3, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 4, -1, 4, 4, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"choose", 131074, 5, -1, 30, 30, const [27, 28, 29], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 5, -1, 30, 30, const [30, 31, 32], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 5, -1, 5, 5, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"decorate", 131074, 6, -1, 30, 30, const [33], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 6, -1, 30, 30, const [34], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 6, -1, 6, 6, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"lowercase", 131074, 7, -1, 30, 30, const [35], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 7, -1, 30, 30, const [36], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 7, -1, 7, 7, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"number", 131074, 8, -1, 30, 30, const [37, 38], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 8, -1, 30, 30, const [39, 40], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 8, -1, 8, 8, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uppercase", 131074, 9, -1, 30, 30, const [41], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 9, -1, 30, 30, const [42], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 9, -1, 9, 9, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"run", 262146, 10, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 10, -1, 10, 10, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"render", 4325378, 11, -1, 43, 44, const [43, 44, 45], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"renderBefore", 4325378, 11, -1, 43, 44, const [46, 47, 48], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 11, -1, 11, 11, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"compileElement", 4325378, 12, -1, 45, 46, const [49, 50], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 9, 28, 29, 92), new r.MethodMirrorImpl(r"", 0, 12, -1, 12, 12, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 13, -1, 13, 13, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context=", 262148, null, null, -1, -1, const [51], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parentContext", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"rootContext", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 14, null, -1, -1, const [52], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"on", 4325890, 14, -1, 48, 49, const [53], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 1, 14, -1, 14, 14, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 15, null, -1, -1, const [54], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"on", 4325378, 15, -1, 48, 49, const [55], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 1, 15, -1, 15, 15, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 16, null, -1, -1, const [56], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 16, -1, 16, 16, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"emitChange", 262146, null, null, -1, -1, const [57], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onChange", 4325379, null, -1, 50, 51, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 17, null, -1, -1, const [58], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 0, 17, -1, 17, 17, const [59], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 18, -1, 52, 52, const [60, 61, 62], const prefix0.InjectAnnotation(), const [deprecated]), new r.MethodMirrorImpl(r"render", 4325378, 18, -1, 45, 46, const [63, 64, 65, 66], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 27, 27, 113), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 27, 27, 114), new r.MethodMirrorImpl(r"", 0, 18, -1, 18, 18, const [67, 68], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 19, -1, 52, 52, const [70, 71, 72, 73], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 30, 30, 117), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 30, 30, 118), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 12, 30, 30, 119), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 12, 30, 30, 120), new r.MethodMirrorImpl(r"", 0, 19, -1, 19, 19, const [74, 75], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"createFor", 131074, 20, -1, 53, 53, const [78], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"setBuilderFor", 262146, 20, null, -1, -1, const [79, 80], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 20, -1, 20, 20, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"translate", 131586, 21, -1, 30, 30, const [81], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 21, -1, 30, 30, const [82], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 21, -1, 21, 21, const [], const prefix0.InjectAnnotation(), const [])], [new r.ParameterMirrorImpl(r"element", 33798, 13, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 16, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 16, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 14, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"other", 16390, 17, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 19, const prefix0.InjectAnnotation(), -1, 55, 55, const [], null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 24, const prefix0.InjectAnnotation(), -1, 56, 57, const [], null, null), new r.ParameterMirrorImpl(r"selector", 33798, 27, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"logError", 48134, 27, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 28, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"wait", 48134, 28, const prefix0.InjectAnnotation(), -1, 58, 58, const [], const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 28, const prefix0.InjectAnnotation(), -1, 31, 31, const [], 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 32, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 39, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 46, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 46, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 42, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 44, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 47, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 62, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 62, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 54, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 56, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"v", 33798, 59, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 61, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 63, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 63, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 71, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"option1", 39942, 71, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "Yes", null), new r.ParameterMirrorImpl(r"option2", 39942, 71, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "No", null), new r.ParameterMirrorImpl(r"value", 17414, 72, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"option1", 39942, 72, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "Yes", null), new r.ParameterMirrorImpl(r"option2", 39942, 72, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "No", null), new r.ParameterMirrorImpl(r"value", 17414, 74, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 75, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 77, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 78, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicValue", 17414, 80, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicFractionSize", 21510, 80, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 81, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"fractionSize", 21510, 81, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 83, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 84, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 88, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 88, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 88, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"parent", 33798, 89, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"reference", 33798, 89, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 89, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 91, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 91, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"cntxt", 33798, 96, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 99, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 100, const prefix0.InjectAnnotation(), -1, 60, 60, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 102, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 103, const prefix0.InjectAnnotation(), -1, 60, 60, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 105, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"action", 48134, 107, const prefix0.InjectAnnotation(), -1, 59, 59, const [], prefix6.UpdateViewAction, #action), new r.ParameterMirrorImpl(r"action", 33798, 109, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"_actionbus", 32806, 110, const prefix0.InjectAnnotation(), 14, 14, 14, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 111, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 111, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 111, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 112, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 112, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 112, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 112, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"_renderer", 32806, 115, const prefix0.InjectAnnotation(), 11, 11, 11, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 115, const prefix0.InjectAnnotation(), 12, 12, 12, const [], null, null), new r.ParameterMirrorImpl(r"_appendNewNodes", 32870, 114, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 116, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 116, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"items", 2130950, 116, const prefix0.InjectAnnotation(), -1, 62, 63, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 116, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"_renderer", 32806, 121, const prefix0.InjectAnnotation(), 11, 11, 11, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 121, const prefix0.InjectAnnotation(), 12, 12, 12, const [], null, null), new r.ParameterMirrorImpl(r"_listTag", 32870, 118, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"_itemTag", 32870, 120, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 122, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"type", 33798, 123, const prefix0.InjectAnnotation(), -1, 32, 32, const [], null, null), new r.ParameterMirrorImpl(r"builder", 1030, 123, const prefix0.InjectAnnotation(), null, 64, 64, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 125, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 126, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null)], [prefix1.MaterialBadge, prefix1.MaterialButton, prefix1.MaterialCheckbox, prefix3.Formatter, prefix3.FallbackFormatter, prefix3.ChooseFormatter, prefix3.DecoratorFormatter, prefix3.LowerCaseFormatter, prefix3.NumberFormatter, prefix3.UpperCaseFormatter, prefix4.MaterialApplication, prefix5.DomRenderer, prefix5.EventCompiler, prefix5.RootScope, prefix6.ActionBus, prefix6.ActionBusImpl, prefix6.DataStore, prefix6.FireOnlyDataStore, prefix7.TemplateRenderer, prefix7.ListRenderer, prefix8.ModelObserverFactory, prefix9.Translator, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), const m.TypeValue>>().type, List, prefix0.Injector, prefix12.Element, bool, const m.TypeValue>().type, Map, String, int, Type, prefix12.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix12.ElementStream, const m.TypeValue>().type, prefix12.ElementStream, prefix4.MdlComponent, prefix12.CheckboxInputElement, prefix3.MaterialFormatter, const m.TypeValue>().type, prefix11.Future, const m.TypeValue>().type, prefix11.Future, Object, const m.TypeValue>().type, prefix11.Stream, const m.TypeValue>>().type, prefix11.Stream, prefix7.Renderer, prefix8.ModelObserver, prefix12.HtmlElement, Invocation, const m.TypeValue>().type, prefix11.StreamSubscription, Duration, prefix6.Action, prefix6.ActionName, const m.TypeValue().type, const m.TypeValue>().type, List, const m.TypeValue().type, prefix9.L10N], 23, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"eventStreams": (dynamic instance) => instance.eventStreams, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"query": (dynamic instance) => instance.query, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"value": (dynamic instance) => instance.value, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label, r"number": (dynamic instance) => instance.number, r"decorate": (dynamic instance) => instance.decorate, r"uppercase": (dynamic instance) => instance.uppercase, r"lowercase": (dynamic instance) => instance.lowercase, r"choose": (dynamic instance) => instance.choose, r"call": (dynamic instance) => instance.call, r"run": (dynamic instance) => instance.run, r"render": (dynamic instance) => instance.render, r"renderBefore": (dynamic instance) => instance.renderBefore, r"compileElement": (dynamic instance) => instance.compileElement, r"context": (dynamic instance) => instance.context, r"parentContext": (dynamic instance) => instance.parentContext, r"rootContext": (dynamic instance) => instance.rootContext, r"fire": (dynamic instance) => instance.fire, r"on": (dynamic instance) => instance.on, r"emitChange": (dynamic instance) => instance.emitChange, r"onChange": (dynamic instance) => instance.onChange, r"appendNewNodes": (dynamic instance) => instance.appendNewNodes, r"listTag": (dynamic instance) => instance.listTag, r"itemTag": (dynamic instance) => instance.itemTag, r"createFor": (dynamic instance) => instance.createFor, r"setBuilderFor": (dynamic instance) => instance.setBuilderFor}, {r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"value=": (dynamic instance, value) => instance.value = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value, r"context=": (dynamic instance, value) => instance.context = value, r"appendNewNodes=": (dynamic instance, value) => instance.appendNewNodes = value, r"listTag=": (dynamic instance, value) => instance.listTag = value, r"itemTag=": (dynamic instance, value) => instance.itemTag = value}, [new r.LibraryMirrorImpl(r"mdlcomponents", Uri.parse(r"reflectable://0/mdlcomponents"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlformatter", Uri.parse(r"reflectable://1/mdlformatter"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlcore", Uri.parse(r"reflectable://2/mdlcore"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlapplication", Uri.parse(r"reflectable://3/mdlapplication"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlflux", Uri.parse(r"reflectable://4/mdlflux"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdltemplate", Uri.parse(r"reflectable://5/mdltemplate"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdldirective", Uri.parse(r"reflectable://6/mdldirective"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"l10n", Uri.parse(r"reflectable://7/l10n"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null)], []), const prefix2.MustacheMirrorsUsedAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 0, const prefix2.MustacheMirrorsUsedAnnotation(), const [4, 5, 6, 7, 8, 9, 10, 11], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 5, 6, 7, 8, 9, 10], const [4], -1, {r"widget": () => prefix1.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialButton.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 1, const prefix2.MustacheMirrorsUsedAnnotation(), const [34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 39, 29, 30, 31, 32, 33, 50, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48], const [34], -1, {r"widget": () => prefix1.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialCheckbox.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 2, const prefix2.MustacheMirrorsUsedAnnotation(), const [50], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 50], const [], -1, const {}, const {}, const {}, -1, -1, const [-1], null, null)], [new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 3, 4, null), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null), new r.VariableMirrorImpl(r"element", 33797, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null), new r.MethodMirrorImpl(r"widget", 131090, 0, 0, 0, 0, const [0], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 0, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 0, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled=", 262148, 0, null, -1, -1, const [3], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled", 131075, 0, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 0, null, -1, -1, const [4], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 0, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 0, -1, 0, 0, const [1, 2], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"==", 131074, null, -1, 7, 7, const [5], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [6], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 9, 9, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 10, 10, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 0, 3, 4, 17), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [7], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"query", 131074, null, -1, 6, 6, const [8, 9], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"waitForChild", 65538, null, null, null, null, const [10, 11, 12], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 1, 5, 5, 24), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 2, 6, 6, 25), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 3, 7, 7, 26), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 3, 7, 7, 27), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 6, 6, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 11, 11, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 12, 13, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 14, 15, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 16, 17, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 18, 18, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"widget", 131090, 1, 1, 1, 1, const [14], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"check", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"uncheck", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hub", 131075, 1, -1, 6, 6, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"inputElement", 131075, 1, -1, 19, 19, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked=", 262148, 1, null, -1, -1, const [17], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked", 131075, 1, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled=", 262148, 1, null, -1, -1, const [18], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled", 131075, 1, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label", 131075, 1, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label=", 262148, 1, null, -1, -1, const [19], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 1, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 1, null, -1, -1, const [20], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 1, -1, 1, 1, const [15, 16], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"formatterFor", 131074, null, -1, 20, 20, const [21, 22], const prefix2.MustacheMirrorsUsedAnnotation(), null)], [new r.ParameterMirrorImpl(r"element", 33798, 4, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 11, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 11, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null, null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 7, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 9, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"other", 16390, 12, const prefix2.MustacheMirrorsUsedAnnotation(), null, null, null, null, null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 14, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null, null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 19, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 23, 24, null, null, null), new r.ParameterMirrorImpl(r"selector", 33798, 22, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"logError", 48134, 22, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"wait", 48134, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 25, 25, null, const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 9, 9, null, 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 27, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 34, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 49, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 49, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null, null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 41, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 43, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"v", 33798, 46, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 48, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 50, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null, null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 50, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null, null, null)], [prefix1.MaterialButton, prefix1.MaterialCheckbox, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), const m.TypeValue>>().type, List, prefix0.Injector, prefix12.Element, bool, String, int, Type, prefix12.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix12.ElementStream, const m.TypeValue>().type, prefix12.ElementStream, prefix4.MdlComponent, prefix12.CheckboxInputElement, prefix3.MaterialFormatter, prefix12.HtmlElement, Invocation, const m.TypeValue>().type, prefix11.StreamSubscription, Duration], 3, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"eventStreams": (dynamic instance) => instance.eventStreams, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"query": (dynamic instance) => instance.query, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"value": (dynamic instance) => instance.value, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label}, {r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"value=": (dynamic instance, value) => instance.value = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value}, null, [])}; + + +final _memberSymbolMap = null; + +initializeReflectable() { + if (!isTransformed) { + throw new UnsupportedError( + "The transformed code is running with the untransformed " + "reflectable package. Remember to set your package-root to " + "'build/.../packages'."); + } + r.data = _data; + r.memberSymbolMap = _memberSymbolMap; +} diff --git a/samples/mdl_footer/.analysis_options.yaml b/samples/mdl_footer/.analysis_options.yaml new file mode 100644 index 0000000..58522ed --- /dev/null +++ b/samples/mdl_footer/.analysis_options.yaml @@ -0,0 +1,6 @@ +# Analyzer options: +# https://www.dartlang.org/guides/language/analysis-options +# +analyzer: + strong-mode: true + diff --git a/samples/mdl_footer/.rsync b/samples/mdl_footer/.rsync new file mode 100644 index 0000000..bcd64dd --- /dev/null +++ b/samples/mdl_footer/.rsync @@ -0,0 +1,14 @@ +# Rsync-Destination für dieses sample +# +# - ssh ls2 +# - cat ~/website/config/nginx/_template.conf.txt | sed -e 's/%example%/mdl_footer/' > ~/website/config/nginx/mdl_footer.conf +# - cat ~/website/config/nginx/mdl_footer.conf +# - sudo mkdir -p ~/website/data/example/mdl_footer +# - sudo chown ubuntu:ubuntu ~/website/data/example/mdl_footer +# - sudo chmod 775 ~/website/data/example/mdl_footer +# - ls -lad ~/website/data/example/mdl_footer +# - cd ~/website && docker-compose restart +# +RSYNC_DESTINATION=":~/website/data/example/mdl_footer/" +EXAMPLE_URL="http://mdl_footer.example.mikemitterer.at/" + diff --git a/samples/mdl_footer/.sitegen/html/_content/index.html b/samples/mdl_footer/.sitegen/html/_content/index.html index ce9c13d..e96be6f 100644 --- a/samples/mdl_footer/.sitegen/html/_content/index.html +++ b/samples/mdl_footer/.sitegen/html/_content/index.html @@ -1,6 +1,6 @@ title: FOOTER samplename: footer -sampleurl: https://github.com/MikeMitterer/dart-material-design-lite/tree/master/samples/mdl_footer/web +sampleurl: https://github.com/MikeMitterer/dart-material-design-lite-site/tree/master/samples/mdl_footer/web ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/samples/mdl_footer/pubspec.yaml b/samples/mdl_footer/pubspec.yaml index 6e59b7b..783e335 100644 --- a/samples/mdl_footer/pubspec.yaml +++ b/samples/mdl_footer/pubspec.yaml @@ -5,30 +5,24 @@ author: Mike Mitterer homepage: https://github.com/MikeMitterer/dart-material-design-lite dependencies: - browser: any - - intl: ^0.12.0 + intl: ^0.15.0 args: any validate: ^1.0.0 browser_detect: ^1.0.0 - logging: ^0.11.0 - logging_handlers: ^0.8.0 - console_log_handler: ^0.1.0 + logging: '>=0.11.3 <1.0.0' + console_log_handler: ^1.0.0 + # git: git@github.com:MikeMitterer/dart-console_log_handler.git # path: /Volumes/Daten/DevLocal/DevDart/ConsoleLogHandler mdl: + # '>=2.1.0 <3.0.0' + # git: + # url: git@github.com:MikeMitterer/dart-material-design-lite.git + # ref: v2.2 path: /Volumes/Daten/DevLocal/DevDart/MaterialDesignLite - di: ^3.3.0 - - dart_to_js_script_rewriter: ^0.1.0 - -transformers: - - di - - dart_to_js_script_rewriter - -# - $dart2js: -# commandLineOptions: [--enable-experimental-mirrors] -# minify: false -# sourceMaps: true \ No newline at end of file +dev_dependencies: + build_runner: any + build_web_compilers: any + sass_builder: any \ No newline at end of file diff --git a/samples/mdl_footer/web/index.html b/samples/mdl_footer/web/index.html index 54decb9..f092301 100644 --- a/samples/mdl_footer/web/index.html +++ b/samples/mdl_footer/web/index.html @@ -6,43 +6,57 @@ FOOTER + + + + + + + + + +
Loading...
-
+
FOOTER-Sample
+
@@ -121,7 +135,6 @@

FAQ

-
@@ -136,21 +149,25 @@

FAQ

Mike Mitterer, IT-Consulting and Development Ltd.

+ - - + + + diff --git a/samples/mdl_footer/web/main.dart b/samples/mdl_footer/web/main.dart index 97efb88..18d26ed 100644 --- a/samples/mdl_footer/web/main.dart +++ b/samples/mdl_footer/web/main.dart @@ -1,25 +1,13 @@ -import "dart:html" as dom; - -import 'package:logging/logging.dart'; import 'package:console_log_handler/console_log_handler.dart'; import 'package:mdl/mdl.dart'; +import 'main.reflectable.dart'; -main() { +main() async { configLogging(); + initializeReflectable(); registerMdl(); - componentFactory().run().then((_) { - - }); + await componentFactory().run(); } - -void configLogging() { - hierarchicalLoggingEnabled = false; // set this to true - its part of Logging SDK - - // now control the logging. - // Turn off all logging first - Logger.root.level = Level.INFO; - Logger.root.onRecord.listen(new LogConsoleHandler()); -} \ No newline at end of file diff --git a/samples/mdl_footer/web/main.reflectable.dart b/samples/mdl_footer/web/main.reflectable.dart new file mode 100644 index 0000000..f34467b --- /dev/null +++ b/samples/mdl_footer/web/main.reflectable.dart @@ -0,0 +1,40 @@ +// This file has been generated by the reflectable package. +// https://github.com/dart-lang/reflectable. + +import "dart:core"; +import 'dart:async' as prefix11; +import 'dart:html' as prefix12; +import 'package:dryice/dryice.dart' as prefix0; +import 'package:l10n/l10n.dart' as prefix9; +import 'package:mdl/mdlapplication.dart' as prefix5; +import 'package:mdl/mdlcomponents.dart' as prefix1; +import 'package:mdl/mdlcore.dart' as prefix4; +import 'package:mdl/mdldirective.dart' as prefix8; +import 'package:mdl/mdlflux.dart' as prefix6; +import 'package:mdl/mdlformatter.dart' as prefix3; +import 'package:mdl/mdltemplate.dart' as prefix7; +import 'package:mdl/src/core/annotations.dart' as prefix10; +import 'package:mustache/mustache.dart' as prefix2; + +// ignore:unused_import +import "package:reflectable/mirrors.dart" as m; +// ignore:unused_import +import "package:reflectable/src/reflectable_transformer_based.dart" as r; +// ignore:unused_import +import "package:reflectable/reflectable.dart" show isTransformed; + +final _data = {const prefix0.InjectAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"MaterialBadge", r"mdlcomponents.MaterialBadge", 7, 0, const prefix0.InjectAnnotation(), const [13, 14, 15, 16], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 14, 15], const [13], -1, {r"widget": () => prefix1.MaterialBadge.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialBadge.fromElement(element, injector) : null}, 0, 0, const [], const [prefix10.Component, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 1, const prefix0.InjectAnnotation(), const [39, 40, 41, 42, 43, 44, 45, 46], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45], const [39], -1, {r"widget": () => prefix1.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialButton.fromElement(element, injector) : null}, 0, 1, const [], const [prefix10.Component, prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 2, const prefix0.InjectAnnotation(), const [47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 52, 34, 35, 36, 37, 38, 63, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61], const [47], 22, {r"widget": () => prefix1.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialCheckbox.fromElement(element, injector) : null}, 0, 2, const [], const [prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"Formatter", r"mdlformatter.Formatter", 7, 3, const prefix0.InjectAnnotation(), const [4, 5, 6, 7, 8, 69], const [17, 18, 19, 20, 21, 64, 65, 66, 67, 68], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.Formatter() : null}, 1, 3, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FallbackFormatter", r"mdlformatter.FallbackFormatter", 519, 4, const prefix0.InjectAnnotation(), const [63, 70], const [17, 18, 19, 20, 21, 63], const [], -1, {}, {}, {}, 1, 4, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ChooseFormatter", r"mdlformatter.ChooseFormatter", 7, 5, const prefix0.InjectAnnotation(), const [71, 72, 73], const [17, 18, 19, 20, 21, 71, 72], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.ChooseFormatter() : null}, 1, 5, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DecoratorFormatter", r"mdlformatter.DecoratorFormatter", 7, 6, const prefix0.InjectAnnotation(), const [74, 75, 76], const [17, 18, 19, 20, 21, 74, 75], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.DecoratorFormatter() : null}, 1, 6, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"LowerCaseFormatter", r"mdlformatter.LowerCaseFormatter", 7, 7, const prefix0.InjectAnnotation(), const [77, 78, 79], const [17, 18, 19, 20, 21, 77, 78], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.LowerCaseFormatter() : null}, 1, 7, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"NumberFormatter", r"mdlformatter.NumberFormatter", 7, 8, const prefix0.InjectAnnotation(), const [80, 81, 82], const [17, 18, 19, 20, 21, 80, 81], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.NumberFormatter() : null}, 1, 8, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"UpperCaseFormatter", r"mdlformatter.UpperCaseFormatter", 7, 9, const prefix0.InjectAnnotation(), const [83, 84, 85], const [17, 18, 19, 20, 21, 83, 84], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.UpperCaseFormatter() : null}, 1, 9, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialApplication", r"mdlcore.MaterialApplication", 7, 10, const prefix0.InjectAnnotation(), const [86, 87], const [17, 18, 19, 20, 21, 86], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix4.MaterialApplication() : null}, 2, 10, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DomRenderer", r"mdlapplication.DomRenderer", 7, 11, const prefix0.InjectAnnotation(), const [88, 89, 90], const [17, 18, 19, 20, 21, 88, 89], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.DomRenderer() : null}, 3, 11, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"EventCompiler", r"mdlapplication.EventCompiler", 7, 12, const prefix0.InjectAnnotation(), const [9, 91, 93], const [17, 18, 19, 20, 21, 91], const [92], -1, {r"datasets": () => prefix5.EventCompiler.datasets}, {}, {r"": (b) => () => b ? new prefix5.EventCompiler() : null}, 3, 12, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"RootScope", r"mdlapplication.RootScope", 7, 13, const prefix0.InjectAnnotation(), const [94], const [17, 18, 19, 20, 21, 95, 96, 97, 98], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.RootScope() : null}, 3, 13, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBus", r"mdlflux.ActionBus", 519, 14, const prefix0.InjectAnnotation(), const [99, 100, 101], const [17, 18, 19, 20, 21], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix6.ActionBus() : null}, 4, 14, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBusImpl", r"mdlflux.ActionBusImpl", 7, 15, const prefix0.InjectAnnotation(), const [102, 103, 104], const [17, 18, 19, 20, 21, 102, 103], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix6.ActionBusImpl() : null}, 4, 15, const [14], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DataStore", r"mdlflux.DataStore", 519, 16, const prefix0.InjectAnnotation(), const [105, 106], const [17, 18, 19, 20, 21, 107, 108], const [], -1, {}, {}, {}, 4, 16, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FireOnlyDataStore", r"mdlflux.FireOnlyDataStore", 7, 17, const prefix0.InjectAnnotation(), const [109, 110], const [17, 18, 19, 20, 21, 107, 108, 109], const [], 16, {}, {}, {r"": (b) => (_actionbus) => b ? new prefix6.FireOnlyDataStore(_actionbus) : null}, 4, 17, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"TemplateRenderer", r"mdltemplate.TemplateRenderer", 7, 18, const prefix0.InjectAnnotation(), const [10, 111, 112, 115], const [17, 18, 19, 20, 21, 111, 112, 113, 114], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix7.TemplateRenderer(_renderer, _eventCompiler) : null}, 5, 18, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ListRenderer", r"mdltemplate.ListRenderer", 7, 19, const prefix0.InjectAnnotation(), const [11, 12, 116, 121], const [17, 18, 19, 20, 21, 116, 117, 118, 119, 120], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix7.ListRenderer(_renderer, _eventCompiler) : null}, 5, 19, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ModelObserverFactory", r"mdldirective.ModelObserverFactory", 7, 20, const prefix0.InjectAnnotation(), const [122, 123, 124], const [17, 18, 19, 20, 21, 122, 123], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix8.ModelObserverFactory() : null}, 6, 20, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"Translator", r"l10n.Translator", 519, 21, const prefix0.InjectAnnotation(), const [125, 126, 127], const [17, 18, 19, 20, 21, 126], const [], -1, {}, {}, {}, 7, 21, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 22, const prefix0.InjectAnnotation(), const [63], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 63], const [], -1, const {}, const {}, const {}, 0, 4, const [], const [], null)], [new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix0.InjectAnnotation(), -1, 23, 24, const []), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix0.InjectAnnotation(), -1, 25, 25, const []), new r.VariableMirrorImpl(r"element", 33797, null, const prefix0.InjectAnnotation(), -1, 26, 26, const []), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix0.InjectAnnotation(), -1, 27, 27, const []), new r.VariableMirrorImpl(r"number", 33797, 3, const prefix0.InjectAnnotation(), 8, 8, 8, const []), new r.VariableMirrorImpl(r"decorate", 33797, 3, const prefix0.InjectAnnotation(), 6, 6, 6, const []), new r.VariableMirrorImpl(r"uppercase", 33797, 3, const prefix0.InjectAnnotation(), 9, 9, 9, const []), new r.VariableMirrorImpl(r"lowercase", 33797, 3, const prefix0.InjectAnnotation(), 7, 7, 7, const []), new r.VariableMirrorImpl(r"choose", 33797, 3, const prefix0.InjectAnnotation(), 5, 5, 5, const []), new r.VariableMirrorImpl(r"datasets", 2130965, 12, const prefix0.InjectAnnotation(), -1, 28, 29, const []), new r.VariableMirrorImpl(r"appendNewNodes", 32773, 18, const prefix0.InjectAnnotation(), -1, 27, 27, const []), new r.VariableMirrorImpl(r"listTag", 32773, 19, const prefix0.InjectAnnotation(), -1, 30, 30, const []), new r.VariableMirrorImpl(r"itemTag", 32773, 19, const prefix0.InjectAnnotation(), -1, 30, 30, const []), new r.MethodMirrorImpl(r"widget", 131090, 0, 0, 0, 0, const [0], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 0, null, -1, -1, const [3], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 0, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 0, -1, 0, 0, const [1, 2], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"==", 131074, null, -1, 27, 27, const [4], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [5], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 31, 31, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 32, 32, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 0, 23, 24, 22), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [6], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"query", 131074, null, -1, 26, 26, const [7, 8], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"waitForChild", 65538, null, null, null, null, const [9, 10, 11], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 1, 25, 25, 29), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 2, 26, 26, 30), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 27, 27, 31), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 27, 27, 32), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 26, 26, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 33, 33, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 34, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 36, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 38, 39, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 1, 1, 1, 1, const [13], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 1, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 1, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled=", 262148, 1, null, -1, -1, const [16], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled", 131075, 1, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 1, null, -1, -1, const [17], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 1, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 1, -1, 1, 1, const [14, 15], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 2, 2, 2, 2, const [18], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"check", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uncheck", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hub", 131075, 2, -1, 26, 26, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"inputElement", 131075, 2, -1, 41, 41, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked=", 262148, 2, null, -1, -1, const [21], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked", 131075, 2, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled=", 262148, 2, null, -1, -1, const [22], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled", 131075, 2, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label", 131075, 2, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label=", 262148, 2, null, -1, -1, const [23], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 2, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 2, null, -1, -1, const [24], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 2, -1, 2, 2, const [19, 20], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"formatterFor", 131074, 4, -1, 42, 42, const [25, 26], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 4, 8, 8, 64), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 5, 6, 6, 65), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 6, 9, 9, 66), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 7, 7, 7, 67), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 8, 5, 5, 68), new r.MethodMirrorImpl(r"", 64, 3, -1, 3, 3, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 4, -1, 4, 4, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"choose", 131074, 5, -1, 30, 30, const [27, 28, 29], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 5, -1, 30, 30, const [30, 31, 32], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 5, -1, 5, 5, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"decorate", 131074, 6, -1, 30, 30, const [33], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 6, -1, 30, 30, const [34], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 6, -1, 6, 6, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"lowercase", 131074, 7, -1, 30, 30, const [35], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 7, -1, 30, 30, const [36], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 7, -1, 7, 7, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"number", 131074, 8, -1, 30, 30, const [37, 38], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 8, -1, 30, 30, const [39, 40], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 8, -1, 8, 8, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uppercase", 131074, 9, -1, 30, 30, const [41], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 9, -1, 30, 30, const [42], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 9, -1, 9, 9, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"run", 262146, 10, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 10, -1, 10, 10, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"render", 4325378, 11, -1, 43, 44, const [43, 44, 45], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"renderBefore", 4325378, 11, -1, 43, 44, const [46, 47, 48], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 11, -1, 11, 11, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"compileElement", 4325378, 12, -1, 45, 46, const [49, 50], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 9, 28, 29, 92), new r.MethodMirrorImpl(r"", 0, 12, -1, 12, 12, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 13, -1, 13, 13, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context=", 262148, null, null, -1, -1, const [51], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parentContext", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"rootContext", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 14, null, -1, -1, const [52], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"on", 4325890, 14, -1, 48, 49, const [53], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 1, 14, -1, 14, 14, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 15, null, -1, -1, const [54], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"on", 4325378, 15, -1, 48, 49, const [55], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 1, 15, -1, 15, 15, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 16, null, -1, -1, const [56], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 16, -1, 16, 16, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"emitChange", 262146, null, null, -1, -1, const [57], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onChange", 4325379, null, -1, 50, 51, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 17, null, -1, -1, const [58], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 0, 17, -1, 17, 17, const [59], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 18, -1, 52, 52, const [60, 61, 62], const prefix0.InjectAnnotation(), const [deprecated]), new r.MethodMirrorImpl(r"render", 4325378, 18, -1, 45, 46, const [63, 64, 65, 66], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 27, 27, 113), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 27, 27, 114), new r.MethodMirrorImpl(r"", 0, 18, -1, 18, 18, const [67, 68], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 19, -1, 52, 52, const [70, 71, 72, 73], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 30, 30, 117), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 30, 30, 118), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 12, 30, 30, 119), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 12, 30, 30, 120), new r.MethodMirrorImpl(r"", 0, 19, -1, 19, 19, const [74, 75], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"createFor", 131074, 20, -1, 53, 53, const [78], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"setBuilderFor", 262146, 20, null, -1, -1, const [79, 80], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 20, -1, 20, 20, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"translate", 131586, 21, -1, 30, 30, const [81], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 21, -1, 30, 30, const [82], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 21, -1, 21, 21, const [], const prefix0.InjectAnnotation(), const [])], [new r.ParameterMirrorImpl(r"element", 33798, 13, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 16, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 16, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 14, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"other", 16390, 17, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 19, const prefix0.InjectAnnotation(), -1, 55, 55, const [], null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 24, const prefix0.InjectAnnotation(), -1, 56, 57, const [], null, null), new r.ParameterMirrorImpl(r"selector", 33798, 27, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"logError", 48134, 27, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 28, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"wait", 48134, 28, const prefix0.InjectAnnotation(), -1, 58, 58, const [], const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 28, const prefix0.InjectAnnotation(), -1, 31, 31, const [], 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 32, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 39, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 46, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 46, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 42, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 44, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 47, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 62, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 62, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 54, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 56, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"v", 33798, 59, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 61, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 63, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 63, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 71, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"option1", 39942, 71, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "Yes", null), new r.ParameterMirrorImpl(r"option2", 39942, 71, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "No", null), new r.ParameterMirrorImpl(r"value", 17414, 72, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"option1", 39942, 72, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "Yes", null), new r.ParameterMirrorImpl(r"option2", 39942, 72, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "No", null), new r.ParameterMirrorImpl(r"value", 17414, 74, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 75, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 77, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 78, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicValue", 17414, 80, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicFractionSize", 21510, 80, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 81, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"fractionSize", 21510, 81, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 83, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 84, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 88, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 88, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 88, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"parent", 33798, 89, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"reference", 33798, 89, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 89, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 91, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 91, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"cntxt", 33798, 96, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 99, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 100, const prefix0.InjectAnnotation(), -1, 60, 60, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 102, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 103, const prefix0.InjectAnnotation(), -1, 60, 60, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 105, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"action", 48134, 107, const prefix0.InjectAnnotation(), -1, 59, 59, const [], prefix6.UpdateViewAction, #action), new r.ParameterMirrorImpl(r"action", 33798, 109, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"_actionbus", 32806, 110, const prefix0.InjectAnnotation(), 14, 14, 14, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 111, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 111, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 111, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 112, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 112, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 112, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 112, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"_renderer", 32806, 115, const prefix0.InjectAnnotation(), 11, 11, 11, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 115, const prefix0.InjectAnnotation(), 12, 12, 12, const [], null, null), new r.ParameterMirrorImpl(r"_appendNewNodes", 32870, 114, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 116, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 116, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"items", 2130950, 116, const prefix0.InjectAnnotation(), -1, 62, 63, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 116, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"_renderer", 32806, 121, const prefix0.InjectAnnotation(), 11, 11, 11, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 121, const prefix0.InjectAnnotation(), 12, 12, 12, const [], null, null), new r.ParameterMirrorImpl(r"_listTag", 32870, 118, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"_itemTag", 32870, 120, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 122, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"type", 33798, 123, const prefix0.InjectAnnotation(), -1, 32, 32, const [], null, null), new r.ParameterMirrorImpl(r"builder", 1030, 123, const prefix0.InjectAnnotation(), null, 64, 64, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 125, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 126, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null)], [prefix1.MaterialBadge, prefix1.MaterialButton, prefix1.MaterialCheckbox, prefix3.Formatter, prefix3.FallbackFormatter, prefix3.ChooseFormatter, prefix3.DecoratorFormatter, prefix3.LowerCaseFormatter, prefix3.NumberFormatter, prefix3.UpperCaseFormatter, prefix4.MaterialApplication, prefix5.DomRenderer, prefix5.EventCompiler, prefix5.RootScope, prefix6.ActionBus, prefix6.ActionBusImpl, prefix6.DataStore, prefix6.FireOnlyDataStore, prefix7.TemplateRenderer, prefix7.ListRenderer, prefix8.ModelObserverFactory, prefix9.Translator, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), const m.TypeValue>>().type, List, prefix0.Injector, prefix12.Element, bool, const m.TypeValue>().type, Map, String, int, Type, prefix12.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix12.ElementStream, const m.TypeValue>().type, prefix12.ElementStream, prefix4.MdlComponent, prefix12.CheckboxInputElement, prefix3.MaterialFormatter, const m.TypeValue>().type, prefix11.Future, const m.TypeValue>().type, prefix11.Future, Object, const m.TypeValue>().type, prefix11.Stream, const m.TypeValue>>().type, prefix11.Stream, prefix7.Renderer, prefix8.ModelObserver, prefix12.HtmlElement, Invocation, const m.TypeValue>().type, prefix11.StreamSubscription, Duration, prefix6.Action, prefix6.ActionName, const m.TypeValue().type, const m.TypeValue>().type, List, const m.TypeValue().type, prefix9.L10N], 23, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"eventStreams": (dynamic instance) => instance.eventStreams, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"query": (dynamic instance) => instance.query, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"value": (dynamic instance) => instance.value, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label, r"number": (dynamic instance) => instance.number, r"decorate": (dynamic instance) => instance.decorate, r"uppercase": (dynamic instance) => instance.uppercase, r"lowercase": (dynamic instance) => instance.lowercase, r"choose": (dynamic instance) => instance.choose, r"call": (dynamic instance) => instance.call, r"run": (dynamic instance) => instance.run, r"render": (dynamic instance) => instance.render, r"renderBefore": (dynamic instance) => instance.renderBefore, r"compileElement": (dynamic instance) => instance.compileElement, r"context": (dynamic instance) => instance.context, r"parentContext": (dynamic instance) => instance.parentContext, r"rootContext": (dynamic instance) => instance.rootContext, r"fire": (dynamic instance) => instance.fire, r"on": (dynamic instance) => instance.on, r"emitChange": (dynamic instance) => instance.emitChange, r"onChange": (dynamic instance) => instance.onChange, r"appendNewNodes": (dynamic instance) => instance.appendNewNodes, r"listTag": (dynamic instance) => instance.listTag, r"itemTag": (dynamic instance) => instance.itemTag, r"createFor": (dynamic instance) => instance.createFor, r"setBuilderFor": (dynamic instance) => instance.setBuilderFor}, {r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"value=": (dynamic instance, value) => instance.value = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value, r"context=": (dynamic instance, value) => instance.context = value, r"appendNewNodes=": (dynamic instance, value) => instance.appendNewNodes = value, r"listTag=": (dynamic instance, value) => instance.listTag = value, r"itemTag=": (dynamic instance, value) => instance.itemTag = value}, [new r.LibraryMirrorImpl(r"mdlcomponents", Uri.parse(r"reflectable://0/mdlcomponents"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlformatter", Uri.parse(r"reflectable://1/mdlformatter"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlcore", Uri.parse(r"reflectable://2/mdlcore"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlapplication", Uri.parse(r"reflectable://3/mdlapplication"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlflux", Uri.parse(r"reflectable://4/mdlflux"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdltemplate", Uri.parse(r"reflectable://5/mdltemplate"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdldirective", Uri.parse(r"reflectable://6/mdldirective"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"l10n", Uri.parse(r"reflectable://7/l10n"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null)], []), const prefix2.MustacheMirrorsUsedAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 0, const prefix2.MustacheMirrorsUsedAnnotation(), const [4, 5, 6, 7, 8, 9, 10, 11], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 5, 6, 7, 8, 9, 10], const [4], -1, {r"widget": () => prefix1.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialButton.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 1, const prefix2.MustacheMirrorsUsedAnnotation(), const [34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 39, 29, 30, 31, 32, 33, 50, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48], const [34], -1, {r"widget": () => prefix1.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialCheckbox.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 2, const prefix2.MustacheMirrorsUsedAnnotation(), const [50], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 50], const [], -1, const {}, const {}, const {}, -1, -1, const [-1], null, null)], [new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 3, 4, null), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null), new r.VariableMirrorImpl(r"element", 33797, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null), new r.MethodMirrorImpl(r"widget", 131090, 0, 0, 0, 0, const [0], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 0, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 0, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled=", 262148, 0, null, -1, -1, const [3], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled", 131075, 0, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 0, null, -1, -1, const [4], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 0, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 0, -1, 0, 0, const [1, 2], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"==", 131074, null, -1, 7, 7, const [5], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [6], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 9, 9, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 10, 10, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 0, 3, 4, 17), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [7], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"query", 131074, null, -1, 6, 6, const [8, 9], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"waitForChild", 65538, null, null, null, null, const [10, 11, 12], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 1, 5, 5, 24), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 2, 6, 6, 25), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 3, 7, 7, 26), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 3, 7, 7, 27), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 6, 6, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 11, 11, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 12, 13, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 14, 15, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 16, 17, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 18, 18, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"widget", 131090, 1, 1, 1, 1, const [14], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"check", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"uncheck", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hub", 131075, 1, -1, 6, 6, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"inputElement", 131075, 1, -1, 19, 19, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked=", 262148, 1, null, -1, -1, const [17], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked", 131075, 1, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled=", 262148, 1, null, -1, -1, const [18], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled", 131075, 1, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label", 131075, 1, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label=", 262148, 1, null, -1, -1, const [19], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 1, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 1, null, -1, -1, const [20], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 1, -1, 1, 1, const [15, 16], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"formatterFor", 131074, null, -1, 20, 20, const [21, 22], const prefix2.MustacheMirrorsUsedAnnotation(), null)], [new r.ParameterMirrorImpl(r"element", 33798, 4, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 11, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 11, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null, null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 7, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 9, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"other", 16390, 12, const prefix2.MustacheMirrorsUsedAnnotation(), null, null, null, null, null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 14, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null, null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 19, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 23, 24, null, null, null), new r.ParameterMirrorImpl(r"selector", 33798, 22, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"logError", 48134, 22, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"wait", 48134, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 25, 25, null, const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 9, 9, null, 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 27, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 34, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 49, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 49, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null, null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 41, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 43, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"v", 33798, 46, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 48, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 50, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null, null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 50, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null, null, null)], [prefix1.MaterialButton, prefix1.MaterialCheckbox, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), const m.TypeValue>>().type, List, prefix0.Injector, prefix12.Element, bool, String, int, Type, prefix12.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix12.ElementStream, const m.TypeValue>().type, prefix12.ElementStream, prefix4.MdlComponent, prefix12.CheckboxInputElement, prefix3.MaterialFormatter, prefix12.HtmlElement, Invocation, const m.TypeValue>().type, prefix11.StreamSubscription, Duration], 3, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"eventStreams": (dynamic instance) => instance.eventStreams, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"query": (dynamic instance) => instance.query, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"value": (dynamic instance) => instance.value, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label}, {r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"value=": (dynamic instance, value) => instance.value = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value}, null, [])}; + + +final _memberSymbolMap = null; + +initializeReflectable() { + if (!isTransformed) { + throw new UnsupportedError( + "The transformed code is running with the untransformed " + "reflectable package. Remember to set your package-root to " + "'build/.../packages'."); + } + r.data = _data; + r.memberSymbolMap = _memberSymbolMap; +} diff --git a/samples/mdl_grid/.analysis_options.yaml b/samples/mdl_grid/.analysis_options.yaml new file mode 100644 index 0000000..58522ed --- /dev/null +++ b/samples/mdl_grid/.analysis_options.yaml @@ -0,0 +1,6 @@ +# Analyzer options: +# https://www.dartlang.org/guides/language/analysis-options +# +analyzer: + strong-mode: true + diff --git a/samples/mdl_grid/.rsync b/samples/mdl_grid/.rsync new file mode 100644 index 0000000..d6d7993 --- /dev/null +++ b/samples/mdl_grid/.rsync @@ -0,0 +1,14 @@ +# Rsync-Destination für dieses sample +# +# - ssh ls2 +# - cat ~/website/config/nginx/_template.conf.txt | sed -e 's/%example%/mdl_grid/' > ~/website/config/nginx/mdl_grid.conf +# - cat ~/website/config/nginx/mdl_grid.conf +# - sudo mkdir -p ~/website/data/example/mdl_grid +# - sudo chown ubuntu:ubuntu ~/website/data/example/mdl_grid +# - sudo chmod 775 ~/website/data/example/mdl_grid +# - ls -lad ~/website/data/example/mdl_grid +# - cd ~/website && docker-compose restart +# +RSYNC_DESTINATION=":~/website/data/example/mdl_grid/" +EXAMPLE_URL="http://mdl_grid.example.mikemitterer.at/" + diff --git a/samples/mdl_grid/.sitegen/html/_content/index.html b/samples/mdl_grid/.sitegen/html/_content/index.html index 1b38b47..1f62ac0 100644 --- a/samples/mdl_grid/.sitegen/html/_content/index.html +++ b/samples/mdl_grid/.sitegen/html/_content/index.html @@ -1,6 +1,6 @@ title: GRID samplename: grid -sampleurl: https://github.com/MikeMitterer/dart-material-design-lite/tree/master/samples/mdl_grid/web +sampleurl: https://github.com/MikeMitterer/dart-material-design-lite-site/tree/master/samples/mdl_grid/web ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/samples/mdl_grid/pubspec.yaml b/samples/mdl_grid/pubspec.yaml index d4d9fe7..3672565 100644 --- a/samples/mdl_grid/pubspec.yaml +++ b/samples/mdl_grid/pubspec.yaml @@ -5,30 +5,24 @@ author: Mike Mitterer homepage: https://github.com/MikeMitterer/dart-material-design-lite dependencies: - browser: any - - intl: ^0.12.0 + intl: ^0.15.0 args: any validate: ^1.0.0 browser_detect: ^1.0.0 - logging: ^0.11.0 - logging_handlers: ^0.8.0 - console_log_handler: ^0.1.0 + logging: '>=0.11.3 <1.0.0' + console_log_handler: ^1.0.0 + # git: git@github.com:MikeMitterer/dart-console_log_handler.git # path: /Volumes/Daten/DevLocal/DevDart/ConsoleLogHandler mdl: + # '>=2.1.0 <3.0.0' + # git: + # url: git@github.com:MikeMitterer/dart-material-design-lite.git + # ref: v2.2 path: /Volumes/Daten/DevLocal/DevDart/MaterialDesignLite - di: ^3.3.0 - - dart_to_js_script_rewriter: ^0.1.0 - -transformers: - - di - - dart_to_js_script_rewriter - -# - $dart2js: -# commandLineOptions: [--enable-experimental-mirrors] -# minify: false -# sourceMaps: true \ No newline at end of file +dev_dependencies: + build_runner: any + build_web_compilers: any + sass_builder: any \ No newline at end of file diff --git a/samples/mdl_grid/web/index.html b/samples/mdl_grid/web/index.html index 599a49d..c9a4837 100644 --- a/samples/mdl_grid/web/index.html +++ b/samples/mdl_grid/web/index.html @@ -6,43 +6,57 @@ GRID + + + + + + + + + +
Loading...
-
+
GRID-Sample
+
@@ -85,7 +99,6 @@
2
(4 phone)
-
@@ -100,21 +113,25 @@ Mike Mitterer, IT-Consulting and Development Ltd.

+ - - + + + diff --git a/samples/mdl_grid/web/main.dart b/samples/mdl_grid/web/main.dart index 97efb88..16b21b7 100644 --- a/samples/mdl_grid/web/main.dart +++ b/samples/mdl_grid/web/main.dart @@ -1,25 +1,15 @@ -import "dart:html" as dom; - -import 'package:logging/logging.dart'; import 'package:console_log_handler/console_log_handler.dart'; import 'package:mdl/mdl.dart'; +import 'main.reflectable.dart'; -main() { +main() async { configLogging(); + initializeReflectable(); registerMdl(); - componentFactory().run().then((_) { - - }); + await componentFactory().run(); } -void configLogging() { - hierarchicalLoggingEnabled = false; // set this to true - its part of Logging SDK - // now control the logging. - // Turn off all logging first - Logger.root.level = Level.INFO; - Logger.root.onRecord.listen(new LogConsoleHandler()); -} \ No newline at end of file diff --git a/samples/mdl_grid/web/main.reflectable.dart b/samples/mdl_grid/web/main.reflectable.dart new file mode 100644 index 0000000..f34467b --- /dev/null +++ b/samples/mdl_grid/web/main.reflectable.dart @@ -0,0 +1,40 @@ +// This file has been generated by the reflectable package. +// https://github.com/dart-lang/reflectable. + +import "dart:core"; +import 'dart:async' as prefix11; +import 'dart:html' as prefix12; +import 'package:dryice/dryice.dart' as prefix0; +import 'package:l10n/l10n.dart' as prefix9; +import 'package:mdl/mdlapplication.dart' as prefix5; +import 'package:mdl/mdlcomponents.dart' as prefix1; +import 'package:mdl/mdlcore.dart' as prefix4; +import 'package:mdl/mdldirective.dart' as prefix8; +import 'package:mdl/mdlflux.dart' as prefix6; +import 'package:mdl/mdlformatter.dart' as prefix3; +import 'package:mdl/mdltemplate.dart' as prefix7; +import 'package:mdl/src/core/annotations.dart' as prefix10; +import 'package:mustache/mustache.dart' as prefix2; + +// ignore:unused_import +import "package:reflectable/mirrors.dart" as m; +// ignore:unused_import +import "package:reflectable/src/reflectable_transformer_based.dart" as r; +// ignore:unused_import +import "package:reflectable/reflectable.dart" show isTransformed; + +final _data = {const prefix0.InjectAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"MaterialBadge", r"mdlcomponents.MaterialBadge", 7, 0, const prefix0.InjectAnnotation(), const [13, 14, 15, 16], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 14, 15], const [13], -1, {r"widget": () => prefix1.MaterialBadge.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialBadge.fromElement(element, injector) : null}, 0, 0, const [], const [prefix10.Component, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 1, const prefix0.InjectAnnotation(), const [39, 40, 41, 42, 43, 44, 45, 46], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45], const [39], -1, {r"widget": () => prefix1.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialButton.fromElement(element, injector) : null}, 0, 1, const [], const [prefix10.Component, prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 2, const prefix0.InjectAnnotation(), const [47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 52, 34, 35, 36, 37, 38, 63, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61], const [47], 22, {r"widget": () => prefix1.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialCheckbox.fromElement(element, injector) : null}, 0, 2, const [], const [prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"Formatter", r"mdlformatter.Formatter", 7, 3, const prefix0.InjectAnnotation(), const [4, 5, 6, 7, 8, 69], const [17, 18, 19, 20, 21, 64, 65, 66, 67, 68], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.Formatter() : null}, 1, 3, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FallbackFormatter", r"mdlformatter.FallbackFormatter", 519, 4, const prefix0.InjectAnnotation(), const [63, 70], const [17, 18, 19, 20, 21, 63], const [], -1, {}, {}, {}, 1, 4, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ChooseFormatter", r"mdlformatter.ChooseFormatter", 7, 5, const prefix0.InjectAnnotation(), const [71, 72, 73], const [17, 18, 19, 20, 21, 71, 72], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.ChooseFormatter() : null}, 1, 5, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DecoratorFormatter", r"mdlformatter.DecoratorFormatter", 7, 6, const prefix0.InjectAnnotation(), const [74, 75, 76], const [17, 18, 19, 20, 21, 74, 75], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.DecoratorFormatter() : null}, 1, 6, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"LowerCaseFormatter", r"mdlformatter.LowerCaseFormatter", 7, 7, const prefix0.InjectAnnotation(), const [77, 78, 79], const [17, 18, 19, 20, 21, 77, 78], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.LowerCaseFormatter() : null}, 1, 7, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"NumberFormatter", r"mdlformatter.NumberFormatter", 7, 8, const prefix0.InjectAnnotation(), const [80, 81, 82], const [17, 18, 19, 20, 21, 80, 81], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.NumberFormatter() : null}, 1, 8, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"UpperCaseFormatter", r"mdlformatter.UpperCaseFormatter", 7, 9, const prefix0.InjectAnnotation(), const [83, 84, 85], const [17, 18, 19, 20, 21, 83, 84], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.UpperCaseFormatter() : null}, 1, 9, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialApplication", r"mdlcore.MaterialApplication", 7, 10, const prefix0.InjectAnnotation(), const [86, 87], const [17, 18, 19, 20, 21, 86], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix4.MaterialApplication() : null}, 2, 10, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DomRenderer", r"mdlapplication.DomRenderer", 7, 11, const prefix0.InjectAnnotation(), const [88, 89, 90], const [17, 18, 19, 20, 21, 88, 89], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.DomRenderer() : null}, 3, 11, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"EventCompiler", r"mdlapplication.EventCompiler", 7, 12, const prefix0.InjectAnnotation(), const [9, 91, 93], const [17, 18, 19, 20, 21, 91], const [92], -1, {r"datasets": () => prefix5.EventCompiler.datasets}, {}, {r"": (b) => () => b ? new prefix5.EventCompiler() : null}, 3, 12, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"RootScope", r"mdlapplication.RootScope", 7, 13, const prefix0.InjectAnnotation(), const [94], const [17, 18, 19, 20, 21, 95, 96, 97, 98], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.RootScope() : null}, 3, 13, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBus", r"mdlflux.ActionBus", 519, 14, const prefix0.InjectAnnotation(), const [99, 100, 101], const [17, 18, 19, 20, 21], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix6.ActionBus() : null}, 4, 14, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBusImpl", r"mdlflux.ActionBusImpl", 7, 15, const prefix0.InjectAnnotation(), const [102, 103, 104], const [17, 18, 19, 20, 21, 102, 103], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix6.ActionBusImpl() : null}, 4, 15, const [14], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DataStore", r"mdlflux.DataStore", 519, 16, const prefix0.InjectAnnotation(), const [105, 106], const [17, 18, 19, 20, 21, 107, 108], const [], -1, {}, {}, {}, 4, 16, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FireOnlyDataStore", r"mdlflux.FireOnlyDataStore", 7, 17, const prefix0.InjectAnnotation(), const [109, 110], const [17, 18, 19, 20, 21, 107, 108, 109], const [], 16, {}, {}, {r"": (b) => (_actionbus) => b ? new prefix6.FireOnlyDataStore(_actionbus) : null}, 4, 17, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"TemplateRenderer", r"mdltemplate.TemplateRenderer", 7, 18, const prefix0.InjectAnnotation(), const [10, 111, 112, 115], const [17, 18, 19, 20, 21, 111, 112, 113, 114], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix7.TemplateRenderer(_renderer, _eventCompiler) : null}, 5, 18, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ListRenderer", r"mdltemplate.ListRenderer", 7, 19, const prefix0.InjectAnnotation(), const [11, 12, 116, 121], const [17, 18, 19, 20, 21, 116, 117, 118, 119, 120], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix7.ListRenderer(_renderer, _eventCompiler) : null}, 5, 19, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ModelObserverFactory", r"mdldirective.ModelObserverFactory", 7, 20, const prefix0.InjectAnnotation(), const [122, 123, 124], const [17, 18, 19, 20, 21, 122, 123], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix8.ModelObserverFactory() : null}, 6, 20, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"Translator", r"l10n.Translator", 519, 21, const prefix0.InjectAnnotation(), const [125, 126, 127], const [17, 18, 19, 20, 21, 126], const [], -1, {}, {}, {}, 7, 21, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 22, const prefix0.InjectAnnotation(), const [63], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 63], const [], -1, const {}, const {}, const {}, 0, 4, const [], const [], null)], [new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix0.InjectAnnotation(), -1, 23, 24, const []), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix0.InjectAnnotation(), -1, 25, 25, const []), new r.VariableMirrorImpl(r"element", 33797, null, const prefix0.InjectAnnotation(), -1, 26, 26, const []), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix0.InjectAnnotation(), -1, 27, 27, const []), new r.VariableMirrorImpl(r"number", 33797, 3, const prefix0.InjectAnnotation(), 8, 8, 8, const []), new r.VariableMirrorImpl(r"decorate", 33797, 3, const prefix0.InjectAnnotation(), 6, 6, 6, const []), new r.VariableMirrorImpl(r"uppercase", 33797, 3, const prefix0.InjectAnnotation(), 9, 9, 9, const []), new r.VariableMirrorImpl(r"lowercase", 33797, 3, const prefix0.InjectAnnotation(), 7, 7, 7, const []), new r.VariableMirrorImpl(r"choose", 33797, 3, const prefix0.InjectAnnotation(), 5, 5, 5, const []), new r.VariableMirrorImpl(r"datasets", 2130965, 12, const prefix0.InjectAnnotation(), -1, 28, 29, const []), new r.VariableMirrorImpl(r"appendNewNodes", 32773, 18, const prefix0.InjectAnnotation(), -1, 27, 27, const []), new r.VariableMirrorImpl(r"listTag", 32773, 19, const prefix0.InjectAnnotation(), -1, 30, 30, const []), new r.VariableMirrorImpl(r"itemTag", 32773, 19, const prefix0.InjectAnnotation(), -1, 30, 30, const []), new r.MethodMirrorImpl(r"widget", 131090, 0, 0, 0, 0, const [0], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 0, null, -1, -1, const [3], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 0, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 0, -1, 0, 0, const [1, 2], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"==", 131074, null, -1, 27, 27, const [4], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [5], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 31, 31, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 32, 32, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 0, 23, 24, 22), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [6], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"query", 131074, null, -1, 26, 26, const [7, 8], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"waitForChild", 65538, null, null, null, null, const [9, 10, 11], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 1, 25, 25, 29), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 2, 26, 26, 30), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 27, 27, 31), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 27, 27, 32), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 26, 26, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 33, 33, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 34, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 36, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 38, 39, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 1, 1, 1, 1, const [13], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 1, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 1, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled=", 262148, 1, null, -1, -1, const [16], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled", 131075, 1, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 1, null, -1, -1, const [17], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 1, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 1, -1, 1, 1, const [14, 15], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 2, 2, 2, 2, const [18], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"check", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uncheck", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hub", 131075, 2, -1, 26, 26, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"inputElement", 131075, 2, -1, 41, 41, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked=", 262148, 2, null, -1, -1, const [21], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked", 131075, 2, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled=", 262148, 2, null, -1, -1, const [22], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled", 131075, 2, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label", 131075, 2, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label=", 262148, 2, null, -1, -1, const [23], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 2, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 2, null, -1, -1, const [24], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 2, -1, 2, 2, const [19, 20], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"formatterFor", 131074, 4, -1, 42, 42, const [25, 26], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 4, 8, 8, 64), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 5, 6, 6, 65), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 6, 9, 9, 66), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 7, 7, 7, 67), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 8, 5, 5, 68), new r.MethodMirrorImpl(r"", 64, 3, -1, 3, 3, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 4, -1, 4, 4, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"choose", 131074, 5, -1, 30, 30, const [27, 28, 29], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 5, -1, 30, 30, const [30, 31, 32], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 5, -1, 5, 5, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"decorate", 131074, 6, -1, 30, 30, const [33], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 6, -1, 30, 30, const [34], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 6, -1, 6, 6, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"lowercase", 131074, 7, -1, 30, 30, const [35], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 7, -1, 30, 30, const [36], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 7, -1, 7, 7, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"number", 131074, 8, -1, 30, 30, const [37, 38], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 8, -1, 30, 30, const [39, 40], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 8, -1, 8, 8, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uppercase", 131074, 9, -1, 30, 30, const [41], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 9, -1, 30, 30, const [42], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 9, -1, 9, 9, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"run", 262146, 10, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 10, -1, 10, 10, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"render", 4325378, 11, -1, 43, 44, const [43, 44, 45], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"renderBefore", 4325378, 11, -1, 43, 44, const [46, 47, 48], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 11, -1, 11, 11, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"compileElement", 4325378, 12, -1, 45, 46, const [49, 50], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 9, 28, 29, 92), new r.MethodMirrorImpl(r"", 0, 12, -1, 12, 12, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 13, -1, 13, 13, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context=", 262148, null, null, -1, -1, const [51], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parentContext", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"rootContext", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 14, null, -1, -1, const [52], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"on", 4325890, 14, -1, 48, 49, const [53], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 1, 14, -1, 14, 14, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 15, null, -1, -1, const [54], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"on", 4325378, 15, -1, 48, 49, const [55], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 1, 15, -1, 15, 15, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 16, null, -1, -1, const [56], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 16, -1, 16, 16, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"emitChange", 262146, null, null, -1, -1, const [57], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onChange", 4325379, null, -1, 50, 51, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 17, null, -1, -1, const [58], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 0, 17, -1, 17, 17, const [59], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 18, -1, 52, 52, const [60, 61, 62], const prefix0.InjectAnnotation(), const [deprecated]), new r.MethodMirrorImpl(r"render", 4325378, 18, -1, 45, 46, const [63, 64, 65, 66], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 27, 27, 113), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 27, 27, 114), new r.MethodMirrorImpl(r"", 0, 18, -1, 18, 18, const [67, 68], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 19, -1, 52, 52, const [70, 71, 72, 73], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 30, 30, 117), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 30, 30, 118), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 12, 30, 30, 119), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 12, 30, 30, 120), new r.MethodMirrorImpl(r"", 0, 19, -1, 19, 19, const [74, 75], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"createFor", 131074, 20, -1, 53, 53, const [78], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"setBuilderFor", 262146, 20, null, -1, -1, const [79, 80], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 20, -1, 20, 20, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"translate", 131586, 21, -1, 30, 30, const [81], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 21, -1, 30, 30, const [82], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 21, -1, 21, 21, const [], const prefix0.InjectAnnotation(), const [])], [new r.ParameterMirrorImpl(r"element", 33798, 13, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 16, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 16, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 14, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"other", 16390, 17, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 19, const prefix0.InjectAnnotation(), -1, 55, 55, const [], null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 24, const prefix0.InjectAnnotation(), -1, 56, 57, const [], null, null), new r.ParameterMirrorImpl(r"selector", 33798, 27, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"logError", 48134, 27, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 28, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"wait", 48134, 28, const prefix0.InjectAnnotation(), -1, 58, 58, const [], const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 28, const prefix0.InjectAnnotation(), -1, 31, 31, const [], 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 32, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 39, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 46, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 46, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 42, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 44, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 47, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 62, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 62, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 54, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 56, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"v", 33798, 59, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 61, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 63, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 63, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 71, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"option1", 39942, 71, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "Yes", null), new r.ParameterMirrorImpl(r"option2", 39942, 71, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "No", null), new r.ParameterMirrorImpl(r"value", 17414, 72, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"option1", 39942, 72, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "Yes", null), new r.ParameterMirrorImpl(r"option2", 39942, 72, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "No", null), new r.ParameterMirrorImpl(r"value", 17414, 74, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 75, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 77, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 78, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicValue", 17414, 80, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicFractionSize", 21510, 80, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 81, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"fractionSize", 21510, 81, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 83, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 84, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 88, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 88, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 88, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"parent", 33798, 89, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"reference", 33798, 89, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 89, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 91, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 91, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"cntxt", 33798, 96, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 99, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 100, const prefix0.InjectAnnotation(), -1, 60, 60, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 102, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 103, const prefix0.InjectAnnotation(), -1, 60, 60, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 105, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"action", 48134, 107, const prefix0.InjectAnnotation(), -1, 59, 59, const [], prefix6.UpdateViewAction, #action), new r.ParameterMirrorImpl(r"action", 33798, 109, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"_actionbus", 32806, 110, const prefix0.InjectAnnotation(), 14, 14, 14, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 111, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 111, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 111, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 112, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 112, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 112, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 112, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"_renderer", 32806, 115, const prefix0.InjectAnnotation(), 11, 11, 11, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 115, const prefix0.InjectAnnotation(), 12, 12, 12, const [], null, null), new r.ParameterMirrorImpl(r"_appendNewNodes", 32870, 114, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 116, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 116, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"items", 2130950, 116, const prefix0.InjectAnnotation(), -1, 62, 63, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 116, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"_renderer", 32806, 121, const prefix0.InjectAnnotation(), 11, 11, 11, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 121, const prefix0.InjectAnnotation(), 12, 12, 12, const [], null, null), new r.ParameterMirrorImpl(r"_listTag", 32870, 118, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"_itemTag", 32870, 120, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 122, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"type", 33798, 123, const prefix0.InjectAnnotation(), -1, 32, 32, const [], null, null), new r.ParameterMirrorImpl(r"builder", 1030, 123, const prefix0.InjectAnnotation(), null, 64, 64, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 125, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 126, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null)], [prefix1.MaterialBadge, prefix1.MaterialButton, prefix1.MaterialCheckbox, prefix3.Formatter, prefix3.FallbackFormatter, prefix3.ChooseFormatter, prefix3.DecoratorFormatter, prefix3.LowerCaseFormatter, prefix3.NumberFormatter, prefix3.UpperCaseFormatter, prefix4.MaterialApplication, prefix5.DomRenderer, prefix5.EventCompiler, prefix5.RootScope, prefix6.ActionBus, prefix6.ActionBusImpl, prefix6.DataStore, prefix6.FireOnlyDataStore, prefix7.TemplateRenderer, prefix7.ListRenderer, prefix8.ModelObserverFactory, prefix9.Translator, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), const m.TypeValue>>().type, List, prefix0.Injector, prefix12.Element, bool, const m.TypeValue>().type, Map, String, int, Type, prefix12.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix12.ElementStream, const m.TypeValue>().type, prefix12.ElementStream, prefix4.MdlComponent, prefix12.CheckboxInputElement, prefix3.MaterialFormatter, const m.TypeValue>().type, prefix11.Future, const m.TypeValue>().type, prefix11.Future, Object, const m.TypeValue>().type, prefix11.Stream, const m.TypeValue>>().type, prefix11.Stream, prefix7.Renderer, prefix8.ModelObserver, prefix12.HtmlElement, Invocation, const m.TypeValue>().type, prefix11.StreamSubscription, Duration, prefix6.Action, prefix6.ActionName, const m.TypeValue().type, const m.TypeValue>().type, List, const m.TypeValue().type, prefix9.L10N], 23, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"eventStreams": (dynamic instance) => instance.eventStreams, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"query": (dynamic instance) => instance.query, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"value": (dynamic instance) => instance.value, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label, r"number": (dynamic instance) => instance.number, r"decorate": (dynamic instance) => instance.decorate, r"uppercase": (dynamic instance) => instance.uppercase, r"lowercase": (dynamic instance) => instance.lowercase, r"choose": (dynamic instance) => instance.choose, r"call": (dynamic instance) => instance.call, r"run": (dynamic instance) => instance.run, r"render": (dynamic instance) => instance.render, r"renderBefore": (dynamic instance) => instance.renderBefore, r"compileElement": (dynamic instance) => instance.compileElement, r"context": (dynamic instance) => instance.context, r"parentContext": (dynamic instance) => instance.parentContext, r"rootContext": (dynamic instance) => instance.rootContext, r"fire": (dynamic instance) => instance.fire, r"on": (dynamic instance) => instance.on, r"emitChange": (dynamic instance) => instance.emitChange, r"onChange": (dynamic instance) => instance.onChange, r"appendNewNodes": (dynamic instance) => instance.appendNewNodes, r"listTag": (dynamic instance) => instance.listTag, r"itemTag": (dynamic instance) => instance.itemTag, r"createFor": (dynamic instance) => instance.createFor, r"setBuilderFor": (dynamic instance) => instance.setBuilderFor}, {r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"value=": (dynamic instance, value) => instance.value = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value, r"context=": (dynamic instance, value) => instance.context = value, r"appendNewNodes=": (dynamic instance, value) => instance.appendNewNodes = value, r"listTag=": (dynamic instance, value) => instance.listTag = value, r"itemTag=": (dynamic instance, value) => instance.itemTag = value}, [new r.LibraryMirrorImpl(r"mdlcomponents", Uri.parse(r"reflectable://0/mdlcomponents"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlformatter", Uri.parse(r"reflectable://1/mdlformatter"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlcore", Uri.parse(r"reflectable://2/mdlcore"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlapplication", Uri.parse(r"reflectable://3/mdlapplication"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlflux", Uri.parse(r"reflectable://4/mdlflux"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdltemplate", Uri.parse(r"reflectable://5/mdltemplate"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdldirective", Uri.parse(r"reflectable://6/mdldirective"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"l10n", Uri.parse(r"reflectable://7/l10n"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null)], []), const prefix2.MustacheMirrorsUsedAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 0, const prefix2.MustacheMirrorsUsedAnnotation(), const [4, 5, 6, 7, 8, 9, 10, 11], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 5, 6, 7, 8, 9, 10], const [4], -1, {r"widget": () => prefix1.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialButton.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 1, const prefix2.MustacheMirrorsUsedAnnotation(), const [34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 39, 29, 30, 31, 32, 33, 50, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48], const [34], -1, {r"widget": () => prefix1.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialCheckbox.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 2, const prefix2.MustacheMirrorsUsedAnnotation(), const [50], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 50], const [], -1, const {}, const {}, const {}, -1, -1, const [-1], null, null)], [new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 3, 4, null), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null), new r.VariableMirrorImpl(r"element", 33797, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null), new r.MethodMirrorImpl(r"widget", 131090, 0, 0, 0, 0, const [0], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 0, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 0, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled=", 262148, 0, null, -1, -1, const [3], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled", 131075, 0, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 0, null, -1, -1, const [4], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 0, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 0, -1, 0, 0, const [1, 2], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"==", 131074, null, -1, 7, 7, const [5], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [6], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 9, 9, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 10, 10, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 0, 3, 4, 17), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [7], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"query", 131074, null, -1, 6, 6, const [8, 9], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"waitForChild", 65538, null, null, null, null, const [10, 11, 12], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 1, 5, 5, 24), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 2, 6, 6, 25), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 3, 7, 7, 26), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 3, 7, 7, 27), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 6, 6, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 11, 11, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 12, 13, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 14, 15, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 16, 17, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 18, 18, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"widget", 131090, 1, 1, 1, 1, const [14], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"check", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"uncheck", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hub", 131075, 1, -1, 6, 6, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"inputElement", 131075, 1, -1, 19, 19, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked=", 262148, 1, null, -1, -1, const [17], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked", 131075, 1, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled=", 262148, 1, null, -1, -1, const [18], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled", 131075, 1, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label", 131075, 1, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label=", 262148, 1, null, -1, -1, const [19], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 1, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 1, null, -1, -1, const [20], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 1, -1, 1, 1, const [15, 16], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"formatterFor", 131074, null, -1, 20, 20, const [21, 22], const prefix2.MustacheMirrorsUsedAnnotation(), null)], [new r.ParameterMirrorImpl(r"element", 33798, 4, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 11, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 11, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null, null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 7, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 9, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"other", 16390, 12, const prefix2.MustacheMirrorsUsedAnnotation(), null, null, null, null, null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 14, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null, null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 19, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 23, 24, null, null, null), new r.ParameterMirrorImpl(r"selector", 33798, 22, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"logError", 48134, 22, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"wait", 48134, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 25, 25, null, const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 9, 9, null, 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 27, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 34, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 49, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 49, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null, null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 41, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 43, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"v", 33798, 46, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 48, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 50, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null, null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 50, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null, null, null)], [prefix1.MaterialButton, prefix1.MaterialCheckbox, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), const m.TypeValue>>().type, List, prefix0.Injector, prefix12.Element, bool, String, int, Type, prefix12.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix12.ElementStream, const m.TypeValue>().type, prefix12.ElementStream, prefix4.MdlComponent, prefix12.CheckboxInputElement, prefix3.MaterialFormatter, prefix12.HtmlElement, Invocation, const m.TypeValue>().type, prefix11.StreamSubscription, Duration], 3, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"eventStreams": (dynamic instance) => instance.eventStreams, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"query": (dynamic instance) => instance.query, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"value": (dynamic instance) => instance.value, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label}, {r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"value=": (dynamic instance, value) => instance.value = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value}, null, [])}; + + +final _memberSymbolMap = null; + +initializeReflectable() { + if (!isTransformed) { + throw new UnsupportedError( + "The transformed code is running with the untransformed " + "reflectable package. Remember to set your package-root to " + "'build/.../packages'."); + } + r.data = _data; + r.memberSymbolMap = _memberSymbolMap; +} diff --git a/samples/mdl_icon-toggle/.analysis_options.yaml b/samples/mdl_icon-toggle/.analysis_options.yaml new file mode 100644 index 0000000..58522ed --- /dev/null +++ b/samples/mdl_icon-toggle/.analysis_options.yaml @@ -0,0 +1,6 @@ +# Analyzer options: +# https://www.dartlang.org/guides/language/analysis-options +# +analyzer: + strong-mode: true + diff --git a/samples/mdl_icon-toggle/.rsync b/samples/mdl_icon-toggle/.rsync new file mode 100644 index 0000000..d59c98d --- /dev/null +++ b/samples/mdl_icon-toggle/.rsync @@ -0,0 +1,14 @@ +# Rsync-Destination für dieses sample +# +# - ssh ls2 +# - cat ~/website/config/nginx/_template.conf.txt | sed -e 's/%example%/mdl_icon-toggle/' > ~/website/config/nginx/mdl_icon-toggle.conf +# - cat ~/website/config/nginx/mdl_icon-toggle.conf +# - sudo mkdir -p ~/website/data/example/mdl_icon-toggle +# - sudo chown ubuntu:ubuntu ~/website/data/example/mdl_icon-toggle +# - sudo chmod 775 ~/website/data/example/mdl_icon-toggle +# - ls -lad ~/website/data/example/mdl_icon-toggle +# - cd ~/website && docker-compose restart +# +RSYNC_DESTINATION=":~/website/data/example/mdl_icon-toggle/" +EXAMPLE_URL="http://mdl_icon-toggle.example.mikemitterer.at/" + diff --git a/samples/mdl_icon-toggle/.sitegen/html/_content/index.html b/samples/mdl_icon-toggle/.sitegen/html/_content/index.html index 681c49b..6a3c04a 100644 --- a/samples/mdl_icon-toggle/.sitegen/html/_content/index.html +++ b/samples/mdl_icon-toggle/.sitegen/html/_content/index.html @@ -1,49 +1,49 @@ title: ICON-TOGGLE samplename: icon-toggle -sampleurl: https://github.com/MikeMitterer/dart-material-design-lite/tree/master/samples/mdl_icon-toggle/web +sampleurl: https://github.com/MikeMitterer/dart-material-design-lite-site/tree/master/samples/mdl_icon-toggle/web ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-
Disabled
+
Disabled
-
-
Data binding
+
Data binding
-
+ - - + + + diff --git a/samples/mdl_icon-toggle/web/main.dart b/samples/mdl_icon-toggle/web/main.dart index f5c54e9..d97e6c5 100644 --- a/samples/mdl_icon-toggle/web/main.dart +++ b/samples/mdl_icon-toggle/web/main.dart @@ -1,29 +1,22 @@ import "dart:html" as dom; import "dart:async"; -import 'package:logging/logging.dart'; import 'package:console_log_handler/console_log_handler.dart'; import 'package:mdl/mdl.dart'; +import 'main.reflectable.dart'; -main() { +main() async { configLogging(); + initializeReflectable(); registerMdl(); - componentFactory().run().then((_) { - final MaterialIconToggle toggle = MaterialIconToggle.widget(dom.querySelector("#public-checkbox-1")); - new Timer.periodic(new Duration(milliseconds: 500), (final Timer timer) { - toggle.checked = !toggle.checked; - }); + await componentFactory().run(); + + final MaterialIconToggle toggle = MaterialIconToggle.widget(dom.querySelector("#public-checkbox-1")); + new Timer.periodic(new Duration(milliseconds: 500), (final Timer timer) { + toggle.checked = !toggle.checked; }); } -void configLogging() { - hierarchicalLoggingEnabled = false; // set this to true - its part of Logging SDK - - // now control the logging. - // Turn off all logging first - Logger.root.level = Level.INFO; - Logger.root.onRecord.listen(new LogConsoleHandler()); -} \ No newline at end of file diff --git a/samples/mdl_icon-toggle/web/main.reflectable.dart b/samples/mdl_icon-toggle/web/main.reflectable.dart new file mode 100644 index 0000000..f34467b --- /dev/null +++ b/samples/mdl_icon-toggle/web/main.reflectable.dart @@ -0,0 +1,40 @@ +// This file has been generated by the reflectable package. +// https://github.com/dart-lang/reflectable. + +import "dart:core"; +import 'dart:async' as prefix11; +import 'dart:html' as prefix12; +import 'package:dryice/dryice.dart' as prefix0; +import 'package:l10n/l10n.dart' as prefix9; +import 'package:mdl/mdlapplication.dart' as prefix5; +import 'package:mdl/mdlcomponents.dart' as prefix1; +import 'package:mdl/mdlcore.dart' as prefix4; +import 'package:mdl/mdldirective.dart' as prefix8; +import 'package:mdl/mdlflux.dart' as prefix6; +import 'package:mdl/mdlformatter.dart' as prefix3; +import 'package:mdl/mdltemplate.dart' as prefix7; +import 'package:mdl/src/core/annotations.dart' as prefix10; +import 'package:mustache/mustache.dart' as prefix2; + +// ignore:unused_import +import "package:reflectable/mirrors.dart" as m; +// ignore:unused_import +import "package:reflectable/src/reflectable_transformer_based.dart" as r; +// ignore:unused_import +import "package:reflectable/reflectable.dart" show isTransformed; + +final _data = {const prefix0.InjectAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"MaterialBadge", r"mdlcomponents.MaterialBadge", 7, 0, const prefix0.InjectAnnotation(), const [13, 14, 15, 16], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 14, 15], const [13], -1, {r"widget": () => prefix1.MaterialBadge.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialBadge.fromElement(element, injector) : null}, 0, 0, const [], const [prefix10.Component, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 1, const prefix0.InjectAnnotation(), const [39, 40, 41, 42, 43, 44, 45, 46], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45], const [39], -1, {r"widget": () => prefix1.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialButton.fromElement(element, injector) : null}, 0, 1, const [], const [prefix10.Component, prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 2, const prefix0.InjectAnnotation(), const [47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 52, 34, 35, 36, 37, 38, 63, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61], const [47], 22, {r"widget": () => prefix1.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialCheckbox.fromElement(element, injector) : null}, 0, 2, const [], const [prefix0.inject, prefix2.mustache], null), new r.NonGenericClassMirrorImpl(r"Formatter", r"mdlformatter.Formatter", 7, 3, const prefix0.InjectAnnotation(), const [4, 5, 6, 7, 8, 69], const [17, 18, 19, 20, 21, 64, 65, 66, 67, 68], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.Formatter() : null}, 1, 3, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FallbackFormatter", r"mdlformatter.FallbackFormatter", 519, 4, const prefix0.InjectAnnotation(), const [63, 70], const [17, 18, 19, 20, 21, 63], const [], -1, {}, {}, {}, 1, 4, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ChooseFormatter", r"mdlformatter.ChooseFormatter", 7, 5, const prefix0.InjectAnnotation(), const [71, 72, 73], const [17, 18, 19, 20, 21, 71, 72], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.ChooseFormatter() : null}, 1, 5, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DecoratorFormatter", r"mdlformatter.DecoratorFormatter", 7, 6, const prefix0.InjectAnnotation(), const [74, 75, 76], const [17, 18, 19, 20, 21, 74, 75], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.DecoratorFormatter() : null}, 1, 6, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"LowerCaseFormatter", r"mdlformatter.LowerCaseFormatter", 7, 7, const prefix0.InjectAnnotation(), const [77, 78, 79], const [17, 18, 19, 20, 21, 77, 78], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.LowerCaseFormatter() : null}, 1, 7, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"NumberFormatter", r"mdlformatter.NumberFormatter", 7, 8, const prefix0.InjectAnnotation(), const [80, 81, 82], const [17, 18, 19, 20, 21, 80, 81], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.NumberFormatter() : null}, 1, 8, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"UpperCaseFormatter", r"mdlformatter.UpperCaseFormatter", 7, 9, const prefix0.InjectAnnotation(), const [83, 84, 85], const [17, 18, 19, 20, 21, 83, 84], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix3.UpperCaseFormatter() : null}, 1, 9, const [], const [prefix10.Directive, prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"MaterialApplication", r"mdlcore.MaterialApplication", 7, 10, const prefix0.InjectAnnotation(), const [86, 87], const [17, 18, 19, 20, 21, 86], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix4.MaterialApplication() : null}, 2, 10, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DomRenderer", r"mdlapplication.DomRenderer", 7, 11, const prefix0.InjectAnnotation(), const [88, 89, 90], const [17, 18, 19, 20, 21, 88, 89], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.DomRenderer() : null}, 3, 11, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"EventCompiler", r"mdlapplication.EventCompiler", 7, 12, const prefix0.InjectAnnotation(), const [9, 91, 93], const [17, 18, 19, 20, 21, 91], const [92], -1, {r"datasets": () => prefix5.EventCompiler.datasets}, {}, {r"": (b) => () => b ? new prefix5.EventCompiler() : null}, 3, 12, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"RootScope", r"mdlapplication.RootScope", 7, 13, const prefix0.InjectAnnotation(), const [94], const [17, 18, 19, 20, 21, 95, 96, 97, 98], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix5.RootScope() : null}, 3, 13, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBus", r"mdlflux.ActionBus", 519, 14, const prefix0.InjectAnnotation(), const [99, 100, 101], const [17, 18, 19, 20, 21], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix6.ActionBus() : null}, 4, 14, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ActionBusImpl", r"mdlflux.ActionBusImpl", 7, 15, const prefix0.InjectAnnotation(), const [102, 103, 104], const [17, 18, 19, 20, 21, 102, 103], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix6.ActionBusImpl() : null}, 4, 15, const [14], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"DataStore", r"mdlflux.DataStore", 519, 16, const prefix0.InjectAnnotation(), const [105, 106], const [17, 18, 19, 20, 21, 107, 108], const [], -1, {}, {}, {}, 4, 16, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"FireOnlyDataStore", r"mdlflux.FireOnlyDataStore", 7, 17, const prefix0.InjectAnnotation(), const [109, 110], const [17, 18, 19, 20, 21, 107, 108, 109], const [], 16, {}, {}, {r"": (b) => (_actionbus) => b ? new prefix6.FireOnlyDataStore(_actionbus) : null}, 4, 17, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"TemplateRenderer", r"mdltemplate.TemplateRenderer", 7, 18, const prefix0.InjectAnnotation(), const [10, 111, 112, 115], const [17, 18, 19, 20, 21, 111, 112, 113, 114], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix7.TemplateRenderer(_renderer, _eventCompiler) : null}, 5, 18, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ListRenderer", r"mdltemplate.ListRenderer", 7, 19, const prefix0.InjectAnnotation(), const [11, 12, 116, 121], const [17, 18, 19, 20, 21, 116, 117, 118, 119, 120], const [], -1, {}, {}, {r"": (b) => (_renderer, _eventCompiler) => b ? new prefix7.ListRenderer(_renderer, _eventCompiler) : null}, 5, 19, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"ModelObserverFactory", r"mdldirective.ModelObserverFactory", 7, 20, const prefix0.InjectAnnotation(), const [122, 123, 124], const [17, 18, 19, 20, 21, 122, 123], const [], -1, {}, {}, {r"": (b) => () => b ? new prefix8.ModelObserverFactory() : null}, 6, 20, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"Translator", r"l10n.Translator", 519, 21, const prefix0.InjectAnnotation(), const [125, 126, 127], const [17, 18, 19, 20, 21, 126], const [], -1, {}, {}, {}, 7, 21, const [], const [prefix0.inject], null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 22, const prefix0.InjectAnnotation(), const [63], const [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 63], const [], -1, const {}, const {}, const {}, 0, 4, const [], const [], null)], [new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix0.InjectAnnotation(), -1, 23, 24, const []), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix0.InjectAnnotation(), -1, 25, 25, const []), new r.VariableMirrorImpl(r"element", 33797, null, const prefix0.InjectAnnotation(), -1, 26, 26, const []), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix0.InjectAnnotation(), -1, 27, 27, const []), new r.VariableMirrorImpl(r"number", 33797, 3, const prefix0.InjectAnnotation(), 8, 8, 8, const []), new r.VariableMirrorImpl(r"decorate", 33797, 3, const prefix0.InjectAnnotation(), 6, 6, 6, const []), new r.VariableMirrorImpl(r"uppercase", 33797, 3, const prefix0.InjectAnnotation(), 9, 9, 9, const []), new r.VariableMirrorImpl(r"lowercase", 33797, 3, const prefix0.InjectAnnotation(), 7, 7, 7, const []), new r.VariableMirrorImpl(r"choose", 33797, 3, const prefix0.InjectAnnotation(), 5, 5, 5, const []), new r.VariableMirrorImpl(r"datasets", 2130965, 12, const prefix0.InjectAnnotation(), -1, 28, 29, const []), new r.VariableMirrorImpl(r"appendNewNodes", 32773, 18, const prefix0.InjectAnnotation(), -1, 27, 27, const []), new r.VariableMirrorImpl(r"listTag", 32773, 19, const prefix0.InjectAnnotation(), -1, 30, 30, const []), new r.VariableMirrorImpl(r"itemTag", 32773, 19, const prefix0.InjectAnnotation(), -1, 30, 30, const []), new r.MethodMirrorImpl(r"widget", 131090, 0, 0, 0, 0, const [0], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 0, null, -1, -1, const [3], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 0, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 0, -1, 0, 0, const [1, 2], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"==", 131074, null, -1, 27, 27, const [4], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [5], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 31, 31, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 32, 32, const [], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 0, 23, 24, 22), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [6], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"query", 131074, null, -1, 26, 26, const [7, 8], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"waitForChild", 65538, null, null, null, null, const [9, 10, 11], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 1, 25, 25, 29), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 2, 26, 26, 30), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 27, 27, 31), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 3, 27, 27, 32), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 26, 26, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 33, 33, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 34, 35, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 36, 37, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 38, 39, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 40, 40, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 1, 1, 1, 1, const [13], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 1, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 1, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled=", 262148, 1, null, -1, -1, const [16], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enabled", 131075, 1, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 1, null, -1, -1, const [17], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 1, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 1, -1, 1, 1, const [14, 15], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"widget", 131090, 2, 2, 2, 2, const [18], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disable", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"enable", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"check", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uncheck", 262146, 2, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"hub", 131075, 2, -1, 26, 26, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"inputElement", 131075, 2, -1, 41, 41, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked=", 262148, 2, null, -1, -1, const [21], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"checked", 131075, 2, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled=", 262148, 2, null, -1, -1, const [22], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"disabled", 131075, 2, -1, 27, 27, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label", 131075, 2, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"label=", 262148, 2, null, -1, -1, const [23], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value", 131075, 2, -1, 30, 30, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"value=", 262148, 2, null, -1, -1, const [24], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fromElement", 0, 2, -1, 2, 2, const [19, 20], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"formatterFor", 131074, 4, -1, 42, 42, const [25, 26], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 4, 8, 8, 64), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 5, 6, 6, 65), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 6, 9, 9, 66), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 7, 7, 7, 67), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 8, 5, 5, 68), new r.MethodMirrorImpl(r"", 64, 3, -1, 3, 3, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 4, -1, 4, 4, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"choose", 131074, 5, -1, 30, 30, const [27, 28, 29], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 5, -1, 30, 30, const [30, 31, 32], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 5, -1, 5, 5, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"decorate", 131074, 6, -1, 30, 30, const [33], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 6, -1, 30, 30, const [34], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 6, -1, 6, 6, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"lowercase", 131074, 7, -1, 30, 30, const [35], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 7, -1, 30, 30, const [36], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 7, -1, 7, 7, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"number", 131074, 8, -1, 30, 30, const [37, 38], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 8, -1, 30, 30, const [39, 40], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 8, -1, 8, 8, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"uppercase", 131074, 9, -1, 30, 30, const [41], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 9, -1, 30, 30, const [42], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 9, -1, 9, 9, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"run", 262146, 10, null, -1, -1, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 10, -1, 10, 10, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"render", 4325378, 11, -1, 43, 44, const [43, 44, 45], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"renderBefore", 4325378, 11, -1, 43, 44, const [46, 47, 48], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 11, -1, 11, 11, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"compileElement", 4325378, 12, -1, 45, 46, const [49, 50], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 9, 28, 29, 92), new r.MethodMirrorImpl(r"", 0, 12, -1, 12, 12, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 13, -1, 13, 13, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"context=", 262148, null, null, -1, -1, const [51], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"parentContext", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"rootContext", 131075, null, -1, 47, 47, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 14, null, -1, -1, const [52], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"on", 4325890, 14, -1, 48, 49, const [53], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 1, 14, -1, 14, 14, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 15, null, -1, -1, const [54], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"on", 4325378, 15, -1, 48, 49, const [55], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 1, 15, -1, 15, 15, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262658, 16, null, -1, -1, const [56], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 16, -1, 16, 16, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"emitChange", 262146, null, null, -1, -1, const [57], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"onChange", 4325379, null, -1, 50, 51, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"fire", 262146, 17, null, -1, -1, const [58], const prefix0.InjectAnnotation(), const [override]), new r.MethodMirrorImpl(r"", 0, 17, -1, 17, 17, const [59], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 18, -1, 52, 52, const [60, 61, 62], const prefix0.InjectAnnotation(), const [deprecated]), new r.MethodMirrorImpl(r"render", 4325378, 18, -1, 45, 46, const [63, 64, 65, 66], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 27, 27, 113), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 10, 27, 27, 114), new r.MethodMirrorImpl(r"", 0, 18, -1, 18, 18, const [67, 68], const prefix0.InjectAnnotation(), const [prefix0.inject]), new r.MethodMirrorImpl(r"call", 131074, 19, -1, 52, 52, const [70, 71, 72, 73], const prefix0.InjectAnnotation(), const []), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 30, 30, 117), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 11, 30, 30, 118), new r.ImplicitGetterMirrorImpl(const prefix0.InjectAnnotation(), 12, 30, 30, 119), new r.ImplicitSetterMirrorImpl(const prefix0.InjectAnnotation(), 12, 30, 30, 120), new r.MethodMirrorImpl(r"", 0, 19, -1, 19, 19, const [74, 75], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"createFor", 131074, 20, -1, 53, 53, const [78], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"setBuilderFor", 262146, 20, null, -1, -1, const [79, 80], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 0, 20, -1, 20, 20, const [], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"translate", 131586, 21, -1, 30, 30, const [81], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"call", 131074, 21, -1, 30, 30, const [82], const prefix0.InjectAnnotation(), const []), new r.MethodMirrorImpl(r"", 64, 21, -1, 21, 21, const [], const prefix0.InjectAnnotation(), const [])], [new r.ParameterMirrorImpl(r"element", 33798, 13, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 16, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 16, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 14, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"other", 16390, 17, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 19, const prefix0.InjectAnnotation(), -1, 55, 55, const [], null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 24, const prefix0.InjectAnnotation(), -1, 56, 57, const [], null, null), new r.ParameterMirrorImpl(r"selector", 33798, 27, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"logError", 48134, 27, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 28, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"wait", 48134, 28, const prefix0.InjectAnnotation(), -1, 58, 58, const [], const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 28, const prefix0.InjectAnnotation(), -1, 31, 31, const [], 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 32, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 39, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 46, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 46, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 42, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 44, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 47, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 62, const prefix0.InjectAnnotation(), -1, 54, 54, const [], null, null), new r.ParameterMirrorImpl(r"injector", 33798, 62, const prefix0.InjectAnnotation(), -1, 25, 25, const [], null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 54, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 56, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"v", 33798, 59, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 61, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 63, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 63, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 71, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"option1", 39942, 71, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "Yes", null), new r.ParameterMirrorImpl(r"option2", 39942, 71, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "No", null), new r.ParameterMirrorImpl(r"value", 17414, 72, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"option1", 39942, 72, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "Yes", null), new r.ParameterMirrorImpl(r"option2", 39942, 72, const prefix0.InjectAnnotation(), -1, 30, 30, const [], "No", null), new r.ParameterMirrorImpl(r"value", 17414, 74, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 75, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 77, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 78, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicValue", 17414, 80, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"dynamicFractionSize", 21510, 80, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 17414, 81, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"fractionSize", 21510, 81, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"value", 33798, 83, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"value", 16390, 84, const prefix0.InjectAnnotation(), null, null, null, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 88, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 88, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 88, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"parent", 33798, 89, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"reference", 33798, 89, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"content", 33798, 89, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 91, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 91, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"cntxt", 33798, 96, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 99, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 100, const prefix0.InjectAnnotation(), -1, 60, 60, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 102, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"actionname", 33798, 103, const prefix0.InjectAnnotation(), -1, 60, 60, const [], null, null), new r.ParameterMirrorImpl(r"action", 33798, 105, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"action", 48134, 107, const prefix0.InjectAnnotation(), -1, 59, 59, const [], prefix6.UpdateViewAction, #action), new r.ParameterMirrorImpl(r"action", 33798, 109, const prefix0.InjectAnnotation(), -1, 59, 59, const [], null, null), new r.ParameterMirrorImpl(r"_actionbus", 32806, 110, const prefix0.InjectAnnotation(), 14, 14, 14, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 111, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 111, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 111, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 112, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 112, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 112, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"replaceNode", 48134, 112, const prefix0.InjectAnnotation(), -1, 27, 27, const [], true, #replaceNode), new r.ParameterMirrorImpl(r"_renderer", 32806, 115, const prefix0.InjectAnnotation(), 11, 11, 11, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 115, const prefix0.InjectAnnotation(), 12, 12, 12, const [], null, null), new r.ParameterMirrorImpl(r"_appendNewNodes", 32870, 114, const prefix0.InjectAnnotation(), -1, 27, 27, const [], null, null), new r.ParameterMirrorImpl(r"parent", 33798, 116, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"scope", 33798, 116, const prefix0.InjectAnnotation(), -1, 47, 47, const [], null, null), new r.ParameterMirrorImpl(r"items", 2130950, 116, const prefix0.InjectAnnotation(), -1, 62, 63, const [], null, null), new r.ParameterMirrorImpl(r"template", 6, 116, const prefix0.InjectAnnotation(), null, 61, 61, const [], null, null), new r.ParameterMirrorImpl(r"_renderer", 32806, 121, const prefix0.InjectAnnotation(), 11, 11, 11, const [], null, null), new r.ParameterMirrorImpl(r"_eventCompiler", 32806, 121, const prefix0.InjectAnnotation(), 12, 12, 12, const [], null, null), new r.ParameterMirrorImpl(r"_listTag", 32870, 118, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"_itemTag", 32870, 120, const prefix0.InjectAnnotation(), -1, 30, 30, const [], null, null), new r.ParameterMirrorImpl(r"element", 33798, 122, const prefix0.InjectAnnotation(), -1, 26, 26, const [], null, null), new r.ParameterMirrorImpl(r"type", 33798, 123, const prefix0.InjectAnnotation(), -1, 32, 32, const [], null, null), new r.ParameterMirrorImpl(r"builder", 1030, 123, const prefix0.InjectAnnotation(), null, 64, 64, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 125, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null), new r.ParameterMirrorImpl(r"l10n", 33798, 126, const prefix0.InjectAnnotation(), -1, 65, 65, const [], null, null)], [prefix1.MaterialBadge, prefix1.MaterialButton, prefix1.MaterialCheckbox, prefix3.Formatter, prefix3.FallbackFormatter, prefix3.ChooseFormatter, prefix3.DecoratorFormatter, prefix3.LowerCaseFormatter, prefix3.NumberFormatter, prefix3.UpperCaseFormatter, prefix4.MaterialApplication, prefix5.DomRenderer, prefix5.EventCompiler, prefix5.RootScope, prefix6.ActionBus, prefix6.ActionBusImpl, prefix6.DataStore, prefix6.FireOnlyDataStore, prefix7.TemplateRenderer, prefix7.ListRenderer, prefix8.ModelObserverFactory, prefix9.Translator, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), const m.TypeValue>>().type, List, prefix0.Injector, prefix12.Element, bool, const m.TypeValue>().type, Map, String, int, Type, prefix12.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix12.ElementStream, const m.TypeValue>().type, prefix12.ElementStream, prefix4.MdlComponent, prefix12.CheckboxInputElement, prefix3.MaterialFormatter, const m.TypeValue>().type, prefix11.Future, const m.TypeValue>().type, prefix11.Future, Object, const m.TypeValue>().type, prefix11.Stream, const m.TypeValue>>().type, prefix11.Stream, prefix7.Renderer, prefix8.ModelObserver, prefix12.HtmlElement, Invocation, const m.TypeValue>().type, prefix11.StreamSubscription, Duration, prefix6.Action, prefix6.ActionName, const m.TypeValue().type, const m.TypeValue>().type, List, const m.TypeValue().type, prefix9.L10N], 23, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"eventStreams": (dynamic instance) => instance.eventStreams, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"query": (dynamic instance) => instance.query, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"value": (dynamic instance) => instance.value, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label, r"number": (dynamic instance) => instance.number, r"decorate": (dynamic instance) => instance.decorate, r"uppercase": (dynamic instance) => instance.uppercase, r"lowercase": (dynamic instance) => instance.lowercase, r"choose": (dynamic instance) => instance.choose, r"call": (dynamic instance) => instance.call, r"run": (dynamic instance) => instance.run, r"render": (dynamic instance) => instance.render, r"renderBefore": (dynamic instance) => instance.renderBefore, r"compileElement": (dynamic instance) => instance.compileElement, r"context": (dynamic instance) => instance.context, r"parentContext": (dynamic instance) => instance.parentContext, r"rootContext": (dynamic instance) => instance.rootContext, r"fire": (dynamic instance) => instance.fire, r"on": (dynamic instance) => instance.on, r"emitChange": (dynamic instance) => instance.emitChange, r"onChange": (dynamic instance) => instance.onChange, r"appendNewNodes": (dynamic instance) => instance.appendNewNodes, r"listTag": (dynamic instance) => instance.listTag, r"itemTag": (dynamic instance) => instance.itemTag, r"createFor": (dynamic instance) => instance.createFor, r"setBuilderFor": (dynamic instance) => instance.setBuilderFor}, {r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"value=": (dynamic instance, value) => instance.value = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value, r"context=": (dynamic instance, value) => instance.context = value, r"appendNewNodes=": (dynamic instance, value) => instance.appendNewNodes = value, r"listTag=": (dynamic instance, value) => instance.listTag = value, r"itemTag=": (dynamic instance, value) => instance.itemTag = value}, [new r.LibraryMirrorImpl(r"mdlcomponents", Uri.parse(r"reflectable://0/mdlcomponents"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlformatter", Uri.parse(r"reflectable://1/mdlformatter"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlcore", Uri.parse(r"reflectable://2/mdlcore"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlapplication", Uri.parse(r"reflectable://3/mdlapplication"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdlflux", Uri.parse(r"reflectable://4/mdlflux"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdltemplate", Uri.parse(r"reflectable://5/mdltemplate"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"mdldirective", Uri.parse(r"reflectable://6/mdldirective"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null), new r.LibraryMirrorImpl(r"l10n", Uri.parse(r"reflectable://7/l10n"), const prefix0.InjectAnnotation(), const [], {}, {}, const [], null)], []), const prefix2.MustacheMirrorsUsedAnnotation(): new r.ReflectorData([new r.NonGenericClassMirrorImpl(r"MaterialButton", r"mdlcomponents.MaterialButton", 7, 0, const prefix2.MustacheMirrorsUsedAnnotation(), const [4, 5, 6, 7, 8, 9, 10, 11], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 5, 6, 7, 8, 9, 10], const [4], -1, {r"widget": () => prefix1.MaterialButton.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialButton.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"MaterialCheckbox", r"mdlcomponents.MaterialCheckbox", 7, 1, const prefix2.MustacheMirrorsUsedAnnotation(), const [34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 39, 29, 30, 31, 32, 33, 50, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48], const [34], -1, {r"widget": () => prefix1.MaterialCheckbox.widget}, {}, {r"fromElement": (b) => (element, injector) => b ? new prefix1.MaterialCheckbox.fromElement(element, injector) : null}, -1, -1, const [-1], null, null), new r.NonGenericClassMirrorImpl(r"mdlcore.MdlComponent with mdlformatter.FallbackFormatter", r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter", 583, 2, const prefix2.MustacheMirrorsUsedAnnotation(), const [50], const [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 50], const [], -1, const {}, const {}, const {}, -1, -1, const [-1], null, null)], [new r.VariableMirrorImpl(r"eventStreams", 2130949, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 3, 4, null), new r.VariableMirrorImpl(r"injector", 33797, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null), new r.VariableMirrorImpl(r"element", 33797, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null), new r.VariableMirrorImpl(r"visualDebugging", 32773, null, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null), new r.MethodMirrorImpl(r"widget", 131090, 0, 0, 0, 0, const [0], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 0, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 0, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled=", 262148, 0, null, -1, -1, const [3], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enabled", 131075, 0, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 0, null, -1, -1, const [4], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 0, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 0, -1, 0, 0, const [1, 2], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"==", 131074, null, -1, 7, 7, const [5], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"toString", 131074, null, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"noSuchMethod", 65538, null, null, null, null, const [6], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hashCode", 131075, null, -1, 9, 9, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"runtimeType", 131075, null, -1, 10, 10, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 0, 3, 4, 17), new r.MethodMirrorImpl(r"downgrade", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"cancelStream", 262146, null, null, -1, -1, const [7], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attached", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"update", 262146, null, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"query", 131074, null, -1, 6, 6, const [8, 9], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"waitForChild", 65538, null, null, null, null, const [10, 11, 12], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 1, 5, 5, 24), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 2, 6, 6, 25), new r.ImplicitGetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 3, 7, 7, 26), new r.ImplicitSetterMirrorImpl(const prefix2.MustacheMirrorsUsedAnnotation(), 3, 7, 7, 27), new r.MethodMirrorImpl(r"hub", 131075, null, -1, 6, 6, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"classes", 131075, null, -1, 11, 11, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"attributes", 4325379, null, -1, 12, 13, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onInput", 4325379, null, -1, 14, 15, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"onClick", 4325379, null, -1, 16, 17, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"parent", 131075, null, -1, 18, 18, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"widget", 131090, 1, 1, 1, 1, const [14], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disable", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"enable", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"check", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"uncheck", 262146, 1, null, -1, -1, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"hub", 131075, 1, -1, 6, 6, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"inputElement", 131075, 1, -1, 19, 19, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked=", 262148, 1, null, -1, -1, const [17], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"checked", 131075, 1, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled=", 262148, 1, null, -1, -1, const [18], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"disabled", 131075, 1, -1, 7, 7, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label", 131075, 1, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"label=", 262148, 1, null, -1, -1, const [19], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value", 131075, 1, -1, 8, 8, const [], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"value=", 262148, 1, null, -1, -1, const [20], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"fromElement", 0, 1, -1, 1, 1, const [15, 16], const prefix2.MustacheMirrorsUsedAnnotation(), null), new r.MethodMirrorImpl(r"formatterFor", 131074, null, -1, 20, 20, const [21, 22], const prefix2.MustacheMirrorsUsedAnnotation(), null)], [new r.ParameterMirrorImpl(r"element", 33798, 4, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 11, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 11, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null, null, null), new r.ParameterMirrorImpl(r"_enabled", 33830, 7, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 9, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"other", 16390, 12, const prefix2.MustacheMirrorsUsedAnnotation(), null, null, null, null, null, null), new r.ParameterMirrorImpl(r"invocation", 32774, 14, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 22, 22, null, null, null), new r.ParameterMirrorImpl(r"stream", 2130950, 19, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 23, 24, null, null, null), new r.ParameterMirrorImpl(r"selector", 33798, 22, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"logError", 48134, 22, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, true, #logError), new r.ParameterMirrorImpl(r"selector", 33798, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"wait", 48134, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 25, 25, null, const Duration(milliseconds: 100), #wait), new r.ParameterMirrorImpl(r"maxIterations", 48134, 23, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 9, 9, null, 10, #maxIterations), new r.ParameterMirrorImpl(r"_visualDebugging", 32870, 27, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 34, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"element", 33798, 49, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 21, 21, null, null, null), new r.ParameterMirrorImpl(r"injector", 33798, 49, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 5, 5, null, null, null), new r.ParameterMirrorImpl(r"_checked", 33830, 41, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"_disabled", 33830, 43, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 7, 7, null, null, null), new r.ParameterMirrorImpl(r"v", 33798, 46, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"value", 33798, 48, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 8, 8, null, null, null), new r.ParameterMirrorImpl(r"inquirer", 33798, 50, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null, null, null), new r.ParameterMirrorImpl(r"baseElement", 33798, 50, const prefix2.MustacheMirrorsUsedAnnotation(), -1, 6, 6, null, null, null)], [prefix1.MaterialButton, prefix1.MaterialCheckbox, const r.FakeType(r"mdlcomponents.mdlcore.MdlComponent with mdlformatter.FallbackFormatter"), const m.TypeValue>>().type, List, prefix0.Injector, prefix12.Element, bool, String, int, Type, prefix12.CssClassSet, const m.TypeValue>().type, Map, const m.TypeValue>().type, prefix12.ElementStream, const m.TypeValue>().type, prefix12.ElementStream, prefix4.MdlComponent, prefix12.CheckboxInputElement, prefix3.MaterialFormatter, prefix12.HtmlElement, Invocation, const m.TypeValue>().type, prefix11.StreamSubscription, Duration], 3, {r"==": (dynamic instance) => (x) => instance == x, r"toString": (dynamic instance) => instance.toString, r"noSuchMethod": (dynamic instance) => instance.noSuchMethod, r"hashCode": (dynamic instance) => instance.hashCode, r"runtimeType": (dynamic instance) => instance.runtimeType, r"eventStreams": (dynamic instance) => instance.eventStreams, r"downgrade": (dynamic instance) => instance.downgrade, r"cancelStream": (dynamic instance) => instance.cancelStream, r"attached": (dynamic instance) => instance.attached, r"update": (dynamic instance) => instance.update, r"query": (dynamic instance) => instance.query, r"waitForChild": (dynamic instance) => instance.waitForChild, r"injector": (dynamic instance) => instance.injector, r"element": (dynamic instance) => instance.element, r"visualDebugging": (dynamic instance) => instance.visualDebugging, r"hub": (dynamic instance) => instance.hub, r"classes": (dynamic instance) => instance.classes, r"attributes": (dynamic instance) => instance.attributes, r"onInput": (dynamic instance) => instance.onInput, r"onClick": (dynamic instance) => instance.onClick, r"parent": (dynamic instance) => instance.parent, r"disable": (dynamic instance) => instance.disable, r"enable": (dynamic instance) => instance.enable, r"enabled": (dynamic instance) => instance.enabled, r"value": (dynamic instance) => instance.value, r"formatterFor": (dynamic instance) => instance.formatterFor, r"check": (dynamic instance) => instance.check, r"uncheck": (dynamic instance) => instance.uncheck, r"inputElement": (dynamic instance) => instance.inputElement, r"checked": (dynamic instance) => instance.checked, r"disabled": (dynamic instance) => instance.disabled, r"label": (dynamic instance) => instance.label}, {r"visualDebugging=": (dynamic instance, value) => instance.visualDebugging = value, r"enabled=": (dynamic instance, value) => instance.enabled = value, r"value=": (dynamic instance, value) => instance.value = value, r"checked=": (dynamic instance, value) => instance.checked = value, r"disabled=": (dynamic instance, value) => instance.disabled = value, r"label=": (dynamic instance, value) => instance.label = value}, null, [])}; + + +final _memberSymbolMap = null; + +initializeReflectable() { + if (!isTransformed) { + throw new UnsupportedError( + "The transformed code is running with the untransformed " + "reflectable package. Remember to set your package-root to " + "'build/.../packages'."); + } + r.data = _data; + r.memberSymbolMap = _memberSymbolMap; +} diff --git a/samples/mdl_layout/.analysis_options.yaml b/samples/mdl_layout/.analysis_options.yaml new file mode 100644 index 0000000..58522ed --- /dev/null +++ b/samples/mdl_layout/.analysis_options.yaml @@ -0,0 +1,6 @@ +# Analyzer options: +# https://www.dartlang.org/guides/language/analysis-options +# +analyzer: + strong-mode: true + diff --git a/samples/mdl_layout/.rsync b/samples/mdl_layout/.rsync new file mode 100644 index 0000000..4d73755 --- /dev/null +++ b/samples/mdl_layout/.rsync @@ -0,0 +1,14 @@ +# Rsync-Destination für dieses sample +# +# - ssh ls2 +# - cat ~/website/config/nginx/_template.conf.txt | sed -e 's/%example%/mdl_layout/' > ~/website/config/nginx/mdl_layout.conf +# - cat ~/website/config/nginx/mdl_layout.conf +# - sudo mkdir -p ~/website/data/example/mdl_layout +# - sudo chown ubuntu:ubuntu ~/website/data/example/mdl_layout +# - sudo chmod 775 ~/website/data/example/mdl_layout +# - ls -lad ~/website/data/example/mdl_layout +# - cd ~/website && docker-compose restart +# +RSYNC_DESTINATION=":~/website/data/example/mdl_layout/" +EXAMPLE_URL="http://mdl_layout.example.mikemitterer.at/" + diff --git a/samples/mdl_layout/.sitegen/html/_content/index.html b/samples/mdl_layout/.sitegen/html/_content/index.html index 9daf1f3..92261c2 100644 --- a/samples/mdl_layout/.sitegen/html/_content/index.html +++ b/samples/mdl_layout/.sitegen/html/_content/index.html @@ -1,9 +1,9 @@ title: LAYOUT samplename: layout -sampleurl: https://github.com/MikeMitterer/dart-material-design-lite/tree/master/samples/mdl_layout/web +sampleurl: https://github.com/MikeMitterer/dart-material-design-lite-site/tree/master/samples/mdl_layout/web ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-

Transparent header

+

Transparent header

Uses a header that scrolls with the text, rather than staying locked at the top

@@ -26,7 +26,7 @@

Transparent header

} .layout-transparent .mdl-layout__content { background-color: rgba(255,255,255,0.60)} -
+
@@ -58,7 +58,7 @@

Transparent header

-

Fixed drawer, no header

+

Fixed drawer, no header

No header, and the drawer stays open on larger screens (fixed drawer).

-
+
@@ -107,7 +107,7 @@

Fixed drawer, no header

-

Fixed header and drawer

+

Fixed header and drawer

The drawer is always open in large screens. The header is always shown, even in small screens.

-
+
Title
-
- @@ -292,7 +292,7 @@

Waterfall header

-

Scrollable tabs

+

Scrollable tabs

Simple header with scrollable tabs.

@@ -311,14 +311,14 @@

Scrollable tabs

background: white; } -
+
Title
-
+
Tab 1 Tab 2 Tab 3 @@ -331,22 +331,22 @@

Scrollable tabs

Title
-
+
-
+
-
+
-
+
-
+
-
+
@@ -354,7 +354,7 @@

Scrollable tabs

-

Fixed tabs

+

Fixed tabs

Simple header with fixed tabs.

@@ -372,7 +372,7 @@

Fixed tabs

background: white; } -
@@ -380,7 +380,7 @@

Fixed tabs

Title
-
+
Tab 1 Tab 2 Tab 3 @@ -390,13 +390,13 @@

Fixed tabs

Title
-
+
-
+
-
+
diff --git a/samples/mdl_layout/pubspec.yaml b/samples/mdl_layout/pubspec.yaml index 2d0403e..fd0aa88 100644 --- a/samples/mdl_layout/pubspec.yaml +++ b/samples/mdl_layout/pubspec.yaml @@ -5,30 +5,24 @@ author: Mike Mitterer homepage: https://github.com/MikeMitterer/dart-material-design-lite dependencies: - browser: any - - intl: ^0.12.0 + intl: ^0.15.0 args: any validate: ^1.0.0 browser_detect: ^1.0.0 - logging: ^0.11.0 - logging_handlers: ^0.8.0 - console_log_handler: ^0.1.0 + logging: '>=0.11.3 <1.0.0' + console_log_handler: ^1.0.0 + # git: git@github.com:MikeMitterer/dart-console_log_handler.git # path: /Volumes/Daten/DevLocal/DevDart/ConsoleLogHandler mdl: + # '>=2.1.0 <3.0.0' + # git: + # url: git@github.com:MikeMitterer/dart-material-design-lite.git + # ref: v2.2 path: /Volumes/Daten/DevLocal/DevDart/MaterialDesignLite - di: ^3.3.0 - - dart_to_js_script_rewriter: ^0.1.0 - -transformers: - - di - - dart_to_js_script_rewriter - -# - $dart2js: -# commandLineOptions: [--enable-experimental-mirrors] -# minify: false -# sourceMaps: true \ No newline at end of file +dev_dependencies: + build_runner: any + build_web_compilers: any + sass_builder: any \ No newline at end of file diff --git a/samples/mdl_layout/web/README.md b/samples/mdl_layout/web/README.md index 71b3a0b..a60bea8 100644 --- a/samples/mdl_layout/web/README.md +++ b/samples/mdl_layout/web/README.md @@ -12,13 +12,13 @@ To use any MDL component, you must include the minified CSS and JavaScript files  1. Code a `
` element. This is the "outer" div that holds the entire layout. Add MDL classes as indicated, separated by spaces, to the div using the `class` attribute. ```html -
+
```  2. Inside the div, code a `
` element. This holds the header row with navigation links that is displayed on large screens, and the menu icon that opens the navigation drawer for smaller screens. Add the MDL class to the header using the `class` attribute. ```html -
+
@@ -26,7 +26,7 @@ To use any MDL component, you must include the minified CSS and JavaScript files  3. Inside the header, add a `
` to produce the menu icon, and include the MDL class as indicated. The div has no content of its own. ```html -
+
@@ -35,7 +35,7 @@ To use any MDL component, you must include the minified CSS and JavaScript files  4. Still inside the header, add another `
` to hold the header row's content, and include the MDL class as indicated. ```html -
+
@@ -46,7 +46,7 @@ To use any MDL component, you must include the minified CSS and JavaScript files  5. Inside the header row div, add a span containing the layout title, and include the MDL class as indicated. ```html -
+
@@ -58,7 +58,7 @@ To use any MDL component, you must include the minified CSS and JavaScript files  6. Following the span, add a `
` to align the header's navigation links to the right, and include the MDL class as indicated. ```html -
+
@@ -71,7 +71,7 @@ To use any MDL component, you must include the minified CSS and JavaScript files  7. Following the spacer div, add a `