diff --git a/.gitignore b/.gitignore index 2f7ad6c..1b33e4f 100644 --- a/.gitignore +++ b/.gitignore @@ -57,6 +57,7 @@ typings/ # dotenv environment variables file .env +# custom dist/ /package-lock.json /dist diff --git a/LICENSE b/LICENSE index bb9d3e8..1c2c213 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 Dominic Masters +Copyright (c) 2012-2020 Dominic Masters Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/package.json b/package.json index 44eb900..51cfa65 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,8 @@ { "name": "domsplace", - "version": "6.0.1", - "description": "Personal website for Dominic \"YouWish\" Masters.", - "main": "dist/private/", + "version": "7.0.0", + "description": "Personal website for Dominic \"YourWishes\" Masters.", "scripts": { - "test": "jest", - "start": "node dist/private/", - "build": "tsc -p . && webpack -p --env.production", - "watch": "cross-env NODE_ENV=DEVELOPMENT npm run start", - "heroku-postbuild": "tsc -p . && webpack -p --env.production" }, "repository": { "type": "git", @@ -25,21 +19,9 @@ "bugs": { "url": "https://github.com/YourWishes/domsPlaceNew/issues" }, - "homepage": "https://github.com/YourWishes/domsPlaceNew#readme", + "homepage": "https://domsplace.com", "dependencies": { - "@types/animejs": "^2.0.2", - "@yourwishes/app-email": "^1.0.3", - "@yourwishes/app-simple-react": "^2.8.7", - "animejs": "^3.0.1", - "react-helmet": "^5.2.1" }, "devDependencies": { - "@types/jest": "^24.0.15", - "cross-env": "^5.2.0", - "jest": "^24.1.0", - "typescript": "^3.5.3", - "webpack-cli": "^3.3.5", - "webpack-dev-middleware": "^3.6.1", - "webpack-hot-middleware": "^2.24.3" } } diff --git a/src/private/api/contact/index.ts b/src/private/api/contact/index.ts deleted file mode 100644 index 4bf68ce..0000000 --- a/src/private/api/contact/index.ts +++ /dev/null @@ -1,78 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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, sublicen se, 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. - -import { RESPONSE_OK, RESPONSE_BAD_REQUEST, RESPONSE_INTERNAL_ERROR } from '@yourwishes/app-api'; -import { ServerAPIRequest, ServerAPIResponse, ServerAPIHandler } from '@yourwishes/app-server'; -import { isValidEmail } from '@yourwishes/app-email'; -import { domsPlaceApp } from './../../app/'; - -export const EMAIL_MAXLENGTH = 256; -export const NAME_MAXLENGTH = 128; -export const MESSAGE_MAXLENGTH = 8192; - -export class sendContact extends ServerAPIHandler { - constructor() { - super('POST', '/contact/send'); - } - - async onRequest(request:ServerAPIRequest):Promise { - if(!request.hasString('email', EMAIL_MAXLENGTH)) return { code: RESPONSE_BAD_REQUEST, data: 'Missing or invalid email' }; - if(!request.hasString('name', NAME_MAXLENGTH)) return { code: RESPONSE_BAD_REQUEST, data: 'Missing or invalid name' }; - if(!request.hasString('message', MESSAGE_MAXLENGTH)) return { code: RESPONSE_BAD_REQUEST, data: 'Missing or invalid message' }; - - let email = request.getString('email', EMAIL_MAXLENGTH); - if(!isValidEmail(email)) return { code: RESPONSE_BAD_REQUEST, data: 'Missing or invalid email' }; - - let name = request.getString('name', NAME_MAXLENGTH); - let message = request.getString('message', MESSAGE_MAXLENGTH); - - //Prepare to send email - let app:domsPlaceApp = request.owner.app as domsPlaceApp; - - //First send an email to the site owner - request.owner.logger.debug(`Sending email from ${email}...`); - let ownRes = await app.email.sendMail(app.domsPlace.contact, 'Contact Message Received', ` - Contact Message received from ${email}, who wrote: - ${message} - `, ` -

Contact Message received from ${email} who wrote:

-

- ${ message.replace(//g, '>').replace(/\n/g, '
') } -

- `); - if(!ownRes) return { code: RESPONSE_INTERNAL_ERROR, data: false }; - - //Now Send an email to the client - let clientRes = await app.email.sendMail(app.domsPlace.contact, 'Contact Message Sent', ` - Contact Message Sent! Thanks for reaching out, - if this was not you then ignore this email. - `, ` -

Contact Message Sent! Thanks for reaching out. If this was not you then ignore this email.

- `); - if(!clientRes) return { code: RESPONSE_INTERNAL_ERROR, data: false }; - request.owner.logger.debug(`...Done`); - - //OK! - return { code: RESPONSE_OK, data: true }; - } -} diff --git a/src/private/api/index.ts b/src/private/api/index.ts deleted file mode 100644 index 371663a..0000000 --- a/src/private/api/index.ts +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -export * from './contact/'; diff --git a/src/private/app/index.ts b/src/private/app/index.ts deleted file mode 100644 index 37992ce..0000000 --- a/src/private/app/index.ts +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import { App } from '@yourwishes/app-base'; -import { ServerModule } from '@yourwishes/app-server'; -import { ReactModule } from '@yourwishes/app-react'; -import { ISimpleReactApp, SimpleReactModule } from '@yourwishes/app-simple-react'; -import { IEmailApp, EmailModule } from '@yourwishes/app-email'; -import { domsPlaceModule } from './../module/'; - -import { domsPlaceCompiler } from './../compiler/'; - -export class domsPlaceApp extends App implements ISimpleReactApp, IEmailApp { - server:ServerModule; - email:EmailModule; - react:ReactModule; - simpleReact:SimpleReactModule; - domsPlace:domsPlaceModule; - - constructor() { - super(); - - this.server = new ServerModule(this); - this.email = new EmailModule(this); - this.react = new ReactModule(this); - this.simpleReact = new SimpleReactModule(this); - this.domsPlace = new domsPlaceModule(this); - - [ - this.server, this.email, this.react, this.simpleReact, this.domsPlace - ].forEach(e => this.modules.addModule(e)); - } - - getCompiler() { - return new domsPlaceCompiler(); - } -} diff --git a/src/private/compiler/index.ts b/src/private/compiler/index.ts deleted file mode 100644 index 67a2a89..0000000 --- a/src/private/compiler/index.ts +++ /dev/null @@ -1,50 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import { SimpleReactCompiler } from '@yourwishes/app-simple-react'; - -const gtag = ` -`; - -const content = ` - Please Wait... -`; - -export class domsPlaceCompiler extends SimpleReactCompiler { - constructor() { - super({ - title: 'domsPlace - Personal Site of Dominic Masters', - keywords: 'domsplace, programming, gaming, shopify, livestreaming, dominic, masters, dom', - description: 'domsPlace is the home of programmer and developer Dominic Masters, specialising in eCommerce and full-stack development solutions for a wide range of platforms, primarily Shopify.', - app_handle: 'domsPlace', - language: 'en-AU', - gtag, - page_content: content - }); - } -} diff --git a/src/private/index.ts b/src/private/index.ts deleted file mode 100644 index 84a2ad8..0000000 --- a/src/private/index.ts +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import { domsPlaceApp } from './app/'; - -const app = new domsPlaceApp(); - -app.init().catch(e => app.logger.error(e)); diff --git a/src/private/module/index.ts b/src/private/module/index.ts deleted file mode 100644 index 5f988a8..0000000 --- a/src/private/module/index.ts +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import { Module } from '@yourwishes/app-base'; -import { domsPlaceApp } from './../app/'; -import { sendContact } from './../api/'; - -export const CONFIG_CONTACT = 'domsplace.contact'; - -export class domsPlaceModule extends Module { - app:domsPlaceApp; - contact:string; - - constructor(app:domsPlaceApp) { - super(app); - - app.server.api.addAPIHandler(new sendContact()); - } - - loadPackage() {return require('./../../../package.json');} - - async init(): Promise { - let { config } = this.app; - if(!config.has(CONFIG_CONTACT)) throw new Error("Missing contact reciving details from configuration!"); - - this.contact = config.get(CONFIG_CONTACT); - } - - async destroy(): Promise { - } -} diff --git a/src/public/actions/index.ts b/src/public/actions/index.ts deleted file mode 100644 index 2d73e4e..0000000 --- a/src/public/actions/index.ts +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -export type domsPlaceActions = ( - null -); diff --git a/src/public/app/domsPlaceApp.tsx b/src/public/app/domsPlaceApp.tsx deleted file mode 100644 index a25d568..0000000 --- a/src/public/app/domsPlaceApp.tsx +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import './../styles/theme'; - -import * as React from 'react'; -import { App, Router } from '@yourwishes/app-simple-react/dist/public'; - -import { domsPlaceState } from './../state/'; -import { domsPlaceActions } from './../actions/'; -import { domsPlaceReducer } from './../reducer/'; - -import { LayoutComponent } from './../components/layout/layout'; - -export class domsPlaceApp extends App { - constructor() { - super("domsPlace"); - } - - getReducer() { return domsPlaceReducer; } - - getComponent() { - return ( - - ); - } -} diff --git a/src/public/assets/background/background-night.svg b/src/public/assets/background/background-night.svg deleted file mode 100644 index 728b9d8..0000000 --- a/src/public/assets/background/background-night.svg +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/public/assets/background/background.svg b/src/public/assets/background/background.svg deleted file mode 100644 index aa8137a..0000000 --- a/src/public/assets/background/background.svg +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/public/assets/icons/icon-close.svg b/src/public/assets/icons/icon-close.svg deleted file mode 100644 index 2520ab7..0000000 --- a/src/public/assets/icons/icon-close.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/public/assets/icons/icon-github.svg b/src/public/assets/icons/icon-github.svg deleted file mode 100644 index ec8a78e..0000000 --- a/src/public/assets/icons/icon-github.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/src/public/assets/icons/icon-hamburger.svg b/src/public/assets/icons/icon-hamburger.svg deleted file mode 100644 index beeef83..0000000 --- a/src/public/assets/icons/icon-hamburger.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/src/public/assets/icons/icon-star.svg b/src/public/assets/icons/icon-star.svg deleted file mode 100644 index 92b786b..0000000 --- a/src/public/assets/icons/icon-star.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - diff --git a/src/public/assets/images/branding/cpp/cpp-logo.svg b/src/public/assets/images/branding/cpp/cpp-logo.svg deleted file mode 100644 index 5e11707..0000000 --- a/src/public/assets/images/branding/cpp/cpp-logo.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/public/assets/images/branding/csharp/csharp-logo.svg b/src/public/assets/images/branding/csharp/csharp-logo.svg deleted file mode 100644 index ddc79cd..0000000 --- a/src/public/assets/images/branding/csharp/csharp-logo.svg +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/public/assets/images/branding/digitalocean/digitalocean-logo.svg b/src/public/assets/images/branding/digitalocean/digitalocean-logo.svg deleted file mode 100644 index 0026c1b..0000000 --- a/src/public/assets/images/branding/digitalocean/digitalocean-logo.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/public/assets/images/branding/discord/discord-logo.svg b/src/public/assets/images/branding/discord/discord-logo.svg deleted file mode 100644 index 65c9fcc..0000000 --- a/src/public/assets/images/branding/discord/discord-logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/public/assets/images/branding/google-cloud/google-cloud-logo.svg b/src/public/assets/images/branding/google-cloud/google-cloud-logo.svg deleted file mode 100644 index 6fd725f..0000000 --- a/src/public/assets/images/branding/google-cloud/google-cloud-logo.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/public/assets/images/branding/graphql/graphql-logo.svg b/src/public/assets/images/branding/graphql/graphql-logo.svg deleted file mode 100644 index 14082a5..0000000 --- a/src/public/assets/images/branding/graphql/graphql-logo.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/public/assets/images/branding/heroku/heroku-logo.svg b/src/public/assets/images/branding/heroku/heroku-logo.svg deleted file mode 100644 index c287cd8..0000000 --- a/src/public/assets/images/branding/heroku/heroku-logo.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/src/public/assets/images/branding/java/java-logo.svg b/src/public/assets/images/branding/java/java-logo.svg deleted file mode 100644 index 28d4a95..0000000 --- a/src/public/assets/images/branding/java/java-logo.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/public/assets/images/branding/jquery/jquery-logo.svg b/src/public/assets/images/branding/jquery/jquery-logo.svg deleted file mode 100644 index 621989a..0000000 --- a/src/public/assets/images/branding/jquery/jquery-logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/public/assets/images/branding/lwjgl/lwjgl-logo.svg b/src/public/assets/images/branding/lwjgl/lwjgl-logo.svg deleted file mode 100644 index 3410765..0000000 --- a/src/public/assets/images/branding/lwjgl/lwjgl-logo.svg +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/public/assets/images/branding/monogame/monogame-logo.svg b/src/public/assets/images/branding/monogame/monogame-logo.svg deleted file mode 100644 index 226a1d2..0000000 --- a/src/public/assets/images/branding/monogame/monogame-logo.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/public/assets/images/branding/mysql/mysql-logo.svg b/src/public/assets/images/branding/mysql/mysql-logo.svg deleted file mode 100644 index 98ebde9..0000000 --- a/src/public/assets/images/branding/mysql/mysql-logo.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - diff --git a/src/public/assets/images/branding/neto/neto-logo.svg b/src/public/assets/images/branding/neto/neto-logo.svg deleted file mode 100644 index fad1b20..0000000 --- a/src/public/assets/images/branding/neto/neto-logo.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/public/assets/images/branding/nodejs/nodejs-logo.svg b/src/public/assets/images/branding/nodejs/nodejs-logo.svg deleted file mode 100644 index 0b4e0c9..0000000 --- a/src/public/assets/images/branding/nodejs/nodejs-logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/public/assets/images/branding/opengl/opengl-logo.svg b/src/public/assets/images/branding/opengl/opengl-logo.svg deleted file mode 100644 index 84c5d12..0000000 --- a/src/public/assets/images/branding/opengl/opengl-logo.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/src/public/assets/images/branding/pgsql/pgsql-logo.svg b/src/public/assets/images/branding/pgsql/pgsql-logo.svg deleted file mode 100644 index 8666f75..0000000 --- a/src/public/assets/images/branding/pgsql/pgsql-logo.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/public/assets/images/branding/php/php-logo.svg b/src/public/assets/images/branding/php/php-logo.svg deleted file mode 100644 index e4f137c..0000000 --- a/src/public/assets/images/branding/php/php-logo.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - Official PHP Logo - - - - image/svg+xml - - Official PHP Logo - - - Colin Viebrock - - - - - - - - - - - - Copyright Colin Viebrock 1997 - All rights reserved. - - - 1997 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/public/assets/images/branding/react/react-logo.svg b/src/public/assets/images/branding/react/react-logo.svg deleted file mode 100644 index b3887f3..0000000 --- a/src/public/assets/images/branding/react/react-logo.svg +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - diff --git a/src/public/assets/images/branding/redux/redux-logo.svg b/src/public/assets/images/branding/redux/redux-logo.svg deleted file mode 100644 index 62f4d5c..0000000 --- a/src/public/assets/images/branding/redux/redux-logo.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - diff --git a/src/public/assets/images/branding/shopify/shopify-logo.svg b/src/public/assets/images/branding/shopify/shopify-logo.svg deleted file mode 100644 index 7c88138..0000000 --- a/src/public/assets/images/branding/shopify/shopify-logo.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - diff --git a/src/public/assets/images/branding/twitch/twitch-logo.svg b/src/public/assets/images/branding/twitch/twitch-logo.svg deleted file mode 100644 index 905e364..0000000 --- a/src/public/assets/images/branding/twitch/twitch-logo.svg +++ /dev/null @@ -1 +0,0 @@ -Glitch \ No newline at end of file diff --git a/src/public/assets/images/branding/twitter/twitter-logo.svg b/src/public/assets/images/branding/twitter/twitter-logo.svg deleted file mode 100644 index 2832e7b..0000000 --- a/src/public/assets/images/branding/twitter/twitter-logo.svg +++ /dev/null @@ -1 +0,0 @@ -Twitter_Logo_Blue \ No newline at end of file diff --git a/src/public/assets/images/branding/typescript/typescript-logo.svg b/src/public/assets/images/branding/typescript/typescript-logo.svg deleted file mode 100644 index bbf2809..0000000 --- a/src/public/assets/images/branding/typescript/typescript-logo.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - diff --git a/src/public/assets/images/branding/unity/unity-logo.svg b/src/public/assets/images/branding/unity/unity-logo.svg deleted file mode 100644 index 88622dd..0000000 --- a/src/public/assets/images/branding/unity/unity-logo.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/public/assets/images/branding/webpack/webpack-logo.svg b/src/public/assets/images/branding/webpack/webpack-logo.svg deleted file mode 100644 index 8f7eaa5..0000000 --- a/src/public/assets/images/branding/webpack/webpack-logo.svg +++ /dev/null @@ -1 +0,0 @@ -icon \ No newline at end of file diff --git a/src/public/assets/images/people/dominic/head.png b/src/public/assets/images/people/dominic/head.png deleted file mode 100644 index 7451356..0000000 Binary files a/src/public/assets/images/people/dominic/head.png and /dev/null differ diff --git a/src/public/assets/images/websites/bundlfresh.jpg b/src/public/assets/images/websites/bundlfresh.jpg deleted file mode 100644 index 407ee02..0000000 Binary files a/src/public/assets/images/websites/bundlfresh.jpg and /dev/null differ diff --git a/src/public/assets/images/websites/cocksox.jpg b/src/public/assets/images/websites/cocksox.jpg deleted file mode 100644 index a9d4e5d..0000000 Binary files a/src/public/assets/images/websites/cocksox.jpg and /dev/null differ diff --git a/src/public/assets/images/websites/domsPlace.jpg b/src/public/assets/images/websites/domsPlace.jpg deleted file mode 100644 index e568b28..0000000 Binary files a/src/public/assets/images/websites/domsPlace.jpg and /dev/null differ diff --git a/src/public/assets/images/websites/earjobs.jpg b/src/public/assets/images/websites/earjobs.jpg deleted file mode 100644 index 2df533c..0000000 Binary files a/src/public/assets/images/websites/earjobs.jpg and /dev/null differ diff --git a/src/public/assets/images/websites/kopalife.jpg b/src/public/assets/images/websites/kopalife.jpg deleted file mode 100644 index 55377de..0000000 Binary files a/src/public/assets/images/websites/kopalife.jpg and /dev/null differ diff --git a/src/public/assets/images/websites/solinvictus.jpg b/src/public/assets/images/websites/solinvictus.jpg deleted file mode 100644 index 76388d6..0000000 Binary files a/src/public/assets/images/websites/solinvictus.jpg and /dev/null differ diff --git a/src/public/assets/images/websites/stateofescape.jpg b/src/public/assets/images/websites/stateofescape.jpg deleted file mode 100644 index 5fdb7bc..0000000 Binary files a/src/public/assets/images/websites/stateofescape.jpg and /dev/null differ diff --git a/src/public/assets/logo.svg b/src/public/assets/logo.svg deleted file mode 100644 index 4d5cae4..0000000 --- a/src/public/assets/logo.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/src/public/assets/navigation/about-me.svg b/src/public/assets/navigation/about-me.svg deleted file mode 100644 index eaca7e5..0000000 --- a/src/public/assets/navigation/about-me.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/src/public/assets/navigation/about.jpg b/src/public/assets/navigation/about.jpg deleted file mode 100644 index abcf23e..0000000 Binary files a/src/public/assets/navigation/about.jpg and /dev/null differ diff --git a/src/public/assets/navigation/blog.svg b/src/public/assets/navigation/blog.svg deleted file mode 100644 index 29297cf..0000000 --- a/src/public/assets/navigation/blog.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/public/assets/navigation/box.ai b/src/public/assets/navigation/box.ai deleted file mode 100644 index 2b10fbf..0000000 --- a/src/public/assets/navigation/box.ai +++ /dev/null @@ -1,2392 +0,0 @@ -%PDF-1.5 % -1 0 obj <>/OCGs[6 0 R 7 0 R 38 0 R 39 0 R 69 0 R 70 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream - - - - - application/pdf - - - Web - - - Adobe Illustrator CC 22.1 (Windows) - 2019-05-28T08:15:32+10:00 - 2019-05-28T08:16:31+10:00 - 2019-05-28T08:16:31+10:00 - - - - 256 - 256 - JPEG - /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A5ZXPUH0F1cVdXFXVxV1c VdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXV xV1cVdXFXVxV1cVW1wMXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cV dXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxVquBDq4q6uKurirq4q6uKurirq4q6u Kurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq 4qtrgQ6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q 6uKurirq4q6uKurirq4q6uKurirq4q6uKtVwIdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1c VdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFWq4GLq4q6uKu rirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q 6uKurirq4q6uKurirq4qtrih1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1c VdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVargQ6uKurirq4q6uKurirq4q6 uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurir q4q6uKra4EOrirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4 q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirVcDF1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVd XFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVW1wIdXF XVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1c VdXFXVxV1cVdXFXVxV1cVdXFWq4EOrirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6 uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirWBi7FXYq7FXYq7FXYq7F XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FWq4FdXFXVxV1cVdX FXVxV1cVdXFXVxVF6PZQ3+r2NjPdR2UN3cRQS3kxAjhWRwrSuSVHFAeR3GQyTMYkgXQ5MZyoE83t +n/84si+jE8Hm62ntDX9/b23rLsK7EThfxzST7c4djA37/2Orl2pX8P4+Sp/0Kvav8Fv5yhlmP2I /qgFfuuWP4YP5dPXH9v7EfyoesPt/Ywj8wfyK84eTbJtTcxalpKU9a7tuQaKpoDLGwqAT3FR40zO 0namPMeH6ZeblafXQyGuRY15E8w6DoWu/Xdc0aPXbAxNE1nKVADMQRIOSuCVp09+uZOqxTyQqEuE 97fnxynGonhL3n8x/L3kOb8jrzzPonl6z06a9gsbi3kWCITxCW6hBAcCq/CxB4nfNBo82UaoY5SJ onrtyLqdNkyDOIykTV/c+ZK507vHVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdX FXVxVbXFi6uKurirq4q6uKurirq4q6uKurirq4q+of8AnGf/AMlXrf8A20br/qDt85ftn/GI/wBU feXR9pf3o9w+8vl8MQQQaEbgjOnd4+tvyg1S/wBe/JW4bzG7XUIjvbb156u0lqiEVYmvLjVl+jOS 7QgMepHBtyPxdBq4iOf0+T5IrnXO/fUPmz/1leD/ALZ2mf8AUVBnL4P8f/zpfcXR4v8AG/ifuL5f UMzBVBLE0AG5JOdO7y3tflT/AJxyLaMut+eNXTy/ZuocW7FEkRW6etJMQkZ/yaE+NDtmlz9r+rhx R4z+OTrcvaPq4cY4inKf849flx5gtZf8G+bzdXcS1KvJb3ag1/bWEROgPjT78p/lbNjP72FD4j72 r+UMkD64/oeI+a/K2teVtbn0bWIfRvIDWqmqSIfsyRttyVu3475u8GeOWIlHk7PFljOPEOTMfyr/ ACW1fzzHJqM1yumaDA5R7xl5vI6irLEhKj4R9piaD33zD13aUcHpA4p9zj6rWDFtzkza2/KH8hbu 7GlWvnWaTVnb046XFsY2krSi/ugGr0AEm+YJ7Q1YHEcfp9x/X+hxjq9QBZht8W9Y/wCcbPKWg2q3 OuedksIXYrHJPBHCGPXioaarEDrTHH2xkyGoY7+P7Fh2jORqMLeGaxbWdpq99a2NyLyyt7iWK1vA OImiRyqSU7c1AbN7jkTEEijTs4SJAJ2KDrk2Tq4q6uKurirq4q6uKurirq4q6uKtVwIdXFXVxV1c VdXFXVxV1cVdXFXVxV1cVfU3/OL3on8stXE5pD+k7j1SK7L9Ut+XT2zlu2r8eNfzR95dH2l/ej3f pLGNP0v/AJxQ+tp/uUmn32juPr8cZ/1m9KL/AIlmVPJr65f7n9bfKerrl9zKvzbHm65/L70Py/hs ZfJZt+Mzac5e4a2X7axooCCPqHCEt1r3zE0HhjNea/Evryto0vAMl5L4/N8rVzqnePqLzZ/6ytB/ 2ztM/wCoqDOXwf4//nS+4ukxf418T9xeS/8AOPvl221v8zLAXUYlt9Ojkv3jIqC0VFjr8pHU5tu1 cxhgNddnP1+QxxGuuyc/85OeZ7y/8+foP1SLHR4YgsAqF9adBKzkdzwdRlPY2ERxcfWTX2bjAx8X UvOfJPma88teadN1m1kMZtZ0MwBIDwlgJUanVWSoObHU4RkxmJ6uXmxicDEvev8AnLHQ4G0jRNdV AJ4bh7GSQdWSVDKin/VMTU+ZzQ9hZTxSh5W6vsue5j8Ufe+pp/8Aziwp0o8XfTYTIU22ubhfrXSn 7Mj1yEfVr/V/O+4bMBvqt+/+x8tgkGo651DvH1J+ccsl9/zj7pV5qZLag8OmTsW6/WJI19Q713o7 5y/Z44dWRHl6vk6PSbaggct3y3XOod46uKurirq4q6uKurirq4q6uKurirq4qtrgQ6uKurirq4q6 uKurirq4q6uKurirq4q+o/8AnGb/AMlVrn/bRuv+oO3zmO2f7+P9UfeXSdo/3o9w+8vlyudO7t9L /wDOJU2pNo/mGOUsdOjntzag14iZkk9bj/sRHXOb7dEeKPfR/Z+l03alXHveA+c4bKDzhrsNgALG LULtLUL09JZ3CU/2NM32nJOOJPPhH3O1wkmAvnQfRXmz/wBZVg/7Z2mf9RUGc9g/x/8AzpfcXUYv 8a+J+4vOv+cXr6O2/MuSFyA17p1xBHXuyvHNt/sYjmw7ajeG+6QcztIXj9xQX/OSWmz2n5q39zIp EeoQW1xCT0KrCsBp/soTlnZEwcAHcT+v9LLs+V4gO551o+nT6pq1lpsClpr2eO3jVRUlpXCin35s MkxGJkejlzlwgnufSP8AzllqsMflnRNK5D1ri9a6Cd+METR1++fOc7Dh65S8q+f9jp+zI+onyWf8 45+Z5NW8i6x5e120E2g6RG4a8k+KM284d5Ld16txHJtuxp4VPa2HgyxnA+uX3jqnX4+GYlE+opKn lf8A5xdsr0ao/mCe4t1b1F00vJJFtuFKJB65HsXy7x9dIcPD8fwabPF1RFV8WK/nX+cdt50Fpo+i QPa+XrBvUX1AEeaUKUVuCkhERSQo99/AZXZ3Z5w3KRuZb9HpfDsy+ovKa5tXOdXFXVxV1cVdXFXV xV1cVdXFXVxV1cVargYurirq4q6uKurirq4q6uKurirq4qjdEi0ubWbCLV5nt9KkuYU1C4jBLx27 SASugCyfEqVI+E/I5DIZCJ4fqrb3sZk0a5vp/wAm/mN/zj95Q0KbRNI1yUWVxI80/rW987s8iLGx r6Ap8MY6DOa1Gk1eWXFKO/vH63TZcGfJLiI3+H62KCH/AJxHiPqfWJpuO/pU1T4vb7CfrzKvtA9P 9y33qvxSv5i/5yH8oaH5dfQfy60xrc8GSG6aMQQwl+siJUvI/er033NemRxdlZJz48xRj0M5S4sh eO+QbbyTe+Y6ed9QnsdH9N5HnhV3d5qjih4RzNRqmp4/Tm31Usoh+6FydhmMxH0Cy+h778yP+cfb 3yWPJs+tSfoRYYoFjW3vxIEgdXj+P0a1DIDnPx0mrjk8QR9Xvj+t1McGcT469XweA6pqmh+VPP0e qeQdQlvNPsHjmsbq5VgzEqPUjdWSFiu7IfhFRm+hCWXFw5RRPP8AG7tIxlPHWQbl7jqPnL8kfzY0 e1TzJd/oTVbaoQzSCCWEvTkEndTC6Ej9r7hmkhp9TpZHgHFE/jlzdbHFmwH07hAaJaf84+flrdnW 49dOv6vbqfqixyR3ZVmH+6lgVYlam3J229ssyS1eoHDw8Mfl97Ocs+YcNcIeL/mR+YGp+ePMsusX i+jCo9KxsweSwwKSVWu1WNas3c+1Bm40mljhhwj4uw0+EY40Hun5DTpZflNqsfmSxOl+XJvXlbWZ HWNZ4p1EL0X+8qPsq1Dy2A3zSdpji1A4DxT227nW60XlHCbl3Ma/RX/OJ3/V6vP+Avv+yfMnxNf/ ADR/sf1t3Hqu4fZ+tF6j+QHkXzL5em1n8uNae6li5cbaV1ljd1FfSqVjkic7U51/jkIdqZcc+HNG vx9rGOunCVZA+fWDKxVgQwNCDsQRm/t2ltVxV1cVdXFXVxV1cVdXFXVxV1cVdXFWq4EOrirq4q6u Kurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKvrnzr5bk/ML8ltKtvJ8kRWNLW e3tQ6ojrBEY2tix+FWQt0NPiXfOU0+bwNSTk8/7XR4snhZiZvnxvyU/NRZvRPly651pUemV/4MNx /HN//KOD+cHafm8X857v+U3ly5/KbyJrOs+cZ47Rrl0m+prIrlfSQhI+Q+FpZGYjipPbfw0euzDV ZYxx71+Pk63U5PHmBB8r3Vw1xdTXDAK0ztIVXYAsSaAD5508RQp3I2ClXCl1cVdXFXVxV1cVdXFX VxV1cVdXFVtcCHVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFU68 u+dPNflt2bQ9VubAOeTxxORGxHdozVG+kZTl0+PJ9QBa54oz+oWyg/8AOQH5vGH0v8QNxpSotrQN t/l+jy/HMb+TNP8AzftP62n8ni7vvYlr/mvzL5hnWfW9TuNQkT+79eRnVP8AUU/Cv0DMrFhhjFRA DfDHGPIUlVctZurirq4q6uKurirq4q6uKurirq4q6uKtVwIdXFXVxV1cVdXFXVxV1cVdXFXVxV1c VdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFVt cUOrirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurir q4q6uKurirq4q6uKurirq4q6uKurirWBDsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVd irsVdirsVdirsVdirsVdirsVdirsVdirsVargYurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6 uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirVcCHVxV1cV dXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVx V1cVdXFXVxV1cVdXFXVxVbXAh1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1 cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVdXFXVxV1cVargQ6uKurirq4q6uKurirq4q 6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKuri rq4q6uKra4GLq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6 uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q1gQ7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FWq4EOrirq4q6uKurirq4q6uKurirq4q6u Kurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirV cUOrirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurir q4q6uKurirq4q6uKurirq4q6uKuriq2uBDq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4 q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q6uKurirq4q//Z - - - - proof:pdf - uuid:65E6390686CF11DBA6E2D887CEACB407 - xmp.did:079fd8de-a583-2942-874f-6bc022577313 - uuid:3b2497b7-ffde-4346-970b-7f89060a84bd - - xmp.iid:ec1848df-7b09-434c-b76d-20ca9aeedb1f - xmp.did:ec1848df-7b09-434c-b76d-20ca9aeedb1f - uuid:65E6390686CF11DBA6E2D887CEACB407 - proof:pdf - - - - - saved - xmp.iid:ec1848df-7b09-434c-b76d-20ca9aeedb1f - 2019-05-28T08:06:25+10:00 - Adobe Illustrator CC 22.1 (Windows) - / - - - saved - xmp.iid:079fd8de-a583-2942-874f-6bc022577313 - 2019-05-28T08:15:32+10:00 - Adobe Illustrator CC 22.1 (Windows) - / - - - - Web - Document - 1 - False - False - - 256.000000 - 256.000000 - Pixels - - - - - Bitter-Regular - Bitter - Regular - Open Type - Version 1.300;PS 001.300;hotconv 1.0.70;makeotf.lib2.5.58329 DEVELOPMENT - False - Bitter-Regular.otf - - - - - - Cyan - Magenta - Yellow - Black - - - - - - Default Swatch Group - 0 - - - - White - RGB - PROCESS - 255 - 255 - 255 - - - Black - RGB - PROCESS - 0 - 0 - 0 - - - RGB Red - RGB - PROCESS - 255 - 0 - 0 - - - RGB Yellow - RGB - PROCESS - 255 - 255 - 0 - - - RGB Green - RGB - PROCESS - 0 - 255 - 0 - - - RGB Cyan - RGB - PROCESS - 0 - 255 - 255 - - - RGB Blue - RGB - PROCESS - 0 - 0 - 255 - - - RGB Magenta - RGB - PROCESS - 255 - 0 - 255 - - - R=193 G=39 B=45 - RGB - PROCESS - 193 - 39 - 45 - - - R=237 G=28 B=36 - RGB - PROCESS - 237 - 28 - 36 - - - R=241 G=90 B=36 - RGB - PROCESS - 241 - 90 - 36 - - - R=247 G=147 B=30 - RGB - PROCESS - 247 - 147 - 30 - - - R=251 G=176 B=59 - RGB - PROCESS - 251 - 176 - 59 - - - R=252 G=238 B=33 - RGB - PROCESS - 252 - 238 - 33 - - - R=217 G=224 B=33 - RGB - PROCESS - 217 - 224 - 33 - - - R=140 G=198 B=63 - RGB - PROCESS - 140 - 198 - 63 - - - R=57 G=181 B=74 - RGB - PROCESS - 57 - 181 - 74 - - - R=0 G=146 B=69 - RGB - PROCESS - 0 - 146 - 69 - - - R=0 G=104 B=55 - RGB - PROCESS - 0 - 104 - 55 - - - R=34 G=181 B=115 - RGB - PROCESS - 34 - 181 - 115 - - - R=0 G=169 B=157 - RGB - PROCESS - 0 - 169 - 157 - - - R=41 G=171 B=226 - RGB - PROCESS - 41 - 171 - 226 - - - R=0 G=113 B=188 - RGB - PROCESS - 0 - 113 - 188 - - - R=46 G=49 B=146 - RGB - PROCESS - 46 - 49 - 146 - - - R=27 G=20 B=100 - RGB - PROCESS - 27 - 20 - 100 - - - R=102 G=45 B=145 - RGB - PROCESS - 102 - 45 - 145 - - - R=147 G=39 B=143 - RGB - PROCESS - 147 - 39 - 143 - - - R=158 G=0 B=93 - RGB - PROCESS - 158 - 0 - 93 - - - R=212 G=20 B=90 - RGB - PROCESS - 212 - 20 - 90 - - - R=237 G=30 B=121 - RGB - PROCESS - 237 - 30 - 121 - - - R=199 G=178 B=153 - RGB - PROCESS - 199 - 178 - 153 - - - R=153 G=134 B=117 - RGB - PROCESS - 153 - 134 - 117 - - - R=115 G=99 B=87 - RGB - PROCESS - 115 - 99 - 87 - - - R=83 G=71 B=65 - RGB - PROCESS - 83 - 71 - 65 - - - R=198 G=156 B=109 - RGB - PROCESS - 198 - 156 - 109 - - - R=166 G=124 B=82 - RGB - PROCESS - 166 - 124 - 82 - - - R=140 G=98 B=57 - RGB - PROCESS - 140 - 98 - 57 - - - R=117 G=76 B=36 - RGB - PROCESS - 117 - 76 - 36 - - - R=96 G=56 B=19 - RGB - PROCESS - 96 - 56 - 19 - - - R=66 G=33 B=11 - RGB - PROCESS - 66 - 33 - 11 - - - - - - Grays - 1 - - - - R=0 G=0 B=0 - RGB - PROCESS - 0 - 0 - 0 - - - R=26 G=26 B=26 - RGB - PROCESS - 26 - 26 - 26 - - - R=51 G=51 B=51 - RGB - PROCESS - 51 - 51 - 51 - - - R=77 G=77 B=77 - RGB - PROCESS - 77 - 77 - 77 - - - R=102 G=102 B=102 - RGB - PROCESS - 102 - 102 - 102 - - - R=128 G=128 B=128 - RGB - PROCESS - 128 - 128 - 128 - - - R=153 G=153 B=153 - RGB - PROCESS - 153 - 153 - 153 - - - R=179 G=179 B=179 - RGB - PROCESS - 179 - 179 - 179 - - - R=204 G=204 B=204 - RGB - PROCESS - 204 - 204 - 204 - - - R=230 G=230 B=230 - RGB - PROCESS - 230 - 230 - 230 - - - R=242 G=242 B=242 - RGB - PROCESS - 242 - 242 - 242 - - - - - - Web Color Group - 1 - - - - R=63 G=169 B=245 - RGB - PROCESS - 63 - 169 - 245 - - - R=122 G=201 B=67 - RGB - PROCESS - 122 - 201 - 67 - - - R=255 G=147 B=30 - RGB - PROCESS - 255 - 147 - 30 - - - R=255 G=29 B=37 - RGB - PROCESS - 255 - 29 - 37 - - - R=255 G=123 B=172 - RGB - PROCESS - 255 - 123 - 172 - - - R=189 G=204 B=212 - RGB - PROCESS - 189 - 204 - 212 - - - - - - - Adobe PDF library 15.00 - - - - - - - - - - - - - - - - - - - - - - - - - -endstream endobj 3 0 obj <> endobj 9 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>/Shading<>>>/Thumb 77 0 R/TrimBox[0.0 0.0 256.0 256.0]/Type/Page>> endobj 72 0 obj <>stream -H] -0,g -endstream endobj 77 0 obj <>stream -8;X.&JITC;#R%VF(`>fPAY#hmX]kNJn_oH>%OhQS987>@XBr"dn\^Z.h0S,U^@?,dr0ZI4X`dlXl'pi`Q(Mp)1S+)f=^anFb#6n -"or[/7!S~> -endstream endobj 78 0 obj [/Indexed/DeviceRGB 255 79 0 R] endobj 79 0 obj <>stream -8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 -b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` -E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn -6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( -l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> -endstream endobj 76 0 obj <> endobj 74 0 obj [/ICCBased 81 0 R] endobj 80 0 obj <> endobj 82 0 obj <> endobj 83 0 obj <> endobj 81 0 obj <>stream -HyTSwoɞc [5laQIBHADED2mtFOE.c}08׎8GNg9w߽'0 ֠Jb  - 2y.-;!KZ ^i"L0- @8(r;q7Ly&Qq4j|9 -V)gB0iW8#8wթ8_٥ʨQQj@&A)/g>'Kt;\ ӥ$պFZUn(4T%)뫔0C&Zi8bxEB;Pӓ̹A om?W= -x-[0}y)7ta>jT7@tܛ`q2ʀ&6ZLĄ?_yxg)˔zçLU*uSkSeO4?׸c. R ߁-25 S>ӣVd`rn~Y&+`;A4 A9=-tl`;~p Gp| [`L`< "A YA+Cb(R,*T2B- -ꇆnQt}MA0alSx k&^>0|>_',G!"F$H:R!zFQd?r 9\A&G rQ hE]a4zBgE#H *B=0HIpp0MxJ$D1D, VĭKĻYdE"EI2EBGt4MzNr!YK ?%_&#(0J:EAiQ(()ӔWT6U@P+!~mD eԴ!hӦh/']B/ҏӿ?a0nhF!X8܌kc&5S6lIa2cKMA!E#ƒdV(kel }}Cq9 -N')].uJr - wG xR^[oƜchg`>b$*~ :Eb~,m,-ݖ,Y¬*6X[ݱF=3뭷Y~dó ti zf6~`{v.Ng#{}}jc1X6fm;'_9 r:8q:˜O:ϸ8uJqnv=MmR 4 -n3ܣkGݯz=[==<=GTB(/S,]6*-W:#7*e^YDY}UjAyT`#D="b{ų+ʯ:!kJ4Gmt}uC%K7YVfFY .=b?SƕƩȺy چ k5%4m7lqlioZlG+Zz͹mzy]?uuw|"űNwW&e֥ﺱ*|j5kyݭǯg^ykEklD_p߶7Dmo꿻1ml{Mś nLl<9O[$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! -zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km -endstream endobj 69 0 obj <> endobj 70 0 obj <> endobj 86 0 obj [/View/Design] endobj 87 0 obj <>>> endobj 84 0 obj [/View/Design] endobj 85 0 obj <>>> endobj 68 0 obj <> endobj 88 0 obj <> endobj 89 0 obj <>stream -H,PaHqvd+9U d4&2ɾ> endobj 73 0 obj <> endobj 90 0 obj <> endobj 91 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 17.0 -%%AI8_CreatorVersion: 22.1.0 -%%For: (Dominic Masters) () -%%Title: (box.ai) -%%CreationDate: 5/28/2019 8:16 AM -%%Canvassize: 16383 -%%BoundingBox: 0 -256 256 0 -%%HiResBoundingBox: 0 -256 256 0 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%AI5_FileFormat 13.0 -%AI12_BuildNumber: 312 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Registration]) -%AI3_Cropmarks: 0 -256 256 0 -%AI3_TemplateBox: 128.5 -128.5 128.5 -128.5 -%AI3_TileBox: -161.200006484985 -540.499969482422 417.199981689453 284.499994277954 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 2 -%AI17_Begin_Content_if_version_gt:17 1 -%AI9_OpenToView: -102 257.680272108842 2.94 2234 1618 18 0 0 117 140 0 0 0 1 1 0 1 1 0 1 -%AI17_Alternate_Content -%AI9_OpenToView: -102 257.680272108842 2.94 2234 1618 18 0 0 117 140 0 0 0 1 1 0 1 1 0 1 -%AI17_End_Versioned_Content -%AI5_OpenViewLayers: 77 -%%PageOrigin:-272 -428 -%AI7_GridSettings: 72 8 72 8 1 0 0.800000011920929 0.800000011920929 0.800000011920929 0.899999976158142 0.899999976158142 0.899999976158142 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments - -endstream endobj 92 0 obj <>stream -%%BoundingBox: 0 -256 256 0 -%%HiResBoundingBox: 0 -256 256 0 -%AI7_Thumbnail: 128 128 8 -%%BeginData: 29521 Hex Bytes -%0000330000660000990000CC0033000033330033660033990033CC0033FF -%0066000066330066660066990066CC0066FF009900009933009966009999 -%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 -%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 -%3333663333993333CC3333FF3366003366333366663366993366CC3366FF -%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 -%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 -%6600666600996600CC6600FF6633006633336633666633996633CC6633FF -%6666006666336666666666996666CC6666FF669900669933669966669999 -%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 -%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF -%9933009933339933669933999933CC9933FF996600996633996666996699 -%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 -%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF -%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 -%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 -%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF -%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC -%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 -%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 -%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 -%000011111111220000002200000022222222440000004400000044444444 -%550000005500000055555555770000007700000077777777880000008800 -%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB -%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF -%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF -%524C45FD806C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C -%476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C -%6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C -%476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C -%6B6C476C6B6C476C6B6C476C6B6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C -%6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B -%6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C -%6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B -%6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C47FD -%816C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C -%6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C -%476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C -%6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C -%476C6B6C476C6B6C47FD046C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C -%6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C -%6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C -%6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C -%6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C47FD046C6B6C6C -%6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B -%6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C -%6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B -%6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C -%6C6B476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C6C476C6C6C476C6C6C476C6C6C476C6C6C476C6C -%6C476C6C6C476C6C6C476C6C6C476C6C6C476C6C6C476C6C6C476C6C6C47 -%6C6C6C476C6C6C476C6C6C476C6C6C476C6C6C476C6C6C476C6C6C476C6C -%6C476C6C6C476C6C6C476C6C6C476C6C6C476C6C6C476C6C6C476C6C6C47 -%6C6C6C476C6C6C476C6C6C476C6C6C476C6C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C6C6B6C6C -%6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B -%6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C -%6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B -%6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C6C6B6C6C -%6C6B6C6C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C6C6B6C476C6B6C476C6B6C476C6B6C476C6B -%6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C47 -%6C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B -%6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C47 -%6C6B6C476C6B6C476C6B6C476C6B6C476C6B6C47476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C6C6B -%6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C47 -%6C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B -%6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C47 -%6C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B -%6C476C6B6C47476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C6C476C6B6C476C6B6C476C6B6C476C6B -%6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C47 -%6C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B -%6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C47 -%6C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C47 -%6C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B -%6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C47 -%6C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B -%6C476C6B6C476C6B476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C6C6B6C476C6B6C476C6B6C476C6B -%6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C47 -%6C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B -%6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C47 -%6C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C47476C476B476C -%476B476C476B476C476B476C476B476C476B476C476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B476C476B476C476B476C476B476C476B476C476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B6C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C47 -%6C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B -%6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C47 -%6C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B6C476C6B -%6C476C6B6C476C6B6C47476C476B476C476B476C476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B476C476B476C476B476C476B476C476B476C476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B476C476B476C476B476C476B476C476B6C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C47476B476C -%476B476C476B476C476B476C476B476C476B476C476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B476C476B476C476B476C476B476C476B476C476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B476C6C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C47476B476C476B476C476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B476C476B476C476B476C476B476C476B476C476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B476C476B476C476B476C476B476C476B476C6C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C47476C -%476B476C476B476C476B476C476B476C476B476C476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B476C476B476C476B476C476B476C476B476C476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B476C476B6C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C47476C476B476C476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B476C476B476C476B476C476B476C476B476C476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B476C476B476C476B476C476B476C476B476C476B6C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476CFD -%04476B4747476B4747476B4747476B4747476B4747476B4747476B474747 -%6B4747476B4747476B4747476B4747476B4747476B4747476B4747476B47 -%47476B4747476B4747476B4747476B4747476B4747476B4747476B474747 -%6B4747476B4747476B4747476B4747476B4747476B4747476B4747476B47 -%47476B4747476B6C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476C476C476C476C476C476C476C476C476C -%476C476C476C476C476C476C476CFD04476C4747476C4747476C4747476C -%4747476C4747476C4747476C4747476C4747476C4747476C4747476C4747 -%476C4747476C4747476C4747476C4747476C4747476C4747476C4747476C -%4747476C4747476C4747476C4747476C4747476C4747476C4747476C4747 -%476C4747476C4747476C4747476C4747476C4747476C6C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%476B4747476B4747476B4747476B4747476B4747476B4747476B4747476B -%4747476B4747476B4747476B4747476B4747476B4747476B4747476B4747 -%476B4747476B4747476B4747476B4747476B4747476B4747476B4747476B -%4747476B4747476B4747476B4747476B4747476B4747476B4747476B4747 -%476B4747476B47476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C47476B4747476B4747476B4747476B -%4747476B4747476B4747476B4747476B4747476B4747476B4747476B4747 -%476B4747476B4747476B4747476B4747476B4747476B4747476B4747476B -%4747476B4747476B4747476B4747476B4747476B4747476B4747476B4747 -%476B4747476B4747476B4747476B4747476B4747476B47476B476C476B47 -%6C476B476C476B476C476B476C476B476C476B476C476B476C476B476C47 -%6B476C476B476C476B476C476B476C476B476C476B476C476B476C476B47 -%6C476B476C476B476C476B476C476B476C476B476C476B476C476B476C47 -%6B476C476B476C476B476C476B476C476B476C476B476C476B476C476B47 -%6CFD81476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476C476C476C476C476C476C476C476C476C476C47 -%6C476C476C476C476C476CFD04476B4747476B4747476B4747476B474747 -%6B4747476B4747476B4747476B4747476B4747476B4747476B4747476B47 -%47476B4747476B4747476B4747476B4747476B4747476B4747476B474747 -%6B4747476B4747476B4747476B4747476B4747476B4747476B4747476B47 -%47476B4747476B4747476B4747476B4747476B6C476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B476C476B476C476B476C476B476C476B476C476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B476C476B476C476B476C476B476C476B476C476B476C476BFD81476C -%476B476C476B476C476B476C476B476C476B476C476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B476C476B476C476B476C476B476C476B476C476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B476C476BFD83476C4747476C4747476C4747476C4747476C4747476C -%4747476C4747476C4747476C4747476C4747476C4747476C4747476C4747 -%476C4747476C4747476C4747476C4747476C4747476C4747476C4747476C -%4747476C4747476C4747476C4747476C4747476C4747476C4747476C4747 -%476C4747476C4747476C4747476CFD3B4722FD45476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B476C4747476C476B476C476B4772789C78A2476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B476C476B476C476B476C -%476B476C476B476C476B476C476B476C476B476C476B476C476B476CFD2C -%4771FD0A4777FD04FF71FD44476B4747476B4747476B4747476B4747476B -%4747476B4747476B4747476B4747476B4747476B474778FFA9CBFD04FFA9 -%CB786B476B476B47A3FFFF476B4747476B4747476B4747476B4747476B47 -%47476B4747476B4747476B4747476B4747476B4747476B4747476B474747 -%6B4747476B4747476B4747476B4747476BFD2A4772A2FFFFFFA8CBA8FFFF -%FFA8FD054771FFCBFD45476C476B476C476B476C476B476C476B476C476B -%476C476B476C476B476C476B476C476B476C476B47479CFFA972476B47A3 -%FFFFA247476B479CFFFF476B476B476CFD07476C476B476C476BFD05476B -%4747476B476B476C476B476C476B476C476B476C476B476C476B476C476B -%476C476B476C476B476C476BFD294722A2FFCBFD0547CBFFCBFD044777FF -%CBFD084778789C71FD08477177A2787847724D71FD2A476B4747476B4747 -%476B4747476B4747476B4747476B4747476B4747476B4747476B4747476B -%474778FFA947476B4747A2FFA947476B4778FFFF4747476B4747A2FD05FF -%A972476B474747A3FD09FFA2476B4747476B4747476B4747476B4747476B -%4747476B4747476B4747476B4747476B4747476BFD294722A2FFCBFD0547 -%A9FFA9FD044777FFA8FD0547A2FFA8A271A2A8FFFF71224747A2FFFF7871 -%4DA9FFFFA278FD2A476B4747476B4747476B4747476B4747476B4747476B -%4747476B4747476B4747476B4747476B474778FFA9FD0447A2FFFF724747 -%6B479CFFFFFD0447A2FFCB7247474772CBFFA8474772FFFF78FD0447FFFF -%A34747476B4747476B4747476B4747476B4747476B4747476B4747476B47 -%47476B4747476B4747476BFD2A47A2FFFFA2A9A2FFFFCB4DFD054777FFA9 -%4D474747FFFF7822474747229CFFFF474771FFCB71FD044778FFA8FD5247 -%78FD07FFA272FD05479CFFFF47474778FFFF71FD05474DFFFF78229CFFFF -%FD0547A2FFCBFD514722A2FFCB4747477178FFFF782247474771FFCB4746 -%4777FFA8FD0747A8FF784771FFFF712247474778FFA24746FD27476B4747 -%476B4747476B4747476B4747476B4747476B4747476B4747476B4747476B -%4747476BFD044778FFA8FD054778FFFF724747479CFFFF474747A2FFFF47 -%47476B474747FFFFA22372FFFFA2FD0447FFFFA2476B4747476B4747476B -%4747476B4747476B4747476B4747476B4747476B4747476B4747476BFD2B -%4722A2FFCBFD0447464DFFFF7847474777FFCB47474778FFA94DFD0647A9 -%FF784722A2FFFFA2A278FFFFCBFD534778FFA9FD0647FFFFA223474778FF -%FF47474778FFFF4DFD054771FFFF78474747CBFD05FFA2FD2D4746474747 -%464747474647474746474747464747474647474746474747464747474647 -%4747464722A2FFCB474722472272FFFF7147464771FFA8FD0447FFFF7822 -%4747472278FFFF4747224DFFA947714D4722474647474746474747464747 -%474647474746474747464747474647474746474747464747474647474746 -%FD274771474778FFA947474D4778CBFFFF7147472378FFFFFD0447A9FFCB -%7247472372FFFF78474747A2FFA2FD56472278A2FFFFFFA8CBA8FD04FF78 -%224747A2A9FFFFCB78472272FFFFA8A271A2A8FFA847224747A2FFFFA2A9 -%A2A9A2A24DFD504778FD07FFA9CBA27147474778FD06FF4D474778A9FD05 -%FFA24DFD04474DFD09FF77FD284722474747224747472247474722474747 -%224747472247474722474747224747472247474722FD0B472247224722FD -%0B4722474D787778474722FD0447CBFF7846FD0447A8FFFFFD0447224747 -%472247474722474747224747472247474722474747224747472247474722 -%FD464723FD0847A9FFA922FD05474DFFFF78FD2747464747474647474746 -%474747464747474647474746474747464747474647474746474747464747 -%474647474746474747464747474647474746474747464747474647474746 -%47474746474747A8FF7847224747472271FFFFFD04474647474746474747 -%46474747464747474647474746474747464747474647474746FD4F47A9FF -%FF71FD044771A2FFA8FD2847464722474647224746472247464722474647 -%224746472247464722474647224746472247464722474647224746472247 -%464722474647224746472247464722474647224746472247464722474DFF -%FFFFA8A8A2CBFFFFA84D2247224746472247464722474647224746472247 -%46472247464722474647224746472247464722FD4E474DA2A9FD04FFCB78 -%4DFD2B472247474722474747224747472247474722474747224747472247 -%474722474747224747472247474722474747224747472247474722474747 -%224747472247474722474747224747472247474722FD0547224722474747 -%224747472247474722474747224747472247474722474747224747472247 -%47472247474722FD81472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%2247224722472247224722472247224722FD814722474747224747472247 -%474722474747224747472247474722474747224747472247474722474747 -%224747472247474722474747224747472247474722474747224747472247 -%474722474747224747472247474722474747224747472247474722474747 -%22474747224747472247474722474747224747472247474722FD83472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%2247224722FD814722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722FD0447464747474647474746474747 -%464747474647474746474747464747474647474746474747464747474647 -%474746474747464747474647474746474747464747474647474746474747 -%464747474647474746474747464747474647474746474747464747474647 -%474746474747464747474647474746474747464747474622472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%FD8147224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224747224747472247474722474747224747472247 -%474722474747224747472247474722474747224747472247474722474747 -%224747472247474722474747224747472247474722474747224747472247 -%474722474747224747472247474722474747224747472247474722474747 -%224747472247474722474747224747472247472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247474647 -%474746474747464747474647474746474747464747474647474746474747 -%464747474647474746474747464747474647474746474747464747474647 -%474746474747464747474647474746474747464747474647474746474747 -%464747474647474746474747464747474647474746474747464747474647 -%474746474722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722FD0447224747472247474722474747224747 -%472247474722474747224747472247474722474747224747472247474722 -%474747224747472247474722474747224747472247474722474747224747 -%472247474722474747224747472247474722474747224747472247474722 -%474747224747472247474722474747224747472222472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722FD0447 -%224747472247474722474747224747472247474722474747224747472247 -%474722474747224747472247474722474747224747472247474722474747 -%224747472247474722474747224747472247474722474747224747472247 -%474722474747224747472247474722474747224747472247474722474747 -%224747472222472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722474722474747224747472247474722474747 -%224747472247474722474747224747472247474722474747224747472247 -%474722474747224747472247474722474747224747472247474722474747 -%224747472247474722474747224747472247474722474747224747472247 -%474722474747224747472247474722474747224747224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224747 -%224747472247474722474747224747472247474722474747224747472247 -%474722474747224747472247474722474747224747472247474722474747 -%224747472247474722474747224747472247474722474747224747472247 -%474722474747224747472247474722474747224747472247474722474747 -%224747472247472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472222472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%474746472247464722474647224746472247464722474647224746472247 -%464722474647224746472247464722474647224746472247464722474647 -%224746472247464722474647224746472247464722474647224746472247 -%464722474647224746472247464722474647224746472247464722474647 -%224746472247464722224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224747224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247222247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472222472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722474722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722224722 -%222247222222472222224722222247222222472222224722222247222222 -%472222224722222247222222472222224722222247222222472222224722 -%222247222222472222224722222247222222472222224722222247222222 -%472222224722222247222222472222224722222247222222472222224722 -%222247222247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247222247224622472246224722462247224622 -%472246224722462247224622472246224722462247224622472246224722 -%462247224622472246224722462247224622472246224722462247224622 -%472246224722462247224622472246224722462247224622472246224722 -%462247224622472246224722462247224622472246472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%22472247224722472247224722472247224722472247224722472247FD04 -%224722222247222222472222224722222247222222472222224722222247 -%222222472222224722222247222222472222224722222247222222472222 -%224722222247222222472222224722222247222222472222224722222247 -%222222472222224722222247222222472222224722222247222222472222 -%224722222247472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%47224722472247224722472247FD04224722222247222222472222224722 -%222247222222472222224722222247222222472222224722222247222222 -%472222224722222247222222472222224722222247222222472222224722 -%222247222222472222224722222247222222472222224722222247222222 -%472222224722222247222222472222224722222247472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472222 -%462222224622222246222222462222224622222246222222462222224622 -%222246222222462222224622222246222222462222224622222246222222 -%462222224622222246222222462222224622222246222222462222224622 -%222246222222462222224622222246222222462222224622222246222222 -%462222224622224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722224722222247222222472222224722 -%222247222222472222224722222247222222472222224722222247222222 -%472222224722222247222222472222224722222247222222472222224722 -%222247222222472222224722222247222222472222224722222247222222 -%472222224722222247222222472222224722222247222247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%FD8122472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%224722472247224722472247224722472247224722472247224722472247 -%22472247224722472247FD04224622222246222222462222224622222246 -%222222462222224622222246222222462222224622222246222222462222 -%224622222246222222462222224622222246222222462222224622222246 -%222222462222224622222246222222462222224622222246222222462222 -%224622222246222222462222224622222246472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%472247224722472247224722472247224722472247224722472247224722 -%47224722472247224722472247224722472247224722472247FD802222 -%%EndData - -endstream endobj 93 0 obj <>stream -%AI12_CompressedDataxks7-]g>tDՍ#陘sɺ*;lWwtt(h%Unϯ6 !6aKb υ?.>[ypsq~{}Fox>׿U,bxK7lu=;~yyul׷(~o/o_\ ؞_:No㟘Qz I_tW?|f|%Nyyquׯ/o^9|~NͿ\xqf]_ݢ?yq~3/狋Ϗ}៞]HK)IR3(7q@9֍F7ga1i<tF NJ8z+?}E7iM8T3g}_.9Aitޘ8{q.c'IOߞpqtͭ,\7it|(_[On?17<>շ$VaP&vtVaaké]=Yz{vY+M^=IE^eeb* - ˛K矡ϜiM#oHȬl%?ZFf|Q~b~<ɣ{U O߃8\J}-ĉ9wEPśWGv|\^F/.6cx/Þ}Pߝx=VUz K4?\俐 /.ɫ߼>zg7WO~ё_\|S̶Ouc~MJK >z~'/[г':/HfPœ8@7ڏO W0=y%W?^\=?yy°b7߼~r7'?\\Οx }"Ϟ?Km._xq#޼ 3xF~zd'URlOvO ON'2j9~Z""5ŬO, / _eӗo^^z/_K2{/Ix}r -KyZɹ œge8.eTuQ߻L.SY*5x_>]^E{/~i0ޤWߤ,sʾ<~De?>5hQtzL盧KFKISIB"vдRwbU9!|-W7<dͫ/~w#7EH.xFy/' S7}c[m~>3>o k!7+^yߟgjFYGjPکCV;Qz!?3hc3ȼ?D|>kIFvj/p:oX$>;s(}j6p6'aa!a`=xEtqwqC1D]DU8 X7. !|ptPXTu};o+wN݉;a{ .s>~Nٴ6t{U|?``w66S3Sl -v#6bĆؘ` {w؉an10dž Tn?<QapoYmBd#„ci}CM:0&Yy6O;K'&[TwJ,fiI2*gs9f$2h<Ɵq>LӜ˙.V̷,22r:/gs<,O3]5<,ZKę ls/svDiN¥̩\G}zH#Ǥ!|Ϝ q+iLZ`#N,=z,NQtɇ'"9'3)wǙ CcX#nqww1Hb7< F#<nmLy.9ɻ3q:GC -.#t{pt^pg%sP#{+>u~><+0'-MLJ;i@%WdvGx4UMjM -wVz-Rj%%Y<0 JZd|gǫş );S$cwE(zqeφ;&!kq>9Y7i֓$Mloy"GSѱfs_0뻳ݩU#:v~jد=ر+:no{|׽~&flUp;QLcAo ujD5'j9:ΨN4pɓͩݒa`@&ʶe Zz4ycTJ 5AE=}WϽgzCalbPVb!ף x'qQ{+Z&nylvq%ȃ2[k#R񢝹~yGdP A["82^֧F,,hrcK}7] yz՜)r3A\p#o?s/f;%Fm(X%B&{Y! -CgH'l)} Ž8AН“gH QM|}D}0S 'p\yV=gC J>DETNf -MGQ)"Y]Rj] */>Ë|JMdj]5{*zy-F̄jp&$ 'icLJI.62)<|<|\$$%@r8\r]ER.2vRZ*E^>diu6YV$ "-DR>IsdeA\BP]c'I>IȔ$#$H"#Wbu:sE9;f'ߧ˧]L(Kw:Иj7%pAl2mYPC{\B5mMPB0~H!eIB Y0UWT$;qu煺Ҿ#&{k o^o>J/h#n'snfDXFO{Y`zVY(?:QsZDVܥo;>~T-]w~~0jXzL4LGw{_C4~Xٓg/]5{e'i NYiB+eceNfDOYۧy3ΑjyaJ]O,i.}PB֬m6$1nW mm"o^H&=\9PDce .C NΥzZx>s>7qvQP kȲorsy raO%h *d(Hɶw9(")"V4 ? dXh{Zp"SƜƜ2#P+SZ]N1%[i55jO 5Eyci{/c ,Au5E&+ cup$ܑɑʿ#.]ǽI4!Rrn.A)<VP)z*HfqSi_bN`85rJ,rM^AҬp׸WO~tbɊ.%>O=I؊d=YW%C-؉fMQtWmҕL^g'!& Kp$Fx% ]g0ռ'AҔL/\GB aC0"# oɟ`٪>Z3,7kQ0̸5/UR`kY-p[Ocj%{oc9ۊTk^<6LEg%6}rg%HaS칪A"H.cͧXC 2E/gG:&Ic-2$%*׵E,Y^KY|)/D4K|͋tnjg3InZQ~ƚcm:}MnJii t2A8,ҾK&@Lhގ(F$Nre@NPp7Fb.C{{e`e ;,pd?]hOEUnW9yJjC3 ;iP4b- -Ve*+eҧNvʥ*AX99'Y,'eZf[wѺϼ;Š,K%@gu;Yh,P'6뤀$!|e,E˚3 YBŪiDR')jy, :6c9 枒[9û>XQOڕNyͰtX/P8ⷚf&O&E=* auu[*: V -Ϫ[t*L(!|'s `D@` ҍf&!nj4C瓡smV݄` KxN塎c8qwuu3bkj#u0H֝٭8Xu} 0>2von{pXR4Z| 94qPz` Dfpj4leX=9u4;%8ڧjzQo3r33HOb:&HjQЇ䘕11K(32Y?:fݳ|T$H(?N7I7n#)S`۔rRnDdRȊ͂*a& '"Lra{hanJ0]I~'1RFxXZ>`c%f+N K!4j?Smgʔ,,!J!tqI?;OO+Is2eɑFdMʥIXmq#&. uDhZ -Imn3o:2{JmzpAFQ=QMLjD0d Hld r8ZΪ;\pcܻͦ(J)s mpm*Xu\<=mhK.B٪LBg@Qb6gZ44 Q{AVRCyTxQ*Sqv?{[T&fV'.:Y%[g2HjZ-0IT&MlT57f>KYvD8%Ǐ @B aN$2 ,Q%%Cb/sZX1MH[|6\Z/-w;n'+?Juug2{a=$eSxhB.ߩƙR$CS3{ONO/ -$5qO2_=%{{QQiQQ6fzT8饐AK 艁o~R.GQB"Soʁe\1Nfal+7$MvT6܊m2MN&6z3¼Z`T[2ת9m͔ىZՔ|?ShuIa?hPAEFQ~([o7E|@;/|LآcT؁cwVOEw:IsEۜi]HѼ"vAO/ÚԫQ@"m7^oh¯ɪo zKu۠g`pwijtMmZ m\!03oa}rZ_Tڅ]RwSiwld,'ɩ %H)i?߷gzg.6}5͡ -R'kN;oye`>a;\Upf-0}2KlC4(8Jxt8D9qǼ\dݞ'n*# 8]qN~sqR;?k\gf6Q.SWq_^ֽ|)܉>}WW{_ Qy>Br=-ﲍ)$̵tIGۜ_9ծrf lWW2iluR#sˍ ;;Cx>(fR%!>b.7`W}3Niv T0d!ӂtcSɎ#md iT.ke7DH͚f2tJWg~[o~dO>%}e df }&҉c948XoD&PG9B: ZhيXnc#:3e)*hSuwVW],\5cFpi;&}vX9r_áGaOh~}E^P[\кD+ୂД]DWYlM$qǹʗ 0vѰ0ki6oM׸Ӧݒ ׸\­wQn@ƨn:5ƓJrh_y(-j9ŇQunA0c\ӭ2hIqZ8~*^q0rhABUQCºtd]4:[]kQivי=,Atϑ-bcQ7duuS eSZn~ǏWt6sqE(N Wrݛxo[x_jj}Id)"EI4B$qJF. d#1xd x1.|EТP,GYSuTb-ja0|&YpD{)aZ`cp+ɯ&':õ5%4}u$@!_$1GA{c|>`n+wr[ # f_f7wN?7[߀박#6<#J($[ b'wcIviL=' FVM+nN ֘1wv1/Sv?Knljl/Z_`R?|UwEY='aTܜʚS4KS~WL=onуIpZ>'y?W AC6_6OKH2IjZK]j|w?T=k2MdH;m1_dtC^XbY -mMĥmzw,ݗmOVs3;EԸs-Ž,61[w*wUS2( LZ{F;`/Tűxsi,{)Š*UiQ`־H/WjZ=-.DKWr i-f =.8Ƭ:u rnWg߫#"ǑA@Y^Y -A3iXi t2`H#5ǧ IGsbKtEܕY[t僘!bp25g?Jw$4y ZcL(Uh(6 heBW8֫lL6È묭buvMgIûz;fP2@h2!k\~+Q --wǹ㷕L཰ -**ՑqU;4jv~f|D1n_Qy__5X}mqt Dsszf:\/qO5H[ͯQkإmS]a]<׍tVIz>Mkvqt6i[Гw<AEǗ6@~T*bane, q:$nmU=[B4@b73jHd~ylͳ #. a082_?&4'6Ԭ\_S=?oy^?h|8~F,ɝCO7γ]4tI1D9Dl?оb3bk qeH}[_ %g]K]Vn?.3_&prr?Pأ^QO*Ӣ.}B˫DM*,nИ%\;FoTQ*hulDW _fNt)LaG0CF *iE&+ޛ%bn~il]c斐CKրVrM~ѡ1ŇNѡXeu!=.z9<:@G4UrăuǶxړ G`[kO`Qy+4:dr+*{R*'Q#:k`:ok5ۚmMܹ&GXM|Tnׯϩڌv ]Ҵ` C,ev NǍ @ ʀX;b| [֫b5X q P1hӠ  -"D3|/"ly`Rʰqzk9o]Mo!VxSVP bH[-vb!&7:q #?XseXR )J<`bv y:褧׺: -Ք5T<5ezl&8,6waA<g;N"S@i1Q_Y^sc*P]*{Ĉ{ ^10DC>`%.F#FWkX؍8v {T.Tu,5` &mTfHK"D!(ϣL>ޓn"tUy}Āo #x:.wl=p,c^iCf૦@0؜*Y#MF[\i/l9{W2DWkԌ_PK\?2T-]9Mġ Ï- S1'%EY 2 K>ki%T\-⻂!ft]E@@|;T/܌n`tG``6i H<֓Dz#Ly0 Ud"XAȸzf}·/ⱡ+!25%wf&V0 -JRi@x6v+,L23rs%RSG:c=Ya#.,+RRB|ݾ|SWJ#K@' G,6z,Fua}up`b\ b4* `oN@IJoHH(I"1Q~l -TרrF(d,zSn!-BK6?JVr&q-D*M 0< 3;Z7[XhU!* Ty)EQ1\IeC-7p9L'N͈13.YbA8F`p"FHIS$Fi]%EwL}b0Oe*08!`v` h H^aGjV1 ]F B7+]vc`}JS 7 IWO7mWi"(V qRUf{d mCTM1'Q)A(J`}1i!#zDzb$<ɪ! ٬|TS"7e p*W*OdZg_kGK7lVA -ayj].1l*Y{T rHYsa‱ԛ743XQ08$vOc'8/wM4/w1L}_=s-5n"^n) A#7:VRSϣv\[aI%zVQՒ~l:KTR^u$IF{wn(=J`yX ^%UࣘĐ:hwG*r{ :hǑ&Fxo7N<N=9j&c;]u֕WՕt%ZyIX.{9trp mdk_ՕXu]/XTʯ){Ԓ;;t]i-t|՛;ɋNG5TRu;g{Nu6x߀&ҿˈW3PJ΀.t?Y(fb!D -Lv֊&t;OňIi U6vbI1΢%:qfm|'g Oh $02%Ff_]*s-ML0lF$hpZUzx@ΊԂz3!7W{_T ')9“=^jF9xZњJ1k$Ӊ%M!Đk9 NU%Җ R L:@z҇D1Tcw<3Գ/-G5#cҽݎfׁ{OKٔI#n EU%sLۥG}2Z~_$c_\xF9,6>gHklQ-}1zǯ}1ȹM$/Wbݗ7Be-;Co]:}S?]riuSi-켥vD&w7TV UPZ7r5 7>6}п}K40 ʠoL#Y, ê?X%XyЮ'f@>)=%b('7F1 B/<14UZuM@|pJЬ<V΁X%:k14EQNf ԇc}UkD}a(;xO10#ET{Aytxku!ktHDVwkb nw>cF8BlƖ9=Wlj?®/]UmJFߴj/_|[34MItUŤR`ӢNxaH$N2 -+/Q$*%ǘӾ" -j%F4tQhL@ۘNe7[- k=mnh7GpHiv@$2&c+f-#LZ/8%&-` ~tJ~t8H:rH{udS΂B3X\A LZxe]58p}R(͢ܣLK4ŵ:l#NDJg~SlIb0q>%_ԃhd:Z(PHEb :DtᄷPrT!.hiTt  6E H 3HQT, hl+.W5y@t{ŃOaCWJMn;9ТsEL#j bhZйA2b LQ@F:x!-B:Qo iL؍: -A/FoDEć \\#ՖMU$T:MD 6*L-.(.˴x-jA 0qL"N [Z#B o̓'K_!.Mh OKCJF\`J!**V#^)탴}YcY.pc(~ajiT4؉f["b#Jb\)F66u+|Un+FP-Q -w$˖k_Քn7W.LY= mUUr:,u1f` .9VCJ0DABv Kt4DOχRh!&D`5TT'enUAN԰Mwd=$PYhlM2fJv؄NJRbHT%PgvS%zʫz☸ O2 :v$^p -yHdX4*RI+9WЦDhٹ+zt,my`:؁Fyي2**)O[sL\z5W~ICY+[(=}sWjD> :[C*%nAr[J,tZYș&$DEBw$x a4', -Y<2Hp_7=`A'd -0a=<;pL[Y`Ρԋcby_(2؂h>)7Ԗ[ҡ*JOh܊1X>)[Ʀޮ/̛D.3҅ ?$dt`#_p(°;8( Kcű+bj}K&LzpP )i.ҕh>6IFsٶ3RߐGrKt徙*9# hdb `t(EA&:J >({3uli8vCo.t%oMuŨ jy ae |6_^ -C۶sOEǫv2J8(ǃ)|k_Q-'"s"c; -#AN0؄Vv9}|tK31ŭx{:P3+%MuLRxvHq CmvO6U qәj6a=`R1\򴶥HBMQSOTr>6IOk Kp@fؗxVjeC `_C ʭ+~K?bq,Uz[rFv$CPJw#4sּllGSC@`ȉSG]ih7#\vM,F=8RDzb_$8cA(b.~qn0Tݥ7 -:XV,:18qi-X{h =H6iҴhddx c9֌=,3 gy^nwQSÀU2*-'+ȦMn`PXWY]3z%ozؐJ\[sMej)mYI_Q;Lqkݯ&.F q6(@[k+ JE ԇ.BW rY l(ebfρV1Mj\nFϮ/Lˌ<ȵ3E8v'zhF"N%B }Lbq;S+oRU $i^-VzЕh?b?ڢ/ ~rMmKICҽ f׃{g6v@W$>9K/DCLrl5(z$ɞSN Q-8q.JޤXI`B:Z= - ;#u% [=0:fWJhN#=n)&L&t'ѭK ->y9ʍ՜1VMzdn30|\ UBR"F2وRe7E{>ƵKvJd1~ \Fj^)Q,T[]1ψ6Ugtڽc|zA RAW8AVl,v,J[Y -.h'q9נS,_]Ί2wZ*{ګs>F?M=K#eHuh-`Mpt=r_Gz-;T+U8ljIhdߕu /pĽMs ]l_@ֳĴx'rKt)9[H8Q8JV/-ASEO>Zbm[J1:G`Wrh/ V{u%rS ^JE Jg_놧L;LlN[9n(s)G0BG(OԀ-x bE<[м@{]5-Z_ߓDI -idfV[g;o}Ҳ@>iɽ@%'Q ;;@A2:4$@2:uhC;zp% P2:0%ct:FTآctaAv}]C7aQ1Z>lQ2: JFءd,"bbTt -$v0q 'vB(`8U(EY\Dz[,AXt ðqĢ3vLc_5WxE؁XD4 +h!A,:Dƾ̱K_b aXuh?jâznrL-::JS1q]с>N50+ u%P V-$.dst72m;1+IA 5/F"9,7O\A%3đjI,1D@  c_" -3Hh*9+AoZgWMve1p Ch:70SbW5%rSCv޹_^,v$݉kݘ4bKiYVMgSYʚ&I Ғ&%Zeڲ*)Pw]~!ϊIȘ;>Nf+`miq,SS"7UƤ{̮| -T(C$( Zѓb:ȭYt<2Iw'pOԶDʫta0*@z^Ufŕ%oc[lL;p/Ʀ -Qn"4uԖԌM_O;}W, klAB=b\bh tI7|2 #00Pf< f(@mWjOMW)pWh]:pc -]<;\k;坕AnZo~x^LON';Mї"L}Mg" EM!=wq$FM_sdxl#]惪A+.\痷M3E˫[.#iCSIa"&8lmqYYTy7Foi0zkK+*o|1^$}CjpRS,BNҙ@+Jy8UijbiF̮ ɧEgh֕9z( u|Hg8;{E!)EuyLIRNΊצY+mF\5-sqȽ_];1]..oE)::x9#UtJ; N_bޔD -9~=:GD,)ϕՄ Z5F.)(5>Ͻ˵5BLpkw=֐?&cL:K;CjqV끴Ng,aAE'z!V. j$z%Zݙ![ÿr)z=JY뎀\qgn{ZLkOSn55 NVMNдstq];.QM-2`F0[&!MmJ:Tm!JCS:xT6sc7 cBtN dYpV`AZl"G'>m;%c9imJ;vjT?#VvlQZ@IY =@ƕzJC5c hmkKgՁh:6~1ۂ֮zcxI8✉+t]W6T2Va%HQm'^͑7Bu(ʎ 1Zr^)*}J/9 D+BүJTG$#sq𞐾Ś -Ps[PP _[A¾'_\Ϋgu7OOOu鋥;"^9p\'__XyO? ۇ>|Ax9/'a|~c~k2y~6:䫋gW>o/ӫ繆`U~wx?~uTH [xhE(>;L OkWYv[@ӟO7yXj:Dң)nmZ?Κ3syvyCZ0__`ur٭3EidZK8 kA,5^E1ޠVVr MɖJN?McfU|G. 2&WƉ;+I-3h+@ -|sX,FuȊ+Vaxs½SY|"2:VŔ?Ţ@'T+ؔI=0#ɐx5#}$d<8eHF]xB_ He3=;OtBttcxɴ8́g „XЩCM L`hWyH.JdJ 9KPq!Nm %&bg(YbUed--) O'q|^q -3KOm 1$WfMN5&.2)YFVbx0 OlHCeM@!aiӁBӚ -EC {TN3Z,s+!RmZ*r#}@MRbUB`OZK\ cyy?^$3)A`>PbUEZ4v4MD4: n<ts} :{*O@'0tSquT'7(hO7Z(l MY7a K#"v^D]9^8o>qB &yrĥWI~4hC||@jēL -!AR+.A^oByދPl s'H tJB^2I7փ&؀_!CC"t)-)Ȥ T;hBBk ?! IL\MրNcw0q hJ}+ds,> 1J;$p -!H{Pt,He "H!i͗>C[ѳA^jXRr/C XO!|H0 G뙑\tE8F8ꁰRh#%}LLP^RF \SJ tukJ{w2'D/̘Qį+)qLMQ WTdOnQ$r3#Ձ CTfT]c&$(F(oyZZT P:4`ƓdljO~|-Y\Rщ[v=VtƋ+dBZc~C 7dXδ#TNH.2-b"TR_P!o3Ʊa 2A^[jddqp.r"'EiKGW-pΏܫ :MN^gл99Нp6\ ~MA1tVy^l,O /p"gc @ai-cF4dIF v &?x$@a~5Bm:Y}(18 8Ԡ 'XxE{ǀyHgW5tΤ0QOI -cdq98ŋ4MP/J(an?SrI dH%6w))`rsWKSRn%M,dV';j 0x\njA95MS}Y+3D'2dꠄHFn# :IA޳2Gn-D`rre@L!4h k^ "0#f1eށff\kD2፜1TRd5̓DI=;%^ES3C'Rm/U\`XߐkX7Hq Dn)C.-w -$Tf@vS}cj󬙛*35i(%ެoH_qpP: WXVqAJ:dm7Bnjr< HǓf3 ڤmc)j=?CtJA:ÇBx; ?f* <3ޖL#Vi=]z,i FIa;8PgC@PAN#\W-`׋ gJ2]炦D6@ ,K! ҿ<;; 9U<_N5hu0m.mm-c#nEpz\4ν>bsbqBKN -86 L!I&:Aʼn q:RC " TcP86)œ9\-f Y.SWPp:]AOSQ2߉v2YQ@%V:qJ|<ü )%k7ꩼfi6DINyK%U"$\55'PGf8Ì3JS<˛%d߅ajhʼnɖDNB‘0Lx|!A -B FFǩe-i."ڧV/X`*a5J褔 9,oWxcxn$ّMVAɖnrT^irdh'jpwP4OK+M@496-'"Ƃ634+$qe)Ҫrd5W3!#1xEj`mմ_NnZ`%<- (QUw  -1ik0r1cǜb]:Wf5y+LfQP515sɭ73pc Q6ׯe7'}%Ӄ!kj<]ijc4?߼-pтF)'Tox p.=Qqd:do1="} 0^t'ymm-hU bZfG ky3vj8s?A>5ЌfcDD}Df'ȃL&je"hs~0* &ՍGy/Y榎f3:v7u+I(qDccy#4)*BEPC؛f[c/;&IL2jaՍk4ťC2^ܚVѣ(v?BTb -o}N!߳B94`2ތٺI)Mh=5<iح'[ -/=|fUp!%nE֍]RMc«Ѿ)S֒͞>G禞l\uBްtS|2 +L1ׂfh+@ka7xZG5(O(Q@u ; -4𕴔$z8?*ӑT;`~n DsDU"YLÈph& y;0<[Gȝ܀wF%PgshxaX9|B i}HhWIc+^u rwG 7Qsc[xC6nohU4賂2~XG(g32S4cdaxt[7Ҡ˹Z|r>  `b-/X覷VQz['X~wq c^{#~q[ّ -TE0J֕R.{#wհ}uA0H {J^n\7O{|0nivĺ j#@D./ɶnA5dswr4dt!)Zߎ-eZj>LX7+3I)D[qWQS -I5d4RݥίH@ `OI,"ިL!!E$Õ_ÒK {ȑK&%QUb#MT6Cc^GpAƚ;q=K6Lƥul=1=Ev4TC -Cct y:* mZsmMK",k̐Bscc/(`:kHe}|Nw?6&N cy|s} Ha>,R՛mav]? -@5.=X AW &{We)_,@B/-0.4 BoBTRt]4GhX;%i18CF`;D05MqּEGFި`N%o{r ;Wp=K˗Q(9 ")Z/aqH ~FlΩ)yaL'GhLPA?9zS½}%`š9ژj Ԑת4>>?N-NlaSJ˳([bWGձ9+9b`UFyD/1uS-xJȃ&奦ίuxcȖ-PG -%|m$?KdǘGbl ogNW0pt%7I\ i*|,uX.嘲tih­!tnLEÜYTAy# ߾v ds1d\*+OME<5.m7+z EOb -yiƭbSƎj -JO'+_1dS/{15B$蘀fL#ЬTd{95ᇇGJ[ݧtSʼXR(iӳpᾟI$fI(E=-^_la:xf( N :. 8v -7V*X3c22eOI8""h#ZCf eB& 9:O[yiX[V=LUdc+&^%Oc#J:5cb>7`VlHz ',!l}f4N3:9;CLcRi.b-"}'ςe3ґw~L۪hKeSu !xE^KD{U0V -y.4Wb{$c>dG8e{O*Ghq rTb`K)EI8wM+$TVtRč."GB5,v"| -TͿ#~;3LDdL-{ߐ&J4CלcSXc\]!n4[4lf*AUVcZ#6ρ<犠d B5dlj_jHd5TaV0c$ j"H8%$ʎ#j"%8hnpRX%nU($_߁n)O[#B#Hu|U~v 篿o?X?T5.EBϫ%-"QSwH2Yfab#FG(5hЁtz`[nՙݮ:dңz<2 s7lDDŽ@|aL Kގ 7n$*dTt6w#},t{N;@V4hpV|!v{Hղ"l9fBHEUPjg&,,oq %5)6# B󡒱}GV)`~wcZGl<'f|z؍ S+]-(OEϠrz1UX - W#jN(9#,\{_DO% -Tb$ĮP7UZZ#̴o D Svl7 \f3i-qm+pmpoEwObӼid}#cָT`c5. +AQ̦wε -1GMB@ ơ|ρ]Q8'!Ef#[Peű0X%,""sq"$U @DVuItZp@(;QE gXUWWWrP&hcS,4vU,y|{/dk-ǫelaΘl(d0V\>[̍i4.k y]h7΍cF$|am$9kbb,k&>OݳF@G˘ppϩ^ f9c?ߦrPy8dTx"Z]Z <~ ,E"u*HM.:PMb ʎP4"!hpK_XK(f ]0\[{ 72{ŽٗEMD%CdoY2o1Q d ;xMwqAhh{&lTvOJN&%h|QA%aUXWR;_>h'WhEz‡0ᵁ$ ¼0(/"'B-5䣄5[" -|$yx91GZ{*fJ:@$$H-Bͤhg| +wz=ƭ?\Oh,m/23qyVOxن=#G6! -$jkɫt;BE32} 4(zS=Zf͈/ʂn s}2wѲOIaJ_qRvP5LW5_Q3NS1LԚ"(["K=#40Ve.tٙݧh*Z'hk#B$mD{z+mtw7*٣̚gB q_'9ePh:u1M34fߜ ņ1ԳR;GXE44dC -1P[B:It܀~E=FK -aEeޒ{D} ΰ4ȯc A# ib&Ĝ^l>!Vo~hU+Wh#6i#򤽄<)D+w7ǝN%;PEmOay -.&8%(%K\@RzXlJs^c(pVQ,(s0v*!jq,4ez4]W|1*ы4tGў*=!*@tஷ ~ ]pCs󈆴[1h%1FcYk6 +&Uˋ0-X;e|C/va9ñoSAq2FYp(hu_oMΌ<ɯ< T0!-Շh3ǟw oC{X rn -&W*Iڬ@A/^Kc-lx s:f,K̈́ n -N -Ӯ! -mUx -X3tuW@̂+%Kb7>,*q,7a8ʁڈ:VjTB}7AOOAU:j:# uMPN5Kˢalu -ph*5Bi|X1B -/̖6໊%spDlƘcB]IQQh<{; J¡BW'xg_.P;P\<'3ʛRe#WJQQAqgg0֡)zV8>RĹH힗wsR"}E"0cT,>?;+\Arm'N=V0Mpu5#L롒)c'nn?C'JU}o!5V-2+Nyz=QC݈,‡"ԭ D. cU8St˵ ]RWڑoagMSͧOH̊H -yдbZ'"QW"4ŪѺp<}8Ue[.P_`V>~rTC-5/K4"uԐEWG\wι7rLŷLHZy},' -fU&ȣYl1"1uokI;[xiSFuo8G/^5g3z -; ѧǙ -`j.޴d -)uh8Ȝ|ۡ3rt|B'flKӌ6L[fB~@N"CF>N&jUwT?G+]t\~kw[= oVcO s,=~MlCآNV36ȐJ3@5#>,ٞ|~$ HkFw[?FCh=?/__?o_oC?_Ogſow *? -/شVHlwle8)AL`DΉELꪽY* -ީrϺ_';Dm/9}!;BwTFa Ff\yYuR*[~D1Qgsqoe1j9 h,1Eb< It+/wzNJ#{G+ Rk-;`v(cp6~w'1&mrj/jdJg?Lotx^3]oa\χ ˯7ֲBBbjB0`B7|ۃFqza\#'Ow ޛhmީ<m}űT3-i^fj۹k>e>E3O{QUÕ}i f=/{^]X,q藔qŽS?Wnʉa*HᦎN|-m<=ӕ?m.+Ηz-jU/:gBrwtտӚpY$nu*I[(?s\CQZYx7-apWUPd劁}imC|w/J}|l2r8XB*U8m1Fp'ke3à% ia<|ĹԲwbg\~0a(nYJ+^0HN/Gp F  5m.Oo@w1voo؅1ݼM1t~;enn0Nxc,_uwX=0m6_^μ򷱇9率6gݩ/l >=1Tg6 a< \>Qol>H,ܴê[T^ׇ 1t Ad\wH_kY85U^vw<]}X -Suu:.j;2Z}3V|Ǫˎzp^.;5?#6[9ʫ;# s=\oS6Q .cyCoDȫd>$si*0x@P)P0_x- laLyUSD䴦7N֙nά?a73kz6sK\YL>˜_˓LZVT - Y0^f6bo[fo,#bܕϮ9?Ml<'[—2_a8*9WS~|$a쑹A Adf , -pɻ^ 9fdr\ƴ;~!a)Lå.!t,FB&iK\1}3•wb} $l1,jx8+KRq+0 gca*>פm,|Kc0X{ -m?3O8R+]_/?aFfwL˕G^g6V!|U9{0H-6ӈTWt~z-?+ -P)Ҫ7zvT̉8g#a -YcJ`fiNOyz~툻}.k7a>3>(r>m{=8Àke'øo;a"Β&]X] |v<~ ;o S_0NqpP O;xՐ:$NX41,~ kՊ$)VoWaN˻7\&_f\1-ö́"UyY7m&L ӄ<̄t 6~wMIOaz(5uV)7fނCMQw%7a3ʹk-r~t ݡ˜p6y[B#L;xlubzR  5mLkqMzxY2&y)# lD2>_`hQL?a!i|N`Le,&pm{ j.N4,oߋdQ}i #_B55MH`:ӗE =mOx,K[õVv.^PG/p#D>!/G8"k6=Yds$˴lp?pܔ5/^NImòR,?x$•Hj|pEcc r? yrQ y%KbmY?4n#[&_~* rI/}rdwT2e2 9&SqO˘*>pCC*N,1*5Y(˘W82[Ƽ4y Շ3/v]μ6xkCU=ys>yec1P`,zYˑFaȵ-zY9O)4[L^fH:fjzfCӫRy/z^{:`#5L%k{ڠ@G`[9Xb>:$; ՙCЯUEݺؘr1KŲ.U=[X0=Lsie31҄}&ܦ=Lmaէ(P˴bQ568LPpj)2z\zު~rCfCWhR9p041bŖ]@fj?n6XtyTBxFZVD(jz -z޿Za[C2,q-;Sӽ.Xw_ӯ+ryƾ4ԟƦ?,8PU?VME4T54f+Gڶ.O*qt ԗjӪ4fd^)lQH.𨨳ŧLROTJEc9%އW*JH/RzYII Ieǧ!E2Ų Ozۮ]e4z[[(D;R rV@w{(MP$&4 ml&3Ws6(OP<(-+ՙewb゚|H3>9=6 C~{ -3e:ܷ'r Yx*vIJi(e Q*HOџ(#Ԟ-zH)3J_.-i|, DķPa%7hX4÷|h![e \j^g,>`J-Z\%ŞR_k˶<2C|Xc"0˙#&\P*7X=0Wi_Vk^r%9U/Hv HZҟ֖{sak#f.#KDA{WsK+U0eVBcCU`TJÿmN -3ȮC;n{Q= ˂yuY"1xrM$Wlo:vuZo@i>聝&"U󇱣+տƎGjC%nxBp_4,tm;%KbHy;3#EWHa2sLr`_6%L3dDr/ʥ!໛Nc"5mpTtKm9etst? iPTk4$# ~ts4Qi!e9 -\j`(u?= mlwy9)O+G[c`)\ 6rt:Li䨶o8~ȑ˿1*"QO#G -L3-J Rz8z46/GP-!ڍ:{JQO%oVi8 FZAOGplye ^qQ AM)F+"{nF -xFZ5] 6V'7YRTxtoMi7p(ݍY~MFҙFY!~B"z7zu8TS~1y s1><i 7hCSuKm8]sah4rh%I{%Ŵ|ѡ,=ӘQQF5oPy31"ӉBәQ<'`ka.gF6Bç3#eѦ -TOF:iڰl7hGX%x}5#HDGOf^OQ!9{7kAaHa]C -VMbڣ0LF)7V1pmjrm4:d܀اk5oFś~-Fd<: F*ywپnc$&gݽ1>VýQf+-gFPi`]Ɩ$cS^*c&5AJK˼тk捊+U*n0: -:I/ƕd>K[wÏgƛ#o! 20`0` ms.P1?HEB4WlޞW(>LJV!0\J\C~މw~W(QᏈJBL`;3;D -m>\aUZZ>D0SɟW]@Z s֘wfz,ĔhL w?rE Y9tk :No?t\*t|=OĜq_5 H>qMcCϧI58˛+\%_WiDH)@rpKhٕ =`J{ kŨZQ{8Q DӅӒr{}߮xKPlᵩcGjmYmUiy2;Nw 2 49ʉ?;;QMf FoU@iZLJ~yթҶ>Or`x9HO - -E':mA*/t6@Zz1XsJ4\>mdrje"ǟ_=9e\f\(Ĭ_~!L"˲CXNz-Z[j! uR?e\eUgly~Ux#B$clW\ᦵ>\&Z}. u$ -}]S k}|˶SFi~=Пe~=G YCsY]uA/#+z/@X: r"r2>=d _m[T-iLe G%'4]tZ -uBloSOm˗0rxsUN0R0Jc~.(i81xe -=>xA]Vo {m>ԏoٗ?Ay'ʪhD.ݾ~8Cdt-Pʴl,mȴfAlex_vJLm5>[ߢ|IrU~㹄'j_VK*~XpVm Gi4KOI͊JMjtstK &IM/n(-__FHQQd!m/#ԯ͍(kcӨ\>ʨ\1`TX Ժ߹ỦoHi"2u7< -e=T$q8Ӧ!J -PA '[(c_M3&ӿy3*~ -1@u'Y.Ld˴r+{j%z9`Fq!Y6[G}c|V!I/%M$0xc -1pMcܳIlwZ*e&qm4S;&SVmAVh#Q#a&8jF)]0bzvj%qB`d48{W-㦨Q>!} -SvZ02.YMzZ_K|B2NǴգhV Z`0q!@PkjdBPd~ N酛Lά =}zR'N+ӵMޔ7]> :~X@uBvh+[s{J_݈^ǍipS^ٕM%nGiw:z\z;Qa7CgJ -޺E3-^ -NU4v;'VZEgYsePl$-~"XfΠ$ݺIPU#rR +8bԧh%ѣ$ 1rGʦqzPrLS\mT[ҘV|R`WazvCX<BsTayJSxߡz5IDt5.0ˮy Q[^mSK8&D>Df9(BwE'v&!hf7h@fa8 ΝAg %Ail ~ؕPqtqT')@jEQ! }\=#{tcZfIs!nSJv;/ݘU[8a?la9Y Ol]8āilեl] xdWH?|:N]xN&$֩Jӕ o}wMF+p/D^[[{vюT%Mz ]ףz _zx[8~N} ?q/,}x(rF!U˘Mx?BӥGύJ>yu!͸-՚/Ndax?Z>,@2Wk Ec]9G&|ީ"Oxur +!l=]O"uy7F3EBk qK|R&JUi^H|*_?n(LploD=|8p10Qb喹1Wx1]k;m]CR@?zW#711,C2눣H{))ecSHUTx< -L>{טX+kd V.\ 4{X3S۷[KHc1xě($㙌@Ex4Nj -m{GU,kpG |6DL,Rft,VXpٍMΨ-J$:;[\ӢCr vX'O[nS@սuAZ0uHvu O@$XOۘeSB&Wq -ɦ~Q9>)5K>̐2:>L5#"GL{@T߆qŮ&4ӻ vѼcDWѠأOTvouت= M|%1Jxa>z(Iż3ܲ_ Ya\>v]iqrkEӺe}]PT6|5f|Xֈy3 ĆuZDSf?GHر7D!!e\1=O;: u?V5GvD˩;CrD`z_S pI޶ظ Fڐ q*lu=JÌу zc|_P҂ meJ df p ~UIQlYPǏ{d}O덨g1SC>",?@S -Fez;:5wg9^9zlx"?q=m㕮,W4Zp hROxj7Əjgj&awTo# "1GnSkʏ=E";tęUI+_Rn pH(gH5Gn Vi@v=)@㭄F将`"1vtw*XcrЬWxIP/>厙":VLrtvS'2$$/F/3qߚ `3`f]ˍB2lr%'wd8'آlպmar\>&;mjxM[bwMDZA<ށ9ғU簖b6Y)N#!(ؖpIuח1.KESh>vtokLXpCˢα=.ZF'vT|8䖂'[ȹ__7%7:1B J4*Wwjԙɯsb5DZ5aejq3tH{< GpH*n̠g\٥E!SV3$)$WL -j,y;bc }8$Jg"fҹDpg0g:OM?*<C -tg5⤄G]N1<ƾm3ǁ}fyjRe2P3L$jh΋sƌu\Y;`ӥ$3Mr0- u8[9[|]||d=ʢWcQїÁHwAP:DVK=lJӷ̈́H03Si ;&pR~ǔ֨ZR #3,*#p#4r4ezT`ٹ@iHޤDSo%SȽoe uٝc|T1ຓjeXP;9Ѝ"Y=b U@1dAg^$HG -T9uSRq 2 D|{/4=HS:r?;}3fP%tML1FrνֈFm'*5Z|n=-m~:Pn'*ӡz)滫jԞH.ڠ9g͞* *c{v|R#2| LYs#Z8جY%75 )^DmORw; -P}N3iQr_G{ ՗ܑu֪3u%lμN5́dh.rnaBh"EXW9c}mb~@ -ﵺu'x;QM. ڹ]=c1IzJ&ϝ0I1\~C$qbX-2x"m1TgZDFs?JHM,`UV~&hcٸ/mZ$2"p!dȩ@[ 1޵};A`\YІxvn3de -&t6CN qhs8&=Kf0K^NQ1R(:Qs\HFۊrʼnzEtèŸA03'h&*O cصP5¸Gqavwy[Zu^6w-N/04Lnc$%H4VpDV,!V;/%̎1:X7lYtvBZ.EJ&dsEM +Ae~݀QAjAG*>ݞX^Ѳ?CVTyh9;0h"_?Y ƁY'ѕ1 t{&=;"FhD|z6~}lD=f1;׽Nz>g=~<ZGWuDy:3x&\.OF3t4vȭv[pYX 6BݯG U7Oओa_O Cƍ 'PgH5oo9" Mѭ{(pN{ٍ؁)#i䐅b( qc2SQ ) - -3Pk6zx{ @% S2e3N Beʘd) OAP$DO?:o_P;G;Bpe1yR:ecK Tr3fb4:+Q4pIb>2A\cC(;qBs0N2BTEՓ4qlv0kbbL6CoeQWdviG/R¨4'WBsjBnIqhqH]#P]lc;SDFV.v)> R8^ELx3AITwbm1ZWJ6Ac%1}>,@/^F Ga%Xfع 2b5@nEA职՟05˯(}gȏҭ8Uў#to pS5LXTa 09bm! [Y`^sr-yp$'=t*reDtZy`E%uȶ T}A<6<<54]FAYF͔ -Y)qw drnqh57 ij-/ROUn+xIUJQsuq"4(lJ:ɞs~IADHSP*W &9i~K] hi0Y -?;eF\ ShnZD:-3^Bo@dT {6O(};gVH81&9BK$LCB_M/NwŴ3ѕ +;k+z1P>cLJV ASPgw ~enhd}ߋTMHu"і%XV ѪdEJWq5'_ )s5V$c]fLm!R=Cz($h -}RtX1^6MH5RĊ"Fl"i41^y裈S pqO~3@S!ŗ12Ĥ3NKa XA”M9P>삪F^K;`EC_8ˎ^?"FPY[ԯy\{9Oa*!#QlR2t?{y}ݐL: c{R0?Y<b+)5^+Jv&v[Z{8NK?Ty+,H -vʯ4El0vnx5Hg:[uz@WG]W̴Yg=^4L(@vZjiU5DgDv -8+P/p' ~*LJY ?*v`+d75˷xꊈHiaAѿ`"aD\Azt@\>LJMIWTI8UȎ%ESH&=|se ΋tc#j>4JFw\sy5x{xw楠LDG"4B}cr{LA[}G&an, ̩LUDEc"GR48Ù7" lFv}J_{Y[ֳlH- qD h9 E qԛ x0-g OX{UഛrO~PIЃKR<)Z;rp[ ,ؠk,uu: ?TUbvLEEW*H SHUR?]lc/I; ;; -ڰscOQelޏp3Ԓ>)j7 (U9: }Ḷ\{ #L:gI5#!>&y7Wa IVj 2>@*͍-(V/p)5~DTQgBrmiVC:- #]5Ԫ@,ߴP7|v@>d`mzsCJjw@Zc`'*lri8Eq&,/43\Hkݠ1f-vR+N.X4 -#ś7 Tmfx -γ.Q[8.\BeIј׮=qP% ##bWbUmtԠ ƷCx;U ȗah -LܹQr;8%9MHe U6/_*">",x]jՑn79AeQ@5jO;GJ~?j Ih1jsFAա:^$mTR 12N$-t;(;?]HMٔ!l658Иҡ PSdRϮqdDMb:r @)OVib34t+0`[+z:y**mh4Vzg[BjR-՘!)T 1ԉUqr0 JH~ Q,.~۬>f@3^{l1$uttS\]zcxyŌm s@~H2sJa>jG4m* Jˌ漞Gq;;&*V,yko+fR1n7C_n׌Ǯ,M93`MCff-ZzSid1b0H@z̕*5)AOvk;a/mos[]x/.\rEqAHlAPP݁Kh"߇,u˽>9ǎ`$#V#Eދ$נ"^C[@Pk31 5: CBU^̄b#7cMb;9N/rusdEphk7'JZ -b$z܄ϐg$ll ;pj>@P ܬ藚=>%pS3ܾ| cyQ\~ڡj ( ^CM(Np )e"|J kބi7;Z%DAU9!SªsRkd: ^]|YĮϩMd/A3`]>dqSmԓz8`?H6GZPeI!-ey -B \)9QVI ZDX.䊐jwW-17W[[PCt0] ЇD_\))-'b.ٟ"k[QJa"Fkx'Ǿjh $;@;zb68,^) #f 2N ]:qsu ûwAxEM4+w0K2Y."ƹRi6 Cͤ7)_^O-hͰ$$[_ IӠ!НOllHS&nF/Ǵc{ Pc`;iE"2Әl"p>dpR4h;gfD9X< K B5'rezOA0!# -.'?;@,cg0Vaj!==-LI M24 k;cW;<ၳw8D]2[56k+@Ɯ}6B^MڋE|%xBѵ6ZO,o-GSfYtfOT2{ɻH I~zS50}Rz1R *zzGu$& R!go?0ŃFBim"$RoFVo^5ބ7*hV J0iQI&#ЧNx&[ri}wB4/L8O'pTcH~oSҫd -cieqkS.ĽZΟ[Č$V倦2 noJZB;=p0ffTdg4qZY!_^W)FUPXC~ݜGKl  +WAC9pݹGL$55^sGj=r+)0w>Iۋ -|2B(B q5SJO$^ǡ%LɔTQe2*xa|۫z@Ğ:nIޙ(wEU(Pjhl![x!Cdn[I4[5LK5ZP({P(Oʐf$hFYE=phNJ=A6c##=BCECY<6oع fJw{G}H-6E -,xh 8^2JeO $m}`:4M.buq9 )P, 2jDNᓲT ς,A'}4\߉RG[s&eX;%큽PHeéDTkXO=$q uu6"b7(e2VhKZ,AZG0,Eqєwh!CdpMo\ʲL5U+1&rAP#b{9ʮa?ے"Z`zhڋŊ%?5GZKSE$~Jڄ6o`9J(U--S2T*gijBEyb%b󮈸XH=lSZZ Q,7Ic,јvͩ@R'ߒLÓDR6K7 MDv4 Q,9TSs;3E@ DiLQj$ɋď!-Y;jFOSGxh[>v)>(`2?7֙l JQڤʽ%}v0/&.EIR~v6vsoTb vҍw?].e<(fm2Gy]J^^TW!$ 9T߯RWRzDmn]%2 0v"}B;Q+Svv:.`qҷdkr$~J$GUr ֟W!68) tk=d~YiE09!e/0#q,a(M}3(Ю=YוcCEk,gѧtPՑHHϊM>-&;fE3 ^ G^z4벀EN#Y;j!eilBݢ=B3+[j#݊)U ڎxV řRzB-b4ɓ_xBEyRc ␘#`솝X#eĽ\-dI6Oenw5cpweN:[w,oMHBx!෱q/êzSן/#y])U&Ra$?vT<+J]<@rwC6%H&;HfbgkȝKq""ߑX ,;hR34a򅧋Z$GA9}S+!^f;Sw2PS4XO9ˌfnx6ͤHE. aLZ&1Gnj)6R;l!}R&fZD2C(\Iq ):=0=)"=L4Qn}b7 b ~'ZA[Gض(n-$"śa9,6EnPqͷȆ0Om9\}9]S srrTN -()`.99.8SQ .'jRdZL=[- - -mH:5F͒x94+LnB*Dݢnݓފ%;ސ~Ԧrq < -YzUMI䌘:ĺŐ_+X_M=U[3̋k ;_"·GL8 )ȸV3HKִ9&;9䜖@cvIf,!ZӉP7@Iyp~@N"I( !gЃNv7u:t^T˸!f2k?,:3JLζ{ sNpc7H=ȱQ*l첣u],ZHˉ\}ejˠs4[ƭ8VA A0nv 쟲f,_ f1BgHmCB9hV'Аz0(0iD\@g N`#`Fdce&|;uұ[hJ :+OCŽʛ>\WW7hފO(qƂ|wYvCJUa ډ ˟kB0yl"MԬ|(BL(۳JQs!Z(gNP~#nˠWbFCcMb$,uH#> [Қ-V$OJxgtˠ+ydB$^iTlha$Y&݂,뇴%kڗ/Cy-)'EN0|ty9}-QKӒ=ؑPv :$$ev -,_/Zɮ!71n8+d.*FvMUmuE,g.$ ;"NV=e`c\N1u ߪbxKe -endstream endobj 94 0 obj <>stream -={eK ԗ2YRLCE>%e -ה9yq8]&yiPm)=d:⽰HOpcRԢ1&jYD%QbaԷev0:&o74M;i`9紗%Rl -tK nïKZ2Υ3\P'sl;YTd&g?>>+0eL!َVв 0TaCբȘ "AuVf?ȟjb~`tE@ 7S!!Ƃ"al:W<5%SLl(we[(Ud/"3Vk4OeCo} ڭvۻ$^`˳$GcvOɕ<@ewc -͜d$nҾ1x{ -^᠘KIP]jefH=Ǔy,BB1D*vSg=!//v?}џٟ~ÏWo~]}_ͯ~?׿|ѿQ| -CaNc}E_`d3i[wJ2\%D):7HK 1)(P2vS'=MUbO&uVNE7cwC8~U'x{_АZi% A2I|gTX-J gt"럄2y)v7]S"pogK!h> T؇e&RG<'eT"+cm{o#pwMai B Zuq,(.{9YS6l#Ryӌ7h:Q{7'Ov3O":L '&(AʉLzuf H>ZVD%9g㒿Hcڌ`w܈m -0Y*|乃q 1Aud!%$9>$lSaтrt' kw< _#R2(ݥ -g2%< c;_% I}bywDK!>h(2(w# {8!Owu]*a!$|yn}`CW}8>tpT TyO{8{V";d1>9J%廗Cjg+^aw8WŀCd!la'vEglYPjYo)j?I@Y8m& -cxT"j}% ac6( -v=PQqX< J%W)dSF 5ư*{#VW<`^Ѫ-םhoOoռe8g >qۧO~4© `$^3G =j%Ϧuu/A{&inxA7hN!dﯗ (*L@$;MӇɗ'4TҝC_Edy9og=sivGIي1s/a&SzLv!Q;ϞX*o!e+4NaWI1zlJvIgiqA~qZ B3œqt<0ԫϗ -`մǎuU.Тt? $gqT)ˋԦbG[Z[1gX1+5CCjfYqaQ}0hVEϪ\" )4$8ǢG]%Cڴ-CSCr <'Aja%'Юڊ|/.}}ܯN>Я϶_.O$OtJ!y}P )޳i?R 3%l_zo -F>Y)9( @%w>+>>Ҟw"ź,rbH8Jxsފ~Vcgc}Zrek_+3(׎RUP%ߍ%at) -TdPiFBZ -YoR6ja#aA -F2>& r64O{4ZP!]W #\$: 79I$ PzsE~.u]DbB\i *(ʐ]28O3Ti#ms. Պ9PjCwT Ȑc!n$gjOLIG˓kM'\tr"VNa7 c#GUkd~Q9oq E4)$^Y@@MgBOBl(wϢǷPPG29mvGD]Sq,LfK%.>4@G5xvZZM|U@kkycI*@ '*~Qթ叁l,4qw1#- jLth{Ԋ JH!@8ߋgNM l\؜oj;7![TZlAgiU$@Ib49F`2_Z0 5)U֔Ne/Z8Fg 89nA"H܇Y۳b.+B\$ܬD%uϪObə#uv>Ls٥Gs f=aIg.3u/ ]Ş!#D.mJݪo]RH ήo޽]+OD3G)࿕)oocTIyMɞ!-Vb;V]yXP_(]x$}C .#c/. >N4̻'>jiWBJza"*!d5Ugxˆ2H96Î$Qi ԯGLpD&VV>k2>a:ѰbhbiVNEopQb -QxpaTgZf뎭># ->C w+p;Kl$սG{%lNU%O t$+[Lqw2JPE5L!U -b4p$V MN! .Sb>U|Pi!@|CH|I,kf ŀ[l[2E1uhoSOY.O)Y-7 T5w0}MamdBVc*:Bn/l::$>F]@A8; 酅!YCCZqWRŐv6@I]f%͈ƔlzLN" 34y[bx6Id]yLBQ*ɹ`cCx#P<a 07w"ytu$XS2"UuUsjKYlǺj4%#"ʜ]BI*>U2! >@FzZ>dJqAPbꨔlZq$#x *3~ _c -xY- *tXY0[%*%DKӟS`O -=E$e@'HAs실p2ca5b`NPoFdCЁP։qMR,tHsc`[jJ,9Ǥ;2 p7ߟ1Ƥ߆T -jY=$5SF6 -/ m3QZH)إP<! DxZFvhYT'cKTUd{lɢLOv=lx ,D߰'zԤ.1# CrksO'Z L—#.F`~pF44+L7jDЌ,'''uȖ 0O#o[͚,mYkq#M^.W -vH)$R$dd^>hQ 0"MɻSZn%PsyQˆbU\+^У},tc97eV Ngc]2Ue- ۅ7My,iI\s'AL=AR`!NlPRI+7:,ֆn!o!:7ܟb&"+čҪ`*1T -iea1%زk^0n1>(m&w-R?qLx2C -+X)CByB9SЧ;^ȆKwGJP -VYyщoP_ifiC!l*)|%weQn۰l-×(i:D_^!:i(v5$|sӍ(Ы64=TVɜ mL!Y)G)U_2$LaVi B'+칷4C޲Ph fGbVFR@V !sI daDQ~~JB94Zt }[%=  T\mW1TΚ}-[O{hTvhpBMʈqnWh^0gA#,,q*~;H?ķ -kk<}>X%Df=уLdU.Di_&IL-i `O~ZTIJ%\^%6Ԧ#->0v(kYn>*fDHͬ a ,Ln=ݱb䏇m5 TW+|ĮæI -U)p֞&p.QݐX!dh'ޥ̞J}0*2A{MZ''. -r鬇]_:Crz9DySDÌPש ٮdqUpW҈5BW;}of- G{6{f}|}H,[CmΨHa-5[rNz+N?3fRJfD -lVOEaFY$0!ХjXA[ &(yh?RSr*ɠ(єmrw7l CG -oߝyE6oG0P9iGDn;^^Ȉ|,~H!OH~nɁrd 3Db*JO3ݯ\#ZN"É"Jf4L(Ixl<2C8-+{%ξ -˙!$[dQe߆Ό/l$y#ʐvg4!҆V>JCƏs9fмi&"#g K8bt `%}g(e?~[6"Op%䁚~L(qqj#@I"]>vcrqjuOx0)*H y8c:ho^Pţp;TҫZ_lo+fhIf$WVjg 's3?5BWd5i\M7-B0;p ,-v qzϵDiM3d7B\8)}ck k?E!Z/&.<44HXFz6 8?6UܑVW6J jbe{u$^*;"BI%St~Hs9^uqyePTq5؁AJAlCpGM6p3TM#CWԸM`[8Bn$z;& 15]%E Ah'5GmO  j=X; Te}liIS4}ڱ#} =nOIzBN -X{_* S -9ʬv4}/opى-_r3%bQV swl9$鰆T$ղd^ZۍbӉ5]a+s:"^ !v⧥daCյ_S=2+'kQ~|;9;Nq=_DNš,XR겾K2z֒TU 30̑YeV9ID#Bx'FB`,cY_T=/w;CR^s(w19Ut I -&zD(Â- 3\x,"2Iv*"֓@ήhUd{Uا"QUFlE>pE -©[I}EfSg_|MH1rbA~·q s6$pf\Ad82%o=Mn9 Oi]c^/&#b -SnZA}$۾Gi^QQ@^@`&M[,b]aσdy\h6j8p(s ]Y_\hmpoUc&VB -ʜT,]%6jUWdvԜKxӪ ʄD -kơJC~r_Ď~,)F= J*0eI֣ ?fpD)SvFGd/ !Jr֚v~Zڡi{YVSVL,uF.G-U9o&*a{ hj'vIJwo-RB dy@M)(TGŽ]ThpotQՠ˚PQ=-UYV 6gU@Q oInvƨon>E`eC+랤f(0g -P^, )` jR`A"v{1[VmzX3nq|:p8u$'Pj)@Άl{x%SN2 '?YV+?h6~jVGQ!cibSBI0[ǝCd{6qd(<&2z_a#d.7U2E%)0c3}fD?(7CTVwS__Npf#uy0iP~%}&=\Ic̸\ A4QH~0 ЖFF]5`kōgeSP%a:);Rֶ۝u-&=1T2zT#$&$oVp̗۟TENbkn`ij-"h'ck7aF(v4ܘ.,譢dm]ʢ;ّ:IG Xd%`CNbޕ4YjU\r_{-,]?'Pel{oTdIz R; iYj+!R0&"'r.sŸ* )Niy]1_h)`tSVI}BbRX$^VgGA{]>c&lUqг?hNbc:RNNmS MD20 -T;Y -sօ6+p_!mP q gP`QvMI^68܂Ꮭ3džxVdN2A,X$K<kR%a-D\&270-P[MZma4c R W Y^Z -o9*>s66Bm՟pE-Rk"Y$.1”{Lj9a(hom͒ -lnD籖zJ᭟%6 P!7 #zHR C'sWSM]Jc$bcZ~KkdvC:@}fp:tA1(7^r1:D`jTN?ΒCJGRJZ ^ՠq ~ k$'`S9: e访8C0#cؓHfz(!wPz㈳ل{)N B 0Jph-)AXwwՔo_o_c>_E&0>_>O_w_ſWjƘbd;X&y?W轵~~[?jcEPd.Pށ6*]-hNDIue섰cI Ր$֧= -]G]/oL~ۃG9ߡfDY*郙B\}(&L?ؿ9& -H9ﲾ 6 ދaG3q}32֓65tyN|=Zuq\ -Wq|Bw^6 {%lwdy`qXÜq4mDuo^v I=~"H{mZMhCЖrJK+AF}fZ E!n%#K1|6c9dARq=Zv m|u[:k -38,=no=cU3E;.jE'l`v_^fo΀GE2A$="ףR^ƳGяRHƖxo4>Û]&5 ;B>g;;;9A$G#иsI־邃Bsx_gBDtPZ^{u y? ' mX}wd9x;ROglkW>q9}J߼T\?3Ҹ<{'v\#h28ki>j_.I/˓KP&RÙj \J@:l9~ͷ{}sxʯZ)q-'(V/=~_aW<v{yqzL11gFϵkhX߼ BdNsV!|j=FQHӃqӸ/86kS:E~sc3L8S 5;VY>y _yH;$Ʊ2_Hx=;YJq=p_ 'O͛x,z1}f{}ͿՑNB| WYg{<~>SJ?wJgĶlj{ (8>(OBL[T/ ~v%I/\!||5|hEQ? 4j?os|XLYbVY sٓ Ux@1" =q,?bZ`r x 08c_;-9$AC(>n -C<^VQ8XR>QF: _@qFT_|}J瓏Ѵ~uNkKxbMAӸפO^+3yآBRQI~y \b>콼:>{Qnv fk=hMJ5Ngx)YvƏvSVsJ\hg'n{^>6FSN,Ǚ|Y!xMVW<b|>6wyѸP˘^&E_^=ZOx;32~d>{I ʹ3Kz(Y77"TOs0Roci-:9q!8t0gԊ-_$2G${3c1<޸Qz_wk{{(E?yAi M|Axwy[0$Z>,U^y³ӝC_tW|d\~?5ɞcI|3E|Ӓ|/@>k{&dg<˫67VÃq>wO!dK7sk5v@kz=A%`IZe>":^wf96űūǶrȢG>o/82#EOyxm`ny'r~'Ҽ3cs - g}iҺW!S"⡑TpY}u6S?]ԞNN|Upw4V@mܙ8!Ձqr7M% @HsD#+6>kuCէH^pwpޕ\=":- âOϏ G cq2Rdvw<< AyflvR7!z*GPТi߲&GDL㦍)%y?1({{mS e{׵R`h|`Mg;~ˀ. 0^u.lO18Q#\e:jIl7DYNJMKy"ڣ`~Ed>C6N\\@dgkW&?pǻV2z8kIg.Oܨ*rq;f7%L'UtXi4 W/"ܛOszMgf8'g_ x,_Psu_Iv'?^T:=*'_Mb?Q΄Fc;WjƋޱbƶPJJ\BF6-A,xiWYq<4y=G-'_dI7x"Z7jaldN؀Q^?L8$ -oM,LeTϴ[Q& (z)5qvܶ0zM,V`m==ۼn4BS;ij|x[_3iĊ](q_,ۦU17yJ2?7K&71Bz>~79n$pz2U8t5>8趖D~rr-'p4TP_r:>= VNT?Dz`N!1/yT~~t< pM!sYMdVo(\ :zૺ@ 6n$`D|Vg [F\p+7O5nNz&=%lMV>sS_;.OZJ{B|O"<qSJjkq\so'1kx8t:of-T)&(+4n -5 \ynbAb}o՛,@,eiaNը;nn|,﵄zX$hz6xګпk"`E&i\ϖPWd$q{*s=]7%`ނ+b^"梔Oc`/j96@ ?'r]b|F zYΧS\Dqz ;[\]o9]!o9~rݫ/syRVv;)3|\x3Pϼ,-C0<Y$5|8OthscNXw}kQ@h~;b%E֋ pP/?|m*5|d/r)sq^Dp9m}M"|mv5 hUY[ -s[r1M5R,*=,C8~Qy2n W+_}]̍yk֮7믟뇼rvEs,)b=`= Gzug ՖJB/ g?H+XD}ACPx{~>= -v{8`V'KQOڗ5ȅWvkÕOFGq0V1gL?a6OI@SOZ"E]M0: YC+~Xgy U͆#%d,MU -=5NkϢ`s/B .cI^7'Y%"ܹn08>za`p/b#KY>['*hM Jn7)3.ד,o\¯wFܶw[Kܕ'O=&~]o sBWFano֪]z]=\mrʱWnw'yy)w!:x<.Xۥ~Rzo%;ñ -o1+HPow!i|)gjx8gBjx/olk]I :Ӥ*AwzvBv$:AH RS -[|۹v+_tE4SƹcP}YO98{r|mm\[=9hHLyYdiߟT9Ka53E(t>Zs<5bz߾(8v]Lέ?*+gdq֡1%!65On3f`9<2ca+4D(hW)g Q*\~d;𺄞޶ DB<`8v%팞\ٚ(R?])UU=8IhFFE35x9}1#Էȹ9>gmb݋,_kP1KqdkC._R<D*NwmZ9~BM}}u^[ھOpn˽0;'҅FK{(}\s2`dl0i cJg%!P@9rl $r9}w_;ӳwóDkg޷e/w.J2Y]HF=ALBIolUH i{UtR묗Q6&&75Hy >j>U -"o2HHLQ6;hzda/mnTzhUrQ>5%@Dh7Ȼ͇Љ,-K@+x%at|jB%GϑzK%* R!/˲D,% / Ft|TbF ϲN<^ԨqǪ\,%,fr.}| -ܳF"JpFETY!+pYF:yw*jIXKg 7۔1hP:yMWev) AVHА$'\D#6>vz`ZHR^pQ#dTKu!k:b9ơ\!5eu+sYiҮkN]B>2\bT!/j҃tXFN'I䴐\yKzpIyGg!kIZ{N$7|b 1P@Nv4:u F)6SQԱ?@%+ T2Q&uʕF68WVi*WZK,΋ԃ,'F<`*)ħYJZzJGgYR#i5! GEN, ZbtdGDv9S b^$ HdS˪WTY- *Ⱦt+ -Uzyt`WHKEOcd %9Mo5Kv#YRJO8M@I<$2Xu -K6ILQ@vmBx=p@J<;$ - F҃AP^-?NE (kP>-$pv 1=3WA@V%iJ Iuya6JzyuDb?Z4::OdЪHsT6-;5rrޢH'Y:-y,yVI -:duG֭#{N C:9o˃h8Q\@Ҩ&bAp1JƊbRL*)Izr=QkUN֕.VbpdJ5a2䷁PDR0Œёu*4vJ0^FY`|F<1)#{t}*ę()G|rKvZڒ7IAQ|1)/V@ &6gXv)8'X2v`Y[ 44 [8'=(z ^~-!>:=C(%K{lڞlY,HrL=ٰ'FBjY6[Uz (QTԔFd6 . C# ɛ><9e!#K\DHR/tHzP,Ko0Ґ=Z*%nL2s+R.ѐ:K*R^lcY4R]/tV*˛dehV4e-i`lV &,҃VA2 O mAzijfX(an {hHh)w P)ࠖ90| -):KIҳ^gG(*\ -RhU*?S[ĩ7Rj+ -RvZFikk(efJLډ"Yңi,Wq <-lm'¨h$k]*gU9Haֺ`ĄQ$nEv\YFҺJ1A/9ZpUYnp$ hTtШy/+pZU^G V/@,yNR G{'uFi ,=@;QVfR]R~n$V̐\ -%Jߐ2;˕EPBdq %2)T"hDLq}LBzS $'q:|5`zVʧJWrtp28EETZR8ҨSpAoU,Kv&e]lCt+U8FIבd\+$* wӌ XA;0  -)axrM*{@zPboiTHT){ ^jVϠ t(!i3\I:/ڥ6>[ԡ.L DvGBI-5LQjpZ}$ědHh$SYOݴ*GYj3eU(B7VeVQY ebA"PL*t@`: BZU@X*iw>1QMdlā%^M.ceZ7B7 Q(=XPHrqWV\SfxzxH^.fT7áu4dRQG ٽ #b"֚*B;rVF`UDOGG+#临.nK@AaGv/68F%C)=(즼p#E -u*NOJY +u.izR/V*-^'jU}iD&U2@Op)pJYPߘ"ڥVJٱШi:*5*gp(P4DxRvEma,΂X5V^^6hP|j,et5v%Td$Kx({Ү쭬 "LT"&%˓L$/˜[RgZB^*)F3~d^6-2ϧ0-o8*=T0Ȕ8Ez8$$Bxzٵs :+؍/H$Q -}2@XҮ#wpxAIe>^f>˵R@N5* { rQrŒ道wJ襷W"kUT ij!Y)ô^4"HR[8q$h\ 3R#)w:eV{x|"l.HxYHb)H1;  2+`P@Ffh$t ?=ՀtRS2ij+H&gɻQ-pƍU -XzPv$iY@2Dp|,A+%7bXʦFﲌড়#Qvrur` -huO;*:]j-؄:QNwa KȶށI7r}_GfΕ2)QkZmu LnZ L@8UjvJR#bh]C>UHY/ CPm!R+aHJ8tS&qŖ@;&OeQ)Xo*K(z)`H*H8?R냱~_F%oɆv8$|)U/r=AYOZ$țy`JI6ur%7#dp_>\냌,+*GJ2COCMK)c'Шtƿ9/Lp{*BΖ'GUvؐ^;\K6*{+/V'G` koN!g! r4oj Xei07nT=%SfW!1jTP[ʱFq,._? RWTG`cwycZp)Gj\XʝȊ_XR'-9odE=r蜼UEJ. {#lc-Kbsv$1J GWerg&UԄgwl Ou$ܘ^)g6MZ%gNMgdpib5<4\kXI+kIϏxE DHX\r(I`Ez?TgɣJ-93hSOᨔcѴz{zn*`Fœ@s6Ae vT"r&ˎA§i 9QC' jtŖNݒR??ExVܮϑD[Bcu vS1~˸N&n]-sf0GH.+S[дA\Pb?60/b!IbjD!b Gp>kzWg#qk!Awl/7je7#eflz镡=^Do;ɼژ<a%C5C(^oXO''Ɩ]Wdtu3ztsVtcVFbV'$NSMdbh|P9&qc8?3lP>"o}yS9_= )M6V/|lMGCh.<0~=لqlPzgv\`J&FpBUh.{Ǖ ]Yq1zv3WwgRQh{us6m\yqEXfeRoWLO:({*lZͅywwYߴnbXwHW| Hk;Wt3 -ݙU1}F!{p> ]:R +&%VFcF^Q~lB(.oǻڍSHhQY4oIs L=L㼷-^Ӡ AGb!{؇ $ 9o ~V!D8>nZ7ao|6 U:Og4E>Mk Z& -A!wd`tMBĨaHc|Bzu翦7:PɯŔ+G Bn>{d1RR|t1^?\x`t(< Cl(.2%!s$`tp{l G {>c| 34fҚ'0@d$w9`Ym-9w80_Lo7͕#ԏB2J`WĢۇC!hmAߟEz ͬBG똑d%Va򆲨_L=9 ٵ{N*F^=YKat7߈Q<WxۂzIa=]rO})Fc?PJ/D w(F< )u<#܃FU_ IuTlX>do`1B"bF 1kCȼ`A6@Gad2ca %V[ - [[8䃀 -뒋&gu#d"]-!MxN[>z ȡqc -Z7dوlޮl/f1{ cل׏3:>wd6unMPЅ kBZD6]J6G2 -os9Goz IE2d6pM>؇Brih!} A+g E^7 |@1j^h^#BQ}ÜUw/l:#dv8.{0Ȯ|pqh L)ԁ|aXG| A{rH:b% ~?3,3fpH"9= vCh7 pS},dtvmҥv BL)֕U0/[(p!]&wd&e<Yd%s~>gn 12->8OjτMsdž bbGrhfCN}ER`l+F7e)}<}z[3{.O7Wd˝a݅ uE(;1WG3\tl%ù퓙b0գLL& P-c༁ƕQ=?RبLh@_L/Ws-C!LfF'7ša|xp,V}2"k:?We'mvCFc|+ ]`OGl_o h"EC09,s0rov`@VþԎ|{]DdCXS $oٲ'o-7>v k.en|AgxzeDOXg0.pO:, 32Qhh-:a,`Y{(z`}1@Ʋs DB;1=$!tO4|D0g#*G7/gں X(?<#6}F#9 Gs=t?&ƕ==X7Y@kr7>=Wg<"z8^WwwW<ft8OuTq3u2tcS=T2z#bwk~``:o`i -.t7j(fZ8.8?.4iMʁCAXa ($ )*?fnBm;=  5|5ax\5*` :]xA_\o쇀OQ> +f䋷ہeόt4\j6 $c~@6EkA?]X` ̻#'gl-'?{+l-*m?-q'r15ZM{'vAƅfG?$񽐼*"úx6A|b{:4zұ[Dxg >2d 7||ƥkr[~fTE5T118'7"|mk%39Q+ѽV6;xdo{24N_7zo!k2cCX" x={&sm*ƿɍg(cAkBH,oS->٨g,oyޥPͥ~fxU-=B:s*{Z??7[3U{[M!߇OhGם7Pmw>K[&2Ilk\0M7?Z.Ac݀JjxLQG[Mv) .cч?>[|t&S}Fx eK -r -~;So9~xؐA-4ĠؾV  0|QlD!Nظ"$ޏ -Gw7˖O˅¯LI?T\:1 v1ߙP>FvTp`"3'5 !7Mgt?.vܸŧtBH?ga-O|o``:GzcN8ۦa> ?oCa{qE ׹5i#M1dtW'1Bx݉z9`ܟGQ6[&'n~Z.~ĕ`c~Z;U&*k%646m"OlɡLz0_`'؂ӭ?e7.rc[ glaTyZooך5%n GǕ|)ɡvX1-yqM0x5MA|,u} ܠƂgn.wdaܜp3)`ztЉTS,|!_lo>2=55^00y{ߥCM_wַv`1D6]pJO \l6s()=.(4\o97 | #F5kL]uhZ཰W?挪910۸\|$uyhLgįBk>(?ҷ\!{>NHkp\Z8A0_6]y‘)b:]):>m+dI7u \2|0l龙|?*@%̡8=u$!v<#` mቃ-Soc 4\ܮN"cw`J ?N a0X BpS~2Gb$$\|iBZxb׹-S1^<СH3ef5't鑙OK1VO11.aMSHbK|#\xaQ]v#aOa5Hְ,tzzJx6{;l, #FQC ~14FS5u)N# \nF F7zKlTQ_|DPrN -Ćh q[t0.rRl?F-um,SA? v|^sV;n5#h8>cKTG0p Vn};Ȕ'Կ -?jddL -F:@GYh}# ,OxWdp̍BkZp-@: g;Oi08ᵺ'ƊD@.8?-*_"u"8bjNhdDv K8jFQAM 1s m/.n&l|D?Z`j3:&:aO15DWji gȷXf9lˤO`Jh`] #;O_=c`߉9SA`W=Z.`bjݫ9KPn1o8 ? } n[>p9GM#"??>s6ixSPv:|^:U]8f܅688 -~'zm6ՌphtH(dk|C{aeb| -{_Lp5_3/^wtqtئtD0SX Aypa< 9 ?I8xb~9kdϬ -tr'q>~c\J8aSݷ !wT!s@Α9-1gd,40MS2'>5LͷzaʕvWsL/Sө&{lRxߦ3jfܕ[i3hC^ܿLҧ; S0 ;8&05Ra$~u+]>k.9>iͬX)uqJSI=\\^tWb*ƴy0Mf W-Wn+CMm>v- ki9uYd(>]|A&#,jÖy -/ -K9Xx`[kxQVD8 6*v8@si*pJtPxo#!XfOb8ՊiUmA~/S}L}f WsPqc9*wlp&\f퀉a}lpX=g9CFfC&tseC2^3#j|8 0Z3fŦٜ=SaLpRxf|̵YāM,a]/mSHڮ^S -z]S$?_xt6 0ѵhLwdnfl<+zLM \ Kz[c*ĊMW>7nن/_8/pCWRӛ.26_7pEC)/+ "Įas aB\@xGCLc<`a!o4l1h*??8G?ft{n=;pƦILLK6MmTѵuL=uC:bJFIc!/-=``S3CRљt%pҭ א'6ƥ4a_{})Zy[ -gg?,b47ߙlz ĤS_LW ܦMO?oL;-|Cd!8o>k;yg{smKk7M;P{b{06gԺ250!)Α7aM޹j!a_`y? |AF;2~^퓄 ! ȶ9ɠ ?=9ҷ۱;&1j}ge(J%ӶN4U]p4mszNjn~o<׿S'\A|[~Zbi|v7hP;ÏBsZ&/sWјLO1{\󖛔KL.gf %#IMxWR>~/2k!Yả|{Rf%A>tӥ[5n4߸SK%_Imz0t )A΄a.z ~'Gg5紦Q;?7u~ot6^JzcxFoMMW>9=rG-3;\9fC}`Sw5GA±._f=ۉ>Zquwvw݉wPeMu6>]_%lJeD_~ʞzcgt!]|=}O{)_ -4xurss=¼RG3->6vxlI-GgVHo$&X==cdb5!yt`/]Y]=`/wEuZ@5SvWv}Ashɴ̎]=\=hz7]%8~v cۍLAOAoA.A荏pCdsyuʼ2Ǵ__@t鿖08۴gn[GoydiQtbxif=Gz)K}~̏?x wY8Ե=tW>vm/ˌ~Yn:7=z.܋.\IH߯\13[1'` ]AuG;Td׽\"]bY\A]"zB -A,1//{sxq=Jrw-;.g7=]>W3]]tO /|.Zeg5ucK_?vΧ_\;_2>h"㵦?S]?0/~̠_&pd}Uw nO*x|&,4/+O'n{=<^ Zqd᳡¾kfS>=v3|nΘ븻!gkF]Ww\3ޤ?ς,?ZH*2R៍їfPs3}}~s'oK_P滿SM}u'Osy ̗==όZljif#=@vzn{KL:9_6}w=q=ZO xr{R;~Yl2v}u:Lśi{ܓ`pʣ0Ws 9O{h4~auq+[w#ǝ/U?.6vqڇH֣8֟Ȇ׎\1Mˑ_ -*k3\\#Q<})QbLn;[h㉿1#hc{ukE掻&ϽW̧ĺ_8 ㅯ:y~l|p"j uƃw6Ջ~sE狸t;E.EBIU]k/5T\̩{z_‹߇=-t7E a=񃷱L_}*qb|?P'pNݳ… 5+IWuE'nN cOxssY5 jAvrӥ^U%ܬ2|j)eԄtՊHnN|yDxUX׃R[hl~!yd -=^<7mys3]+4~+cw5ї ~4?Zݽ.O׉?_.v~!•OUpok/*ܮy?2vCvB.lG]O`mG߶&M7blOԖ -'_.^yigʳL%gVe:Iq!&'_6](^vBeE-7[g(Z'=K߼emVNt5j+V^ʯ)<_]xymMUϞe_3_OO_gv.;n?eyԵ1kckHזkٿr=?MW7ˎ^yߋ\lʧkW3"_htf>\n澿q|V>8RpsD w곯T'*,]Rj'oĔ]Urj\ǔ^Szҕ*^Ht!B^}u/._]/zrtCݎvW7s?hGg–4W(R|Y=>~)Q&t~,ۃ|ϯT1w'}_ncM͝rŗWK=^~W~u]W>F|~&u~O4>Y{ZfޫUgnĖSɛe'oĖPyuWj6\Li^}ӷ%N^s秹my=\!{% -86"g+7kj1WiO߉N!|g/RUw;yoi-vk3nys9uIxog3HxqRVʧj:knh*hOcFgQS歂U;&Vgϕ/'WTRj gnǔTtOi^ ^G~)呒W5Ϩt&:Jum[m]Nx==V%>S*>S$v}%p_۫BuXgǺMԭxUgj5=G,i:bGj^ryzKkէݪ~dׯ,U-ÜZF,otpOz8i-ew2o^I. ޒr9J}ӎS5KՀt旗*yr.e]u+w1$~({zK>OU__w+>fASW>o ԣ_]oZ~%~0,-dEg_q}jWs/ԭ?^^Վ3U -+:+}md^do=cq_Σd{37=Zu\bi5KCM:]JՆ3k#LGOlbf_-3G9t]͂:?LYto#|x;LgtّUnWtf],RUn/ן.O,/=>\\-MCVUݡV_K-= -pt<飿xg 4o=J,zߋZk~#J+GS,Xu4 Kd?<M7\\[T渐A ,2eLpUs4RYhҤ%h8uRX[e$D>%RRqK9ԞϬ9~%faSSi˚[텷6nTڼia}땲kk^Ƽ{[㴍ns]CA4]>[0by9"84ߟ$F㬧#m8܆H ]c#kh5Ԩ9unhX% On}HM͋{nW]*m>_\bQ= .4[Zv֫ ןWB^k9]7 -J[ N4p -R:~EZ&IFMB3fz>a -rQϗ7/ohRraMcυ+l8y>g -㹹j~y jުh~~UzPNSAӦ3O~Z8(x95?|V7:gCb#MU}4`*6'6|~㣐mTݓ;[v+np>vۥW -=u9x%c%76bn+y-WKboo{ZѺGZo\I^B[Yً܆5s=&c< 3x_ZҺl -Ɵ7)cӺg#w >˸W?UD]Ӿƴ--Ϝ,Ї-4B?:SxB7G7m.:A-rq̩F)|mC*96`F"q .AsCU=ԧsB|[wا N|q8j(Wmh~W]˯cwkc{-BV=lWǏl럯A{վnݚh+;hQmڗjg2| h$9.;|^ν=z'4߬nR_TU-4Ƕ5oŶ'v3I]BG |hoJ&ӡHC#d7 u!Cx=3qFfE jn}hoe8YҰ gz/JA+[Qws;ߟyMa07O;8T⟆^Ϗ%u[d4d*2ҲCƺHK74~yhYeߥ⍁g!s6o+krƅ 6ݼrB^ŋ-7FxZIsytu[`#ePbG<Tc,2dad,M쑙bd1Yو#S w4b7";j 穞%aړU $nz56_-qfb׮4ܻprnnc/B 6oO PbA88I42 P̴mtd1r1oDţQ,&ˑX@Eh;27".iB s鹿< %'[-t|&[^Ωy=@v-e߽ bR͜U#1ڰ/σ7;=[di,t#3p͓Bdj-&m A6 -4vzS#`rUtrAO*ns; s`νvnY/\hl+"P  +#p|q$N3 {O)h|v\^u/ogTt/7dw\/ Mq~q0ųWBuaӚFzcv 6-&QxhsddTdQhG:O!+l/- |ldi>ǔ"4f*̐ IhZ@%ƴ eߩͪ~;[Qbޕ,}&=ufMKٵ-{7p!^]׍7ȨnZNgۦIڣG|pdJuwA^kXGSdkdo"%8>^qR}Qv -|'B<0q1sk4ok7thM${sOB'!|4ݷC>99ĚG!wxJN]ײ> uܽJ}~wlflj}0>!26b, S| -dKgQ5hjauK]Ӛ]|icsNi)=g9t\:7==a݂S>a= {. zbh;ݪi1b@OC1O,5_§L\?KUg`Gxx2Lmh -4*ES24]^fTsWZr --a-a>ؿ FoW._TX߯sϖnGY8>M1|{U\kxl+xٖ>&Y~e?d=kȯOʠw&~BBX{3pB%h̔d&xd ;I -M[hTwdk끦\Be^!W_vXۂ}!J}57+e_~I}=ymTͯHP ܣ{;ok -}Q -އt5A)rgE7Xyow2$QhǹkCy^;v -x$~"~"}~.Gl7߄enյ ߩ<]k(>xy<^7c!TZX!G;UkN1γ!wu~Ԟ)b10;Lo#nU9d,1_ւ}l8 XlѸ9<P]X'2_Ŀ -q߄ĀH߇wM?eX 8)xۉ[Kɼ!_.y.1W\~ZGN|}&U}r*~j.sn+c߇rtc6 -~oۥ05K4|29hd_4?9QwXsSwឿr%,IuZXUr+K/}|33家7޽]pA5V5,pfQ@Xx,v-Kҗej+J p7Uq,aN`z_RB$4̞h5e\jjد&:м -7'>d̢x^i1s]*}H_{O_g_8RwI[ؿzۮLӇ:hYYԎ́wRY9֑\Qu3Ag_. :y/?B=PۿwZϑ=7A둵pߝeҶl!.s>\']ȐEH,@yy w!O2SGoV7^2~dMnKXHFwc>R%7~ -Z_ SbYYφJje~4?-kсw?ILzu)d֍v=\G}t ̑Ԝ$~3W|X~sv -GBo@"| -ḵBf@xZ`X'?y4rqp@>DGjIy H’^]t1D{2g)P˦7u[@m~)j䵚1f2l nƆ]?YJ^!+7Vѐ.98NqiBtJ&Td>Sk,PVqV|AP?@\}\X}=qga;t -s$? -iOrKnܝqܑ%e$Kbw>Nybit ͣl=Ec}UApACsTtZ}*c!Suh2ԟ(@HRGJaܶ>LE S~^d_=$&j"=_?([8z!Bq{fox0/Pc+Q2MM0W9"_/%tFNS"A  o$HR5.w) k,Ƒ}2 -i'WYN ]uG'YՙTj4BW'' uYꙩRNKY~q}{]w$hˇ?8c˂(p_;fF#_ӇӁ-fd7VHx[h\;j@KOZnZTtko7w{< y$evj1m\F.ӂj͌Z3d{WŻ ԑO_\\".?[{+,y>Db)i!HvYG6q/D 6u F> -Հ၇Oi L YH^t#tʺ;ü U@3tٰD -cEw/I}{1h@qvX3M#P-6~dv޶u]=W(.81Y{r3s/zP'?]"]mL嵌dw-2Q;(MՃWUdU?q,PZyI;ytQuru\}EDX$ Q1jbpyd -R}R&+uf~Oyx \iUsv,Ä4S]w,ĊXU -UaO֟:R3VtF#vM8=p~u X~XIn+iVYB/rx'PøJR՚8)Lw[ҭٶ'N zFDOhcZv1m O\^6d6iUzcY;>8I; Iv::9ZI~{:^*}\/.T\?"Y[O߼Tt?9V)>oQqҥh84Eo4n!U[RfHQZ\x:Z |CbC@ՒN4wd]C&€hwU~xAojCN'3[{B Ww,Sׁ<8-벦kN`Mq$Ig'I遙 mS6Ww//@ "gG//P:KIl;dm-"@|y|P\{Ďk(o. Q'ZH../f:/-u,t'ontEQ` ]s|v[/2׫2k{2 `y8Mf Hxl[;`[ʠS ?ʚfmv&BsEggiN4vR'i{wtZ`I!RDْ{tny`HB_p| K -HWE2@NԖ,MR%xHՠ댹Ǧ֚( ^%"TKӵ -Dz @ 1fS|XbԹr;mAO~,uW{,x,Ʌ>_x/?xHf W7>0Y7]>F!;ΒPuTŲwK+uӹfҲceiFa=X䇀 /ǾGJ4?JN&6uhq&[ߎ“_ħ3uf+tvit=ztn~ b6JYcf6d͈jXhh6ٌhIfԍ2"[[=e4kh{425Nu'Mti0Lp0_}?Jqpu>Yĭ;Ay -k=D7jXSԏ?hGJxũQ7ڀ"ljiPOAϗG\ܚM҄K3k,* ^. Wf6WN檿:I4G(ƾBzaB<ƣ3ٖ;>{R';/zܱ;AOwCϝJ?erGkz}9f4Z2߻ۿ}1*\V~h,bQ`#з!;&cd~EpzX]oUW{JA [_/w>moAیj Zt,`bq^Llb?  -&ބ`d5P8?J`l4dVU=`7p@lz1ԷR=NnEXEU8i|1L1Ħ f ?#%rЌ!~-[3@{ 4ΓTGOi0g@ÌLR.Wfq [8 @l0FAC -(&ly,&w(]7 -m'ńp -O6qbuLb4*EӗCl -V=th:hɰD?{ Rkz'=}SVʺ}S3 Sd+OŮ{T7磣L=p-yM(p_s3 ϯ }~j@D uc7Ms٦k*NL,/,F C8'M'7WX*KVctMОh9z΍hVpK@CM6 fPk1\KJT˙gxgGd h38nRmTX-m~jiX:hS+F j4>B6ۺuP!I&5i1SʇCZG0C.+yD~SL3`b?+db>F*LMfU4s!:EhԚr[} &[y17#3݆o >λgWE.=x@ц;3樬=rē0Ӄt\Pl˖1?nd*Zl9,\i?qr_$iRe7]]81<ŲPi/: <5|̖Բd ?w'Y-A` lV5#cA*M(GLX:XJp6 ϥV v|~;ˌch6,QUUk\b4Am4= 5Á | #}b3 %& {(:v{|}n20 (|- -LF1W#X .06asa*tM*fVKBp|h28#<67Sb 'tҁ%>x[ʵØZ#0R%zRYwx:=vW,|ǃ?> %p9|n3GKV|j)#k84'Okzmpnnx>)ѡkUtM*E9+r0ͷܝA3LEF2kwcR* @'T G8P] >t }(@[ -Z6%e:n8oC?ɩc㹡s/@{NO;)C^^"+U"'`2q @R>LFtB.E rm*ϸ㚉J}0|rLH|aym!p5c\*hҭ+vܑۿdVb tX)daz_ؙh1Fj1+U.k@+8jgD춗y nvZx4nS'󹧲󱟲b`!+Ѡe:z+s;FRp*q.亁8[:ܪz#>ёf wv[ flZo O\7\bƶ]\Wdn4%Z_Aze>0θ/, e{GGMV +=SASګL1 Ԡ&+Ѓ_K߂.>aez;RsCӀ 4-Lf7N DZ>(Pn(zן꺼hqCNx Ρg #TpK؋8Ϡmzeq8Ȭ=0[+ OՀ%¾1clD@LkcKūƿbGފS!q*t -~Wj~9D>y!h\ \CE;^*ʏMu~UaDe]΁gQ=؞5\'\ ۟-k.dJN`Nj-$jC''SIv}tONc6\ήn'6sp-谂u=#;gn=vAخJ8ɛS&3Q  7kER`0 `)*rv_]=w%n#q iKSԁ-+bdl*q+:8!aѴ%kAÁ BƉ[Xm\pJň\}`vS[^m3蕥!Wp10f|h<@D{ݞ v`O8x)ҝ>&s`gɔvGWVEbAvV aMr)g{mO8s\Ʃ*e#T;&!:}Su?GhzSs7pGpBpgU+uqŽw" F{YLuA-njp$:|k8}vY 7n:pa|;J3ΪbwA.YAH,It}7Rĥiagv+54({(yI¾ -ψml5' uT[2 Bܯ"2Oͅc8ljlieʵ=;}B7 ySӝԝX_u|Q{L> MѲi&![z|Q%ؿDRFf U.RFk#W 27S֙+~ Z _[0~>u*pdE1v{&f[Ihfm{kͥT23oƵvyڊ\7BXc`sUkQ }&6vxZʟ,U`<+v!7wvV ;+!_RF)0wA_b Qg,({#wC{ ?8u +J6mX|eYಝY& g‚]w;xw| $u`%ភ?#/#1#gHlK ezP b)3כot N[X; ,زA@J==x -\*d `g1~WZoH)]F>"QHАc .lq@Y;Yb"L򺬁Qwp8s@L܄O},9 0pܑɒKm.GMo[*ctB̂p^nrMYλrb[o9v@',#ag;K"AjZ݄Mvag) AvY R0jsK!v|&+$SYgl~wKCQt -p f xš)L  oRCdѫ[lF7m~TR5_Nj$O[5 W# s!7b -ITՕư7\X4&36 zlt*5fu;lKJy'kŹ ^Mߊؙď@#=6]Ko쬴/UZA{"lTmW̬95s\pr![|^pN}7t-t"'FtʲapOIֆRL퉙tչR=dd[9;ݰ{|p%;r]e͐5瓓; X!ϲn&^`g o-g灏 +s[H>0[ fոec15_}<µ{.ɥA8?_y-wr;ћgU<;|I4eFWk]whFc'\w95ʷ^Y7^p8I$ EtP: k>AUĤk+Sswjhq.cQ"`1h`]`siv||^07mcƄ3ڰ0^a2!G_ qa$;g{|F}'MWaMD^=Yl-Qb ,YM\j.! -@UA̸o k9cqQI5=ɍۉTXPPbnp2 a՚p +% bN&y[A%_}d&!EehpϦ+M^ʼn>v1M'H) -ayKV0*M0Hea-]-oL|lt\e./;QȽ^`RmC-_}Y!a¸(;2YQs:S KҐ֌}=ʽDl5>4mkXfD4-HZw/ op|6+ri߅ͤ1X'XJ^l@seQ5';rzpt:\C>/ǩ0U_!6L$ h7m-!p>8Y5۞xuM7gf\Ůa7?t=YM f%6% ~֮ o 6ܛT|,|>{2`-8ElJ $x8*&7D-W1+{iyN5 P$ČB}>b$87eiDyɹ>#/$.v`rğ+X :~מ#2FBM#A!)1_}h\"Xr`ix؂m)0&qΥ oJî,ӗVF[u>3|E(ѐ@ $1gh i|`/^wt+ӂ|l)Jzl`+8_,Ok27đj!s, ؏?WlS:`:0Wi%n>5FDl3 Lp -sxd8¹V,9&O׮3@\c@3!&dZOgvC? AZa DB+EGj*Vk!)&KEcʜJ3.>M Ja;)Ah c>8,hE2)MGd }`BWj!HjLxfrt3(JB}yT%k2/EZ1,[ R`}zi:Bd&ixl@|yi>.GMֆq '40΄VTu&R[ - t`VJ/x xRH$a|SKD52Y \?G 6'(^D9"?XUݺ6<WnPc5s-@EDE;ŢPCB7|wss]\Sb!13'x[(!(b)3CZ?=zB!!ڤ3S# Ŷ7 -ڞYK1@Es%H,Q#c>c!pP\4mdy gi? -_% -)W8 Z9M8<`JsSӁY: }+_Y{\a/.-[/ًІ>c Va3= -¢,FB;،$h-=ډpK$logpObmT\0N]\X$盽h[ -s4[lx, l2 XegZQ\cf000Pwj0qhc\"Y; Jp^E4`"0(1#Và(4t -h"B[KB&Lm r?ȹ`?cVCZSW@Sfraᤅ(҅ `c"sàeV^螃'P0>c3!S|f=:W'q9Zux JL|/@XY:Z{`#ЛRǜGA$w>mJ>m1>|V+Y@-ln+,h8'ٌ u.痵sƈZX _^ -X$>?(saU -S#s ƞ -GNL} %^ȖZts ؃CH`-A+,|s%n~Ze Z uCv-r` Z엷H:ZRmUxm@{wE!g! KP?-P.c _kzE::8 ڭ(>73S0 (m@+"`,!(O{ReN --U PB"OLMbKzH^[ -T@{E\ -T@70qBGhm-րʁeF a9zȾ,e=p]\/Ђ c9Z "=24N{sI"\hDk 1nvO<5 \%N@W,ύl;Eh ^[(l X `5_x][&OS 7iӖCvcyg g=Z+/м!#7Sua!`e|Thpt%m`Ɓmr@%{.` -P-vO4W4`#@k[U ZB 1`l'³d0s?},В -6t@/*.bHN< 0ee@ōdr+u6x2<d4Gf ]_ glL b3o> PBXW\:Jhylq sT: '@G- 6ZD9-{ A0J Z>SC /Gʿܠar-7T(>ƟOa_^D_4ٔKt>z*<.K _*u30DyHM)ȡ|%p8M*8p}"_arvE<\ `|ҕC z9PN ` [>!NgAqPphY__q́lˢD)q`?bLy q,|'m?XSόo49O"-:8l?\1Hy}ҧB&\M`d-鴅H2D@=r\o4G/aJN\ç jvRT S:&t&8l;T憀l)}(XOۅNPa`l\n|5 -j(( ԅ(&v˝<7O -3 갦prm#  -E%G(uH`s0"(86G=H>0QTv:]_t Sb:k _cS^@?{d{`wv9 -+.d?^tqC & 8.pIQ,P\ r -hXk`cZ ߇/T$` )sfH6-GnS48fDuPWZtQBW룜FЈgL`*K}>(NÁu@"sƧ50ꖀ(>@#Cށ|/a0Њ@Έr\} /kS - -endstream endobj 95 0 obj <>stream -%R!5`T92J Dfo- ĭ`J w! '{\E#8 @k|9P]Mz\,_xi)ݒp^s!! vrte]Xnl$gb yl`Rz(}(^,)f+|=(2~cׂyH!AJƽBGnC|HZ8s2l(y7qY/YK`po9%+F'7(3uJHID~#q6䥘.h2/wYA=ZMoP Ȯ`MaccgGBBΉ'[k=y@[gPTPWx᧩pF -hhh[3!!ށ0PŃMurIi`ze8xV69 5t6C )2\Oؙ@C -uwfgo|6.C>GGA#"9?P ^]?cZ=OaVLi2E$Pm21GـIP_Nq,tsH( (?1}&Ă0_'+ȴTlV+S *Zaz Qg&!gL%Xlb -\SZm/'>|DZnәAb0eu?pW6 -[v`3K䡓 _ _?&Ec)ixX 0b`) c`~&p"1"KȈǫ;˙2xKY{8& gÝS\!9!D [ P=8 -Y?u1PBe_\#dSB$}ܩnrߩ_2H BNǜ - ~KT8f3W<}P+噌)=gP^[L5 Fz$ayΛ] ^M5k, 0QPx -l{Q*'s'3#R^m)*:t<4]'P?qW?sIӁ: $pW" tmFd@K˦4y1G@F~F+f* 1A G@Rp^ΝH3|YX5o8Sw"e"eS8ϴ(^t<׀R T胕 R8oC#Ұp}=|dq:UuX/ncﯡy;1ȚϹ A-;.2|x&RLu&,CIRek-B* 6,CaQZˋ8[AU# CL#LYPπz&*62S6zׁfPC|

4~?ۨφ؈3أ-nOWyJcaTh!yf*(vFr"yz0!AL.AE]2)@L[.RU۩s^ F:F}F YL&x dG즃*m1e-*0d8ԉ NÂP%)2"  E %њH'@6$ 'pq@TTbN6j,yTCݪ"Lfٲ 4]x[G \PO -%ػZ,O[XN -gpm6q^ Gό ==!@y+[Txj%>Sd6Hm|f$Y"'"g[na\<[AN -PwRB& ͬ,Sq?d(kIxſd(f: {9U{P8,#Fbr##öq}#m.X#Blw'<0GLR!^~; av` /q(ZK JY gx 7JrQf2]UȅDGtt -=C ρȇ!\$&wd[jha -  u3Â10LTZ  -2gBL~r^Ȅ炩D Dkjp A 7!I ?^c - Q@xGύ'YǑܓcDG`±EMl‹!Z'ȂE?ZOɞo8aNHك>wbJF ܆==rlfqN!wSR&Uo2hЁ  P P[h:I9biBCa)nߤy e(<e(Kn8il!/bx'wqhwA奀#8tU|-;z5D*Pf.-`\g]j s^ۆ| · sL"A^#!Pƙ)>?d`(mɘMB+1@/:1ӀSW%T ]L@5,CH Dؽp lxDG]G ԼCy$#®{E2&J&F. -C<|>ۃL.ɤT0P{& ھW wR,&|k\RACLcs؇x$s;jeyHG _y^ù=dV6ס)Yk"ʐVɊ]dmx؃04OGv -9^1h}C- -t5DrAq8jE894 ktR(؀3H9Ohnb -! g$>3C31M\{:I" 8a-i x2"NQeKv ;~Yf%->tdl$T<1<,HMu-dY:B0`+nifzlV(Ft#`_TrSsD * CO9SA -|P8NyTHRyqIs Ϡ +&0M?v(LW’o(O4u:ZΨSIz -와TH鉢)Vs?: ]9>g2s =RhV'#s{B {C- !ʑثu"/NטS@?[M٧*>䚐/}S1v2mػ5kaISw.c$G@n6+fgc -f;epE蛃{dσ=!Q -K8+Hq6p(.ї7ayAw2`CCDxB&ςjQp\)X+;l\ʁ&}*m  kP[A -PiO2iS ]e|a1ZjtIqx_d(D(B>)sA2 AbYy??l"r(WKNj{ |7o~WqNJ.åTɬJIW)҃sxA" M!AK3^^g@v*b}qIvxݪN_Ze#}.j}TK4Y1vaag _qլɠXjOBD"?j LP r0ا=UӔr=8' DqԹ) `jtrIrsP{JpA^ -d#!f[ͪUAv|FX8cgTp1j;Lc;İ_^C> -r(+Z)ȻAg<*jafnaR2"!v@B_cg\K" >P L|PllɀPGҖW8r|΁EX;z39ڌ%| HvA\柷 @:SMSB>uAv-y{žu}clklأGte -q yȚ -X#W /q9^~;`na\1ap9q]L|aCq}$ {`b>O,xp#u{qĹ =OfHLdgY|ڙȩx0@m[T^*xL@r>OӍXz;Je0! sA-0RsVP&WlcBui68 $|m `EX_eayqآd^AAJ6t$>+ 5Eػ__:r01ӡV"FX>xq8H_C>n1΢@M`tlLɡP[24:)5c #AQh9Tdz2b Ήy-y) 5rb6 -S\X2\\UtLfB/|N -A]K Б6_"Gu)HȠp=CaOf>Oȟ+vO7}~A^ kFE=2E Ed`̝ˢD!|e8i ( - =yP?=)2h/¤mLN{@Ҵ}=,J܁|faGEFyo5PԤ'JNP:vbw ٽWѫLEmgXsS)ߥdF^6E$q =O^uA ޣq[\8C@$Aq8D{_OY& 1C.j%u:?W(- y_WU:ߌDwOOE9CQe ~GeovO]$ru |v=3Dt x-޼OrAdWʬd {$]Tk2~ƐWRjwB} eRkw9QlOբiRTZ^7 $0e!A4e0ץk?E9-Tj2HK4xu97G"2RVYv(e/rker@ZRָ 7p`'`עNe8;B^|A]m5yj[afnARvaw5q[ˊ{zN1Wх~V|Έ"`.d4ӷ)Qd:Q䛵ywi:KZSeuB2AAn -J g (Y6.j?s -Ҧ"qwi{nUݨ=LfU##^]6j,ܰi!lUpE٠fub?M'=r^ -}KlXwWUl$^\U+Ϝ|8sGVF7kM%uUqj*e?ž0G+veBڡ?Z W|K S~s1Ѱw KDt(Ӂ.wRWw:hNC?<>j8<0g/uDjner} -o -o|ա|ЧotC~jw̌bUSYj¬t)Q/ׂ]՘v دe:6u$D+U ]&hQ3= a=œw{ ?'/$h h~]K=x/!EO?wot^!^G6ڂ;_u?t#W7>0v\y7g9!Q-.jS½`#ѳbNxF#,8tĘNgpJ^n(^^Q+{ɓJkfsO]dy"Fl`s{u^ : -Ѣn.!%tit&_X#K6YlۃdF>ü/* 2G/4h-<ǽew뾜~?z<Jݒ 4o%]ңϒ վ9r˯c\Iy-{M,^glr{%6ܭZ0 };sPr(}O(J?3m:$j&ת]@Ifv` ]6N1YZ_U Ssz'!̓NSU0׆*^qXFTɄw;K -g[;0c0~Xԭ.qw[L[M4׮)JW4 Zyk:\ H;,tB>)n:eť^eU1wWg<;+NW4]]x훦gJp4ME߷0v6AInf1ɫbbC ʜuZX6S*!O#D1fAb_%LɾܧPCY(mkO )O p'[3e~v]~[`[*޵;[yZS/??~+P?k6.p=kDXe%.,ኪmgl7 n]adċ5͢K5{&sg$*%wo4Inטݨ1wp÷~f65[:M7k P͹*gCR`SsK)Go'rmU~ly=ߘ.m[k={_ǘ=츚lݚhטx>Qfۜ`ٞ'3(>zPNENas!/hkx?s#H8ZiqCTQ}fWcACdAC;heT{ʲ*av>.E8,~|+B>Sq]oHUp{4äX[ -/aҸEpeZҏ_M5+FXXg_}m0#sl${${X妉ߗF] ]7[B}=Wj\Q -g%nen҄rcǶOR[s)&{ֆ<`YPePwedGMdBjO|Hep -C%oh;)"0)/.G+55* 7w׼K^[~Uڰ|wJGw}d\ϫbԺdUzܬs)nhr;{#^k;BV܍? wIO*)uiLmL;֚'{nX*~!~*nmbj&wMɯM[cm[r3N%y{#PXw㘏w9P}^췚#]d~#Z#]<c.5}k~ۤpCd]ԩ:i-+`E}ݮ"kd=W񧵻y#w<k{mv_{76ӊmYwWaƕ:kZ[韒S؜!a=N'Sn۔^X|[v{}c"' ѦEq=wϴf7exEȍ~9Ovu2;+{[u%iMHoJkNf>z>;9:ż۴"k>X«t?Z_Y%E~OzKWcՒcu9z?C7s^|:͢FOmXW.1w^yʮDS赻4OncU'dJ҇9j-l_O0mz;C,^?_/6Gz長blNAeKX'ܥ/ܣJ]3*dU~gB/ -9ޕ;oi)8!#,V"VZJ3UQ~\%b"1I C04.y>PhԣO G_Eᅩ[F];Dr+boi“Xia4006؄"YVoB؛^O =w =bb!I׮@scOg_"~62=@tRdý@w%Gs3]pCx $_F߆븇wMCkqrP4+r(OYf$Ƣ-_v.!^eM&s.~jủIh_~>wg0b1Z۳fj@ɮ,5AD cןmc׆]W zym"m⤯lʈ+J.-k@sX+=5k8dEb?^n6n -^[.ocsNx;7eg \ʐ]9ϼᦫOeמ={3+=Ig""_keL,\^UaȿK㪽f="4yK1eN|m4zu z4d:1M~1a)f!?2l1aBbbҨt=/kB7H?Q},1xv%[0&tFk &Er. -9[cdjo_/X _/`CcR>~1svbƔ-Mqk#Ǭ&& -c) כ[Kux kV5"!676WYٝo<3\xW#-%-򮽕 o/A8L4T}5"x~?f!,KL2b%1e*byKQNӆlb2vN›2/z|>MgBEGB+27E ^y$|[7|_V+,__ 1#82<*OD4kFbFbĬEĜzČČz,Ubڼ%J36N5{-iX,[^>(L_#Eqf QbRWbZC,l؎|{\#12 şb 4ČK&K o4G%1k9K̚/"/U3;ǩuæ7[Wf&?-{;+ŮҷenU.]Rܒ!&l_M=۴=:٢WABcJQUvMWYGk|OkBGKB+ӵI13&xj"8|LdS!=~5ل⨥܍Yps#1Ka71wXX۞XI,A@Qu$~Qu"kOP~/}ez^*I .z|/ oZK߬  vI E(OhpuHE3f}PkAP(!_@(p~.i6r -h|cSC؈ hJLļulj܉:1<b5-~cv_kQl%|{63ҪF4Ge.1ok"?;%ouJuII-{fk? KcQhƠ6 |MPϕ}5Y/&~YK!L!f- gŵh-ooh"?cO^ߢ -vƿ@4Ѹ:Ծ Ω]UPKlu(mM_q?ƣc2BbA4eb}+ -~L߂03fI̚L̞KYB[KU=Ղtbѻr*Fl3{x]V'{~/ßI+ |?пv/.J߭_y:-qlxaɯbֱnr}3r}>U>Ww/PkUؗ/Q5yVjY`\y(vv%{ _naDwt}Ü`ɮ.OSDteBa*TX׆X-#V -kHb%-auw^y槚ߴ#af\5l0Q;dեa<luz76 [gъmYQTtO=4Qѵ?uYSnB?lKZpmpIWB~!&b/JļĂ-ljj*_b;b. bFd*tr3Cl zmţf}Z OM_w^b?9o훽'6>J弞nOT&ts Ӭqis37(łvr}Woإdm(@ sʘĬYEVMB82t[I{^~zSGߪZ?[u}u?yWތ-i3Jòr⑮ 3,;i0*:.QD=2?mRKpwoѼXŹöuߞ+"z3/7s{[*^^UC}4=&KQ~x5 d{j-*x5Ġ } ׾+YʩlJhG duSlD$2M(:}uSy舕YZئ5B -^Uk5I?[:OzҎUz>7fn40#oo[jY/Ar&huȧ+)67ٻo8qEIcaۄNBZCmLZ{+Buyj;'&&CL?ћy55ĖWnW@Is~ߧ2FkyVzQ-No/'I>Sނ>G"^W7(VQѡג]Uk0=;ts4` CC.mҏCNè膭n{bE?0[sgv .}Sv]<|{HTS^y1yMF>clj^Y#/j^sz|}୅I[Չ:֧;6qiͰoIH3+}ԭ5_Ѿ+ut2E?ZwNJx__p³S l5Pr\$G2iu雎eYIQY;''NֲSۖ7c#>]#}d* ,띩_߭/x,Û1dY | _QNpVw'tLUT$nFP 7=^қ5C `0yP_I8M \L'4m %ˋ}%OO0w:9&@۽_P0|ӱcamqvo0 -,GԴ&vZ_;DQi V]밃Zā}1A Y:5L_ĕC2 ̛Il_8 ײ-0`#6+\':<?g-]GÁKIRe{ԨgɌ}ܕc[l9FXex󫆨an7oVū (H֣yCwb?Bܽ 0gqk}_o{{e}٪{WտcI;w*kfg"ԉC'lF;N3s9?o~Q%_wXpUU.50T! \' #s73Oߙ_S0bctpC3pK^J§tAȃE6𸫰s[,!#B_9f1޹m'r6N2(]VPq/xS/Ds7xSy=ĩGѳ<;Nh'} ߱)JmBQ% -a8]Cz]4[PIvw)tc s ժa[#ʷӠ DٵL)|Zq8ՆHZ*]E>0|ʨ$xൔdw0?ى]~su!IM+^G,-87i {4/?\a(&.ZA^٫Bsfg&vr})l(8>c=}߭@AsF$,U{$P(PD( e 6v1ѩtp;Oq}yߨ1daI%U=Lk/4&po~4nڵ'KɅà ")R^$][:TkI %äccM_m仞o+¶ b & - cNP~uvy~4qxWz 1Tּ~3G>"[mڝwsԮSFN95o -g  +t.n9Sbt?6SRca& (9!o8fѤGA?h [|A̟=0{ y⯿yz_{W>fS緛޿™OR nC7ƛ L-/4^7roo!z^mgmy蜟acH;2rm^ޣs1֔4*@ ڶf=vrcS,^olx(5#]o-O(zåybUt҅k/L;߇Hbclc[vosU4THn)MnQ0_b#Z2T}4s+xK՗|r0K,<*fȆk 7϶/qm_ڏFin2pmB-3[l8bCn2G+sMq|ݥ9|kM?^fqCjLou V]-3[;k)q -nΝsm,? -9/?۳۟&ؘ2[\=mh-BOBy=|5㎽FyS}n>I=5K:OpOJՃ3։R}eR?ҕk5Ovၙ0Jqv`ǫċ?* 3^;Lw6 Ɗs$k/SU [>k~Zn99>o90" Uw~[=pנCB0 [&`/JM̑80U?kCp-Snsb4Yvكx5I6?4Y^1UL!$U; q|lPhGJefN<^O3M/6u},)%(>'\)tӕl"w 5Wwc~8cJHSIdm3u;fۍZ`d;40kiiZwb`pMܦE빝04p~F3j֦pV[&s ɶ`PKXyh\{s4}jNoq"3Ef9r`.!'hc էf𽏷I{aU;;zBwCxxgwoET?x~O:gۤR|ӕ 7~LW[F\_~*xlc S~%ݛ}8p<2g{pk(?Iblh]2)\^,~ݬsSCJ7;]Ɠ?lZ'McrH9G!NJ'N63X.^:0M*8>$rR'۩y}}NkG<9|hTcNz{rJݛKa|1=%NrA$㙿0^Ճ?v~/L6U@:b7;!EÚ?YL@_͔ytP|fϳ!/c~zЎ4jl퍳G7`fp|dP/A9oSjFU}3M)McU847jkChhuMo>I㺨wGIK -c+O6A佷3U\1xvW~,p?'-krabۥJ;8JLktSF)%ÄBP-ZlVWwmK9_ |96 - >>Ϡ'XCno)*6\Pn'P4;TCH/r bbpcDJQVZL4]d[hH}r&is9JulBJ4?rb}SB|.=$= -vOE탯o> -&AD|L\bb5ħk?m6ս5]>t{i:ΓtT6Ic.EdVxSd/&N21֘=c#-!,Ӷ%#eZJЫc1ݢ50ZwfTZB ;+wW}lX ,VN['YJ7VRD)uV=" (ư8`G[FI(~ -'M)Ja0ar' PbY`e -˱SG9Cr o'WbuV&J_&XNw_[ f'}هo~̠̤ y蝕XwW!+o=۫|<sz*0_m#5YL^s5)j&nuܮ!,Ψ'xuǞKR"v) -П~);i-od6k/̅np3QmiO~ﭼ"Hrv UWgS,u P-v#['u}zP|>*統2LS愱zt}^l=ISG9|D=kn/gvjn5.wr -қ]gi-UWhyM`OD|6S1(y3a7C7Eۿ昘Xֆ7|6(=a:tg ۳ǟAzp&9zǁ&arbjGl;ٮ4v-FAL:z\)::M0E͓赗APh`vK0ٴ7֖8'fO/wPK<7TqvU(8l\sx|w-Q=C/ Db[BT3ȥ=Ӡe=gX7r #Q:۩~~wߠ?~"[KԒzaD -J6RNrb`:uIO/LLfiWoϾ[O -=hgd槫FF,83_$u}YRܦ[9 V`C Lz :tX]`8!< -@Ks!6-[Z=£#/9S˻Մ,G賓wςw9cFfu#.U] v"tx#ͅn£SP {ǃ}|9l=FMmAzBxOV{w&pY9J xh|P -Mc;KOxma-ns 1m} >b~uh|BZphK)`㳔P ψ'L{'"c1c$tܥ3rCtN"G;L]73 }1ÕN_֛l}CkF| EO/sٙbdz-zמbw;w@]?Nouxms]|4v%}Vbhefj|E4Ǖgݙk_k= [BM#ĪauY  -:r -# f ;iHz`@P\>0GN&֌Ts['HjHrǑ2+;q&⏱7ڍGaV5%; yg0FNh8_=s<cSXK oO,QJˇkw?R[n#wR9D0Rp 6{]zE[j<=_Uν(۟$@݋,Zܽww'T=m$-nԔOz4Qh,b/Y!xmzwb=Wq5Ìv{/QKLWN'eٹYDy+ p a[F9\>ؿv]'ZEMrUb%"nyVb5{.иd\C]OK=$1^B촔yjgP=?hB##".B^$h /6 .+<|~6݈۷[wut{xRvX0O'wNA_|߁! ./cV/yszb`HܬQ`N \;-hR 4VM,zx' ~efy YJi`˚Xc =n=Y*r4eˤi[44 R DzHp1w} -+[XzrVPZg0U^jq'_x82w/D،i:>\ ⮹0x<3O6=X&vmvI#vO,ә@}-?r% ;XĶI)6Io*a{/YZ;g;Ɏ7Hq&f[`9X cO%9?y&-ln&!ߖҙ?n՜/,n+'UZFl"[Oݕg>΂FzlvVT3/QnR*GM!VxmcTi5]T=+(TOzmm ^CҐ=x&?4^ndיYRǛ{Ďza8CLޗ -hܣV}uC?𛫃GKGVM 9jY _pzY > Fb0!"!2Î*WꞭ_X7N^&7[JJ51ΊaouIGn9ZEܘv7,b -WeK *7-p[kίF{` 51{x4αĺ7w)=3!v5k*UI19F)fI/4x@^+)4^tF}4>Y>xi/ cb_P|9l{pRcz~T,g=OV|~L hE%zc8z֑+hTFATe*8oZ.So y1QarM;  0qC"L9zW;\p~K6ɥX4Gi|SiC+2aM貮i=/%\83ESm`gİ\~j\3Z"o'vX!g2e_J-,뫥w!FP|u -ق|XZR38ZL^3FlGPĒnrE. z(0&fۢ΁a1x4kPF\G=u2])`n('g`ƄL%gJW/aÈlIx/.ePL\>xez5=sok2(QS2_!+FbgI^Iu[qdr㦎Q"M,Ǘ2\JS+gqiKvVYtd㷉̴ޞ;5WnXjz۔PϪ|bU0g6pY-`z \Λ[gXB&3 G(4(:ЋFO !wf"-c -=k_;gȂjŅ9T3٠f"˩a]6nM 9̉YC}} VO1E&%Rxop5wLeNj/G.f<%DÍZ揼uF5 -bB>gX7#غϓX~ꖕ' 2O,#sut0O|I:J/ox;zjwWmtEΊK>K (w#wTڛ A݋/'LzI팆 1x0U7&FDzyV.ǜqpg|PQM.q&&ȑsCנ?V0cO2_l3R\ %_y'UпTZZ .xٴ/d5]Z|`d5 -9w_N,O6]PZ-r 0 Χ[6穵,W Bw#81ث'WZ =Agϓ+X^ 1 MYA{:,vv&> 8;{d%Gns|LJ;)L;U9rY9QCyEτXr ?8\>;[cj:v%X}6j⡷>"'Z4'}3*G^)ˉgSbN`6VvW}1ڦpB:\snλ! b}Q-^1RgY>5LͅBݍRơ1KhN[L}'W|-4+Fc>waq`>G*uӺWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWg2Q3q C~KAKݓSvFD%ć$gmI>N n|B2Ó-_4mOV|2O+cx=F My\{CX]dݟۺi[+?s)zt 6 IMYvކ /I(ch)t!8;0W~۵Փ}6pr5F"p|'~&P"2!sgՍm*1KEN0zaKƨ^: c(&٪Jl#dci2lbLs$y -YrP!_<RS$[xҾJ~{s|~j J<'Mϲ7bX0[j5 ; %a#rx=d !6rQRd<QJȫMVFeQ܆qZza4)jQVbhdWcw=L>0;%'m -g)}i4F,@UN,Fry&q)Ec&b G(;dbl9҉z5$!a`811 ǒԣuaԨ٘B5e];}8BU*w*M{3 iSd,haT`hm|1i׏Sʆk)6*7sb냔?9b\0aVbI,qf9eY`ԓm7 Yd5 t1g%PHRLP5ɤ%5Glb'-q\:i1S5gջʡȲ{ 1zv IdԎR]0H2{i}=<^c) 11U5]WS0ߋQ<5y蟣b\p@?-#'31{%d H:lFO/VMII jj(7ZJ(5p8~IfX)ςeop&L -'C\|r&-H$ S -&c F+zgH JvXwl#!eH} -ؔqjjoH¯B U0{ {(OHWHqvdk?c d-8_3gROBLz5IDf 7Bm8[E{@)Z ϶ - y yؘa1`-OSB {͵#$ajZhHArrjJ $C2:'wCZR 0[fl=s -F'%4Y3ZٵOvTk!$$u~`FlBt#gŠ[yo=$ '0kQ_0 H4A\7bI/WX4r>^%;clԬfWbRӵ+럎|H̑ "Дq,Le5/c%w}6G|oTmj|804# Oe6 H- [$r!% $\=R#)Jg#9&Bˑ}kf9|jY- iɃWA2Yj+#EΩ (PPsi.0RqdH.sT1s?$,Ɯ$ԒirEM{EPL9>y4^k2Nd52bT؉t;J -ϊRr}f -(YXe,HKx9Zu}d{i< Gc,?T-տrR@~Q#e -NLć9$H;`duas*a0'X#'df#  8 -G/!_d7!gTGe9PLd? 7AI> >y5d[`*| [#`Ubr~ v}Y__)`LfWfy !CLf,b)aS$%~aC4Ns^$ežG</E<; #1[8)T;3Y`0V3ڠfX\=ж e$h?j`H5|_䈵$ւzY\ᾛ3P?9kY?iv@@n$GX12)@rF?H<@b"+[KC 'ʳ:4 .P "Iu>i{J^ <&@~BD=֡)x-1cѷd-?eÁC92"G#_CwV?P3 ҥ_Z>_18@@N<")rb6S݀XE\> (7dY>DKbXC~Cr}<..%@yTOJNLCg5[$&P\;Sb3akFIs^N֏ɍwV@PX ;"ⱏM﯒sG~(F $xB-$ -V~$)Ò#@:zw|62R6u)@q x>7ʏهZsmpkt5^~& ؅R3š"DI^>:}( 5' Fk=<'ȉU -[ Y^~/ y"9rk%n$2!ĻT?Xtj-G;(FaCa~D/^dۥ~gnxEu`JG"#Y$[1oh-o^ſNMm bї\78\+w:g~sHHL=}O$Pe ìח^ -7X"TS?fo"b+TCUA\x'3Izf@7ș~I?0 -U)|$$ }Sse>PT?A%) ~!Nȵ]m_'OE\Tr'H^_wh/o"D^7ힻx&fkI%Q>\-h4]Z$HZ nG W\oVn$|Gqou :$˛)}OTfXZ ׂA\XJfZcd>2J她bKk RD|쵙[-hi\!sk |M o#3Ev^{~ -/+gR[dt6~Eo-}^}lK\Q0T a9H~[t.[z1H֌C})![Ar{:YI\$,:ߒĕ^ ڦ(Ufy>YFS5|M镺k֏J,æKG -~e !IDzOȴ!A%3cZT}eX޵j3ӕ3nTK3ăd1j&-( ՎG;A?di]&u5ґHqg@SivC^y욢^'D [qَ$tcZwMcuL."T;k,:tgT" |J1&Hx儃#&Qˍ-7Xȁ,:KiGIPQ dCXdwE2ԜGG3.l.WŧtOSLJ Ůy#X&ZĖam5@:r*ԏ$)+3ObԿX97_+>:Yzu5R" y( -h3ѧZTCnpH -_lvNz$\ɰNg[ě .tp`j jeC~ET WSi\턵C(ީȉ`5 .Bmt>݁pP)ZHA ~WJr;l /r"\ss%nzb3l pV$Q C F2]_ĵ\.%ۋSnBB@QZq#bbtP!Yv[ <\iHay8]$pA -_%\DU"-/9T!Zyr G՞NLMti=Qu\qn\{u=9=Ь6BN@IBYX]nf >)Sn/~D\yB.$U4Dz5/ގ6E"ڇGp:qdSω,x~EL.;"y*\.rz&BϳtpZ,LY"9$܀Q{ -=߹K%iYA> @5p`8oV3V^D<rsFvEuD? gGtj"!8пd9voZ{s 5??s?_o}yz,$\F\|u.G%"iԛ9ljHeKQ :ҴSs!J{q^^?3Z$ӆR>A ~] ?Clmx0)ԷOᧀ:a}gBgԹa8B8%~CS9>%.dN!A2~,{"pEZp,ٍ9@Cd{/uMCHH,jg`T?owYNԊ;NԢ#t RLPAM L0XzF;E-$|8V[a~BR3"Т{*I7\_. C1g2_^=KG?ب |/oplm.Bll="X~A` dC2}:0,("E$EڋQ6mM.Y[n}^fy' j̓38\۝^B_їVKTNL ռFa0e#\DVXVG '?дzBର YЧ|\$ޅƑOe˟syzrr4" -)ZHe&Jz -ReVKkw=Wk,Q=~ ,G!$]{o= xml;."eN K TBo֓',Oq -ycd I{cmƱ$S3e` zJ{kEn+Ut΀ܱeҹgSo_`׶ݪ t)}{ |tѻ :93uoٽEHjg/upW~6rpx}CL2R&eS: %M)X4_4J`,vqmR:퐻?߆޳ -ݨ@__ßz2Ej_Tsvr:ͱ|(ғw7'oC#fuE݀z=> uj=ҩo+_)bb։qbj \=chml5^f)l}"/rz%ٔ@LP[Ig{ntEhYǨˎO+{guזL%BwҪFQ=DÀ|nJɬrA.'-5;8qi^7={BO>t z; gKg*oލÇβ|S |wih d!cM@O lM右ڔڹ?;p@Ke,}SG.UpY;9=/}",k 9}멬(v#4SIn}_.d[ئ<>Xۡ=!`w4CV# -!7I_f8;ւx%Rf8DDG/.uػvzԠdF^4&u\GҖ$#-Ù,\_OǞ_Ba+^|ߗbuYj͕a<81V]#gخUC}uM'tbjp'(q\pR-֕;Owo|+Mا2qMTck {x|5Şv8褄Oկ/T1 hs9'ĕ:NF&KfMV96Uy@yƋcW#ff#{_ħ[;ž@މ/wgȻG@&1-t|b'"R8#{xKI fR3\;yd25aLay[a"zOiPg)ǰxd=xc1).Uo@tFg-a({O= G -Zi+{pU<*a2Ȱx$CP3#mpŇh5g|#rfj/QMn3 -pgT~oz&'ߎ\:zX V{JɴVleKWퟭ-f3TB9ByM Ogj.Y}{9MJ8>2!(k.*\>8.bT]-S9R~u.Z yYթ٬fX I_hm`5%cAgY~\x=?)2>1ζwM-j!X䣮bRp`Q'?G\hM9*J^d %i?^<,>IcD){nE/\7-$I1΁gXE}rb[YccbBE aϔ^G cyQ9(Ik6XF(ӱU3eM7WWۦ/΋}xG%EJwkfyf aĴ1^~XmۅAo[`﾿}zO OUn}m>j6F|Pl`\sV'>_YN}i6p^6ua'>^Ƽ΋߱H:Oe}^4pG<*ԏ땔QBhDO{XJեyjn$¶d^[i(Fh?y aӪOϧOGd~L]NtF=gQG3E[ԇ&آd JAϘw#D."5By1e]}¹kpdb*fADއּYA1Gx+t'$ﵱZ%vZFU>';$: aUQ?"a%J" ){눔5C$ά7}]A 8(v19Ք烵d@, -Qz]6wJ\Lg${{tF{_5y?LDEd}2>iԣAe gBΐ6S~f .ܻ - Ayjܮ.j2k橵YJ5G -Sf/;3}J<(Zً"Y 愹=g@f듩dRn$eNeɅtbui*N?^M[N$$t }¬2nA~ R>7a/wQ;}jxjޡ#` $z #ZA+!;Av{Ga=a'Hy}7u8/[ E2]Jm:OOICx6P9{Y1c*ԫ^s˖=ւ{81'Prc即ܯF䃏x1Ky\Y@S(*h4}[qIޔL%7Uᡂl %1N^Ei$j&-*etKS҇ոD֨.`7~4s>cbC棈z?|RP0`.xۘۃ Z§.!7Ak'_ y_ ^M7_+zGWM_֋ɬNC2cX^&QQ)cZ*LuŕIH] 5)* G‡Qf7.j%z!#*}H{]Q6hx~nyZ_֫'H%RԹ_Tyqc9iߎq2(KhA yM85}9w~'G?zEÏ%{[C}`Ӂɞzo؏BWs~iaE 񻶋.8Ԭ]ٳ Ǎb,&/[o+.h:I=pia֌]FwyfL4QIjRk9]a~mi6^س/<嘘_s_8x|5"&R׽TQiQ2v@VؒOX}şȚA[QOmQoƑ|gF ],v~z+tQ(2[KWgtN 9"GĽ~C~N!|nc?~4`x~/{6oGDW+|ȖDV'.7B`D 3"gQaIv]tU 'ڂx->_%[oFODыQ]i2(>*NXvνEZ;oDqZdm܇ߵGy>؋q*/f7ᛒ iBWх5]7.s7,4-ri:+z!d3mT0Qic0'< ttW+fA|v~ NT?Q?Q_Go^ݙQ>57cN?wv{"5EDsO[Ä5nŠ] KWm5-q?:?|x2/v{Ӯ au#Cٴ覠]VX~zoM|0mXg#* ,}A% iN?49/icl􄠧G5Z>~".Vyl>>n6yW{UV_g%m3?i0m0#}b Em9'|}Jn=0RﺭuuF7qGm} 6N<}#ovTet4rm񶝩WZb6F]lOΌ2/ !'xM</*\W}DָuwL6xnW? 'NXJ̚_E[7t8ʾ=Uޯr,&}}h |-lZ|=UcD>w)Qi5QIQ>1OEj͢U‚1sA aIEӪ -OӶ@ފAi^:vgT]>_Ø;?ŵQb]&vMh=E;='%~h:R}aahEkkP~ԍf7iLgmWFh2oq?՟/mvie^QN-оCn'熏O҆!o۴礄4f6ev?c=M\lMGㄎw#j"#RڜO Sƣ|\M^;7DHoUyFyE:GF_hMؚ}3S". z% E~gZEGuŎ'rcGDZ콍 v|k:(bĸ>c9qkt8XeRx7*YΉ :v!G dIC=Qփ%ƿї haZ?FGiMN_?+Էo{7勋a-4~Bk?,7L|Ow%87F&GJHhnTK]4|NkCDzibϨggj-cv&5'Ɉ!I;ڡ *Ɍ)ƴzH}Z:ώx7N3maTF?8l*]\V |?'>VLj=Ƀ2Ou@Mǝظ:|| -T{˩8Ơ7ɻJRwrhcGQ|,wU8eBUU=d.#<ʠjUxu%Z6I~CdpO{M{}f%oW_*FNsOi^=Cjz`qps@w l?v`eYF<͌mj/.ainE=^%-J-D߄ )dd.dOEqվ)>ҴJl7DzKQmaiunQ{nmkNhmi?^2W]_._ NZVE`9PKeRs&BGYmQl,Ko-KIj`}`em n-yC1l?ॴ%i$+99!esDbGttV}@G}H|bO#fL=$7c+oE`^#FGb:v9kY:ٿq?_.yWe٥zOi%*S``u` ,0tx́?)`B^a5y7 Szj -Z>n2&D02ot zN=WZ%W)~12;yCS -H%K\%]Ë+Sj<"|b;;҃_z':z)lrzc2훁Y]Ez 4Oݐ۰j5 f` -&msW]lEwMp,g%.iw䙞H]~. }W;]#X6Q=fV\09 YM ͇{ҚaZ햁O4vῷŭ_T>ȢuĩkMR}sT06PZr+ -c{wŮ̸!_-%)B{4ru+i-%#k0j_=+W-]kvh]h:+Ur>xE,rzQ5Ik"w #C}%u1վA`U,yPXJ_zOy@b9 NcksL1v^s~Zdf2{T,̓_)jG΀fZylY`v{DP_ٮHT۶D Օ07"OdKٕn0gomڇ&4K-F%0^ b߾m??C뻟tCs3{zԟ>HNcߢ{/ӏyCUЋiђیoKl*,vncZQQT-gԋb2( Z[YR`{6MkL'TsMe(Цn(xG]Y}=epz&zjTw}(OA(̛GE~?eA_ -,(Lm fk5a -PI2)G~-C\"[^.)v֖VHˋ]%%nҼr"OߕDϣ*%=/;UmD>b:٧~*G~.GE`)e -E `:6X ge`]| 뇂#]TJ¾7.o"vb7 ͢b*$0όFGN_`.VY\YR (1F>,nsv!?9 ?}98F怅y;"9v5<΀e8XWBEMtNN48UM{L`3`Pq` v[=Bjz71Rqͮ8)ī$<ܯ$0^ mO+]W]S3X,sF_n,,7QZ 'mZ -q|س~'(N !;-:Vg`;ؠV)_+4o`3'2#{ط{ z k>,qTY턆I- - ݢP\+'-uBk#)Jaɒv,Z(Gke3VC߿(NZ *h T`ր3ko_;gc`QX[?=<#zz`Q#Խwjm*t Yp=SCXCRMSBbg񏡫1%?sipfX (Ɍ -uh`)Õ{D`.#lP\ -h]`sƁ`ϙ\!m%u: g۳n݌3=̥Fw6849%8%}nqLwMsFkI.nk?a[`1s XRY ۡRB,Z gy%G -E|- D{N͚`/ÃIj ʊ]_|V7g9aOhUUn)(Z?gldKNg,ypxa5El8h6lဵ_.(˗9% F5`E( `Wr{BgzF/Uh5 ښ5BGOt> iɈxaӞ)MyK\GVpE[sDJM͍Ѻq^:4ضL{f1y.Pd &+`GE0_5`2̏/t,tt{*WfO*?7M%Ɉ¡yjf|1yfZ}>Rc6,b{s&GsTE.wr tsMltžt8V* c>Qf8eX>oXUl׾6&0ͩ`v{**ڋI;߿s~֙˧/U7K9]>^ԹH=ޤLk<Z`A5Ƙveٵ>,E@< >zTo'nӱ.e1C~}"̇E4f6ؤv|6&){ܓ;4hB-zzZ=}#-ʐ)đ2ms}ܷKA5rJr~L\y|!e?˂N4Mw3g3~H񔰨"ɨ6V-ZA3m50V5[MgF`;lӹv;m`f-d]~>j_@Ɔ#廋u0oy8wєNoߧVlVMph3^yىktym1.J7hT"^@gCHB]hĉ5kW7RUm0 Sazla1أmb^0Mt8|r æ'. >t~s0K?s7>fi9iWڒ4e8H-׷m4٠ЖFb[}JcngzǞϑ^nOM:ӛ`6y2nav+NS?׺0c#L=fq[xl΅y-p!Jɴ"C:i7muJ5^!ZIvkC!xPij?Zڌ3H_(D}eV129#h%KmW!8Y.<6ZC_0ng|&<:d([Nٶ Z_ւ6`s9|$QhPbN۰m>Vm4ӘQ T҆Vڂ7N;gY54eaKzrWRq"Fݸi{N} l՜xgōڍن%=@5 -ʅ2G֢3*qB ;H$ :Hw@V5M>``5v^>tṾR>K}LMt'i-L8DQ09aTLX~''.]rmUΠ{S]N웹+u9`dn?}oDZ{?tyAydx!~ހ@ÆzcAuVVgew?j__*2gt1ƌm;y0'vF=/&_ 0_y&< oн568px70,odDG^z+#žCd9Rwg|;}?0|FFF){/7_Qc^ﺘ]䢜1`r ' ݒWqmG{ߌMv#f79Ef>&F12٥<+`A8$QZަJ~9xR@./y/f]HM6{;]q!v#q>U: H. }fǕ\Ab -`cZD(ӸNZ)KHId⒪e7B~v7U_-4Y;Esm)魺4˓hNo i>65|7%+gy]SS@agfZ'oGWn72kQtlY -LZO4F/a?5`>1/Di)a]ٯnޯzil9B79,79jrmo-Y8OZ\睺({d`Rb'9Q87R'%s+X&tݥ"al^UU5dTrڅx~F-χ -ڗ#]d8 e;zVj>Vְ7!e1~5Fpp8?KG]h=8z0^q@(2d eܘ\in|><^^X:_*oǭ!ݓVYڢM-j?TU -pMh}c[3<3j~丅ܶ#X8k5P -Xns5;h aĿ|~s|I*%vIؗWg^{%~`q{&b -h&gB ;#s}b> toq1i~,`3ᗻI֩g (hpگF5C_TeqG񃿫la`ZHqy3&w&|%.9g龤j9i9].̙O5t/0rXo4U a4aev:L#xZ -t6W ОtN^4nɃ -!3e5b`t(9ۀ_=<?Tv;K愠]$o1􈸞cޣd&SP|w-Nj^ob0͍i38n轆 ,<䕕Y@-Fkrs5Au#*@e>}L P=t5BlSf^Y[ GrǑ10˭?)r>^wW>$1h -;/#F"όݾ_'/c'cP7U8za.[F&2.i#,KXQ -;c{/1Fw#~!.to%r08a380?2eC,=bcovكMf>IsQ],v-nu=|!圼p6n v+m{cXQ<3s:727tʺ/ r}W]M\񞍹YIh=H:nxO ,WQ6CE5S@ kt-qq> |HxAc 36UURo'P~o./c@#D134$@j/?NOV6't Q=\MD/&V^h]AW|MV ;'/tcWe ؖ2Q9Bg*SBX7휿JG>x2s\Yy鿈F-E N3ўa*@TPg!cavaݜ1ZŠ - -z̅]"'MԏXxN#u~=DcƬ_5sj}0rh- -cByh\[|hp߂1h_)0cO`'G.c[ȸNF<#'ہi]D\n*ѩЧnk! -y ^$*CTxOA1zP1 -{O`c\ΣZ1oj CLmzA3?^6-uWV;oGDhqF`zu*hsd-.L¬M抯LRQǡ<~@c.&l]gp̬eQ.zs>u4$4Jg9mB"w]禵(wא0H^[[t?8Me6ڃFy=});:e['qx|@LbXH \G2*^"8/̥~֥rqݮcHG7.a/w`-GĖ#fl&nYEW'vyhlfdQ|1Q \=9" - Tb\)m)F.SX);A[XIx#hڷBd듾.Ӱ^3 s`>.#b5GN5~>gi2GF!.ڧK8ʋx=ZMsLDn~=;4WN!n&}')IRb̵62{7Gv@hc=c -@Gt؀mq^g>A{kHB@߃Y2qP)xj*bvcn3#:]7c*]X'Yo"Jv3\A-X]xOzX;|QnC 8)1> ;;6z\򈳇Is273|b¼b%q1`~w6n:;8#Ixm=ȡ϶0 --m"ۺ-'ac^L^~^-ho"ڿF|dU:'*r/y-f|Sf|ڦ7bN\Gk,,iV$7]ROR;n; 4@#.B Y-mg9'.NB NX@؆>* _$2v6Gm]po>Y˻j㉴\ -cWl%0?F'qn -b2v &RR3^1+;ɐ;p e}(SnečHkw[@:D)8I,a:7`=x wW.1Kyiy ofj<ĚG#FdO(-W;p[ϙƘ {y̠\}8a㚼cԭGq -uXC!<'צ2 .[D<뢸cD𳭈;/d/3j=ˋ؃9,Aj<(<̔c(ؑ\!k6r؍6K9Kb'u52cqNivquJH1YP }2kU=ʰa妶Qz4ꉲTZ6q^ Q/zM  -qsoV֞*h K8G-swq:g-ʀg?HP#3t_ sKY_ϻ=ZjH Í1Z9M_h=ܐ,BLyP?l". a~~31{zU6bZE,:Y@u兛 e % E#'_tqn*<'Kڇ-@[1U,Gq<(VQsCH 1ȫ^sÅxk.浊\T# f4Z;aB77V#.yg6$<{\˞tAs1(?su&-! :k kT! 7}-Q9O3∐OEwiɼ3.SqpnP6-qm``UygJG Y\0$OXC銛]X2$N_ǰT뭬|ߴ +/gv7)r_[xx\tfyVTZ.ãcM= ŭ[f=hb5h_>cI^_y:|zTuU68Ѕ5b:1qLG,:/6Y;mbhHs-m~@gƦeΆG -#Pbt1v,W48'&krNHP]#mN$d*}!&IƮz%/¹  v 8w;e94in+w -mG\.YE:?qHia~oSe⭹Hk Jdj:3v^86Ei-?0&`_"TL%/ l|f,# j8l K6e.h y%&.;%`rPzzdcf<ˑJGZ]\#qZaBxf'9# -vS봄MlAR)y%9DL!2JՃn#,]ricsy O$ xNM3Ŭ'cgQ_(X󨃃MU4a'CxRet| Bv,lĥyg'1:>kY[ 1Gd3>Ca1[ONqǁへTx\Q~XAĊC:jhZb}ڌ)7SR%yAw{E"8B.u-CFiTd4Юgibq16p\LHAZJDZuMlůzB lu^.3Pn(;#א7RoLF{0fE\>&|l$*w3闷ۦ"zQmmUꓜxDpNFcNG'@zHvڭtOt5& -桦2ԛz&ˣf]R;apqwns0"*r3Y4h 8GfaNzNZ\eyY9yFEfN@' Sn20mf2Lύ4 |"n3#Nj6D+lF3}Հ\f#Mdq |7bY'L+;SO d3zlS)f1bX~71zgMr>MhF; lFgQigDv_xQ}o`LS;˛ -`m.B6<åM[%k'uj0v 8ABZoHFBO * 1bD B\[ L]:9큵m ZJjzg&yfXҼ| xdVGuU;?u+_:,-] rIӾ!8!T7͹pk:H^.W<4=z+䜔W .dEs=ͽU\$ʫjD+y}Ί$ ;+,߹Bs@3V#q3;skB`J[ir2[f[xKZ6aC(15Peg|&hzS 78[$Na=:3oӄ+=+!rde$gWTgg\}' ZG^'>}`P;;Jr>܌ vZadg/p0^5 -,We[Pv~:l3oC]~P_0p,听җ/$U K;Áݯ~}@XhVþ9gb^у)f%zEnhuP7RHXO٧=]k^\ -էwU">3KŔń3(-`y=ޠW --n#yK~'f|q*v:cP_lPoPX=vҹe9IcvVijFRoEԡg/qxe`gYa,5{ = Vv$ A+}GyfY!X-z3ϔx= ܦ>Y%טE!'3xϔsp -z!tdN]Sn=J@y`o**x ԎgJ -0y3+K -,[XՒF#ƃMwLC`O=fU{ϸy V7;K -,bO=]vO*y 2sknFEr)n'.ⓅI` F{6 |W+s:\ -:@Nmn'-5Blhw9Q@1Cp_sf&4({[DӈvrAR΢STW);˿ڌ(9kBck);K?쬰nv,/,^#Dv`7I=lzRwZ*J\* 'ͤ05H^ҭs\=I"Rt -KdvF3Wr{^nVV @F'ތ֖M„!5u@/Jaު)& C~/zNH;O:: -7W*6oR*osvkKJsI-#xQ[W :Pv4GMYigI;*-4\1JJ;,l0ʷ_(^ps98. ղ3G $3 q+Pڸ-3i 9)yg@Kc%vYgyF,{tH6ϻ#r0Բ|nvKY-? U7;eacl{zTمB W),%-~K{h.oqnwxؕK`?GD)O,s[D1QY6Q:N=s's،sKΒʪ+ROǞ>vT>Z,9NY`@39_»YB\#h|9(,50{fF;lY>#k&K󹗾\[̹"~q%uLYOL]u3')'o4kSH?= i}ymTT^]BNƢFYBkˑ'X(GK=5t8?/Ƭd|F `H=dlDu%mVVa1x4krNu1`wKƂ!DVOg -=#CF0Ėă31ACsV^4G&FZY1oo8p]QR;j%b I T;a8e0{,n^]i㣭$9>U0413}d㿰"JƃmcL坧u)|[ւP'Nӎ/.%6ϼ@sڳJ=ᢈݓ\6pH-_޼B<0mV/;̹K 'uM-Nܴ9~ uu1[ٰCዤ^s >b2ֺAŨSh͜q1Tmɒ2C+uƕRiFrCSZB~bs/F_ԓLUey%TL -((&b0GH-^g-\O1\.L9>*ٵ8ʘCN|: &U8p^2!"YQ!z3CJuϺ؝[qT3EN8:vO5Mq|޵PѢG-`ׇSLu=ܾ'G!e@u;?w~bjR9$9kX_ ~ }f!}*bbutKcRȥD4O F/֥sBĿ3Og ~eB}^T1ְL 7i K?#9["0"y(k kϸꎍ`2[5e]ZWNJ[Wc˥_^D}ǐ{=a]{]/ ->M[XkEg{bMzq;zu3rFskcC_oiE昽RvOMGsEEb4r$79jT1g(bIGñ&s -$+I,{瀾_ -yDA`m ; -u6G$ 2F>B`GVM$5 -s`xo/jUbȁ`JfH.bmLy*S֗GF?"y- 柔wg..s:^$vv|Kяa9rwXG*As'!fһRޡZ*`q~$dH)`U\d)4[:Wu|>Wrg>RӳچjeUK|Mo1J]&u4UɭkKTWa/*|LɻS5ᰆ$v`ObSh_;g$X"X$=06Ij~{oJt z&**C|fy҆MƦ*h&wqݑ'a'6oCmirİﰖG#!gZ|<-ԃX%EVN +^#P;#t!tX^)HF#t#rB!r'~(O=Ε|6>ѱ^$Z(rbL0O? uu:?I&A_4G J.ƥó)3[:i\D&L&t+s9znXRxg9elٺ'dӟG5SY[OmAGdpzHN#؃ܮz|=_z|=_z|=_z|=_z|=_ɓmZkӢUgL,vvc@2mZ;˝v-ܼu8-MkuNbmf6ltt4ytYys,ҝkbm;m'OZZ8Z_[;̞<;(ӵ"/L_P}Q,'K/oo~v?Nm+2__gZk;K5f]XHlzӻ'_˽`P֝OĒ8m^E?|˶H/Gd&au_{bٛt6nb+6 -}S+ #V}aBRCFcfA~Bo0Qn0~OM_ʣ䪹nbŏ -A@it\)֮2Vl\oMzGOc -S>Rڧf3VL-wPZ21،m=cSźG1oXe9cNֆ8M)=T1/~=>;c-Ic 6B=D4r^#?{A>>}Dhhc/6ނmCº>ڦ[ͨ5T&tZJݴn* G--e01vڌҁF%k40jp%p #'LaOdZ=2o#cq=bS-bXx>=j3<6N6kAw GCrGT'r0&C ta] -w3-7ׄNl =qQhXhl6О2 ޑZo:lT*TtRa,5%_Ct- -쳅-kQn sCZ(j{-h*ۑ_ oma{@~g`)sXSkMkQl&h3y`edWv -'G 2 L͍F`ݽ/yW0)[9Lg0TR]/aѳc-|C"9sHYiɁI3<~W쭠-aT/[`l'}տWM#t3X==Nޓc:pnT3aD>T+)8[= :'{3{p֮=}!z 9nL13{ؗsЁc?#t'WA{8mJeW`]^{{w{>Ȋ Д\:tύO9x=M`/ot_cO޿[)`~&,oGEK)8{$){TVƬՓ&瀽ۼGP6즅}BB{YcMp8ޢ}D_e*?jC+yHN}%>ؓI[bχ6)tC@e@uI;`&N(!\Ğtu7#G&X .QM)?QHgeⓉĞ!ݟKa3g`&j8}Q,{$ vF݂wQ}0s$w5Y=cM}5>qRPhC'ҿ}נ~Bp칣*&ۈ1ߴT:掁:C5 bϞ6Rt }[Uh2jr/aطD|:SO>JoBoZVJFFEP -'1n=&_oVZk1N=|RaYi־ڬ]PoCg6Ƙ{Ğg-{N#C}!h;@p -)bmܵtJ,TBGZ[@Fhr}7S.-'tWP޷'¾b֯7QL{ՑSqr$yA8)rB[I,%$_${ &gғ_#`JCzlt@<))[`$jQ9^`>#msX\1,8BK>:B>C5wCG{o9W 'þ=bL$hTQe k$z .OCxGӽFbɵwES~…ܿmTo)k#q>P:VmKA!~Q%i"N@ -ڻЁ:jb.QB@(3n0H.n .>T14g'O|)#KƤ:hQ~sG` 8kM@$gړɹ .c?;0pyԗ1^$08o ghҟ\*G䎦{!IFn{HdH6jSG 8ݻKlTN><~ C e -Z2ꔸE 5[VٸK +'}؜q=@#UȻ O {k1$5]pS06l<{W"VdShhXn(VƼ R7jC|ُs|4>ߘo6IcyP!zd.Lhwsy7}P2L(軃`J0Р]ϹFD>RCԡH@|HA% |QMUCc"`ROς=2]мCnEjkHDH?$f!Gh8K@ 09-SVK@-4j:W"$v򟟧2Ќ"6 ?DN~ Y6vU5<3I"~C cZ ∭8p+gTSM Vf6sBȑxǀ/C FUZ'OBy $v 1u [!|1'#qo$ -c^B7 u oK{MwDpBL&p1 /fhnN+Y *J+4ֆ/MH]ޭo v{x_ܽuq!kz E ZT;鼝o -endstream endobj 96 0 obj <>stream -h R6pBHN=PHX`(Ui\[=垿3-~ [vaK`ٱYWICTVn=Á>ƀ~Á衐Z:w ՞$'p'9{ |c;:SV 6ɑmٓDN=-YnWpkI{⳻u k& -T:b H?JzؘIQƍK@TOwGX*'F߉x Fj ֑<|%B1mh=}84/(K5Is$nXmRKƂzI\ش~]i3ǣ'xV6C6O| ->9#,3^(dVژ4Ff -cRkmvz*M 2dl|1;z1F|,AD92CF}492/.zO:AHj\hQ{sޙɸ|cqjswlY聈EЊA -{ )K"'up8L&z/ɕНAm˩ i5w -JaEǢg(&}һ%F|9b"Se@yF?`D㪧Y730UVSeԋ (8DCGe |&l|E(䇬_o诳yw1em?SmYKs3e|ÕBIat[I\ )jAq ,J]_7O>3˾D@@/vY]˜<RS-}{7DԜ~A?w !Um%W5ĻgZpI|=a&g/& ޔnDްM\"wD^4ۥNQRn]ԁN$\j H#S\Q9@Yv%6g$9h/ mrqVT C/+$k 飇w:'O7FE_z}襐|cBo\v'1oΨn%?Ik -}z9]Nf*JC˙M{3v0g SO: )'=(}\ qO8>-}n qQ+e*{3>r<<'1ϝ9bA*G'>R;_ J%4@ tv2"eYT[!P:zqMwp:ȽA0?P=#MeSf9#8^>k&FM_VzkA'I =2%1^D[>c*?}ѯBGֽ4axL֙y쾧[cjh~ac6AY X聚Nؑ2qKυ>H瘛R-/K-$E+~  Tϫ^ jYbj'y:J{ k@M/$͂Odo.R/æ1~㑟J&0חʺ$ @LCZNj==Ӵ$1znྱ)$1rJU ,𴤂b5` ǀ7t\eؕwy }j7$x(`r*w}\mR/:r5)cÁy'_'Jvb^+#uDhL".=׀ϔyq!tj[ӺJl-~3)i_tgΧo1Vu/A}O}TNsz݂c{KQ5hv wO:O3Q6FdqXH8خ_lRXFv[\܆9#iukڟ0MP#B@ۅ~I}ӥМ1"דi[GZzu|(A9:V#y)ա-^Ch' `1+HN 9):U)C6|UV6T)X l;~#]|bPJpwȉsn6XزJ(i_V:b(gC{A ~Ihϕj*nQUv-xcKȉp"MQ.`mVc΍\I -T =̓ y,ѥJ5qm؜K}퟊9>T9t~6R8G3NU -}DLB_ m]OO-tJF{Ca'Éo_t(}# SO6F<IݜBZZ@3 = [~#i(CmoKM_CS9_haФ6BN@?R31f/DG@r5m(|9y:X8ڱ|j~9??sR+zhc>˒1%IX< -,KpP@׆1j :ǁ%ɩńs(\3U{L+Bޥɷ 6ll %M1t0we`(+>( -}Iڛ9l =,=7@3utxکЏsNݽ.9j -JޭћdLإ5[R& ۻuu!}gJr遵!#ekĊX_JN-j3C% G~6ln6qmAFMj [ޜ6/CH dN߈9 3VUr%[|~i>G dvXqʻƯDPH!s5< :LT ڮmF --F -Rka~kEpT7n`koVi,YZM4~1fAL5vQ~!}E^ rK 199j^vP}Ӫ5o71lp1 7ALSWEZܔ*lf6j0Hm^q鼆KO\+ё|2"b1ҏ/"D3 KgB/9[w5eG /<*թ8>~6PėǔM+7խҮl¦)>nU`.l R?cf3 >xCQ>xdx0g(#!+ ]5bD{MbNy6>2䝴go9}GJreO^1W/-(}<_yz ȃ2C"u>QZ/XClz1'tv;]cTNQ}gL4473TZAi;+ wLp\i=|b|FmѻAg:ߘ(BK=!SnjWJ>fxmۼU}1¶%ROX$#2!u,!")L# !-Pܸ/_Ö[3qunDp#LQ=I6&E}T`or{ 9!^=ϫ/jZ{@.u{&ߋ-'#-tf&S4uOrK9SKƜ1S x&^ ~eH^(53;cxb5Bꕅt=[< (?SƐ|ri=9RG䍗+&ˉus;)K{y =oPwFs<1CGoE.h^'f';͐*'gO9t:az`Y{s{[V`YnްE2]V~w\b 캯*=eYus ln|F`^TGjSKZծ'=?Q9ّ2x. IJiyI(#!\e_v'@h.Б:j+Mu>)k_9c27|P ljX׀by6|\csKC<$5x8}Y>le*6λd$5Q/yI/. Mys ]zkPΪH;jT{nt]1Bck˰Eg!U1'0Gr/V >8k@Gt$uIb96{i~Mհ]'7Q=ȑ!}(1Ji2PKAYYwͯ^t*1OT 6z ,xQuyu{xY311=:9?6CW:/Q<wʂKcuT}"M5/l K=8=1[KִqS;+bIZ?~ߞv{ -|?äc #bT'?it"b}FE?k$soa͸ |ީeoٌw0& c8z-X f7v93rQbef=[MEGٕ$΁3=ЏMwU=p0PSN̦} -/3|NAN Fkf@a([={b -{BkR] G(䡬^t k^;|jF< -Z94kwr`Y"gV6zQk F g-~Qc|EJMÃX7U5ӎ/Z +>\9Uw'>ñ&Dܪ (C) m$w+LLŪ i,-#Sf±Yqf5}X;1'3 -ocSpĐN&5|l(7>d,.FBQQS]ӟN`}yOq4^1E:g sI`I.R+^CCcsX:/;j>_L{9kSDk|@B3%壇ב<L(XQkG c+|"_^$:X0hY>SURH9{&yO -ii|HmۅAo!TUִ}zN%Ƨ8"MG͆aUkU5k "v+u -UѽeB/Mަyni+[`"wb_s]3-9+0AI I~!; va!dI\iं/6 Xklt;r2 bNGgLٽټ鼕s00/~~a!زL%cY7~) ~:ckH7mh:7*Vp*K:~Ĝzm>Ua2Ӏ~)n} 0 ?~>^{bwt&~b.큂Ո)jXVO ,W+qKNd˟FB 9O< -\U 7A -5dV $'ב< (ņʪ_i#)n\݌q+{YUi-S~tVUܶ;\^mn`]2Y} v\3/8*$ǗQ~X6[+T&b2LXD1Jψ)b]SrG0hIr{f:j̛ns+XQVӾ4rj.'St| WұK`gR܁J׋?|ԾllΝ%gluFPnޥOxཫN`LӕX;~03;LeZge?sg_7?wvrs ?+n1+CuUb]9ǤݝϤݚkޤ|A>~EVޤy -PXk\&5=C\~njs2<5?nc&+٪ֳ,ƟCYtEW9SiG ~s b(Cr~/Ɲ/ꊇFbūMAqGiR3 =Ny|QFG)]\]V]{wje>_x,6v寽uĵS7ԇI-76"{$>}KuU\ؼN.y+k_K|LY\Үc]z1ԊaE䀔;WO20w|r3<#!1_:ӭ♇…'6ާ S~=SeՋ&'G{C OYKSd(-VnO4sO+|ew:~ s>s!wꝚ?Wܤvws57W!иB#GY{%l{ۜ/yd{81jv\x䕙PF-x*ʵy#Vk^կS3cLen/<Ռ+1d^,V>+mb_1u22 -]*.=H޽Utͽξ=Tp;,'WɅ"aS${•WGꋭnNY}=x[*VNYxx6 5wWZl6_zx-T=4  Nۢ:=N-\*\yiϝ}fOsO-O+l\;o\1f\LyWɂE~R+?'6=`V6J;O<V}YU|PP}>sA8ɱ_{ ұ6  fozOTLSSɗ s᭚5 KgNs!61߈gJɷJh^mu /ڣɐ>&+;\LZl_󿽍޿ק?rȉjH*ȸ_C)ώ囿%L'{]`_`cJB{AS¥׶ w$i6=,w ;ۏw7|́W;..ҕ67s҅Gw]kMW\nplI~Ckə.c[[ɣ({ͩ˶XmG-}Zs?mڱ> ZOi6/OIړgnWjnCUylꥹL%ޏxb=u]|L}pwğ~V};mī҅ۥӏSO-UWxo‘_|l#56ۛb-^̴vm/X''u6F-쥷Ǯ|W72\uxrȥQqǃ|ǵ9fﯤr^G([t497}iCqLٳzwzm]ʐs>.}fF+Y%X??kRU&Xi)XFS ?^{hiRӓ%mv'ݎC\v06c\w<^W_jm7v3Ӷ0'yDMȅ Z:mjzYM >r78NxKGYLe]ݓy]GՋ9\{][?6(_EuvXJ3$yqss۞.4{Ӝ!tI/n}u+[~ќ~ߌg_1ܭǎ\cwe۸CpO^eaF5 -+]MfY_W^[ޒRTU?TʥOƟ[K7H;5ևAʚVfޞJ>$\ՙ*A}ggl_+T?OD}h+.|T 94?ARy;}dŻ[Yie1bs3Zrj[37e͎iI(/wwܹVGb|tՎ?:ŏm|^8u)tUұĩ@~<{)+[nj.# ] +^.6qx׷s^]:_s_l>u%TnyE<֢n5^{rl'NJ+*ڲ'd0>4;>.ߥ"ݥT}KYjz˄9LCr'ވ[I_Y=Yxſx!{&}jHc߿~y~w7MS"_MUgī-;1Tw7ZRJŖe\fsy^.}y ק33/~DΑ怬|үz]jNN>^yvOf:2ʛBs*6D5%?]M1N7ݵJ8^*}i)]p3{;ܼfۙ6We5kvt|CFb_- -Pe.om V&3+B2glN/o ̵}u8U.;.OߝN lOl+]}3"ۿ);Qiۣ\,)fɯRgmIrxVlim^^SQ[dp7糭^>>UU{s9oOf?r0`>gh~fD^lPb |J 3(mo7y"a96/dk.-ow].Kߺ܌ .iKvTc]nwol -ߴV7g6sFp5dXk.ϣaٖQStkɋ?6%4&U"q/kͰLL2w#G}KI۞==\q?w2뮇J^uFpV孈\$ƾߘVPgmI\2}V ܰEkN͟L%XlbUy~R^R1ob*Pcjs]_էgV^9";Z|NkYiWsIV/yg1cۓ$/*L+*_y',gr"癶ƐĿmN?;S ﭱ{>-6f9FW18P7K>o&+V$ 0?)(U&?5Z_kb7Q=tczOQ0fbF.ձ7AKPwFp緲joD]qv`z33KrscÚRJnD4,Vt^Ɲܭodž}ߖ3B߆vn眍T :2bs-]=Tz'=N1Iwb¨ -9 WWUSQ@H0pŤK?k:oUᇱۻ6ڵ.wS7/b(Dg򢛓 - -oDeW\{=)DerX{kC|4/_:EW1k4: WMGW[g5ybbדuL?r:䧴WZ~w+-?0 ku Ϻ.!;j\Vո[br*Ef}JX!YǯdyCC ξQ۔Xte-Htܛ_{%"ٵ²ɸp30=19{)͓׃2 -ʿ&[3k[|P[JA3Lÿv9͹]ȹx-7SWC[o>)}@~͖].G?|6ZF1ܡ+{~f#zMVL`Kshu/62-I)srD!9坾\pVp/^z+.+1-/>.7!&] Y3K#rL~r_kɺVjΝD1Js >]iE9t[6~/:ǡ&_1J1$ŷ#*XbQQz//-^Ls343v|cgu6ae+IG>d=ٓ l 9\;Ahۺ,_Hz=z{ǿpZ}+C ۣv ڇ(f,sP,?sW]֝Gܚ*snR;tn-nVtZHCr )jV~'^`!>sN_ )C<(['r=&zH8dbTbJOBXꮱtX)9sBda7ݻVV;ܵBˮEf6do;kT*E(,XQEzYuU i;J.M5XQĘ5}dx~?g>+Xsg?&]xGt~"Gs#6sDkLOdc'Dvd1C̭<Ѥiz6ʼWU _o:[J/R؂s7J[p8͛y(hZ~+>ǖ_Taα햺:>/g$ߏ9K hddk,"kL"MwXd5Wh, -M*@=BqZ+wwG+祝/qx|u+hnv?rRT -eј@r dc1 Oқ,"s7AfFx9# Ud25YC>Yh_%r8퍑q Uя+!\iE8m}5sˇyz{u$Ugع"2~ό-2sTc*~n*2c8?L١I-Af˱}a BKB$4= Fs.4AϨ뤵#WzKhj&νs;y3)Fnm5N^ǫ܎K_jZi1?{T\{>'Kly ~nu?cMGdeMN!h֚L4ë(DSf!hg67E;՝+_Np=#xZϿ"ڒK͍}G/]*5öەvu\u9dR -ê XIr-qıL~;d9"'4&!i7Ĺ;?dlDiЌhFP3W;?[sH5/ϖ%pҖ Esṷe50s{n4~&AO_2 syjLA26,NY@Sا!~ OBBTWʯaܗ/EU^Tk\\317ߞXl!!xI]eADFx&GV8\zeNh1>u5? -E֖+pN)@3h"喂բLr\ƒ+>UYSJA%x,GCm_k–[; Fk۷77u;8 =7mr>$6OD葜_| A|4GZEb?[䳚zjTO=.-oMVԿ1r.qj;Fn'Ts=T~PP%?]+m)OZrSP^)[9Mn涾-yp3YGM#}Bfl> -Y-@#ddOgQh~ MʫKn,-:~aiͅy紖]V\Ycey/ϼ4Υtj*;׺f{UTg*^A~r8=8w..`7b3>TPzr-f7{cdO2dWd6 ld*G -Pրp{`jXeewUV<2Z3PVjV|aS%8?*Dۇ4k%ߨx[6飿 [ߤ>e=} ?ܸ)5;c(By~tM%rhjqC`s%hM,, .C}6cu$UA{_!,7YrR%b^+}3ԧ_"6"Vmas-e=*'*G*/3U*Y/븟xRtDG LӅŲF#ЏLi!sqlSY8ǚ`f,cpW&HKWU/TO/xn@cU*[*Np[U[^9Kq=BL+Ulߗ +ۊw<\F|ZL5Ou[} .Wܾr P:iԉb!{|۵x%=/]'hXm4\G/CY)Ӗ;x> |ΫV5 (.OK߽tE%T k -6nl?apMǿyZ=}+82W,CAa}XCWTg( b~-_xϝ{]{'9.~t/kzK?U۸Go5nj șRs;7a]*GUJ;U0r!Oӿ|( w -Woy1 -JJ{#{z P泎ވ'߿/x/hUpAz,᧿П}R|'/n" NI :I_gt=Y%HyiʃtI߇-zN〔VU)h#d=]B5p\v5XUxZWRW9J= -}q^2KI]!Aibyw⽜c|]+aw8 -OBqF!AK/-b~'_&̕NW :FV=b_ -V<0?RL }긵LR}`j>o34 kzXM@Ъ}zX{ިxUHDi  CGfnjN:4K2 -KK 60g^sˋ dȞ<&{~v`>/8wPo &{5Pm42} tD^˜PZOijWh l $\SeMu,N3UGf[Ζ > F\m98xt=XE7Y b5gEMZg%YJ?Qj *o,_Ui8%VQU+|3Nt!oz'٧loNgNISی֭EBq("=Sէ$ -b_ėbj=oH+lvW+RiN.7S 9:Lv$I^eƋs,Py 9`,اrr~ -JAXp]t^/T&h'i5|ܩ ͦ胆&pD/"K[Qҕ;=ʁYjs6Xl${})etZ0-*݉ u>\Zqx$ޘ.;6C~Eb~=9N"{̔lj2|n/S~ʃjWi#Ϥ='x=Z&^{wUACf>5'p^ܝW"iRU|*M.Jz4Ћz|ۂt糵0稚}3ԭT6c\?Q? nSѲO¸W=_b>xžOCrOϕ6}:Orѕߩ8RZ-ji3‹֮ o)24i=ehQ oW_:y^7Ƣս*w$ɔ)ن!3BK@ozWGJ.CfF"Urc1f"IїUqy*{-Cz]60~fjTKZZyNQx7Ѿ׊:G v_4sq^S DP 8]&8'ѢK9&;&I|rg4^yG䏇^6SW;tv!2C;>0{N:0]V\V$.ϊ˂28x;?~ }V2;s[22NWwij!̐*i-~ĜVx~"; ϩA<7?0{P cՃ2z&%gfɓZҐ M!A Ͽh-G贪ҡ`qjlX2T^R~`ԇq[|Cx{llTxnN; ln“䧻{n\*.|>j{7k^rԑo#Sc8gTAق& u/*A_!jҴ nkq&hOA+!U(_@t5JA8[&"h|Q&"ȐOՇan~h %xq4njjX<Ε.;4X]By:mUvU OTӥL Uon;DStu?T..=`#$M,׃qP7ۺ]yb*?<J%7kvan6=#hw^tv=u{@8} -ScfԛuFSi+{޻Jz{*=NH]xd>Ͽ .}Mx'͋>N&Ww*L/ U$k@G_řG\-RcνUSU oI4o>3Z#c6kK6l'kR&MWwO5]J6d -ġQ+t]yZ1aFdpቚ||h%OȎETy5Yk,|z LF[o >P~LQ̽OBΎ2yCW|h:=6跥/byO7[E-5$F^p\V-@n.>(P}rYN00A'Z8*wBSl=u]\w)Uj-B`aM7Yq'2}WHFW\_yQrG_d׋Q`R&wnp i߳U\jY|N)ax̲ \l{7jwͤjϢ*?)mH8O! x  5MƠ=zAkX:\cCE~\\us7즒 -=3}ςGe`lWa XRىG - 9s[5''o ;;5,]vCoEWמ֎u")?U%j° M*P!GyZ8eZy ~S -=׽dw t@P,U"AYdW}8LaZ̙niϳ͝ ~^<^cLz:,I~b+X}|zvtfSw]yhd5ԑo#?yP[ځ^X!`֫C4J=px쟓J@SO:{H/Z@S tr!_KHtg҃𩃴3V8q7?D<7_|>H~s)ctۧs7ט_&16MZK~q s|ۦdO&Nт5 +N%xHע3MAt]MfY:2.B],v'Ơ=ө'k~=Azਜ਼l sX筛ٕ ֳ${[؂Tѹ҃|Io#IzlL[#n-zQZut&m!86]n8"8HW{$HuQht2q@3%lfKoj`d5^:KKm3 z-Waln0hfo78[M͸xɮl~ђjD'fЉ%zDoS{5ވZ*lm=tRP #g*Xﱂ";oj7{OiܖC@t -WCt55ڛzy!eOT0$߹1>s7_,HWzc oj&t WCAuwqHϵx js H^[-KyBf"a=ln1My*bh 0a򉠉NOhQ폜`|AL++ ^+Y\_W09-f\6S&Ռ*Q6#&ޘ`'e4nFSo߹Q\Aǃ+BXEu|1L1ĦN ɧr -C  k'DCz=[k ZOt˅%=lIޒ+a΀}j7زvZj2`$VOPwtmilxh<]-Gg Ño ŗ:$ -IT?5|-l@{4]MВa~n;_ +g5ós SdkoT'cNM =z3|K(XsǞ1+nm }uz@D~> }c|@k鎛NoWKk>-P6MV[|qMN$n&X. KcLmОyiN-(>`JoHq[eر\EKJTDž̑bOᮟ\#vaElZH[~,ՒM6n1@jSDIB>zl_`|~)]d"}iH7me+;FWmYžTcA a:, xDē3QuQo1r !d-:Ō/h&s9:N&cq&f61$\,)@+?ɜ5kA7Ї5\L4}N`=}~qS2*6d0G!?㯽H>=AǕ žlބc5R;֪v3jsm GdhIIv\琲JC@AT- Nm3LꃳnzcC^9~2hvMO Vy[$qdZB1,N+F lN#4A*}&@#&,VO6V:Ms) -x]$vā2 K"zUuk9.0ؘDmЩc;:恾0__e"𺁯Awpaz@n]f:Od6=b+`d52z҈MZҚcl 楐 S6djPi-P@ &./#k>+?[@+X]#l:h2! yA{''^^l˙%`<~=sLl-7eC/kN|L)#~L 4'$=ϝ-.+l|b[Gm(ԩLm*E5r 9;,Gn& Ӡf0iFZ#^i,mvA2OTؿ~y--fRr=]ٷ̩dT+`1IՆxn+PD#AzR#@"c^g -)q&2TEI0u&щ9\RIhcu]Y욉J}03sc-~qyuf$j -8 F+yi4(C|}1=7PI8;˶  ;֏~Ob37ToSRxx4W{ځzoq8Zh&SonK6ϊu/vp^y+(0w QYkʕO-Cу oڐ\ru+?}A]l=OsysRx| wÝDr20廦X7%Tyz u X'=h*)Oo7gS [&c*ƀZ-`CVCVEpO(V;h1O]AǗ\#\ -,#㵀Q!oNJh >uY.Fʆ+zܝ {{tj 5:WcQ>eZ_͵\F-$?ugd=w=Λl:Wߎp*>#ڟJ+?<W }/w"< /- 1R&RI[n rZLxDG1lz[ 5)v6Uɒ&r:,k}|ƫzs 7E+Vk'; (Zx . 4E;|y=S栁k=X-^VtIWp=?YLj+ay'*[-U+8:?"sL|(]QZܾn~((R#zH_[I{K@sBC* V8%E\g8ހ6t`z dEWKӵ~x4YiqYo6 -YDmG5ےp ~+<1_)&CVLqRیA_omʻ_^yz=$cΆ&kSK& g)z.<#"Xv0r5xu1S~lSwTG٪s]O\GϞMSY/n8ve!X`}:w`^~U<4DOޜ"ؐJԂHY5FJw0сy'O-8MY ?;1Z_+ OӐǭH,5ThʆksDӶPh*o>70 '83އX!lrC-,=#8fRHB!0Ud[f-=~>z,dq&, g(YREag%ԇp+(";&5 Oti3ޟ,yu|uĎRl[ȁհnӲ⾩|.2g}/{@G%l3r,1Dv<'r/A~<;O5t;?+  ڃsȺ!pJwOɺb `-\IyC\W <~+9 8DGK$#듵Dx5HՖcɨ3s灄Uj`g.@^f l`gqezb"PgoipZ*mn{1&|<ȚHj*f&@ӛ^o?hqg ix'VL^]pN|=|iZUó%}_92brpΔPnjiqP љ3\;{7댭gƇ2@Q1vV ?rR"x&݀qH;k2^Ȝ)⽳8 EەiIUT؀"B<=b q<0±ۀf57m5HupVpψ_{AnOyO}Uw;+Oދ2iДNFghÚtqܦ:c -t8j%+ ,!ۏج-aBbvI8K'{zF0k9\f:=ι_<};Kդ?Y`b H<8DC|RDfWDg(b2udQYG-6?,w-v ?D~S1rc?0WrI퐃\l+{o`:c'͸{n,@WFt`o i*sm5k Dz -x$#%2$Ԡv >mrI>@$ E -#FȮ6St NA{X; ,؊3A@J֗k:x -\: `gaDYMi2BbJ G$iZ?݅}2_98P#k5]uX |WYF|mO>TM[3}n[#; |we^"@/$"8UC;R2B;:vEu^&, agu;K] C*$Z7C5|eHL<2wNBe:!@ k"pf~2x"_)|IB^X$q\\ ]; 42u$dgeڤ$ d g%P5ۆ{}Kf5dz['=k.Wpi= -y2^{g@d;{G=k ˁO`ezmἸϖ<{W\RA|g˂L8Ml]\Ys7VAZv/9b;~ksA0 -騼q -*x,X_+m)= /"Ӗ?O|`WʒaqX7Qز'9>w$ܘ.[]2q_zx<| ^ -sg؞FKޖSp+"{eQ-_o/]=llTGC$/hg՚{H$Sc7k++ UdO dny򁇁DU>K0XH)505!r)c)$FF86؟c!;h;A4ZEVdﴁ\IBUcLZ16v K\  z, u-W!W*. -p~Ɠ m[&ĢY|mWOnܯ<sN(u.oaL\]/4}nYOΗb=\ٞ\~5hY3dVgUcY%c,el#z+kbȇ3|>i|Y4š/)o>kpmKj2zFtjz~g=ɫN.Pd[0QZ|݁y!m >s./'|'\cZ|~ȓPD+4 mX'UH2zoy3h\^bfFn <X 9*:5_c lt1!Lv,+_& %Y͡yp?0 ؈ C&+?2mk"bl!PXf jxee"za0㱁Ol0 mGÚcȨ'hJmE|ŐK9C.Җ4V'<*l#TYX{)`u͞\Q1gYȚUx†+vķw -Qޣ_S=#.˫O. &3 &KBO^utRQݣ"f;3/u瀯׍/+?8]dYMfuԄa]4h -ظQJqn(A1QY ?bھX'jlˀ`a՜^@o ##}(6:N X[p=eu.dk?k٘<J e.+?4QȽ^`RuMmC/pY!a]T+/78Ԋ^[õ-<잌57s -]^1:lX,qa -Rz,z,`;FWf!El\5-{f90oqGr֚Cs`!Ya03K]<.o&qz$&U ~r)YfSr[-%ݶteT멅p}D -Tqn2pqHbl{nY - Lt8ܰ4[︳m/jЎ}{=3lEGs g%>% q֮>ܛԀb,?{2`-8ElF-8x}20UA32ov3?] ?P$䌲bC1r$lٲa}FV>y9\f$2cWn%Is`o|0?X[n u6dk8VlQ/',..אzjUlyqo%&#۲s&= 83P,mr5;=8l\p dIYz -CYz _<}T5Y57_Z/F" ]'V,ClɊ{^>!GW2W ْ W9~, jgߐGn*cXLq3%qxاpYft&Px|<>x|<>x|<>x|<>x|<>1sgBĺP]@w`8tcjdn~*x[J꺘ԘĄДL[@u͌L ^"xJ[{7ŋ+O·]`Bqdh -Rbcи?~w%@aŢ,uZvŢK8.w^lx~~eKƑϏ}yz]@7@Wdlk?ǖ\di񊉋t{H|^+ۋmYo݅"b#=9[_A-;ח/]j]|%x_V:?x"-y93Gvu\| -<ξ> D -D huxa*T-H(R:1!t$2_QҨmqDP&@kW _/ѱjAd iֹ2P^]QKAJ7 -"(P@ J),''R ϵhu膀!wD\ -'Id,K{ -tl6SХ( -(%I%kʠkPuA1t^]ݚYe -U!KG%2EK3i}x>j2P*cP*arbBd:i% W"P`"mPSB4mFeClҦS (sq9:E ʪiScK?b<\^w*t(1jL&-P\ ^{onQ)[Q^x4.ӒTnȦLS&`Hj\R>Qm ÉM&QPf NbwX QD"ZԵAY RCrJLXc` GT"א5LuNA핉)ӥb*taZ-USA(*7h"_AW5H#wo -Lm>v͈/՗@n)S5|zbo("Ip&Hd2 -Mʲ`/ 게zSy+Ea-((kLA\eVpq:tL|s%V2Pkw5vTZpv 4 %ݤ{~Ls*|pV29@Ȩ2%԰$ЍZJ0tpE"cuٔ<}Tn_>PC -ZKQk27jZOG'hZ!VndG([<=61W@:DH^f~+۔M%jXW#S`% -<HGr*g- - 򖐣K:PJSM I tq#]zQqZ\N_'#ս\Bb7EOҐx,S5)xώm DI&2p5!D -T\وqЕė2P1jD]t2siM&\tD*3Y[jd|6@X5P/P''iH؏'j63')R9zLPUf՚q ݯ\6AJAG38՞jSyj1t$IdrZ&B$thC,_WPHN.Ql7GNvR@|>ub}&tЀ]nUq.t}-9PIx`usx@8\PEJ5 /18.lY&8U %Pʣ_1ꐿ@G#e:(т*_tn2#9 pNXnMcaMo1\Fj 8~CncHUrq`F6NUU$lHM6݂caZlPʬ0VNBW/n%OB7Pe)9zVc;%]@QAeL r|-}eX6Ā2ʇ@$!'@!li5DIK-66g±%[/s cҁJb%GcnK55R&x b3t:Cg=-\o$ |6|LMgDq\՘Ő9\j#_k(Րe58 B8v;AW>DRrM8~(nT -^HTʰ۔kVPC$x!"xF@ytYC7-\!O$ - 燼T]x@YY_x_2!6o8sͺ$y -JxM"b=JLcG9d:TTr"9 " ("9g$H0;9V1s}]zU )b9D -Fޛw\ps:"ߠLP.sz3&alrT8# n+p=ɡӀR&V;'@ pa΁ks6Ci\m ;0%:F"UhAK\1~TA<ށ>y9 j2?I|o/a~cj)#) }VI=8;:d3pAPyڟ`M0=FҦփK+2&2TeG$y:wa8( Pq4@%5l' ST*j;ի#UCԾ2?Ġmd9 pvc"_Brց}'@*` FA$|) z(KuAY ,FIOSj3 89)0i(,Ɩd2ԥX Lr-Y\B=*}Y󹐼Ub9(@> -{ӗZZ(Q| ˞r ؃58V`߇\ }!+1Aa&8&" -。 -{WQi=59:&ɱx-HW\5u̻fgpX?g;(M8 )%@qKDOki(1SWcNc$4AbADm?=cwPP -"(ma;֡`p%NGhp҃>`dV *PxpFqAҪRѣփcqB9q7Pc/gO އ6(nxtMUG*){$, -1_&xTX4·PIP%|{(+ uN%uO 8zR)2۰Ei/ϣwG~㡟IT!H|317[wcܛ\t(>= -j-8P[U&&.`=;!s~83%[ƝDigI½lt.NU\.N,W%C\W\g/%>d u Q<.*|e\УlTF^ąh㸂5E90'!Ή(8Tvʋ@z6U{c@x1xGMN%꾞I?S Eu DCd?#˂R78VD9zkLӇ҅+KH?R(e@Y >k`:Ao\fk*G*D=87 ^'nu񵑞 -\s\T8BL9<`OHsO05Ws5 -bAG>Z\mדmY@ /y8c1ħ'@ݒ9ĀZs؛8$V =u(NrK$*b^[n5GǂF]g}`f'<TI8kKӋrCN6!/V!=ј?m5G9Og'ϥc^m"2p 4]Kc3G쒣 upI\A \И`+qE5J]J_KT"1 (ukWˍlT>Q$.N ARt.AF:`9׉ٍ 8ߊCﭖx$+KRfc<J;׀[Qulnτa -$|}w"x,KNs!wVZ 4a8z\KL0_<5exDL)"{8BC]k$Dڢ[S!|a,nqRTPD0X@:`*PrXA?I8āWH.EϔD:({$|z'Ay zЧ$\ RAiz n3YpB¹N* -stJ -$N:%=ۣ.#)~!pJ\.lLalH!OkC)Bbi7q!qI01m -ym)BP&NnRr8P}k FXWu;.e 9 TVnph)`"fWݓec 6כr66N uˈ8L>SjwK0/֓h 7+8le(c)@~+61ͮ#8EȐ#npa)b8E9EX8 P|^yuczA#k.qi Y -eLb66,o8*2wo)[ ܤTgA1x Gɼ9zDܑlȞ83wj,DU!PNpVDF|h!BA: <)>d? "]ypt~YΎZz q@c*6bJJPhVʶӛvNޥZ)BS2ػ20!c= O[ gHo!6 ̃gAK裀P]^jd@Kv>c!Q>2y@}p JNq);=Ϡ!)orly -\Np3qC?0g9Ά'SZ.IfcrO+>}ds uW\ @솳O%ה^G'|w'|@U*KIPc^!~kݰN9kѰWJPq=rf8N mtz*QFSBAC#Cdg0<@^W=Z ڽUڱ*Z+v -B  Lg Bp# ^nԀk&`ryA QhQ]kj8eS6 83ej =]qkҟ|Jrp=0>p!-lĽN"`NusWl3A=r` -iTꑠ D1c ->Auxs4:=! >C -ZHM] ik#C0ɤT --CKH+P'3_A0vij^AkN"p\ӕvmbS͟NˈS/=3zkBh8{1v Bn\^m6_j҅)kKUdqJn.F lv(3CS%Þ_N,q)ґd}ZԥFU||: J/&q2S2puR:w\!זXFp0\;aĢ -u.TI-S3^n$zu}!X+\͞]=^Nr%D]Y`s؇. -\b*p.z -دC`y8cBt$fݦ+]m&,f-cl I1!4l̚2q -8x}C/ - uhGV0.])S~KH!yس?zq\Ta~؂ lă5!!=#gUpcӤ"wOzӁ(Kxl|&@z+* IlΎ︹T}q$ه=pvrWjOgG]-=,[ZnYFR8;vdFPkS#@s6)/JbnqjM]jSp'g=gO\E -)6p"Q%HM"<"$7Q_f[2qe<( ׹J5.F&537ptKԀs?f@Q3H-s A1=\U֨ńCqRC/ !H5'd rޫZ`dm@&%|*p.I@aIkQxxPgqHp}u^zq8]v2+x$*ɰwgbPX[&s͘{B;Q -K8+9I<ƒ^A$G_/ yq`rGp5 (8Cr~}ybp;%N(8cr.Du -Qj-Wߴ-{ET:"5퀳cVˤi&ҠEl\D58ž]8EИ}!Ϥj|B_ c#Gz\.q#s9E@x!7V01O7@͖ye/WpZ̅l[iR$r7snw_nw9MN &Yc?±HT,!PùCp&"I^Wp"H>^)vLqѬ_YD=i&j>z-p,o=ĸ\lc'J|@#N΁8C?;!&Ϊ88[A8_S)|g3p1 w8A({}*߃!QYG29WbG ;=x Q/3z2YR+K|/ Ύ!V/V+(]Q81 -wL -=P'81W3pv%v&Y6ܓ%icr8 JI%lb.\[FM3.Egl=qr UE}ogn-co!}p:qa .󽺔spv֎ύ^}E| j.^9pw!*1kq6`8%n%x3ag {~;Ra熓N)3a}0VG7$pc,횥,.^C>~"aGJq=$*伄z>89p<oaLJ4(o?w-Y^=q>&_BB#s. )νd/zXa;?QpNfѐ{a3mq-|p$qfӡқTQ|&h{i$gcvjڙId0 v!@oJT - ~o -'ztw9~n p685LFn*EzٜEe8g*l8җk&87b+&o@n؆=7}󲰿Ӏ8LTz&[[TE|:p[]_ -n;TcLõdw'{B=c?zFdbn V'ǀKo~l8/"w5e:iRp k%ӂ\BjfQF -{>s.EaO )\J"l1`2I I'tR6\6B}T̏C[uy>9R;˸{Hܧ4щ[ sB8wӺUٰ p!?V6:\$>i*}eֶKѤu=O/p A^׫sg2p&rpP.W~U6 ]BE 6n -e6vLʸ̦"KQW>a|0_|3?e8']*n:_%>j: {Qg%}x!e37L'/ } rv_3pt8j.Q]~6.M/J"Zl+>%Wi^ln.v*r5%sSSѪvMZ~BfhiMtT`ςJBe%ܫ\ҧn?7?9GAI^^ <[m8^.׼"enw -,U_Հz?)X\j--t0}7e*f}667.<=RW0>}se\Z&s+Ŧ\r`1EcsL {&lO-%MĹ=rv,]g:n.[{ 1hx/C7H.Hi3i/j-v)ADsҾ@q_ у&PmbuAw`βȃmeu^:J_KNJn7kLʎ}ocvJzZNe}%n_jr{(:z g,j1yH~Zdvrɵj9M&]XbnMgenG"bůڬ]=r~/'~nf?g^`Kط=χ/Ӆز.KY[Y[_Ies뽈M2>`{Ri^wc[uuqV~o#-,s˘ҡ/H6׾P>s(:]Hgr&~M%Wq}uxw8I?헲y],&iND4}l}ۤmCCt3l}g?I 5>f*2$RЯU\8C&{U~ZM6rZԍoYa?#UM۳Qm$僶<2]uX֤mW%ҧ5Ge7$vcU.hOcp.icLQpi(f(#9EmCI;?._?k)/ >ܚy9=ڻ<0>|toަƙvo 73gd_~/JW=k4-,s?h9,~s>J6ژIK/I[OɊ*me%UNU%oek-%k-'νg8+ -JV8gtm] Y+ #ޘ.= iw{B$]ĽݍL;{ā%R%X*b}th} -+T;<W{ ׫ڍI3ge܊[ &U&mR;9㞷XH -NH>l=$ynNOr[-jWySn%ktn籒j_iKƆykʽm⚫]M_Gyszeszu}R蓍)qGZMC=E5]?S%.w*~R6]"'R?nd ?4mbޖiV[迿q̾1&{Qw3\>:&a,$Hs;^Dklx⡖{I&žP׸ʹr$_oϘ_T4nH pG۲cq&+};CAӫ""ILfF.q#ڲ95FvWnԡ뱲`i_slC ףk21}TsZn*JADJѓoϢI &=UwigodUlq1Q'ߍDiMQZT U -sa8W-ÌuFY[ P1uM>֒VXPs!ѣ&8tsjEXٗ0 ɷր}N5&n͉6}.q/V\ľq!Eݺibw2ɬRtĊt̛ZL*JeDYE_D]E=@jK={xI4PCięƤ$d*84YKSvڬM[ChO*kxQ>~o*.D^'Sw}o&{pTRq!v3]m6|l~m>ǚsN6_Jl|zڏ)|DP7! _FxM F>ni=}qgl{8[n!iFNOrF.~S~ҴߡFndݔ~Ѿ12λ?ʱ>8";"5fcD~Mhi* -jRsymXICx^SDf[TPoeCzIߋIyH+C^@MHw_hĦ~Ր^d;qiYOSś|) ~*e߻?JL{*#ٖNG߄w樼魏*Ĵu{MpJ@Yu>~{V1-!՞ѷ#jm -lB_4ڄ_lCkmCW9DuV}-:=ڻ2 V ذ,^w%Ҽ;]W'MK=Lڋ#$DTF4I$߶__e5^i.ՑifE#tIDh{$FwƔԣדM{p.̏1-~םmX[dْ"{uԹ긕Y_y1*#yz^%qsȸRϨ9Q-&oyuyqA1iImFdy~~1qUqŞIL{W㗼P>SPoB\w"hǺ(_ɡFpE߭>x3-*0':(DzzEgn Pn'./;Q ת".Fܮq(j Kkp9}+=ȸO.}"*/&xDeyF9TFXէDO9ܜ)*ؼq}c]cO|}늟߼4dSVډny _mٞnwɷ7{GG?`UVq٤. ^  l':%O2HiZc\t:y9.#.=ڢziND=/eXg?_?xk[ʋYE5-2kѯ7ۙVWnTUYg& 7ruJ7YOCɆd$ʸk_D$NWn]cѕ{99Ϳ/͵&ϖo"_{v -]^PjSDr{LLwOe@{eHbkdN#ߜ Q$9͡1,\H}`: វ_Vq:A6c)our{VغCh*4w<d4DOh~?)IHYq2?Qdv){2J-,&^ \ ok4D/n!ivzw=|U`|k+<"q^,~Pcb(#r|Y^)<=:;L e6SG;R ~~oP|9qvКhBe|bafuyG$Cv f+qh !h0ǥ?!?G=P"ynyzmv䗉{<"D=,)ys>*'bWԥϨQO \# -\#pbȻE.QK/T$p_;|ş}_>m}ьkpИ&=]h8'm~W -d07# P ߄+0 4*?MFS/G+7Cq;_pJ\vgTaKxk7Q8DŽ?+r -3{0ԫ,8b+[o\"㊽eEi ~ksn zgalw˙v!Q?C~4$qw21_=܍d0/<y\591B{zlِ x%^Q]MT̡Hx>kD956aX&4-μ77 ڹaM_s0^?_PreF+4%w  ?YSƭEKA[y_!m =Yy1&'Ңj9/rMlz%)k ݢu?5*24yDk?t(N?8a=HEIvd?$?+Kne.O - -]R "#^{dLG侮!:EkȆ=+˜Ցsh,4v)0_JCJx0hhhO+ФQkԙќi\ʠ 4mq<>&-5[bysܛBW\nq*hx>Wztz,M#HfIyT2M4cz4sz4mN4c5M'D!hm4sV膢mN-U_:? "ՅE{Fbf/}U%Usc7~# -mŵuܿ=.ȓIfLȁkpA#cdhڈhUhԝh -Z8?K%h\M]H d% 4}*A \;Ze7o}޲<-0Tǽ,r|W_Wc_TST/5g6O8P` 6:M: M)MXs4e -i#Ѥ;f.6E3IU_~m-]UsŻ.}3-SucT[sZ*ԶzץΘK;,_X?g !u5IsޞcB~Vo(lovexx|E.1_G K5|^ݸ?YT)4z8A%Gz:ih X6h&s`͝rƄ5o9}3ƔhrY-A Nh%|6ct>^Eoazhv.+f_݈cqi/|_^;t9}qkmDZY]HomhBgԞ^^g?m(hR!%?F?| rҐYQ Me4i -4m.;B{'Vy/<_=oӶFL5~k٨- W>^-_W3ğ4ğ)6|1!prF?yQZ1%s$-h9 xcUi$A?Vڄs0_~V9LѼMGBM[BF+wBhr x&ZQ6R6~0l]ш]Yū=廳E07߾و>m=Y.IZ{__75kwnzǘw=|l`jmoyaӣ*$.ij"(F=ÜTֆ^gxGG3flD Z&mѶI_NI>=r~7S߫m4j}yW~S7X0SXOZAC -ya F.W -LG둶:nƝnLO9~3H aÞQ I#/Fx1JBs}Цc/lk5W±ygߧ߯jⷪ4y 9e.qAݡcO9I~Oiě x+QoAܗw>xU# -j6#M Q9F*Q Fb1SzxܠmwyfU-qd`yzݞ=7.V-Yi6Mq)znX'J]ߗ/xF~RwzE7ӦNT5!J~T$k,&a{囁eYyaYam>#m'蝌]$3m=ъ>ϸ)6uZI6FwOW{/WwE?9yp??œ=Kz-p\Z!+mv]]5]u b,FefZdn -EDS9~ &YuUiiiqqnT*:wSq%ꞎm&2n y:Zk[^L=`~yzt:<ŋjxS۪i)ڣ.DSQ -{؏2wK]()[a'@LG[@d:ܵ Qq%/3:8aLXrcn3d).M6Z&K]zc%EM'vSa/Voա ?g{v4+x5 %`yX d]|w8.aTWQlj_65/i|6~htv $ڣaa4yp/CҊ -G_ۿ! -P? -\Hl4$g477BTP!C'^ M[ם跫hԻZ5o.jU9Zke*hZ7lZp-~K~V>~y?BMNG0p48〴YF7׮7~0>m*}&v"gk vΧϢs1; \7MAl:QMտ b*vJq´m~=*_S\ArazF<^6 ߨw_Yo t~Zx}z^O k5.9g^#e.C -PB[F6mB:wv({ehh uLAkKf!z eNJ QMdQj6*e}IqƸFO\({V~toSoiTt\}|Ö}rw8)ƞ'6oae',6*ԇ/N5װu6wQw 98' \5AxLH} -ڵeY^i34TEV.#r h1p MK}iʠ!hR5G\Y@0 .Odi ph({\v@(2tl 8)yS{Zp7MAzV*RQeozƅPS{ :x3$XE~{ nN[9{j=Y^f -{Rd<|FէJ{ݘ ^]Fң -UI^^}\G*<> @^a/Ʒj8Nk E'G¼8֧оy )k1͹p_P]t eH$9ȸϤ뷲 ͪ zFDOV-ڧ v1 ۨKjTV:/N¸&dυL"'pW&Wo6ҧ*gD3OdS.'I?:5R3ddjoٟev-ubȌr)%<+GF_g"M=  jln5nPn=Xuډ΍[u c2R`fB|g!7sG -*hQPΜp***T!JA U)S)BdY&n[kkγ<ܾ}Z 9r"PtK嬜^kZ{=x?oc@̕=e/4ñv5-lG>:ɘ5%.w"{ _";gAu4gopCF玷(ƀ0y3>4fű7l-璊/p q,kbkr7 # 78Rm_c\X|'/&Ϟ}rwf_kpGr"Frž;<*:[ڄog{xv;Gx.8wavصč8Ǯ{e{œXާ?^<}[_kĿ&;aνXQۯtn::{ٿ}3f[[>,3}mU/_>u9 h^{a<_n|W%M1"17Sߛ{w"|5ZÌ*a.y%y_ #uZגݗVax3x&9.Ż6#-sovM -nzy7)7̮O^썶_KU8ֿ0e&Ϋr[3sA? g nsS6sA̳W\^rjG;L9֕| C9b.ܑէFJAcon%+{_2Pޟ>_g5놵້+4}I=5?8j~O5~0a=0.k mNkoټBgA5xol5ܳ0umyVY <}֮8|{1p.yr78ywO|{/h'ord𶭾Ӽpw#ٹw&ڎ.=W>ܳkùpp‡/uҽ+IN׹>z%%`׏UI?Mvc֢1<1Gm4l|ewOUpn p<;V,5ۓUa;Ɏc)wωYM|_90Q)'{7vk\?c;2׃?a?Xs8S8_ :7w x+?1ws<.Žp똵{'{d5x/?r:r2]Qƶ l~5؇s6ų' |$aQK -wXn8k{/E{l#z⣉쟦{^}' k}SgCY/}s]K.zo.wm+'Nve7nuO]ey C[tR9b ߆\{&Y|w_9W p}YS0/n^9ѝO^۱an3ǣ[1bbW޷nk]+a µhew-z2r=xk޶axV^o'!ݾc882Ǒ<%XE[qy s 签s}կx̆>ƽChӣ1דs Al'I'sNv<aAIJ =+v_&ל3A 1݀csh8 ^@s ]zsœܾ۳W l58{W=~-<@  5?y003臹d$$ -]&#J͎~FL'8g6f2¯##_N!(=/}Es߬}*?G<vw79k.(6~h>t"}/D<@ou]Ԫ0Ͱn_L s۷wΙw>ہW[үzvFa^:̩6z?k\/V}_\k9]=o3>h>3YmuM0ehzi)̕ݍ6b{j?mv$5Oc{%됄q1𴭼{K1/#8ۻ1_aeR7`;-"9my 1ׇw"E<]ohwy^3By1 s,ZiC*_cnЍHwÂq q/ssކCVH䀘g3fKl<4QW{ κ#~)y1p=GVg㢁OVl>\[.qZx3)`%;/l8z#waD:=;_Iλ_4!f'b^ӟFI{kIn]o8G{~Z7u_}Їm$wǮs>ǩ׾ :=3$Fu1;ٿƀ^=bZ8`ESv{vXӗBlNg$bJ_5&`[};siޫs|D2 kOUm}y˳&˅Uh|sy̭P7\z?bF| ǹT %`Ws|~v}O9%bTׂ]k[#VgNc ecN%ղvhLO@a_zd-o~)z<9ͬs >LW̕X]6X#oE;/%;5}]pاվLr~q0f_)Cw_Ys8b}iuIs¶sK6e$Onk95u4pPmTy0Xn V`Xy9Tb9v s=̍y[.}"l -+G5s y~\nJ,оH7r>cߏC1W07Nk Ǡȷ]oQONl7sOHmS 1kC}1 `\$Gt|х$O]k]GO'7윷syܡ>ewL0>.Ƅ;fA,w:ݘǗi? 6-sȇ -{Uݵ|/`|{Uy*\ ǜU9I8ctoF݀؉?kj7.{x`:>S+잙}0#o sqcag$||g#.+%Aφ#1mۼ繯V{1w ̓q|t/q#O^t!֌o{"D=5ҵ;: P>޿rO?{so{vO\Mt1[=;^0a;Gܫu/T?TCY(Hj_]WA_I#bG ם> Wyf<ݗz~G1c`ոgF# -/ l~]s&OK|/-s{ߧw~|{ǻI.d\_1uˊq摱]W?'9V`g>l<ӌ9E^60v##0,s[̋OĻ]O'^ߞ&XZ_6#W0lhW]vrgվ?8RvazS}Ic;4ǡ_'ѧ<]C3s:%؋g8aՇoĵx&g m ~o?u=\h+`"bG<-(C[6OS_mh=>3>.\7 -`]vx=0%{jf̣1$\h_w䪋H·?C& ɔ&OZ;tfo.мr!EuK+ At@w[``g:dOk0;fd زvO<{n_.'$l]iBS7z1?7b@qggc`7Jp W18of6-*ߨm8vwk_{o^y;{'T$G@\ {㩛 6'}/lC5`gMp -z`gٟ -15Al% ;k - 6ɥC`ÓG8,c_Lf0k܍}0k?B{ڷu&Ϭ=E#|`YX>C[3|ÉPǐ<[ճ η㉘Wsɘѵ﫻`#y;_?I ykU-Ɛ}CyX}:Ⱦ▗os=6{5~ v9ßWay+9 ^1"&_Ol={} t}r17v k^>Ŀk0gl`!{2v;fp & NO}_w;n쏹ݵ06x<:FDk/rDC|&M^?3F-X`|ňW\*'G{wB`.'oF+OFXkLM{R.n?q$,b>cklLϣJ Ge"v?hsSqӆY*3i;q0xa@,TΊ,vk}jW>y3ΊAkޫ2|̥X]5?<IK9q|0V篻$?7Ӊtc5S;5y(Ǽً|!>kܓϹ|Oa#ntG]*>vQ[Hߊhz -?s?٧gqҏశ`Ŀ^^u K6{[qΫ !Y6ݥbg]{D&VM5LXKC_\f-EZ6,u4bq|ꥻ/tOw|@\ [![7C>[_|tٶfuO³7W=sAoqڤ.-F6~ ]zxx?k&Y#{r(YZ]ٻpp+C,KF,RΪf/[?o]o2 m Թ^K}emWox{  cumyk܀9 fn yEpSm >#3]M=*#رGډ{=?|I]OCD@yMsx UHi6}GϞn:ý4ڒ!3Ci.Cvy.]~96ugݩѸw@`=3 -sYOug[,#vt<+ E,cp!vqO;k -<C@KV^]51&X? twÑ19=᝞޿]}w]V1*;|sM >np _<".߁Ay.<}וEo<>:pwڧ>}[{?,M$Y=GA\z 6'vV;kbgy绂n-`͋m jV ΂3pA\*?Ds|F?׸l0'߾E^|藬?Oj<:f:ϗ;?Ոz3>rP<|gz`pG70wQGlyī@l솩S6;o<1|] zйx۷?G -`B\ -6+oqt}v'wsb0_Z%agy1s -k~`-hyn޻k~Q]G -\k/] -bm89ڳ2&:~pqk˷"| ޓGt54n}V?"qR Nc_cKywwơTU28k=}+"n@]5eh 8Q ƶ+`@ #7F< 69]4(d5݅>w]s|DŽ3<9ҍ/Ky[v!aƒob<`7⮟O}|k{pOķ tb \%zq# f5ye;< Z`7`0Cߠ6hh4A7B<'S}n= _X>Q'^5``,yB7W]H4Y]?c߶b5h}lEް`l|!Vo ~< -v#ԣou#z]C͞/{޲zv,dj1X[ m;sԽ|C;yS?g0l_v'Ыgm= בߕ?TmF]_o%_xuZzoϼq;/`X8bD-7vwf\ Gr={3G!^Ĥz:Yým|̻gƬ!aX-OBF<d[ytM8I_~q{-]{z/o'|7p.׶Gx~ʽ˔{߯<;OL0l>bn~v /D[Ո~ y -Ǟwyb[=Ie9?˽Ջ]6+Kt %D'<@=ܻB߯Pt(rbH?p)rlo J 1U'vi}o 1R fߦ* f%V%XFm =yoכ׽0ӾGx&ݸdq,~_ -IbKΟyDk >r$1/os&Gn5byb$(c Ͼ!v!0nB t>xyM`K >orc``}0=F<ў`"1^~BCakѹ-tځc昄oj<;+%yx]b;ynoV́p`}O/pbIl+{wzvm8+x@gNlXV?at}ׂxb]s̳ѹюsyGp< Eu D|Lwc@'F|8s{o`5c ء8=^b#8W0|m 0?A @kOiG ]{*xB'CP}'+|O|> ߣs{Ү=MEG0Npp6_xq "6U`پkɺy= F:|VWǸ ϽOS>OS>OS>OS>OS>OS>OS>OS>OS>OSϨQ'! 4l -JM%I 4Heh87qV2882I co]6P~c g[ Ō*m-E{?CDa4sFfzХ+Kw(T=525dPӐA3 G1ґd$-CI)%xSu"ڔ62dzy8m&ȏ6IX;==^!{7ƚG40kMFZ3gGcH1ҔL$ۛ ŚgXGS4 MK Z"z5=MFh -t[ 'MYk &[.e5POLSԨl'gΠ|{A6;5;;o=Ŝs窽 f^j~սMRfY"uȤDHSXGww(S]gSkcU8ѡfezdk.g&֘Uߓ̵`ErfQ*+z-MY4̵јQV(G?tWd7LĞcju9mF ٨xsO hSLś#P2ȝTboM#Ѱ{=>*hR:C!NH;!`_0)WrNKi9=̕ӢwNs+l4Bߴ!Ʀǣ-% ZNKi VNϸwZfm@Vh):MKVkF֒ aR=k~b5>&Z[ZnGks:j}AЧ{xCCK$H+`K"WJ"f cĸ:]i Y{L6|{O ĖH*YDC(O;}iUP(.Q %&o7Et̒=Ʈnn+M-P>ܦJn$|r؂E}cZSzx:#2tѦd-\klܮB6s %S6Wv_oyzGҡ>8k%zk.5]<fyM$fEPlyO΅N: )`x<,=ς+ѥo7=vxr-h,@!nb؝axZa=K"Tmձ+uO4ώr_ zU:QcK {(uG -M`Pt jOiS:xa's&ӱR,T:`@LRB\̮9V͑Vs֢M~(wJZX*=\V1;"HX[fɞ&PZfemB9 -G#MiB^(?cW:kM0X{LUh+acxIA<:bc}/ -|Zw+˺w -MS`P 8=xfFoT7vOtEKQSۗpP?mbAa߆h,(lX]hQitG]^XND;dtF=c(j]J %Rbϝz餛{ܽ(sŢMPofC𴸎h4%zIא7X=$zTC'ѤI,K=B@K'zn80du$+ԳK٥w,e.]*uN*K=RXgttYIKKٹ-]k[7΅K٥Bty쒞Rx.`PӹqvI,,qBhxK,.Dz}wO"YfiH&p@Munhx*:RުZC- -%XRšs%XRʼn EU$GI)R,ي%xbT,)P%KRF؂:Sn])p\QL{YJ3M/wIfZiu?x~PUA"=e6ΏĪc}{qFt,DY҄7jD1]D ey2;?EדRbTѦHC[͑Pr,N"=hguSVLXsSzV׭WbP 9=(9XTH1IJolUڍ+`U)𸫾H2> _B7c(Mn$uKrݜGG'vN+>ҡCRtt nz6[ 1 W`FX, )E 3ko:+E̥h~)h>gtr)و-EKR_NCQF.T)_JJR_WGbx[νΚLa̠{u,cKNuiȐVx64*!-p'tvbzBBYq^Vn7Ҥceqm NiWҮboU,HxRѦyx,ԏ'B -endstream endobj 97 0 obj <>stream -M݅ -xQuWs,9f=3ni=Ҟco{- ؚ_4MS*zj -39M޾%^D%.x7Rsf;9$Q̯~Sq;y(O ̒=nhQ%K;QN_fv'Jwvm)!Uډ*DvrK;QNTQDź߼(xivcb`+|–Zgɧ kQ$}Į`H,E+` rёosT fJG~s;LN.\JK۬/5_ -l3.KC1\ٔmv>V9KˌVy7rOWJQѫbIQ;q}ޞ|:8Fq4HGZ"RoV~,f<*ҍ簯quu^NKo뮳(*^o.gv9jTlEo1X͎:S̙h>wt=jbI1yM,=͛0eF,6oz~,mޔ6oK7ESܼ͛I{,mʜ{ơPKdR"r_k)P6r?XNI@-S,s߆-4;!Ʀǣ:ʢw |FPP*[2 wkۣ1=$P.,^Yc/ʝR>R>`Q̹#%:xtvStz7!oԱ -s4OԆ5Q%6R5!R' w^>v8WK]9 UGVhGuVu0tNԹdSFt^mL'3S+(y%HS] -䟖N܍ZO{-k%*-Ks&Ri|^ÒZrP۪%w̒ZrPTW<^?+1IJioNNVhީ.:TK焇Z W%(7r ?L^,ydJIs䨔GZt7xp<Os%R9&$c:V{j`V.eғnBv?(TlCkwgZ,,([fy>ۏp)Vr=5!=FWZ>Ъ#d_hA[Z pDg'*^,L{\ZojIM'X0ů7d%(\_4Z --6hz;!܁\.hE7!J&Wmg=dWS,;9nU9h>WF%d7ϔ62KVJY>=6yVܧ$yta)P;Dbdu(ڝUX$&g7F&ZM>-_xop͉4Hۃ_>nnM/&TZKr/!uQ˺G,:߹$6} ; d -hc -y;)T\.R XJVmeRrVUG*Ը [?RVj1jbY䅾i9`2R+(9BIc*9U;Fc'p,ڋ9z.)S#ڙ+6hl7 l}n$&EŻk1X2T8unݦ'8ӛ=&6k -Y -FX1'HK*Xbyo8"D3J`OZt@ّ%#XpY>dY,v6&Z!gyʅ} 5$?TQeSh*8^E#4Ijd-3Ȭh!7Kpҏƺx TV_oOBˆ 6,2dPkڗ*,X-j(A9^4RfJ -tr ciEay4EpcSϢ9`NphЬ,>Wk+'X4VRWEbIIg tLD㬤xRB8Q$; -AI5Y)gf)^ja -i4! cGͬ -"lAD&aNm,'C\xBJ=#VD9pq,t -^H>QP -F , ڂϲ`F̀hV&4ېI+/UQjPjHZs4-v `i  %'0|JJ&I;BvDE8 %PRtJTf@ybdD(,90f])f?r PIŒGCaZLSЃ&P#kjh'a j5P` 1F 4s0.r fgHSIKaѼV.Z6*E -mi7(~̦$~Geh9fsi:(Eבv ݨ`P~:Oh=ih6͇|t oT0~ԀyQ&4G5śVFT`3j¼f -&(MB6D;< ID]*$p+JL=:+M)Z)0ج4VI(EH-!7$ ISt4`&Iӊ|VvdItga'gFC4?UAVFfe%"1MYdlH7j`S9.y,12DB1P>jl5֑DJ᚜OHeGyk]^XK2Atj[n؄[fVirIMU8 C"e/;XޚLƛyv ҊBN\6FUDQ4dҊR_A1-&i=b(?Q6 -#aU:&& R>Zay -HjERC q_+sf!逻,k 2UZ%廻=dέks/m)&hԈpL85s@#FlD=F(͙pH }E\+9 ֔q_ -pGC{Y{EP$YE'V[*~ddcJSt.\U?l2Ǽ̱ҳ.'=] -w~~neQM+V3rG5Uu6 ŌY8bdJB{z,,e:Lγc򘥍J)O_h7]KC%#S* Wޚ6\,T&wJ%2a$^$E紎X:eu`+RBmQ iit9_$βL4κ#D56l) A~:7~2C /6^{A$t6fSvVx٢;Cs:V,p, 70) ~Q#Q2.eO͔9K+>S]Ai/icY:ΘЁTβYT-SS\κҝ} vvC[fq,- -;׺6oq'HRaҞ`o$C|i"~t*G-XxfF32RC/x~el6lr )(p h -,kYHJ.lZN\ɈfQ0@^aE' sO\$mE4! ÈC 2ww}v~Kz^l )5ӣ)jԺ`Am5*Hs -oDWmj`fzcPvoLuxɑieܕ[Z6R?5Z35 UkjNMA&hP56FU-EԘnh!7Ϫ^Y55dzigь;Ő$iB܈Sπ!U6X֚%]I -Uu-ļH}ΠtWK*IYjxywbq?C@1+0keEBs0.K(zи}zxTHuXT"'qhP!˥9N[15k re210PT"k!5zs6 -F"49&1*VVTd$L !prRJ&X"y[xИVA[ej-da5k)jSTӈrիݦBJs=2M1.׮%=!3I&n:]Z,Kdzp8K0y3/Zr$D))˛0c5k(UFaUZ նj%M-W%̐,ItIRK)N+ ܄s -"#d0E3b!۾U)FZ"aW^ڊ4M7M)l4ʺ4&(5IFJ04+"չ*ZG$!X@;' -sM`XQ3($5Ĕ$ӈjzEVh$6W#H'Z[{H1CZv -6y ҵ$,XdK!k8+Z"-%?- YTkVd>^#<᩼(RkExR'`EFK#Jd B bfX &; X$2 -(|f-A]5+"PHTNZWb" k5-e*ъNK# tj&/ 8tY43j"-%;- YTkVd>^;ifjTk\+ːI%ZlF+lIjBLʵbThZ1UN6R5Zs8%ZgE^TTHZK1UNZs@_EJ3G+fFVbad LUK%!Ir -ʃPnFZ -j)iԵ"r>Qى}Sr@,I \ IҍҿE CrNS?GCoO~!}iqT*0V%0ׁh0$"-Fw:saOG*@b=dHjlEPrq R43ԁ#Dˈj^l2RYEzBEP4[ t,3hDyIkg'u (a,1%B/Dfƕ:uDw%B+M] -=[){ -g =4hS A!yHKYgNSsO*|c<ˌRSsS!K*".e-N=2Y$,<ʕJB2ZH#Ef]$Yb]ܣ]P.KPxr1tjQ/RF܋PGH03$ ilͶӚtj}٥Ҙ״Yu-,3 UOLcN8fNq^1.hY .Bl9]yRVr i t n"܌"H`Np^8U."rK'*En9YiB#`$_NcI8]4NpLyd 7^$Nm&<{)[8My2唓&< &EK:q,6.ha4 aotFz2d[ h$ XbdPh.I3BY( % VQJ*h`T4922Eh*6h&Rf#MHqRrUn4x Ls_'x y2i#g1[xL#H=XjĂxKD5d!H/r~$t6b' @r7I)e=R>?Iz|B[l,c;*+hyܣ*T;i_"i*xR~1n7ҳ1"ү&Qb$JiĮ3 e>ɛL`OtwelIJsyng`O>$2̢D2DzOHWKIߚQaIݗ*,VehZi2\NGdWTZNG@.,Mm˙b*,aC;_91 HLnҏ2~baHGRӫ&arʤT<1l ƀ涌n-V4d1òӽ8;ov4S'Ų&KR:{NJ-;ndbE3&t@U3bTPUR~cK0+)NZV UZj|w#*\U#W'V*_[R-ZI]W5|OhbReaSɐO"3RzEt.5*&$%|ME8TJjur{vVj;%K*&EjN6='Ƀ xt9< Jwٴ=јI5C@ӋJ'*CFUݡiiкahIaX uS,N;g@CfԩQ)fJʹ -B:aPi -ȤL#}t]y Y?~<;5#1F4T |eQ)IdG?h+RBn|h ),Lk -.s6tap~3wn$?ۤM8 -K,4fo W^A XR  Ւâ#&G͛E E* E 9Eޜ&7eRzLc`k&_&-~ylLZəR @. ,f *JB -ʰFYS*O4"պ -i8(4/ed-<99+;GNWʤH,%+7P; ')\9;Em-AGQ+3%`MxSAƜt+EhkUQS,cRLڤ+3ϱVdH FD]CғqūMJUѡԣ+r@<-(Hf˾0(K|/[ 6ŌvD*l!2I49!$&p*PkQʣ$}D'p - tI -!L7HQoRґp{c*S&Gp,dc0o(?v|; ԢHCc%<8̊ -*9hYxH9 -,9(0 -ţXa -TV"V9GK -_S2V"* $w :֜OxJ"2eNPF%N0e+xPu:Ęb -dJo3 $Ӕ<g:#|T\ \ Sp M* IJ`U P! 3'd;A%'tQOdYLdrщ@ -\!KTmlǃN8gFisJ&]̖A+&&3jolX,SmM --ePpmqt"-cc^DilEpR4I$dnȒ6V6t2:-QHY*%CṺ*)Di5$s#z`O\kZW x&ê_O~naQBrc'DCGk"x#yL P"ˊxS}k4]WxײRRԘ H}4nJ?oE=Lsı湀YW o cMDꎦ%2q^^ϴШ8Zy"y%{ԍ;04gl<`a0%'雾7]% $! a;NdűR]{cyQ(YB)EQF:N&{L8gRvc ŭ9caFL>n0|]`ė Q;E)-#Ѯ4%[ʋŰ Oi<^cs 3DQxT}Км9\}R{jXE -Fvzrհa.8Te嫿F%k ͢)!H!hTcU$ RUGLgeKѐߢhA>'%ڭ8!Gjo2O&\T)|I,iXI?b2Iˤ/^yy<KN_l1o1z|m˥e^¯MW0D/yd,#>" `膥(, ߘhpU^ 6/fXWF,{^~߿ҀY% Qz.Jf pÍ4Cp%ȯ]An9sUH] x(>, Bps֑M/r H!ޅBO$G`QdqeEW)tKs.2=pE8TB^%uVQ;D@N&=:Mr=!a,.d!g,ɢdht;E7ajo GY,4O$ahE4IqT'dzgȣ2QRSw#)|>DJP[D - 'Q $GVyWM)cGeӸ -CAGޞ(K$jGEԀaA 3 "b1:eh -QGYem(sZ or32B   d&IE BQ/dd4!*N4EPw%G"F4t! $ɏ#ald+F0CPiQR!KDa^<a"AFUe4GJ#-h!@|A᝸(픠9CxזJ`aue0Ұt 5, #)d @[)1r ` 4Ƕ{c -2n_{%aʖ>#RQ0 t0ci9H/w(X1CF3-cD2,08 -3c!hyK<QUAzzR]銞*Z - ,Q1|OGILE"06x@ fȝ5㐥 H$]+eoh%C -zYE`CX'":V TKb@0<0irlI lHT)mU i]%chN9؈gVf\A+>(p4K4v@BM)&$UZ6 -hmxb҄ gD *' jGI jůG"l%%4Jxddi %@Hw' -,U""F9NM`ŠGagG7(9( ÛROF3%Eby{ 閉V"QQa TɀJc@h\-! $ VVA/U cwF*pDXZEO-4w : (sp0'B- &.a,@/6Q|d !jGkKqqqcX0Q0xlICז`Ȱ`+fd(\@5 -Եvk#Jetx%AAאiF&9 p -HwE4X(qakۊ/@r43Gq8x; -.ǠEZ􎳢5\U16& iF7^8t43lYfsD:KGDlDu8Z`6؁.m2`876DvC(]m cŦw +7y"m z:B -BV.#ZAtNR/=P&D)(utIQM$px-'BiF=M6?Sv qā99타!Az0}4!@aKFcƐHR&zBBȤS&LJIV hQRQW[ (=8i>Z4X,i|b$&!rPR|T{ep6){îI+U@A'O$:g((o]ݛw_6tfc^f7l;zNڝ#Uj![YwDO\!B `ޞ -Vf<[ -bӚܲCa4@ChQQzQ|\F[qۿ⦷+P L'tCzrT$5wՋYO0x?>OAZ-`|E;`ƽ0Ztkc\^{\ebW$.)FRcbi3J,QN{0m - auqb]恟bh誉gݑг4IwA#Z۝`3} -߬ r4OP')Ɩmt+ҡ hS7 s~Hxq*!3ϰڿR˟Bp[@?5O1ai^$S"wkR'Ϧ$p>8ٓ_Ca-Mo~1[/B赟bae <GO -X9Eks7\Ol*6J$yWTXRT?:r%, P}R[վ6G ꌯڞoQ}6_ϵ")=2EĚ9=F+{Pfφ^8z,,T=׉ǁ*άg,*+ϢtJ(@_ J*>[шkROzʗv(,-17]m}r F"y{N㶂.0-cIfD J2nJBBgKa{U!2VO0$h{";3V Ol9ORlÏBh|^ 0άbJaCsأ;xTuZyoh4UqX-~P(ڝx)%+ћeiOk/N7څ_ xb -tRTRnʗ2i{~ JE8olvRxC6n]]F~FhjfVua X`1Zl~ErrLҺ -D:F> -y.4W̡ r.!wdƪ8 \P+X )$jbEFZf[2/s(U⹺KXa+18l-:՜[*'jڼUXs;hZ\ ͣ91~TjH?ly+%XDsӞ|1x8 mVJf'vk>Y`+/ ,^ *;X粽5xcNlCm;`(g -)ݭm(bgFH{<#K i/],k==vgѶZr,aCI!G'䕟7D1Y4ώԆ4sP#=!Jѓ{DpfCjp>1Zp5i#{fG8M~6:Ȥ!q?H Oڋr_/؀7#buڋ /苞G܃6u,f}="5[}#Paa1&#.zew>a%j5[~`ܞd+]Y}h;]"dMn"3jQV/E涂h3tNVw@R[Nt< -˜5t.,`4~cӡ#|` -Ɗӑf8ͬ2 !5Dc\{2t"ݰ:m?yyN&M)ѭ {,|>Bx6zdSX-Wc$ "f[w'- 0To4VD9ttÐ\&>/B |?;"$:XY|ArDhJ4)*GW_,=+Y 8qNH=1V! v97pdG[Mb~{iX]Y6'{;=$* -%GФтkL'i[͔mTjҝDpGU|VFcюyWfx׬VVaa飞M:ƂYt҅(OE.RMe"׺lO3Fk6 /T>Wғ-gg󥙼-3h묭ҴD=-$sGVJM%:ݴˠ I=Q[+zmvckiꙴR]APힰDLm=E6LJje*8G4@2e3CfCW%$|FX|?џkÃ~i>S ccm||'NOTt8XO5?|.ߞ\8leM`a|=^aP}Nec y矮"0 ?P9[0L~yMs?h FC`aGC9ʍ1D)]mbI_68"DWޙ+ ;"xDNj?\;_!ļG^ q?L+(jm Yk|0MfxZsU2qej? ?ZXHN3÷ڢa'OPVX~>]•?NkxeurzA1[]zqaOψQe]kQB\Ɍ!{|va6  3l^fFxB#K =mދ/0 M$<yό#dncr}Ы "rfw=l@vL;6' \:EcD9?ڼC6=m ܼ؂Ow[oS1_%+hF[uR1Nj%[ RŮm/xvemDf;9}%ߖ̣e˹Ƕ|#i+:ORmU딭vlg~bJNjhk#kv~fu:@`Yڌlw7?{m0kl#QMbY-T}to?lUJ1O]i]3\:_y;n Gce;w=nؓ{fpհ_*{4W5{w_/M~O@GOjZ@%>&}^J}8ű98έ#`Qwpq;WE(6z;:uԟ.#iqh ֘8ީ;qL2ҕz;@Rqv=9Zljvɒ" -oWm(V8~ -ԏ1q28.U!ק麻:khO*w\4o8 ˁru6Pyo_9_ƣg}8[uߝlv.]!d+V']a`\:M]MWpY0zi6Zn6 -;w9_Ɵ,.=w)qzgIrF3$ ݉S'< <ʓ< #=iyzjw= ƳJW^wZzV 2-|dzhޕ3י&cE}r=:|swV|EX]fmLxu'h[Z~Oq?^wWd󻅿m_:\ȿ_&i9*_g2? ԺKGNt.0nis :  `eܟoOt<8 -] "O?WgJLr TOCu14.Oa{> :a爆3K[K1t'uB׎qm n޲D璎SL:K*! o764ҙ5]ge?N7.b&^e);*"/#Kx|(ڣL׼n~|,|-2t4-3" {{y -/;&Abc=lkI8*t{H/a%;jIJOnenp¿ -I _by Y!v/ a4 `Ǖ,lֽ7x쎯 qDOI}-'G4xv9MzӋ{ں9Q:(Tl9qQsDp: 36@l1opNXڝlxdo2l/ϣ~rm?n{\Oҕ9H |LGgRT5iVLS߭{Yv̖kPv_+1̥97wdK冾}}>!jYżh{)L=/|"W2l}1* r7~+D);_Xkꢜr9x.nDS{\VN^n*} <[WO[:p|ݜ'yzH ?6H1Njۨbr򔭅ZjuԠΞeui{/~Y=Ns3+ON\ >\\au(:w޴ٟMyvҬ<۪߹uoJ^4㣛)ys>H][o0.S|~=yzg;Ϗ`kA&9o/}I.ugɛChKN^nꝅs.V7XY1eX&7^!R&B!-3>]kwh.h9 i|POnb1$ufOy91,ʕR6kԺ,tiΈ\Sw}(ӮZ0\&Vwf-bqĒׅy,V}r'.QA{-@'/!_$0_&* `m!*oj$"4LtmVwlc -s: Z]iX糑} `}S CU='OFdl:)+ڪ[yw~z RWWKV?'`@-ޏSc*[KOfiORNO_^k{k_3߆\:AD.ǯK;i6\hd<@!&~LM<trcṉn^l aSO0 l}"LfJ'\"8[zd 63{cTML0seydn)BU"=2A@ozU|vgWX 0 z{M ѱ"""vr3ܫuO" PٳSӓxf_-@ty3Hj%D-mathHy`޻fݟ+v}f:ח'l+jT{jR4"|z׳K"eEyg~#(~^W `r-ܕbpߞU+ 3EMԕQ%.. -ӵ'i1;J0Y2\SjMj*P/†He#4LiQⅼ5fCCb oF"bdj!*NyIJPζ%) *TRy>/sYKRu(sfUtjb_;-<0Wۮ VxBxi9g!EgNyv^q!O_yOe4:ª՛lxxɋE&<%ov>]?{`d .¯\w!`FE1ztWAVSWO]Q莰W_(UogDMUT?J\~R W|k -ZюLHy@f@{ -;'N 5if+b0z[<7TlwZR|jU5#ռLID=bY_:OUӗu?wsWu[Xac(,l QZٯpHJqM}4tC5Ge%ڃ 6 #GD &RWu*Mrjأ~;'y\9[LPzl~jt[65QTd窰@x*>UT\JUn/ -9*,kB LTShZ] skzcg_.aLGF4ih-JF-m MNtR|3x|GZ,{՛fd6ۮAKƷ $oANWsgLx8IFU[o4:ԋx *@QH*Fbs"o^#c}PPzk+g lEPȹKIH^fH|r"+bw^b/'g#_)'?d8 9[-/IB -ˋM>/4?shݩJg a&3xB%s1TI`[捡KzDڶ/6"֛ S.q@nВudyv!4dros`Sw^K5 -wXx"z֔_ v6XJ bKh.s9IƯ!EPj^BlL䟒4 jmY߈nMӦ,1 -Bs2A1)W{X1o8F(ٷۥhߪM)^'ltV)$̆]<)-+BR]!{*(TzRK 2G."ښ~t_-s~W-!b\2v1d.JߢwPi=Sĝ+Ԕ;>ij¼V6F4[͸wvklE\`vNE\>j()t2|qjVO0[ J%>&o6%l_Z-Do3Xfd5?yόjޑjQhxBhFL"VO<;9^hr3a+$u>v<gfjfdz98 -| /R8=dSW.82;sW\dn6f##d}̖WtZʄ{gU_I! -7sC0mW9z 3D{'cg I~rql\uȷ{y_uqrUع~L5.dJ~RPK(? gR`;&K(:MQ/?J)z# L3M6Az|)ophn6Ӛ7gIb~ K!=rȽxq[dz0QܓLɀLrcg' m1]UrOPO+loT;06m+E<{D,ůbq:$O8!DhC0v ?e+hQ`>G=X.A3̜S4Gع#u/` - PR@N}>IZN ^x -8~~<>Wt@&"o%-< 4I G>[?oș[-I"[#mkwpdR_1y yV -2?AlQ*I_<3)_288xo QMS~S]!Ǻ j>keƲ7N)lxm7 -OgW3@'xL< Ně``:8He\7>SVU8}RR{R+IɁ^Sμ/:cKOܻ€J >iZ=X_S -&Ȗ&%8fN*NP+sޫ:\648~:bpO9~-K7I.`<Mo -ܙ+R0,dxb0}_\HGip!WÁ8 z2[]e'SKSjܞ`)rl22^ձkzƭd.=D}ԥ:;!¹^‰-ـm.^: 5AFou*q '1z]q]sNq(3| ,}l@;J~) FB3S\aBy`wɥΞ?ɋ}hGݟ$y -3Nes-Wo[hw/:hdp@5rf6u 5l#dQܢȒ%e?#'z&2_e( rRnM)!*ti(-zxfg?4%ɟPTYX/ʃےJ)pk W+MV&ͦfnQ^3osAo:3cF)#ޡފX}sEپ<.8o8-Q%8z8-:O.-dȝbl2\ipvtb/'OƟ$o 4ɰzqxsVY9\׵Mu -\N-״>n0":2MfGǙY88*?jHp&vp;nu:Rȱܗy,k|lqCQJb=o5 :ެ4Wn[o 9Ŗr[jms -Fq%)W'+7N-LURT{a)j IGKa\g LmtQ{z\.$^Ow ?՝1[lzD=#bwoԦ8`O0 uTѸ:#=]v;@+M}ۍm -8Zf-h=Mg̉='t] {ho/WBmai;SgSrFOM%ϯ^-#!\=E_<ƪ j!_Q-w|>κ.,xY&{:aӕL}d%[}f(Я #\<=mș=|4RsY?tW^Oad)}d82~Ԅ nN/yQis! S٢A1)9o?+nRD洊Vy(:n -PEb+?_c< -Л-FDЉvfxfZB1/L7l cF3mV$G,h0 0&=sj6u*`{6>@ -T2J5vsQ = /ڇUI|Tcli{og0mPvAOR2z(3CvTaub&bi?& sN3UsDo"]N/ ݭ#}?EyA=F$K$XjGPCp)OVX9y6[)(^Fksi*^Ğ|!{6\(흸8{|I_Fm![`^DSrޣ-@6Oq@˓-O24o20C'eؾ*F "K*oc_/xIuXėCD# -!e6r=Jnڶ3<ι?Q`0s\!}>Ϫ>-ϟ.}J/! X jV -N}'6bI:n|ةO8@]I@eӅC0;ӍܿECjv"˭.BjA0C{tr꥽]<Uջ~^PSHcXnFjk<6 & ?&5Pe\^I݁Z<='}'c \CxǓ6;DZwCy@E`$zc&TM*~@e`"r*a84cᄨAA@- -3*;ε68Q/"5% ,q{>bŕ.FMk`$APDCG{hkjOViu>yr -`e!ԛV2Z#n*Y} z|~֝smT2~ >qrB{xOjAue6?#Y;» -#[ȗ#N93 ߲R-(իan~qMQ۪zFmӠS ?ٻ[*\/ŷ}kP\=SnL d[sm nS÷>/n`tC/ ?xTV4g$ ?N;[UzEZ#6(SgvmF{coE"w{"-k3LDZo#+!znj:ǒ5|+* -ly!i Gdgy[ {A?nK}NOAI+ << ~;97uӻ5Y Ovڹ#<^rw5v"4:PiS - BЕ"ȯq53:bkJnEK̽'MG/A$cX;@*'rN<?8I`rs&R0YǕҚI@>sc}0:BN'#H45.(C-7t%vo=!k-ijv84vݮYCEȴfgՙ3}q|;vv)6]D4{Kc}AFSu$@9I/.Ubu7&` FG(Fbhuύ%:>ʬ!soފ(hN/bZ7)LRR"TX6;)ɓP1BCF֮9b5ɱ7.`Y<]+ -$ -gVͧ/  Y%5x{ v{^G> \w`u -œ"d%m_ݐ"$P0;}̏jf/k]׍3Em)@@f8Ȁ:瘔ƽA@5R09'wZ>=|:P{(3!r]Z>=\g^.~C9m-)ɾZg-:\ΧI֨p΢L>Xiׁi2hԚٰc2OBF1~̪-vVP HjvTSNR=໰90T/KB*"PN貈x15cX==|c~̤!Zޜa8}`-b]u0ּ s oi}ɠf%ʄ}ewfbTv*`U9pc_bB1k ^\2nUEؗQeEP[0bTC[Ӕ`Խ{j mei`!Ц 49$4|~m{@9꟮Gۗ|PMzofrd4˙tɤtBc.+'X=MJ]fRwb{4̎ՕD-ǻseZ5:9Ol3;+zaM¥쮙6.sֆm#~ (,_nj"wFMcVX!CĨ؏q8>qYĬolBuUAϤO0jⱠtO񔎷n YZ[ >M"a'qK]FyݏUFJ̉zUfi{!L9OwvAE:J:+),wz}eRgzrNFW3hdT)֓MOj&=ZlK> L5|a"wSgV>V^اšwUн7K}zU}%}}zk(e|ga5O+1[ -##mx/3C7Uj[ dDVgTͅ}z@}Ca^ >ݨ魒ʸ>+R -С>>Wا^%>jcEw^:)c7OW=Kp-~zf~[L)krXC*(cL=hLX(`,CsԱɰZ3&){4SSac2eqbӎ-`6Jws,F$Qz/C[o_>ty'R |9j?t.0H|s,m7|-LG&㽵yE/ɝzMZziv7;kvPnrn̒6BƬ4_nuʈT1[0*'zwpJ<֞ II,E-ZAWͳѱB/^)pG_.Ž@>Vz7É}boc7}񆨷.[`_ ׊`S*3'J6M7Mm!ھ Vhu6+OQV#I;쨷 gs64A},ЦOc Ď SFpGWmJ,6Ϗ0ݍNhzߏ=pNtP{ߗJ6}T~.ʏqƭʮT0:MXq{PꔱL{j_ -۪}> }m0B/i?4P4hs%4}~_R(i )'olB{;٩;Dt!@Lխvf{7T="eR۷=(vzl}T׫iVZ) =2Y`_.Umdy:H~6b6=ߘ+TtK[M7"1*(Qʖ5F}I˖4]"hdQm17Jް#`5[eG+ 1r6EHTƞڭN-V+0t)KQ:9rvf<+9(p J%jK3rZǙ Ckm{LP^ !h⃼O;G@@7 ŀZ7 Y;;q;&=rU8m@(oܾi:=!6tdوi+<|DŽ=ʡw=p kA"`SM{#Hil 2ME)F[mImȒ_ _>%}vND,R)j>yvmm,dybd*J7С&ԉ]vو.v"/qΜ(㹥UlKy %ChB%h+ŃZ3CS27x@Mu p#"zUkhРsPJ|Ľs/ CiRCh4Qo>%Q]K58V$fI'Qpzhx<8%QtU5i){Hm~Jbwgw\{"Qݝ3X,VB{*VxOj[Cb8?.Vo;ZB팕+TFTUVDGF1pZG;JS-x(!1PMH2!qࡾyMn࡞уϐC -vmVr$u|ࡁc<4VRԯvpz^P?Φ}lFt7c~CF3Ħ^CltC M;ZYP_4r<<4TzCj6ykM)<Ғ!S:״.4Sd)E\-^cOkd{uN!རO`5~"$}ѫVYEڏgFP  dZ7ƓIW0ƼqVACw~}H:+B16>I~Cw0 v2$㜌B.*\=G$I&Z88~d,w6/{)5ڑ$Mo.z|Qꅧt`n,}?3c<. qЍ2n;kXqe~u-< - >'ÝRz t8p.rh:̺%:QJG n|lkEXncn}gۢ\h3t2J~f`_XO}hcxCJxK/l^ToB (?3T=ߗ^#|`3w Lsaˑ*o9RL~_ Y(EqrI7 OFtȳ;*-ˎ=N*ms<IVryV)@ ̣ 4)b$@)c$xXt}m]"V.}rTI ://ߊ}wQLO4._w+,ޝ\~T W-^Aa#!nf,wo2Bѣ"$.!1'G<0L=轚8C"D;pL,e煡?wK.so/J0!\!Q˙b]x^g@ ȏILk[ʌ - @܍F.Y3fƃى/w6g- c96ˌ\0 d%5A jП3+m(Rя>^c n4Vq rWy&☶.vWf;լ7X=m8Aѳý4wx-=xO_̎R@J $ܰ $riY3y~HA HQHNy>.0 I2zQ -00Va} ˺.wM|Iqy{cEp(>:uFxQTp+= @jX=QsO6 -v7XSB6Xzg/8ð2Ua1ãFǔGq@3R-c:~XX[v`/{/[w'EGQR\U4mǂ.`It!CgU8TcmUfhsA<9xQ%rGv*WVM@B3#i96 e~La۫xP@B0}f;Tm7HoAN $"h dq4K%p2@ 8r6mY ڭD 9i^d0PN"y0B5 2,~ba 8KKeia)g]BnrFHC[¦@R\Q\72nr9O ‡R#w^$}w8<0J;D@ `_F" J#1 @4]j%־&TbCť{Ȍ5gDGGN`\SH@}F(iF̓ 18BN^$D qV٤ BuyugX]6N C}d<! &mY")e;lI\KAg"wCܦZժxmrW* (>-l':w̋;a +>:1_! Fr@TZwۆvwOC:tU)oO͑K ` ֐#ίhPX~ҕyg_e<4+( h"ɴvdI+T׵<ϛ.B@glٙa&62U[A3[Bhߖzp8SkC=wCx^jA&)܄ƹl 6G5!1B@DX5\ͨ͜ *}ZJFႰO:Ȟ,bda?$ =9Ⴎ S?)h,}|kc NۢΘyHN[ j\VRI^+-,4k-,>>͒Gˀ; 4caȱOb%@-aP`0@HѺpZn,M3hC-c -LE\KL~li#o<;fGA/;o =%@l5q!Ne2DQ䚿9&}`'5V\ -)RRw\!5Tctt^L3|K->YKĘHЎЍdU[}N?v%\Й -˶Eq5ޢKA-d6/ʧA$ aGP-#)8swy탷lG8EeX"l9}y hF3T| 9u87oMx[:H`UrG Qؤp`hcgE-Eo׽!X|Uߐ۽5*rZ W׃q-|iHܲZEe1("M5G. ^{~ea_C/慌Tb;o!HSp/0!?FJ/LoPg -ooQ%r4+ie7uҍRYP{`%2^iu^=H"K9 |B oXa{B^ūQ@ 8-]Q2+#x^ew9yQ{FӍLLGJr/VtQ5}/xőNCYH$1X,> -' Dj@_ye*e;ނ"U*zp-P)|ӓƁ"0 -oxq*Ɲq\:RA5_xNc+|hvX l^mtX'e:/0FvgxƶV;~V![ZzUXsW63čd1 )sEɼT `vt/ɕ^8sq2jA2Kq2 -[P^N2!Һ$>39 ӊX}^;Yyq'TPydI"|tN~ -SIec+Qv%S -c|w4CQ mɀ5P\4[cq|y EhdGwH,2 B@hYB^8![RM!L<\w*!JF G.Q0Fnwo6FDXeB[ä%/D*6^#0: -4I0 Sa2*虉Bs1\[V% ԟ͓M5Ql'k3{8 r!p*6mB&w:`t~$L3" i+ؤ YDHg=| Wڇ*Ak0r̔J07E2I\+ 0t呞%l)#M(g/V__[ކTni xE4'YA@cT(1 hhNpBp=xz/(zKs -SF42<=t1._Q,cHIQ,h -HƄ@RױxTLO񕃧N* BRS!EpG? lXCvhmV+RK+ (\C?GGT۶%U!w&ЗI{uvy&9"H fcz}Dw4Fg83 iٴ%Ո'+Öش\ Xj,yGiNxXPInYh]u.y%BD.A <|l( J7結Gp}IxV2&cx( )"4pW#pΡ[_I(x|5'/$N2o4ng M>ĸvW?=}:?G|מ@ڷV%oOo7v7Wa]NlO_x[p»kpmg6_2 GUy fܭ|3ۧ ŷǢ?`C)`p .'Dd@?18m!?D"ႯqB;Lb5׌7 L4 r(2;ݘ v{ - k's}W8q6Ƣa 9P&8a -XJ&з zk냚g#{ӠZToտo>~U|N?6)Pפ1og-@Qomy0OVw`Ѐ/ eؗ2#^vO> a+h1.憸~e -)!vݹL~'u03^ 'L%I_jS΁J/Hu&B!}߫DH{0CLiO%z*bap,݂Ǔb9d5*ekuՔ'VL'7t=kb琰&@}>?Z_O -endstream endobj 6 0 obj <> endobj 7 0 obj <> endobj 38 0 obj <> endobj 39 0 obj <> endobj 55 0 obj [/View/Design] endobj 56 0 obj <>>> endobj 53 0 obj [/View/Design] endobj 54 0 obj <>>> endobj 24 0 obj [/View/Design] endobj 25 0 obj <>>> endobj 22 0 obj [/View/Design] endobj 23 0 obj <>>> endobj 71 0 obj [70 0 R 69 0 R] endobj 98 0 obj <> endobj xref -0 99 -0000000004 65535 f -0000000016 00000 n -0000000213 00000 n -0000042037 00000 n -0000000005 00000 f -0000000008 00000 f -0000385624 00000 n -0000385694 00000 n -0000000010 00000 f -0000042088 00000 n -0000000011 00000 f -0000000012 00000 f -0000000013 00000 f -0000000014 00000 f -0000000015 00000 f -0000000016 00000 f -0000000017 00000 f -0000000018 00000 f -0000000019 00000 f -0000000020 00000 f -0000000021 00000 f -0000000026 00000 f -0000386242 00000 n -0000386273 00000 n -0000386126 00000 n -0000386157 00000 n -0000000027 00000 f -0000000028 00000 f -0000000029 00000 f -0000000030 00000 f -0000000031 00000 f -0000000032 00000 f -0000000033 00000 f -0000000034 00000 f -0000000035 00000 f -0000000036 00000 f -0000000000 00000 f -0000000000 00000 f -0000385758 00000 n -0000385829 00000 n -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000386010 00000 n -0000386041 00000 n -0000385894 00000 n -0000385925 00000 n -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000047150 00000 n -0000046782 00000 n -0000046853 00000 n -0000386358 00000 n -0000042542 00000 n -0000048531 00000 n -0000043758 00000 n -0000048418 00000 n -0000043615 00000 n -0000042769 00000 n -0000043053 00000 n -0000043101 00000 n -0000043793 00000 n -0000044133 00000 n -0000043917 00000 n -0000044025 00000 n -0000047034 00000 n -0000047065 00000 n -0000046918 00000 n -0000046949 00000 n -0000047407 00000 n -0000047680 00000 n -0000048605 00000 n -0000048867 00000 n -0000050217 00000 n -0000079922 00000 n -0000145511 00000 n -0000211100 00000 n -0000276689 00000 n -0000342278 00000 n -0000386390 00000 n -trailer -<]>> -startxref -386574 -%%EOF diff --git a/src/public/assets/navigation/contact.svg b/src/public/assets/navigation/contact.svg deleted file mode 100644 index aceb955..0000000 --- a/src/public/assets/navigation/contact.svg +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/public/components/background/stars/index.tsx b/src/public/components/background/stars/index.tsx deleted file mode 100644 index 02b467c..0000000 --- a/src/public/components/background/stars/index.tsx +++ /dev/null @@ -1,53 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; - -import './styles.scss'; - -export const Star = (props:{star:number}) => { - return ( -

-
-
- ); -}; - -export class StarBackground extends React.Component { - constructor(props:any) { - super(props); - } - - render() { - let stars =[]; - for(let i = 0; i < 12; i++) stars.push(); - - return ( -
-
- { stars } -
-
- ); - } -} diff --git a/src/public/components/background/stars/styles.scss b/src/public/components/background/stars/styles.scss deleted file mode 100644 index b8b83e8..0000000 --- a/src/public/components/background/stars/styles.scss +++ /dev/null @@ -1,59 +0,0 @@ -@import './../../../styles/global'; - -@keyframes c-star-background--wobble { - 0% { - opacity: 0.7; - } - - 50% { - opacity: 0.3; - } - - 100% { - opacity: 0.7; - } -} - -.c-star-background { - position: fixed; - left: 0; - top: 0; - width: 100%; - height: 100%; - z-index: $s-z--background; - - &__inner { - position: relative; - height: 100%; - z-index: $s-z--background; - } - - &__star { - position: absolute; - - &-image { - width: 1.2em; - height: 1.2em; - transform: translate(-50%, -50%); - background: url('./../../../assets/icons/icon-star.svg'); - background-size: contain; - background-repeat: no-repeat; - - animation: c-star-background--wobble $s-animation--time-very-long $s-animation--ease-in-out infinite; - } - - //Styles - &.is-star-1 { left: 5%; top: 10%; transform: scale(0.5); } - &.is-star-2 { left: 10%; top: 50%; opacity: 0.5; } - &.is-star-3 { left: 20%; top: 25%; opacity: 0.9; transform: scale(0.75); } - &.is-star-4 { left: 35%; top: 35%; opacity: 0.7; } - &.is-star-5 { left: 45%; top: 5%; transform: scale(0.8); } - &.is-star-6 { left: 65%; top: 15%; transform: scale(0.5); } - &.is-star-7 { left: 75%; top: 30%; opacity: 0.75; transform: scale(0.75); } - &.is-star-8 { left: 85%; top: 10%; } - &.is-star-9 { left: 85%; top: 45%; opacity: 0.55; transform: scale(0.5); } - &.is-star-10 { left: 95%; top: 35%; opacity: 0.7; } - &.is-star-11 { left: 50%; top: 50%; } - &.is-star-12 { left: 45%; top: 40%; transform: scale(0.7); } - } -} diff --git a/src/public/components/layout/footer/index.tsx b/src/public/components/layout/footer/index.tsx deleted file mode 100644 index da9626b..0000000 --- a/src/public/components/layout/footer/index.tsx +++ /dev/null @@ -1,75 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Link, LinkProps } from '@yourwishes/app-simple-react/dist/public'; -import { Logo } from './../../../objects/logo/'; - -import './styles.scss'; - -//FooterLinks -export const FooterLink = (props:LinkProps) => ( - -); - -//Footer -export interface FooterProps extends React.HTMLAttributes {} -export interface FooterState { - now:Date -}; - -export class Footer extends React.Component { - interval:NodeJS.Timeout; - - constructor(props:FooterProps) { - super(props); - this.state = { - now: new Date() - } - } - - componentDidMount() { - this.interval = setInterval(() => this.setState({ now: new Date() }), 1000); - } - - componentWillUnmount() { - if(this.interval) clearInterval(this.interval); - } - - render() { - return ( -
- - © 2012 ~ { this.state.now.getFullYear() } Dominic Masters - - - - - -
- ); - } -} diff --git a/src/public/components/layout/footer/styles.scss b/src/public/components/layout/footer/styles.scss deleted file mode 100644 index c4cc4fd..0000000 --- a/src/public/components/layout/footer/styles.scss +++ /dev/null @@ -1,74 +0,0 @@ -@import './../../../styles/global'; - -.c-footer { - position: relative; - display: flex; - flex-wrap: wrap; - justify-content: space-between; - width: 100%; - padding: $s-gutter--small; - background: $s-color--background-footer; - - &__copyright, - &__navigation { - font-family: $s-font--family-heading; - width: 100%; - font-size: 0.75em; - margin-bottom: 1em; - text-align: center; - } - - &__navigation { - &-link { - display: inline-block; - position: relative; - - + #{&} { - margin-left: 1em; - - &::before { - content: "|"; - display: inline-block; - position: absolute; - left: 0; - transform: translateX(-0.5em) translateX(-50%); - } - } - } - } - - &__logo { - display: none; - align-items: center; - height: 100%; - width: auto; - - position: absolute; - top: 0; - left: 50%; - transform: translateX(-50%); - - img { width: 120px; margin: auto; } - } - - @include t-media-query($s-small-up) { - &__copyright, - &__navigation { - width: auto; - margin: 0; - } - - &__logo { - display: flex; - } - } - - @include t-media-query($s-medium-up) { - &__copyright, - &__navigation { - font-size: 1em; - } - - &__logo img { width: 150px; } - } -} diff --git a/src/public/components/layout/header/hamburger/MenuLink.tsx b/src/public/components/layout/header/hamburger/MenuLink.tsx deleted file mode 100644 index f4039e5..0000000 --- a/src/public/components/layout/header/hamburger/MenuLink.tsx +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Link, LinkProps } from '@yourwishes/app-simple-react/dist/public'; - -export interface MenuLinkProps extends LinkProps { - to:string, - title:string, - exact?:boolean -}; - -export const MenuLink = (props:MenuLinkProps) => { - return ( - - { props.title } - - ); -}; diff --git a/src/public/components/layout/header/hamburger/MenuSocial.tsx b/src/public/components/layout/header/hamburger/MenuSocial.tsx deleted file mode 100644 index 99e2a76..0000000 --- a/src/public/components/layout/header/hamburger/MenuSocial.tsx +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; - -import { Link, Image, ImageSource } from '@yourwishes/app-simple-react/dist/public'; - -export interface MenuSocialProps { - to:string, - title?:string, - src:ImageSource -}; - -export const MenuSocial = (props:MenuSocialProps) => { - let { to, title, src } = props; - - return ( - - - - ); -}; diff --git a/src/public/components/layout/header/hamburger/index.tsx b/src/public/components/layout/header/hamburger/index.tsx deleted file mode 100644 index 4a6022d..0000000 --- a/src/public/components/layout/header/hamburger/index.tsx +++ /dev/null @@ -1,99 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Image } from '@yourwishes/app-simple-react/dist/public/'; -import { MenuLink, MenuLinkProps } from './MenuLink'; -import { MenuSocial, MenuSocialProps } from './MenuSocial'; - -import './styles.scss'; - -export interface HamburgerMenuProps { className?:string, links:MenuLinkProps[], social:MenuSocialProps[] } -export interface HamburgerMenuState { open:boolean } - -export class HamburgerMenu extends React.Component { - menu:HTMLDivElement; - clickEvent; - - constructor(props:HamburgerMenuProps) { - super(props); - - this.clickEvent = this.onClickMenu.bind(this); - this.state = { open: false }; - } - - componentDidMount() { - this.menu.addEventListener('click', this.clickEvent); - } - - componentWillUnmount() { - this.menu.removeEventListener('click', this.clickEvent); - } - - onClick(e:React.MouseEvent) { - this.setState({ open: !this.state.open }); - } - - onClickMenu(e:MouseEvent) { - if(e.target !== this.menu) return; - e.preventDefault(); - this.setState({ open: !this.state.open }); - } - - onItemClick(e:React.MouseEvent) { - this.setState({ open: false }); - } - - render () { - let { className, links, social } = this.props; - let { open } = this.state; - - return ( - - ); - } -}; diff --git a/src/public/components/layout/header/hamburger/styles.scss b/src/public/components/layout/header/hamburger/styles.scss deleted file mode 100644 index d6bda74..0000000 --- a/src/public/components/layout/header/hamburger/styles.scss +++ /dev/null @@ -1,91 +0,0 @@ -@import './../../../../styles/global'; - -.c-hamburger { - $self: &; - - &__btn { - display: inline-block; - padding: $s-gutter--xsmall; - - &-inner { - position: relative; - } - - &-icon{ - transition: all $s-animation--time-fast $s-animation--ease-out; - z-index: $s-z--menu + 1; - - &.is-close { - position: absolute; - left: 0; - top: 0; - width: 100%; - heigth: 100%; - opacity: 0; - } - } - - #{$self}.is-open & { - &-icon { - opacity: 0; - &.is-close { opacity: 1; } - } - } - } - - &__menu { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - - transform: translateX(-100%); - transition: all $s-animation--time-fast $s-animation--ease-out; - z-index: $s-z--menu; - - &-body { - width: 100%; - height: 100%; - background: white; - max-width: 300px; - padding-top: $s-gutter--large; - } - - #{$self}.is-open & { - transform: translateX(0); - &-body { - box-shadow: 0px 0px 2em rgba(0,0,0,0.9); - } - } - } - - &__link { - display: block; - padding: $s-gutter--small $s-gutter--small; - border-left: 0.4em solid transparent; - color: black; - - &.is-active { border-color: $s-color--primary; } - } - - &__social { - width: 100%; - - display: flex; - flex-wrap: wrap; - - &-link { - display: block; - width: 20%; - width: calc(20% - #{$s-gutter--xsmall / 2}); - margin-top: $s-gutter--xsmall; - padding: $s-gutter--xsmall; - border-radius: 100%; - - &.is-github { background: $s-social--github-background; } - - + #{&} { margin-left: calc(#{$s-gutter--xsmall} + 0); } - } - } -} diff --git a/src/public/components/layout/header/index.tsx b/src/public/components/layout/header/index.tsx deleted file mode 100644 index 0ff8bb8..0000000 --- a/src/public/components/layout/header/index.tsx +++ /dev/null @@ -1,88 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Logo } from './../../../objects/logo/'; -import { HamburgerMenu } from './hamburger/'; -import { HeaderNav } from './nav/'; - -import './styles.scss'; - - -export const Links = [ - { title: 'Home', exact: true, to: '/' }, - { title: 'About', exact: true, to: '/about' }, - { title: 'Blog', exact: true, to: '/blog' } -]; - - -export const Social = [ - { title: 'GitHub', to: '//github.com/YourWishes', src: require('./../../../assets/icons/icon-github.svg') } -]; - - -export interface HeaderProps extends React.HTMLAttributes { } -export interface HeaderState { - now:Date -} - -export class Header extends React.Component { - time:NodeJS.Timeout; - - constructor(props:HeaderProps) { - super(props); - - this.state = { - now: new Date() - }; - } - - componentDidMount() { - this.time = setInterval(() => { - this.setState({ now: new Date() }); - }, 500); - } - - componentWillUnmount() { - if(this.time) clearInterval(this.time); - } - - render() { - let { className } = this.props; - let { now } = this.state; - - let pz = (n:number) => (`${n}`).padStart(2,'0'); - - return ( -
- - - - - - {pz(now.getHours())}:{pz(now.getMinutes())} - -
- ); - } -} diff --git a/src/public/components/layout/header/nav/HeaderNavLink.tsx b/src/public/components/layout/header/nav/HeaderNavLink.tsx deleted file mode 100644 index 3dec693..0000000 --- a/src/public/components/layout/header/nav/HeaderNavLink.tsx +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Link } from '@yourwishes/app-simple-react/dist/public'; - -export interface HeaderNavLinkProps { - to:string, - title:string, - exact?:boolean -} - -export const HeaderNavLink = (props:HeaderNavLinkProps) => { - - return ( - - - { props.title } - - - ); -}; diff --git a/src/public/components/layout/header/nav/HeaderNavSocial.tsx b/src/public/components/layout/header/nav/HeaderNavSocial.tsx deleted file mode 100644 index 7cc1c72..0000000 --- a/src/public/components/layout/header/nav/HeaderNavSocial.tsx +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Link, Image, ImageSource } from '@yourwishes/app-simple-react/dist/public'; - -export interface HeaderNavSocialProps { - to:string, - title?:string, - src:ImageSource -} - -export const HeaderNavSocial = (props:HeaderNavSocialProps) => { - let { to, title, src } = props; - - return ( - - - - ); -}; diff --git a/src/public/components/layout/header/nav/index.tsx b/src/public/components/layout/header/nav/index.tsx deleted file mode 100644 index f045f3e..0000000 --- a/src/public/components/layout/header/nav/index.tsx +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Link, Image } from '@yourwishes/app-simple-react/dist/public'; -import { HeaderNavLink, HeaderNavLinkProps } from './HeaderNavLink'; -import { HeaderNavSocial, HeaderNavSocialProps } from './HeaderNavSocial'; - -import './styles.scss'; - -export interface HeaderNavProps { - className?:string, - links:HeaderNavLinkProps[], - social:HeaderNavSocialProps[] -}; - -export const HeaderNav = (props:HeaderNavProps) => { - let { className, links, social } = props; - - return -}; diff --git a/src/public/components/layout/header/nav/styles.scss b/src/public/components/layout/header/nav/styles.scss deleted file mode 100644 index c387b2d..0000000 --- a/src/public/components/layout/header/nav/styles.scss +++ /dev/null @@ -1,77 +0,0 @@ -@import './../../../../styles/global'; - -.c-header-nav { - $self: &; - - display: flex; - flex-direction: column; - width: 75px; - - &__link { - padding-bottom: 100%; - position: relative; - width: 100%; - - border: 0.2em solid transparent; - - - &,&-inner { - transition: all $s-animation--time-fast $s-animation--ease-out; - } - - &-inner { - display: flex; - align-items: center; - justify-content: center; - - position: absolute; - height: 100%; - width: 100%; - - font-family: $s-font--family-heading; - } - - &:hover #{$self}__link-inner { - transform: translateX(5%); - } - - &.is-active { - border-right-color: $s-color--primary; - } - } - - &__nav {} - - &__social { - display: flex; - flex: 1; - flex-wrap: wrap; - - align-content: flex-end; - justify-content: space-between; - - padding: $s-gutter--small; - - &-link { - width: 50%; - width: calc(50% - #{$s-gutter--xsmall / 2}); - margin-top: $s-gutter--xsmall; - padding: $s-gutter--xsmall; - border-radius: 100%; - transition: all $s-animation--time-fast $s-animation--ease-out; - - &:hover { transform: scale(1.05); } - - &.is-github { background: $s-social--github-background; } - } - } - - @include t-media-query($s-small-up) { - width: 100px; - &__link-inner { font-size: $s-font--size-4; } - } - - @include t-media-query($s-large-up) { - width: 125px; - } -} diff --git a/src/public/components/layout/header/styles.scss b/src/public/components/layout/header/styles.scss deleted file mode 100644 index e42a9de..0000000 --- a/src/public/components/layout/header/styles.scss +++ /dev/null @@ -1,57 +0,0 @@ -@import './../../../styles/global'; - -@keyframes c-header--time-tick { - 0% { opacity: 1; } - 50% { opacity: 0; } - 100% { opacity: 1;} -} - -.c-header { - display: flex; - align-items: center; - padding: $s-gutter--small $s-gutter--xsmall; - - &__hamburger, - &__time { - flex-basis: (100% - 55%) / 2; - } - - &__logo { - width: 100%; - flex-basis: 55%; - - img { - display: block; - max-width: 175px; - margin: 0 auto; - } - } - - &__time { - text-align: right; - padding: $s-gutter--xsmall; - &-colon { animation: 2s c-header--time-tick infinite step-end; } - } - - &__nav { display: none; } - - - @include t-media-query($s-xsmall-up) { - padding: 0; - flex-direction: column; - background: $s-color--background-footer; - - &__nav { - display: flex; - flex-grow: 1; - } - - &__hamburger, - &__time { - flex-basis: auto; - display: none; - } - - &__logo { display: none; } - } -} diff --git a/src/public/components/layout/layout/index.tsx b/src/public/components/layout/layout/index.tsx deleted file mode 100644 index 4a43969..0000000 --- a/src/public/components/layout/layout/index.tsx +++ /dev/null @@ -1,101 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - - -import * as React from 'react'; -import { History } from 'history'; -import { AnimatedSwitch, Router, Link } from '@yourwishes/app-simple-react/dist/public'; -import { StarBackground } from './../../background/stars/'; -import { Header } from './../header/'; -import { Footer } from './../footer/'; -import { Page } from './../../page/'; - -import './styles.scss'; - -const CLASS_ROUTE_CHANGE = 'is-route-changing'; - -//Paths (this will generate the necessary pages) -export interface LayoutProps { - history:History -}; - -export class LayoutComponent extends React.Component { - view:HTMLDivElement; - - constructor(props:LayoutProps) { - super(props); - } - - //We use these to let the body know we're changing routes, which is a fake - //way of stopping a user changing the route mid transition. - onTransitionStart() { - if(document.body.classList.contains(CLASS_ROUTE_CHANGE)) return; - console.log('Transition Start'); - document.body.classList.add(CLASS_ROUTE_CHANGE); - } - - onTransitionEnd() { - if(!document.body.classList.contains(CLASS_ROUTE_CHANGE)) return; - console.log('Transition End'); - document.body.classList.remove(CLASS_ROUTE_CHANGE); - } - - render() { - let PageProps = { - onEnter: e => this.onTransitionStart(), - onEntered: e => this.onTransitionEnd(), - timeout: 2*1000 - } - return ( - - <> - -
- - {/* Header and Layout Wrapper */} -
-
- -
this.view = e}> - - - - - - - - - - - -
-
- - {/* Footer */} -
-
- -
- ); - } -} diff --git a/src/public/components/layout/layout/styles.scss b/src/public/components/layout/layout/styles.scss deleted file mode 100644 index 8993869..0000000 --- a/src/public/components/layout/layout/styles.scss +++ /dev/null @@ -1,49 +0,0 @@ -@import './../../../styles/global'; - -$c-layout--menu-width: 275px; - -.c-layout { - height: 100%; - - //Set position relative and a z-index to allow the layout to draw over the - //background - position: relative; - z-index: $s-z--layout; - - &__header,&__footer { width: 100%; } - &__view { position: relative; } - - &__inner { - body.is-route-changing & { overflow: hidden; } - } - - @include t-media-query($s-xsmall-up) { - display: flex; - flex-direction: column; - max-height: 100%; - - &__inner { - display: flex; - width: 100%; - flex-grow: 1; - overflow-y: auto; - } - - &__view { - //position: relative; - flex-basis: 100%; - flex-grow: 1; - //overflow: hidden; - } - - &__header { - width: auto; - } - - &__footer { } - } - - - //Entering transition - //&.is-not-ready { opacity: 0; } -} diff --git a/src/public/components/page/index.tsx b/src/public/components/page/index.tsx deleted file mode 100644 index 918a0af..0000000 --- a/src/public/components/page/index.tsx +++ /dev/null @@ -1,84 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { AnimatedRouteProps, AnimatedRoute } from '@yourwishes/app-simple-react/dist/public'; -import { Loader as LoaderObject } from './../../objects/loader/'; -import { PageEffect } from './../../objects/page/effect/'; -import { Helmet } from 'react-helmet'; - -import './styles.scss'; - -//Title can be either a string (a title), or null (to indicate that this is a -//title-less page (e.g. the Home Page would be considered title-less) -export interface PageProps extends AnimatedRouteProps { - name:string, - load?:undefined -} - -export class PageAnimatedRouteWrapper extends React.Component { - constructor(props:any) { - super(props); - } - - render() { - let { loadKey, className, simulate, children } = this.props; - let Effect = PageEffect(loadKey); - - return ( -
- - { children } - -
- ); - } -}; - -export const PageLoading = () => { - return ( -
- -
- ); -}; - -export class Page extends React.Component { - constructor(props:PageProps) { - super(props); - } - - render() { - let { name } = this.props; - - return import(`./../../pages/${name}/`)} - />; - } -} diff --git a/src/public/components/page/styles.scss b/src/public/components/page/styles.scss deleted file mode 100644 index 6f39bd2..0000000 --- a/src/public/components/page/styles.scss +++ /dev/null @@ -1,44 +0,0 @@ -@import './../../styles/global'; - -.c-page { - width: 100%; - height: 100%; - - &__effect { - width: 100%; - height: 100%; - overflow-y: auto; - } - - //Transitioning styles - &__transition { - //Define the timings, both enter and exit should share timings. - &-enter,&-exit { - transition: all $s-animation--time-extended $s-animation--ease-in-out; - &-active .c-page__effect { overflow-y: visible; } - } - - &-enter { - transform: translateY(100vh); - z-index: 1; - - &-active { - transform: translateY(0); - .c-page__effect { overflow-y: hidden; } - } - } - - &-exit { - position: absolute; - transform: translateY(0%); - top: 0; - left: 0; - opacity: 1; - - &-active { - transform: translateY(-100vh); - opacity: 0; - } - } - } -} diff --git a/src/public/components/page/wrapper/index.tsx b/src/public/components/page/wrapper/index.tsx deleted file mode 100644 index 8b5ccb2..0000000 --- a/src/public/components/page/wrapper/index.tsx +++ /dev/null @@ -1,49 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Helmet } from 'react-helmet'; - -const DefaultTitle = document.title; - -export interface PageWrapperProps { - children:React.ReactNode, - title:string -}; - -export const PageWrapper = (props:PageWrapperProps) => { - let { title, children } = props; - - if(title == null) { - title = DefaultTitle; - } else { - title = `${title} - domsPlace` - } - - return <> - - { title } - - { children } - ; -}; diff --git a/src/public/components/section/index.tsx b/src/public/components/section/index.tsx deleted file mode 100644 index 8523799..0000000 --- a/src/public/components/section/index.tsx +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; - -export interface SectionProps extends React.DetailedHTMLProps, HTMLElement> { - -}; - -export const Section = (props:SectionProps) => ( -
-); diff --git a/src/public/data/articles/2018/11-26-dombot/Article.tsx b/src/public/data/articles/2018/11-26-dombot/Article.tsx deleted file mode 100644 index 704674e..0000000 --- a/src/public/data/articles/2018/11-26-dombot/Article.tsx +++ /dev/null @@ -1,88 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; - -import { Image } from '@yourwishes/app-simple-react/dist/public'; -import { ArticleProps } from './../../../../pages/article/'; - -import './styles.scss'; - -export const DomBotRedevelopmentArticle = (props:ArticleProps) => { - let { article } = props; - - return <> - - - - -
-

- It's no secret that I play video games, I particularly enjoy online - multiplayer games such as Team Fortress 2. These games often require - a good means of communication with fellow teammates, so that gameplay - can be coordinated and teams can win more often. -

- -

- Generally, gamers will tend to use Discord due - to it's high install base, as well as great quality and free service. -

- -

- I use tend to use Discord as well, and have had some fun digging around - with the Discord API, to build some software for me and my friends' - chatrooms. -

- -

- One of my older projects is DomBot, a free to install and use Discord - Music Bot, that I recently had the privilage of updating as a proof - of concept. -

- -

- While the concept of a Music Bot for Discord is not new, I had built it - to build up and demonstrate the capabilities of my new TypeScript - based application framework, that I plan to use in a lot of my new - and upcoming projects. -

- -

- If you're interested in having DomBot on your server, head over to - the dedicated page I have setup and - you can install the bot onto your Discord server for free. -

- -

- For now I look forward to bringing more applications on my new app - framework, and you'll likely see my personal site merged with the - framework in the next coming months. -

- Thanks,
Dominic -

-
- ; -} - -export default DomBotRedevelopmentArticle; diff --git a/src/public/data/articles/2018/11-26-dombot/banner.jpg b/src/public/data/articles/2018/11-26-dombot/banner.jpg deleted file mode 100644 index b18ffe5..0000000 Binary files a/src/public/data/articles/2018/11-26-dombot/banner.jpg and /dev/null differ diff --git a/src/public/data/articles/2018/11-26-dombot/index.tsx b/src/public/data/articles/2018/11-26-dombot/index.tsx deleted file mode 100644 index a3a674f..0000000 --- a/src/public/data/articles/2018/11-26-dombot/index.tsx +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright (c) 2018 Dominic Masters -// -// MIT License -// -// 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 - -import * as React from 'react'; -import { BlogArticle } from './../../../../types/'; - -export const DomBotRedevelopment:BlogArticle = { - title: 'DomBot Redevelopment', - date: new Date('2018-11-26T21:56:15.920Z'), - description: () => import('./Article'), - short: () => ( -

- Sharing music between long distance friends is easier than ever with my - updated Music bot. Learn about it's development and how I plan to improve - it in the future. -

- ), - handle: 'dombot-redevelopment', - image: require('./banner.jpg') -}; diff --git a/src/public/data/articles/2018/11-26-dombot/styles.scss b/src/public/data/articles/2018/11-26-dombot/styles.scss deleted file mode 100644 index ee53025..0000000 --- a/src/public/data/articles/2018/11-26-dombot/styles.scss +++ /dev/null @@ -1,27 +0,0 @@ -@import './../../../../styles/global'; - -.c-dbr { - &__image { - width: 100%; - max-width: 500px; - margin: 0 auto; - margin-bottom: $s-gutter--large; - } - - &__description {} - - @include t-media-query($s-small-up) { - padding-top: $s-gutter--large; - - &__image { - display: inline-block; - float: left; - max-width: 370px; - margin: 0 $s-gutter--small $s-gutter--small 0; - } - - &__description { - display: inline; - } - } -} diff --git a/src/public/data/articles/2018/index.ts b/src/public/data/articles/2018/index.ts deleted file mode 100644 index 35237d4..0000000 --- a/src/public/data/articles/2018/index.ts +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import { BlogArticle } from './../../../types/'; - -import { DomBotRedevelopment } from './11-26-dombot/'; - -export const Articles:BlogArticle[] = [ - DomBotRedevelopment -]; diff --git a/src/public/data/articles/2019/26-05-site/Article.tsx b/src/public/data/articles/2019/26-05-site/Article.tsx deleted file mode 100644 index 4d52942..0000000 --- a/src/public/data/articles/2019/26-05-site/Article.tsx +++ /dev/null @@ -1,67 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Image, Link } from '@yourwishes/app-simple-react/dist/public'; - -export const Article = () => { - return <> -

- It's finally here! After months in development my newly designed site has - arrived, a whopping 11 months after I launched my previous site redesign! -
Yes, I know I redesign the site a lot. -

- -

- As stated in my - post about - DomBot ReDevelopment, I am building and upgrading a TypeScript - based full-stack app framework to handle my various projects. As such this - makes this website the second publicly available implementation of the - framework, to great success. -

- -

- The domsPlace site redesign added many great features I've been trying to - find time to implement easier, such as a simple method of creating a store, - easier CSS based page transitions, loadable components and loadable routes. - Not to mention they all work together at the same time, another task that - was quite difficult to achieve. -

- -

- I do plan to go back to writing blog posts more often, and perhaps build - a projects section of the site, where I can host coding curiousities that - make it to a near production stage, but perhaps aren't worthy of build. -

- -

- In the mean time, take a look around and feel free to critique the new - design, I'm not a UX/UI designer and don't claim to be particularly artistic - in any way, so I would appreciate all feedback. -

Thanks,
Dominic. -

- ; -}; - -export default Article; diff --git a/src/public/data/articles/2019/26-05-site/banner.jpg b/src/public/data/articles/2019/26-05-site/banner.jpg deleted file mode 100644 index 6025c1d..0000000 Binary files a/src/public/data/articles/2019/26-05-site/banner.jpg and /dev/null differ diff --git a/src/public/data/articles/2019/26-05-site/index.tsx b/src/public/data/articles/2019/26-05-site/index.tsx deleted file mode 100644 index 1008077..0000000 --- a/src/public/data/articles/2019/26-05-site/index.tsx +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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 - -import * as React from 'react'; -import { BlogArticle } from './../../../../types/'; - -export const SiteRebuild2019:BlogArticle = { - title: 'New Site Rebuild', - date: new Date('2018-11-26T21:56:15.920Z'), - description: () => import('./Article'), - short: () => ( -

- After a lengthy build process, and fixing many bugs in my low level app - framework, I have finally launched my updated web design. Read about my - thought process and how I came to this design, and all the developmental - troubles through the process. -

- ), - handle: 'site-redesign', - image: require('./banner.jpg') -}; diff --git a/src/public/data/articles/2019/index.ts b/src/public/data/articles/2019/index.ts deleted file mode 100644 index a2f4607..0000000 --- a/src/public/data/articles/2019/index.ts +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import { BlogArticle } from './../../../types/'; - -import { SiteRebuild2019 } from './26-05-site/'; - -export const Articles:BlogArticle[] = [ - SiteRebuild2019 -]; diff --git a/src/public/data/articles/index.ts b/src/public/data/articles/index.ts deleted file mode 100644 index b626e1c..0000000 --- a/src/public/data/articles/index.ts +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import { BlogArticle } from './../../types/'; - -import { Articles as Articles2018 } from './2018/'; -import { Articles as Articles2019 } from './2019/'; - -export const Articles:BlogArticle[] = [ - ...Articles2019, - ...Articles2018 -]; - -export const getArticleByHandle = (handle:string) => Articles.find(article => article.handle == handle); -export const getArticleURL = (article:BlogArticle) => `/blog/article/${article.handle}`; diff --git a/src/public/index.tsx b/src/public/index.tsx deleted file mode 100644 index a1e10f8..0000000 --- a/src/public/index.tsx +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright (c) 2018 Dominic Masters -// -// MIT License -// -// 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. - -'use strict'; - -import { domsPlaceApp } from './app/domsPlaceApp'; -const app = new domsPlaceApp(); -setTimeout(() => { - app.render(); -}, 0*1000); diff --git a/src/public/objects/loader/index.tsx b/src/public/objects/loader/index.tsx deleted file mode 100644 index 2765979..0000000 --- a/src/public/objects/loader/index.tsx +++ /dev/null @@ -1,46 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; - -import './styles.scss'; - -export interface LoaderProps { - className?:string -} - -export const Loader = (props:LoaderProps) => { - return ( - - - - - - - - - - - - ); -} diff --git a/src/public/objects/loader/styles.scss b/src/public/objects/loader/styles.scss deleted file mode 100644 index a365cea..0000000 --- a/src/public/objects/loader/styles.scss +++ /dev/null @@ -1,31 +0,0 @@ -@import './../../styles/global'; - -@keyframes o-loader--spin { - 0% { transform: rotate(0deg); } - - 100% { transform: rotate(360deg); } -} - -.o-loader { - display: block; - width: 64px; - height: 64px; - max-width: 100%; - max-height: 100%; - - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - - &__image { - animation: o-loader--spin $s-animation--time-long $s-animation--ease-in-out infinite; - - width: 100%; - height: 100%; - - > * { - stroke: $s-color--primary; - } - } -} diff --git a/src/public/objects/logo/index.tsx b/src/public/objects/logo/index.tsx deleted file mode 100644 index b21c284..0000000 --- a/src/public/objects/logo/index.tsx +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Link, Image } from '@yourwishes/app-simple-react/dist/public'; - -import './styles.scss'; - -export interface LogoProps { - className?:string -}; - -export const Logo = (props:LogoProps) => { - return ( - - - - ); -}; diff --git a/src/public/objects/logo/styles.scss b/src/public/objects/logo/styles.scss deleted file mode 100644 index d034f10..0000000 --- a/src/public/objects/logo/styles.scss +++ /dev/null @@ -1,10 +0,0 @@ -@import './../../styles/global'; - -.o-logo { - display: block; - - &__image { - display: block; - width: 100%; - } -} diff --git a/src/public/objects/page/boundary/index.tsx b/src/public/objects/page/boundary/index.tsx deleted file mode 100644 index 3c59c84..0000000 --- a/src/public/objects/page/boundary/index.tsx +++ /dev/null @@ -1,56 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import './styles.scss'; - -export enum Size { SMALL = 'small', MEDIUM = 'medium', LARGE = 'large' }; - -export type PageWrapperProps = ( - { - size?:Size|string, - - medium?:boolean, - small?:boolean, - large?:boolean - } & - React.DetailedHTMLProps, HTMLDivElement> -); - -export const PageBoundary = (props:PageWrapperProps) => { - let { - size, className, small, medium, large - } = props; - - let np = {...props}; - ['small','medium','large'].forEach(e => delete np[e]); - - size = size || Size.LARGE; - - if(small) size = Size.SMALL; - if(medium) size = Size.MEDIUM; - if(large) size = Size.LARGE; - - let clazz = `o-page-wrapper is-size-${size} ${className||""}`; - return
-}; diff --git a/src/public/objects/page/boundary/styles.scss b/src/public/objects/page/boundary/styles.scss deleted file mode 100644 index fcfaebc..0000000 --- a/src/public/objects/page/boundary/styles.scss +++ /dev/null @@ -1,17 +0,0 @@ -@import './../../../styles/global'; - -.o-page-wrapper { - margin: auto; - - &.is-size-small { - max-width: $s-screen-small; - } - - &.is-size-medium { - max-width: $s-screen-medium; - } - - &.is-size-large { - max-width: $s-screen-xlarge; - } -} diff --git a/src/public/objects/page/effect/index.tsx b/src/public/objects/page/effect/index.tsx deleted file mode 100644 index 812cba9..0000000 --- a/src/public/objects/page/effect/index.tsx +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { withLoader, withLoaderProps } from '@yourwishes/app-simple-react/dist/public'; - -import './styles.scss'; - -export interface PageEffectProps extends React.DetailedHTMLProps, HTMLDivElement>, withLoaderProps { -} - -export const PageEffectComponent = (props:PageEffectProps) => { - let { loading, error, loaded, className } = props; - let np = {...props}; - ['loading','loaded','error','simulate'].forEach(e => delete np[e]); - - let ec = ''; - if(loading) ec = 'is-loading'; - if(loaded) ec = 'is-loaded'; - if(error) ec = 'has-error'; - - return ( -
- ); -} - -export const PageEffect = (loadKey:string) => withLoader(loadKey, PageEffectComponent); diff --git a/src/public/objects/page/effect/styles.scss b/src/public/objects/page/effect/styles.scss deleted file mode 100644 index fa0c2af..0000000 --- a/src/public/objects/page/effect/styles.scss +++ /dev/null @@ -1,36 +0,0 @@ -@import './../../../styles/global'; - -@keyframes o-page-effect--fade-in { - from { - opacity: 0; - transform: translateY(1vh); - } - - to { - opacity: 1; - transform: translateY(0); - } -} - -.o-page-effect { - opacity: 0; - transform: translateY(1vh); - transition: - opacity $s-animation--time-long $s-animation--ease-out, - transform $s-animation--time-long $s-animation--ease-out - ; - transition-delay: 200ms; - - &.is-loading { - transition: none; - opacity: 1; - transform: translateY(0); - } - - &.is-loaded { - opacity: 1; - transform: translate(0); - //animation: o-page-effect--fade-in forwards $s-animation--time-long $s-animation--ease-out; - //animation-delay: $s-animation--time-long;//Animation delay to try and hide the "flicker" when a component loads - } -} diff --git a/src/public/objects/typography/heading/index.tsx b/src/public/objects/typography/heading/index.tsx deleted file mode 100644 index 83b7559..0000000 --- a/src/public/objects/typography/heading/index.tsx +++ /dev/null @@ -1,125 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import './styles.scss'; - -export enum Type { - H1='h1', H2='h2', H3='h3', H4='h4', H5='h5', H6='h6', - SPAN='span' -} - -export enum Size { - TITLE='is-title', - TITLE_LARGE='is-title-large', - SUBTTITLE='is-subtitle', - S1='is-size-1', - S2='is-size-2', - S3='is-size-3', - S4='is-size-4', - S5='is-size-5', - S6='is-size-6' -} - -export interface HeadingProps extends React.DetailedHTMLProps, HTMLHeadingElement> { - type?:Type, - size?:Size -} - -export const Heading = (props:HeadingProps) => { - let { size, type, className } = props; - - let np = {...props}; - ['size','type','large'].forEach(e => delete np[e]); - - size = size || Size.S1; - - let clazz = `o-heading ${size}`; - - if(!type) { - switch(size) { - case Size.TITLE: - type = Type.H1; break; - case Size.TITLE_LARGE: - type = Type.H1; break; - case Size.S1: - type = Type.H1; break; - case Size.S2: - type = Type.H2; break; - case Size.S3: - type = Type.H3; break; - case Size.S4: - type = Type.H4; break; - case Size.S5: - type = Type.H5; break; - case Size.S6: - type = Type.H6; break; - default: - type = Type.SPAN; break; - } - } - - if(size == Size.TITLE) clazz = 'o-title'; - if(size == Size.TITLE_LARGE) clazz = 'o-title is-large'; - if(size == Size.SUBTTITLE) clazz = 'o-subtitle'; - if(className) clazz += ` ${className}`; - - let ElementType = type; - return ; -}; - -//Types -export const Title = (props:( - HeadingProps & { large?:boolean } -)) => ( - -); - -export const Subtitle = (props:HeadingProps) => ( - -); - - -export const Heading1 = Heading; - -export const Heading2 = (props:HeadingProps) => ( - -); - -export const Heading3 = (props:HeadingProps) => ( - -); - -export const Heading4 = (props:HeadingProps) => ( - -); - -export const Heading5 = (props:HeadingProps) => ( - -); - -export const Heading6 = (props:HeadingProps) => ( - -); diff --git a/src/public/objects/typography/heading/styles.scss b/src/public/objects/typography/heading/styles.scss deleted file mode 100644 index 7f5ca5d..0000000 --- a/src/public/objects/typography/heading/styles.scss +++ /dev/null @@ -1,28 +0,0 @@ -@import './../../../styles/global'; - -.o-heading { - @extend %s-font--heading; - margin: 0.4em 0 0.5em; - - @for $i from 1 through 6 { - &.is-size-#{$i} { @extend %s-font--heading-#{$i}; } - } -} - -.o-title { - @extend %s-font--heading; - font-size: $s-font--size-title; - - + .o-subtitle { - margin-top: -1em; - margin-bottom: 1em; - } -} - -@include t-media-query($s-small-up) { - .o-title { - &.is-large { - font-size: $s-font--size-title-large; - } - } -} diff --git a/src/public/objects/widgets/breadcrumb/index.tsx b/src/public/objects/widgets/breadcrumb/index.tsx deleted file mode 100644 index 8a5fe67..0000000 --- a/src/public/objects/widgets/breadcrumb/index.tsx +++ /dev/null @@ -1,58 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Link } from '@yourwishes/app-simple-react/dist/public'; - -import './styles.scss'; - - -export interface BreacrumbCrumbProps { - title:string, to:string -} - -export interface BreadcrumbProps { - className?:string - crumbs:BreacrumbCrumbProps[] -} - - -export const BreadcrumbCrumb = (props:BreacrumbCrumbProps) => ( -
  • - - { props.title } - -
  • -); - -export const Breadcrumb = (props:BreadcrumbProps) => { - let crumbs = [ - {to:'/',title:'Home'}, ...props.crumbs - ].map((crumb,i) => ); - - return ( - - ); -} diff --git a/src/public/objects/widgets/breadcrumb/styles.scss b/src/public/objects/widgets/breadcrumb/styles.scss deleted file mode 100644 index 4a8bed8..0000000 --- a/src/public/objects/widgets/breadcrumb/styles.scss +++ /dev/null @@ -1,42 +0,0 @@ -@import './../../../styles/global'; - -.o-breadcrumb { - margin: $s-gutter--medium 0 $s-gutter--large; - - &__list { - list-style: none; - padding: 0; - margin: 0; - - - &-item { - display: inline-block; - font-size: 0.8em; - - &-link, &::before { - opacity: 0.9; - transition: all $s-animation--time-fast $s-animation--ease-out; - } - - &-link.is-active { - color: $s-color--primary; - } - - &:hover &-link { - opacity: 1; - } - - - + #{&} { - &::before { - content: '/'; - margin: 0 $s-gutter--xsmall; - } - } - } - } - - @include t-media-query($s-xsmall-up) { - &__list-item { font-size: 0.9em; } - } -} diff --git a/src/public/objects/widgets/button/index.tsx b/src/public/objects/widgets/button/index.tsx deleted file mode 100644 index 8233b56..0000000 --- a/src/public/objects/widgets/button/index.tsx +++ /dev/null @@ -1,86 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { LinkProps, Link } from '@yourwishes/app-simple-react/dist/public'; -import { Loader } from './../../loader/'; -import './styles.scss'; - -export enum ButtonStyle { - PRIMARY='is-primary', - SECONDARY='is-secondary' -}; - -export enum ButtonSize { - NORMAL = 'is-normal', - LARGE = 'is-large' -} - - -export type ButtonProps = LinkProps & { - className?:string, - style?:ButtonStyle, - to?:string, - disabled?:boolean, - loading?:boolean, - - size?:ButtonSize, - large?:boolean, - - primary?:boolean, - secondary?:boolean -} - -export const Button = (props:ButtonProps) => { - let { className, children, style, size, large, disabled, loading } = props; - - if(large) size = ButtonSize.LARGE; - - if(props.primary) style = ButtonStyle.PRIMARY; - if(props.secondary) style = ButtonStyle.SECONDARY; - - let clazz = `o-btn ${style||ButtonStyle.PRIMARY}`; - if(className) clazz += ` ${className}`; - if(size && size != ButtonSize.NORMAL) clazz += ` ${size}`; - if(disabled) clazz += ' is-disabled'; - - if(loading) { - children = <> { children } ; - clazz += ' is-loading'; - } - - let np = {...props}; - [ - 'style','large','size','primary','secondary', 'loading' - ].forEach(e => delete np[e]); - - return ( - - { children } - - ); -}; - -export const ButtonGroup = (props:React.DetailedHTMLProps, HTMLDivElement>) => ( -
    -); diff --git a/src/public/objects/widgets/button/styles.scss b/src/public/objects/widgets/button/styles.scss deleted file mode 100644 index 7b3976c..0000000 --- a/src/public/objects/widgets/button/styles.scss +++ /dev/null @@ -1,71 +0,0 @@ -@import './../../../styles/global'; - -.o-btn { - display: inline-block; - padding: 0.5em 1em; - text-align: center; - background: $s-color--primary; - border: $s-outline--medium solid $s-color--primary; - font-weight: $s-font--weight-default; - transition: background $s-animation--time-fast $s-animation--ease-out; - - &:hover { - background: $s-color--primary-hover; - text-decoration: none; - } - - &[disabled],&.is-disabled { - cursor: not-allowed; - background: $s-color--disabled; - color: $s-color--disabled-text; - border-color: $s-color--disabled; - .o-loader * { stroke: $s-color--disabled-text; } - } - - &.is-loading { - position: relative; - color: transparent; - - .o-loader { - height: calc(100% - 1em); - } - } - - &.is-large { - padding: 1em 2em; - font-weight: $s-font--weight-bold; - - &.is-loading .o-loader { height: calc(100% - 2em); } - } -} - - -//Button group -.o-btn-group { - .o-btn { - width: 100%; - display: block; - - + .o-btn { - margin-top: 0.5em; - } - } - - @include t-media-query($s-xsmall-up) { - display: flex; - flex-wrap: wrap; - - .o-btn { - width: calc(50% - 0.5em); - - + .o-btn { - margin-top: 0; - margin-left: 0.5em; - } - } - } - - @include t-media-query($s-small-up) { - .o-btn { width: auto; } - } -} diff --git a/src/public/objects/widgets/input/index.tsx b/src/public/objects/widgets/input/index.tsx deleted file mode 100644 index 0762447..0000000 --- a/src/public/objects/widgets/input/index.tsx +++ /dev/null @@ -1,170 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Button, ButtonProps } from './../button/'; -import { Assign } from 'utility-types'; -import './styles.scss'; - -//Input Types, e.g. email, text, etc. -export enum InputType { - //HTML5: - COLOR = "color", - DATE = "date", - DATETIME_LOCAL = "datetime-local", - EMAIL = "email", - MONTH = "month", - NUMBER = "number", - RANGE = "range", - SEARCH = "search", - TEL = "tel", - TIME = "time", - URL = "url", - WEEK = "week", - - //HTML4~ - TEXT = "text", - HIDDEN = "hidden", - PASSWORD = "password", - RADIO = "radio", - CHECKBOX = "checkbox", - TEXTAREA = "textarea", - FILE = "file", - IMAGE = "image", - - //Button types - BUTTON = "button", - SUBMIT = "submit", - RESET = "reset" -}; - -//Input values, e.g. the values the inputs can have -export type InputValue = ( - string | number | boolean | - (string|number|boolean)[] -); - -//Props -type InputPropsPicked = { - className?:string, - - to?:undefined, - type?:InputType, - - //Value Management - value?:InputValue, - children?:string,//Acts more like defaultValue than value, for textareas - defaultValue?:InputValue, - readOnly?:boolean, - - maxLength?:string|number, - - //Readability - placeholder?:string, - title?:string, - name?:string, - error?:string, - - //Specifics. - rows?:string|number, - - //Events - onChange?:React.FormEventHandler -} - -//We are going to override some of the buttons stuff. -export type InputProps = Assign, { - ref?:any -}>; - -export class InputElement extends React.Component { - constructor(props:InputProps) { - super(props); - } - - shouldComponentUpdate(nextProps) { - return true; - } - - render() { - //Fetch from props - let { className, type, children, value, defaultValue } = this.props; - - //Determine default value - if(children && typeof children === "string") { - defaultValue = `${children}` as string; - } - - let np = {}; - - //Begin building class - let clazz = `o-input is-${type} `; - - //Determine input type - type = type || InputType.TEXT; - let ElementType:any = "input"; - - /*** Begin Type Specific Processing... */ - - //Textarea? Adjust the values a bit - if(type == InputType.TEXTAREA) { - ElementType = "textarea"; - type = undefined; - children = undefined; - } - - //Button? - if([InputType.BUTTON,InputType.SUBMIT,InputType.RESET].some(e => type === e)) { - ElementType = Button; - children = (value || defaultValue) as any; - value = undefined; - clazz = ' '; - [ - 'to','primary','secondary','size','style','large','loading' - ].forEach(e => np[e] = this.props[e]); - } - - //Add Custom classes` - clazz += className||""; - - //Now Build new props - np['className'] = clazz; - np['type'] = type; - np['children'] = children; - np['value'] = value; - np['defaultValue'] = defaultValue; - - [ - 'readOnly','placeholder','title','rows','maxLength', - 'onChange', 'disabled' - ].forEach(e => np[e] = this.props[e]); - - return - } -} - -export const Input = InputElement; - -export const TextArea = (props:InputProps) => ( - -); diff --git a/src/public/objects/widgets/input/styles.scss b/src/public/objects/widgets/input/styles.scss deleted file mode 100644 index c2706ea..0000000 --- a/src/public/objects/widgets/input/styles.scss +++ /dev/null @@ -1,51 +0,0 @@ -@import './../../../styles/global'; - -.o-input { - display: inline-block; - width: 100%; - padding: 0.5em 1em; - margin: 0; - - font-family: inherit; - font-size: inherit; - font-weight: inherit; - vertical-align: bottom; - - border: $s-outline--medium solid $s-color--primary; - background: transparent; - color: inherit; - transition: border $s-animation--time-fast $s-animation--ease-out; - - //Pseudo's - &::placeholder { - color: inherit; - opacity: 0.5; - } - - //States - &:hover,&:focus { - border-color: $s-color--primary-hover; - &::placeholder { opacity: 0.7; } - } - - &[disabled],&.is-disabled { - cursor: not-allowed; - background: rgba($s-color--disabled, 0.7); - color: $s-color--disabled-text; - border-color: $s-color--disabled; - &::placeholder {opacity: 0.5;} - } - - &:focus {} - &:active {} - - //Types - &.is-textarea { - max-width: 100%; - } - - //Nexts - + #{&}, + .o-btn, + .o-btn-group { - margin-top: $s-gutter--small; - } -} diff --git a/src/public/pages/404/index.tsx b/src/public/pages/404/index.tsx deleted file mode 100644 index 8d136e7..0000000 --- a/src/public/pages/404/index.tsx +++ /dev/null @@ -1,62 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Title } from './../../objects/typography/heading/'; -import { PageBoundary } from './../../objects/page/boundary/'; -import { ButtonGroup, Button } from './../../objects/widgets/button/'; -import { PageWrapper } from './../../components/page/wrapper/'; - -import './styles.scss'; - -export class NotFoundPage extends React.Component { - constructor(props:any) { - super(props); - } - - render() { - - return - - - 404 - Not Found - - -
    -

    - Sorry, the page you requested could not be found. It may've been - deleted or relocated. If you feel this is an error you can contact me, - otherwise you can go back home and take a look around. -

    - - - - - -
    -
    -
    ; - } -} - -export default NotFoundPage; diff --git a/src/public/pages/404/styles.scss b/src/public/pages/404/styles.scss deleted file mode 100644 index c781a99..0000000 --- a/src/public/pages/404/styles.scss +++ /dev/null @@ -1,20 +0,0 @@ -@import './../../styles/global'; - -.c-404-page { - padding: $s-gutter--xlarge $s-gutter--small; - - &__title { - text-align: center; - } - - &__content { - max-width: 500px; - margin: 0 auto; - text-align: center; - } - - &__buttons { - margin-top: $s-gutter--large; - justify-content: center; - } -} diff --git a/src/public/pages/about/index.tsx b/src/public/pages/about/index.tsx deleted file mode 100644 index 25f8ee5..0000000 --- a/src/public/pages/about/index.tsx +++ /dev/null @@ -1,53 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; - -import { BannerSection } from './sections/banner/'; -import { ProgrammerSection } from './sections/programmer/'; -import { ShopifySection } from './sections/shopify/'; -import { WebDevSection } from './sections/webdev/'; -import { TechStackSection } from './sections/tech/'; -import { ContactSection } from './sections/contact/'; -import { PageWrapper } from './../../components/page/wrapper/'; - -export class AboutPage extends React.Component { - constructor(props:any) { - super(props); - } - - render() { - return - - - - - - - - - - } -} - -export default AboutPage; diff --git a/src/public/pages/about/sections/banner/index.tsx b/src/public/pages/about/sections/banner/index.tsx deleted file mode 100644 index 1e1a37c..0000000 --- a/src/public/pages/about/sections/banner/index.tsx +++ /dev/null @@ -1,46 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; - -import { Title } from './../../../../objects/typography/heading/'; -import { PageBoundary } from './../../../../objects/page/boundary/'; -import { Section } from './../../../../components/section/'; - -import './styles.scss'; - -export const BannerSection = () => ( -
    - -
    - -
    - About Me -

    - I'm just a nerd with a passion for coding, coffee, and video games.
    - Programming since before the internet was cool. -

    -
    - -
    -); diff --git a/src/public/pages/about/sections/banner/styles.scss b/src/public/pages/about/sections/banner/styles.scss deleted file mode 100644 index 84b031c..0000000 --- a/src/public/pages/about/sections/banner/styles.scss +++ /dev/null @@ -1,32 +0,0 @@ -@import './../../../../styles/global'; - -.c-about-banner { - &__boundary { - position: relative; - text-align: center; - } - - &__pad { - width: 100%; - padding-bottom: 60%; - } - - &__content { - top: 0; - left: 50%; - top: 75%; - transform: translate(-50%, -50%); - position: absolute; - text-align: center; - width: 100%; - padding: 0 $s-gutter--small; - } - - &__title,&__blurb { - } - - @include t-media-query($s-small-up) { - &__content { top: 50%; } - &__pad { padding-bottom: 40%; } - } -} diff --git a/src/public/pages/about/sections/contact/index.tsx b/src/public/pages/about/sections/contact/index.tsx deleted file mode 100644 index f3eb573..0000000 --- a/src/public/pages/about/sections/contact/index.tsx +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Section } from './../../../../components/section/'; -import { PageBoundary } from './../../../../objects/page/boundary/'; -import { Heading2 } from './../../../../objects/typography/heading/'; -import { Button } from './../../../../objects/widgets/button/'; - -import './styles.scss'; - -export const ContactSection = () => ( -
    - - Get in touch -

    - Want to get in touch, pick my brain or just have a chat?
    - Head over to my contact page and feel free to reach out. -

    - - -
    -
    -); diff --git a/src/public/pages/about/sections/contact/styles.scss b/src/public/pages/about/sections/contact/styles.scss deleted file mode 100644 index 9780969..0000000 --- a/src/public/pages/about/sections/contact/styles.scss +++ /dev/null @@ -1,13 +0,0 @@ -@import './../../../../styles/global'; - -.c-contact-section { - &__boundary { - padding: $s-gutter--xlarge $s-gutter--small; - text-align: center; - - p { - max-width: 500px; - margin: $s-gutter--medium auto; - } - } -} \ No newline at end of file diff --git a/src/public/pages/about/sections/programmer/index.tsx b/src/public/pages/about/sections/programmer/index.tsx deleted file mode 100644 index acaff5a..0000000 --- a/src/public/pages/about/sections/programmer/index.tsx +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Section } from './../../../../components/section/'; -import { PageBoundary } from './../../../../objects/page/boundary/'; -import { Heading2 } from './../../../../objects/typography/heading/'; - -import './styles.scss'; - -export const ProgrammerSection = () => ( -
    - - Programmer -

    - I am a programmer, born and bred. I have been programming since I was - around 11 years old and continue to advance my skills more and more - everyday. -

    - -

    - Programming is my work and my passion. With over 15 years of experience, - and countless lines of code written, there isn't much I can't develop. -

    -
    -
    -); diff --git a/src/public/pages/about/sections/programmer/styles.scss b/src/public/pages/about/sections/programmer/styles.scss deleted file mode 100644 index a6672c2..0000000 --- a/src/public/pages/about/sections/programmer/styles.scss +++ /dev/null @@ -1,11 +0,0 @@ -@import './../../../../styles/global'; - -.c-programmer-section { - overflow-x: hidden; - - &__boundary { - padding: $s-gutter--xlarge $s-gutter--small; - position: relative; - text-align: center; - } -} diff --git a/src/public/pages/about/sections/shopify/index.tsx b/src/public/pages/about/sections/shopify/index.tsx deleted file mode 100644 index b0d27de..0000000 --- a/src/public/pages/about/sections/shopify/index.tsx +++ /dev/null @@ -1,81 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Link, Image, ImageSource } from '@yourwishes/app-simple-react/dist/public'; -import { Section } from './../../../../components/section/'; -import { PageBoundary } from './../../../../objects/page/boundary/'; -import { Heading3 } from './../../../../objects/typography/heading/'; - -import './styles.scss'; - -export type SiteBoxProps = { - to:string, - src: ImageSource -}; - -export const SiteBox = (props:SiteBoxProps) => ( - - - -); - -export const ShopifySection = () => ( -
    - -
    - - - - -
    -
    - -
    - - Shopify Plus - - -

    - I'm currently working full-time as a Senior Full-Stack Developer for - Shopify Plus at Process Creative. - I have been working with it every day since September 2017 and enjoy - working with the platform immensely. -

    - -

    - Working with Liquid, REST and GraphQL App Development and general - Shopify tools development, I have had the privilage of working with - over 40 different Shopify Plus clients, and over 50 Shopify core clients. -

    - -

    - Despite Shopify's seemingly limited development environment, I have - been able to make it do tricks thought impossible. I love finding - unique solution's to Shopify's limitations, and will continuously - find ways to surprise everyone, including myself. -

    -
    - -
    -); diff --git a/src/public/pages/about/sections/shopify/styles.scss b/src/public/pages/about/sections/shopify/styles.scss deleted file mode 100644 index 7283b1e..0000000 --- a/src/public/pages/about/sections/shopify/styles.scss +++ /dev/null @@ -1,72 +0,0 @@ -@import './../../../../styles/global'; - -.c-shopify-section { - margin-bottom: $s-gutter--large; - - &__boundary {} - &__content { padding: 0 $s-gutter--small; } - &__title { text-align: center; } - - &__mosaic { - position: relative; - width: 100%; - - &-pad { - width: 100%; - padding-bottom: 80%; - } - - &-box { - position: absolute; - transition: all $s-animation--time-fast $s-animation--ease-out; - - &:nth-child(1) { - bottom: 10%; - left: 15%; - width: 50%; - z-index: 3; - - &:hover { transform: translateY(-0.5em); } - } - - &:nth-child(2) { - bottom: 20%; - left: 25%; - width: 45%; - - &:hover { transform: translateX(-0.5em); } - } - - &:nth-child(3) { - width: 50%; - right: 5%; - top: 25%; - - &:hover { transform: translate(0.5em, -0.5em); } - } - - &-image { width: 100%; } - } - } - - @include t-media-query($s-small-up) { - &__boundary { - display: flex; - align-items: center; - } - - &__title { text-align: left; } - - &__mosaic { width: 50%; order: 10; } - &__content { - width: 50%; - p { padding-left: $s-gutter--medium; } - } - } - - @include t-media-query($s-medium-up) { - &__content { - transform: translate(13%, -20%); - } - } -} diff --git a/src/public/pages/about/sections/tech/index.tsx b/src/public/pages/about/sections/tech/index.tsx deleted file mode 100644 index 1063475..0000000 --- a/src/public/pages/about/sections/tech/index.tsx +++ /dev/null @@ -1,103 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Image, ImageSource } from '@yourwishes/app-simple-react/dist/public'; -import { PageBoundary } from './../../../../objects/page/boundary/'; -import { Section } from './../../../../components/section/'; -import { Heading2 } from './../../../../objects/typography/heading'; - -import './styles.scss'; - -export interface TechIconProps { - src:ImageSource, - title:string -} - -export const TechIcon = (props:TechIconProps) => ( -
    -
    - {props.title} -
    -
    -); - -export const TechStackSection = () => ( -
    - - - Platforms I work with - - -
    - {/* First Row */} - - - - - - - {/* Second Row */} - - - - - - - {/* Third Row */} - - - - - - - {/* Fourth Row */} - - - - - {/* ??? */} - - - {/* Fifth Row */} - - - - {/* ??? */} - {/* ??? */} - - {/* Sixth Row */} - - - - {/* ??? */} - {/* ??? */} - -
    -
    -
    -); diff --git a/src/public/pages/about/sections/tech/styles.scss b/src/public/pages/about/sections/tech/styles.scss deleted file mode 100644 index 1262c0d..0000000 --- a/src/public/pages/about/sections/tech/styles.scss +++ /dev/null @@ -1,74 +0,0 @@ -@import './../../../../styles/global'; - -$c-tech-stack--spacing: 60%; -$c-tech-stack--rows: 5; -$c-tech-stack--columns: 5; -$c-tech-stack--rows-width: $c-tech-stack--spacing * ( $c-tech-stack--rows - 1 ); -$c-tech-stack--half-rows-width: ($c-tech-stack--rows-width / 2) - $c-tech-stack--rows-width; - -.c-tech-stack { - //overflow: hidden; - - &__title { - text-align: center; - } - - &__platform { - display: flex; - flex-wrap: wrap; - max-width: 600px; - margin: 0 auto; - - &-icon { - width: 20%; - - &-inner { - position: relative; - padding-bottom: 100%; - } - - &-image { - padding: $s-gutter--xsmall; - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - object-fit: contain; - object-position: center; - transition: padding $s-animation--time-fast $s-animation--ease-out; - } - } - } - - @include t-media-query($s-xsmall-up) { - &__platform-icon { - &-image { padding: $s-gutter--small; } - } - } - - @include t-media-query($s-medium-up) { - &__platform-icon { - transform: translateX($c-tech-stack--half-rows-width); - - @for $i from 1 through $c-tech-stack--rows { - $x: $c-tech-stack--half-rows-width + ($c-tech-stack--spacing * $i); - &:nth-child( n+#{$i * $c-tech-stack--columns + 1}) { - transform: translateX($x); - } - } - } - } - - @include t-media-query($s-large-up) { - &__platform{ - max-width: 700px; - - &-icon{ - &-image { padding: $s-gutter--medium; } - //&:hover &-image { padding: $s-gutter--small; } - } - - } - } -} diff --git a/src/public/pages/about/sections/webdev/index.tsx b/src/public/pages/about/sections/webdev/index.tsx deleted file mode 100644 index 89df47b..0000000 --- a/src/public/pages/about/sections/webdev/index.tsx +++ /dev/null @@ -1,91 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Link, Image, ImageSource } from '@yourwishes/app-simple-react/dist/public'; -import { Section } from './../../../../components/section/'; -import { PageBoundary } from './../../../../objects/page/boundary/'; -import { Heading3 } from './../../../../objects/typography/heading/'; - -import './styles.scss'; - -export interface WebDevBoxProps { - to:string, - src:ImageSource -}; - -export const WebDevBox = (props:WebDevBoxProps) => ( -
    - - - -
    -); - -export const WebDevSection = () => ( -
    - - {/* Image */} -
    - - - - - -
    - - {/* Content */} -
    - - Full-Stack Web Dev - -

    - I have spent over 10 years working with both modern and traditional web - tech stacks, including NodeJS, TypeScript, React, ES6, Webpack, Babel, - SCSS, PHP, ASP, SQL and more. -

    - -

    - My specialty is making beautiful and interactive online web experiences. - Why must web suck? I am to prove that it doesn't always have to. -

    - -

    - If you're interested in seeing some of my best work head over to - my projects section and see what I've - worked on! -

    -
    - -
    -
    -); diff --git a/src/public/pages/about/sections/webdev/styles.scss b/src/public/pages/about/sections/webdev/styles.scss deleted file mode 100644 index c7720d5..0000000 --- a/src/public/pages/about/sections/webdev/styles.scss +++ /dev/null @@ -1,69 +0,0 @@ -@import './../../../../styles/global'; - -.c-webdev-section { - margin-bottom: $s-gutter--large; - - &__content { - padding: 0 $s-gutter--small; - } - - - &__title { - text-align: center; - } - - &__media { - position: relative; - overflow: hidden; - padding-bottom: 72%; - - &-box { - position: absolute; - width: 50%; - - transform: translateY(0em) rotate(-25deg); - background: white; - cursor: pointer; - transition: transform $s-animation--time-medium $s-animation--ease-out ; - - @for $i from 1 through 5 { - &:nth-child(#{$i}) { left: (10% * $i) + 2.5%; top: 14% + ($i * 2%); } - } - - &:hover { - transform: translateY(-0.5em) rotate(-25deg); - } - - &-inner { - width: 100%; - padding-bottom: (100%/4)*3; - position: relative; - height: 100%; - } - - &-image { - width: 100%; - } - } - } - - @include t-media-query($s-small-up) { - &__boundary { - display: flex; - align-items: center; - } - - &__media { - width: 50%; - padding-bottom: 33%; - } - - &__content { - width: 50%; - transform: translateY($s-gutter--medium); - p { padding-left: $s-gutter--medium; } - } - - &__title { text-align: left; } - } -} diff --git a/src/public/pages/article/index.tsx b/src/public/pages/article/index.tsx deleted file mode 100644 index 7a099b7..0000000 --- a/src/public/pages/article/index.tsx +++ /dev/null @@ -1,97 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { getArticleByHandle, getArticleURL } from './../../data/articles/'; -import { LoadableComponent } from '@yourwishes/app-simple-react/dist/public'; -import { BlogArticle } from './../../types/'; -import { PageWrapper } from './../../components/page/wrapper/'; -import { NotFoundPage } from './../404'; -import { Loader } from './../../objects/loader'; -import { PageBoundary } from './../../objects/page/boundary/'; -import { Breadcrumb } from './../../objects/widgets/breadcrumb/'; -import { Heading1 } from './../../objects/typography/heading/'; - -import './styles.scss'; - - - -export interface ArticleProps { - article:BlogArticle -}; - -export const ArticleLoader = (props:ArticleProps) => ; - -export interface ArticlePageState { - handle:string -} - -export class ArticlePage extends React.Component { - constructor(props:any) { - super(props); - - let handle = ''; - if(props && props.match && props.match.params) { - handle = props.match.params.handle || handle; - } - - this.state = { handle }; - } - - render() { - console.log('Rendering'); - //Find article by handle - let article:BlogArticle; - - let handle = this.state.handle; - if(handle && handle.length) article = getArticleByHandle(handle); - if(!article) return ; - - let url = getArticleURL(article); - - return -
    - {/* Meta Details */} - - - - - - - { article.title } - - {/* Loading Component */} - - load={article.description} loadKey={getArticleURL(article)} - loading={ArticleLoader} article={article} - /> - -
    -
    ; - } -} - -export default ArticlePage; diff --git a/src/public/pages/article/styles.scss b/src/public/pages/article/styles.scss deleted file mode 100644 index 09b2007..0000000 --- a/src/public/pages/article/styles.scss +++ /dev/null @@ -1,9 +0,0 @@ -@import './../../styles/global'; - -.p-article { - padding-bottom: $s-gutter--large; - - &__inner { - padding: $s-gutter--small; - } -} diff --git a/src/public/pages/blog/index.tsx b/src/public/pages/blog/index.tsx deleted file mode 100644 index 12295a4..0000000 --- a/src/public/pages/blog/index.tsx +++ /dev/null @@ -1,50 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; - -import { BlogBanner } from './sections/banner/'; -import { FeaturedArticle } from './sections/featured-article/'; -import { ArticleList } from './sections/article-list/'; -import { Articles } from './../../data/articles/'; -import { PageWrapper } from './../../components/page/wrapper/'; - -import './styles.scss'; - -export class BlogPage extends React.Component { - constructor(props:any) { - super(props); - } - - render() { - let articles = [...Articles]; - - return - - - - ; - } -} - -export default BlogPage; diff --git a/src/public/pages/blog/sections/article-list/index.tsx b/src/public/pages/blog/sections/article-list/index.tsx deleted file mode 100644 index 698aefa..0000000 --- a/src/public/pages/blog/sections/article-list/index.tsx +++ /dev/null @@ -1,72 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Image, Link } from '@yourwishes/app-simple-react/dist/public'; -import { Section } from './../../../../components/section'; -import { PageBoundary } from './../../../../objects/page/boundary/'; -import { Heading3 } from './../../../../objects/typography/heading/'; -import { BlogArticle } from './../../../../types/'; -import { getArticleURL } from './../../../../data/articles/'; - -import './styles.scss'; - -export interface ArticleListProps { - articles:BlogArticle[] -}; - -export const ArticleList = (props:ArticleListProps) => { - return ( -
    - - {props.articles.map( - (article,i) => - )} - -
    - ); -}; - -export interface ArticleThumbnailProps { - article:BlogArticle -}; - - -export const ArticleThumbnail = (props:ArticleThumbnailProps) => { - let { article } = props; - let url = getArticleURL(article); - - return ( -
    - -
    - -
    - - - { article.title } - - -
    - ); -}; diff --git a/src/public/pages/blog/sections/article-list/styles.scss b/src/public/pages/blog/sections/article-list/styles.scss deleted file mode 100644 index c928934..0000000 --- a/src/public/pages/blog/sections/article-list/styles.scss +++ /dev/null @@ -1,124 +0,0 @@ -@import './../../../../styles/global'; - - -.c-article-list { - margin-bottom: $s-gutter--xlarge; - - &__boundary {} - - &__article { - width: 100%; - margin-bottom: 1.5em; - - &-inner { - display: block; - width: 100%; - position: relative; - } - - &-picture { - width: 100%; - max-width: 450px; - &-image { width: 100%; } - } - - &-title { - position: absolute; - width: 100%; - max-width: 400px; - bottom: 0; - left: 0; - padding: 0 $s-gutter--xsmall; - - white-space: nowrap; - text-overflow: ellipsis; - } - } - - @include t-media-query($s-xsmall-up) { - &__boundary { - display: flex; - flex-wrap: wrap; - } - - &__article { - $article: &; - padding-bottom: $s-gutter--small; - - &-inner { - display: flex; - flex-direction: column; - } - - &-title { - transition: all $s-animation--time-fast $s-animation--ease-out; - } - - &:hover { - #{$article}-title { transform: translateX($s-gutter--xsmall); } - } - - &:nth-child(even) { - #{$article}-picture { - align-self: flex-end; - } - - #{$article}-title { - left: auto; - right: 0; - //right: $c-article-list--article-image - $c-article-list--article-title; - } - - &:hover { - #{$article}-title { transform: translateX(-$s-gutter--xsmall); } - } - } - } - } - - - @include t-media-query($s-small-up) { - &__article { - $article: &; - width: 60%; - padding-bottom: 0; - margin-bottom: -$s-gutter--small; - - &:nth-child(even) { - margin-left: auto; - - #{$article}-title { - top: 0; - bottom: auto; - } - } - - &:last-child { margin-bottom: 0; } - } - } - - @include t-media-query($s-medium-up) { - &__article { - margin-bottom: -$s-gutter--large - } - } - - @include t-media-query($s-large-up) { - &__article { - transform: translateX(-$s-gutter--large); - margin-bottom: -$s-gutter--large; - width: 75%; - - &-picture { - } - - &-title { - } - - &:nth-child(2n+2) { - transform: translateX($s-gutter--large); - } - - } - } -} diff --git a/src/public/pages/blog/sections/banner/index.tsx b/src/public/pages/blog/sections/banner/index.tsx deleted file mode 100644 index cc86178..0000000 --- a/src/public/pages/blog/sections/banner/index.tsx +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Section } from './../../../../components/section'; -import { Title } from './../../../../objects/typography/heading/'; -import { PageBoundary } from './../../../../objects/page/boundary/'; - -import './styles.scss'; - -export const BlogBanner = () => { - return ( -
    - - - Dom's blog of things code and not - - -
    -

    - Welcome to my blog, read some of my personal notes here, and see - what I'm currently working on. Otherwise just take a look at some - interesting things I've done. -

    - -

    - You may even learn a thing or two. I like to travel and code and I - always take my office with me wherever. I am enjoy finding new ways - to do what I do best, code. -

    -
    -
    -
    - ); -}; diff --git a/src/public/pages/blog/sections/banner/styles.scss b/src/public/pages/blog/sections/banner/styles.scss deleted file mode 100644 index 4f3c1fa..0000000 --- a/src/public/pages/blog/sections/banner/styles.scss +++ /dev/null @@ -1,38 +0,0 @@ -@import './../../../../styles/global'; - -.c-blog-banner { - &__boundary { - text-align: center; - padding: 0 $s-gutter--small; - margin-bottom: $s-gutter--large ; - } - - @include t-media-query($s-xsmall-up) { - &__boundary { - display: flex; - flex-flow: column; - text-align: initial; - padding: $s-gutter--medium $s-gutter--small; - } - - //&__title { margin-bottom: 0; } - - &__text { - align-self: flex-end; - max-width: 500px; - } - } - - @include t-media-query($s-small-up) { - &__boundary { - margin-bottom: $s-gutter--xlarge; - } - - &__text { - - p:first-child { - transform: translateX(-5em); - } - } - } -} diff --git a/src/public/pages/blog/sections/featured-article/index.tsx b/src/public/pages/blog/sections/featured-article/index.tsx deleted file mode 100644 index 914f1db..0000000 --- a/src/public/pages/blog/sections/featured-article/index.tsx +++ /dev/null @@ -1,71 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { Image, Link } from '@yourwishes/app-simple-react/dist/public' -import { BlogArticle } from './../../../../types/'; -import { Section } from './../../../../components/section'; -import { Heading2 } from './../../../../objects/typography/heading/'; -import { Button } from './../../../../objects/widgets/button/'; -import { PageBoundary } from './../../../../objects/page/boundary/'; -import { getArticleURL } from './../../../../data/articles/'; - -import './styles.scss'; - -export interface FeaturedArticleProps { - article:BlogArticle -}; - -export const FeaturedArticle = (props:FeaturedArticleProps) => { - let { article } = props; - let { title, short, image } = article; - let url = getArticleURL(article); - - return ( -
    - - - {/* Title */} - - { title } - - - {/* Image */} - - {title} - - - {/* Short Description (content) */} -
    - { short() } -
    - - {/* Read More button */} - - -
    -
    - ); -}; diff --git a/src/public/pages/blog/sections/featured-article/styles.scss b/src/public/pages/blog/sections/featured-article/styles.scss deleted file mode 100644 index 63fecd6..0000000 --- a/src/public/pages/blog/sections/featured-article/styles.scss +++ /dev/null @@ -1,115 +0,0 @@ -@import './../../../../styles/global'; - -$c-featured-article--content-p-height: 200px; - -.c-featured-article { - margin-bottom: $s-gutter--small; - - &__boundary { - position: relative; - } - - &__title { - position: absolute; - width: 100%; - text-overflow: ellipsis; - white-space: nowrap; - padding: $s-gutter--xsmall; - margin: 0; - max-width: 500px; - } - - &__content { - padding: 0 $s-gutter--xsmall; - - p { - max-height: $c-featured-article--content-p-height; - text-overflow: ellipsis; - overflow: hidden; - - &:nth-child(n+2) { display: none; } - } - } - - &__picture { - display: block; - max-width: 500px; - - &-image { - width: 100%; - } - } - - &__btn { - width: 100%; - } - - @include t-media-query($s-xsmall-up) { - &__title { - position: absolute; - right: 0; - text-align: right; - } - - &__btn { - width: auto; - position: absolute; - right: $s-gutter--medium; - top: 300px; - } - } - - @include t-media-query($s-small-up) { - margin-bottom: $s-gutter--xlarge; - - &__boundary { - padding-bottom: $s-gutter--xlarge; - } - - &__content { - position: absolute; - bottom: 0; - right: 0; - width: 400px; - height: $c-featured-article--content-p-height; - - p:nth-child(n+2) { display: block; } - p:nth-child(n+3) { display: none; } - } - - &__btn { - right: auto; - top: auto; - bottom: $s-gutter--xlarge + $s-gutter--small; - left: $s-gutter--small;; - } - } - - @include t-media-query($s-medium-up) { - &__boundary { - padding-bottom: $s-gutter--large; - } - - &__btn { - bottom: $s-gutter--large - $s-gutter--small; - } - - &__title { - top: 100px; - text-align: left; - } - - &__content { - width: 500px; - bottom: 100px; - - p:nth-child(n+3) { display: block; } - } - } - - @include t-media-query($s-large-up) { - &__picture { - transform: translateX(-50px); - } - } -} diff --git a/src/public/pages/blog/styles.scss b/src/public/pages/blog/styles.scss deleted file mode 100644 index c02edfb..0000000 --- a/src/public/pages/blog/styles.scss +++ /dev/null @@ -1,5 +0,0 @@ -@import './../../styles/global'; - -.p-blog { - padding-bottom: $s-gutter--small; -} diff --git a/src/public/pages/contact/index.tsx b/src/public/pages/contact/index.tsx deleted file mode 100644 index ff8eb3a..0000000 --- a/src/public/pages/contact/index.tsx +++ /dev/null @@ -1,156 +0,0 @@ -// Copyright (c) 2019 Dominic Masters -// -// MIT License -// -// 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. - -import * as React from 'react'; -import { fetch } from 'cross-fetch'; -import { Title, Heading2 } from './../../objects/typography/heading/'; -import { PageBoundary } from './../../objects/page/boundary/'; -import { Input, InputType, TextArea } from './../../objects/widgets/input/'; -import { ButtonGroup } from './../../objects/widgets/button/'; -import { PageWrapper } from './../../components/page/wrapper/'; - -import './styles.scss'; - -export interface ContactPageState { - name:string, - nameError?:string, - - email:string, - emailError?:string, - - message:string, - messageError?:string, - - submitting:boolean, - result:string|true|null -}; - -export class ContactPage extends React.Component { - constructor(props:any) { - super(props); - - this.state = { name:"", email:"", message: "", result: null, submitting: false }; - } - - async onSubmit(e:React.FormEvent) { - if(this.state.submitting || this.state.result === true) return; - let { name, email, message } = this.state; - - e.preventDefault(); - - this.setState({ nameError: undefined, emailError: undefined, messageError: undefined }); - - if(!name || !name.length) return this.setState({ nameError: "Enter your name" }); - if(!email || !email.length) return this.setState({ emailError: "Enter your email" }); - if(!message || !message.length) return this.setState({ messageError: "Enter your message" }); - - this.setState({ submitting:true }); - let result; - try { - result = await fetch('/contact/send', { - method: 'POST', - body: JSON.stringify({ name, email, message }), - headers: { 'Content-Type': 'application/json' } - }); - result = await result.json(); - console.log(result); - if(result !== true) alert(result); - } catch(ex) { - console.error(ex); - result = ex && ex.message ? ex.message : typeof ex === typeof '' ? ex : "An unexpected error occured!"; - } - - this.setState({ submitting: false, result }); - } - - render() { - let { result, submitting } = this.state; - let disabled = result === true || submitting; - - return -
    this.onSubmit(e)}> - - -
    - Contact Me - -
    -
    -

    - Feel free to reach out, I usually respond within a few days. -

    -

    - If you prefer to call, then leave your phone number and what - times you're available and I'll get in touch! -

    -
    - -
    - this.setState({ name: e.target['value'] })} - disabled={disabled} - /> - - this.setState({ email: e.target['value'] })} - disabled={disabled} - /> - -