uawdijnntqw1x1x1
IP : 216.73.216.110
Hostname : 6.87.74.97.host.secureserver.net
Kernel : Linux 6.87.74.97.host.secureserver.net 4.18.0-553.83.1.el8_10.x86_64 #1 SMP Mon Nov 10 04:22:44 EST 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
emeraadmin
/
.cpanel
/
.
/
..
/
public_html
/
wp-includes
/
..
/
node_modules
/
..
/
4d695
/
@claviska.zip
/
/
PK\[�\�ԏs��jquery-minicolors/package.jsonnu�[���{ "_args": [ [ "@claviska/jquery-minicolors@2.3.2", "C:\\Users\\Ovi-PC\\Downloads\\themekit-master\\themekit" ] ], "_from": "@claviska/jquery-minicolors@2.3.2", "_id": "@claviska/jquery-minicolors@2.3.2", "_inBundle": false, "_integrity": "sha512-I99KtBtxwye6m+cxZ4uPyIrTGTCK6SB5Zb4gVe54hX7mrSOfqeGs5BmVLUVBWjjRRtWjfBYTDavw8AvmyD9kcQ==", "_location": "/@claviska/jquery-minicolors", "_phantomChildren": {}, "_requested": { "type": "version", "registry": true, "raw": "@claviska/jquery-minicolors@2.3.2", "name": "@claviska/jquery-minicolors", "escapedName": "@claviska%2fjquery-minicolors", "scope": "@claviska", "rawSpec": "2.3.2", "saveSpec": null, "fetchSpec": "2.3.2" }, "_requiredBy": [ "/" ], "_resolved": "https://registry.npmjs.org/@claviska/jquery-minicolors/-/jquery-minicolors-2.3.2.tgz", "_spec": "2.3.2", "_where": "C:\\Users\\Ovi-PC\\Downloads\\themekit-master\\themekit", "author": { "name": "Cory LaViska" }, "bugs": { "url": "https://github.com/claviska/jquery-minicolors/issues" }, "description": "jQuery MiniColors Plugin", "devDependencies": { "del": "^2.2.0", "gulp": "^3.9.1", "gulp-help": "^1.6.1", "gulp-rename": "^1.4.0", "gulp-uglify": "^1.5.3" }, "homepage": "https://github.com/claviska/jquery-minicolors", "keywords": [ "jquery", "colorpicker" ], "license": "MIT", "main": "jquery.minicolors.js", "name": "@claviska/jquery-minicolors", "peerDependencies": { "jquery": ">= 1.7.x" }, "repository": { "type": "git", "url": "git+https://github.com/claviska/jquery-minicolors.git" }, "scripts": {}, "version": "2.3.2" } PK\[�\^S��jquery-minicolors/composer.jsonnu�[���{ "name": "abeautifulsite/jquery-minicolors", "type": "component", "description": "jQuery MiniColors Plugin", "homepage": "http://www.abeautifulsite.net/", "license": "MIT", "extra": { "component": { "scripts": [ "jquery.minicolors.js" ], "files": [ "jquery.minicolors.js", "jquery.minicolors.min.js", "jquery.minicolors.css", "jquery.minicolors.png" ] } } }PK\[�\s�� PPjquery-minicolors/gulpfile.jsnu�[���/* eslint-env node, es6 */ 'use strict'; const gulp = require('gulp-help')(require('gulp')); const del = require('del'); const rename = require('gulp-rename'); const uglify = require('gulp-uglify'); // Clean gulp.task('clean', 'Clean up!', () => { return del('jquery.minicolors.min.js'); }); // Minify gulp.task('minify', 'Minify it!', ['clean'], () => { return gulp.src('jquery.minicolors.js') .pipe(uglify({ preserveComments: 'license' })) .on('error', (err) => { console.error(err); this.emit('end'); }) .pipe(rename({ suffix: '.min' })) .pipe(gulp.dest(__dirname)); }); // Watch for changes gulp.task('watch', 'Watch for changes!', () => { gulp.watch('jquery.minicolors.js', ['minify']); }); // Default gulp.task('default', 'The default task.', ['watch']); PK\[�\�����jquery-minicolors/.editorconfignu�[���root = true [*] indent_style = space indent_size = 2 end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true PK\[�\�FQ��jquery-minicolors/.eslintrcnu�[���{ "rules": { "no-console": ["off"], "indent": ["error", 2], "quotes": ["error", "single"], "linebreak-style": ["error", "unix"], "no-unused-vars": ["warn", { "vars": "all", "args": "after-used" }], "semi": ["error", "always"] }, "env": { "browser": true, "jquery": true }, "extends": "eslint:recommended", "globals": { "define": true, "module": true, "require": true } } PK\[�\H�|<9b9bjquery-minicolors/index.htmlnu�[���<!DOCTYPE html> <html> <head> <title>jQuery MiniColors</title> <meta charset="utf-8"> <!-- jQuery --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <!-- Bootstrap 3 --> <link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> <script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script> <!-- MiniColors --> <script src="jquery.minicolors.js"></script> <link rel="stylesheet" href="jquery.minicolors.css"> <style> dl { margin: 20px 0; } dt { font-size: 120%; } dd { padding: 10px 20px 20px 20px; } dd:last-child { border-bottom: none; } code { color: black; border: none; background: rgba(128, 128, 128, .1); } [dir=rtl] code { direction: ltr; } pre { background: #f8f8f8; border: none; color: #333; padding: 20px; } [dir=rtl] pre { direction: ltr; } h2 { margin-top: 50px; } h3 { color: #aaa; } .jumbotron { padding: 40px; } .jumbotron h1 { margin-top: 0; } .jumbotron p:last-child { margin-bottom: 0; } </style> <script> $(document).ready( function() { $('.demo').each( function() { // // Dear reader, it's actually very easy to initialize MiniColors. For example: // // $(selector).minicolors(); // // The way I've done it below is just for the demo, so don't get confused // by it. Also, data- attributes aren't supported at this time...they're // only used for this demo. // $(this).minicolors({ control: $(this).attr('data-control') || 'hue', defaultValue: $(this).attr('data-defaultValue') || '', format: $(this).attr('data-format') || 'hex', keywords: $(this).attr('data-keywords') || '', inline: $(this).attr('data-inline') === 'true', letterCase: $(this).attr('data-letterCase') || 'lowercase', opacity: $(this).attr('data-opacity'), position: $(this).attr('data-position') || 'bottom', swatches: $(this).attr('data-swatches') ? $(this).attr('data-swatches').split('|') : [], change: function(value, opacity) { if( !value ) return; if( opacity ) value += ', ' + opacity; if( typeof console === 'object' ) { console.log(value); } }, theme: 'bootstrap' }); }); }); </script> </head> <body> <div class="row" style="margin: 40px 40px;"> <div class="col-12"> <!-- Intro --> <div id="intro" class="jumbotron"> <h1>jQuery MiniColors</h1> <p class="text-muted"> Now with Bootstrap 3 support! </p> <p> A project by <a href="https://www.abeautifulsite.net/">A Beautiful Site</a>, originally developed for <a href="https://www.surrealcms.com/">Surreal CMS</a>. </p> </div> <!-- Contents --> <h2 id="contents">Contents</h2> <ul> <li><a href="#download">Download</a></li> <li><a href="#demos">Demos</a></li> <li><a href="#api">API</a> <ul> <li><a href="#instantiation">Instantiation</a></li> <li><a href="#settings">Settings</a></li> <li><a href="#methods">Methods</a></li> <li><a href="#events">Events</a></li> </ul> </li> <li><a href="#license">License</a></li> </ul> <!-- Download --> <h2 id="download">Download</h2> <p> This project is on GitHub. Feel free to post bug reports, feature requests, and code improvements on the official project page. </p> <p> <a href="https://github.com/claviska/jquery-minicolors" class="btn btn-success">Download on GitHub</a> </p> <!-- Demos --> <h2 id="demos">Demos</h2> <p> This is the main demo page, which uses <a href="https://getbootstrap.com/">Bootstrap 3</a>, but this plugin works without Bootstrap as well. </p> <p> <a href="without-bootstrap.html" class="btn btn-primary">View Demo Without Bootstrap</a> </p> <p> <a class="btn btn-primary" onclick="$(body).attr('dir')=='rtl'?$(body).removeAttr('dir'):$(body).attr('dir', 'rtl')">Toggle LTR/RTL</a> </p> <!-- Control types --> <h3>Control Types</h3> <div class="well"> <div class="row"> <div class="col-lg-4 col-sm-4 col-12"> <div class="form-group"> <label for="hue-demo">Hue (default)</label> <input type="text" id="hue-demo" class="form-control demo" data-control="hue" value="#ff6161"> </div> <div class="form-group"> <label for="saturation-demo">Saturation</label> <input type="text" id="saturation-demo" class="form-control demo" data-control="saturation" value="#0088cc"> </div> </div> <div class="col-lg-4 col-sm-4 col-12"> <div class="form-group"> <label for="brightness-demo">Brightness</label> <input type="text" id="brightness-demo" class="form-control demo" data-control="brightness" value="#00ffff"> </div> <div class="form-group"> <label for="wheel-demo">Wheel</label> <input type="text" id="wheel-demo" class="form-control demo" data-control="wheel" value="#ff99ee"> </div> </div> </div> </div> <!-- Input modes --> <h3>Input Modes</h3> <div class="well"> <div class="row"> <div class="col-lg-4 col-sm-4 col-12"> <div class="form-group"> <label for="text-field">Text field</label> <br> <input type="text" id="text-field" class="form-control demo" value="#70c24a"> </div> <div class="form-group"> <label for="hidden-input">Hidden Input</label> <br> <input type="hidden" id="hidden-input" class="demo" value="#db913d"> </div> </div> <div class="col-lg-4 col-sm-4 col-12"> <div class="form-group"> <label for="inline">Inline</label> <br> <input type="text" id="inline" class="form-control demo" data-inline="true" value="#4fc8db"> </div> </div> </div> </div> <!-- Positions --> <h3>Positions</h3> <div class="well"> <p> Valid positions include <code>bottom left</code>, <code>bottom right</code>, <code>top left</code>, and <code>top right</code>. </p> <div class="row"> <div class="col-lg-4 col-sm-4 col-12"> <div class="form-group"> <label for="position-bottom-left">bottom left (default)</label> <input type="text" id="position-bottom-left" class="form-control demo" data-position="bottom left" value="#0088cc"> </div> <div class="form-group"> <label for="position-top-left">top left</label> <input type="text" id="position-top-left" class="form-control demo" data-position="top left" value="#0088cc"> </div> </div> <div class="col-lg-4 col-sm-4 col-12"> <div class="form-group"> <label for="position-bottom-right">bottom right</label> <input type="text" id="position-bottom-right" class="form-control demo" data-position="bottom right" value="#0088cc"> </div> <div class="form-group"> <label for="position-top-right">top right</label> <input type="text" id="position-top-right" class="form-control demo" data-position="top right" value="#0088cc"> </div> </div> <div class="col-lg-4 col-sm-4 col-12"> </div> </div> </div> <!-- RGB(A) --> <h3>RGB(A)</h3> <div class="well"> <div class="row"> <div class="col-lg-4 col-sm-4 col-12"> <div class="form-group"> <label for="rgb">RGB</label> <br> <input type="text" id="rgb" class="form-control demo" data-format="rgb" value="rgb(33, 147, 58)"> <span class="help-block"> RGB input can be assigned by setting the <code>format</code> option to <code>rgb</code>. </span> </div> </div> <div class="col-lg-4 col-sm-4 col-12"> <div class="form-group"> <label for="rgba">RGBA</label> <br> <input type="text" id="rgba" class="form-control demo" data-format="rgb" data-opacity=".5" value="rgba(52, 64, 158, 0.5)"> <span class="help-block"> RGBA input can be assigned by setting the <code>format</code> option to <code>rgb</code> and <code>opacity</code> option to <code>true</code>. </span> </div> </div> </div> </div> <!-- and more --> <h3>…and more!</h3> <div class="well"> <div class="row"> <div class="col-lg-4 col-sm-4 col-12"> <div class="form-group"> <label for="opacity">Opacity</label> <br> <input type="text" id="opacity" class="form-control demo" data-opacity=".5" value="#766fa8"> <span class="help-block"> Opacity can be assigned by including the <code>data-opacity</code> attribute or by setting the <code>opacity</code> option to <code>true</code>. </span> </div> </div> <div class="col-lg-4 col-sm-4 col-12"> <div class="form-group"> <label for="keywords">Keywords</label> <br> <input type="text" id="keywords" class="form-control demo" data-keywords="transparent, initial, inherit" value="transparent"> <span class="help-block"> CSS-wide keywords can be assigned by setting the <code>keywords</code> option to a comma-separated list of valid keywords: <code>transparent, initial, inherit</code>. </span> </div> </div> </div> <div class="row"> <div class="col-lg-4 col-sm-4 col-12"> <div class="form-group"> <label for="default-value">Default Value</label> <br> <input type="text" id="default-value" class="form-control demo" data-defaultValue="#ff6600"> <span class="help-block"> This field has a default value assigned to it, so it will never be empty. </span> </div> </div> <div class="col-lg-4 col-sm-4 col-12"> <div class="form-group"> <label for="letter-case">Letter Case</label> <br> <input type="text" id="letter-case" class="form-control demo" data-letterCase="uppercase" value="#abcdef"> <span class="help-block"> This field will always be uppercase. </span> </div> </div> </div> <div class="row"> <div class="col-lg-4 col-sm-4 col-12"> <div class="form-group"> <label for="input-group">Input Groups</label> <div class="input-group"> <input type="text" id="input-group" class="form-control demo" value="#ff0000"/> <span class="input-group-btn"> <button class="btn btn-default" type="button">Button</button> </span> </div> <span class="help-block"> Example using Bootstrap's input groups. </span> </div> </div> <div class="col-lg-4 col-sm-4 col-12"> <div class="form-group"> <label for="more-input-group">More Input Groups</label> <div class="input-group"> <span class="input-group-addon">Color</span> <input type="text" id="more-input-group" class="form-control demo" value="#ff0000"/> <span class="input-group-btn"> <button class="btn btn-default" type="button">Button</button> </span> </div> <span class="help-block"> Input group example with addon. </span> </div> </div> </div> <div class="row"> <div class="col-lg-4 col-sm-4 col-12"> <div class="form-group"> <label for="letter-case">Swatches</label> <br> <input type="text" id="swatches" class="form-control demo" data-swatches="#ef9a9a|#90caf9|#a5d6a7|#fff59d|#ffcc80|#bcaaa4|#eeeeee|#f44336|#2196f3|#4caf50|#ffeb3b|#ff9800|#795548|#9e9e9e" value="#abcdef"> <span class="help-block"> Example with swatches. </span> </div> </div> <div class="col-lg-4 col-sm-4 col-12"> <div class="form-group"> <label for="letter-case">Swatches and opacity</label> <br> <input type="text" id="swatches" class="form-control demo" data-format="rgb" data-opacity="1" data-swatches="#fff|#000|#f00|#0f0|#00f|#ff0|rgba(0,0,255,0.5)" value="rgba(14, 206, 235, .5)"> <span class="help-block"> Example with swatches and opacity. </span> </div> </div> </div> </div> <!-- API --> <h2 id="api">API</h2> <!-- Instantiation --> <h3 id="instantiation">Instantiation</h3> <p> Instantiate like any other jQuery plugin: </p> <pre>$('INPUT.minicolors').minicolors(settings);</pre> <!-- Settings --> <h3 id="settings">Settings</h3> <p> Default settings are as follows: </p> <pre> $.minicolors = { defaults: { animationSpeed: 50, animationEasing: 'swing', change: null, changeDelay: 0, control: 'hue', defaultValue: '', format: 'hex', hide: null, hideSpeed: 100, inline: false, keywords: '', letterCase: 'lowercase', opacity: false, position: 'bottom left', show: null, showSpeed: 100, theme: 'default', swatches: [] } }; </pre> <p> For convenience, you can change default settings globally by assigning new values: </p> <pre> $.minicolors.defaults.changeDelay = 200; </pre> <p> To change multiple properties at once, use <code>$.extend()</code>: </p> <pre> $.minicolors.defaults = $.extend($.minicolors.defaults, { changeDelay: 200, letterCase: 'uppercase', theme: 'bootstrap' }); </pre> <p class="alert alert-warning"> <strong>Note:</strong> Changing default settings will <em>not</em> affect controls that are already initialized. </p> <dl> <dt>animationSpeed</dt> <dd> <p> The animation speed of the sliders when the user taps or clicks a new color. Set to <code>0</code> for no animation. </p> </dd> <dt>animationEasing</dt> <dd> <p> The easing to use when animating the sliders. </p> </dd> <dt>changeDelay</dt> <dd> <p> The time, in milliseconds, to defer the <code>change</code> event from firing while the user makes a selection. This is useful for preventing the <code>change</code> event from firing frequently as the user drags the color picker around. </p> <p> The default value is <code>0</code> (no delay). If your <code>change</code> callback features something resource-intensive (such as an AJAX request), you’ll probably want to set this to at least <code>200</code>. </p> </dd> <dt>control</dt> <dd> <p> Determines the type of control. Valid options are <code>hue</code>, <code>brightness</code>, <code>saturation</code>, and <code>wheel</code>. </p> </dd> <dt>defaultValue</dt> <dd> <p> To force a default color, set this to a valid hex string. When the user clears the control, it will revert to this color. </p> </dd> <dt>format</dt> <dd> <p> The format miniColors should use. Valid options are <code>hex</code> and <code>rgb</code>. </p> </dd> <dt>hideSpeed & showSpeed</dt> <dd> <p> The speed at which to hide and show the color picker. </p> </dd> <dt>inline</dt> <dd> <p> Set to <code>true</code> to force the color picker to appear inline. </p> </dd> <dt>keywords</dt> <dd> <p> A comma-separated list of keywords that the control should accept (e.g. inherit, transparent, initial). By default, no keywords are allowed. </p> </dd> <dt>letterCase</dt> <dd> <p> Determines the letter case of the hex code value. Valid options are <code>uppercase</code> or <code>lowercase</code>. </p> </dd> <dt>opacity</dt> <dd> <p> Set to <code>true</code> to enable the opacity slider. (Use the input element's <code>data-opacity</code> attribute to set a preset value.) </p> </dd> <dt>position</dt> <dd> <p> Sets the position of the dropdown. Valid options are <code>bottom left</code>, <code>bottom right</code>, <code>top left</code>, and <code>top right</code>. </p> <p class="alert alert-warning"> The <code>swatchPosition</code> setting has been removed in version 2.1. The position of the swatch is now determined by <code>position</code>. </p> </dd> <dt>theme</dt> <dd> <p> A string containing the name of the custom theme to be applied. In your CSS, prefix your selectors like this: </p> <pre> .minicolors-theme-yourThemeName { ... } </pre> <p> If you are using the default theme, you will probably need to adjust the swatch styles depending on your existing stylesheet rules. Version 2.1 removes as much styling on the <code>input</code> element as possible, which means it’s up to you to adjust your CSS to make sure the swatch aligns properly. </p> <p> To adjust the swatch, override these styles: </p> <pre> .minicolors-theme-default .minicolors-swatch { top: 5px; left: 5px; width: 18px; height: 18px; } .minicolors-theme-default.minicolors-position-right .minicolors-swatch { left: auto; right: 5px; } </pre> </div> </dd> <dt>swatches</dt> <dd> <p> An array containing one or more strings of hex colors that will show up under the main color grid. </p> <p> Alternatively, this can be an array of <code>{ name, color }</code> objects where <code>name</code> is a human-readable color name and <code>color</code> is a hex code. In this case, the name will be used to set the swatch's <code>title</code> attribute. </p> </dd> </dl> <!-- Methods --> <h3 id="methods">Methods</h3> <p>Use this syntax for calling methods:</p> <pre>$(<em>selector</em>).minicolors('method', <em>[data]</em>);</pre> <dl> <dt>create</dt> <dd> <p> Initializes the control for all items matching your selector. This is the default method, so <code>data</code> may be passed in as the only argument. </p> <p> To set a preset color value, populate the <code>value</code> attribute of the original input element. </p> </dd> <dt>destroy</dt> <dd> <p> Returns the <em>input</em> element to its original, uninitialized state. </p> </dd> <dt>hide</dt> <dd> <p> Hides the color picker. </p> </dd> <dt>show</dt> <dd> <p> Shows the color picker. </p> </dd> <dt>opacity</dt> <dd> <p> Gets or sets a control's opacity level. To use this method as a setter, pass data in as a value between 0 and 1. (You can also obtain this value by checking the input element's <code>data-opacity</code> attribute.) </p> <p> To set a preset opacity value, populate the <code>data-opacity</code> attribute of the original input element. </p> </dd> <dt>rgbObject</dt> <dd> <p> Returns an object containing red, green, blue, and alpha properties that correspond to the control's current value. Example: </p> <pre>{ r: 0, g: 82, b: 148, a: 0.75 }</pre> </dd> <dt>rgbString & rgbaString</dt> <dd> <p> Returns an RGB or RGBA string suitable for use in your CSS. Examples: </p> <pre> rgb(0, 82, 148) rgba(0, 82, 148, .75) </pre> </dd> <dt>settings</dt> <dd> <p> Gets or sets a control's settings. If new settings are passed in, the control will destroy and re-initialize itself with any new settings overriding the old ones. </p> </dd> <dt>value</dt> <dd> <p> Gets or sets a control's color value. To use this method as a setter, pass in a color string or an object (ex: <code>{color: '#fc0', opacity: .5}</code>). </p> </dd> </dl> <!-- Events --> <h3 id="events">Events</h3> <dl> <dt>change</dt> <dd> <p>Fires when the value of the color picker changes. The <code>this</code> keyword will reference the original input element. <pre> $(<em>selector</em>).minicolors({ change: function(value, opacity) { console.log(value + ' - ' + opacity); } }); </pre> <p class="alert alert-warning"> <strong>Warning!</strong> This event will fire a lot when the user drags the color picker around. Use the <code>changeDelay</code> setting to reduce its frequency. </p> </dd> <dt>hide</dt> <dd> <p> Fires when the color picker is hidden. The <code>this</code> keyword will reference the original input element. </p> <pre> $(<em>selector</em>).minicolors({ hide: function() { console.log('Hide event triggered!'); } }); </pre> </dd> <dt>show</dt> <dd> <p> Fires when the color picker is shown. The <code>this</code> keyword will reference the original input element. </p> <pre> $(<em>selector</em>).minicolors({ show: function() { console.log('Show event triggered!'); } }); </pre> </dd> </dl> <h2 id="license">License</h2> <p> Licensed under the <a href="https://opensource.org/licenses/MIT">MIT license</a>, same as <a href="https://jquery.org/license/">jQuery</a>. </p> <p> ©2013 <a href="https://www.abeautifulsite.net/">A Beautiful Site, LLC.</a> </p> </div> </div> </body> </html> PK\[�\hL5 (jquery-minicolors/without-bootstrap.htmlnu�[���<!doctype html> <html> <head> <title>jQuery MiniColors</title> <meta charset="utf-8"> <!-- jQuery --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <!-- MiniColors --> <script src="jquery.minicolors.js"></script> <link rel="stylesheet" href="jquery.minicolors.css"> <style> body { font: 16px sans-serif; line-height: 1.8; padding: 0 40px; margin-bottom: 200px; } a { color: #08c; text-decoration: none; } a:hover { text-decoration: underline; } .form-group { margin: 20px 0; } label { color: #888; } </style> <script> $(document).ready( function() { $('.demo').each( function() { // // Dear reader, it's actually very easy to initialize MiniColors. For example: // // $(selector).minicolors(); // // The way I've done it below is just for the demo, so don't get confused // by it. Also, data- attributes aren't supported at this time. Again, // they're only used for the purposes of this demo. // $(this).minicolors({ control: $(this).attr('data-control') || 'hue', defaultValue: $(this).attr('data-defaultValue') || '', format: $(this).attr('data-format') || 'hex', keywords: $(this).attr('data-keywords') || '', inline: $(this).attr('data-inline') === 'true', letterCase: $(this).attr('data-letterCase') || 'lowercase', opacity: $(this).attr('data-opacity'), position: $(this).attr('data-position') || 'bottom', swatches: $(this).attr('data-swatches') ? $(this).attr('data-swatches').split('|') : [], change: function(hex, opacity) { var log; try { log = hex ? hex : 'transparent'; if( opacity ) log += ', ' + opacity; console.log(log); } catch(e) {} }, theme: 'default' }); }); }); </script> </head> <body> <h1>MiniColors Demo (without Bootstrap)</h1> <p> <a href="index.html">« Back to the Bootstrap demo</a> </p> <p> <a onclick="$(body).attr('dir')=='rtl'?$(body).removeAttr('dir'):$(body).attr('dir', 'rtl')">Toggle LTR/RTL</a> </p> <!-- Control Types --> <h3>Control Types</h3> <div class="form-group"> <label for="hue-demo">Hue (default)</label> <input type="text" id="hue-demo" class="demo" data-control="hue" value="#ff6161"> </div> <div class="form-group"> <label for="saturation-demo">Saturation</label> <input type="text" id="saturation-demo" class="demo" data-control="saturation" value="#0088cc"> </div> <div class="form-group"> <label for="brightness-demo">Brightness</label> <input type="text" id="brightness-demo" class="demo" data-control="brightness" value="#00ffff"> </div> <div class="form-group"> <label for="wheel-demo">Wheel</label> <input type="text" id="wheel-demo" class="demo" data-control="wheel" value="#ff99ee"> </div> <!-- Input modes --> <h3>Input Modes</h3> <div class="form-group"> <label for="text-field">Text field</label> <br> <input type="text" id="text-field" class="demo" value="#70c24a"> </div> <div class="form-group"> <label for="hidden-input">Hidden Input</label> <br> <input type="hidden" id="hidden-input" class="demo" value="#db913d"> </div> <div class="form-group"> <label for="inline">Inline</label> <br> <input type="text" id="inline" class="demo" data-inline="true" value="#4fc8db"> </div> <!-- Positions --> <h3>Positions</h3> <div class="form-group"> <label for="position-bottom-left">bottom left (default)</label> <input type="text" id="position-bottom-left" class="demo" data-position="bottom left" value="#0088cc"> </div> <div class="form-group"> <label for="position-top-left">top left</label> <input type="text" id="position-top-left" class="demo" data-position="top left" value="#0088cc"> </div> <div class="form-group"> <label for="position-bottom-right">bottom right</label> <input type="text" id="position-bottom-right" class="demo" data-position="bottom right" value="#0088cc"> </div> <div class="form-group"> <label for="position-top-right">top right</label> <input type="text" id="position-top-right" class="demo" data-position="top right" value="#0088cc"> </div> <!-- RGB(A) --> <h3>RGB(A)</h3> <div class="form-group"> <label for="rgb">rgb</label> <br> <input type="text" id="rgb" class="demo" data-format="rgb" value="rgb(33, 147, 58)"> </div> <div class="form-group"> <label for="rgba">rgb(a)</label> <br> <input type="text" id="rgba" class="demo" data-format="rgb" data-opacity=".5" value="rgba(52, 64, 158, 0.5)"> </div> <!-- and more --> <h3>…and more!</h3> <div class="form-group"> <label for="opacity">Opacity</label> <br> <input type="text" id="opacity" class="demo" data-opacity=".5" value="#766fa8"> </div> <div class="form-group"> <label for="keywords">Keywords</label> <br> <input type="text" id="keywords" class="demo" data-keywords="transparent, inherit, initial" value="transparent"> </div> <div class="form-group"> <label for="default-value">Default Value</label> <br> <input type="text" id="default-value" class="demo" data-defaultValue="#ff6600"> </div> <div class="form-group"> <label for="letter-case">Letter Case</label> <br> <input type="text" id="letter-case" class="demo" data-letterCase="uppercase"> </div> <div class="form-group"> <label for="letter-case">Swatches</label> <br> <input type="text" id="swatches" class="demo" data-swatches="#ef9a9a|#90caf9|#a5d6a7|#fff59d|#ffcc80|#bcaaa4|#eeeeee|#f44336|#2196f3|#4caf50|#ffeb3b|#ff9800|#795548|#9e9e9e" value="#f00"> </div> <div class="form-group"> <label for="letter-case">Swatches and opacity</label> <br> <input type="text" id="swatches-opacity" class="demo" data-format="rgb" data-opacity="1" data-swatches="#fff|#000|#f00|#0f0|#00f|#ff0|rgba(0,0,255,0.5)" value="#f00"> </div> </body> </html> PK\[�\d`���� jquery-minicolors/component.jsonnu�[���{ "name": "jquery-minicolors", "version": "2.3.2", "description": "jQuery MiniColors Plugin", "homepage": "", "main": [ "./jquery.minicolors.js", "./jquery.minicolors.css" ], "dependencies": { "jquery": ">= 1.7.x" }, "keywords": [ "jquery", "colorpicker" ], "author": { "name": "Cory LaViska", "web": "http://www.abeautifulsite.net/" }, "license": [ "http://www.opensource.org/licenses/mit-license.php" ] } PK\[�\�gp����&jquery-minicolors/jquery.minicolors.jsnu�[���// // jQuery MiniColors: A tiny color picker built on jQuery // // Developed by Cory LaViska for A Beautiful Site, LLC // // Licensed under the MIT license: http://opensource.org/licenses/MIT // (function (factory) { if(typeof define === 'function' && define.amd) { // AMD. Register as an anonymous module. define(['jquery'], factory); } else if(typeof exports === 'object') { // Node/CommonJS module.exports = factory(require('jquery')); } else { // Browser globals factory(jQuery); } }(function ($) { 'use strict'; // Defaults $.minicolors = { defaults: { animationSpeed: 50, animationEasing: 'swing', change: null, changeDelay: 0, control: 'hue', defaultValue: '', format: 'hex', hide: null, hideSpeed: 100, inline: false, keywords: '', letterCase: 'lowercase', opacity: false, position: 'bottom', show: null, showSpeed: 100, theme: 'default', swatches: [] } }; // Public methods $.extend($.fn, { minicolors: function(method, data) { switch(method) { // Destroy the control case 'destroy': $(this).each(function() { destroy($(this)); }); return $(this); // Hide the color picker case 'hide': hide(); return $(this); // Get/set opacity case 'opacity': // Getter if(data === undefined) { // Getter return $(this).attr('data-opacity'); } else { // Setter $(this).each(function() { updateFromInput($(this).attr('data-opacity', data)); }); } return $(this); // Get an RGB(A) object based on the current color/opacity case 'rgbObject': return rgbObject($(this), method === 'rgbaObject'); // Get an RGB(A) string based on the current color/opacity case 'rgbString': case 'rgbaString': return rgbString($(this), method === 'rgbaString'); // Get/set settings on the fly case 'settings': if(data === undefined) { return $(this).data('minicolors-settings'); } else { // Setter $(this).each(function() { var settings = $(this).data('minicolors-settings') || {}; destroy($(this)); $(this).minicolors($.extend(true, settings, data)); }); } return $(this); // Show the color picker case 'show': show($(this).eq(0)); return $(this); // Get/set the hex color value case 'value': if(data === undefined) { // Getter return $(this).val(); } else { // Setter $(this).each(function() { if(typeof(data) === 'object' && data !== null) { if(data.opacity !== undefined) { $(this).attr('data-opacity', keepWithin(data.opacity, 0, 1)); } if(data.color) { $(this).val(data.color); } } else { $(this).val(data); } updateFromInput($(this)); }); } return $(this); // Initializes the control default: if(method !== 'create') data = method; $(this).each(function() { init($(this), data); }); return $(this); } } }); // Initialize input elements function init(input, settings) { var minicolors = $('<div class="minicolors" />'); var defaults = $.minicolors.defaults; var name; var size; var swatches; var swatch; var panel; var i; // Do nothing if already initialized if(input.data('minicolors-initialized')) return; // Handle settings settings = $.extend(true, {}, defaults, settings); // The wrapper minicolors .addClass('minicolors-theme-' + settings.theme) .toggleClass('minicolors-with-opacity', settings.opacity); // Custom positioning if(settings.position !== undefined) { $.each(settings.position.split(' '), function() { minicolors.addClass('minicolors-position-' + this); }); } // Input size if(settings.format === 'rgb') { size = settings.opacity ? '25' : '20'; } else { size = settings.keywords ? '11' : '7'; } // The input input .addClass('minicolors-input') .data('minicolors-initialized', false) .data('minicolors-settings', settings) .prop('size', size) .wrap(minicolors) .after( '<div class="minicolors-panel minicolors-slider-' + settings.control + '">' + '<div class="minicolors-slider minicolors-sprite">' + '<div class="minicolors-picker"></div>' + '</div>' + '<div class="minicolors-opacity-slider minicolors-sprite">' + '<div class="minicolors-picker"></div>' + '</div>' + '<div class="minicolors-grid minicolors-sprite">' + '<div class="minicolors-grid-inner"></div>' + '<div class="minicolors-picker"><div></div></div>' + '</div>' + '</div>' ); // The swatch if(!settings.inline) { input.after('<span class="minicolors-swatch minicolors-sprite minicolors-input-swatch"><span class="minicolors-swatch-color"></span></span>'); input.next('.minicolors-input-swatch').on('click', function(event) { event.preventDefault(); input.focus(); }); } // Prevent text selection in IE panel = input.parent().find('.minicolors-panel'); panel.on('selectstart', function() { return false; }).end(); // Swatches if(settings.swatches && settings.swatches.length !== 0) { panel.addClass('minicolors-with-swatches'); swatches = $('<ul class="minicolors-swatches"></ul>') .appendTo(panel); for(i = 0; i < settings.swatches.length; ++i) { // allow for custom objects as swatches if($.type(settings.swatches[i]) === 'object') { name = settings.swatches[i].name; swatch = settings.swatches[i].color; } else { name = ''; swatch = settings.swatches[i]; } swatch = isRgb(swatch) ? parseRgb(swatch, true) : hex2rgb(parseHex(swatch, true)); $('<li class="minicolors-swatch minicolors-sprite"><span class="minicolors-swatch-color" title="' + name + '"></span></li>') .appendTo(swatches) .data('swatch-color', settings.swatches[i]) .find('.minicolors-swatch-color') .css({ backgroundColor: rgb2hex(swatch), opacity: swatch.a }); settings.swatches[i] = swatch; } } // Inline controls if(settings.inline) input.parent().addClass('minicolors-inline'); updateFromInput(input, false); input.data('minicolors-initialized', true); } // Returns the input back to its original state function destroy(input) { var minicolors = input.parent(); // Revert the input element input .removeData('minicolors-initialized') .removeData('minicolors-settings') .removeProp('size') .removeClass('minicolors-input'); // Remove the wrap and destroy whatever remains minicolors.before(input).remove(); } // Shows the specified dropdown panel function show(input) { var minicolors = input.parent(); var panel = minicolors.find('.minicolors-panel'); var settings = input.data('minicolors-settings'); // Do nothing if uninitialized, disabled, inline, or already open if( !input.data('minicolors-initialized') || input.prop('disabled') || minicolors.hasClass('minicolors-inline') || minicolors.hasClass('minicolors-focus') ) return; hide(); minicolors.addClass('minicolors-focus'); if (panel.animate) { panel .stop(true, true) .fadeIn(settings.showSpeed, function () { if (settings.show) settings.show.call(input.get(0)); }); } else { panel.css('opacity', 1); if (settings.show) settings.show.call(input.get(0)); } } // Hides all dropdown panels function hide() { $('.minicolors-focus').each(function() { var minicolors = $(this); var input = minicolors.find('.minicolors-input'); var panel = minicolors.find('.minicolors-panel'); var settings = input.data('minicolors-settings'); if (panel.animate) { panel.fadeOut(settings.hideSpeed, function () { if (settings.hide) settings.hide.call(input.get(0)); minicolors.removeClass('minicolors-focus'); }); } else { panel.css('opacity', 0); if (settings.hide) settings.hide.call(input.get(0)); minicolors.removeClass('minicolors-focus'); } }); } // Moves the selected picker function move(target, event, animate) { var input = target.parents('.minicolors').find('.minicolors-input'); var settings = input.data('minicolors-settings'); var picker = target.find('[class$=-picker]'); var offsetX = target.offset().left; var offsetY = target.offset().top; var x = Math.round(event.pageX - offsetX); var y = Math.round(event.pageY - offsetY); var duration = animate ? settings.animationSpeed : 0; var wx, wy, r, phi, styles; // Touch support if(event.originalEvent.changedTouches) { x = event.originalEvent.changedTouches[0].pageX - offsetX; y = event.originalEvent.changedTouches[0].pageY - offsetY; } // Constrain picker to its container if(x < 0) x = 0; if(y < 0) y = 0; if(x > target.width()) x = target.width(); if(y > target.height()) y = target.height(); // Constrain color wheel values to the wheel if(target.parent().is('.minicolors-slider-wheel') && picker.parent().is('.minicolors-grid')) { wx = 75 - x; wy = 75 - y; r = Math.sqrt(wx * wx + wy * wy); phi = Math.atan2(wy, wx); if(phi < 0) phi += Math.PI * 2; if(r > 75) { r = 75; x = 75 - (75 * Math.cos(phi)); y = 75 - (75 * Math.sin(phi)); } x = Math.round(x); y = Math.round(y); } // Move the picker styles = { top: y + 'px' }; if(target.is('.minicolors-grid')) { styles.left = x + 'px'; } if (picker.animate) { picker .stop(true) .animate(styles, duration, settings.animationEasing, function() { updateFromControl(input, target); }); } else { picker .css(styles); updateFromControl(input, target); } } // Sets the input based on the color picker values function updateFromControl(input, target) { function getCoords(picker, container) { var left, top; if(!picker.length || !container) return null; left = picker.offset().left; top = picker.offset().top; return { x: left - container.offset().left + (picker.outerWidth() / 2), y: top - container.offset().top + (picker.outerHeight() / 2) }; } var hue, saturation, brightness, x, y, r, phi; var hex = input.val(); var opacity = input.attr('data-opacity'); // Helpful references var minicolors = input.parent(); var settings = input.data('minicolors-settings'); var swatch = minicolors.find('.minicolors-input-swatch'); // Panel objects var grid = minicolors.find('.minicolors-grid'); var slider = minicolors.find('.minicolors-slider'); var opacitySlider = minicolors.find('.minicolors-opacity-slider'); // Picker objects var gridPicker = grid.find('[class$=-picker]'); var sliderPicker = slider.find('[class$=-picker]'); var opacityPicker = opacitySlider.find('[class$=-picker]'); // Picker positions var gridPos = getCoords(gridPicker, grid); var sliderPos = getCoords(sliderPicker, slider); var opacityPos = getCoords(opacityPicker, opacitySlider); // Handle colors if(target.is('.minicolors-grid, .minicolors-slider, .minicolors-opacity-slider')) { // Determine HSB values switch(settings.control) { case 'wheel': // Calculate hue, saturation, and brightness x = (grid.width() / 2) - gridPos.x; y = (grid.height() / 2) - gridPos.y; r = Math.sqrt(x * x + y * y); phi = Math.atan2(y, x); if(phi < 0) phi += Math.PI * 2; if(r > 75) { r = 75; gridPos.x = 69 - (75 * Math.cos(phi)); gridPos.y = 69 - (75 * Math.sin(phi)); } saturation = keepWithin(r / 0.75, 0, 100); hue = keepWithin(phi * 180 / Math.PI, 0, 360); brightness = keepWithin(100 - Math.floor(sliderPos.y * (100 / slider.height())), 0, 100); hex = hsb2hex({ h: hue, s: saturation, b: brightness }); // Update UI slider.css('backgroundColor', hsb2hex({ h: hue, s: saturation, b: 100 })); break; case 'saturation': // Calculate hue, saturation, and brightness hue = keepWithin(parseInt(gridPos.x * (360 / grid.width()), 10), 0, 360); saturation = keepWithin(100 - Math.floor(sliderPos.y * (100 / slider.height())), 0, 100); brightness = keepWithin(100 - Math.floor(gridPos.y * (100 / grid.height())), 0, 100); hex = hsb2hex({ h: hue, s: saturation, b: brightness }); // Update UI slider.css('backgroundColor', hsb2hex({ h: hue, s: 100, b: brightness })); minicolors.find('.minicolors-grid-inner').css('opacity', saturation / 100); break; case 'brightness': // Calculate hue, saturation, and brightness hue = keepWithin(parseInt(gridPos.x * (360 / grid.width()), 10), 0, 360); saturation = keepWithin(100 - Math.floor(gridPos.y * (100 / grid.height())), 0, 100); brightness = keepWithin(100 - Math.floor(sliderPos.y * (100 / slider.height())), 0, 100); hex = hsb2hex({ h: hue, s: saturation, b: brightness }); // Update UI slider.css('backgroundColor', hsb2hex({ h: hue, s: saturation, b: 100 })); minicolors.find('.minicolors-grid-inner').css('opacity', 1 - (brightness / 100)); break; default: // Calculate hue, saturation, and brightness hue = keepWithin(360 - parseInt(sliderPos.y * (360 / slider.height()), 10), 0, 360); saturation = keepWithin(Math.floor(gridPos.x * (100 / grid.width())), 0, 100); brightness = keepWithin(100 - Math.floor(gridPos.y * (100 / grid.height())), 0, 100); hex = hsb2hex({ h: hue, s: saturation, b: brightness }); // Update UI grid.css('backgroundColor', hsb2hex({ h: hue, s: 100, b: 100 })); break; } // Handle opacity if(settings.opacity) { opacity = parseFloat(1 - (opacityPos.y / opacitySlider.height())).toFixed(2); } else { opacity = 1; } updateInput(input, hex, opacity); } else { // Set swatch color swatch.find('span').css({ backgroundColor: hex, opacity: opacity }); // Handle change event doChange(input, hex, opacity); } } // Sets the value of the input and does the appropriate conversions // to respect settings, also updates the swatch function updateInput(input, value, opacity) { var rgb; // Helpful references var minicolors = input.parent(); var settings = input.data('minicolors-settings'); var swatch = minicolors.find('.minicolors-input-swatch'); if(settings.opacity) input.attr('data-opacity', opacity); // Set color string if(settings.format === 'rgb') { // Returns RGB(A) string // Checks for input format and does the conversion if(isRgb(value)) { rgb = parseRgb(value, true); } else { rgb = hex2rgb(parseHex(value, true)); } opacity = input.attr('data-opacity') === '' ? 1 : keepWithin(parseFloat(input.attr('data-opacity')).toFixed(2), 0, 1); if(isNaN(opacity) || !settings.opacity) opacity = 1; if(input.minicolors('rgbObject').a <= 1 && rgb && settings.opacity) { // Set RGBA string if alpha value = 'rgba(' + rgb.r + ', ' + rgb.g + ', ' + rgb.b + ', ' + parseFloat(opacity) + ')'; } else { // Set RGB string (alpha = 1) value = 'rgb(' + rgb.r + ', ' + rgb.g + ', ' + rgb.b + ')'; } } else { // Returns hex color // Checks for input format and does the conversion if(isRgb(value)) { value = rgbString2hex(value); } value = convertCase(value, settings.letterCase); } // Update value from picker input.val(value); // Set swatch color swatch.find('span').css({ backgroundColor: value, opacity: opacity }); // Handle change event doChange(input, value, opacity); } // Sets the color picker values from the input function updateFromInput(input, preserveInputValue) { var hex, hsb, opacity, keywords, alpha, value, x, y, r, phi; // Helpful references var minicolors = input.parent(); var settings = input.data('minicolors-settings'); var swatch = minicolors.find('.minicolors-input-swatch'); // Panel objects var grid = minicolors.find('.minicolors-grid'); var slider = minicolors.find('.minicolors-slider'); var opacitySlider = minicolors.find('.minicolors-opacity-slider'); // Picker objects var gridPicker = grid.find('[class$=-picker]'); var sliderPicker = slider.find('[class$=-picker]'); var opacityPicker = opacitySlider.find('[class$=-picker]'); // Determine hex/HSB values if(isRgb(input.val())) { // If input value is a rgb(a) string, convert it to hex color and update opacity hex = rgbString2hex(input.val()); alpha = keepWithin(parseFloat(getAlpha(input.val())).toFixed(2), 0, 1); if(alpha) { input.attr('data-opacity', alpha); } } else { hex = convertCase(parseHex(input.val(), true), settings.letterCase); } if(!hex){ hex = convertCase(parseInput(settings.defaultValue, true), settings.letterCase); } hsb = hex2hsb(hex); // Get array of lowercase keywords keywords = !settings.keywords ? [] : $.map(settings.keywords.split(','), function(a) { return $.trim(a.toLowerCase()); }); // Set color string if(input.val() !== '' && $.inArray(input.val().toLowerCase(), keywords) > -1) { value = convertCase(input.val()); } else { value = isRgb(input.val()) ? parseRgb(input.val()) : hex; } // Update input value if(!preserveInputValue) input.val(value); // Determine opacity value if(settings.opacity) { // Get from data-opacity attribute and keep within 0-1 range opacity = input.attr('data-opacity') === '' ? 1 : keepWithin(parseFloat(input.attr('data-opacity')).toFixed(2), 0, 1); if(isNaN(opacity)) opacity = 1; input.attr('data-opacity', opacity); swatch.find('span').css('opacity', opacity); // Set opacity picker position y = keepWithin(opacitySlider.height() - (opacitySlider.height() * opacity), 0, opacitySlider.height()); opacityPicker.css('top', y + 'px'); } // Set opacity to zero if input value is transparent if(input.val().toLowerCase() === 'transparent') { swatch.find('span').css('opacity', 0); } // Update swatch swatch.find('span').css('backgroundColor', hex); // Determine picker locations switch(settings.control) { case 'wheel': // Set grid position r = keepWithin(Math.ceil(hsb.s * 0.75), 0, grid.height() / 2); phi = hsb.h * Math.PI / 180; x = keepWithin(75 - Math.cos(phi) * r, 0, grid.width()); y = keepWithin(75 - Math.sin(phi) * r, 0, grid.height()); gridPicker.css({ top: y + 'px', left: x + 'px' }); // Set slider position y = 150 - (hsb.b / (100 / grid.height())); if(hex === '') y = 0; sliderPicker.css('top', y + 'px'); // Update panel color slider.css('backgroundColor', hsb2hex({ h: hsb.h, s: hsb.s, b: 100 })); break; case 'saturation': // Set grid position x = keepWithin((5 * hsb.h) / 12, 0, 150); y = keepWithin(grid.height() - Math.ceil(hsb.b / (100 / grid.height())), 0, grid.height()); gridPicker.css({ top: y + 'px', left: x + 'px' }); // Set slider position y = keepWithin(slider.height() - (hsb.s * (slider.height() / 100)), 0, slider.height()); sliderPicker.css('top', y + 'px'); // Update UI slider.css('backgroundColor', hsb2hex({ h: hsb.h, s: 100, b: hsb.b })); minicolors.find('.minicolors-grid-inner').css('opacity', hsb.s / 100); break; case 'brightness': // Set grid position x = keepWithin((5 * hsb.h) / 12, 0, 150); y = keepWithin(grid.height() - Math.ceil(hsb.s / (100 / grid.height())), 0, grid.height()); gridPicker.css({ top: y + 'px', left: x + 'px' }); // Set slider position y = keepWithin(slider.height() - (hsb.b * (slider.height() / 100)), 0, slider.height()); sliderPicker.css('top', y + 'px'); // Update UI slider.css('backgroundColor', hsb2hex({ h: hsb.h, s: hsb.s, b: 100 })); minicolors.find('.minicolors-grid-inner').css('opacity', 1 - (hsb.b / 100)); break; default: // Set grid position x = keepWithin(Math.ceil(hsb.s / (100 / grid.width())), 0, grid.width()); y = keepWithin(grid.height() - Math.ceil(hsb.b / (100 / grid.height())), 0, grid.height()); gridPicker.css({ top: y + 'px', left: x + 'px' }); // Set slider position y = keepWithin(slider.height() - (hsb.h / (360 / slider.height())), 0, slider.height()); sliderPicker.css('top', y + 'px'); // Update panel color grid.css('backgroundColor', hsb2hex({ h: hsb.h, s: 100, b: 100 })); break; } // Fire change event, but only if minicolors is fully initialized if(input.data('minicolors-initialized')) { doChange(input, value, opacity); } } // Runs the change and changeDelay callbacks function doChange(input, value, opacity) { var settings = input.data('minicolors-settings'); var lastChange = input.data('minicolors-lastChange'); var obj, sel, i; // Only run if it actually changed if(!lastChange || lastChange.value !== value || lastChange.opacity !== opacity) { // Remember last-changed value input.data('minicolors-lastChange', { value: value, opacity: opacity }); // Check and select applicable swatch if(settings.swatches && settings.swatches.length !== 0) { if(!isRgb(value)) { obj = hex2rgb(value); } else { obj = parseRgb(value, true); } sel = -1; for(i = 0; i < settings.swatches.length; ++i) { if(obj.r === settings.swatches[i].r && obj.g === settings.swatches[i].g && obj.b === settings.swatches[i].b && obj.a === settings.swatches[i].a) { sel = i; break; } } input.parent().find('.minicolors-swatches .minicolors-swatch').removeClass('selected'); if(sel !== -1) { input.parent().find('.minicolors-swatches .minicolors-swatch').eq(i).addClass('selected'); } } // Fire change event if(settings.change) { if(settings.changeDelay) { // Call after a delay clearTimeout(input.data('minicolors-changeTimeout')); input.data('minicolors-changeTimeout', setTimeout(function() { settings.change.call(input.get(0), value, opacity); }, settings.changeDelay)); } else { // Call immediately settings.change.call(input.get(0), value, opacity); } } input.trigger('change').trigger('input'); } } // Generates an RGB(A) object based on the input's value function rgbObject(input) { var rgb, opacity = $(input).attr('data-opacity'); if( isRgb($(input).val()) ) { rgb = parseRgb($(input).val(), true); } else { var hex = parseHex($(input).val(), true); rgb = hex2rgb(hex); } if( !rgb ) return null; if( opacity !== undefined ) $.extend(rgb, { a: parseFloat(opacity) }); return rgb; } // Generates an RGB(A) string based on the input's value function rgbString(input, alpha) { var rgb, opacity = $(input).attr('data-opacity'); if( isRgb($(input).val()) ) { rgb = parseRgb($(input).val(), true); } else { var hex = parseHex($(input).val(), true); rgb = hex2rgb(hex); } if( !rgb ) return null; if( opacity === undefined ) opacity = 1; if( alpha ) { return 'rgba(' + rgb.r + ', ' + rgb.g + ', ' + rgb.b + ', ' + parseFloat(opacity) + ')'; } else { return 'rgb(' + rgb.r + ', ' + rgb.g + ', ' + rgb.b + ')'; } } // Converts to the letter case specified in settings function convertCase(string, letterCase) { return letterCase === 'uppercase' ? string.toUpperCase() : string.toLowerCase(); } // Parses a string and returns a valid hex string when possible function parseHex(string, expand) { string = string.replace(/^#/g, ''); if(!string.match(/^[A-F0-9]{3,6}/ig)) return ''; if(string.length !== 3 && string.length !== 6) return ''; if(string.length === 3 && expand) { string = string[0] + string[0] + string[1] + string[1] + string[2] + string[2]; } return '#' + string; } // Parses a string and returns a valid RGB(A) string when possible function parseRgb(string, obj) { var values = string.replace(/[^\d,.]/g, ''); var rgba = values.split(','); rgba[0] = keepWithin(parseInt(rgba[0], 10), 0, 255); rgba[1] = keepWithin(parseInt(rgba[1], 10), 0, 255); rgba[2] = keepWithin(parseInt(rgba[2], 10), 0, 255); if(rgba[3] !== undefined) { rgba[3] = keepWithin(parseFloat(rgba[3], 10), 0, 1); } // Return RGBA object if( obj ) { if (rgba[3] !== undefined) { return { r: rgba[0], g: rgba[1], b: rgba[2], a: rgba[3] }; } else { return { r: rgba[0], g: rgba[1], b: rgba[2] }; } } // Return RGBA string if(typeof(rgba[3]) !== 'undefined' && rgba[3] <= 1) { return 'rgba(' + rgba[0] + ', ' + rgba[1] + ', ' + rgba[2] + ', ' + rgba[3] + ')'; } else { return 'rgb(' + rgba[0] + ', ' + rgba[1] + ', ' + rgba[2] + ')'; } } // Parses a string and returns a valid color string when possible function parseInput(string, expand) { if(isRgb(string)) { // Returns a valid rgb(a) string return parseRgb(string); } else { return parseHex(string, expand); } } // Keeps value within min and max function keepWithin(value, min, max) { if(value < min) value = min; if(value > max) value = max; return value; } // Checks if a string is a valid RGB(A) string function isRgb(string) { var rgb = string.match(/^rgba?[\s+]?\([\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?/i); return (rgb && rgb.length === 4) ? true : false; } // Function to get alpha from a RGB(A) string function getAlpha(rgba) { rgba = rgba.match(/^rgba?[\s+]?\([\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+(\.\d{1,2})?|\.\d{1,2})[\s+]?/i); return (rgba && rgba.length === 6) ? rgba[4] : '1'; } // Converts an HSB object to an RGB object function hsb2rgb(hsb) { var rgb = {}; var h = Math.round(hsb.h); var s = Math.round(hsb.s * 255 / 100); var v = Math.round(hsb.b * 255 / 100); if(s === 0) { rgb.r = rgb.g = rgb.b = v; } else { var t1 = v; var t2 = (255 - s) * v / 255; var t3 = (t1 - t2) * (h % 60) / 60; if(h === 360) h = 0; if(h < 60) { rgb.r = t1; rgb.b = t2; rgb.g = t2 + t3; } else if(h < 120) {rgb.g = t1; rgb.b = t2; rgb.r = t1 - t3; } else if(h < 180) {rgb.g = t1; rgb.r = t2; rgb.b = t2 + t3; } else if(h < 240) {rgb.b = t1; rgb.r = t2; rgb.g = t1 - t3; } else if(h < 300) {rgb.b = t1; rgb.g = t2; rgb.r = t2 + t3; } else if(h < 360) {rgb.r = t1; rgb.g = t2; rgb.b = t1 - t3; } else { rgb.r = 0; rgb.g = 0; rgb.b = 0; } } return { r: Math.round(rgb.r), g: Math.round(rgb.g), b: Math.round(rgb.b) }; } // Converts an RGB string to a hex string function rgbString2hex(rgb){ rgb = rgb.match(/^rgba?[\s+]?\([\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?/i); return (rgb && rgb.length === 4) ? '#' + ('0' + parseInt(rgb[1],10).toString(16)).slice(-2) + ('0' + parseInt(rgb[2],10).toString(16)).slice(-2) + ('0' + parseInt(rgb[3],10).toString(16)).slice(-2) : ''; } // Converts an RGB object to a hex string function rgb2hex(rgb) { var hex = [ rgb.r.toString(16), rgb.g.toString(16), rgb.b.toString(16) ]; $.each(hex, function(nr, val) { if(val.length === 1) hex[nr] = '0' + val; }); return '#' + hex.join(''); } // Converts an HSB object to a hex string function hsb2hex(hsb) { return rgb2hex(hsb2rgb(hsb)); } // Converts a hex string to an HSB object function hex2hsb(hex) { var hsb = rgb2hsb(hex2rgb(hex)); if(hsb.s === 0) hsb.h = 360; return hsb; } // Converts an RGB object to an HSB object function rgb2hsb(rgb) { var hsb = { h: 0, s: 0, b: 0 }; var min = Math.min(rgb.r, rgb.g, rgb.b); var max = Math.max(rgb.r, rgb.g, rgb.b); var delta = max - min; hsb.b = max; hsb.s = max !== 0 ? 255 * delta / max : 0; if(hsb.s !== 0) { if(rgb.r === max) { hsb.h = (rgb.g - rgb.b) / delta; } else if(rgb.g === max) { hsb.h = 2 + (rgb.b - rgb.r) / delta; } else { hsb.h = 4 + (rgb.r - rgb.g) / delta; } } else { hsb.h = -1; } hsb.h *= 60; if(hsb.h < 0) { hsb.h += 360; } hsb.s *= 100/255; hsb.b *= 100/255; return hsb; } // Converts a hex string to an RGB object function hex2rgb(hex) { hex = parseInt(((hex.indexOf('#') > -1) ? hex.substring(1) : hex), 16); return { r: hex >> 16, g: (hex & 0x00FF00) >> 8, b: (hex & 0x0000FF) }; } // Handle events $([document]) // Hide on clicks outside of the control .on('mousedown.minicolors touchstart.minicolors', function(event) { if(!$(event.target).parents().add(event.target).hasClass('minicolors')) { hide(); } }) // Start moving .on('mousedown.minicolors touchstart.minicolors', '.minicolors-grid, .minicolors-slider, .minicolors-opacity-slider', function(event) { var target = $(this); event.preventDefault(); $(event.delegateTarget).data('minicolors-target', target); move(target, event, true); }) // Move pickers .on('mousemove.minicolors touchmove.minicolors', function(event) { var target = $(event.delegateTarget).data('minicolors-target'); if(target) move(target, event); }) // Stop moving .on('mouseup.minicolors touchend.minicolors', function() { $(this).removeData('minicolors-target'); }) // Selected a swatch .on('click.minicolors', '.minicolors-swatches li', function(event) { event.preventDefault(); var target = $(this), input = target.parents('.minicolors').find('.minicolors-input'), color = target.data('swatch-color'); updateInput(input, color, getAlpha(color)); updateFromInput(input); }) // Show panel when swatch is clicked .on('mousedown.minicolors touchstart.minicolors', '.minicolors-input-swatch', function(event) { var input = $(this).parent().find('.minicolors-input'); event.preventDefault(); show(input); }) // Show on focus .on('focus.minicolors', '.minicolors-input', function() { var input = $(this); if(!input.data('minicolors-initialized')) return; show(input); }) // Update value on blur .on('blur.minicolors', '.minicolors-input', function() { var input = $(this); var settings = input.data('minicolors-settings'); var keywords; var hex; var rgba; var swatchOpacity; var value; if(!input.data('minicolors-initialized')) return; // Get array of lowercase keywords keywords = !settings.keywords ? [] : $.map(settings.keywords.split(','), function(a) { return $.trim(a.toLowerCase()); }); // Set color string if(input.val() !== '' && $.inArray(input.val().toLowerCase(), keywords) > -1) { value = input.val(); } else { // Get RGBA values for easy conversion if(isRgb(input.val())) { rgba = parseRgb(input.val(), true); } else { hex = parseHex(input.val(), true); rgba = hex ? hex2rgb(hex) : null; } // Convert to format if(rgba === null) { value = settings.defaultValue; } else if(settings.format === 'rgb') { value = settings.opacity ? parseRgb('rgba(' + rgba.r + ',' + rgba.g + ',' + rgba.b + ',' + input.attr('data-opacity') + ')') : parseRgb('rgb(' + rgba.r + ',' + rgba.g + ',' + rgba.b + ')'); } else { value = rgb2hex(rgba); } } // Update swatch opacity swatchOpacity = settings.opacity ? input.attr('data-opacity') : 1; if(value.toLowerCase() === 'transparent') swatchOpacity = 0; input .closest('.minicolors') .find('.minicolors-input-swatch > span') .css('opacity', swatchOpacity); // Set input value input.val(value); // Is it blank? if(input.val() === '') input.val(parseInput(settings.defaultValue, true)); // Adjust case input.val(convertCase(input.val(), settings.letterCase)); }) // Handle keypresses .on('keydown.minicolors', '.minicolors-input', function(event) { var input = $(this); if(!input.data('minicolors-initialized')) return; switch(event.which) { case 9: // tab hide(); break; case 13: // enter case 27: // esc hide(); input.blur(); break; } }) // Update on keyup .on('keyup.minicolors', '.minicolors-input', function() { var input = $(this); if(!input.data('minicolors-initialized')) return; updateFromInput(input, true); }) // Update on paste .on('paste.minicolors', '.minicolors-input', function() { var input = $(this); if(!input.data('minicolors-initialized')) return; setTimeout(function() { updateFromInput(input, true); }, 1); }); })); PK\[�\Ϫ�4.(.('jquery-minicolors/jquery.minicolors.cssnu�[���.minicolors { position: relative; } .minicolors-sprite { background-image: url(jquery.minicolors.png); } .minicolors-swatch { position: absolute; vertical-align: middle; background-position: -80px 0; border: solid 1px #ccc; cursor: text; padding: 0; margin: 0; display: inline-block; } .minicolors-swatch-color { position: absolute; top: 0; left: 0; right: 0; bottom: 0; } .minicolors input[type=hidden] + .minicolors-swatch { width: 28px; position: static; cursor: pointer; } .minicolors input[type=hidden][disabled] + .minicolors-swatch { cursor: default; } /* Panel */ .minicolors-panel { position: absolute; width: 173px; background: white; border: solid 1px #CCC; box-shadow: 0 0 20px rgba(0, 0, 0, .2); z-index: 99999; box-sizing: content-box; display: none; } .minicolors-panel.minicolors-visible { display: block; } /* Panel positioning */ .minicolors-position-top .minicolors-panel { top: -154px; } .minicolors-position-right .minicolors-panel { right: 0; } .minicolors-position-bottom .minicolors-panel { top: auto; } .minicolors-position-left .minicolors-panel { left: 0; } .minicolors-with-opacity .minicolors-panel { width: 194px; } .minicolors .minicolors-grid { position: relative; top: 1px; left: 1px; /* LTR */ width: 150px; height: 150px; margin-bottom: 2px; background-position: -120px 0; cursor: crosshair; } [dir=rtl] .minicolors .minicolors-grid { right: 1px; } .minicolors .minicolors-grid-inner { position: absolute; top: 0; left: 0; width: 150px; height: 150px; } .minicolors-slider-saturation .minicolors-grid { background-position: -420px 0; } .minicolors-slider-saturation .minicolors-grid-inner { background-position: -270px 0; background-image: inherit; } .minicolors-slider-brightness .minicolors-grid { background-position: -570px 0; } .minicolors-slider-brightness .minicolors-grid-inner { background-color: black; } .minicolors-slider-wheel .minicolors-grid { background-position: -720px 0; } .minicolors-slider, .minicolors-opacity-slider { position: absolute; top: 1px; left: 152px; /* LTR */ width: 20px; height: 150px; background-color: white; background-position: 0 0; cursor: row-resize; } [dir=rtl] .minicolors-slider, [dir=rtl] .minicolors-opacity-slider { right: 152px; } .minicolors-slider-saturation .minicolors-slider { background-position: -60px 0; } .minicolors-slider-brightness .minicolors-slider { background-position: -20px 0; } .minicolors-slider-wheel .minicolors-slider { background-position: -20px 0; } .minicolors-opacity-slider { left: 173px; /* LTR */ background-position: -40px 0; display: none; } [dir=rtl] .minicolors-opacity-slider { right: 173px; } .minicolors-with-opacity .minicolors-opacity-slider { display: block; } /* Pickers */ .minicolors-grid .minicolors-picker { position: absolute; top: 70px; left: 70px; width: 12px; height: 12px; border: solid 1px black; border-radius: 10px; margin-top: -6px; margin-left: -6px; background: none; } .minicolors-grid .minicolors-picker > div { position: absolute; top: 0; left: 0; width: 8px; height: 8px; border-radius: 8px; border: solid 2px white; box-sizing: content-box; } .minicolors-picker { position: absolute; top: 0; left: 0; width: 18px; height: 2px; background: white; border: solid 1px black; margin-top: -2px; box-sizing: content-box; } /* Swatches */ .minicolors-swatches, .minicolors-swatches li { margin: 5px 0 3px 5px; /* LTR */ padding: 0; list-style: none; overflow: hidden; } [dir=rtl] .minicolors-swatches, [dir=rtl] .minicolors-swatches li { margin: 5px 5px 3px 0; } .minicolors-swatches .minicolors-swatch { position: relative; float: left; /* LTR */ cursor: pointer; margin:0 4px 0 0; /* LTR */ } [dir=rtl] .minicolors-swatches .minicolors-swatch { float: right; margin:0 0 0 4px; } .minicolors-with-opacity .minicolors-swatches .minicolors-swatch { margin-right: 7px; /* LTR */ } [dir=rtl] .minicolors-with-opacity .minicolors-swatches .minicolors-swatch { margin-right: 0; margin-left: 7px; } .minicolors-swatch.selected { border-color: #000; } /* Inline controls */ .minicolors-inline { display: inline-block; } .minicolors-inline .minicolors-input { display: none !important; } .minicolors-inline .minicolors-panel { position: relative; top: auto; left: auto; /* LTR */ box-shadow: none; z-index: auto; display: inline-block; } [dir=rtl] .minicolors-inline .minicolors-panel { right: auto; } /* Default theme */ .minicolors-theme-default .minicolors-swatch { top: 5px; left: 5px; /* LTR */ width: 18px; height: 18px; } [dir=rtl] .minicolors-theme-default .minicolors-swatch { right: 5px; } .minicolors-theme-default .minicolors-swatches .minicolors-swatch { margin-bottom: 2px; top: 0; left: 0; /* LTR */ width: 18px; height: 18px; } [dir=rtl] .minicolors-theme-default .minicolors-swatches .minicolors-swatch { right: 0; } .minicolors-theme-default.minicolors-position-right .minicolors-swatch { left: auto; /* LTR */ right: 5px; /* LTR */ } [dir=rtl] .minicolors-theme-default.minicolors-position-left .minicolors-swatch { right: auto; left: 5px; } .minicolors-theme-default.minicolors { width: auto; display: inline-block; } .minicolors-theme-default .minicolors-input { height: 20px; width: auto; display: inline-block; padding-left: 26px; /* LTR */ } [dir=rtl] .minicolors-theme-default .minicolors-input { text-align: right; unicode-bidi: plaintext; padding-left: 1px; padding-right: 26px; } .minicolors-theme-default.minicolors-position-right .minicolors-input { padding-right: 26px; /* LTR */ padding-left: inherit; /* LTR */ } [dir=rtl] .minicolors-theme-default.minicolors-position-left .minicolors-input { padding-right: inherit; padding-left: 26px; } /* Bootstrap theme */ .minicolors-theme-bootstrap .minicolors-swatch { z-index: 2; top: 3px; left: 3px; /* LTR */ width: 28px; height: 28px; border-radius: 3px; } [dir=rtl] .minicolors-theme-bootstrap .minicolors-swatch { right: 3px; } .minicolors-theme-bootstrap .minicolors-swatches .minicolors-swatch { margin-bottom: 2px; top: 0; left: 0; /* LTR */ width: 20px; height: 20px; } [dir=rtl] .minicolors-theme-bootstrap .minicolors-swatches .minicolors-swatch { right: 0; } .minicolors-theme-bootstrap .minicolors-swatch-color { border-radius: inherit; } .minicolors-theme-bootstrap.minicolors-position-right > .minicolors-swatch { left: auto; /* LTR */ right: 3px; /* LTR */ } [dir=rtl] .minicolors-theme-bootstrap.minicolors-position-left > .minicolors-swatch { right: auto; left: 3px; } .minicolors-theme-bootstrap .minicolors-input { float: none; padding-left: 44px; /* LTR */ } [dir=rtl] .minicolors-theme-bootstrap .minicolors-input { text-align: right; unicode-bidi: plaintext; padding-left: 12px; padding-right: 44px; } .minicolors-theme-bootstrap.minicolors-position-right .minicolors-input { padding-right: 44px; /* LTR */ padding-left: 12px; /* LTR */ } [dir=rtl] .minicolors-theme-bootstrap.minicolors-position-left .minicolors-input { padding-right: 12px; padding-left: 44px; } .minicolors-theme-bootstrap .minicolors-input.input-lg + .minicolors-swatch { top: 4px; left: 4px; /* LTR */ width: 37px; height: 37px; border-radius: 5px; } [dir=rtl] .minicolors-theme-bootstrap .minicolors-input.input-lg + .minicolors-swatch { right: 4px; } .minicolors-theme-bootstrap .minicolors-input.input-sm + .minicolors-swatch { width: 24px; height: 24px; } .minicolors-theme-bootstrap .minicolors-input.input-xs + .minicolors-swatch { width: 18px; height: 18px; } .input-group .minicolors-theme-bootstrap:not(:first-child) .minicolors-input { border-top-left-radius: 0; /* LTR */ border-bottom-left-radius: 0; /* LTR */ } [dir=rtl] .input-group .minicolors-theme-bootstrap .minicolors-input { border-radius: 4px; } [dir=rtl] .input-group .minicolors-theme-bootstrap:not(:first-child) .minicolors-input { border-top-right-radius: 0; border-bottom-right-radius: 0; } [dir=rtl] .input-group .minicolors-theme-bootstrap:not(:last-child) .minicolors-input { border-top-left-radius: 0; border-bottom-left-radius: 0; } /* bootstrap input-group rtl override */ [dir=rtl] .input-group .form-control, [dir=rtl] .input-group-addon, [dir=rtl] .input-group-btn > .btn, [dir=rtl] .input-group-btn > .btn-group > .btn, [dir=rtl] .input-group-btn > .dropdown-toggle { border: 1px solid #ccc; border-radius: 4px; } [dir=rtl] .input-group .form-control:first-child, [dir=rtl] .input-group-addon:first-child, [dir=rtl] .input-group-btn:first-child > .btn, [dir=rtl] .input-group-btn:first-child > .btn-group > .btn, [dir=rtl] .input-group-btn:first-child > .dropdown-toggle, [dir=rtl] .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), [dir=rtl] .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { border-top-left-radius: 0; border-bottom-left-radius: 0; border-left: 0; } [dir=rtl] .input-group .form-control:last-child, [dir=rtl] .input-group-addon:last-child, [dir=rtl] .input-group-btn:last-child > .btn, [dir=rtl] .input-group-btn:last-child > .btn-group > .btn, [dir=rtl] .input-group-btn:last-child > .dropdown-toggle, [dir=rtl] .input-group-btn:first-child > .btn:not(:first-child), [dir=rtl] .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { border-top-right-radius: 0; border-bottom-right-radius: 0; } /* Semantic Ui theme */ .minicolors-theme-semanticui .minicolors-swatch { top: 0; left: 0; /* LTR */ padding: 18px; } [dir=rtl] .minicolors-theme-semanticui .minicolors-swatch { right: 0; } .minicolors-theme-semanticui input { text-indent: 30px; } PK\[�\=r1rrjquery-minicolors/README.mdnu�[���# jQuery MiniColors: A tiny color picker built on jQuery Developed by Cory LaViska for A Beautiful Site, LLC Licensed under the MIT license: http://opensource.org/licenses/MIT ## Demo & Documentation http://labs.abeautifulsite.net/jquery-minicolors/ ## Install via NPM This is the official NPM version of MiniColors: ``` npm install --save @claviska/jquery-minicolors ``` **Note:** There is another version on NPM without the namespace that is out of date and not supported. I did not create it nor do I have control of it. Please use the official NPM version to ensure you have the latest updates. PK\[�\�C�,,jquery-minicolors/LICENSE.mdnu�[���Copyright 2017 A Beautiful Site, LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. PK\[�\�6'jquery-minicolors/jquery.minicolors.pngnu�[����PNG IHDRf����z�IDATx���ū�[{�ό�03'�0}�D�|�033sDaf2�hg*ջorO�3}^y�-��zz�v|�m���ɷDz��6a��-��P�a�n����7�d�z�m��G?���/zы4os�[[� ��'?1/x��Z�{���u�$!vS�!��N�9� ��+��U�1"���m��j�ܻa�A�3�kM���u��h�oˀ�#&�I�4M{tt���^���Ӟ9s&~�ߴ�x�;���TN��hl�ܚ�ޒ�n�,uL6�;:e��=m��)�)��<s����(c���#c�����X�7)>�bXv�:+���E�h4���fO)qn����r��XJ�2�J��>��H��ݤ=��}$�l(��N�qG1�#�5�{:�֢i��,�M�Wi�z��4x���ٜ�*X�<|}���V���%_����0��%��?��㶔�Sn���2�ۣ56Y�zҘ6�f�o�]u�k�xB�}�`�*K�� �(�Ǻf���ÿ�'���+4��c��[)�f�)~@{�El� ���x��,%����EڔW�s��_����c�}}��eM]��a��;��ន�ܛ��5��t��E؊yJ�f�f�SCV-2�����Eљ[��x�Z��s�a�Υ�M��o�l��?��f�f�y�s��Ԁ��4$�|��o�AE��9�ms�]�P0�Z�=�W[��x�`��F�Vh�A��H k�De������)���c�=����&'�VQ��6:��+l� �`�����m����u�U�6�y@6:Y\�3��\ f�S�f(hE�x�3}����~0[N�;�Δ1�)٦� x��(��m?�!do��8ot�ڦ��~��{���T�hԩ�}a�_.�|��.=w�x��t��;��Ʋ�����4��{����;�![� ;i�0c(+��=��ؖ�*���<�l"���*VV+���f�=�k���v�}���7f�e��T�;�M�2�v@�K��F@�g PZ_�!�|,����z+��[����;�-�/8c��?UnK� bU�Z�h�g0{���}�`��@�P�q��;1�_c�����k0��w��1������5!n `Zt�9�3�/�����hr W�i 6CY$�5�l?vww����vcc������������6��D�>n����)��>��wq�Ļo��[bv��R�I�@�bԑ� ܐ#0 s&Li���i��>7/�A��ЉO�nv��,���K,*�6=1+���b2��n��Eq��������y�3/qڞO�ie�n˼��ݔ�zS�p���i���ڊ����:�@���}ݱ�܁z��+a�v|a�����R��b�=>��Xh���!�kts��_�1����D{�gk��ӿ���W�NW�1��1��3H�_v8�߹�>��G�� Cg80���ml����� �J��v�p���=�k#�s4�E6�����7-���~��̟��S��� ��VXb_�,� h�����l���K��/3~x����¼-f��0��fn��_��b`6�����|f��)c�'~s@V䨞Ru^ ���Z����`�Z�V�aqw�.��YZ/b���XK`6�0V|��"��O���mmm��)����n����^�1�69N�>0s��M����1�AkL���lrb���/8���l��N�`&�>�~�ˍ84�S�B�B���`��5A� ���]����� �:qT�nkE�N��'�]#�i�M F'i�9��+��~�492cy@2�Y�?J� ��j���H�<�0������ �@�G�2���A��d��J��f������S�cX]�oux'���>k�FN���`!0��W��nX�S�#��q�F ���U�9�G�B�{?�;!��ժ��P�rbv�is(���-�|�>xS��(��R�%��2����M)s��T��m��To����!�ә�N���fOyI��g�K�@�0���-fG�3�=��c�,��J���Ye�Բ�������<���ϴ�����8���3��ݶd˖��f��=}�ꪴ��ˡUlF�{�R���ν'�`�@��{Сm>����{E�U"��� �V����9xOX��`Ek�\of�f��3�*��Z�B�F �ዀ����fM1�ٝw�Yn���W|~ �A� �[0W�q�7�UJ��M�[Tlj�����D�Awغ ��>�<�}�P��V���g&�e����C�;@V����6��w���}r-�8�2zе se@P&r��c����N�Ϥ>���`��8�Ùd�R�f�PF-q6��g6g���7�� �fmf6̇U�~3�DV��@D��!�1g#>A�r�fݕ��B� q�1�e"ͼX����rʃٞ:�����~E-�]��^b�B�잝�X��š�c��f�p�k�Ry˰�r-���k�6�=�BYBh<�1�|����ٳC�0tlR �[W���|�Bu��[V��������j���,h�''L���m|=�YQ0cT��Q�BV��2S��`0�%�f�q뭷v�������2�<�@��/:6-��=J�˨���Z��9�/��-Z�B�1�q�K(�1+���Z�7�n(�N�z5�@��{��@�H���̞���xVB�K�ա(�,1x���:e�{�� qN��*�ѣ�D�¢��0Z_2 V���Z��@<���K�km��=l��N^�#n<�,��^�C\@BWe*�8T��Az��E��9z(150sD"�8pQE��O�p(�/������|�=�7wjk�v4��c��@0��gr;G���ڿ�}�3 �V�F3���13H��)f���Z6+���<}f�_E�(=@�Qf>�^��)f����ݵ�Ҧ�U3��tiIf�k���P6�9?tQs��0o�N�;�ry-5�1�n���W��Ŧ�`6K?�v�O�7��!���f�Z�,]D?�+]�Ur���>g}(X�z�DP�0W�@�5z�� ��ݻ�����9 yD�!�I��mU̬F���~4�������͕�n�����WQ����i��-zaB<�������E�9�)�����2aV�ʨ`�g����' i��{6z��8���y iTŌ�? e< .g��!�L�k�{hN䑥쿥����W�#�̔���t ў���0E����p�Y_�sG!�BK', F��2����`�^��ҩPɏU2nK�9f�H�����n�p~�a�m\��3�>e*�qԲjq�֢z�0ZB1����Ə>��q�A�(C!Ŭ�d�9��?�S �Z�����R�߀ `+3�5�c�e>�I���kV;���Z^ڛ��ֱ��Z`��oDP�cWU�(��r���e�<��l0�`Vs�f1��:���U��b`�MH���Jj(�)N�����0)ft�s(�F��_ê$ƊY�������gUqms�AZ3����p��K�_;��Hhb��~��I(c�ۢ�$��pzV`�CL��� r2��y�~�%4�+g� 0 c�7�MdpS��A��?�e'����]3S� !�,��µ�L�:�����8n{ִ*o��P�2�^|��B��'��´���p�3.CѾ�Ϝ0c������ߴB�Y����Q���2�:6qҲȰ(��?F�e���8V��U�iPE¯��I����ٗ��/�0SHC_�ʸ"m*J���[��N��f�}w��ًk�Ô_T@L2-���;!�m�̨���0�Zk����7�)��������P5 c�f0��O�00[�d0�/�3Q~�/�iǀ'`��pE�Z����B��$�P%�g@X�=�^�L�[_�HC�Eamw�`Ж�0ƒf�Ȫ����V0�ef�4(��pF��W�t��>,���l�1��L�b�5T����f=0�|�K� 0/l�^n}z�Y���|FNՙ��%�(�Yݙ��jx̰ �æɑ�����}���k�\S���j1�h%�B��3�a��7 h��?LUC(c���ʊ�!j��(�����E,�ќ�7і8!�:��%�v5��h��<z(�,�Ld���3�3>�B����]%���Y < eK�\ڢў;�9����=tɴ�[JI�� ��#��~�l3����j��N�}3)���&�`��*�\���;�U1S~�~p�(�gv�4?xJzO�#���̂��lJ�* �[M�f�3���f �~t��sGꘂ�*eP���F��l����(�f fk�__��W��l0{�T���QcYO�����I���y���0��^��^�2b< _�O&� �*W�4�sCS�`��i[s����)b��PU31�'�ѽ<��pEB�B1�YS�Z��9`W�6��T0kyf�es���Q.ው��qM��E��Xp�F "w�������\R�f��~���"eC�CU1�m['��l��R�[��ʬ�~���dm�tL���7<0���(��v$e���r,��i-��ԉ@(k���:M���@]s�{+�:x���aS�w��<��j��b9 � O{�i�ߘ�K����33�fr�%>=K�����V����nR\(9fy��bℙ�4?�.q�<�f�J�PF_53����_n5�m$����I��T`��a�.�D�d |��k�,T����&�ŷ��Hkp�����[�P� ��Pƭ�6��/��i�l���f�a�ޟ�Ive��}�0+D ��'�2V$NHbx�����.>�P%�\n�%�z��*���d^�!Љ�l�>�|)���`ƊYjC �����0��0C�Y�3+5Ϭ������3c"�e��a���xF��^Un)S�y[�>�9fs�ӗ8��q`+嘑�}� 圁,s����L!� "�Xj���2�P�i3����*��+�早~�sXKV�B������bʦzA�b���E{.�B���,��ȉ���R�� (r��[�%���U�%E�d� ���,��:�}�B��s��8mS���k�dZ%��*ZF�~�K:�Z��Z� �3�T4�m(�����Ytl%� ~���6�o�>�a·���qjj��������<S��`�06R�Z���ֲ)6�gv49d��*_��a�^��b(k�o〴�j�3:ϬT0���I���~��.� �j��.2���2�N�����-��BW�5̇��u�L��V���XA���G����1�ג2obJ��O��00[�d0���K��x.��w�(T�J�� H�����@V������PFV��EU��j�5FV%1V� �l�X�̠�50�3�p�4��Ԝ�RU�;n�0�cn�"�S4��R7�,��RF���c(ό�?V<�8>�q� ��� �4��) h0���lU�Kr�0�s^��2ߞ�8�l��Y10��I��a]���"��S9f�W�.���t���.�ZX�8|����T�}q��dޖH'�qw�� �`]��ȃ� Y�����6��/��C(#A'@̻���t^_t��G�w��"�,j�zQ�"��e � ̎����)ֈ�a���ʁ�c�?6�R�*fV�К������i,QZ�"�n3{0���2B����L@f�4)`���}{꧟M��#�,4�������(�(�9@&��r$��OV0��Z�0{�o��{~��'ե��ؿ��1[�d0���G`fa{~h���Eu ��X�t��U�t���l���&0�Ϭ���f��=���KW1Cm�%����?�3���Yf�1c�%�e��n�Yw�❷��T%����8�W�]��B����� ʲ:4f3�ߝ ���B���9 Tj��d���!�D&�1j�Yb0�|���9J�ZC��#8�b�Pg�� �����PW���x~1ϸ�PBF��>3 Ѡ�t=_�� ��;W����PHݢ����X��9x�/�$�u���ix�vV�|��qK�$���{����(�.�Ls��Ҵ|�|3-r�� |Xڄ`c���S�-���8[��_iρ�/O얀�8s���o0�W(�E5+��O�ώL������#��P��N] C�1Q�ޒ͝H(���e�6�5�3��m���襤�����=�>�=���:�e l�����;̎L2�]t�EP��/��F�dk�ET�Q�c�z��Oj_���W��b���9��(�,mv������1��:�/����7�)��Bn�w3�0 �A1C~Y��a#3w�6�ڣ<�˖��X�Z���)�g���[8M���F���Zi(�����o���D�L��Nl&�l�8-�u|>�9fpe��r�\8C��>J�g-� R��X�,_�ka:���><� S�_'�?Ps�t�D?/�A��m�Lr�)�X�lkO� ��B������Rԏ�k���1lM���E1�#�B#�+���U���7)������i���s��ML!C��C(��>|��PFl$��J��6ڭ�lF�����C�6��~mk� �PFp��)���&�qH2�`ሾ�G[�j[��֞��Q��Vu�*�}�f��릘��m��`vQ]��y`��?��l��ݡ��'�.���I^Ԩ�#�:/:c�@�#�SV�څ�?x.<��=uM�u\�p�h�pN���2�u���������0o�!����++M-�eT7���� b8Ӭ���F����͜^�ݗ@q�ng3��0=`�B}?(��"9��`����^�}]N��E�] �a^��YE��V=%-QqD�����9f��,� ����B�d����0�݀-m#���<$=Եԍ�6F`�g~.A��|&�X��� <�:� *L�%v/�A�#�dt+p!;?�Κ��Og��~2-.����s�"��9e�C�U��}QN+��=�� *��&gDQ*��B�P�݇?Ml���3�t��P�*�(2b��r �0���z/�ћf��Ίk�Ye:7���lC�ן�,Ĵ�d��)}��@Y��f�1�Rf`6(�[#��:���uo��C�?���Z�ձV�ĀV2`��̵�Xd��06v(�֭�c7F�?��Ei'V�Px�=)��%�]W�;`��-+�э��n��7��C�04?ɮ�7�|�f���hueWC �[aKy���]F�ŀS�z� 7F�犈9��qB0������'WM���6lӬ���eIU2L���0�.�L�d�cW�V�5e�չvh��+�s7&e�)cҦЗ<4�/C)�1K�r�k��l��������G�]0C'��0���3��9g�Mv���B&����H��g« pf�E�bi%|��?aO�,�:~E�#��pa�,iϡCx�g� ���b���8�Qfnua8k?�-7USm&ۍ)K���8�%1/)��"�ɴ�h<���6�,@�G�PQ�)�w'�E��52����������J�H�����L�|��O��4]Ȃ��3�fBLճHGf-y�J��Mk:+������?��T�Գ%�Msf�o�R�W�Sm:3S�(�q� Y���"a�����m3x۽f�Z!��.Τ�d��h���b��ɚ�CZʘ��_��� cX������ZFug5��R�� ayσ��`��='�V�\x��ϼ�f�h��즛n���xh��Ƹ/���o���}Q���U봖9�+ O�>�:�-�:��U+|4/<�>�Y���������`��lt ���0i`�}e0=CV�Q���9U�P��!�j�3&�X��;#)f�k4@��Y��qQ�SgѦXN��a ��h0Ï��r)f�HU�ԍ1L���~: ���c��z_�9f{�m��P����c�m����t��~�G�����G�.^9��j��B����O����f]�;�������2�Q~��84r��83��3�h^�<��1,P��@Ms���[�#��dž���c�B)�l@j \�&P+�3�7k���[�I0������ d>��vN%��Lǹ���� �,�/S8B;�9eR���%���ɒ��Qalpρٓ�e_�e翱�˓������/:{�)f'�n��F��|�6�%���>�:�9�f�L���1Qʜ�QϢu!|���E����N����z6�|���V�S�bgu���`�``VK���>�3��o���kÜ�iJ�+xA1����1�E��E�� L(l�o�&0�5��R���e�|(����z@[ໍ�3�J�^l�M(f�1k��t ���g�5p���~3�`�l�78^�Ll�\��u�CQ;c�p�}ːX��l��l��*�uJ��ձ\pV�װF�U1�u��GbB<�#c),<?��ƍ4Fr9��}�Y����qR�2l�5d�?��B��l�B"K����6�ϟ��2~�ZcHM_z�R:��U���q��V����� i�]@S8[�w�C�y��U�gݰ����Qϖ�T0۵���r}�BjY��(��7����{6��u��30��� �Q�6�Q�_)/��7�S`6U��P���^d�Z�����h]GFg�)���z-���˃4���2��Zc���s3�%�]�+��vπٓ?�9f�E�����k��?��sv�]>�I�뮻{fXp��1�(��ִZ��7��8���_�y�8ʗ:Gz� ��{��9f�WV�Ã6�%j_��:���s>Y{>L� c��#A%�RV��NC1k�h�@j;}�ؑ��?6�Vl|�ʸ�2���e�r�b����{FR���z(S f�c�lʙ�E&b�!6�v�%���#��1�I9gS���B�X���I���f ���;�+���'q\Ĭ��w�W3a=�!B�}Q[�C��hp"Т�g��0��+ �s�R�.�7>�`��91ϲ>'=T�\�,���_��F5��X�۲�k�/-����4���Z8�3)e��u�/���pfTG�}���&�)�A�[�v�O�۠Ȁ͜|�"�+;R��p+.�� �v#(#�,b��QI�C�ڒ�;7�`��:�+�^�\}.�[��G�f=���~H��8�X��ebn-��Q+xjG}ԉ� k�QR��R�ٓfO�tA� ��>��v��1�`v�j�1z}W�b8��}Uô���`�<�Qv��emh�ϒ�/U��>^N��+2�/�Q���Ta��:��u�F,�S[���3��L��6�ZM9fm.}�ؑ+ټ��fH�lf��η�P̎��YҊ��� ���>�TY�� 5^2)fE��A4"T3 e��b|�� ���:��Wr���/eS���Cb�1@����m e,ߔf��Κ�� vAS�5Zg9X���q�,R�^�K.��0=��g ��О� F]�Xd��#h)x��[��D|��x�Y����h�iu�.Y���y/|�A��3ΔV���k��e��F:���{|0� ��1�~� ? ��C�@��]A�W��a�Wh>��!�r$�)e�=$��3��w �f|�z�Ƹ�iI�e��L`�[םl0{v{s��}PĠ�)��R�j�jf��暹 Jh�Z���<�L�ʴ1�y�備3���!��cGJ꿬���N.�=��f����Z��-��c�<�0}�$�28p`,0���1��g�a�3Seͽ�\�VH>��߅(Z�Ш����j~f��yye0��`���֯�� �k���9g�=1�5�`V� �ʸfkWh�X"�ʢ~ ���g��h6WF0 � �Hx#C�1��yk�H�B�>��fj]B{I����̢�F-B��X����ʘ�f�y2�Y�;`Ɗ��{�-v�8�l�c��:A9C&MI{o�5v.�_��W� ����=<�-v5�?U����:�}�$����nV�����m傤���8��^�_x��������6P��}U�3��0M(,��9;��?�鱃e�3�0-�1��e����Yl#�rv��'S���g���9f�5 _<J�2����%j�;�o\}2��u�M�f�Z�%% gt���V��5K�& � �AM��H)C[kߕ�S� Wtr�d�Uܐ��0��H���v���3�10�p��W�\1��.�a`v�$����]0�>T�(�,����$����=t:�}<�-RϜE�]Ȋ�4�4�5!�qP�g`�6�f�J��1���hj3�+�g�0���F�Aa���y�2�;�<�a�!�� 4 ��欎��Y�?f� @=�� �1�P8#� <_m����0�S!WF{j0�1��؟#3���5 �(h�Ʀ}5�_�H�/�M�o�e|��G�">�8�y�&γƴ>��l���"<5�݉<�Ϥ��c��?��/<��-M-k� ��L�%��V�F�͟7ſK=S��cF����38��3r5��Q,C��R=���]k��>9�+9*����+(fk�8�Z�+h�1 �a���_y���9���T�ʔ2���cc@+g2��s�ZvCm�V�[I�e%1�E`��#pvr���z��%G��I\B�����]���1�e��lvv6����i!� D p�!� G�aMR��~7f���m ��Q��q�}�5���1U�x�-��0>$8+]0 iJ���,Ղå����M!�1�}vm�+�W�#5����5ZSh|�r�8�᬴:*��f�۲��Y�o��(�tV���Q��M�z}}�k���6'yh,�X1;�B��Ҋ�c W�:W1�:�(�8�����z�!�2�t3F��#S�FI��� ��}A�x�Ud�a���b��l��k�d�Q�:��E����P�|e3 �}�R��0�����aA;ӳ`L"�Pl��!O�D95n��JBKG#�4JU����ѫ����H(#��#0�rV��P��fj���R��լM�3����\5��"0Њ-}�PF��2j���u=���f��d�Nq�J�q?�t��,�0�A-8���d^}4����= �Z�bS�[P��P$�L`L�Hc@��@���"�|��� ��Z��)C[s���eɅ�����Fp��`��C��)W�iE1��Y��00�i��lff�D���8`6�9'9k�W��3U�\�,2 T/�>�*�m���0�+a|���P����.<�����. ��:�L�����]~+6^fm�k�l��%�L�ќo�j+f��w�0�h�N�w�3#A�����\d����8]'�kC�� �0mB=k5��6�}k� ̱�Z8���W6*���fX��B��ַ�l�+x[U����A��0M�p�&>i�p$��/N���p�w��[����}�{c��<?!1� V3�mkk�X�O��#p��*��8�h�k.}�3c��LB;�㤞u�b����2�� ���0��-c.�tz`N��� �f�\��Sc��I}��N�����}fYLRT27��+���a�0y �� *���aӿ������� P��D1�]�ǜTY+= e�pFqd�C�0g���e���a(#��-�;�2�-sM?��*g�H�l[����#0kEm����ŋ`���Kw��8�`6==��ܳ��0��.��n�<�s cl�����+���_�Mk�� ��&��\��Q��Z��P�Ԛֆ}>���"�ph��,��,}f��E�.�� g:nuf0�d��K(6�p��0�Cg��yR8|�IL�~ɚ�bPV8�1r 0˪S��1;� ^|�W@���f�n`�ЕӀ,���$���<��e��$Һtx2�d�(�酽�<��:M�ʶ��D�TJo4\zw_��6��_�{gG�e��=j��~z�̴�����������;?������L�ZVw>g;���������xzQ���U���?�{� (C�g_��r�l)`*`�� (�!t�^��(rM�~�����x�T��x�+hV�_� �� O�店�����o��M��$k�bT��� ���X���jG�i��N�G�R���+��=������ ���EW�dg �`��#=���C�`�ϋ�1q6�`V�R)S�?��X�ά��W�J0�e�5(+��_��Cm�������y��6�v\l:S�jf����<�7̤���F��Z�a� .�fI[���v��-�u�l�f�u�bv�Xu��c�Ž�{���Yve|�+^1��F����kZ3R��r�l-+0m��*�<��ዙKc;�u.n$�q����sZ>6��+e�1����ڌ3�T��֠��Ŧ�m~��x���K��B�O���Vi�ϰF�3�lЕ�2�3�>�2f�;���?40��/s�, �1�,�`P̪�g&�jR������,����E�2��dRʴv��f�\��ޯ]a���jM�v�=����1/ǁKL��ƓԺ�vɛx��5m��2��l*��?�yiS�)����{}��BwA�����Wޘ��io̼�{0�����_��u��)� ʂ`֡l�k/b.1<��]1��C��]1�"=e�ࡨ�]2|����X�`os�/�ݹ��Gc�ך����z٭�7�Eyz,�@@p����fg����Ba���A(c��C��έ���i^j���㍏=�-�kLoݐ㖀ك�lQ��&s�*���n�o��Ι]�o�e0{��^F0�W�6�x5�@8��]��f ^�!*ud�=s_c띡��n��1��� x�U&H۴~����������ҡQ��]Ï�v��& �g��o �k�h���^y1.�A�[�T�V�YH���}rX`�|���ѷ���X\ڀ��<X����s��_'NP�i�l�v����=75�싎��3��)�)��78�X�Y�B�=���Z���*�c<��[��)�����cޝ�ֿ�ɗ|�������z[�1Z(#,��ܪ �\9�`v��T1;�`̹��d�e'�� �vv(*f����k3x�yS�h�Q�Bv[o��@O8#�X����{<�����C�C��=0���ֺJ�=�d=H�C��������(��bzS�R�C��^�l[`�a0��v�|ܲPF����OA���T�,l�D�����-�Uc�5�0��go��)f��Uu(�Y�f���8g`�kg�^�җ �u+�Y���]s�j.쑯�5�%��@(c8�y��R)��>��m���c��1��(x�f�c��_�8)`}�� �����n��Y�L�����6n����?_�0�QUӘ{hc��>�%b����(��rt��zW��M�)f��&�y�&c5 fx�uk֪�;fJ70?b��(�3|a��Y �L U�<��4N'`�+��G.^ Z��m�)� #���fj�J�#�����Ґ��mr���B}�a(d��_��E��S��+�~�% Ўp��y��6�l-��`Pŭ��n�B05�ۇ�Gkf��l�Zn�gч�{��k ������2��QA3��Z;W��?�Pv����3����=FYm�z2��_�60���=*ʵ�[��L)�mv�G�� �塌릐5�jJT�� 0+}.�~鮲b��B�4��?w�0���q����P�Hxk�/b\x�t_�a3?�a��#cY~6��v��-�l�8W��8� ��B�ʘ�g����YNY�[�9+&=�M H�!�aO�|J��}�5q�����P�*W8(\�In�Q��/X��[f�[f���~�,�ً_���Ni����9��d>���C;N ��\�m0g`�[⇍�v�\�� ��C9v���#���ئ�3�&WƦ���3��A�/ϩ=�g�iscb��4�P���Ap�_���/�=�l�6 J��Nse\���c[|�*�v�l}�汔g[�hh�`���,�����f��mO�kg����/�r1������JЩ�����Z]����+g��ϓ�O^�?�������`,���ѩ��3���ƃݜ�2�~d{Sb�S�m��n��=���#�v0;�+��ŭ�7�_�� �i�]0�\�a��(.�=�*Y;�����P�ͨW��٥j6��-��#�@�$�\��T� �T%�<�¹���g��<�_TS��XL�� �|(#�ll�y�����>?f�áj6��m�_��r��t`6�_�M5�ύ�q�_�f%&zA�LKf���J�]W���|��_>�`�}�`v��z_��)��Z��b��Y_�|�ʚ�sP�,V\�5`���2�J�ͧ�˒Zf��ݸ���v}*h����̺�~yN�?�΄(�ʙ��w��̦&"A\�gF%�(��@��ƗKe� ��3�2�Dz���J/0��u�T��ƢQ�\fr��8���<��z5�,R���9kӕ�Ě:�)h���of�vK��Y�W�_��(A�*-U�E� ,���$#r%�RB�:(�XHӢ��Pb�_��'�c����X��_�4〞��� �5tu�Għ.]��A[��<{=G��Q���B������Q�0t��3��C��]�X��Q1���ka�?I���턖����x5.u0;rd�jv��.�}�ڪ���uPÿ��E�u�M*�V�k���}�R�yf�5�eޑ��m:Wq�X�y1���0oA���Ӄ���w�4-,�q�f 栆��i�#i�\f��.���o@V\!��e6�x����Գ��Y���Lx�����ۘ>>��ȩ��o|����t��aS]1���\��s���gՕ�C�̴u`�)Fi�W)%Xs��P�|=���@���6 ��n�1�;ƽ֯5*`������-!M���N^���P�t ��d�U3���3ml�)�=+���J��OW�\!+��1�,,�O0��@��̢�2����q=���k��� ��a��?��)�D� ���T�(e����bKC�����}�|��d�Z��Z�Nf�^���. ��[x-�oTX���L�jr�&|�g�d�����j����|mAw�{�ִ��6��E���Z�@�5�O��S���1��&��(��{#Ē��{*�A���k��N}�ת�_?�}�~`�����y��h+�];�6q��������}}Z�� %:��>�����ɏ��PF���m����v����m~e�8R�n�J& ���N)dWzK�1@k�T�i-(c]�Q�+�3�W�Y�~��!m�o�l�f��y��}5?���j٫�4��!�;5lhC�u�ټT5�9@;��s �������"?/&�)d����@4���Uq��<��k�2�6+Ff����r�^��v��ly���0n��g̺A�� �0�|�m��w�� �t�v_�b�AX)a���PWh��a��T�f�'L�1�L�߃J���ʆ�Y�F�|��L���5Ӝ�E�6�HyF�?�!�JY2�����e.8���q^>y(#��eX��@����'����ED��[O"����P���f�E��>�`f���|�C(c0ך9g�g?I�Z����W������w�Scxr��z�������G��Oo#2x\�f*��rEsl}��\m��T��?������8'M`�p�ն���r�w5�ԱE�c��֢eT?Їj�Bӛ������� �A%��.�u��v��0V150kjY��� ��bP�&��Z�:���n�Op����u�2W�S��4 �,��=ȇ?��2��%��^-�K�Y�8�1�!�-� F ���嚝��t�91μ����pE���M>�/WҤ>�Fy��X̖��pg���4���5kW���Y�q��g̚�9�lWuP�,��k�r͡M������N�Y�)l�;��._�pg�jg���a�et�̝�|f�u�Z���+f��0�3#�L�&H�S��L�#0�?��MB}�i��~oK����1.4UJ�W���8��Z(c���6}�_�����KJ�5�1����9��;�u�?���^Fģz��<�g���^Ԙ�*���UB�F����T��ŗ���QA9 dYZ�pSc�6E��e����o5�Ly������w��Ԍ ��9�{3)�m�3���~�����5�x��Q9(�����?����)�����d����,i��B���w�Y�Ů��BF��3F/�D�3(Y�V�{;��z �BWQ�����4�Fʙ��[��t�C�Y5Ŭ$i�s�g˞cf7f��O�k_�9��"�=��"��{b����r��c\�,�7+��F0�M>�h'��C��|L�PƁE~3@��[�.�0r�v<#rӾ#�|�M����p���<�lfo���:g��/?�`���̎�wK{��63�[���#�3�<51��c\=�0�a����ȡl>�ыH�`�:c}�$9f�(�s��h����Do�CC+�A���`M�m�r���/V������l�� ���r�|�Kk �C�4��W�Z;�L�~�+{�2���fGI�2��R��it��0Ȅՠ����u0���������z/�c�`���ʛVx#�]�*P��/}YԨi�n��Q��^ r X�Y�.���E!�h��:�<�8*D�e���YmQ ����z֘�Ήf=����QOT�6D�\�֛��R�pOtX�j��GLh�.�o��G��ǣ_�S��U�zGoQ�l�s͔ov�Q(c�W1A�[��KHs8k����/��Q�h�۽V!�� �V} 0��i}\{Xcl�c��0�8'*gh��OE�+��?{U�)�.�(|"�ѣ��+fe�`;����3E���r�j�;Ǣ�vE��y��6�kfk���%j!��L�Y�䘕���Y��)�Z��fYb��9��kb���}DyZ��Q��;���^{���dg�~�g/_�\����,����M�Y���y�c_�*tT�v�#�n��Xx9�)D���4�u�d�1�sEL��"��%�i_W��F���Z��!��!Jˮ���@��U�����v/6�<�֧bv_Y�K��O���)�5ڻmu�&}�z�@O������甁����yMVR� ^�I����c��F@����+���d�]s̯u<K����$�q����h�?�2��%q�q��?�V����}�G'�ɘ��b����a��"�>0ü�U{�L���J�ɏ~*ظZ�h�G��< `�9���d� �9�)f�;�������^T�OO*f;0�\s.o�w�+h��|��o�.�T~5�qr0��0���@+�vSrwe�ϸ���C���$ye�̐sV}Ϝ���5J3E\� ����s� *����pGF�_\�����ϙ]�Kβ+�<pR0���Z���J_c-�v��+��3;|�k�u���P�=>����_c�&�ր���~;���\(#�ita��اz&0#�5 ۽^`vwYߝØ�M ��_Z���/�|���bӳu�� 0c�Y��P�Y��5�0D�Û��ik\s\��A ���?���K��w�"�u�z�WF�T ������t ��W�ً^4��8�;2�Gg��_��ێ�&]xSM�`}��=��c�ฌ�87�?C<���w|H�k|��9�9� �z�f4���m�*� dk橒IV�!o�����_�0�V��wwF�i}�e3�أAT�1Sɐ��q.:9�\مF ��f�W��>w+��t�j����T�ejz-��=9���ű����ek��uZ0�pœ��8��i.��-��Yg�]>�̭�~Y�L��|N�������)c[�c<��}^��q£���Y���՚}��U`���G=w����^t������0�� c�^��\.����m���9f��6�)>g�Yf8�e\�>�q���& ?J�j����6ra�%�p�ʈy昵���`Us2�Xo+ ��i�m�宲���� ̰��瑕�T���%`� �<��:4F�1����9)f �k�m<��m�A*�.�C)RdBҜB-���\�+e�{��)+t�@f���.�ꙕ8�/x��[8_Ϣ�E��D��˞��8�uɎ7{���ON��q��z(��e+�f�����P)#�Q7V�9����a a�T��8'� A����l[����8>g����t��)�)�j�]�b��{F�aY��`�pV�.���ize,�1`�[���9��N�!�`���R�y��ߠ�:��:3��mX�̠L}������)�o�s�8oc�pl<��oƈ�'8��ަFL���D�O|������,�ٽ��;��0E�T�Van�!��ks�n"�ˠ�#0�z!ȉ��63{�c����n�( �t�EЦ����B�������j��u�jF1��o[k`�|��kq�N�v��$V�Ʈ���VL1KU3?�,&��W're�]����� �b'I3�ShP e4����$O�<��l�J�bƘ)f�<3�ZEh#4�O @d~��i��H ���K#�r�͖��m�c���nu�_�i��6��)����6(!��j���e�_�K���ւ9~RU=�r��Nj>��q���~*��#!i��g4����P��r̐KVT8��u�c��p�B��{���Ù��\q�̨���lA̙�P�S9f�d��)Ǭ�����r��p�҂�i��!�o~g9��G)?��{� F#����7����Z�ed�[��59�a|�BӃ�2� ������Բ@����*���jv8dn�o{,���k���c��ͯK0c��'���X��m|��{�?H�;�`v��w�����^]c����<tq�h�G��Y��<�̔���2���qf"�D=Z��Z�3wd��b�����cS�h�!��r���f�70������2�#tq�>���,�L�1��5j^ ��Y71�<e�1{tD�9f5S�H������ �U2�6�E��-�`�j6я�5�˜������(f�u�f_3slv�v8kj��������7jpE!�w�Rz�8�8�݀wA,� �a��`� �ʰOK�� ʟ��M����L�`\�f��aE��hrYq���2VE�q�� ��*�Y�>_�+>�z�ܪ�\5��p&(ۃ[#�5�u�dq �5�ef�$�J�oc�F������B�P�0�������X�~�E>0���W4�P�9���3�vY��k�gs��!�o����b����;��A-W�F������2��q�&����ܲ$�l��M�ͻ0�[�Ó��+h����W��a-�cv��_����30{�Y�;����|x⬲fkھ�cfk�B�mX�r�C�P�i�ɯn�[d���2� ����-m�c���1�,(�y�F��@�]y"�L�xd����<!��ɅQ`&u���i�է&@��DcLh���s0�&�y����8F�ٜ�``6o���>v���Mf2(bk:5���3}|�MWÏ�=���%C��j����題c�\!CK��f��~v���0��w�� ���/�������(��ոS<�ir6 D��>�����'5z�kw��7��σ�Ua5��2�9��m0�9늙��@^��2�ok���zf���9���õ� 0��of�x �`���3��Mfq�;�y��GXԇj�}eM���ڀ�&aگ����E)Ϗ���r0s����@��j�-���bP�v�#e<LC�!����2�����<�, a�7�Xq� >x������nc8{A��#��c`V�: �/�Sw`���_��9�c�������)���]�u������1s�F*f>&�=��u�]>�8��>9������@B�K��E� ��(�/����Cס;c@9��a�tu�s�(-��f����NW��|���zp��dk����fW����!m0w�{e<��v��b�}�-�n�`#��[�s�>6�,3<A��P�]������]>B��i����+�O-�j��[�ٳ����4���:�Ĵ{����u��L�j}�f����$����L[D�g.RЩG�d���s_�~�s�|�3��sNǾ���E���_UJ�zfi��|��w��ˁ�@�r~83��m\�)�,��Q_���{@�e��,�M�63H#� �z(�+b%c�U����مJ;|#O�/V� �[F@�+�����7����h���2V�? ��1�� �Z+J��A;��Yh��Z_hi�ޞ:�Qc@��~��[A��V����A�-��f@�כq�X5+�z �"���*��^/����|����=�,�ٟ��f�����L-�K�q����1S�8�(ss���:e�1_�l�VRP:����ט`F�h(���Kc�E�{;p�C5�z+�L��s�̞<]}�1�*�J����`3F��;6:�Q1� �\1s�|B�N�c�{�@7�1B��2V�E��_�.σ�#+yR�##s��_�/0���2�S��ԩ��"�Y)^���2_�l�&�lj0��/����&���4����`�Uq��~��c�s��+��8��@�����h�֭���Y<RS�E>�=!w*$!�/r��7��/��>�j��>SԶ�2���E�S{(f����T��l�m�E���?�`N��e��N1s[S�9�c4���U(���hD���|�^�W-�,��n:8o{�jo���K�����X�z�88s`\Y;V�� ��N^h�T��4��/��M?��W�@����F��3V�|��R����z���H���zΙl��#/\��y0���Y�?��?60�"���yj�� �>W�h�4�4��!͟c^ W��gi�1�$�wc�cV5��� {��yX��2�q�`�A�� �LǐE�i��?�1{��� ���ݳ�EZ����L@� �q�w�Me�.�_M1+���T�k\%3B�C��/c�����e8 fc���p�OQ{;3��1����]�����UqF���8 Ow����X��ƶ��o�O�@Z��k�Bd��br��G~��^/($��~ f�Qk�� f�+BI�e}�"�z.�y�7&�_���vw�+ƛ~�W�Le�c��̕��&�J��k�PFcP��+gW����[�A�ծ�U_0��\��l��R.皵+h��y�]��z�Jfa���墭L1�͢/�km|@��C{���0f%�'���y(�|��͏��PF�;W�x���c�XN�_��pet���y���G���O��9f�V�q������Q>���/c�;�y$���x������w�����r�r0���b���"��� ����|Mm�dik�UNk�����2V Ky�|���M����ڹ��iy��F%�md������Q=s�����40{����x�D#� ���$�PFcW�|��̻b6:.���gA�!�d�>��?ּ����4H8#���PEL�;�����iO;��?���*n��V-ıh�QŦ+G`�����=��>�!Ȯ�2\�ꐏr�����#�|�]<g��g�1u@�=�îl��C'�>Vw����q�a�Z{����?q�ߛ}�� lъa��8�*����G��P�{�D��}�q���5։b�2��n�A�,0&�̠� ��w�����f*�|�ե�B��җ�����dy�)b`3�z�?\k�D��Ǘȏe��[�! !��1�4?��AH� �,��$ ���̨�|(#�9�Ũ~Y[��Ze��n��}��l���Nn�g�� r���˻��u���qTg�x5�+�^�|�sf��e0��?���P�?�J��uNǙ��zv4o�^���P��=���W`9d�3��]�\�.���yT�L�`ޘ_�WX�i�!M�0Y��v{Q`����L�k`����c��ce/Q���E}�9vai���9瘛�G3����aђD�4������<Vs�a��1/�l�f�Ilk+�[��k_fk��C6���}��u ��˴��B��Z��t(�0? �������o$������I6��L˼G��އV�x�*S�����J~�x����K��!u�t�����[|�כ2/Uc�c���¨����Y.��,�q�1ad���m�./t!0s���!�{#���Y��,̴���C��!B�e���0��5�i����Ø��I|������c��b���Xz�kd�06tj�y[�r0sWF��:�R�q`>�3��l�&�s̮ZK�s�y1�!�V���� L=g�=#�����բ3E��a)��Q�6�y���Y��β+�����3�PMK�5�}X_��G_�#u�s���q~b=�}�`�U�������A��q��C����RC�vh�5������x����b�?[�p�����?(dPcߔ�f��7=�ql����k � Iӥöo����x�( ��\�q(�;2Χ��[�v0�*v���O�S��lb��?.�Ps�e�`����U)P $�@#H�{¦��d\��?]�5�IS8���X7��O�V�^�fL�*7��X��+�����R ?o~U����ykύ��R���YII=�:��%�U[�r�[�k�/�%S���Z5 ���DU�����*�%VW�ڜ�~�*�5���������,���шH�C�b��� a�B��+f/���Zo����������X� ����y� ��GᏨU�q mY�i��g�ȕq�r���O�_���c��wÏ�zd��!�q��y�Jմ>}�p��wF��Dr��i`FW�SW��f���m����2�=���%�p�f�g�9�]�֕�����T��25��0�k�}��}�e�}��x?���kU*����A"@MP���3��̹�`�ږ[�qܱ8���N�k��Ɠ<H+�e�b�(���Z�I����9fC0��B整{KZ�6K�n���eA���H0sEb���GR�ԃ8Yu����=����-�̕���hmu̮����Ӟv�L!r��^�=�ٚ#ba�c0�� n7r0`�/8Nm `�{�mo�Y�:"���t��ng�W�^P_�COͫh/%@��V#`�1E�x�ڟO����]�b��7�)s՝�g���~33}��i������P��5˸�p�g�Y�g���d�j�M ��(�Ŧ��噣m�8l���u7�U��/`�ف��+f���VM��ׁbfp�h���b?J��C�"n�!�7�u��X=���c~.���cڅ1^�X�c�ˡMʖ^72�x��`�q�kF��iXh�t�B�ڊ6;]1���s�2S�4�l<�3��uv�Wj��_;�}��M1�k��s�f�y�_x�����=�,��w�qS`6�Cs ��Ήi{խ�3%�C yda�Xs5���Yr��&pR?A����j�m-�-U�'��#�I�xQ1��5���*{pjܭ��g�?-��xtd���iUs�2iT0#���o�ƹ�L����2>���%� �fx�V7�&���hn���a��+gf�x ���هB����z����[@�r$�U�{�233333333{�=�;�0��^<��̌�m�*ߓ�������4Z~z��֪]����J������pU�>�Hڢ�cia;Mݮߦ2^w�~��K�1�rS���*�Ͻ_rK��f�w�x!2����]f�c�J���JY�LbZ���9Iq��T�ĬB�)� ĝ�1�c���Ι�O-�Λ�9Ma���Sc�M����83��g�4 f7���0KvYi��)�i_3;��H�Ӊ�,�w�G�������uZoCZ3����ξ��4q+�یʙ�i67�Qח�b��i�b�'!�i��כpƶ�N]����b�`�����TFMcܵpe����~�[�:c`��c�O|� fc� a�ִݗx�U�2�Fs�2%����ԙQ���ĺ��A-weTx���a����&բ��>���KL>,�I��%X�o��~��$W� �u�3��+�E��Y�Y4&<s�H�\=�O�He���1�A9�� Y�gU��r:��pk����5fŖ��� �`�p�1�Y c�ތm��̓�k̮�V�cS�H�#�pi b�PxUD%C�b{���ݜ-SVu�,��t�_q�9f&&E�=��ĩ,��o���]h�JF��m���E�JK��@�� �4�ПI��2B����� P(S�`�&�q�Eqc�>f��i|9�vd�KyafJ�ZV�,T1�����?h��-��#�E�gU�5�]W�z�指�>?7i���6� gQ��ra,_9�M^S���룊��Q0���/�%�/��p]֥���eJ^l�WW����m��}�1���>��q0k��H�cno�z��tS�S�J ,{�/U�o���c��5f1'��ůp�2�(��m�e�L� ��E�G��G�Շ���� I S�#�I��\�L@*ch���yk����@���k�f=aL&��z.@�� �P��D 9ge���Z��B��(��0sg�&�x�����Ȳ� ��l�vb箹��n���S����Z��j(I�to�r�5��w�8��I��H)���5'I�Y��5��x��m�>qE\/�4�?��K y���o�wB�8đ�k{��8G�(ha��B��&��.BYA�n��l�[���豪g*fT�hRn�u>aLŨ�4�?��a�?��}b���Rk�E�fN��f N��WH�m�R{Y����e}�nHc]��mms���hs��T����C�5��e����l3i�Pn�YbZ�����vAj��j�4�|Y3�]0���% Z����[�;c���=fW����f8��L�|e����6��q��1(�6�*�Eyh]{d�h^C_cL[��~�yӑQ��������1�`�9ڴM-�a ��V�f�KI��l�5f�>�G���lJ*��Y=g����D*樘鲬�ؿl�ѧ�� ڪȤ�̖/��ܷ�ԏ������*�E�Yt���d.���緉Z������%��P�kΕ�� ��J���G�MiS�1�oР����]�W_�9�Y����o��P1;�f_n�(��F#��-�V��&���(�� ��[� =<qYĤP8���S`��#� �(l�g��Dp�N`| 8�E�lp����_8�Lg�,���̠NҦ�_}@��?i}�4}����h�1����1���f�^��M�k���h�A��ܿ줱���jy��<ߓ�m�?���h����{~!��5��t�V6 ��}���;�10��1�����Je�>��5�� �� ���J��h�d#��[/M{dYױ)Xe`�#���A�4�?j��ڇPf\hc���2F�?حK�r�Z���B�+��WƋ�p�j�=�켤�DU9#��.7�B��m%���3�����l��4�����}j�9���&!�����e}&T��S�J�\e�k���5�_����K��������z���Y��X��C��S>���b2����?u31�3��q��grp��a�AU��fМ������~!߰�*��\�_�V�J1�@u��i�l�ǖ%��ɚ���fc����d�H����5�����V�`mU�&07�Yu��gpf�Ӎ�Kso3Me$�4Rc��i�����8OQ����U�V�q�ߤ3�_5�_���_m�?4o }�]� ����ߋ;�10��c���P0��K�h���8j�=jʣe���r�t�d|�V����¼/c]��`�kp�i�%c[T�1��"ߗ Y���`��n�^۵���PcT�<2���hQ�q So��:F*cU����0Ҡ�pF{�LO\Os�#� ˨�>\f�3�?�e1��z��?o!+&S%�d�Tơ� T#�4Wv�t�|o�C8Fd����/�벊1�����D�L�� \�}մ����p6 �$��ㄗ���K��C ��sT����؆�����x��DH�����w���xA5C|G9 L�a 2x���"�C��%J�t'�x�j� ��2��s�Y�����N��F+}�!ʙ:�b��^��ܤ1~Ж�Q(c=) �JZ�Oߡ<�f"`���7s+�� ���]H����@l�k�T!km 0�g}�BԬ�e�>��'N��?�K)�}ѯʴ�\�匁�'�̾�/�l\ȉ8� u\��-h�b!��]Q]��{��'����� O-p�5f5a�fq��x@W���a�_ע /�~���c�2����Lg�M*���c��0�r��9>DB���mj,Og�0���R�·�0��!�tMv�L6���w1�`��f��o���ˊ]B��3}��:�0��Y�I� #����E����x;���v��T�ÿ�g%��#}�Z�~��ϗ���]>�1������(J�h����"��\��K��(i�L��H%_U2MS4�b��Q�13Ma�g�6�ق���-M�nd��mz��f&tiC�5��1�������Eg�5}q�R��k��� ]�.�ǘ|�34U�Z���Z�2����H[[1��~l�m��0�O5Igt���2��b^拮����΄��5�̾�{��`fc�X�t�*_7��K��m�v�l*m�0iC]���~��b�*�����}D=>UǢ_��!l�qnB��5���tF5�3�z�~����n8G�����1 �����6`�df�2Ȳ��(��d%̀��B�̥��eNN�EN��j�����J��2��}��ã(�cY:c٘|�m�_{HQ�Ǽ�`W�6���˞w��/�P� lY��` ��� 2 3&�ƙ�d�b�ou��k�i�A�eg�s�^fˀ3��(bQ&t)ר����\�w�wގ-��\c7IŬ��J���+C�C�%����?����A[�_!l�.��ܔ�c��6��XK�0����=���B�,R�f���L��{��`���/���~����n�b&��ퟹ����c�=Θ+�G�ٕ�ꫯ0�IAqw��2f�A��B�1��� uG�mT��TYb�pC$<5T4ݫ,MG��T��DEc]˺�Y�=?�c��x\+bQWU�J]�U����TsSj�\q�����*d��3X��mZ��@�Y~�u3�^gL�����oQ1k�2���g٥�n �:ѡ��V˭�}�؉���J_�u��F5̮���>fn��PSMS���m�P�b���`�T�G��rC�d�[~��m[A ��i����k�7M���>H{y�L;-�Emnޱ�M�hP��tP��ƭ��{|�gOsߖ\K�̴F\I�L�,�?�?IP1;� >��-�ӂ��ږ�;Rm<��crQu ˃�d�6���RF�C<�%Y�կv����~1*fHG�2�2�T��9���U�2�u�!p�r�v��ۖ��86��Y{�3Ie�2�L`$S�tϲ"k�,�\ٹXE=���W�q{�v{;6�}0���ݴ/���3Io��e�J���Ž��}����~��-��+6` �L�3e-Y��|Si��|혨bx�p=��}s�A��m�q�\�L�OM>���H]p���� W�14��O���0��n>�a����]��E~#:@�&�H�8��b6I ,��AM��Me,�m�p\�$ʘ�0�� 7��=�ͦ��e�$�43�2(f�3�]=�L��jͿHG{�N?�.y�U3��3� f�~p��>��=w� �HM�;�-iL�{�KG�LՁ]g%J���m�����^��Ț�h f�(c9Q�D��� l�b�^;;�RwL�n�k�sI�[�7�@�Fh�^�2�#�5f.PU"�����`f���(��`YN��y�<�ȏ�3~����)�����&��܈i]�sH����� Z�u��X*���9��ߴ�-��[`�{^)�����i�������w�XC*ccyLA�:��mq�3f8f0{�����c��3���z�/U�X�j�c�p���W��yŵ�ڨ鋪��]��Ƈ���:&?�D�Hy�[�z{U��dZc��lq(KU��@6E��m�MZ/�1Kl��3�E�[�Dbb;aLb���j�L3����<xg�4�yֲ�2���N_�2��~`�������yA*a[y^����Pi��F��2S!���2\�b��,��(�fT�t���i]����bvQ31�۰�F�,֘�s��x"V�#�r&�z 0[��A�K���NhS֜}����:s����*���0�m�?̠���3MR&�{�1>xG��i��N5����V��E�y#���=�i��{�i}~�W��lf�������č�*��~q�3`�A@z�1��UW]��1Վ�x�����c35a� |a��(b��Y�w��4�Q���q�6}B����q����%�! ge�j�� a��i��ѭ�f3�]P�\b��A-�s�U0k�1ҎC7��lZ*�e5����[W�XX�Yf5�t�h�X����a/�]`�vފ@�ڼ~�CX���8���]R�� nE3�e�B+u�\0���CQ�����K5JT��&RH��J���rxK����]�N�z�}pmo�U�&��Zǎ\���0���U^ C��`BE D �`&��l�r�r_��7Rϥ`�(�lE���Х@f c�3d2V��wK��8��_Y�e5��Ld����hg��G�w����ϙw?h}�� f���-��ui�3b n��Q�rPF0�z#�13�����>e��%��,�z���`�Yg�3n�\�T��U�R���8c`��c�w�� f%3��Z(U�f�k0Rխ�S�X&�MYw��h�����e�" ���/�}P%C|`YR -֕E9�3k���5���a�-�Y]SvSF ����MU/��:&�YYj*cb�_�ƣ���T1S0C�Օ,|�c���lه2H*#�Kכ���#R+�I*�K�NZn�=9z@v�R�i�سTm���y���9���(��i<mQ����Y;lR�|�ԧy�C�r�r�� cz�`ւ/�l r��DA���4�1����$V����V,{�7�G��w��bu�;�(̅㠘�E�DF�q(qfmr�o{���߲οKA������y�n����s{�YuG����ȵf�ʨ�0�uff�\2���I�t[�ïKߧ]���0�p{�}_Xc��ŃΘ]���ٕ��w�ˢ�i��):N�h�l�m���UƜ"��U��e�~������6�)؉b�8��>���=�> �1%�Ƣ��������(bz�X�q/����U��(e�|���h�<�1�`�����u29�%��5?SL>�?'�uNlg*�Ҭ*f�-dݖ��5l��.(�"qv�4���Yw�J��w�k�}���H}R#�T�?<���V��V��^���_��SE��q�C^���Q0��:-�ن2�?[0���NH��~�1�����eg������_vCw�'PȔeN�Շ}�0�2�m�K3�fh�X]c�Iy/�����`�7\�f����F�Ro�c����(*Zh.v�n�t�� �L��i�a 0����^���|5���M�?��^��u�/���O[<䌁�U�f�<F�L�&7��,Cf���B� �����&e}�&�)X�ז��I������S� ���OS��ԙ1��gJe�����F�{K�~S�[3��P1C���P��,�O��3�|�v*cX�l�l}���iXh c��kJ���J�cl8}a�.if�.�| ^pa\Z�/��#�P��7�P���l"��ĺw��|�ؐ��i�p��$>'e�H���c`��GȋX��q�Z/cd�낍�� ��0��h�B����'ga1�������y�E�:�u�~�t��U���-?�">�{�Q�*@M��P���h2�:n�L��v�*����� �� ����X��k��UOi6�K�y ���$Au�<�Y�A�M��!qY�!�ֈ�j}3� ̮�E��v�b=�ǵ�.����G>��s���ߦ5�|�Yf�/�e�7ʀ/��ŶRF8T��o�q�>~��ە WF���̋�0�=n�3���;f0��o���i�͵gZ��s�c�<��Sa��v}��d0S���5���#�rzΔ2�7ך�N�|�̮��o0��f�β�@s�bi���j�ot�� e��]0����F���d��0�1c�!�T�d�т2� ԍ�u�6�6��������>~�]~�͒Έ5euIg�T�oOrA�qr�6��3SؐQ� ��O�FI����i�$u�S}eUeM���I��\ITx�{�ʅ�y�I�_����G�߷d ��cھ�A�Q��y�T2���|}��ҏR�[⤘�)�P��Q��v�m0;�aMʌɏ��R�LRڵ�eQ�T��<��)��A����ai��o��/�2��U�����x7y3k�k�u��;���Z���(g���&_֕�限����<��C*bc��/f��y*��x�����8c`��c������������k@�m��Q�q�ڿM��m��:_T�j�������=�l$�� c�Ãq1=�7���@*\��1�2&`��I���YvZO�R�3#�,}�]~�������h�`�T�U=c2��pqp�7[��wU�.UCm@d"�1�*d.��2��s��>����{��DM �O��{Pܔ�^P*�n;7��P{��w* <�=s�|ߥ��e.��mi& Tt,�2啂[}�i�3r�eۗ�{�F'nA�[��h�$O��v:�G��w��e�1�k_ė��$� �� ������M��G�~,ǖ� M�)Q�|ao�My[i���p�������3��>� (�T�CY�ъ���_���~Ժş��\f˶���V��Ihe��};��Z��pn�fP�J�6X�f9��Z���� X�#OUd����^�X��ڿ���_u{�����49b�����:c`��c�����Q0�h��TF���b���ט�v^�3�j�_�6y`0�בIw��07!3*����0/�5f��x����{C��S�V,�2O���lT�wF�Y=F�1��r ��*J��b�dR �� ��q����M�2���núD�-�cY�7m�ܢ��+c=y��ۃ�Z� Z�E*�ߌ�5?�R����B�_Zn%ܵO*'96�r���7dK1BE�[��"N��k��}���{�Ž�\�b�:x˸?��Ƽ�o���|d@Tk�ĕ*�W�E�?�3��xy�OB�Ǘ����~�{��yĖq.P�x(�����^���#3=Zk�f�݊�j��gё�~K����bC�P�T��D�-�g�z�*fR��G�lM���%����*IRe+�7͵��'�u���| Y,�Z���⪼�5ɔ�0ilJJ֜ �͚���6q3'���lÎ�Al/�,�}~0��n��+��/(fwY<�`�<0��ؕ������7�A�l���9� ��5��f��W��a�Ob�"7�f�Y�Ģ3�,��d�E\i���P�ufzt��ׯ�o�e��Y�M3r1��1��L1K��T��~h�b�O�p����t��X��lO��C*#���j*�`���>�9!��!�J֞5"t�2���P�v���]69�o�W�W�wc#P� ��sB���N;c.1�X�Se��� j��b��Qf�G@�>C��EP�j�V�ڊ����u���B�By�ͳ���(f�'��a��&���������֣-�+�����IlW�,�m|�ݪ�JS�cؒ�`��Ȏ��ѝٹ!��2�W�#uAo^ӲcTϬ�ڧ���uݧ#%Ж��PU�b�g��9�g9-�ٷ�?��(�'k�p �G���9����_]�ߋ�]�_k���0��b�n��TF���%�֘�z��,l�qh0{�1���^����٨J6�]�i{Q�l�';/f�@Z��4�� u� =��[k�m�p�7a-�C\-��.�k�uWt�Wqi�3E�����Y�� meav��AFم����0���]p��b&���� 'E���0ÍMJ��>(��YI�1��&�h[DmX�`���NҤ,U����c���o4��K@�9�ä�P.���&��r�-���t�>W��u�VD<�o�R�@�B�k �}*sس�͂�:愩P��T�~�G?�e�]Q��)� Nq��*�0@�i����~,��'y�Z�J����a*b�$�#�ZA�c��`��\��e�JM���Y �D���g�2��Z����1�Pf�r�#��P�"UQ��^K�9�8r3�Lߜ�e+1���|��ɺ�+GגI{��<v-�[�֘)���R뙛N ��#7� �n족��=�S��噱��?�}�*fy�b��X��`��'��}�^�`v�W��L ���*���NM�5f-�K� ��gb}K��F� ��� ��VJ#떁��5K�PS�}��r��~���/���'��4�CZ����FӶܼ��mWF�N���eĩG�q�an'�L�,Y8��4��5�13�§�]�_��HG'��@@��0���+�!!+@[��6��׃,M������a�,d��4B��� �a`���J��O�G�q���U}�յ��Q��8z�'��O��Y��.�&g%�r����J�-�X�J͢�E�UƖ�W�q�0E�"אU�Y[�k� �*Q�!`�G�g1��\c�P�2%H��V�C�|�����4F-ωM�fʤ�`}3��Q�rz�ͦi��ݎT�X[�)=T��\áA�c�En_Sט5m�kϊ�2��œ�������5�yM�惘���� ��$]�Sm�OkdE��c�ǵǤ���)�R��L�P�����1��U��sLۋ.`ZĹn0����ScA�#���L�7s��erWF���� ���JZ����2�X&n<S��kЊ5�� N�LSMo�/]���'.��fL&��_q��_�Q�A���fP�ƉD��g�) �O��Ki�>(4Lu&�Yn��K}o�g��_��V<��b�A�Y�S�B��>D;�?���,P��} rn�f^�PҰrT��k�E�� fN�ZEY�1�jwX��+��Lŏ�h�/��3ۣ�!�7(��R`J���;�7���Y���B�,��5���oZ�ָ���� ��5S�:��2~���{LWĴ~���l���[k*c�i�[CM�`�O=c`��c�W��U����*d1lB?^s`*��aLE3�=�;�+k���L]s���0���u��]��Lq��*h���+��K�EB���lA��1.Hf�*�/Mx �I�#�qŬ��]Z�Kr�0��ƨtX�PƔ�(s���u�ˬk����#�G/�5f1�B] �:AM b?>~�d^�j]>���R��.�Z��()�;��9����%��!�eI�k�p�,�=h V�� �M�m��7�Vٽd�1+���~dy�o�|�[�����s,�I^0���c��xB�����"uQbΛ1\��p[�Y�-�0�ގ���:wR\ꝫj���q`i�c&Ĩj�L6�HlW����w ̴��1�#����ӯվo��V�j28��)�T�x&�� ��vӍ����nߋTFߵy?�Wx�se|�1�2~�W|�N0�X��C�2ƫd��������5����6M�*`����ȨJ��2&*ZL���XO����W���`��~�bcc�5L�,�^c����u��-�o��n�2n�0��}̚6�����9�6�h~���\�'� Q�r�Y~��P:1�c�[���x��D4V�F�:�g液�W� ��~�R��5uZ�s5�2�b�(��Ԭ�%��\V����n�<��Fd0ѹ4�5#^f!���P�D���RMb1����ʘ|'Hj����4�w%��p�4gb�6�6�3�Q+�T0��r=ZJ���~�� �-O7��E-�1B��"�S��P���'�D����֒z�����-�M���ב�Ӿ�����ˍAJ)�Le,XG�B���_��9մ��l��K}�����W3�}ٗ}�N0����m�ߦ�*ALհ}�� ��5fח:D��%�g���Q��ź^K��G`���~��tE�c�^ڭ_���*dl'xAe���o0K0L&6�N8�rl2��`:��He��gX]��YI鳦2�dҵf���at� �9�%�1[��qN�q�U@ļ>�l�7�$H��LB��7�lx���ȡNI1�:�(0&����<�E�q}$Ȉ韃.�T#C����� ���M"Ѷ"� B$C-�7N`xǾk���GX�G���� ���� �c�=��_'TYE�5�`�� v��,W�N$�Q�g��B��s�]����5��Q0\ |����o�A���n�����J�)?�l�WEoV��k�Jư��ۛ^L0;t*cz�_ϖ���u-��9n�̻31� �:⡁� f?S3���~5�q=���ų������� f��9c�F;Y#��!Msl9D�]�dhˍA�9�T1����讈M��r;L�ڵ���AP�k4�w���y��Ϟ�OU6Mi��W�r V����`Y���O�l(�V8�^et&�P*e���q��c%9���N�� '���Mh��|dk���6�YL`%�Mo��urǹ����87�bYA;�?r���� c�f�E`��S�SЪp�P�� �"��y)4�d�V� �j��K�={�[鷨@V8,JYv �ռ�u���U]o��E�I�%�ĵ$���B�;[�ݪ��PFp�3r��HV�j@��}�[��:�֯�p�[fi� q%��|>m���)p �Xֱ������oک!S��c:����z0��U�����z��:� fp��3f/9f0���k f���n��ɩ�j���b�+�\�,����2�6w�"]���֘��:4 ` @���R�f26�u��UƖ�ߜz �o!�k�J3�d�Y�ZL��ʸ3���Ll��0��|���r0��L��Le�:�ꆢ�U-�E�����;����)|5nZb4�I�:���/2'$m�a/��R�Pc�*D])\�$��NU��?C����Ħ�xCQ��h�n�/���r�̔�*����`6s(�-3^�����f���_j?��|.*�ag34�k-��ދ�~�k2�E���o(mK�cV�5�Ql��P������q�j��dd]!*P��x��S��b�'b���`��D\�u���:>��ׄ�5�q�P���`���L�*�7/u�a{|(�z�̦�#�?]�m�_o������X�rV�v�U��|M��C1�Ŵ�u�����?���c�k���iv_�������h�o)l5`i|���A�o�(��3~&^�5g)d1�k�_�j��������R�25̗�Y�V�K�u_#�1p���?^t3�P`�u}��"T3�*���c�>6����,�7�6N2�5�]��^a쒶�Gr�E�C)�M�(e��X�%�� ZB<���/�<�#M� �֢����uL\��� `,�}��9+|o�C�ڥ��=�ߨ��u`b!�3���Y�3�ps�����#`ɞq�)���}Jk�"�; 7�_�z�ڎ�[ ��|،_�<џS��pVD<�%������א�`�)����|��Zk����TC��f)�@xZ��J]�zf���Ɖr��XS�+(����ժ4�g�b>v?e�J[�οOU��W�t��N0���P�l���埻�Ϙ+�����x���fCZ�>7�Q��5f��un�q�&�Snr[���>f��t�.m;S�TYk�d�c�̆�� �P�+bXS&�4�,f8351��0�ufm����g�N�IH} ��zƳLJ'�r`n�����>���^T3B��J/ \+x���h(f�?߬ �����Pw>B]� ���a��r*m���� �;p�vl\���S�.�BH6U�yb�>�1:�M[P&>'$3�N]<��.�)>ZI-��6e�BV����X�����_�lCuܵ��sy�-���0�<��r�� q\c�Dߋ _,Cc�G0�5fc�R�ʘ��'�n"�_Ij�zl�Ԑ����h�)�h�v�>p"�)]k&7e�Q����;�y�·��c�C��@�q�XGf���1c�ǔtơl�?���10{�1���}�l�{�iU����5��3���Z��m{|*fjHb��Q1#��#�g��5��q����YS�,;�ۂe}P���e�39��c�]~��F��,Ԋ2&���iߚ֙q"<�n��0k��Y�5f+�ٚ V� }�D/�Ʃ�[k[?﹑G����Կ�m��Т,��ZۣAAD)2"a�S�DF=�ɕ@H�� ��@����a2T���G��@�#PQeh�͜��0���;@��W�?h���}k%Z�^tY���,U�G�/̬�Y��;#U�P/eh� sf�����1�CSy3�0�[ �j3�,0[A����aL���̂��ƌ�L%[�2�_�i[�w��� 9�_-X��0d�]��:3��K�a�2G�� �!��!��ƟG*#��W��Ǭ�f��c/=c`��c��<�9�3��2� ރ�]ט�z����ǥm�o�?nck���d̀ؾk�skY� �?��^v���1i-���ѬP���<�H�Ha��ㅺ'��10���<�����"�N!R��+#nV� ١��b�"�^�1�+a�{�Ey ��~~����HW�������ղ���Z���V�~���nS�#n��5� !y][�b�H��w��{T�皾�M.��Z��e ���� �?9���~ҍ �^��n�'yB��;R _��B�,��2�B;�k$���&�2�:y����t Sv�ɰ�e��.S�pWX{�8���zp�Le�JS���Z�P��V0�kS�F��o�/V��m��kc��f����~�H0�q*f�_�tr�n�g_~�?H�:f0{���=fҦj�X<��}n*cK1C1Ƥ��q�n�61�����8fmH3Cs*h��an�v��̞�OSF�zvֵb���Y!E�zfA���˲��,��}��˪�G�zL_tܤոK�&�.S<1���.�c,Ie��uK�4ST�b �j�T��~�P�5��ʸz�3B�b^n��uEQ�u�#��L�!�w��8�[�{��c���b���d��F �MS(�f��HͤU�+�g�Βkɢ�J �@&�5�*��qz낧T���?�^��c��<�������w�!/R�?]�̹���1K����h. Ơ=OeP�����z&19��JĪ\]��G���Ġ�� ��:ޘ�+9�#��}��s_D���)���K� R���!.`U�,yƦ�K�ɏ3Բ������BG��`���sf��o��-��+�d�YQmV�쯽��3�̞��gNV��4խ�T�!�P��q;���8UM�*�5�Hm4훩e#)����0�@��g��S�%qM_���A��0F�Fy��X��s�d��;�f�F���UV�mT˄4K��,&��f*2�~�3��wG��e����5f7꼱�+�`&mq�=�i����K�)��f���)�����E�H�B��F��0���4�t\!�ټ)p�-������K.�,�$WNh}s0� ̈G좢Bn����m�q�%�R8S�ma�)m�C�J�&B��"N7F�\\'�l�K�Ĩ�-k���k�����k3� Ąbrր4�|V!��ڳ_2}��M<����F�jl@ݡo�����+|̆P�<Io�K�_��̾ ��� �Շqc`��_}���v̮���Gv�Y{��<�(�Z�Sӽ�r`l�'c����Z��R����y*��PQ��ZJ� ,f p����P���Ó�ZJ�W0SH��2�d��zЁ~U� D�����z����Yi$�Np� }�1��\�ܚh��L�T0�j� �y�%<���Y��V�������]=�)�j|,��ؔX��M�5���7�9��V��_��+���Ii�6�K�-���-��ON#�:c�J�^{���f�T)|�=�������f����2R�����w l�{�a�`�ʉ���� h�2\�v�35Y�$�4L0[i�e�C�.�1���MsR���T��3_J����jW? e��Z�I���z�z:��������*� f��YØ}ժCB�a�,�솯%�韡Xh��.�.��W�10{�1�ه>�]`fS�>�2u��e�U^W�l�������T���ب���7� �}�ˀ�e�ܢ�����X��i��,[���|����-����0q��?.ߒ����Y1[�9q�_(%�/!`��8I՟+3����� Ň�I���ؖ4��)|1�Q\����i���ޘ����<�I�Go:"zgVJ�<�T/�c���uZɞщ2�� �ɍ/�c(�99�2���o�0��yi�80�X�P.H��l���!��Α�-��揜�`*a E,(��� �`��Q���0N���C��%�@&�nI�������*g+�k&7���������2�mu,�_�,3,~SE�m��,'ѧ��Km��&����:���@)��qIJc�3�l�I�b�f�)�W�,����M���K��R����Y���1KZ�6���3��ٓ��>�����t c�Oe4Bc���T9i�M���~Ҧ���ղ�ۄ��SȊx bx�l�%�Y fO���9��%�%�&Lӳ��Y9���Y�6��� e.N��PVo��C�逹uT�ɠ�i�:i9Tl��>�i��K{�6s[S3cjc�%�+b%K�z��<� I�u��^$��S9�)�! � ��{5��j��y�;Hͥ9�C�J'���vl�=�5�|sMN�i�u�O&��RE,b(�-l�6�v�/�z�D��X�ՠ��a��P�M����g43���V�AW�Y[�̀lMH���� 3��Z�6�q�4�f>��~����;$��-���u��4�Ha�v���Iu6P� h����� fU1� 6���O{<V8c�]n7\[��0�{�7�p�n��3fO8f0{���?��ք��Ct]b����`l�|��sSu�lHӘ�f�#�T�])�%�Y_o�j��f fO����s��E��@'���\h_ݤ.�m0����"�P�-�+}��I�ڮe�T�昋Xa�ʪ�E����->J�$�_���=.��0��:�-��� |�uFu���KC�2/���6���P���8hO6pA6l�\;@URcP���X1A�=���K_�㹑��?/A[��wlX����^=�G ��G�܍6��z�v;�{�w�_L�{��æ��ʟM�JA��a�P�2�rl�2F�.�H��M� bi����]��!���K���O�3�d��!�bm��*��e����8������W���|RmO}����>7_���X�Zo���3�5�'��]5��Haܞ %�M�����g�g���ï];,� f�r���b����K�=d1tn���.��g�.���3�]}��m0k�z4յF��������j�\@c%�ϸe~oce�P�ud�ʨ��X�b�p�il�*����b7<�V�j���9�,L��G|G�����@V(C�c.�wf��T+��)�S����(x��"k�0arL9���F�]�'�\���| �ڷm_��q�$�X�S������ԇk�B�4I��p�d@Zqի�c�Ms�d`*0�a��xc�_�`G���C�[A�^�!��M���<n�YD'َ���W+�G�*�:ɲ��p��a� fuzt ���@m�?��7���`�O��� Sf�PJ�5�c��������-V�}܊���- aR.���� Dk���A�����W�ջ`;��qӲ3���2�z�Z'�J�.��oO~�m�뮙mG? ez��8�� ׄ3�3���bR������5di*c�3�*V��l�9·��i�7[jd�L��� �ۂ���,y>70��[��>f�>fW��?��)�E�q�LPc]�LALA-�����!L�G��;�@���Jm�M�O���W]&k��� �2�&T���E�S�,�g���=#��V`���b�vJ�Jd⌕�D1� !�c�`�Iu1�4c0�Nא�2@0�X���m�U�5N[�N:֛q�ݓG?�>�������hD�2�� � �ES����2�QS� d��U1*ȩ ���e%�“h�{���W�|T�q`[�+� �a�QB�*�����F����U?bB.�K e��Y�o����nYZ"ʉChc<��f�Г��,��c�����VA����1�,z�Aܨ��EV$F����kHeLg#P��If%}<֘ey��NT1�J��L&��+��u�u��]��thk�\ҧ�4��%�ңK31�(�"�]����ԾE3����A�]?|���뭫b�U�̊��F+(�>f�<�mg�.���f�}�cG��m�·��[�^ _��� .��8���i9mk��h�04�/�t�^�UV��u���=�a�\��8b��-f��&-�~ff���O�3f��H�9�ɍ։�Y� ��� W�F��}C ���T0�NԳ8)3������BU]��&��'���T�u@_vǝ�ظW���H�s��@e#�|3e��:� �4���Fe��g:� ��g��A�8�j,i�E��|.�Z��c��ֿ�7 `�q��vU٘K�`�g��#�1Vj�%�v�\���ߵ��]ZЖ� �?��&s8#� ���:��.�u��@ɾi*f�n4��Ln�I>ᵗ�w?`}�g�)�Z[/�?��mr��G���[@+���2Q��Y9UNJ�)�9�il���A�D���H1�[nް3ߵ����}�����3�=�я��ս@ڌ�E�%���ؿ�B��2w���N��U��6�����O]-��c[���C�`)�IZ�*k����a7��(C=s:5BP�~�1�ѕcPVh+�g3]�bb�vW(e��u�������_���%�;h��A"����[��q�ȗ%�X��حI'��(��V��� ��{�5pC,h�1z�Gjl���%�G(�C{8K,�"�����/��쑪H�꩖�ƅ̩S�*f9��JF�a�^� ����{�];�tV�Ņ���R�0��fYz"oV�s�I&�l�L�>l�#����� �0�#YO�2'!��b�bA��}��m��?���X�g|��[��rVϑ���f���)�C�[`��k�1���dS��f���YU1���Qo��ܺ߬Jۏ[���v�;��e��1�2��;��=�쑏|��Y[��5��= ���Zw���JU?���q)�5��<�Q A�>m2��W�~љm h�+}�f[V������T7<�"- (�������G���Ye�TӰ�K�1N_�7u�e�삽T�ĥ��s��f�7*���E�`�U�ħ-�\ ��5f�/3@�J��#���� �=�� ��T��ڬ�4*&5��J��RN^��6E�paS�r��r��x�H6&�%UU�µ��Y-&�E!8Z���Z�覠�����Z`���+P�����g� T�C([dT��"�q���ua0�L�,�x.�n˾� -��zU�T1#� �⑀�$&���/����!�7�T�XK�B�@[�|�)'��7v�^��S�ڷ<��C�Yl\)ӱbR��H��Ǻ k�2�pF(#�E\\k\cSS��Pk����vU1{�ۅ����c����bv���:c`��c�G<�c`�tj�Ƹ��� � dĕq�]~[�����\f(��O]�I�/k�pS�M��c�� �FɎ��q�ʸ&�e�f]��zf��2j"�.�ӔŨ�H�A�7�Iᛘ,e@�2��*��e���Ccjn���h7�2�h'�����h��ALD�#P���|�l�ߦ�k��ᦲ�>�r�Z�~��_�3��X��#NP0��~�@�8;F���gG�zw�t��5f�,pM�ָ��e\+f���1_O�#��V_�.� L��UI�S�QW�{����b�\�Z����}Śk�4�4� t�!Fq�֔UuMS�T1۔c�YQ�|�2�Dם�����1}�Ù�L��\7{�ۅ����J�P�3^z�{Θ+��ٕ��o{ f�@^��������kZ!��uM�.[��Q6I[�uf;!K�+ ��|��l�V�ޙb��s������c���j��J�r���0��a�� .��E_Ȓ+m��yQ>�a<�6�j�L��:I����sy ����˶Heč�����A<� ��+)�i"S����KT�������^g2�������~ޣ}�}����~�#��P��k�.�2� O/�{�ݿ�2uU$�4���3��|�$ZsRߞ v��U0+9Qƍ�r��e3�����5&̃C-�,E�v|r~�aMn�Jo��b��~������J�{_G6s�g-k�8���."��e��E��z+�LZS 7���ʘ��K#@�f�!�[�k�@�_�������]���dP�T�_T��z���3���-oQ0�j�1)��gT�����qݟ�mi���a��V����#F!�Ho�ѝ26a-�ĸ#���5���TEm�L0{h7�_.��1��i�Ҧ�aU1[��g��G5-��7�!B݈x��q#i�(d��e@�R���YF�k��7���38���_։���(�R0�q��!�PKr��= ��~��[Xal��#5��!��_���W#�r��%���3���?x��|��t��סn��ơ�Y��+�n�q�+��/[���]=I_ xS0s�� M��db�t��a�ZrW��A��ڱVM�*W~�'�Ih������ϛۏn�*`�ue���-���km���E�k��|c������|z�/ʑI�# & e3�b�����<Ցc�ר�x�O�,f��~���̬����Z�\�|���?c`v�c�7��� f�uc���<��#��k�6m5m��C���2��C��f�/�[L��Ҧ��s�q�U��RwB�����f�!{/=hփc�-��q�J`k��s�1�����?2���._e>@�>�T�5�����x�2��m�ŬᲨ`�״�� vnk@W�ά�cbV4M@�.���;�&:�w��������x���6�al 0��]�5�14�kZ�Q2M;Ό��i�E�L���P1�}u�'�ufr�._��LЮ�%7����Q�j�q�^�E��5z��7�����{����Ơm\m��<�{� � ej����k��>?���يF ��Ф��5n�c���Ym�T���]p��.[0s2����������{3�]y�fTk xMs̮A@#��Y�: 4�z��+#!M�Q`ƴO� MG���D��^c��D��� f�$�<m���}�o�GX/mo�;&J� �Q*8Q9��tbh���k�^�֍�K��^���T�(�a�q�I���?>��q)�y�����7�c��+Q�����=IMAb����g+}m~"c�s��h�2)�_���͐I� 3!5��7gڣ��:��R;mS�%]�����6|���)[8�4��+6��n+�+���A-��KE��зY�z�?��+9iJڣd bR�1���o����!m��� �IQ� ��1h1��{�X��{����A+|q�Xװ§��;�y���LZR��Le�p�P6�>g���3�FA,���ފ�^�3{����[뒽���j�e��a���_��3`���=����7��V�H��d��[=B Sŧ�z21!���������7�W�}r������7+b^ٶ��c)��)o��?��{�x/B։� -a�2J�_0�P\R-�ڶ|#~A�D��Xf�ͤN��fmÂ9�ԛ�i��ZR���4�_3C*��� f<�ĕQ�Rτ2�?^�����5�~ڦ1���`���'��Ƶ��l^�@��~o1���5ޞ��k��ķ?���0�����r\�ĊƤoF%��-9�H^��Y�V4��7�deя*�1�GQ|�#��Q@b\�>��ٶt~��4�=��#.��V�ּe���P��SMc=@���;�[��w�5f9�5ڒXfҞ�Z�q_<+���G(g�{�X��*e��sg�@gE\���L�,�1�ۇ@V����6��f�%۟Z�����FB< f�����3��x�cve���7�P�p��55���CxST5I�55�`{����vQ�<��IQ�w������.�[�o�8.�� ���bF C�m!2Q5+RW0\�+?�N0@�5悊�L_����q�Աo��������v�1�H fa�a��շ���Q��z�,3�Q�4mQV��W��ݑk��vW+����ɛ�~����G�|[(c `�G]ˤ�i��(`�6�pz�&ɾ&�/�0Se,��E�Ai���?�<�8��11>�?��G��zO\�ד5����H�T��I��2���p����_�����I���zC5k�A��bzt ���T��=�W{|ub�X�4Ss��WF(e��>����}ord�܄/�x��gA�of��~����+� ���E�`4�@����3fw=f0��}*�B\$��SP`�EAט�ϔ�J�)x�)��y��AS��x���9�fm��a��hSճ�}���'��x���)�E���u�,��by���F �P�t����!bOf+�TF5i���zvg��II�&�5�?�S8+�4�9����NL�)BI�b��D-[���Mǣ#'���Ⳙ�l㟿˝�X�>�ֵi<��I��5����:�=_�jd�$5sT'�����O��w�C|#l�Y&���c T���ށ�yG�L`Lb�1i��O�g*�7���U9�Hܓ�eV��u�Y��o�3k�`JS!��n����_��<�qPS[�6��hB���Q0S�m�L�#[_�?�\i*���QAK֚�յQ!�T�V��:��n�����S���7`�g�@���:��?��3fw>f0����9M�<�Ŵ��ښN�; 'ue̠���� n�g� ����+�j�N�zr��՛��kŘ�~� �(*��<��퀽Ž��nփI�[�O�7��o�[����dճ)��۵�,S�����_��IF�:!�4t&qea��~B�'��ĕQב�1 g�fi)���/I��D�-[7c.��V����^q#�����+�[� ��'p��w���e܈���M�I�ڮ�]F�O��'�y�s�]h*�t%dJ: ����~��>g����q�u��Xy�^��r�}B3�%\���ЖN�`1�/�,#}qɺ%���}��Dh���L�q���7�'[�_��:��T�|��7��e�W�_�Xc�5e)����n��!��� ���`�x��8j�[�@ws��z��qfv���f��,K[��?�F0��O������y�{����o:����<BA,ڢ_�=��f��a��Ph__�_�,7R�U�B��A���6GY?6e��=��. E@6)e)�$�k̔Kd�~�_ �5���:�0�LRc�郏�\d Ō��md)7 *Ec%��W�{U���&��i=�`�]S�'������s�MUή���Ӈ�m Y����{��k7��nk:|�-�Q���.˚��=������_z��˧��}�K�J�EꢒuI{_"�Q��QV(�r����dh�*f���9�6���n�Y_�$�]t��2� �d���,��Nb�`Vd]X.�9�X��^����_�ο���a5S�C�,?Ĵ�wXS�Ƕm�Y���0�ܘYRK�~)���搵fs�,��6�iLU��y��T����8��Q_�~��c�y����3���wo�Yíq�z��QIR��5��_�Ͷ�y�^�sѶH�A�15Q��N����`Hk[ܽ/wr}p�Z�ue�Ax��N�#s�g#�u�k#�-g��.��P���H��R$=�,�(�_��E��8'F�Nǜ����.���1WF|I�� �lH��]k}�l&q�>�ی��V�^�ŵ��]O|���N���ҁR��ik��߹ݠF��,��Xr�Ӎ��{�K �ޤ�Ԩ~�Z���ç��TZ� T��&�ѕ1+}Pˑ@�ܱ�D���w3���t��G� �k�Y=Yn��E{�&3P�|�� ��"b�?6�hR'!9�j����7c&��/�)0&�5�4�b�X�[0�b6��� �������%��3�>Lel��2-�k�LmTE� i�4�Xo`��S]̮9cv��=fW�W�����6)�q�:�����MV�ixڬ�f���*5$I狗�-���0���<��%�5��֗;z/���P�a��te��n1� qSީeZ���( �٥�\�d?L:���7���(�DӴ�ފ(f4������dЌS��Ӹ����%�;m��6�j�މ�"s��5�*!Cz$����j�:��x#Ur���:�Qq���U�*U-r��k �O��a븲�I�c�|Ø!�+���7�C9s� �-uH�k����� .ܙ�A��'x3�Y6��5��ڪY�B�Qإk̒tłx��b_���Ü�F�+nP�2&;��%L¶��Q�ȢL�I�x�C�h}DЬ�z�JZ�1k�x���g�IҵD'u��)Ó��^�V��%k��\�'m9�u��0���z(g���깱��i� e�@ְϷl�Ynº�S۹qG;�j�BW����c��-��(f�����v��[3���e/�f�43uQ� 夏�fc�j*N|�`��"���3�R5.N#㵙]�r@nݪ�'Fy_5mq�>2C���X��Ϝ<'Y������>�?��9���8,�Bw��o�dꬫ�G��L�-b"B�4�X�84��p���!�0 LS%e��j���TF�8XS-�z���m�BW��[�r<'���h�9�B���2! � T�N�_�5����*s�l�K��g (�����u�#�<�+��<��d��Y���gYK6$�v�Q�.oB����5��e�t�X��(ߴ�l�r�aK�Yty`�_/[����0Q�� ����]?�}���}���%JX�5�Y���;.6����"�0�=�P�;�q�@�z�f9����0�e�� ڸ���[�������0���W*�ugl�[3���%/0k+X�r�:ǰo�G�(K_�����F���>��Q��������1||^V0k�}jZ�*g%���'��Eݒul03�������ٝ�r[#���e�^V�r�3i�I�S�IH�@�[80�R����N�pF(�b6a�r 'f�q���]b{����E9yl��/U̒���D.�����_��y���4i���x�v��TQkCh�o�W1���R��gPH-����F0�Ø�(�wG�;"Q̊u��`�?����SA�`lq����� Jr�f��w �L�<ٗ�vLwt�K\���ٜ(%v珺�oߺ3����ƌuQĺ$�� �Ƶ�g�X��yg�I��&_R[����H��ƖK#�əe�֛ �m_�r�?�ٿ3y����Ig�2��/�]J5,�~��}���r�`���8�6�(`��.����j�z ���v�+R�L;̅kb�e��2�j\9�.� v�j�)q��(k� fw��m��c�X�&#x����(̢ƅ��R�T�4#����\�=`���Rz4N�1�)]܄�e��L����]~b��d�2���ή���C֘5H�1�n�����l�)j+��(���3UeqI4�t7(�"}P��ͧv�5V�-�*���}5�/K9�n["z+��� ���."^;Wx��E�cT��$E}�Z<\�䞣�5�����?J6�ă�p8��Pˤ�ZWW_d��Z��?��Z�]���`&+D��I&ȃX��lӧlטu! ��4�QZ,��(��tL=�j�w)�&ov���?��ȍf�5�2����n0+�v�Ox����\�ԣ���7�����Ne$�����Ȣ��2���]gH�F�b�?�Y�T1��� aQV�,3���'nH�>�Z��̾����z+�=_^��g���}���t�`���p��8���cǯgZ��S��d@�ܗ^+�HU?=�M�T��Y�>�2��ښ~���5�����ư> fw�ʭ��h]iھ�gi���Q���mȊ2���έ�VY�w åz��$ȼ�h�6�O���g�zܠҨ�R�z�%b���0�1���c$C��hh/l��E��<�����]�����"�t~ MEדq�S��C�^���K�˽���� !c�Z��d��랂L�z�b.�bq�+�ŷ���,���s:�x�<��ݼp�^ˁ�|7�H=IW��0�>|�r� [�}œg�g`ƺ����敪�9�� l��3M�>��,Ե��|i�"n8��Z/�����cr0C_��50��/F{��H��4���7��Y�/j^f2�;~��¿��ߜ��X��M>r�Em��������K�XWVmu9�i9MhW�_g�)�� U��~Rc��n�}Vִ���������<�/��R���хú�:K�Ǹ��k��W��}��1�2����f�lׇ��_�r hl��pX�ޗ�Q����]�$$���Z�u���Z��]��)`*�I���WnA�ÈP��(89�hg��tE]o����Eg�S ���`B��tQ�NL`��SI�͵gfS��.5��r�Y�ŕQZ�k�"�5f�z��Zq����^��X"�� ����Z\1~�:��xq�,7�@HUJ�&�?�D��G[UP� Q�M ��e2@��M@��{�g�����|��Zw^��c� ]�3@'�i���UO��`� ��/$��k�R��m`j��ۨs�|W�1A���i~&ڣ?���n�l2@-��l�6��.����c���(0��ye�*fo4�d��f���_�h�CL=����G^OetIe�#��mP c�b�D����&M�(f�M��. AL�bMs���y=� ��f���nEWF:&1�Ѵ-^���s���1��w�`v�[�:��.�(����ue�M֍)�����Zgja��8���;���e=?c^��b^td�S ?W];���v�q�V~�z4����x�/���V�6U̠���UP�Yf���w@�%����u��}�0�<�8̌˼����������������AY7��[Y������:���<δˮ���j%�G�<�e����T8�V������r��F�T��C������nz�c�6T�t�Y�hD-`���{��m��f_/���]� ��Q�<���<��јe���};_kN���2PI3)�c���Tp}d������@��Z&��G;�s�j�� T/D���D��aL0sp��dR� �Y& ��T�N� �pUt����9K�,@�[N����@�2M�֭>����+66��&ҫ*Yf�kz,�]6���dpa�ǣ]g����'���lùMr|�}$��0{���̊�_���]������ԭٗ]��``���f��?��U0;Z5��6�l�}ѕ��Ը���Roj�\�Yf�1e�2:"�J�9�U�k�1(�i�>�c���ÈR�2Q�|���a�{m���!_l��%�e�!2��#2�#+#6��ݛ�#�DA�B1�]��/3��L�8syh��)2������D1�[ӛ��l3�T�ΡZ�O+!���̅?`o!j��{s��T���2w�*lf�f(�����]�+*�P�v��+L8�ǐ��e�.�qq���,�*� �M��&w���v��! ��\��M����{G�L�"� ��l f��2ɇ�g��6�l�˱a�Pf&�z�0���=�쏠��d0�pN���|[#c��jKoS>TkhA�m�w�D�/��n{7�l>�)�u ���H}?4;#3�엄r��a�2ZfP�4��3�yi���S��_O��������Ϭ������QtQ�<�>���g�g0{�K_Z'�XO��;<m>�gc�i�d��)�q�4&i�t��+����I[)[3N������`���߉FC��a�MQG�zW�lM��Ӵ�ݛ�Q]?L�_�?d�1��Wa#qhpe�"]>�i^Z l����9'_<āk�я��1/{�3P��v�w�8��)�#�"����d|^����� #t�̲HCBw�x/�B��\��f��C|0I:���5��ŗi�A�C�rs J ���E$L)��sG�G 6�Cb�̲>��(n��������f����W�`����~ ���̏�ع�c�Cl̊'��z�,�5$+c�[�H�������a�WF2e6P���*~��f����>���b�m��fP�|��m6�p-nM0k�xN�S(��7�����8��3�Xx����� dR�3[�m��(�5�m`c_�enט������M��ǡ��������_�~�ls�`vz�`���f/~�̌1RZO�N��6��&�0����=��l��.ո7¾��1�f�>�U]L�����,�Q���<�D+ f/�\��j&|Ҁ�b/�������H�G�� z<�<�d;�,��A𪁭X4��4�<s�=�_3D�p�k��Z�����'�Y@& �fV�6r�6(r%�p"�ͦ4�!`�P>/�bR�BX���R(��_�� �$e�e � SW�{!������[8�',�JK?���M%�l0�pg�_Za!�U���,��#3M�c[�H�npA�Z�dC3�?ڲ���:��Z�R�b�~������/V��;E�6_��n��n6R5�ᬄ.n�k��ʠ�A9� h�/|�2�53i7��p�qf8g��6ύK�@f�y &0V�0�ŬW�Z�LU�w0�����w�m�O�>F���a�C^�~䌓l�8�ǩ���������Z?0欳e���נ !�sQua;OРm�(�GX���o��9]2�Z��Y�._�N�j�Wy�ζM��`��ϱA���U%�8Eʄ7����9�A��~u_��Ro�-���J��)�X�c�`��6�b2j��j���ac��.��r���M��m[�b�M>TI��˞�T��l0�x��ަIˢ}�dV��Rg@\�#�U�6����\��G�li�������I�,�S�M��u�E�"�H=ak[Fn�te�A����Ɔ@��eۆq����r��og�ǡv� k]�)�_�mn��o��f�^;5���f�|�#�ǘuHk]�l_ d.��2}N� ���N�f}�ehM"U�&8RA;=#@;<AH�����bl̢��3�����l?z���?�<��;��;�\�L�Wf�sc�D T�붬2y�^��!�a�T�\C�f:�N����H�.��*����YN�+C���i'9&c҄e�KU�H×��S[�xO)�9�b�u�l�m��<#m�K�FQ�$�$��f��]����u�zF{kӀ�˞�d��7��fmԓ��:���Y/4#M���sŴmvs�gf��y��b�w�$&.kf6�!O�L1w����i�5�e��~�;&���>x� �,�Y8#�S�O�.��BYhYƸ�R�I��D:#O�W�PQ/� =�0&�(� f���9�O��\�|��2�P��0J�����/�v��>����H\��V fhW�Z���te�m d��7�%�G�9���F5���(���,\ ������L�H�=AMl���^-��?�Vϛ"n�A�p��w����l?~�����������]3�e=Փ�Ԏg\�M8���,*,�.~��'�u�sQ�˴�t5�m}_ 2�6� �`IwC��!u�y�/^ϲ�%0{��g�h��+pюiC�l[�dU�<W\���F��Yu2,N������$�ڕ��2�,��hJ�~�w��[�Z1[����7=鉽^�e6��_�*Wl��\h���jC��,�K�2�-�m�)5�3cR�c�Kҗl���V�wuS5�&#�c�a`�s���i?cVt�6U�|��l�S�\�%��L0�4���zV�D�Qά�]�U]Cb=����`�.���3�5�>ۜ\W�.6` �Mw����>0�&��t�}��1f�ed,R�7��U��!7�^����m��@��?n�1���?�?�6w3v�ӕ�M/�O^00{�y���שf}:y^���1�.�ZvM�@t�C6�^�ӊ�c��h�x�5m3Jl? �)c�O`�y ��U`v�\�g�ƌ��[#v�$!��ع~aB ��*���δ%��D�1rl1G�S}t1s�!e�����1S��uZ��bcSĔɭc3Q�鴕�=� �r>@(Ǐ`�OM�#"a�M������+��&ן�'>�#��U�n_,��0�r�-��m�-��K�}8��W̳�� a�����د�9fe,*���,7�z�w�-��o��b Y_o���3�b�r�T�:�lmci(e�l4�ǚ�F���C+�ͤ^�����6j���ֶ�Ͻ�b3k���e�H��ݚ��e�鋐�C�ǟg0{۷}�%0��fl�ݾk��l'����E+��5gժ�ҶO�=�g�l\+X-$b_�Mc�v'��4�쁯��F��T���#n�1q]��O<����qz�P2d�Xᮈr�31d�P�rqKg���Q��R�.Jyڰ����6�m�gN� f�\��X�ߘ�q4��#'������|�O�\!gr�ܤ����7e�5��d[����>�c�#�Y&aCƏ5�L��-,�(�Rg.R�^�P��U��6��!���ul��g&e2k9��=o 9 f����!�?��`G��>��c��W���C���b��z�oY���d��eY6��P͚$ �5��ͨ�Q9;�P>̲�K��UWx��&��K��X�_E��.��^���7�笌�zֳ�J�!�Z���yKR�5��`�����j5���������+�����˯;`�V���g{��GqQT����j+,#��*˕�_��JG��$i�4!�f!`3B[��:��֕1���nG�[ǐ[�S�YwN���n��*a�嫦�pԽs:��?�.?�)�P}Yn�Qe����6M�g�Yh�~*$ه�3�6>��,��tr��RU�M4$�T�哮�Y��iz�/�d�֝cZ�l��U0��tY�EÖ��n����o�����u�`�l��1��Xwe$�qϲ��1=�.��o���N-��2֩��}Q��!�Qƚ�Xǹ��L�J�:��p{����-��P��"��ge�ϗ��.�>f7�g0{�3��?vh6E�o�Ġ�x�fP��ރ��_��}?�l��Ě����wWd3�f��z<��Þ�gDlڹǙ�r�m�/�!mÈ�^��p�l�?f�����V�L�x�܂fBg˪u�P�Bo/� �G,)l/��z(RR`�uMs�� [X8�,��;Rԛi�}�0Q�<���y]g2�S��sΚ(��Q�b?6I�/s���fc.�Q�t�nݼ٤\l3m!��j�6nb"�f��fܣnc�z����h�&"���6��{������C{����Z�w��6]@�r�(��)�Yaj��^,VQ�(�-<'����,maѾ嬄w˷A�B�]�f�(�e?.�y����n�^�ټ�m�t�}b�&�b��H ��jY�/&�A5+�1�r�-ę��1g��YcV��Y�� ���ۇ���3E4�7uqŕ��.�]w����Oz��is �䂋�{��x �fZzӲ�+<0�`(��K�h��`�v̭�^e͠z<��Þ�yS�*�+S�Q)Bak�C�U<Y���?{ң@�#�L�|�D���5�E������r�'�Ynl���$���_ڛ��}��u�"۔�G@ԑ�J�fݧK�&��><�e�bA��L"�\�p���&�p�)�ن&��W�rdHeL��,��:a����$s�ԇ�����Ћ����; (HJ1�U^�,\����������tM�jY t�Z�:��h��dž|��r"��W�`#P�V��;Hť,��< ��g�6�ڞ��w��?��_���"�/���a�%��#��<�.cʼ��zci�Xk���yvе�c����:��e{�L�#���sH\�7˵�4�4&5Ѿ��5��4ܞy������c��zn�g'fۭ�3�a�t�1@��<��S��ԃ]tO���eN7?�.33�6ǫ�PwDU�d�1^�`WŦ�%�i���=��,c l��J���m�6-�<u��Kl�AV)����jb���Y�����0v���-ua2a��4�BhP(S]�� �Lk1*�R�#Pܼj�e��^*f��#��i�u��>Vo�y��F %m���&����̃*��p���0:R(&�k��y2hv(���:��x4��~b/�ۍ���l~G�]T�g��� f;�(C��~z�O��N�-4^l��I����Tc�X\*H�����v���ㅕ�j�e��L�1��'�R�Ԡ&�������;�ͯ�f�o�cʘ��R�؟e�y�m;��+6@&�zN����] [vi����d��&K#�uM��38�Y�=���<��������ݸc{̞p�~傁�c�3�=�)O�j�"��z�j`l�L�8$Y>/��573�:֍�'��2�!c;�=���S�=n�(��m2@]y��bH�B�@��A��<�uq��G� Y��wأ,:5 `�8V��l�q�渑 yW�"�p�]]��ut{u�K���N�1ُ��زuO�w�)�'7��.�BJ�{`�G5��^�`��C���"�[a�i�I�DU�$�}��_�7F� ��W��T���+��,��H\�n����LOu[pޭ�>�?�͛t3�=�/}��!�G��cnPؼ�.���G9p��9x�����'�Y����j��7�o�pبDY����������1�ަڎz�/�,�z�NV�����5��DԺ@Y�e>�'ݮ��W���$��M��=�NU�+#�|^�7{]�J 5�Q5�:W��ǩn8�--�%�L�뮍��57J�-lg�J��v���mc��AO@7�ޞ�=����K�������{0k գ]a[^3�l�*�p��1�ֶ��a����{.�;6ـٓ�������9��^��F��=^�!p�8�0��<S�ˉ�H~�O1�o��TR�I�"�X��6�ƣt�( ��*X$�qB �a1��я� H\�b炧�վ�0:�g��a�qQTд��إ�Q����p����,���J���]��T)�i��y����y�rç�Ù�Y����cy���_6���/�BJ4=�m�\]�k5@�ita<DIS{�'�e� � SIs.�]3�d�� K �myMQ�����u}��1�yT�&{ڼ{���<�ܮ�p��ټjX��ɹUȚ��H��J�B�h����@3�lՕq=�L��{���4� Z��q[���k�U�۷[l���y綱�阮�����P��x�y�7|�7\3-�p�r���VZ���Bm��U�1�XfW4��T9�ڥ��_�^��x̞0�:��eY�@Ӳ2��m�Md�Ⱦ�o{�ID2����|�P*� ;&7�E�ƺ��� ��71��T�|?h�KbH���z::�;c������n3��/���p��5U�4�9FŪ=#�!E�J��lX3f��7��Z��m�@�t�J_����_*�9>.��ZO�%��#ݧ���L�4��5���H��iљm����{�`չ/�� K o���*6ܼǍ�xY�����E*���zŬ?��o������漐uq�d�;� 6z +�3Ӭ�G�26M��*ָ4�j�s�u���߃�¦�n��O�d��?��btL��.��f��l�y��1{�y����?�8ff�����n�O�io�d$*mײg�Z�e��(���)|�b�r��-��},���]3#�MZĐؘ��<m�m�3��d;0�����8zݨ����FB���I�JV����b�ڛ�ȼue�ͧ�b��EV*���0�6hP�"~�wU&�������bC�?̒�V\n���{���<Iy�p!Q�,D��_t� *^����ҽ��C�~{�����J�I�7�u�+�xppO�O@dY"0w}���f.�?� e�Ҟm���Q>�L�a����7Qx��:S�o|B��ڌ;ʲ"�K�od��`k���� ��&�E��hf��9��k�7�e�ͽ�ƚ�*j� �9��-sFdb̳<M��Z�#��X�(4U���A����uĖ�Q{��q���73�lxG���"�\$�lk���a�u���a��^�^��Tm\�2�?�1s ������}ג{g{��Ր�g������a�5�иZG�aP�2[�����uU���-� v�Orɲ躟�.����8�P�@+�e�=`#���R���M�P8K�F��Y�p���=�jv�R���%ٱ���3ᜎyZ���yw����_�U� t�1 ȹ��! *���=�T�R�I@Rg�%�:��(c���K�nZw9'� ��~�2��M�4�|���T.���%�=��o n(ٛf0 �1�*�ICQ�E�x4�����'�fcs��w�h�V���cb3!.d�2�����L�����3�3*���f!k�v���ƀbV��06����/ۑ�������}�.���=�w.�=�<�����,ܤ� ��{�vML`Dښ���c��m�E�z��y��zn�w �[��,K0�~أ�a����Ue^O�K�E�4���1��\bGxs��I����1����p�,�'��X�3NfN��6?KG�1� i!�f�PF[��<�Q��P)A��6�Oj�Ϸn�!.����r�� ��W�����_�f���+T��Ưc�]C�#ΌDzl(����"F����-Ǵ�V.3�m�S�~T%��ǣs�&�ɹz���xċ��JLl_�\�GS��S2��W��9c}��h�l��[�[&@&��t߲#�˖��ӝ�eI�!V(f��5�f���L�ZW��2��7�����̎��*&���s�fC>�Y����V�b_m`����!��q��Sd�D} ��Ⱥ�r��\a˾�X�c߇C\k0�n�#�ʘ+����)6�Y��^���7 pE�j+ 'oX�*~���N?L*f|�f���O�k�ϧ��Kʘx�ntvR0su�By��_� 8}�������Bt8��La6S�B�L�|�ŮO�vH�D��5� �CR�F��Q>�3��Kb��9Ϝ�f��]Β�ڌl0J&�L��v�Q�@�_r=7��8!�W��(��Z'gbS���3;�{�M Մ���,�@8V��|~�[���C(��J-��9>�2M>b�yҾ�&S�� ��O/������0*�O�*d�/����`�_�*J�ƙ��e�*4����լ�,ּr�k��̎�w�q�b�,7��r.!�7��Cbˊ���vӳ��9�0J��bE5�myn�68+��Wf�a�h�;���ύL���;��=�/X���g0��kV\���ڱ�}lC�V��iM���Vkq��n�4?�y�\Ǹ1&�]��%z�#Ƹ���2���f�u��75� ���.$��2���'S�l+*YЕQ��E�Ȃ����0�c�����i���`]���&��>���jV⭤$U�~&�����*���J�a�U!^�f1!-�� Da|F�&U�h&������=�`�ݪ�u�o����%| �_�Ѧ��Ǔqcs�����u�rcG[���VU5��G�]�"č�.v�q�5�Ṵj���۾k~�,���O���(gT���Wc�5��-��2��?�@�2��>Hg��N癩��hu���cϚx3�YB�%�R9�~`V�ˣ����t�'�?�``���f�y�czPhb���8 ��5P��$�i[�&��y]ʦ���� Q�ڶ�7k��1n�{/@@C��0�Cu��R,�����8�xCx��d�^M��<��͑�2F4ĉzk���#�����5������I�f�/{����E-I5E�)MUI�)�5-|�$��B�aj}�?��y��5��\�/sf�A�1�`��\�ks� �]�d��v�%�s������ԍ��*��\{�:�'9]�ص��C��f������6�����I]�� ,Lo��Ж���X3ՓC��Z�D�L[�buQ�4�L�����Y� $E�2��qe��UЦI?��GmL����U��"�N&O5�1�x�`ff��66Ą�e�'M���$U0Ɩэ��;{W�*+cg&P&e������Y@!C�%0������dv�`��������R�it���~����G5p<�8V�W]��,ҵq��վ#渴�#@uu9�����8D�"�X~��q��yE�,\�Oq-r��d��q���E�������&�uT�B��mc�k2g���v.v�:@�S!㭥[�i �X�rF��~��?�ݍ����n��dRF�ѩ*�Uh;s��g��n^�u̩ٜԅ1�_2��lU(/F��}�|$bT�k@�YG��N�)��0ǩ�S@3I�WGf~�]�C]w.�c�r�0�ƍ)��<�s)6�?9x�j�ֱOS�z(Eę�ClJ}���`vGy�a�K��v����@Vo*M��j��I�ߤ�g�|)׀&p&�4K�f�1�8i�T�N���N�b��[^����m�m��?�``v��f�x�#V@�����:-�E� G�[���k�j� 6��:U���տ��G�=(!��p�k��e��C�Ek��6��L��,�" ���mC!HS�҉�(�At!toLpS0sY���ż��Y��T��;/8g�r:�9�Н�-����de��J4�2�NK��%r��[*8�������JΜ_�-������=�������~����NB�r5>���2".�h�?2��^Ї:� sfq�1�_T��t� V�L#*W�gꖨ 1�&+�[�����<c����G���f����j\ �MT3�� ��Ч1f����L���`�|���b�f_�ƈvqc�����1(�dv��ُ̚�NI������,+��sV�Wz�WZ�ކYՆ.�e6�j\7��Y���U�Wo.���F̦hXC�T�Z7.p>������` ������!��k����.���n��eT�.���d>�ua�\X��� L&j�7@���K��!�;S $x�Y����Ya�����2��#��"�q/�u�e����B�$�Jld�}�8]���b�S,��y�9���gs^r=^C��v�#|M��V�5&�r��E�"9{�1eN�?���Mq]4�2]����{M22�������3��)��J���e��N�t?f����W]ک� ����Y9�0K�����,�U�"��,�_�������� ��0����(i��1ᮩ�c>V\���/[K��g�?�u�F�f9��s�$��|c�;�%��|��0�~��ђ1C�q&�=�삁ٽ�3������Z�563�a��Y*S}���zU�e��R�1s��0���G�$�Pf���2ە,�ʸ��r/С����;����؆L���Q�E%H� �A13D���W�K��u����}WDK�J���(�{��ʺ2A�|gh�?�_��OK:�dԏ b��iPC�T�7Q�X��ue�V��2�,}2�\� (Na1_�Y���*�N�N3��&�~�3��>c��� n�0$k�@ߟ����M���|���urNPP��D?����Zʘd^�zf��W��V?�Hr�"��5��_2[�%�4ԁ�EU�2)Q�������П�����������xOٟLbˠ� �e=|�e f^Ե��v�+c dcTʴ�{�A�߀�O�nh�����f�n1�V���q�2���l�1�m�l�w�����I�Jլ�m �e��f�R:�����8��oڮȲ�6�E�r��h�'q�O�^@��H��e�L[SoA���=71�i��Q0Ѵ���9���"ׅ�r�x�L����B4���V`��W��n�&}� ��[�����l(�bi������:�B`�%պl\��!�'�H��|W%I�H;M����0K�"�������0a�T�]�-Y��x g64�I�@1,���,�h��� �H����'�~]{�3��ΗR5�T5���Bڟ�ԏ]Y����y4`�2`�lh+�Q��1N���6u_�6�$� i��OS�*`�O _媃}t�����@̰�����h��|��; ɑ� ���1�������33333c���������c�ku��:��U�Ul��f��*�J�j�z�u�^��f�[d1H���Ad8���D�h����*c?���T�boZ;��^�l+�5��+�G���+f�UFhK�����9e�[�fo�6osE@�6B�1��)|�y��JB�����+u��7tga������`m�>�g�"���@�q�1����x��:H�l��JUƤ<>����`����;��,R��7��@a.蜗�:��̸AY���_�ϣ<��y�$Jui~�S/ǯ�)h�{�v%�ؤ�?|�u0����5��#`���E� ��g�9ƶV������))r��m��7�fJ����E8I��#li�܂���Z��Վ�Q�Rl�<rI���f���f�5�^2[Q�=�0@�@0�F���Nal�S�)���!R֏�Յ@r��0��3����Ł�b����̦S�z}���u�i��t˒�����(`A�]��4����u�:�ݑfI��Y8,�ʈYg]7ʲɤUmåZ�g;�.�'L!�Dz�?Ri��*Jb��G7B�P)+�z]�����c����OtY$-���sr�F=r��G���EE��%�E݈4���������6����P �� ���b���R��<��f+&#p�R�>~��w梥bh�5�s0/X��k!��#ʣu.VMDL��Z<UTu�Eʵd��!α-�=�'R w���YTk��l�{� ��om@���G�f|���f���ә6U��0�1T���0���e�Ė`�.��3�Q�l�l�<�}�`V�S��.} ;��G���Y�+�m*�p6W2��u�^�̠�ڬcZ����������߮�eD��]��̆��zǪ�7-Y���w;��^�/�/ї��i���g~�ܡ�`�>�<deA�P����ҲlYa��)l�fp��1wP̅��ܮ�-� ���~��u/IV��=<bF�TH�t1�%%D��Q1�����7;�TWb,�Y�R�i{�yeX_I�?x� �3�'�8R ��#� �.<�6R��J����R3`�i�[Ʊr�w�H3D�::.�ҮYr�:��4�VZ���}K��.r�|5)?ɰ.��d��~�`�Ž��HV�d�9�M��B�Lr�q�A 6[��0���'S\=�"��?�(�8ݣ�����6�ܬ_�a��d�n٠q�G� �OP��ʈ���X_���S]"�*#�@+r��w���A����8��̾�E_�����Sf7.���6�� �F[�w~گ�9�L���E��ݡ[��L�ف��o�>�vj�2��/���w�B� �(��C��Fա,��`&Y��D<�I4�@K�+�v��Xt���[6���1G=:U�,�R�=v� �����,�kڭ�e?�� ��tx^�G�PO9�����R��-����M�������k�|���_IA�����sE��06�G�}��QhTz��*̆�U��v��,� �+Re朗�C{f�4���`h��gT�/�1�o��w�Ʊ�"g/�Y�O��J���������?��Pi$��4 g���{fͭ�f�;f��>AZѲ������?oV�j��˕!Z{�Xf�O�<f7,����}�?�s�8WلH�P��);�:��y~���MG����1Q\���9�9�L6BP�����ȗ�Ly�U�³U�;,Q_�����Ц��F�`��:H�Q���UXہl]Mr Oe������V���nீ��Y���g�`�<��g�j��K�婒B�2N,&\�h��jIlp�=��� �ьV�%��y��5;vo*l�S�|����|�7$��_4��k����c�\qwJܹ��L�t�H}�\�����}��.I"�m)�,"f �Fw<)�l�w��U���o��?F���o�=IKaD��)Cyۯ6�)/^�T~����4�5���E��$�!��ʍhc�(�Q��jS���Kb_i_�z`�y��Y�X��O�C�A���%��w��{�>�]R� ���ҍ���-�5�����1J�v�>�����2j��f��gP2�ɠ�� e�j��Oe ;S!� 9�=v���%�>�����Aa���@A�B��A!�Z��`�І$�w�s�zC'��i+�L���3�b)�87�i,���lel�P���M��Q���K�#G=���~�=�s�ɴH�D_�1}�~7y�`,;/m���"��e�k��7�k��3?ډ˂t���8&�s>���2����_I����[m�9��-��U�Le�}�9����e��q��"��־�h{�.�}�2X���-��"��Yz���; ]X2��v�m�!`�����E@�I�>��I��Bd"��g�(/˳���#j����#o��t���E88l���K=�� �����$�I�!yP��v�G��leLe�:<������B�D�e��,5�>��0`2�S��-L$��s�ec��L�\v�W�";��Wg3��ఴ�T#-ю%II�,c��n��c�w��c��?/)H��*�xG�{h�\��w��b�sq�ҙj.�*��}�_��C�U03q�0:P�#f�-�+��z��v�� ��p��؇�S��Y�Un�{f�zgB ����e�����n���m��0+}�M�]���l�Rd%B�0S{�p69�Yr�%�{{mG�)���g�A�����WjOZ�}t�dM�6�p_�GO�<f痬��o��� G�6�,))v�sBi�R�(�i�;����3>�E� g��we�L�vn(�M������t9�_�X����Ӫ�2���d��d��L��Po6����@\�eߗ�́<~N�@Ja�B@�[�r�s�O��[�Ж��=�ي�p�ߚ�?��ŋ6�k�=v�R��c֏�s?��*E �6^�e%����٭���G~�{=�n-A'ULa4p3���LOD��.��$�!Җ�v�-��a� 7����� �]�@q `��f^�w��1�C7���W}�Ք*�l*�ֻf��{eө�m�J*�×�M��v�f�[���o��-�>H�_��u�����c���-���M�d���v��k�י��sR�O���Z[Fİm��9���BbM����д�|M�F�0��ѓ��Q�v?�t7ء]JF�خ�O�;�f�t�<��@�&��y�c����l�p�M`�����x��k^a��w� !�v�49��Je�s����S|ﻉm@Xs��D�6�����i��Q���a�M�gt��H �@?5�.T������(�8|��SN����ygv��n��%������^�>|��f�aM@�f\��TƦ\~[$'ᬮ�8O>����W��S_���s�X�f�џ`z�;fߦ�O�*���K�7z�7�C�����a��_���vgnج�� j��H�J`�b-e��v��`�m��k#I�������d�5C�TD�t��1�I�8�I�O� Zi�q;���ٳ}`y�\û�z����XL�r���H�|_ k���`�=.��x���a��/bH&$�qT�����Y*b-�&E沀X����6&4��y��E�Ău��ENyܷ5/��(�:�����K�m:���C�t�L�"gm���|5F���+�Ie���-�v�f�ͣ�+�_��_,��;�~����*7�w�Sfg�fo�op�P��>�α�>g���~0&Ô��F"�OL�D�$j`6���ZIg�~��Y�d�D0�S����$r����M��U�W��Pk{q���'l��1��SgΨ���Qݯj�= ���_²��~�=`%��`G]�Ę҄HTY9� �݁��[<~���}�� c��rY�l�> i�H���%��~H5c0�lV��E�_�Ct.���R�w�∘�8�ݿ�gf�z��#h�;���ǣb��M�2��2�=��t*#! `V@�_G�;W��X����Z.��%R�c�?��r?�'O�.�^��_����TX���iv�o�c��]}&g.H��,}�A JSH�@��π�p�ݰG�1��mh�@�_X�}�S�J|K���c����~��1�V��p��۞�F�~DEݝK(�Ƅ�A��@!�*Z�H���xR�ss �3x@U��M�(J�Q[��z0x�^za䢂��"���,uu�M��ۏ����?�k̄��*7ImZ5�a!�]�G��s4��C��i� ��)�cZCg��P���}:���, �z����0�oq��<�?s"�0rv%��(}�zyH��E@t����O@�/�_��es^�?�/ZI?0���g�|0{S�rG�!���S6��Uϟ?Š����8���ǰ���9' "��s������Ӄ�.2�iZe�3M�$�*x)�6�,' ��.B��V�'����_e<z�oV�ڈ��t2�]F�� �ӛ�zy���2(�)��V�T�w�C�p\=#]UR�>�|��a�_mdW�9屦��&+m�N���~��N"�m��`��(��Jz�u���}�kǔ�h>"�p֍���� &��*�Gch�q�,0{m%��R�<����)���_2��={�X�`��\���>K8�<�D}��j0�n����{�qi�y�>�e �~XoF���ȇ�m��|�:Fq��jt�*�1Jh$��IW�ǴV?���,�d�D��7<d{S�.����6�v�jzRjYz���䕩�Ya������!��89uo�3��O�~�p�E ���]���kq������{�z�a��S Ȳ^ךӭVƘ������j1��~fC���sx�^��d��r����M����!K���I3B�k����7C/WKi\��JeT�x�~z%��f�������WV*wu4)~_�)��%����zKDP�=�<g������x����c�19���㋙}���:8�%v\����܋�G������H;J��C�,�l��m�U�oPFD�հ��yʢ;�&��T')� �pɴ�Ҷ��s��O�V|��S 4B�3�v������c:�3j��8�3a� �6�I:���������u��3�I�Tq\WO<��N�G��ɉ��1�������)�.^�q���C�'2:�d��i[5�V�]�Q���Q7��~�c�0��Jz�Qz��3��£�#S�2�/3$�̤�l�n�����Q��QZ�x�f/����~��?�-����˿�{�7�^�U^�ֻ�a�`vpp������_�����ۣ��%�a�O��Y�w�����u;�+� �%������GD"�$[T}]Ìk4K��������b3<_q��Q��e|���Wg��vw�w���Q7C��v1����f�K^��:��g!��B��ԫ��[7�C���땾Z��hY]��G��V����o�����ܾ3��{ց�c/�.1�1�O��ҹ�Q��b�`�;�X2����i�����\�����Y��6sy��"�<�������h�D_� ���7g�hԛ~��H�͈�_B�ڲ+^<9��z\��^r&e�1���qe�%L�^"�<f����ç�4���o/�7C7��o2�^`�c��)��c�FI�~���7e�[�v0�U-�0s~vIEND�B`�PK\[�\T` �==*jquery-minicolors/jquery.minicolors.min.jsnu�[���// // jQuery MiniColors: A tiny color picker built on jQuery // // Developed by Cory LaViska for A Beautiful Site, LLC // // Licensed under the MIT license: http://opensource.org/licenses/MIT // !function(i){"function"==typeof define&&define.amd?define(["jquery"],i):"object"==typeof exports?module.exports=i(require("jquery")):i(jQuery)}(function(i){"use strict";function t(t,o){var s,a,n,e,r,l,h=i('<div class="minicolors" />'),d=i.minicolors.defaults;if(!t.data("minicolors-initialized")){if(o=i.extend(!0,{},d,o),h.addClass("minicolors-theme-"+o.theme).toggleClass("minicolors-with-opacity",o.opacity),void 0!==o.position&&i.each(o.position.split(" "),function(){h.addClass("minicolors-position-"+this)}),a="rgb"===o.format?o.opacity?"25":"20":o.keywords?"11":"7",t.addClass("minicolors-input").data("minicolors-initialized",!1).data("minicolors-settings",o).prop("size",a).wrap(h).after('<div class="minicolors-panel minicolors-slider-'+o.control+'"><div class="minicolors-slider minicolors-sprite"><div class="minicolors-picker"></div></div><div class="minicolors-opacity-slider minicolors-sprite"><div class="minicolors-picker"></div></div><div class="minicolors-grid minicolors-sprite"><div class="minicolors-grid-inner"></div><div class="minicolors-picker"><div></div></div></div></div>'),o.inline||(t.after('<span class="minicolors-swatch minicolors-sprite minicolors-input-swatch"><span class="minicolors-swatch-color"></span></span>'),t.next(".minicolors-input-swatch").on("click",function(i){i.preventDefault(),t.focus()})),r=t.parent().find(".minicolors-panel"),r.on("selectstart",function(){return!1}).end(),o.swatches&&0!==o.swatches.length)for(r.addClass("minicolors-with-swatches"),n=i('<ul class="minicolors-swatches"></ul>').appendTo(r),l=0;l<o.swatches.length;++l)"object"===i.type(o.swatches[l])?(s=o.swatches[l].name,e=o.swatches[l].color):(s="",e=o.swatches[l]),e=v(e)?g(e,!0):I(u(e,!0)),i('<li class="minicolors-swatch minicolors-sprite"><span class="minicolors-swatch-color" title="'+s+'"></span></li>').appendTo(n).data("swatch-color",o.swatches[l]).find(".minicolors-swatch-color").css({backgroundColor:C(e),opacity:e.a}),o.swatches[l]=e;o.inline&&t.parent().addClass("minicolors-inline"),c(t,!1),t.data("minicolors-initialized",!0)}}function o(i){var t=i.parent();i.removeData("minicolors-initialized").removeData("minicolors-settings").removeProp("size").removeClass("minicolors-input"),t.before(i).remove()}function s(i){var t=i.parent(),o=t.find(".minicolors-panel"),s=i.data("minicolors-settings");!i.data("minicolors-initialized")||i.prop("disabled")||t.hasClass("minicolors-inline")||t.hasClass("minicolors-focus")||(a(),t.addClass("minicolors-focus"),o.animate?o.stop(!0,!0).fadeIn(s.showSpeed,function(){s.show&&s.show.call(i.get(0))}):(o.css("opacity",1),s.show&&s.show.call(i.get(0))))}function a(){i(".minicolors-focus").each(function(){var t=i(this),o=t.find(".minicolors-input"),s=t.find(".minicolors-panel"),a=o.data("minicolors-settings");s.animate?s.fadeOut(a.hideSpeed,function(){a.hide&&a.hide.call(o.get(0)),t.removeClass("minicolors-focus")}):(s.css("opacity",0),a.hide&&a.hide.call(o.get(0)),t.removeClass("minicolors-focus"))})}function n(i,t,o){var s,a,n,r,c,l=i.parents(".minicolors").find(".minicolors-input"),h=l.data("minicolors-settings"),d=i.find("[class$=-picker]"),p=i.offset().left,u=i.offset().top,g=Math.round(t.pageX-p),m=Math.round(t.pageY-u),f=o?h.animationSpeed:0;t.originalEvent.changedTouches&&(g=t.originalEvent.changedTouches[0].pageX-p,m=t.originalEvent.changedTouches[0].pageY-u),g<0&&(g=0),m<0&&(m=0),g>i.width()&&(g=i.width()),m>i.height()&&(m=i.height()),i.parent().is(".minicolors-slider-wheel")&&d.parent().is(".minicolors-grid")&&(s=75-g,a=75-m,n=Math.sqrt(s*s+a*a),r=Math.atan2(a,s),r<0&&(r+=2*Math.PI),n>75&&(n=75,g=75-75*Math.cos(r),m=75-75*Math.sin(r)),g=Math.round(g),m=Math.round(m)),c={top:m+"px"},i.is(".minicolors-grid")&&(c.left=g+"px"),d.animate?d.stop(!0).animate(c,f,h.animationEasing,function(){e(l,i)}):(d.css(c),e(l,i))}function e(i,t){function o(i,t){var o,s;return i.length&&t?(o=i.offset().left,s=i.offset().top,{x:o-t.offset().left+i.outerWidth()/2,y:s-t.offset().top+i.outerHeight()/2}):null}var s,a,n,e,c,h,d,p=i.val(),u=i.attr("data-opacity"),g=i.parent(),m=i.data("minicolors-settings"),v=g.find(".minicolors-input-swatch"),b=g.find(".minicolors-grid"),w=g.find(".minicolors-slider"),y=g.find(".minicolors-opacity-slider"),C=b.find("[class$=-picker]"),M=w.find("[class$=-picker]"),x=y.find("[class$=-picker]"),I=o(C,b),S=o(M,w),z=o(x,y);if(t.is(".minicolors-grid, .minicolors-slider, .minicolors-opacity-slider")){switch(m.control){case"wheel":e=b.width()/2-I.x,c=b.height()/2-I.y,h=Math.sqrt(e*e+c*c),d=Math.atan2(c,e),d<0&&(d+=2*Math.PI),h>75&&(h=75,I.x=69-75*Math.cos(d),I.y=69-75*Math.sin(d)),a=f(h/.75,0,100),s=f(180*d/Math.PI,0,360),n=f(100-Math.floor(S.y*(100/w.height())),0,100),p=k({h:s,s:a,b:n}),w.css("backgroundColor",k({h:s,s:a,b:100}));break;case"saturation":s=f(parseInt(I.x*(360/b.width()),10),0,360),a=f(100-Math.floor(S.y*(100/w.height())),0,100),n=f(100-Math.floor(I.y*(100/b.height())),0,100),p=k({h:s,s:a,b:n}),w.css("backgroundColor",k({h:s,s:100,b:n})),g.find(".minicolors-grid-inner").css("opacity",a/100);break;case"brightness":s=f(parseInt(I.x*(360/b.width()),10),0,360),a=f(100-Math.floor(I.y*(100/b.height())),0,100),n=f(100-Math.floor(S.y*(100/w.height())),0,100),p=k({h:s,s:a,b:n}),w.css("backgroundColor",k({h:s,s:a,b:100})),g.find(".minicolors-grid-inner").css("opacity",1-n/100);break;default:s=f(360-parseInt(S.y*(360/w.height()),10),0,360),a=f(Math.floor(I.x*(100/b.width())),0,100),n=f(100-Math.floor(I.y*(100/b.height())),0,100),p=k({h:s,s:a,b:n}),b.css("backgroundColor",k({h:s,s:100,b:100}))}u=m.opacity?parseFloat(1-z.y/y.height()).toFixed(2):1,r(i,p,u)}else v.find("span").css({backgroundColor:p,opacity:u}),l(i,p,u)}function r(i,t,o){var s,a=i.parent(),n=i.data("minicolors-settings"),e=a.find(".minicolors-input-swatch");n.opacity&&i.attr("data-opacity",o),"rgb"===n.format?(s=v(t)?g(t,!0):I(u(t,!0)),o=""===i.attr("data-opacity")?1:f(parseFloat(i.attr("data-opacity")).toFixed(2),0,1),!isNaN(o)&&n.opacity||(o=1),t=i.minicolors("rgbObject").a<=1&&s&&n.opacity?"rgba("+s.r+", "+s.g+", "+s.b+", "+parseFloat(o)+")":"rgb("+s.r+", "+s.g+", "+s.b+")"):(v(t)&&(t=y(t)),t=p(t,n.letterCase)),i.val(t),e.find("span").css({backgroundColor:t,opacity:o}),l(i,t,o)}function c(t,o){var s,a,n,e,r,c,h,d,w,C,x=t.parent(),I=t.data("minicolors-settings"),S=x.find(".minicolors-input-swatch"),z=x.find(".minicolors-grid"),F=x.find(".minicolors-slider"),T=x.find(".minicolors-opacity-slider"),j=z.find("[class$=-picker]"),D=F.find("[class$=-picker]"),q=T.find("[class$=-picker]");switch(v(t.val())?(s=y(t.val()),r=f(parseFloat(b(t.val())).toFixed(2),0,1),r&&t.attr("data-opacity",r)):s=p(u(t.val(),!0),I.letterCase),s||(s=p(m(I.defaultValue,!0),I.letterCase)),a=M(s),e=I.keywords?i.map(I.keywords.split(","),function(t){return i.trim(t.toLowerCase())}):[],c=""!==t.val()&&i.inArray(t.val().toLowerCase(),e)>-1?p(t.val()):v(t.val())?g(t.val()):s,o||t.val(c),I.opacity&&(n=""===t.attr("data-opacity")?1:f(parseFloat(t.attr("data-opacity")).toFixed(2),0,1),isNaN(n)&&(n=1),t.attr("data-opacity",n),S.find("span").css("opacity",n),d=f(T.height()-T.height()*n,0,T.height()),q.css("top",d+"px")),"transparent"===t.val().toLowerCase()&&S.find("span").css("opacity",0),S.find("span").css("backgroundColor",s),I.control){case"wheel":w=f(Math.ceil(.75*a.s),0,z.height()/2),C=a.h*Math.PI/180,h=f(75-Math.cos(C)*w,0,z.width()),d=f(75-Math.sin(C)*w,0,z.height()),j.css({top:d+"px",left:h+"px"}),d=150-a.b/(100/z.height()),""===s&&(d=0),D.css("top",d+"px"),F.css("backgroundColor",k({h:a.h,s:a.s,b:100}));break;case"saturation":h=f(5*a.h/12,0,150),d=f(z.height()-Math.ceil(a.b/(100/z.height())),0,z.height()),j.css({top:d+"px",left:h+"px"}),d=f(F.height()-a.s*(F.height()/100),0,F.height()),D.css("top",d+"px"),F.css("backgroundColor",k({h:a.h,s:100,b:a.b})),x.find(".minicolors-grid-inner").css("opacity",a.s/100);break;case"brightness":h=f(5*a.h/12,0,150),d=f(z.height()-Math.ceil(a.s/(100/z.height())),0,z.height()),j.css({top:d+"px",left:h+"px"}),d=f(F.height()-a.b*(F.height()/100),0,F.height()),D.css("top",d+"px"),F.css("backgroundColor",k({h:a.h,s:a.s,b:100})),x.find(".minicolors-grid-inner").css("opacity",1-a.b/100);break;default:h=f(Math.ceil(a.s/(100/z.width())),0,z.width()),d=f(z.height()-Math.ceil(a.b/(100/z.height())),0,z.height()),j.css({top:d+"px",left:h+"px"}),d=f(F.height()-a.h/(360/F.height()),0,F.height()),D.css("top",d+"px"),z.css("backgroundColor",k({h:a.h,s:100,b:100}))}t.data("minicolors-initialized")&&l(t,c,n)}function l(i,t,o){var s,a,n,e=i.data("minicolors-settings"),r=i.data("minicolors-lastChange");if(!r||r.value!==t||r.opacity!==o){if(i.data("minicolors-lastChange",{value:t,opacity:o}),e.swatches&&0!==e.swatches.length){for(s=v(t)?g(t,!0):I(t),a=-1,n=0;n<e.swatches.length;++n)if(s.r===e.swatches[n].r&&s.g===e.swatches[n].g&&s.b===e.swatches[n].b&&s.a===e.swatches[n].a){a=n;break}i.parent().find(".minicolors-swatches .minicolors-swatch").removeClass("selected"),a!==-1&&i.parent().find(".minicolors-swatches .minicolors-swatch").eq(n).addClass("selected")}e.change&&(e.changeDelay?(clearTimeout(i.data("minicolors-changeTimeout")),i.data("minicolors-changeTimeout",setTimeout(function(){e.change.call(i.get(0),t,o)},e.changeDelay))):e.change.call(i.get(0),t,o)),i.trigger("change").trigger("input")}}function h(t){var o,s=i(t).attr("data-opacity");if(v(i(t).val()))o=g(i(t).val(),!0);else{var a=u(i(t).val(),!0);o=I(a)}return o?(void 0!==s&&i.extend(o,{a:parseFloat(s)}),o):null}function d(t,o){var s,a=i(t).attr("data-opacity");if(v(i(t).val()))s=g(i(t).val(),!0);else{var n=u(i(t).val(),!0);s=I(n)}return s?(void 0===a&&(a=1),o?"rgba("+s.r+", "+s.g+", "+s.b+", "+parseFloat(a)+")":"rgb("+s.r+", "+s.g+", "+s.b+")"):null}function p(i,t){return"uppercase"===t?i.toUpperCase():i.toLowerCase()}function u(i,t){return i=i.replace(/^#/g,""),i.match(/^[A-F0-9]{3,6}/gi)?3!==i.length&&6!==i.length?"":(3===i.length&&t&&(i=i[0]+i[0]+i[1]+i[1]+i[2]+i[2]),"#"+i):""}function g(i,t){var o=i.replace(/[^\d,.]/g,""),s=o.split(",");return s[0]=f(parseInt(s[0],10),0,255),s[1]=f(parseInt(s[1],10),0,255),s[2]=f(parseInt(s[2],10),0,255),void 0!==s[3]&&(s[3]=f(parseFloat(s[3],10),0,1)),t?void 0!==s[3]?{r:s[0],g:s[1],b:s[2],a:s[3]}:{r:s[0],g:s[1],b:s[2]}:"undefined"!=typeof s[3]&&s[3]<=1?"rgba("+s[0]+", "+s[1]+", "+s[2]+", "+s[3]+")":"rgb("+s[0]+", "+s[1]+", "+s[2]+")"}function m(i,t){return v(i)?g(i):u(i,t)}function f(i,t,o){return i<t&&(i=t),i>o&&(i=o),i}function v(i){var t=i.match(/^rgba?[\s+]?\([\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?/i);return!(!t||4!==t.length)}function b(i){return i=i.match(/^rgba?[\s+]?\([\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+(\.\d{1,2})?|\.\d{1,2})[\s+]?/i),i&&6===i.length?i[4]:"1"}function w(i){var t={},o=Math.round(i.h),s=Math.round(255*i.s/100),a=Math.round(255*i.b/100);if(0===s)t.r=t.g=t.b=a;else{var n=a,e=(255-s)*a/255,r=(n-e)*(o%60)/60;360===o&&(o=0),o<60?(t.r=n,t.b=e,t.g=e+r):o<120?(t.g=n,t.b=e,t.r=n-r):o<180?(t.g=n,t.r=e,t.b=e+r):o<240?(t.b=n,t.r=e,t.g=n-r):o<300?(t.b=n,t.g=e,t.r=e+r):o<360?(t.r=n,t.g=e,t.b=n-r):(t.r=0,t.g=0,t.b=0)}return{r:Math.round(t.r),g:Math.round(t.g),b:Math.round(t.b)}}function y(i){return i=i.match(/^rgba?[\s+]?\([\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?/i),i&&4===i.length?"#"+("0"+parseInt(i[1],10).toString(16)).slice(-2)+("0"+parseInt(i[2],10).toString(16)).slice(-2)+("0"+parseInt(i[3],10).toString(16)).slice(-2):""}function C(t){var o=[t.r.toString(16),t.g.toString(16),t.b.toString(16)];return i.each(o,function(i,t){1===t.length&&(o[i]="0"+t)}),"#"+o.join("")}function k(i){return C(w(i))}function M(i){var t=x(I(i));return 0===t.s&&(t.h=360),t}function x(i){var t={h:0,s:0,b:0},o=Math.min(i.r,i.g,i.b),s=Math.max(i.r,i.g,i.b),a=s-o;return t.b=s,t.s=0!==s?255*a/s:0,0!==t.s?i.r===s?t.h=(i.g-i.b)/a:i.g===s?t.h=2+(i.b-i.r)/a:t.h=4+(i.r-i.g)/a:t.h=-1,t.h*=60,t.h<0&&(t.h+=360),t.s*=100/255,t.b*=100/255,t}function I(i){return i=parseInt(i.indexOf("#")>-1?i.substring(1):i,16),{r:i>>16,g:(65280&i)>>8,b:255&i}}i.minicolors={defaults:{animationSpeed:50,animationEasing:"swing",change:null,changeDelay:0,control:"hue",defaultValue:"",format:"hex",hide:null,hideSpeed:100,inline:!1,keywords:"",letterCase:"lowercase",opacity:!1,position:"bottom",show:null,showSpeed:100,theme:"default",swatches:[]}},i.extend(i.fn,{minicolors:function(n,e){switch(n){case"destroy":return i(this).each(function(){o(i(this))}),i(this);case"hide":return a(),i(this);case"opacity":return void 0===e?i(this).attr("data-opacity"):(i(this).each(function(){c(i(this).attr("data-opacity",e))}),i(this));case"rgbObject":return h(i(this),"rgbaObject"===n);case"rgbString":case"rgbaString":return d(i(this),"rgbaString"===n);case"settings":return void 0===e?i(this).data("minicolors-settings"):(i(this).each(function(){var t=i(this).data("minicolors-settings")||{};o(i(this)),i(this).minicolors(i.extend(!0,t,e))}),i(this));case"show":return s(i(this).eq(0)),i(this);case"value":return void 0===e?i(this).val():(i(this).each(function(){"object"==typeof e&&null!==e?(void 0!==e.opacity&&i(this).attr("data-opacity",f(e.opacity,0,1)),e.color&&i(this).val(e.color)):i(this).val(e),c(i(this))}),i(this));default:return"create"!==n&&(e=n),i(this).each(function(){t(i(this),e)}),i(this)}}}),i([document]).on("mousedown.minicolors touchstart.minicolors",function(t){i(t.target).parents().add(t.target).hasClass("minicolors")||a()}).on("mousedown.minicolors touchstart.minicolors",".minicolors-grid, .minicolors-slider, .minicolors-opacity-slider",function(t){var o=i(this);t.preventDefault(),i(t.delegateTarget).data("minicolors-target",o),n(o,t,!0)}).on("mousemove.minicolors touchmove.minicolors",function(t){var o=i(t.delegateTarget).data("minicolors-target");o&&n(o,t)}).on("mouseup.minicolors touchend.minicolors",function(){i(this).removeData("minicolors-target")}).on("click.minicolors",".minicolors-swatches li",function(t){t.preventDefault();var o=i(this),s=o.parents(".minicolors").find(".minicolors-input"),a=o.data("swatch-color");r(s,a,b(a)),c(s)}).on("mousedown.minicolors touchstart.minicolors",".minicolors-input-swatch",function(t){var o=i(this).parent().find(".minicolors-input");t.preventDefault(),s(o)}).on("focus.minicolors",".minicolors-input",function(){var t=i(this);t.data("minicolors-initialized")&&s(t)}).on("blur.minicolors",".minicolors-input",function(){var t,o,s,a,n,e=i(this),r=e.data("minicolors-settings");e.data("minicolors-initialized")&&(t=r.keywords?i.map(r.keywords.split(","),function(t){return i.trim(t.toLowerCase())}):[],""!==e.val()&&i.inArray(e.val().toLowerCase(),t)>-1?n=e.val():(v(e.val())?s=g(e.val(),!0):(o=u(e.val(),!0),s=o?I(o):null),n=null===s?r.defaultValue:"rgb"===r.format?g(r.opacity?"rgba("+s.r+","+s.g+","+s.b+","+e.attr("data-opacity")+")":"rgb("+s.r+","+s.g+","+s.b+")"):C(s)),a=r.opacity?e.attr("data-opacity"):1,"transparent"===n.toLowerCase()&&(a=0),e.closest(".minicolors").find(".minicolors-input-swatch > span").css("opacity",a),e.val(n),""===e.val()&&e.val(m(r.defaultValue,!0)),e.val(p(e.val(),r.letterCase)))}).on("keydown.minicolors",".minicolors-input",function(t){var o=i(this);if(o.data("minicolors-initialized"))switch(t.which){case 9:a();break;case 13:case 27:a(),o.blur()}}).on("keyup.minicolors",".minicolors-input",function(){var t=i(this);t.data("minicolors-initialized")&&c(t,!0)}).on("paste.minicolors",".minicolors-input",function(){var t=i(this);t.data("minicolors-initialized")&&setTimeout(function(){c(t,!0)},1)})});PK\[�\K����jquery-minicolors/bower.jsonnu�[���{ "name": "jquery-minicolors", "version": "2.3.2", "homepage": "https://github.com/claviska/jquery-minicolors", "authors": [ "Cory LaViska" ], "description": "jQuery MiniColors Plugin", "main": [ "./jquery.minicolors.js", "./jquery.minicolors.css" ], "keywords": [ "jquery", "colorpicker" ], "license": "MIT", "ignore": [ "**/.*", "node_modules", "bower_components", "test", "tests" ] } PK\[�\�ԏs��jquery-minicolors/package.jsonnu�[���PK\[�\^S��Djquery-minicolors/composer.jsonnu�[���PK\[�\s�� PPb jquery-minicolors/gulpfile.jsnu�[���PK\[�\������jquery-minicolors/.editorconfignu�[���PK\[�\�FQ��� jquery-minicolors/.eslintrcnu�[���PK\[�\H�|<9b9b�jquery-minicolors/index.htmlnu�[���PK\[�\hL5 ({rjquery-minicolors/without-bootstrap.htmlnu�[���PK\[�\d`���� �jquery-minicolors/component.jsonnu�[���PK\[�\�gp����&!�jquery-minicolors/jquery.minicolors.jsnu�[���PK\[�\Ϫ�4.(.('$jquery-minicolors/jquery.minicolors.cssnu�[���PK\[�\=r1rr�Djquery-minicolors/README.mdnu�[���PK\[�\�C�,,fGjquery-minicolors/LICENSE.mdnu�[���PK\[�\�6'�Kjquery-minicolors/jquery.minicolors.pngnu�[���PK\[�\T` �==*HXjquery-minicolors/jquery.minicolors.min.jsnu�[���PK\[�\K������jquery-minicolors/bower.jsonnu�[���PK��
/home/emeraadmin/.cpanel/./../public_html/wp-includes/../node_modules/../4d695/@claviska.zip