content-hub-0.1+16.04.20160309/0000755000015600001650000000000012670026644016154 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/doc/0000755000015600001650000000000012670026644016721 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/doc/Mainpage.md0000644000015600001650000000575212670026423020770 0ustar pbuserpbgroup00000000000000Content Management & Exchange {#mainpage} ============================= Unity and the overall Ubuntu experience put heavy emphasis on the notion of content, with Unity's dash offering streamlined access to arbitrary content, both local to the device or online. More to this, Unity's dash is the primary way of surfacing content on mobile form factors without the need to access individual applications and their respective content silos. The content-hub deals with application-specific content management and implements an architecture that allows an app to define its own content silo, exchange content with other applications/the system, and a way to provide the user with content picking functionality. To ease conversations, we start over with a set of definitions: - Content item: A content item is an entity that consists of meta-data and data. E.g., an image is a content item, where the actual pixels are the data, and information like size, image format, bit depth, location etc. is considered meta data. \sa com::ubuntu::content::Item. - Content types: A set of well-known content types. E.g., images or music files. \sa com::ubuntu::content::Type. - Content set: A set of unique content items. Can be considered a content item itself, e.g., in the case of playlists. - Content owner: The unique owner of a content item. A content item has to be owned by exactly one app. \sa com::ubuntu::content::Peer - Content store: A container (think of it as a top-level folder in the filesystem) that contains content items of a certain type. Different stores exist for different scopes, where scope refers to either system-wide, user-wide or app-specific storage locations. \sa com::ubuntu::content::Store, com::ubuntu::content::Scope - Content transfer: Transferring content item/s to and from a source or destination. A transfer is uniquely defined by: * The content source * The content destination * The transfer direction, either import or export * The set of items that should be exchanged \sa com::ubuntu::content::Transfer, com::ubuntu::content::Hub::create_import_for_type_from_peer - Content picking: Operation that allows a user to select content for subsequent import from a content source (e.g., an application). The content source is responsible for providing a UI to the user. Architectural Overview ---------------------- The architecture enforces complete application isolation, both in terms of content separation, sandboxing/confinement and in terms of the application lifecycle. As we cannot assume that two apps that want to exchange content are running at the same time, a system-level component needs to mediate and control the content exchange operation, making sure that neither app instance assumes the existence of the other one. We refer to this component as the content hub. \sa com::ubuntu::content::Hub Example usage - Importing Pictures ---------------------------------- \snippet acceptance-tests/app_hub_communication_transfer.cpp Importing pictures content-hub-0.1+16.04.20160309/doc/qml/0000755000015600001650000000000012670026644017512 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/doc/qml/ubuntu-content-hub.qdocconf.in0000644000015600001650000000303212670026423025374 0ustar pbuserpbgroup00000000000000project = Ubuntu Content QML API description = Ubuntu Content API # QDoc 5.2 will only process these if they're relative paths sourcedirs = ../../../doc/qml/pages ../../../import exampledirs = ../../../examples/ sources.fileextensions = "*.qdoc *.qml *.cpp" headers.fileextensions = "*.h" examples.fileextensions = "*.js *.qml" examples.imageextensions = "*.png *.jpeg *.jpg" # But... QDoc 5.2 will also only process this if it's an absolute path excludefiles = @CMAKE_SOURCE_DIR@/import/Ubuntu/Content/ResponsiveGridView.qml outputdir = html outputformat = HTML outputprefixes = QML outputprefixes.QML = qml- HTML.templatedir = ../../../doc/ HTML.nobreadcrumbs = "true" HTML.stylesheets = \ css/reset.css \ css/qtquick.css \ css/base.css \ css/scratch.css HTML.headerstyles = \ "\n" \ "\n" \ "\n" \ "\n" HTML.postheader = \ "
\n" \ "
\n" HTML.footer = \ "
\n" \ "
\n" \ "\n" content-hub-0.1+16.04.20160309/doc/qml/css/0000755000015600001650000000000012670026644020302 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/doc/qml/css/base.css0000644000015600001650000002706712670026423021735 0ustar pbuserpbgroup00000000000000/** * Ubuntu Developer base stylesheet * * A base stylesheet containing site-wide styles * * @project Ubuntu Developer * @version 1.0 * @author Canonical Web Team: Steve Edwards * @copyright 2011 Canonical Ltd. */ /** * @section Global */ body { font-family: 'Ubuntu', 'Ubuntu Beta', UbuntuBeta, Ubuntu, 'Bitstream Vera Sans', 'DejaVu Sans', Tahoma, sans-serif; font-size: 13px; line-height: 1.4; color: #333; } a { color: #dd4814; text-decoration: none; outline: 0; } p, dl { margin-bottom: 10px; } strong { font-weight: bold; } em { font-style: italic; } code{ padding: 10px; font-family: 'Ubuntu Mono', 'Consolas', 'Monaco', 'DejaVu Sans Mono', Courier, monospace; background-color: #fdf6f2; display: block; margin-bottom: 10px; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } h1 { font-size: 36px; line-height: 1.1; margin-bottom: 20px; } article h1, h2 { font-size: 24px; line-height: 1.2; margin-bottom: 14px; } h3 { font-size: 16px; line-height: 1.3; margin-bottom: 8px; } h4 { font-weight: bold; } time { color:#999; } /** * @section Structure */ .header-login, .header-navigation div, .header-content div { margin: 0 auto; width: 940px; } .header-content h1{ background-color:#ffffff; display:inline-block; } .header-content h2{ background-color:#ffffff; display:table; } .header-login ul { margin: 4px 0; float: right; } .header-login li { margin-right: 10px; float: left; } .header-login a { color: #333; } .header-navigation { border-top: 2px solid #dd4814; border-bottom: 2px solid #dd4814; background-color: #fff; height: 54px; clear: right; overflow: hidden; } .header-navigation nav ul { border-right: 1px solid #dd4814; float: right; } .header-navigation nav li { border-left: 1px solid #dd4814; float: left; height: 54px; } .header-navigation nav a { padding: 18px 14px 0; font-size: 14px; display: block; height: 36px; } .header-navigation nav a:hover { background-color: #fcece7; } .header-navigation nav .current_page_item a, .header-navigation nav .current_page_parent a, .header-navigation nav .current_page_ancestor a { background-color: #dd4814; color: #fff; } .header-navigation input { margin: 12px 10px 0 10px; padding: 5px; border-top: 1px solid #a1a1a1; border-right: 1px solid #e0e0e0; border-bottom: 1px solid #fff; border-left: 1px solid #e0e0e0; width: 90px; font-style: italic; color: #ccc; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; -moz-box-shadow: inset 0 1px 1px #e0e0e0; -webkit-box-shadow: inset 0 1px 1px #e0e0e0; box-shadow: inset 0 1px 1px #e0e0e0; } .header-navigation h2 { margin: 18px 0 0 6px; text-transform: lowercase; font-size: 22px; color: #dd4814; float: left; } .header-navigation .logo-ubuntu { margin-top: 12px; float: left; } .header-content .header-navigation-secondary { margin-bottom: 40px; padding: 0; position: relative; z-index: 2; } .header-navigation-secondary div { padding: 0; border: 2px solid #dd4814; -moz-border-radius: 0px 0px 4px 4px; -webkit-border-radius: 0px 0px 4px 4px; border-radius: 0px 0px 4px 4px; background: #fff; border-top: 0px; width: 936px; } .header-navigation-secondary nav li { float: left; } .header-navigation-secondary nav li a { color: #333; display: block; height: 25px; padding: 8px 8px 0; } .header-navigation-secondary nav li:hover, .header-navigation-secondary nav .current_page_item a { background: url("../img/sec-nav-hover.gif"); } .header-content { padding-bottom: 30px; border-bottom: 1px solid #e0e0e0; -moz-box-shadow: 0 1px 3px #e0e0e0; -webkit-box-shadow: 0 1px 3px #e0e0e0; box-shadow: 0 1px 3px #e0e0e0; margin-bottom: 3px; position: relative; overflow: hidden; } footer { padding: 10px 10px 40px 10px; position: relative; -moz-border-radius: 0 0 4px 4px; -webkit-border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px; font-size: 12px; background: url("../img/background-footer.png") repeat scroll 0 0 #f7f6f5; } footer div { margin: 0 auto; padding: 0 10px; width: 940px; } footer a { color: #000; } footer nav ul { margin: 10px 17px 30px 0; width: 172px; display: inline-block; vertical-align: top; height: auto; zoom: 1; *display: inline; } footer nav ul.last { margin-right: 0; } footer nav li { margin-bottom: 8px; } footer nav li:first-child { font-weight: bold; } footer p { margin-bottom: 0; } #content { padding-top: 35px; } .arrow-nav { display: none; position: absolute; top: -1px; z-index: 3; } .shadow { margin: 30px 0 3px 0; border-bottom: 1px solid #e0e0e0; -moz-box-shadow: 0 2px 3px #e0e0e0; -webkit-box-shadow: 0 2px 3px #e0e0e0; box-shadow: 0 2px 3px #e0e0e0; height: 3px; } /** * @section Site-wide */ #content h2{ font-size:24px; } .box-orange { padding: 10px; border: 3px solid #dd4814; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } .box-orange .link-action-small { float: right; margin: 0 0 0 20px; } .link-bug { margin-left: 10px; color: #999; } .link-action { float: left; margin-bottom: 20px; padding: 8px 12px; display: block; background-color: #dd4814; color: #fff; -moz-border-radius: 20px; -webkit-border-radius: 20px; border-radius: 20px; font-size: 16px; line-height: 1.3; border-top: 3px solid #e6633a; border-bottom: 3px solid #c03d14; } .link-action2 { float: left; display: block; color: #fff; font-size: 16px; line-height: 1.3; } .link-action2 span{ display:block; float:left; } .link-action2 .cta-left{ background:url(../img/button-cta-left.png) no-repeat; width:22px; height:48px; } .link-action2 .cta-center{ background:url(../img/button-cta-slice.png) repeat-x; line-height:45px; height:48px; } .link-action2 .cta-right{ background:url(../img/button-cta-right.png) no-repeat; width:22px; height:48px; } .link-action-small { float: left; display: block; color: #fff; font-size: 16px; } .link-action-small span{ display:block; float:left; height:42px; } .link-action-small .cta-left{ background:url(../img/button-cta-left-small.png) no-repeat; width:19px; } .link-action-small .cta-center{ background:url(../img/button-cta-slice-small.png) repeat-x; line-height:42px; } .link-action-small .cta-right{ background:url(../img/button-cta-right-small.png) no-repeat; width:19px; } .link-action:active { position: relative; top: 1px; } .link-action2:active { position: relative; top: 1px; } .link-action-small:active { position: relative; top: 1px; } .list-bullets li { margin-bottom: 10px; list-style: disc; list-style-position: inside; } .box { margin-bottom: 30px; padding: 15px; border: 1px solid #aea79f; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } .box-padded { margin-bottom: 30px; padding: 5px; border: 2px solid #aea79f; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; background: url("../img/pattern-featured.gif") repeat scroll 0 0 #ebe9e7; overflow: hidden; } .box-padded h3 { margin: 5px 0 10px 5px; } .box-padded div { padding: 10px; border: 1px solid #aea79f; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; background-color: #fff; overflow: hidden; } .box-padded li { padding: 0 10px; float: left; width: 211px; border-right: 1px dotted #aea79f; } .box-padded li.first { padding: 0; margin-bottom: 0; } .box-padded li.last { border: 0; width: 217px; } .box-padded img { margin: 0 10px 50px 0; float: left; -moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; } .box-clear { margin-bottom: 40px; } .box-clear .grid-4.first { margin-right: 15px; padding-right: 15px; } .box-clear .grid-4 { margin-left: 0; margin-right: 10px; padding-right: 10px; width: 298px; } .box-clear time { display: block; border-bottom: 1px dotted #aea79f; padding-bottom: 10px; margin-bottom: 10px; } .box-clear div.first { border-right: 1px dotted #aea79f; } .box-clear a { display: block; } .box-clear .rss { background: url("../img/rss.jpg") no-repeat scroll 0 center; padding-left: 20px; } .box-clear .location { display: block; margin-bottom: 1px; } .box-clear .last { margin: 0; padding-right: 0; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; width: 293px; } /* Widgets */ .ui-state-focus { outline: none; } .ui-accordion { border-bottom: 1px dotted #aea79f; } .ui-accordion a { display: block; } .ui-accordion h3 { margin-bottom: 0; border-top: 1px dotted #aea79f; position: relative; font-size: 13px; font-weight: bold; } .ui-accordion h3 a { padding: 10px 0; color: #333; } .ui-accordion h4 { margin-bottom: 5px; } .ui-accordion div fieldset { padding-bottom: 5px; } .ui-accordion div li, .ui-accordion div input { margin-bottom: 10px; } .ui-accordion .ui-icon { position: absolute; top: 15px; right: 0; display: block; width: 8px; height: 8px; background: url("../img/icon-accordion-inactive.png") 0 0 no-repeat transparent; } .ui-accordion .ui-state-active .ui-icon { background-image: url("../img/icon-accordion-active.png"); } .ui-accordion .current_page_item a { color: #333; } .container-tweet { -moz-border-radius: 4px 4px 4px 4px; -webkit-border-radius: 4px 4px 4px 4px; border-radius: 4px 4px 4px 4px; padding: 10px 10px 10px; background-color: #f7f7f7; } .container-tweet .tweet-follow { margin-top: 10px; margin-bottom: -10px; padding-left: 55px; padding-bottom: 6px; background: url("../img/tweet-follow.png") 0 5px no-repeat; display: block; } .container-tweet .tweet-follow span { font-size: 16px; font-weight: bold; line-height: 1.2; display: block; } .tweet a { display: inline; } .tweet .tweet_text { padding: 10px; background-color: #fff; -moz-border-radius: 4px 4px 4px 4px; -webkit-border-radius: 4px 4px 4px 4px; border-radius: 4px 4px 4px 4px; border: 1px solid #dd4814; font-size: 16px; display: block; clear: both; } .tweet.tweet-small .tweet_text { font-size: inherit; } .tweet .tweet_text a { color: #333; } .tweet .tweet_time, .tweet .tweet_user_and_time { padding: 15px 0 10px 0; position: relative; top: -2px; background: url("../img/tweet-arrow.png") no-repeat; display: block; } .tweet .tweet_odd .tweet_time, .tweet .tweet_odd .tweet_user_and_time { background-position: right 0; float: right; } .tweet .tweet_even .tweet_time, .tweet .tweet_even .tweet_user_and_time { background-position: left 0; float: left; } /* Search */ #content .list-search li { list-style-type:none; border:0px; margin-bottom: 15px; padding-top: 15px; } /* Blog */ .blog-article #nav-single { margin-top: 30px; margin-bottom: 30px; } .blog-article #nav-single .nav-next { float: right; } .blog-article article header .entry-meta { margin-bottom: 20px; } .blog-article article .entry-meta { color: #999; } .blog-article #respond form input[type="submit"] { float: left; cursor: pointer; margin-bottom: 20px; padding: 8px 12px; display: block; background-color: #dd4814; color: #fff; -moz-border-radius: 20px; -webkit-border-radius: 20px; border-radius: 20px; font-size: 16px; line-height: 1.3; border-top: 3px solid #e6633a; border-left: 3px solid #e6633a; border-right: 3px solid #e6633a; border-bottom: 3px solid #c03d14; } .blog-article #respond form input[type="submit"]:active { position: relative; top: 1px; } .alignnone{ float:left; margin:10px 20px 10px 0; } .alignleft{ float:left; margin:10px 20px 10px 0; } .alignright{ float:right; margin:10px 0 10px 20px; } .aligncenter{ float:left; margin:10px 20px 10px 0; } .entry-content h2, .entry-content h3{ margin-top:20px; } .entry-content ul li{ list-style-type: circle; margin-left:16px; } .entry-content hr{ border:none; border-top: 1px dotted #AEA79F; } content-hub-0.1+16.04.20160309/doc/qml/css/scratch.css0000644000015600001650000000137412670026423022443 0ustar pbuserpbgroup00000000000000body { margin: 0; } div.toc ul { padding: 0; } div.toc li { margin-bottom: 3px; } h1.title { font-size: 36px; line-height: 1.1; font-weight: normal; } h0, h2 { font-size: 24px; line-height: 1.2; margin: 14px 0; font-weight: normal; display: block; } a:hover { color: #dd4814; text-decoration: underline; outline: 0; } table, pre { border-radius: 0; } .annotated td { padding: 0.8em 1em 0.3em; } .wrapper { width: 940px; margin: 0 auto; } .main-content { width: 668px; position: relative; left: 270px; } .title { margin-left: -270px; margin-top: 30px; margin-bottom: 50px; } .toc { margin-left: -270px; font-size: 100%; margin-bottom: 40px; padding: 0; z-index: 2; position: absolute; top: 100px; width: 250px; } content-hub-0.1+16.04.20160309/doc/qml/css/reset.css0000644000015600001650000000153312670026423022133 0ustar pbuserpbgroup00000000000000/* Copyright (c) 2010, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.com/yui/license.html version: 3.3.0 build: 3167 */ html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}content-hub-0.1+16.04.20160309/doc/qml/css/qtquick.css0000644000015600001650000003175112670026423022477 0ustar pbuserpbgroup00000000000000@media screen { /* basic elements */ html { color: #000000; background: #FFFFFF; } table { border-collapse: collapse; border-spacing: 0; } fieldset, img { border: 0; max-width:100%; } address, caption, cite, code, dfn, em, strong, th, var, optgroup { font-style: inherit; font-weight: inherit; } del, ins { text-decoration: none; } ol li { list-style: decimal; } ul li { list-style: none; } caption, th { text-align: left; } h1.title { font-weight: bold; font-size: 150%; } h0 { font-weight: bold; font-size: 130%; } h1, h2, h3, h4, h5, h6 { font-size: 100%; } q:before, q:after { content: ''; } abbr, acronym { border: 0; font-variant: normal; } sup, sub { vertical-align: baseline; } tt, .qmlreadonly span, .qmldefault span { word-spacing:0.5em; } legend { color: #000000; } strong { font-weight: bold; } em { font-style: italic; } body { margin: 0 1.5em 0 1.5em; font-family: ubuntu; line-height: normal } a { color: #00732F; text-decoration: none; } hr { background-color: #E6E6E6; border: 1px solid #E6E6E6; height: 1px; width: 100%; text-align: left; margin: 1.5em 0 1.5em 0; } pre { border: 1px solid #DDDDDD; -moz-border-radius: 0.7em 0.7em 0.7em 0.7em; -webkit-border-radius: 0.7em 0.7em 0.7em 0.7em; border-radius: 0.7em 0.7em 0.7em 0.7em; padding: 1em 1em 1em 1em; overflow-x: auto; } table, pre { -moz-border-radius: 0.7em 0.7em 0.7em 0.7em; -webkit-border-radius: 0.7em 0.7em 0.7em 0.7em; border-radius: 0.7em 0.7em 0.7em 0.7em; background-color: #F6F6F6; border: 1px solid #E6E6E6; border-collapse: separate; margin-bottom: 2.5em; } pre { font-size: 90%; display: block; overflow:hidden; } thead { margin-top: 0.5em; font-weight: bold } th { padding: 0.5em 1.5em 0.5em 1em; background-color: #E1E1E1; border-left: 1px solid #E6E6E6; } td { padding: 0.25em 1.5em 0.25em 1em; } td.rightAlign { padding: 0.25em 0.5em 0.25em 1em; } table tr.odd { border-left: 1px solid #E6E6E6; background-color: #F6F6F6; color: black; } table tr.even { border-left: 1px solid #E6E6E6; background-color: #ffffff; color: #202020; } div.float-left { float: left; margin-right: 2em } div.float-right { float: right; margin-left: 2em } span.comment { color: #008B00; } span.string, span.char { color: #000084; } span.number { color: #a46200; } span.operator { color: #202020; } span.keyword { color: #840000; } span.name { color: black } span.type { font-weight: bold } span.type a:visited { color: #0F5300; } span.preprocessor { color: #404040 } /* end basic elements */ /* font style elements */ .heading { font-weight: bold; font-size: 125%; } .subtitle { font-size: 110% } .small-subtitle { font-size: 100% } .red { color:red; } /* end font style elements */ /* global settings*/ .header, .footer { display: block; clear: both; overflow: hidden; } /* end global settings*/ /* header elements */ .header .qtref { color: #00732F; font-weight: bold; font-size: 130%; } .header .content { margin-left: 5px; margin-top: 5px; margin-bottom: 0.5em; } .header .breadcrumb { font-size: 90%; padding: 0.5em 0 0.5em 1em; margin: 0; background-color: #fafafa; height: 1.35em; border-bottom: 1px solid #d1d1d1; } .header .breadcrumb ul { margin: 0; padding: 0; } .header .content { word-wrap: break-word; } .header .breadcrumb ul li { float: left; background: url(../images/breadcrumb.png) no-repeat 0 3px; padding-left: 1.5em; margin-left: 1.5em; } .header .breadcrumb ul li.last { font-weight: normal; } .header .breadcrumb ul li a { color: #00732F; } .header .breadcrumb ul li.first { background-image: none; padding-left: 0; margin-left: 0; } .header .content ol li { background: none; margin-bottom: 1.0em; margin-left: 1.2em; padding-left: 0 } .header .content li { background: url(../images/bullet_sq.png) no-repeat 0 5px; margin-bottom: 1em; padding-left: 1.2em; } /* end header elements */ /* content elements */ .content h1 { font-weight: bold; font-size: 130% } .content h2 { font-weight: bold; font-size: 120%; width: 100%; } .content h3 { font-weight: bold; font-size: 110%; width: 100%; } .content table p { margin: 0 } .content ul { padding-left: 2.5em; } .content li { padding-top: 0.25em; padding-bottom: 0.25em; } .content ul img { vertical-align: middle; } .content a:visited { color: #4c0033; text-decoration: none; } .content a:visited:hover { color: #4c0033; text-decoration: underline; } a:hover { color: #4c0033; text-decoration: underline; } descr p a { text-decoration: underline; } .descr p a:visited { text-decoration: underline; } .alphaChar{ width:95%; background-color:#F6F6F6; border:1px solid #E6E6E6; -moz-border-radius: 7px 7px 7px 7px; border-radius: 7px 7px 7px 7px; -webkit-border-radius: 7px 7px 7px 7px; font-size:12pt; padding-left:10px; margin-top:10px; margin-bottom:10px; } .flowList{ /*vertical-align:top;*/ /*margin:20px auto;*/ column-count:3; -webkit-column-count:3; -moz-column-count:3; /* column-width:100%; -webkit-column-width:200px; -col-column-width:200px; */ column-gap:41px; -webkit-column-gap:41px; -moz-column-gap:41px; column-rule: 1px dashed #ccc; -webkit-column-rule: 1px dashed #ccc; -moz-column-rule: 1px dashed #ccc; } .flowList dl{ } .flowList dd{ /*display:inline-block;*/ margin-left:10px; min-width:250px; line-height: 1.5; min-width:100%; min-height:15px; } .flowList dd a{ } .mainContent { padding-left:5px; } .content .flowList p{ padding:0px; } .content .alignedsummary { margin: 15px; } .qmltype { text-align: center; font-size: 120%; } .qmlreadonly { padding-left: 5px; float: right; color: #254117; } .qmldefault { padding-left: 5px; float: right; color: red; } .qmldoc { } .generic .alphaChar{ margin-top:5px; } .generic .odd .alphaChar{ background-color: #F6F6F6; } .generic .even .alphaChar{ background-color: #FFFFFF; } .memItemRight{ padding: 0.25em 1.5em 0.25em 0; } .highlightedCode { margin: 1.0em; } .annotated td { padding: 0.25em 0.5em 0.25em 0.5em; } .toc { font-size: 80% } .header .content .toc ul { padding-left: 0px; } .content .toc h3 { border-bottom: 0px; margin-top: 0px; } .content .toc h3 a:hover { color: #00732F; text-decoration: none; } .content .toc .level2 { margin-left: 1.5em; } .content .toc .level3 { margin-left: 3.0em; } .content ul li { background: url(../images/bullet_sq.png) no-repeat 0 0.7em; padding-left: 1em } .content .toc li { background: url(../images/bullet_dn.png) no-repeat 0 5px; padding-left: 1em } .relpage { -moz-border-radius: 7px 7px 7px 7px; -webkit-border-radius: 7px 7px 7px 7px; border-radius: 7px 7px 7px 7px; border: 1px solid #DDDDDD; padding: 25px 25px; clear: both; } .relpage ul { float: none; padding: 1.5em; } h3.fn, span.fn { -moz-border-radius:7px 7px 7px 7px; -webkit-border-radius:7px 7px 7px 7px; border-radius:7px 7px 7px 7px; background-color: #F6F6F6; border-width: 1px; border-style: solid; border-color: #E6E6E6; font-weight: bold; word-spacing:3px; padding:3px 5px; } .functionIndex { font-size:12pt; word-spacing:10px; margin-bottom:10px; background-color: #F6F6F6; border-width: 1px; border-style: solid; border-color: #E6E6E6; -moz-border-radius: 7px 7px 7px 7px; -webkit-border-radius: 7px 7px 7px 7px; border-radius: 7px 7px 7px 7px; width:100%; } .centerAlign { text-align:center; } .rightAlign { text-align:right; } .leftAlign { text-align:left; } .topAlign{ vertical-align:top } .functionIndex a{ display:inline-block; } /* end content elements */ /* footer elements */ .footer { color: #393735; font-size: 0.75em; text-align: center; padding-top: 1.5em; padding-bottom: 1em; background-color: #E6E7E8; margin: 0; } .footer p { margin: 0.25em } .small { font-size: 0.5em; } /* end footer elements */ .item { float: left; position: relative; width: 100%; overflow: hidden; } .item .primary { margin-right: 220px; position: relative; } .item hr { margin-left: -220px; } .item .secondary { float: right; width: 200px; position: relative; } .item .cols { clear: both; display: block; } .item .cols .col { float: left; margin-left: 1.5%; } .item .cols .col.first { margin-left: 0; } .item .cols.two .col { width: 45%; } .item .box { margin: 0 0 10px 0; } .item .box h3 { margin: 0 0 10px 0; } .cols.unclear { clear:none; } } /* end of screen media */ /* start of print media */ @media print { input, textarea, .header, .footer, .toolbar, .feedback, .wrapper .hd, .wrapper .bd .sidebar, .wrapper .ft, #feedbackBox, #blurpage, .toc, .breadcrumb, .toolbar, .floatingResult { display: none; background: none; } .content { background: none; display: block; width: 100%; margin: 0; float: none; } } /* end of print media */ /* modify the TOC layouts */ div.toc ul { padding-left: 20px; } div.toc li { padding-left: 4px; } /* Remove the border around images*/ a img { border:none; } /*Add styling to the front pages*/ .threecolumn_area { padding-top: 20px; padding-bottom: 20px; } .threecolumn_piece { display: inline-block; margin-left: 78px; margin-top: 8px; padding: 0; vertical-align: top; width: 25.5%; } div.threecolumn_piece ul { list-style-type: none; padding-left: 0px; margin-top: 2px; } div.threecolumn_piece p { margin-bottom: 7px; color: #5C626E; text-decoration: none; font-weight: bold; } div.threecolumn_piece li { padding-left: 0px; margin-bottom: 5px; } div.threecolumn_piece a { font-weight: normal; } /* Add style to guide page*/ .fourcolumn_area { padding-top: 20px; padding-bottom: 20px; } .fourcolumn_piece { display: inline-block; margin-left: 35px; margin-top: 8px; padding: 0; vertical-align: top; width: 21.3%; } div.fourcolumn_piece ul { list-style-type: none; padding-left: 0px; margin-top: 2px; } div.fourcolumn_piece p { margin-bottom: 7px; color: #40444D; text-decoration: none; font-weight: bold; } div.fourcolumn_piece li { padding-left: 0px; margin-bottom: 5px; } div.fourcolumn_piece a { font-weight: normal; } content-hub-0.1+16.04.20160309/doc/qml/CMakeLists.txt0000644000015600001650000000141012670026423022241 0ustar pbuserpbgroup00000000000000# add a target to generate API documentation with qdoc FIND_PROGRAM(QDOC_EXECUTABLE qdoc) if(QDOC_EXECUTABLE) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/ubuntu-content-hub.qdocconf.in ${CMAKE_CURRENT_BINARY_DIR}/ubuntu-content-hub.qdocconf @ONLY) add_custom_target(qmldoc ${QDOC_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/ubuntu-content-hub.qdocconf WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} COMMENT "Generating QML API documentation with qdoc" VERBATIM ) # copy stylesheet files into build directory for shadow builds file(COPY "${CMAKE_CURRENT_SOURCE_DIR}/css" DESTINATION ${CMAKE_CURRENT_BINARY_DIR} ) install( DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html/ DESTINATION ${CMAKE_INSTALL_DOCDIR}/qml/html ) add_dependencies(doc qmldoc) endif(QDOC_EXECUTABLE) content-hub-0.1+16.04.20160309/doc/qml/pages/0000755000015600001650000000000012670026644020611 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/doc/qml/pages/moduledef.qdoc0000644000015600001650000000004612670026423023420 0ustar pbuserpbgroup00000000000000/*! \qmlmodule Ubuntu.Content 1.1 */ content-hub-0.1+16.04.20160309/doc/qml/pages/mainpage.qdoc0000644000015600001650000001104112670026423023232 0ustar pbuserpbgroup00000000000000/*! \page index.html overview \title Ubuntu Content API \contentspage {Ubuntu Content API} {Contents} \part Content Management & Exchange \chapter Introduction Unity and the overall Ubuntu experience put heavy emphasis on the notion of content, with Unity's dash offering streamlined access to arbitrary content, both local to the device or online. More to this, Unity's dash is the primary way of surfacing content on mobile form factors without the need to access individual applications and their respective content silos. The content-hub deals with application-specific content management and implements an architecture that allows an app to define its own content silo, exchange content with other applications/the system, and a way to provide the user with content picking functionality. \section1 Definitions To ease conversations, we start over with a set of definitions: \list \li \b {Content item}: A content item is an entity that consists of meta-data and data. E.g., an image is a content item, where the actual pixels are the data, and information like size, image format, bit depth, location etc. is considered meta data. See also \l ContentItem. \li \b {Content types}: A set of well-known content types. E.g., images or music files. See also \l {ContentType} \li \b {Content set}: A set of unique content items. Can be considered a content item itself, e.g., in the case of playlists. \li \b {Content owner}: The unique owner of a content item. A content item has to be owned by exactly one app. See also \l {ContentPeer} \li \b {Content store}: A container (think of it as a top-level folder in the filesystem) that contains content items of a certain type. Different stores exist for different scopes, where scope refers to either system-wide, user-wide or app-specific storage locations. See also \l {ContentStore} \li \b {Content transfer}: Transferring content item/s to and from a source or destination. A transfer is uniquely defined by a source, destination, direction (import or export), and a set of items that should be exchanged. See also \l {ContentTransfer} \li \b {Content picking}: Operation that allows a user to select content for subsequent import from a content source (e.g., an application). The content source is responsible for providing a UI to the user. \endlist \section1 Architectural Overview The architecture enforces complete application isolation, both in terms of content separation, sandboxing/confinement and in terms of the application lifecycle. As we cannot assume that two apps that want to exchange content are running at the same time, a system-level component needs to mediate and control the content exchange operation, making sure that neither app instance assumes the existence of the other one. We refer to this component as the content hub. \sa {ContentHub} \section1 Example usage - Importing Pictures \qml import QtQuick 2.0 import Ubuntu.Components 1.1 import Ubuntu.Content 1.1 Rectangle { id: root property list importItems property var activeTransfer ContentPeer { id: picSourceSingle contentType: ContentType.Pictures handler: ContentHandler.Source selectionType: ContentTransfer.Single } ContentPeer { id: picSourceMulti contentType: ContentType.Pictures handler: ContentHandler.Source selectionType: ContentTransfer.Multiple } Row { Button { text: "Import single item" onClicked: { root.activeTransfer = picSourceSingle.request() } } Button { text: "Import multiple items" onClicked: { root.activeTransfer = picSourceMulti.request() } } } ContentTransferHint { id: transferHint anchors.fill: parent activeTransfer: root.activeTransfer } Connections { target: root.activeTransfer onStateChanged: { if (root.activeTransfer.state === ContentTransfer.Charged) importItems = root.activeTransfer.items; } } } \endqml \part General Topics \list \li \l {ContentHub} \li \l {ContentPeer} \li \l {ContentPeerModel} \li \l {ContentPeerPicker} \li \l {ContentStore} \li \l {ContentTransfer} \li \l {ContentTransferHint} \li \l {ContentType} \endlist \part Reporting Bugs If you find any problems with the or this documentation, please file a bug in Ubuntu Content API \l {https://bugs.launchpad.net/content-hub} {Launchpad page} \part Components Available through: \code import Ubuntu.Content 1.1 \endcode */ content-hub-0.1+16.04.20160309/doc/extra.css0000644000015600001650000000127112670026423020552 0ustar pbuserpbgroup00000000000000body, table, div, p, dl { font: 400 14px/19px Ubuntu,Arial,sans-serif; } #projectname { font: 300% Ubuntu,Arial,sans-serif; margin: 0px; padding: 2px 0px; } #projectbrief { font: 120% Ubuntu,Arial,sans-serif; margin: 0px; padding: 0px; } #projectnumber { font: 50% Ubuntu,Arial,sans-serif; margin: 0px; padding: 0px; } div.toc li { background: url("bdwn.png") no-repeat scroll 0 5px transparent; font: 10px/1.2 Ubuntu,Arial,sans-serif; margin-top: 5px; padding-left: 10px; padding-top: 2px; } div.toc h3 { font: bold 12px/1.2 Ubuntu,Arial,FreeSans,sans-serif; color: #E24106; border-bottom: 0 none; margin: 0; } content-hub-0.1+16.04.20160309/doc/CMakeLists.txt0000644000015600001650000000232212670026423021453 0ustar pbuserpbgroup00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss add_custom_target(doc ALL) find_package(Doxygen) if(DOXYGEN_FOUND) configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY) add_custom_target(cppdoc ALL ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} COMMENT "Generating API documentation with Doxygen" VERBATIM) install( DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html DESTINATION ${CMAKE_INSTALL_DOCDIR}/cpp) add_dependencies(doc cppdoc) endif(DOXYGEN_FOUND) add_subdirectory(qml) content-hub-0.1+16.04.20160309/doc/Doxyfile.in0000644000015600001650000023450112670026423021034 0ustar pbuserpbgroup00000000000000# Doxyfile 1.8.3.1 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. # # All text after a hash (#) is considered a comment and will be ignored. # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" "). #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or sequence of words) that should # identify the project. Note that if you do not use Doxywizard you need # to put quotes around the project name if it contains spaces. PROJECT_NAME = "Content Hub" # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = @CONTENT_HUB_VERSION_MAJOR@.@CONTENT_HUB_VERSION_MINOR@.@CONTENT_HUB_VERSION_PATCH@ # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer # a quick idea about the purpose of the project. Keep the description short. PROJECT_BRIEF = "A session-wide content-exchange service" # With the PROJECT_LOGO tag one can specify an logo or icon that is # included in the documentation. The maximum height of the logo should not # exceed 55 pixels and the maximum width should not exceed 200 pixels. # Doxygen will copy the logo to the output directory. PROJECT_LOGO = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, # Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = YES # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. Note that you specify absolute paths here, but also # relative paths, which will be relative from the directory where doxygen is # started. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful if your file system # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = NO # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 4 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding # "class=itcl::class" will allow you to use the command class in the # itcl::class meaning. TCL_SUBST = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = NO # Doxygen selects the parser to use depending on the extension of the files it # parses. With this tag you can assign which parser to use for a given # extension. Doxygen has a built-in mapping, but you can override or extend it # using this tag. The format is ext=language, where ext is a file extension, # and language is one of the parsers supported by doxygen: IDL, Java, # Javascript, CSharp, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, # C++. For instance to make doxygen treat .inc files as Fortran files (default # is PHP), and .f files as C (default is Fortran), use: inc=Fortran f=C. Note # that for custom extensions you also need to set FILE_PATTERNS otherwise the # files are not read by doxygen. EXTENSION_MAPPING = # If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all # comments according to the Markdown format, which allows for more readable # documentation. See http://daringfireball.net/projects/markdown/ for details. # The output of markdown processing is further processed by doxygen, so you # can mix doxygen, HTML, and XML commands with Markdown formatting. # Disable only in case of backward compatibilities issues. MARKDOWN_SUPPORT = YES # When enabled doxygen tries to link words that correspond to documented classes, # or namespaces to their corresponding documentation. Such a link can be # prevented in individual cases by by putting a % sign in front of the word or # globally by setting AUTOLINK_SUPPORT to NO. AUTOLINK_SUPPORT = YES # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also makes the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = YES # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate # getter and setter methods for a property. Setting this option to YES (the # default) will make doxygen replace the get and set methods by a property in # the documentation. This will only work if the methods are indeed getting or # setting a simple type. If this is not the case, or you want to show the # methods anyway, you should set this option to NO. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and # unions are shown inside the group in which they are included (e.g. using # @ingroup) instead of on a separate page (for HTML and Man pages) or # section (for LaTeX and RTF). INLINE_GROUPED_CLASSES = NO # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and # unions with only public data fields will be shown inline in the documentation # of the scope in which they are defined (i.e. file, namespace, or group # documentation), provided this scope is documented. If set to NO (the default), # structs, classes, and unions are shown on a separate page (for HTML and Man # pages) or section (for LaTeX and RTF). INLINE_SIMPLE_STRUCTS = NO # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to # determine which symbols to keep in memory and which to flush to disk. # When the cache is full, less often used symbols will be written to disk. # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time # causing a significant performance penalty. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will roughly double the # memory usage. The cache size is given by this formula: # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols. SYMBOL_CACHE_SIZE = 0 # Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be # set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given # their name and scope. Since this can be an expensive process and often the # same symbol appear multiple times in the code, doxygen keeps a cache of # pre-resolved symbols. If the cache is too small doxygen will become slower. # If the cache is too large, memory is wasted. The cache size is given by this # formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols. LOOKUP_CACHE_SIZE = 0 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = YES # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal # scope will be included in the documentation. EXTRACT_PACKAGE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespaces are hidden. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen # will list include files with double quotes in the documentation # rather than with sharp brackets. FORCE_LOCAL_INCLUDES = NO # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen # will sort the (brief and detailed) documentation of class members so that # constructors and destructors are listed first. If set to NO (the default) # the constructors will appear in the respective orders defined by # SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. # This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO # and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. SORT_MEMBERS_CTORS_1ST = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the # hierarchy of group names into alphabetical order. If set to NO (the default) # the group names will appear in their defined order. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to # do proper type resolution of all parameters of a function it will reject a # match between the prototype and the implementation of a member function even # if there is only one candidate or it is obvious which candidate to choose # by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen # will still accept a match between prototype and implementation in such cases. STRICT_PROTO_MATCHING = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if section-label ... \endif # and \cond section-label ... \endcond blocks. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or macro consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and macros in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # Set the SHOW_FILES tag to NO to disable the generation of the Files page. # This will remove the Files entry from the Quick Index and from the # Folder Tree View (if specified). The default is YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the # Namespaces page. # This will remove the Namespaces entry from the Quick Index # and from the Folder Tree View (if specified). The default is YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed # by doxygen. The layout file controls the global structure of the generated # output files in an output format independent way. To create the layout file # that represents doxygen's defaults, run doxygen with the -l option. # You can optionally specify a file name after the option, if omitted # DoxygenLayout.xml will be used as the name of the layout file. LAYOUT_FILE = # The CITE_BIB_FILES tag can be used to specify one or more bib files # containing the references data. This must be a list of .bib files. The # .bib extension is automatically appended if omitted. Using this command # requires the bibtex tool to be installed. See also # http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style # of the bibliography can be controlled using LATEX_BIB_STYLE. To use this # feature you need bibtex and perl available in the search path. Do not use # file names with spaces, bibtex cannot handle them. CITE_BIB_FILES = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # The WARN_NO_PARAMDOC option can be enabled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = @CMAKE_CURRENT_SOURCE_DIR@ @CMAKE_CURRENT_SOURCE_DIR@/../include # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh # *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py # *.f90 *.f *.for *.vhd *.vhdl FILE_PATTERNS = # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should be # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. # Note that relative paths are relative to the directory from which doxygen is # run. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = @CMAKE_CURRENT_SOURCE_DIR@/../tests # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = YES # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. # If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. # Doxygen will compare the file name with each pattern and apply the # filter if there is a match. # The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty or if # non of the patterns match the file name, INPUT_FILTER is applied. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file # pattern. A pattern will override the setting for FILTER_PATTERN (if any) # and it is also possible to disable source filtering for a specific pattern # using *.ext= (so without naming a filter). This option only has effect when # FILTER_SOURCE_FILES is enabled. FILTER_SOURCE_PATTERNS = # If the USE_MD_FILE_AS_MAINPAGE tag refers to the name of a markdown file that # is part of the input, its contents will be placed on the main page (index.html). # This can be useful if you have a project on for instance GitHub and want reuse # the introduction page also for the doxygen output. USE_MDFILE_AS_MAINPAGE = @CMAKE_CURRENT_SOURCE_DIR@/Mainpage.md #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C, C++ and Fortran comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = YES # If the REFERENCES_RELATION tag is set to YES # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = YES # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. # Otherwise they will link to the documentation. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = YES # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. Note that when using a custom header you are responsible # for the proper inclusion of any scripts and style sheets that doxygen # needs, which is dependent on the configuration options used. # It is advised to generate a default header using "doxygen -w html # header.html footer.html stylesheet.css YourConfigFile" and then modify # that header. Note that the header is subject to change so you typically # have to redo this when upgrading to a newer version of doxygen or when # changing the value of configuration settings such as GENERATE_TREEVIEW! HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If left blank doxygen will # generate a default style sheet. Note that it is recommended to use # HTML_EXTRA_STYLESHEET instead of this one, as it is more robust and this # tag will in the future become obsolete. HTML_STYLESHEET = # The HTML_EXTRA_STYLESHEET tag can be used to specify an additional # user-defined cascading style sheet that is included after the standard # style sheets created by doxygen. Using this option one can overrule # certain style aspects. This is preferred over using HTML_STYLESHEET # since it does not replace the standard style sheet and is therefor more # robust against future updates. Doxygen will copy the style sheet file to # the output directory. HTML_EXTRA_STYLESHEET = @CMAKE_CURRENT_SOURCE_DIR@/extra.css # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the HTML output directory. Note # that these files will be copied to the base HTML output directory. Use the # $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these # files. In the HTML_STYLESHEET file, use the file name only. Also note that # the files will be copied as-is; there are no commands or markers available. HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. # Doxygen will adjust the colors in the style sheet and background images # according to this color. Hue is specified as an angle on a colorwheel, # see http://en.wikipedia.org/wiki/Hue for more information. # For instance the value 0 represents red, 60 is yellow, 120 is green, # 180 is cyan, 240 is blue, 300 purple, and 360 is red again. # The allowed range is 0 to 359. HTML_COLORSTYLE_HUE = 220 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of # the colors in the HTML output. For a value of 0 the output will use # grayscales only. A value of 255 will produce the most vivid colors. HTML_COLORSTYLE_SAT = 100 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to # the luminance component of the colors in the HTML output. Values below # 100 gradually make the output lighter, whereas values above 100 make # the output darker. The value divided by 100 is the actual gamma applied, # so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, # and 100 does not change the gamma. HTML_COLORSTYLE_GAMMA = 80 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting # this to NO can help when comparing the output of multiple runs. HTML_TIMESTAMP = YES # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. HTML_DYNAMIC_SECTIONS = YES # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of # entries shown in the various tree structured indices initially; the user # can expand and collapse entries dynamically later on. Doxygen will expand # the tree to such a level that at most the specified number of entries are # visible (unless a fully collapsed tree already exceeds this amount). # So setting the number of entries 1 will produce a full collapsed tree by # default. 0 is a special value representing an infinite number of entries # and will result in a full expanded tree by default. HTML_INDEX_NUM_ENTRIES = 100 # If the GENERATE_DOCSET tag is set to YES, additional index files # will be generated that can be used as input for Apple's Xcode 3 # integrated development environment, introduced with OSX 10.5 (Leopard). # To create a documentation set, doxygen will generate a Makefile in the # HTML output directory. Running make will produce the docset in that # directory and running "make install" will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find # it at startup. # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html # for more information. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.doxygen.Project # When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely # identify the documentation publisher. This should be a reverse domain-name # style string, e.g. com.mycompany.MyDocSet.documentation. DOCSET_PUBLISHER_ID = org.doxygen.Publisher # The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING # is used to encode HtmlHelp index (hhk), content (hhc) and project file # content. CHM_INDEX_ENCODING = # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated # that can be used as input for Qt's qhelpgenerator to generate a # Qt Compressed Help (.qch) of the generated HTML documentation. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can # be used to specify the file name of the resulting .qch file. # The path specified is relative to the HTML output folder. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#namespace QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#virtual-folders QHP_VIRTUAL_FOLDER = doc # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to # add. For more information please see # http://doc.trolltech.com/qthelpproject.html#custom-filters QHP_CUST_FILTER_NAME = # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see # # Qt Help Project / Custom Filters. QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's # filter section matches. # # Qt Help Project / Filter Attributes. QHP_SECT_FILTER_ATTRS = # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can # be used to specify the location of Qt's qhelpgenerator. # If non-empty doxygen will try to run qhelpgenerator on the generated # .qhp file. QHG_LOCATION = # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files # will be generated, which together with the HTML files, form an Eclipse help # plugin. To install this plugin and make it available under the help contents # menu in Eclipse, the contents of the directory containing the HTML and XML # files needs to be copied into the plugins directory of eclipse. The name of # the directory within the plugins directory should be the same as # the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before # the help appears. GENERATE_ECLIPSEHELP = NO # A unique identifier for the eclipse help plugin. When installing the plugin # the directory name containing the HTML and XML files should also have # this name. ECLIPSE_DOC_ID = org.doxygen.Project # The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) # at top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. Since the tabs have the same information as the # navigation tree you can set this option to NO if you already set # GENERATE_TREEVIEW to YES. DISABLE_INDEX = YES # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. # If the tag value is set to YES, a side panel will be generated # containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). # Windows users are probably better off using the HTML help feature. # Since the tree basically has the same information as the tab index you # could consider to set DISABLE_INDEX to NO when enabling this option. GENERATE_TREEVIEW = YES # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values # (range [0,1..20]) that doxygen will group on one line in the generated HTML # documentation. Note that a value of 0 will completely suppress the enum # values from appearing in the overview section. ENUM_VALUES_PER_LINE = 1 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 # When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open # links to external symbols imported via tag files in a separate window. EXT_LINKS_IN_WINDOW = NO # Use this tag to change the font size of Latex formulas included # as images in the HTML documentation. The default is 10. Note that # when you change the font size after a successful doxygen run you need # to manually remove any form_*.png images from the HTML output directory # to force them to be regenerated. FORMULA_FONTSIZE = 10 # Use the FORMULA_TRANPARENT tag to determine whether or not the images # generated for formulas are transparent PNGs. Transparent PNGs are # not supported properly for IE 6.0, but are supported on all modern browsers. # Note that when changing this option you need to delete any form_*.png files # in the HTML output before the changes have effect. FORMULA_TRANSPARENT = YES # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax # (see http://www.mathjax.org) which uses client side Javascript for the # rendering instead of using prerendered bitmaps. Use this if you do not # have LaTeX installed or if you want to formulas look prettier in the HTML # output. When enabled you may also need to install MathJax separately and # configure the path to it using the MATHJAX_RELPATH option. USE_MATHJAX = NO # When MathJax is enabled you can set the default output format to be used for # thA MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and # SVG. The default value is HTML-CSS, which is slower, but has the best # compatibility. MATHJAX_FORMAT = HTML-CSS # When MathJax is enabled you need to specify the location relative to the # HTML output directory using the MATHJAX_RELPATH option. The destination # directory should contain the MathJax.js script. For instance, if the mathjax # directory is located at the same level as the HTML output directory, then # MATHJAX_RELPATH should be ../mathjax. The default value points to # the MathJax Content Delivery Network so you can quickly see the result without # installing MathJax. # However, it is strongly recommended to install a local # copy of MathJax from http://www.mathjax.org before deployment. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest # The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension # names that should be enabled during MathJax rendering. MATHJAX_EXTENSIONS = # When the SEARCHENGINE tag is enabled doxygen will generate a search box # for the HTML output. The underlying search engine uses javascript # and DHTML and should work on any modern browser. Note that when using # HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets # (GENERATE_DOCSET) there is already a search function so this one should # typically be disabled. For large projects the javascript based search engine # can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. SEARCHENGINE = YES # When the SERVER_BASED_SEARCH tag is enabled the search engine will be # implemented using a web server instead of a web client using Javascript. # There are two flavours of web server based search depending on the # EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for # searching and an index file used by the script. When EXTERNAL_SEARCH is # enabled the indexing and searching needs to be provided by external tools. # See the manual for details. SERVER_BASED_SEARCH = NO # When EXTERNAL_SEARCH is enabled doxygen will no longer generate the PHP # script for searching. Instead the search results are written to an XML file # which needs to be processed by an external indexer. Doxygen will invoke an # external search engine pointed to by the SEARCHENGINE_URL option to obtain # the search results. Doxygen ships with an example indexer (doxyindexer) and # search engine (doxysearch.cgi) which are based on the open source search engine # library Xapian. See the manual for configuration details. EXTERNAL_SEARCH = NO # The SEARCHENGINE_URL should point to a search engine hosted by a web server # which will returned the search results when EXTERNAL_SEARCH is enabled. # Doxygen ships with an example search engine (doxysearch) which is based on # the open source search engine library Xapian. See the manual for configuration # details. SEARCHENGINE_URL = # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed # search data is written to a file for indexing by an external tool. With the # SEARCHDATA_FILE tag the name of this file can be specified. SEARCHDATA_FILE = searchdata.xml # When SERVER_BASED_SEARCH AND EXTERNAL_SEARCH are both enabled the # EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is # useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple # projects and redirect the results back to the right project. EXTERNAL_SEARCH_ID = # The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen # projects other than the one defined by this configuration file, but that are # all added to the same external search index. Each project needs to have a # unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id # of to a relative location where the documentation can be found. # The format is: EXTRA_SEARCH_MAPPINGS = id1=loc1 id2=loc2 ... EXTRA_SEARCH_MAPPINGS = #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. # Note that when enabling USE_PDFLATEX this option is only used for # generating bitmaps for formulas in the HTML output, but not in the # Makefile that is written to the output directory. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for # the generated latex document. The footer should contain everything after # the last chapter. If it is left blank doxygen will generate a # standard footer. Notice: only use this tag if you know what you are doing! LATEX_FOOTER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO # If LATEX_SOURCE_CODE is set to YES then doxygen will include # source code with syntax highlighting in the LaTeX output. # Note that which sources are shown also depends on other settings # such as SOURCE_BROWSER. LATEX_SOURCE_CODE = NO # The LATEX_BIB_STYLE tag can be used to specify the style to use for the # bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See # http://en.wikipedia.org/wiki/BibTeX for more info. LATEX_BIB_STYLE = plain #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load style sheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = YES # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. # This is useful # if you want to understand what is going on. # On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # pointed to by INCLUDE_PATH will be searched when a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition that # overrules the definition found in the source code. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all references to function-like macros # that are alone on a line, have an all uppercase name, and do not end with a # semicolon, because these will confuse the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. For each # tag file the location of the external documentation should be added. The # format of a tag file without this location is as follows: # # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths # or URLs. Note that each tag file must have a unique name (where the name does # NOT include the path). If a tag file is not located in the directory in which # doxygen is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option also works with HAVE_DOT disabled, but it is recommended to # install and use dot, since it yields more powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = NO # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = YES # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is # allowed to run in parallel. When set to 0 (the default) doxygen will # base this on the number of processors available in the system. You can set it # explicitly to a value larger than 0 to get control over the balance # between CPU load and processing speed. DOT_NUM_THREADS = 0 # By default doxygen will use the Helvetica font for all dot files that # doxygen generates. When you want a differently looking font you can specify # the font name using DOT_FONTNAME. You need to make sure dot is able to find # the font, which can be done by putting it in a standard location or by setting # the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the # directory containing the font. DOT_FONTNAME = Helvetica # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. # The default size is 10pt. DOT_FONTSIZE = 10 # By default doxygen will tell dot to use the Helvetica font. # If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to # set the path where dot can find it. DOT_FONTPATH = # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = YES # If the UML_LOOK tag is enabled, the fields and methods are shown inside # the class node. If there are many fields or methods and many nodes the # graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS # threshold limits the number of items for each type to make the size more # managable. Set this to 0 for no limit. Note that the threshold may be # exceeded by 50% before the limit is enforced. UML_LIMIT_NUM_FIELDS = 10 # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = YES # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will generate a graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are svg, png, jpg, or gif. # If left blank png will be used. If you choose svg you need to set # HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible in IE 9+ (other browsers do not have this requirement). DOT_IMAGE_FORMAT = png # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to # enable generation of interactive SVG images that allow zooming and panning. # Note that this requires a modern browser other than Internet Explorer. # Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you # need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible. Older versions of IE do not have SVG support. INTERACTIVE_SVG = YES # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MSCFILE_DIRS tag can be used to specify one or more directories that # contain msc files that are included in the documentation (see the # \mscfile command). MSCFILE_DIRS = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, because dot on Windows does not # seem to support this out of the box. Warning: Depending on the platform used, # enabling this option may lead to badly anti-aliased labels on the edges of # a graph (i.e. they become hard to read). DOT_TRANSPARENT = YES # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = YES # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES content-hub-0.1+16.04.20160309/libcontent-hub.pc.in0000644000015600001650000000037712670026423022024 0ustar pbuserpbgroup00000000000000prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=${prefix}/include Name: @pkg-name@ Description: content sharing/picking library Version: @CONTENT_HUB_VERSION@ Libs: -L${libdir} -lcontent-hub Cflags: -I${includedir} Requires: Qt5DBus content-hub-0.1+16.04.20160309/cmake/0000755000015600001650000000000012670026644017234 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/cmake/EnableCoverageReport.cmake0000644000015600001650000001562112670026423024274 0ustar pbuserpbgroup00000000000000# - Creates a special coverage build type and target on GCC. # # Defines a function ENABLE_COVERAGE_REPORT which generates the coverage target # for selected targets. Optional arguments to this function are used to filter # unwanted results using globbing expressions. Moreover targets with tests for # the source code can be specified to trigger regenerating the report if the # test has changed # # ENABLE_COVERAGE_REPORT(TARGETS target... [FILTER filter...] [TESTS test targets...]) # # To generate a coverage report first build the project with # CMAKE_BUILD_TYPE=coverage, then call make test and afterwards make coverage. # # The coverage report is based on gcov. Depending on the availability of lcov # a HTML report will be generated and/or an XML report of gcovr is found. # The generated coverage target executes all found solutions. Special targets # exist to create e.g. only the xml report: coverage-xml. # # Copyright (C) 2010 by Johannes Wienke # # This program is free software; you can redistribute it # and/or modify it under the terms of the GNU General # Public License as published by the Free Software Foundation; # either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # INCLUDE(ParseArguments) FIND_PACKAGE(Lcov) FIND_PACKAGE(gcovr) FUNCTION(ENABLE_COVERAGE_REPORT) # argument parsing PARSE_ARGUMENTS(ARG "FILTER;TARGETS;TESTS" "" ${ARGN}) SET(COVERAGE_RAW_FILE "${CMAKE_BINARY_DIR}/coverage.raw.info") SET(COVERAGE_FILTERED_FILE "${CMAKE_BINARY_DIR}/coverage.info") SET(COVERAGE_REPORT_DIR "${CMAKE_BINARY_DIR}/coveragereport") SET(COVERAGE_XML_FILE "${CMAKE_BINARY_DIR}/coverage.xml") SET(COVERAGE_XML_COMMAND_FILE "${CMAKE_BINARY_DIR}/coverage-xml.cmake") # decide if there is any tool to create coverage data SET(TOOL_FOUND FALSE) IF(LCOV_FOUND OR GCOVR_FOUND) SET(TOOL_FOUND TRUE) ENDIF() IF(NOT TOOL_FOUND) MESSAGE(STATUS "Cannot enable coverage targets because neither lcov nor gcovr are found.") ENDIF() STRING(TOLOWER "${CMAKE_BUILD_TYPE}" COVERAGE_BUILD_TYPE) IF(CMAKE_COMPILER_IS_GNUCXX AND TOOL_FOUND AND "${COVERAGE_BUILD_TYPE}" MATCHES "coverage") MESSAGE(STATUS "Coverage support enabled for targets: ${ARG_TARGETS}") # create coverage build type SET(CMAKE_CXX_FLAGS_COVERAGE ${CMAKE_CXX_FLAGS_DEBUG} PARENT_SCOPE) SET(CMAKE_C_FLAGS_COVERAGE ${CMAKE_C_FLAGS_DEBUG} PARENT_SCOPE) SET(CMAKE_CONFIGURATION_TYPES ${CMAKE_CONFIGURATION_TYPES} coverage PARENT_SCOPE) # instrument targets SET_TARGET_PROPERTIES(${ARG_TARGETS} PROPERTIES COMPILE_FLAGS --coverage LINK_FLAGS --coverage) # html report IF (LCOV_FOUND) MESSAGE(STATUS "Enabling HTML coverage report") # set up coverage target ADD_CUSTOM_COMMAND(OUTPUT ${COVERAGE_RAW_FILE} COMMAND ${LCOV_EXECUTABLE} -c -d ${CMAKE_BINARY_DIR} -o ${COVERAGE_RAW_FILE} WORKING_DIRECTORY ${CMAKE_BINARY_DIR} COMMENT "Collecting coverage data" DEPENDS ${ARG_TARGETS} ${ARG_TESTS} VERBATIM) # filter unwanted stuff LIST(LENGTH ARG_FILTER FILTER_LENGTH) IF(${FILTER_LENGTH} GREATER 0) SET(FILTER COMMAND ${LCOV_EXECUTABLE}) FOREACH(F ${ARG_FILTER}) SET(FILTER ${FILTER} -r ${COVERAGE_FILTERED_FILE} ${F}) ENDFOREACH() SET(FILTER ${FILTER} -o ${COVERAGE_FILTERED_FILE}) ELSE() SET(FILTER "") ENDIF() ADD_CUSTOM_COMMAND(OUTPUT ${COVERAGE_FILTERED_FILE} COMMAND ${LCOV_EXECUTABLE} -e ${COVERAGE_RAW_FILE} "${CMAKE_SOURCE_DIR}*" -o ${COVERAGE_FILTERED_FILE} ${FILTER} DEPENDS ${COVERAGE_RAW_FILE} COMMENT "Filtering recorded coverage data for project-relevant entries" VERBATIM) ADD_CUSTOM_COMMAND(OUTPUT ${COVERAGE_REPORT_DIR} COMMAND ${CMAKE_COMMAND} -E make_directory ${COVERAGE_REPORT_DIR} COMMAND ${GENHTML_EXECUTABLE} --legend --show-details -t "${PROJECT_NAME} test coverage" -o ${COVERAGE_REPORT_DIR} ${COVERAGE_FILTERED_FILE} DEPENDS ${COVERAGE_FILTERED_FILE} COMMENT "Generating HTML coverage report in ${COVERAGE_REPORT_DIR}" VERBATIM) ADD_CUSTOM_TARGET(coverage-html DEPENDS ${COVERAGE_REPORT_DIR}) ENDIF() # xml coverage report IF(GCOVR_FOUND) MESSAGE(STATUS "Enabling XML coverage report") # gcovr cannot write directly to a file so the execution needs to # be wrapped in a cmake file that generates the file output FILE(WRITE ${COVERAGE_XML_COMMAND_FILE} "SET(ENV{LANG} en)\n") FILE(APPEND ${COVERAGE_XML_COMMAND_FILE} "EXECUTE_PROCESS(COMMAND \"${GCOVR_EXECUTABLE}\" --exclude=3rd_party.* --exclude=tests.* --exclude=obj-.* --exclude=cmake.* --exclude=include.mir_test.* --exclude=include.mir_test_doubles.* --exclude=include.mir_test_framework.* -c \"${CMAKE_GCOV}\" -x -r \"${CMAKE_SOURCE_DIR}\" OUTPUT_FILE \"${COVERAGE_XML_FILE}\" WORKING_DIRECTORY \"${CMAKE_BINARY_DIR}\")\n") ADD_CUSTOM_COMMAND(OUTPUT ${COVERAGE_XML_FILE} COMMAND ${CMAKE_COMMAND} ARGS -P ${COVERAGE_XML_COMMAND_FILE} COMMENT "Generating coverage XML report" VERBATIM) ADD_CUSTOM_TARGET(coverage-xml DEPENDS ${COVERAGE_XML_FILE}) ENDIF() # provide a global coverage target executing both steps if available SET(GLOBAL_DEPENDS "") IF(LCOV_FOUND) LIST(APPEND GLOBAL_DEPENDS ${COVERAGE_REPORT_DIR}) ENDIF() IF(GCOVR_FOUND) LIST(APPEND GLOBAL_DEPENDS ${COVERAGE_XML_FILE}) ENDIF() IF(LCOV_FOUND OR GCOVR_FOUND) ADD_CUSTOM_TARGET(coverage DEPENDS ${GLOBAL_DEPENDS}) ENDIF() ENDIF() ENDFUNCTION() content-hub-0.1+16.04.20160309/cmake/Findgcovr.cmake0000644000015600001650000000170212670026423022152 0ustar pbuserpbgroup00000000000000# - Find gcovr scrip # Will define: # # GCOVR_EXECUTABLE - the gcovr script # # Uses: # # GCOVR_ROOT - root to search for the script # # Copyright (C) 2011 by Johannes Wienke # # This program is free software; you can redistribute it # and/or modify it under the terms of the GNU General # Public License as published by the Free Software Foundation; # either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # INCLUDE(FindPackageHandleStandardArgs) FIND_PROGRAM(GCOVR_EXECUTABLE gcovr HINTS ${GCOVR_ROOT} "${GCOVR_ROOT}/bin") FIND_PACKAGE_HANDLE_STANDARD_ARGS(gcovr DEFAULT_MSG GCOVR_EXECUTABLE) # only visible in advanced view MARK_AS_ADVANCED(GCOVR_EXECUTABLE) content-hub-0.1+16.04.20160309/cmake/GSettings.cmake0000644000015600001650000000371512670026423022146 0ustar pbuserpbgroup00000000000000# GSettings.cmake, CMake macros written for Marlin, feel free to re-use them. option (GSETTINGS_LOCALINSTALL "Install GSettings Schemas locally instead of to the GLib prefix" ${LOCAL_INSTALL}) option (GSETTINGS_COMPILE "Compile GSettings Schemas after installation" ${GSETTINGS_LOCALINSTALL}) if(GSETTINGS_LOCALINSTALL) message(STATUS "GSettings schemas will be installed locally.") endif() if(GSETTINGS_COMPILE) message(STATUS "GSettings shemas will be compiled.") endif() macro(add_schema SCHEMA_NAME) set(PKG_CONFIG_EXECUTABLE pkg-config) # Have an option to not install the schema into where GLib is if (GSETTINGS_LOCALINSTALL) SET (GSETTINGS_DIR "${CMAKE_INSTALL_PREFIX}/share/glib-2.0/schemas/") else (GSETTINGS_LOCALINSTALL) execute_process (COMMAND ${PKG_CONFIG_EXECUTABLE} glib-2.0 --variable prefix OUTPUT_VARIABLE _glib_prefix OUTPUT_STRIP_TRAILING_WHITESPACE) SET (GSETTINGS_DIR "${_glib_prefix}/share/glib-2.0/schemas/") endif (GSETTINGS_LOCALINSTALL) # Run the validator and error if it fails execute_process (COMMAND ${PKG_CONFIG_EXECUTABLE} gio-2.0 --variable glib_compile_schemas OUTPUT_VARIABLE _glib_comple_schemas OUTPUT_STRIP_TRAILING_WHITESPACE) execute_process (COMMAND ${_glib_comple_schemas} --dry-run --schema-file=${CMAKE_CURRENT_SOURCE_DIR}/${SCHEMA_NAME} ERROR_VARIABLE _schemas_invalid OUTPUT_STRIP_TRAILING_WHITESPACE) if (_schemas_invalid) message (SEND_ERROR "Schema validation error: ${_schemas_invalid}") endif (_schemas_invalid) # Actually install and recomple schemas message (STATUS "GSettings schemas will be installed into ${GSETTINGS_DIR}") install (FILES ${CMAKE_CURRENT_SOURCE_DIR}/${SCHEMA_NAME} DESTINATION ${GSETTINGS_DIR} OPTIONAL) if (GSETTINGS_COMPILE) install (CODE "message (STATUS \"Compiling GSettings schemas\")") install (CODE "execute_process (COMMAND ${_glib_comple_schemas} ${GSETTINGS_DIR})") endif () endmacro() content-hub-0.1+16.04.20160309/cmake/ParseArguments.cmake0000644000015600001650000000340612670026423023174 0ustar pbuserpbgroup00000000000000# Parse arguments passed to a function into several lists separated by # upper-case identifiers and options that do not have an associated list e.g.: # # SET(arguments # hello OPTION3 world # LIST3 foo bar # OPTION2 # LIST1 fuz baz # ) # PARSE_ARGUMENTS(ARG "LIST1;LIST2;LIST3" "OPTION1;OPTION2;OPTION3" ${arguments}) # # results in 7 distinct variables: # * ARG_DEFAULT_ARGS: hello;world # * ARG_LIST1: fuz;baz # * ARG_LIST2: # * ARG_LIST3: foo;bar # * ARG_OPTION1: FALSE # * ARG_OPTION2: TRUE # * ARG_OPTION3: TRUE # # taken from http://www.cmake.org/Wiki/CMakeMacroParseArguments MACRO(PARSE_ARGUMENTS prefix arg_names option_names) SET(DEFAULT_ARGS) FOREACH(arg_name ${arg_names}) SET(${prefix}_${arg_name}) ENDFOREACH(arg_name) FOREACH(option ${option_names}) SET(${prefix}_${option} FALSE) ENDFOREACH(option) SET(current_arg_name DEFAULT_ARGS) SET(current_arg_list) FOREACH(arg ${ARGN}) SET(larg_names ${arg_names}) LIST(FIND larg_names "${arg}" is_arg_name) IF (is_arg_name GREATER -1) SET(${prefix}_${current_arg_name} ${current_arg_list}) SET(current_arg_name ${arg}) SET(current_arg_list) ELSE (is_arg_name GREATER -1) SET(loption_names ${option_names}) LIST(FIND loption_names "${arg}" is_option) IF (is_option GREATER -1) SET(${prefix}_${arg} TRUE) ELSE (is_option GREATER -1) SET(current_arg_list ${current_arg_list} ${arg}) ENDIF (is_option GREATER -1) ENDIF (is_arg_name GREATER -1) ENDFOREACH(arg) SET(${prefix}_${current_arg_name} ${current_arg_list}) ENDMACRO(PARSE_ARGUMENTS) content-hub-0.1+16.04.20160309/tests/0000755000015600001650000000000012670026644017316 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/tests/peers/0000755000015600001650000000000012670026644020434 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/tests/peers/sharer/0000755000015600001650000000000012670026644021720 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/tests/peers/sharer/content-hub-test-sharer.desktop0000644000015600001650000000025012670026423027770 0ustar pbuserpbgroup00000000000000[Desktop Entry] Name=Auto Sharer Comment=Test Auto Sharer Exec=content-hub-test-sharer Icon=content-hub-test-sharer Terminal=false Type=Application X-Ubuntu-Touch=true content-hub-0.1+16.04.20160309/tests/peers/sharer/content-hub-test-sharer.json0000644000015600001650000000025312670026423027273 0ustar pbuserpbgroup00000000000000{ "share": [ "pictures", "videos", "documents", "music", "contacts", "links", "ebooks", "text" ] } content-hub-0.1+16.04.20160309/tests/peers/sharer/content-hub-test-sharer.png0000644000015600001650000003405212670026423027112 0ustar pbuserpbgroup00000000000000PNG  IHDRxbKGDHu pHYs  tIME tEXtCommentCreated with GIMPW IDATxwU-3nlvlzB*$xHQ" <$bPQAޓJzng?Dzvy^y!{sf|g9M%&        @@@@@@@@h        / _4װbw}*,Y5NF؝+jjN@,! ckwri  zCFEʱ#ch9^D#ix<<)2r6^<`Udsn;;@v' .g5fjC(*%BŃJ{mٮhc" 5 o^)ђQM(kdUdVLb9r e3=4hDhXpPNźv(٦hsM4( m-e_ pew|{&s^Fi˕$>[Xz^+_-O1=>X=y9?) G#ԬWhr-UpԬ]ۦÊ4l0awȿ߱;l7"ۛSMw9;Vw@;ޢ3yY%:[SnONu[(b7cR.8֐o!)=hTe/SdS"eqR?_Ar 2ﶛn?]yhǒݲéӯPqߕݙ:)~ l.r3gz eUzbGMN> }&>3Mw'y&ְ߼ }MPůL_kb@x<&|DJn3He= Gh *!9SwفrJ._$J0Ur"81(ÛmimP 8y/GzN/]i&;vJ.E)5\`y!ݔ~өAΊ伡wLm$`WcӜ9*jk_rKҦ>\{9\k|eiQXW+؟̡#3.']$cxKJH9Դ{hr1vh|5)odl*<*K2GN9:}vs}˷2GMQxSn{fA<Wp}y6PabJٝy/l6Z2>^Ɛ/,}I); 's oZhS<#4[}=fߟʥj*5v\TM@ o6IlSMF~h}Z-}:Ws?~51+S૘{I~~sm3ȅѤЎ&ּ.Tt-2ˆ[Y^P>aXZapJp hfuoVד*a QsQ9Zk|N32jۻ[tpv>*f|%bw:?Duξ-kY5HZgE*!@dݮcϳHk/[5z:u!ooMv< .ߞ,x4NWf}\I-w\ޥ/Z](1[ ! `p;k/,.Q˒KGZVtP 7P9^|l [O.Q<w9D,OQgȲLvrΧ$e;c5 {FQl>}6PcITn͛Î՟+O n\xkCҶ5hmՖ)T]dz!|6y6\cvƈ }L-T?QՒ*UzS+q3d[׾4l&V~+^W+isऋUyϻ*~y%9 vTX˨ve:Kqqy䟀f+Q՟Weg idEp}IiQ>I?˦'w>GGe|uO˧dS-z=DQ+ vMWɥw*8 raivׯϷǖL׻'_UZ! *{? qGfg07uZlpylU.~Gg]#3 [vtWvwnŢ>=?ܕq<*8U.zS}aW L%.ZOܛ22E*|K kOR?P۟R˙w)9,~ sE,-k)՞2ut <&jvs|j ށ -G=o?24g= w<Нr[x)~ݷߜ!BWޣD XwwGRjg~{)wY))K@cU{^jBjj N_ G>;ݹc˖ܽUIy3'_`X -'Q ) G-8K9,?o!owXLvâ3)E0X">mVQXV[|ڲf@5|#لe'LM,-=e+u=y;OW}C_IW'շF;eB6V<i:p 0غ2r]})!rˋM 5,#d0^V0Utu䚼w7䚴 ϻQUTZe,Qo$Lhc o]q)52jUEZPv MlJwxMI)5r*~kQs-28awU\wg\̕3?  5a:X`zz^_I4yGiYYѾ>+hVϪ7?TͧTBss<3ӶK$> O8_FqEҾ3a<fjȹ7*a›V*q5jWS.%"a^<>=~>s,)shCGʨQ>Bvpk&6VWpʙwrx< .E( W۟ 8^N!5K$CT~>\WQpۊmREpH6ܹ}r |2GLk2>Z9r]4h_~oMW SIbr(j͝_n{dGMVU<Wa›W+m"?TF:ZV"1pɑ/Gaʱr!GYPbi7g{}^yGr 'Wzo`S`+zR]Փ8ѿ Ȧy`=@Ji# m\Byq EnߐQw,4dLˮM~Sҗ</;?;u>skZ3wtm;Ă|wxr\ꞼUoHzUHvl>EUou=L6 T^fYy-R9A#+OT{/u=x5nzZ=Vߑ,~mRhpPۯ9E-Nm|oYo}ш=M#'QGcQynE_M^hڦWh{sJ˕*>m UvU{f }]xe }iШYU3 &.X{\T)umZlLM teժ!56ժ})vo$*s+ڶp_{Jm\TͿLo)_|Ww@+^tI\.՞5[KCjmcڲfpۣS4 "!Vn>87C9}C|]9V3I oA:Xiq_M{WI=@'A_xHo<%EÜ@o3ekrb= ׬Wx/Sh2-кLg>rMC?<;={A>XcMaw|s1|u7j7lWpk~Sd JJ9KɑW$+#-ᒢ%"a%"!݊w)ѦXGMu6|Hc"u-j!e2l#,*{N4%!Ӑ)U"V"RC6;mަHVE7+ybν'2LQ6\ΒaGT]fEkپUkڰ\6/!&    )Tf8Ucwr̪9ylrV~4Џ˥2+~~ap{i |VvAC@ Rkd +LC CưQr$sx9YX*ǐ2nLlKERY͊7+XpzEj+ڴM6H_6.ϴ}>OnއtI7|XGuK\+_WhR4LɨNoޱ2ʓ}Oi;mA>ןPVNs/yg/gA/> gz{P<+[~;8HCM%hA\Tt ; _)ִ͒2ll6^_4|?m_ i7K07t  iQ̫ewyt&U ϺF'\zt*~4VXc |Θ_ KckŸeL}z^~xww̜.zz/Spe2ʨ:u= yHrQu7g\ O.OFթӹ@ys?W7O@Zc"$xnoʏ\H:E)֨xo4$Ôpɑ[(GA2*1^2ˆ }ߧs/ rCWcR4wFhD@mnۨЧR?(o+p| 7G1-/S뢫eKX|VO-QSKd/?L\Hs<D){[oWﯲtx{:?_tjSs* K+^ULЇvM?"[רպzsBұ@1,[<6(u6hM۾pT5vdT1Z"<~=>)S<T"T"ԫXkmڦHݦYn8J ] ,&GP9((#@B9re3ݒӐpI]hQ oYk̜Q^ʪdVɑ_r dl'al+)cJuPUіzEmݹmۨ𶍃v~UW33MFE㢨\vOv_;*Qe54(yBxG '{>ӸՖxyu8Qޙ3e_ Mug.ݡʿ); l\cU=IFXU,0w$iHG^.Uܿ޾Ue/)E>SD;M.==U,)}u8$Ô×+ lݠֵ mZ7ϧ(.c04dV|v6pWד$etXQfH?/xem9:ޯ~9-3JdB6L{\yvK 3- '} ,E6)i=q<{^r.͉vPTcwr=yioVSE7 5M'g+l:,n!fiWۢkaߓYVmںV;ܬOeu{RnVUANu[(b@C`׳jǒR?$3]QP)ȷLԎ"EwlR8FLPُejBEj #&7w|skB%\iȹ7 "dvӭ?Xr:S&8iH/_>.{A}odۆh骸Yʻ^V~2WT~×nПK!e(Y4z,-/oѨ>Ѝ۟1b|_f}lLξVEܦSr2LSŝ/(g1)UGϤ䞶N ox6E*or }P!'ST{q{ܣ4dHɺ:Tv}$' @uY|mrMC8gAol9}"?mCZoTݟe~޴ҒsJ._4oIDAT4|0Ur"8 E6YaK7UCOS9t/5fţѴl##ae>b#T?HAT%=m_N N&gV~+}H9 {)ALZXTцӶ}}mV}; 9xNrV$AL%wphU N"鷚wg]-}ɻ ?H×7eџ`J+OsJ8xw6T=d;^}U-y_C.q4|j7ux?`oMXw"aO%>&5UTp$&GJQUW5O+gepBO$.@$^ܓݮo|/7,E,sȌh.5:g=n/EF%Wqk7ND_r?!9wmHue>=RAȜA0UxU$'UKPU55r/dF 'gMpysDVuvs}ƵoCeIbhZyԇu<q8C?PRsͬu?G<RhJ-Ux*E6+XD[`l.yEr=q{⬯^"ܣQ4TzKMt*I΂.Ej7*}bw޺]u)* **Jl)7GBeT{Ly+7'9C܃[=Ej)RYѦѢDWxLvO6Wv_"%s3)T_}Ig,PO޴JѦڝLjÐݟ'|ܓf˷LOTMcr;̔ڦXW=<aP$+WDW)+F_;eo|佖[vN[hTM+xU/ShrEYӔo%rU|=urG/6P8K,mgGUK˙[hmHj:%:۾^.sM#USĀA0.Ŕ}p'-u<{l[+N܅g_|~15믞oeUYV^<Qu+WHmZTK_& /G0:z^QoT*~K޹Gem;ZCֆIu%[ApKwZ~NC}KX-'(nƮt@ ,K_T݅*^?Oe? ϾV-WhRsfXgx[lnSK?0ekQR=)Im?*n) 太tE^|qd8q ްջvuOKn%ߣUrJزcldYYŒkxk ϗQ1ʲ< N1b? 8Z|9jTpʥu"_|Z~+EK݃|{Q4Tƈ 2RΒJ9)ݟ'9;R4D4D4xomu)֤hS"u޲F?mL] !ݺ\nrrVk@i%ONktr SނQΡߒßۚ{\/Y[u`osջ3c?y&ϑkL9sv!$)Pwѭz k %yoA~GiFmKnVAPS!ݨ7۔}aQg'e#{i@v>X8׾$괨7c{_=U9~KKWCλQ?i<^&wns*8Ry8[tIv w2Z7X噱v@g2#ֽ7ee5pL:Ago6'z^~X=/?,?Oy)7}6)Ԑ q ϺF"}x98uw|1rr[O;uٺ6NH{53aw{V.+enyxt/ n lY;/Sͷ&eՊlz|Qt7Tv_3} `||uV?R3|,xO'o%_z|@c2t'O{U{,á~jCi$?bw, Gpv]OeAw]BI5v$I*82"[p ;&VTw]RҾ=,E,aYYYx' 9wjɩ n\#idi3i6 Ma7;A^T/j؝/nԴ"H&Xw¬ mY؎Fv4+ݮD$D$,.}rQP,gq*cˎ&#$Sfz^~D9`ilykyu˴㯿ڹLlIR,.Ţ{oݮOmt>;m KtO,yc1ߏb+W)қ [NWj 6,ji<-[/Pc0HfK3Ѩ `XG`/#'ZVVKhtVYZ{|$aխD4LZi`]O-ADxj-\ʷ4*ɑ_l}WzZ*\h4h$"6Zw`w]A82Af@x/rk'*<*h̕Q[mwmífnNxG~Fz}c~\;`v*|A%?W$\u9z{f}ؾ3h4\b!k(ZxSʜ@h &?g*~&7gphJGvõt%,Y?J87oUvrK@2;^v7{\|Zŗ/wQ90k8PC̲\~NXѺd>xZz>/|9*!P N Yd=ˣyǨ{4u*ɟ{B*a{v<QM1,9U[tE6Yww{UzrMæi~0Ls&z$dkҞ*T^`K6ǫL[vo9;W,}l=Gp䵵gLy&ԐsoThr7Th k)ծxO]JD²y|{}Y>Rj9QQ-| j(@JHw\7Io?#]o}Xb90sďT>"_[UvÔg,y3X!Jtҿg=y臘Tp?Ilz7 wOdTX@zTiWӓ?P//T<̜0@4NC,Zxu%Uh lۤ7pTy9YQ׮R+wWPÿSgq%}]OZ7xm>8kϦ '=yG_fUx*6Rx*kgW_%BD6yD;]v1imP[OGw.뫁5ֲȻrOGY6|`FE7+\^)R[?P+e͑9r12J*,&GArf9 ٝѨ)ш^݊zt+ӡX{;ooQAEJj 6. * * Authored by: Ken VanDine */ #include #include #include "autosharer.h" namespace cuc = com::ubuntu::content; int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); if (qgetenv("APP_ID").isEmpty()) { qputenv("APP_ID", "content-hub-test-sharer"); } AutoSharer sharer; return a.exec(); } content-hub-0.1+16.04.20160309/tests/peers/sharer/autosharer.h0000644000015600001650000000244212670026423024243 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2014 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef AUTOSHARER_H #define AUTOSHARER_H #include #include #include #include #include #include namespace cuc = com::ubuntu::content; class AutoSharer : public cuc::ImportExportHandler { Q_OBJECT public: AutoSharer(); public Q_SLOTS: Q_INVOKABLE void handle_import(cuc::Transfer*); Q_INVOKABLE void handle_export(cuc::Transfer*); Q_INVOKABLE void handle_share(cuc::Transfer*); Q_INVOKABLE void stateChanged(); }; #endif // AUTOSHARER_H content-hub-0.1+16.04.20160309/tests/peers/sharer/autosharer.cpp0000644000015600001650000000422512670026423024577 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2014 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "autosharer.h" AutoSharer::AutoSharer() { auto hub = cuc::Hub::Client::instance(); hub->register_import_export_handler(this); } void AutoSharer::handle_import(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void AutoSharer::handle_export(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void AutoSharer::handle_share(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO; if (transfer == nullptr) { qDebug() << Q_FUNC_INFO << "Transfer null"; return; } connect(transfer, SIGNAL(stateChanged()), this, SLOT(stateChanged())); QVector items; items = transfer->collect(); qDebug() << Q_FUNC_INFO << "Items:" << items.count(); Q_FOREACH(cuc::Item item, items) { qDebug() << Q_FUNC_INFO << "URL:" << item.url(); qDebug() << Q_FUNC_INFO << "Name:" << item.name(); qDebug() << Q_FUNC_INFO << "Text:" << item.text(); qDebug() << Q_FUNC_INFO << "StreamType:" << item.streamType(); } } void AutoSharer::stateChanged() { qDebug() << Q_FUNC_INFO; cuc::Transfer *transfer = static_cast(sender()); qDebug() << Q_FUNC_INFO << "STATE:" << transfer->state(); if (transfer->state() == cuc::Transfer::aborted) QCoreApplication::instance()->exit(1); if (transfer->state() == cuc::Transfer::collected) QCoreApplication::instance()->exit(0); } content-hub-0.1+16.04.20160309/tests/peers/sharer/CMakeLists.txt0000644000015600001650000000264512670026423024462 0ustar pbuserpbgroup00000000000000# Copyright © 2014 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine include_directories(${CMAKE_CURRENT_BINARY_DIR}) add_executable( content-hub-test-sharer sharer.cpp autosharer.cpp ) qt5_use_modules(content-hub-test-sharer Core Gui DBus) set_target_properties( content-hub-test-sharer PROPERTIES AUTOMOC TRUE ) target_link_libraries( content-hub-test-sharer content-hub ) install( TARGETS content-hub-test-sharer RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) install( FILES content-hub-test-sharer.json DESTINATION ${CMAKE_INSTALL_DATADIR}/content-hub/peers RENAME content-hub-test-sharer ) install( FILES content-hub-test-sharer.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications ) install( FILES content-hub-test-sharer.png DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/512x512/apps/ ) content-hub-0.1+16.04.20160309/tests/peers/importer/0000755000015600001650000000000012670026644022275 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/tests/peers/importer/content-hub-test-importer.json0000644000015600001650000000026112670026423030224 0ustar pbuserpbgroup00000000000000{ "destination": [ "pictures", "videos", "documents", "music", "contacts", "links", "ebooks", "text" ] } content-hub-0.1+16.04.20160309/tests/peers/importer/autoimporter.h0000644000015600001650000000244612670026423025201 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2014 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef AUTOSHARER_H #define AUTOSHARER_H #include #include #include #include #include #include namespace cuc = com::ubuntu::content; class AutoImporter : public cuc::ImportExportHandler { Q_OBJECT public: AutoImporter(); public Q_SLOTS: Q_INVOKABLE void handle_import(cuc::Transfer*); Q_INVOKABLE void handle_export(cuc::Transfer*); Q_INVOKABLE void handle_share(cuc::Transfer*); Q_INVOKABLE void stateChanged(); }; #endif // AUTOSHARER_H content-hub-0.1+16.04.20160309/tests/peers/importer/importer.cpp0000644000015600001650000000201012670026423024626 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2014 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include "autoimporter.h" namespace cuc = com::ubuntu::content; int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); if (qgetenv("APP_ID").isEmpty()) { qputenv("APP_ID", "content-hub-test-importer"); } AutoImporter importer; return a.exec(); } content-hub-0.1+16.04.20160309/tests/peers/importer/autoimporter.cpp0000644000015600001650000000424112670026423025527 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2014 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "autoimporter.h" AutoImporter::AutoImporter() { auto hub = cuc::Hub::Client::instance(); hub->register_import_export_handler(this); } void AutoImporter::handle_import(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO; if (transfer == nullptr) { qDebug() << Q_FUNC_INFO << "Transfer null"; return; } connect(transfer, SIGNAL(stateChanged()), this, SLOT(stateChanged())); QVector items; items = transfer->collect(); qDebug() << Q_FUNC_INFO << "Items:" << items.count(); Q_FOREACH(cuc::Item item, items) { qDebug() << Q_FUNC_INFO << "URL:" << item.url(); qDebug() << Q_FUNC_INFO << "Name:" << item.name(); qDebug() << Q_FUNC_INFO << "Text:" << item.text(); qDebug() << Q_FUNC_INFO << "StreamType:" << item.streamType(); } } void AutoImporter::handle_export(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void AutoImporter::handle_share(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void AutoImporter::stateChanged() { qDebug() << Q_FUNC_INFO; cuc::Transfer *transfer = static_cast(sender()); qDebug() << Q_FUNC_INFO << "STATE:" << transfer->state(); if (transfer->state() == cuc::Transfer::aborted) QCoreApplication::instance()->exit(1); if (transfer->state() == cuc::Transfer::collected) QCoreApplication::instance()->exit(0); } content-hub-0.1+16.04.20160309/tests/peers/importer/content-hub-test-importer.png0000644000015600001650000003057612670026423030053 0ustar pbuserpbgroup00000000000000PNG  IHDRxbKGDHu pHYs  tIME,%%GtEXtCommentCreated with GIMPW IDATxwTt) KkL즘cl$X 0XAD@.s? fٝ}xΝgwnگ4)Ч@ @ @ @ @ @ @ @ @ @  @ @ @ @ @ @ 9R;A/cpp^U kЈ[=BA# fI䬨φ~6@zCow5V_أ.arx EC]/@ 'q | ?@ @#x@YYV즬w @'4_1>ArJvo@vdw(  w)޼QMkXŊ|:_V[sN b*kTq̓YYpo ev4y"ةxsaZp;_~LAEdmiTdK"KU;i++k͇>Ҙ4\/+ X.;DE5ذZVfQzm,|Ni6k 'moTz/TFt*o#]$J͖?5HZ,~+G 2 E$@YI]it p! 7?֗gwX]]rY6-WR(5#%GeYH ޕNoUtFevoo w}Vހ|g\IYL4֩L?{OtC!rP`rxƦRg?"˲=Ϙ)HKSpi=b|ܦ}#iĦu|]UuV8N*.[F6> "@=;{+r iװ<;w5KOTΑ>HϖWd6_Ik_?=uSii# U|5ݺR|I-O>H֚ ߢ+Ց,.P`bA,O(o72Gg ?áYwrmo}. k_eIV@RS7v{m=*Pt*:t}P翞6~a#@_Sڥ|^oȉ* ztpl%,!`؝ S=*P|UrdF @A womި.Txi~}zͰ,yݹt}BOݓsU}; ~ 6@߱!~Θ*TU>  7$fO;.U˟oͨ?0m won1k}xwf{ԌT_=/gZsgC 2>;sTwnzyJU) KYbBm8m$E7Ό(?d=m;:/j 3"|㦩SY*@Y ug?m6z"{.> yC|[zlIK]sP3G뽗eYVgg~ ! =u}Ml9r ׅy /'G`r>VQwV"!ahmQ p-1ÿOdPAaZ}v85~"kzjFY5$M`ۼ~@oZltz3#RULmh􎛖;. ^"+06UUW+; 0t\Jg]:=XJs{v{Nk7D+UM'+To|@Gy8B etz~x j@Uw ~:J*S;WNx惹F;5 ٪NPds5E8Ѳ|]M\n~9Oq3ҿqMߙ7kУF嵏(#$OU3(F/*>ً+ Ǘ/0lJ{Tv-ig 3 }:_:['yjwgNUwo86gd9 ᠂ᄂ77vƒO16x'QO=jzgNJp oO?PI{GӔH C*:5|'7zJθY ]"+)nVY]JƢ{dd/jk?DrU L[~)0^gɲ,E,Qx -|C%oK)m1pp<{}e4$URkQezYX*%ZFds.ހ嬪j܃3j'F  5i_~ ~"_pVPdf3G2F}v]ޡ:NEw,Ra(VR)޸Nf%6 v*HVBr8esy/_#9IY\ntLSYyjFSsy*ԎU轗>(Gϱ򍞜3]3J22-mtnݿV5SShJ2Ԏ勌)aٔTӯϓ N 6w'osܠEO Td=d TWrNC{cΣ)٭iPFGg`[ Vܫˑ0sҚvݞD8X^!?@}J.VhY>\mO-[Qeen3 eD\ ?=Ndpٌwd@drwƦ[Dܛ3d _`@w$C#?/߇=#'f{O:%'v^3zgyFLiMoiT ͟*i]/΁Ô7p(W(s֯:*-:Э-Ka;]3ZArVTY>PRټ~<><^\)S2U2ޢD[mM7+b+V]LT=p?XQOby9ݒ%%R"d^9~>>6W6j٪Dk+qk?QdB%[~);C@ @ @ @ @ @ g_xNoe,9`vo_܃F5h!ZwhdlrVTgC?KzG"Y;P+w/k09~!Ϯb z'zvƟ @ rV\U5rV R*9UQT*{^Bdds:es%KGeEJFò:oWybY"*0>I4B>^ΪrVQOv_@;dE²6+޸^:6UdX6+ݟ+g9Y_[[^>7l.$ѐHhXߦu[ȧelr#Ir \5 dd$MV8dKVsra(cE͗ _@ڭArU ں'GAeݺ9][VBhX-[oǺ֭"d[_i2d&[Y}@yE WHkF]3RΪ!rT,Rt|YuRw_M)gaI-*lxV?dǖ(];V.arVTY/m[l E>y_]Vhݨ vSw.rwoa?y|I%tw-Ϩ<=t9n7׊E[Bѵ(j‹QdGYV{r}L[^yFL>A宬qq~QOޥ۸;R>?u[,;s(fI._ryLwTyFLv^DW、>Go;awpRz+Rd_1u3U ;n<#&۷+z|.@//g;~|=tNWFa׻/ӯ;*x~\Xo^DS}o=&!GV/Vc%YMJOG\,精zcuj}NuyTE2b<5O[){˻49<+>҆g#1=uo9Oq(V_#˸w*]X12r#P /V[>|U\~J/X x'w* ;nJU)#])A!w w(xU^g)Mgos8HۗJRYX m VG/2KU?J{r3Y a<Õ ĶOsnsՌRg#]' 2Mr`:v9ٿu8T~ŽrW&٦؆| +a 6*=grOkys84G _egmnP[؆Պ7o]ښ {y(,k@ {؎_Rd'L}ΗBeZ]O IDATMw:^~Lw_ڦ's_~LͿ9??ǪRCNKS6z>nfeWAΗ#|v{R-6?^\/U~'(+MSq},k_ 3b|c3fUw^]' O$r6U|EF(٧jyX1ݰFuNɹZ#ةƿ;ejÅf~ (<|wW>Tq}ry{krnY:IiOWp-|{A])o5Oʚ^]:%k凨ОyGN{x͟Up)f7xzLodp5m0:o{#}}b |ǥJ:M3|B/yr׌вx|Ƨ]p=]ܥV,~ڥkpJϑWYGrg5s,[nއ5 -~CƤ@%_O.+:s7OE}xo{r מN| WIe0Ton d<ϲeV6WcM8[TM͍IX@ %Z6͗y3ԥe&L.ZcC]Qj3ue<ٷ]Хp(i?&7ZK [ v 3SgdG6deo ^vYsG"cY1Pg7c9\7O||nF0@*Wu8K{xúόM&Hd<5(Rxݟo<e<D|3,qJҿJfh1d=l/$Ɨ\{ѵlD-0WP,i7r7Odg-,Ʀe㊥p ٪5#o>ny33ҨD3'~ey2\9! /My-?@%δYnW`ƁƦY! @G8%g yGN26Go]dl>Tx)iN5[-3IJ*9Z u#"+jA>E]"[:n ˍN2K,_)\RM|;ɀ$ i+VwAB 0z+[QY\nlz5K7xyJnGY)a*>J{*XW3:O&γMϳ4yy 75|f6z8A%쓷 ݾ=)3TveZwnO`lvʯܣ'wrU!ٝN.bQu 70}o#K٥T}*sd/w?3n0:oVgc'ޝR/y =[V[3 7FhU~}WI/?'"UUzu*=:W}ȧY񑢫+,UVK6GR;v'tdqm=%:|U\uvZIweT|hGL$YBխfPZ 5yBImy* ]~|PݏyaC;t\χ^}ڞG i/Iy3 /zKw۰FVWLϗjx"gܽ0+P=WkC7|wj9'hM'K9rCp5o̼2VI@Ns[ƓanƒxaFd<5~o 'J5:m6e|9rWrC;swͬ#KS9S[/dܘEV/ֆKTY떫}Y$ÎyЇDWpѲl̽f5Cmx6=PxKѕHz_|<1W6\q:>D$5Kx%Z xV,л/i鞫$Bj}.?uڟ[ T-DjExaYڻA.=',M)] 8HwrwooWl68:G@v_l<})*٪؆5կRtrDc]NZy{|_gD9< E,Q7]UdɻJ:l ;bUY#g@9K˞_,+{?Y񨒱vYJ6)ib*EV,T ! N @ @ @ΰگ40@ @ @ @ @ @ @ @ @ @ @ @ @ @+JRIENDB`content-hub-0.1+16.04.20160309/tests/peers/importer/content-hub-test-importer.desktop0000644000015600001650000000026012670026423030723 0ustar pbuserpbgroup00000000000000[Desktop Entry] Name=Auto Importer Comment=Test Auto Importer Exec=content-hub-test-importer Icon=content-hub-test-importer Terminal=false Type=Application X-Ubuntu-Touch=true content-hub-0.1+16.04.20160309/tests/peers/importer/CMakeLists.txt0000644000015600001650000000267312670026423025040 0ustar pbuserpbgroup00000000000000# Copyright © 2014 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine include_directories(${CMAKE_CURRENT_BINARY_DIR}) add_executable( content-hub-test-importer importer.cpp autoimporter.cpp ) qt5_use_modules(content-hub-test-importer Core Gui DBus) set_target_properties( content-hub-test-importer PROPERTIES AUTOMOC TRUE ) target_link_libraries( content-hub-test-importer content-hub ) install( TARGETS content-hub-test-importer RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) install( FILES content-hub-test-importer.json DESTINATION ${CMAKE_INSTALL_DATADIR}/content-hub/peers RENAME content-hub-test-importer ) install( FILES content-hub-test-importer.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications ) install( FILES content-hub-test-importer.png DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/512x512/apps/ ) content-hub-0.1+16.04.20160309/tests/peers/data/0000755000015600001650000000000012670026644021345 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/tests/peers/data/Stark,_Tony.vcf0000644000015600001650000000775412670026423024226 0ustar pbuserpbgroup00000000000000BEGIN:VCARD VERSION:3.0 UID:pas-id-53A9858700000001 TEL;TYPE=WORK,VOICE;X-EVOLUTION-UI-SLOT=1:(800) 521-2227 URL: TITLE: ROLE: X-EVOLUTION-MANAGER: X-EVOLUTION-ASSISTANT: NICKNAME:Ironman X-EVOLUTION-SPOUSE: NOTE: FN:Tony Stark N:Stark;Tony;;; X-EVOLUTION-FILE-AS:Stark\, Tony X-EVOLUTION-BLOG-URL: CALURI: FBURL: X-EVOLUTION-VIDEO-URL: X-MOZILLA-HTML:FALSE PHOTO;TYPE="X-EVOLUTION-UNKNOWN";ENCODING=b:/9j/4AAQSkZJRgABAQAAAQABAAD/2wB DAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0H yc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjI yMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAA8AGADASIAAhEBAxEB/8QAHwAAAQUBAQEBA QEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1F hByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV 1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usL DxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAA AAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoE IFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZ GVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcb HyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwDF0ixnt5muCpZR1 C84rV1Hwxb36tfybssvAHFUrbzfPV7OZgsmDtz39CK3L/Ub60sYENsyYbEmRwQa9CTd9Dwaaio u5w9zaWMVhd2s8EnmkfunI6VyekaI97dyxKQXhUueOoH+RXpmpxR3lhNJtXIT5DjvXNeDkRdWv 2kban2dskjIHK8/oa5sZ/D5j0cqX71we25j39uu4Oo+9yfrWeIAxI24rS8TJe6fqUkiCGS1DDa Ylbbgg45Ix2P5GprCO3v4nzugnQEtGwx0ry23GNz6FcspcvUwZIccYqu0IYY7ntWjezxxIfs8T yvjLEDgVFpNsby4Mt5MsESgNtIO5+cALWsW7XMJpc3KirYacP7Rj87OwHdgdTjB/LkV3EVtBqI dbfIZV4THX8ateDvCx8Q6nrDpGVtrVTGHxnBYjA+uEP516FpHga00hFu97zApgqONxr0cPUUad +p4OOoynWstkeMXsohuTFswV4PsaPtCN8kecY5ra13wzeReJPs32ZkMp3RrnOVJ45qa90D+xXP mpkAAjjqfSutO7OCSSjtseiDw3pt9Er2WY5VfdtyRz6UzxTpWsnS4bKK2EuBu83dzjriuj06zk t40ZCSx6gjvXnPxN+IGqfbDoml3iQRon+kTwsGctz8gbtjHOOecVxSquLuenRwntvcirNnMXN3 JpnmW11KquFbMe7J6Zz+FW/htPZahrOoW08e5ZbYkAjGV6HH5j8q4N9RWHT7mARqZJlCtKxy5+ YE8++Mfia7DwLfaHo9jNq19BNHqaXIt2mL4iWNsA4UHnGcnOeMY74xrV5VINWO6hgaWFqJxldm 7eLbWdk1lqUYm8tj5Mi8MBnOMjt3wc1z0+nQQ6W2oB8eY5SJPQdSa3vEk8Udr5twBuRzH14bAB H5giucivNI1Wxiie/SzuoS3miZjskz0KkdMDjB//V5kVI9mTinqZdiqMDuBZQ2cVPJCsjpGDti U5VT1J4/wH5VBbX1hZ3DxQXBnibAZyuMnHOO+M962bJLQzm6kk/0a3QzSt7Doo9yeK197mMk4O J65ouo6P4L+GVvdatKIjcszkRj95PIxJAHqcAdegqLRPi54WvUW1ufN06UYwLkAof8AgQ6fjiv CdY1u71i2t/OLOLcu4VmysQLZOB2ySvPsKxJ1eWQychm5+tdcW1ocUqUW23qz6UCQ3euyXuFmS TDJMhyMdgD0x9K5TxxFdTXYSKNnXJKhR0XtXDfD7xJLoUt6+oXUq6UsYVo+WXzWYbTjtwG5HYV 6isFxrFquqwXET25yYhCQwYfXtXZSqa3PGxNBxXKup574i+LGo6za/ZbFW060KgOiPl345y3GB 7D8a8+urwyFNpwQpU/mf6Yp8UcaRBnZenGTVWbYZ/kO5eORXHu7ntSvCmorREllY3WpXKwWsLy yN2UVo3YuNLuptMvFBJKtn0YqAfwI4Nd/Z694Y8MWyrE4mkUf6u3QMT9W6frXHeIb5PFWr295b WT2YkIgLMdyk54OcDn1rCFWc5XatETpqK0d2WtOuJdc0saFdTf6h1kjZh8zIARtJ9sj8PpVPUN Ggsbho5oo1/u7J9n5hsmp9T0LW9AlivWt33Q43SR/MhHqSOx98VlanqI1NxJtIIxkMckVSTcrx ehtVcYaNXfT0JrbSI7yTbEE256hyf16VLNctFA9gD+4gbLuerEdM/Q1Sh1J4IljjUKR0YVd1vR 7ywskyPN+RZrqRDuWNm6Ix6bhnkeuadnf3iYyjbmitiXw7oNz4kh1N4QwWGNFAHPJORn/AL5NZ F3YX+kTbLqFkPuODXYeGPFKeEvC8S21rHc3V7O0k+5sbEACqOO/U/jVvVvFena3oV7FNaul28R ESuoYbiezDv8AXFZOpUjPRXiCp80b9Tz6SYyxhELCMkMyZ43DIB/U/ma0NH13VfD8hk0+5ZY2O XhJyj/Uf161lwjaWV8r6ZBq6sYkjOxlYD+6c/pXVe2xmoKqmpbkNtbCe1ZwFLIcMD19qUwRIcH gj0Iz+VO00fJJ9RVqdF4fGWZcnP5f0qG7Ox0U6CdJTKiRnPGG+lSxuQm4MRnrzUSk7855pzn93 nvQwhpqbVv4gugJ47qSS4iltWtirP0B6H3wa59n2oEkjGRwr+oqwtK0ayxMjdByPY0kkhyi2m0 O02aAajau8G+CKRXlAAywBzjmta+1m+1Cy+xzygWvmM4iUYHJJA+g6D6Vl20axwqFHXk1MamVm zro0FyqUt2RsoVOwA/lT1A+voKYn7w/N09KeehAJHGOKDRWs5IaJvKYhQATxg4zWfqUm+9yuQq qoXjHQc/rmrKxIJkXHHWm6kB5EZ/2qtWTOGrTc6Upvof/2Q== ADR;TYPE=HOME:;;1001 E. Lookout Drive;Richardson;Texas;75082;USA LABEL;TYPE=HOME:1001 E. Lookout Drive\nRichardson\, Texas\n75082\nUSA REV:2014-06-24T14:06:36Z(0) EMAIL;TYPE=WORK;X-EVOLUTION-UI-SLOT=1:Stark@work.com EMAIL;TYPE=HOME;X-EVOLUTION-UI-SLOT=2:Stark@home.com EMAIL;TYPE=OTHER;X-EVOLUTION-UI-SLOT=3:Stark@other END:VCARDcontent-hub-0.1+16.04.20160309/tests/peers/data/webbrowser-app.png0000644000015600001650000007342412670026423025017 0ustar pbuserpbgroup00000000000000PNG  IHDRЛsBIT|d pHYs7tEXtSoftwarewww.inkscape.org<vIDATxٓ]u{9'y*P@,R"EJMjJu:[ɏ~q8v RXRK͡ũ8TB5a2δ^~L@D(dM佉sY{o}߷6{??6c whG"^wz%xx7=~%]nze /D+tG$e@oRxgy7sOQD$fWYZ;Hocr"3;đ#3hekX %wR0?QƐ.p'XX]AwDYSx/xyuB %nYRf6,AXlD^@}¡Exx 1Ry`sֽ{:ŝ븪ǘ~#H)E< ̟<ܡ%(Ld#%/-o)9:[3P#bQJS6$.RcƊ:Pќ@Ostqs~}9nfk oEq Wǟ2gaeZ(‰P=-vF{6C1B'@!$Kb 6&RJeْX8/xQ8')D$ Pcoskd%l99 OB^e3?M9bsG8R/95o [{5 C !ZZ F"Є c(* 9{ I"*xb3j2Tb}q&.֛x[3P3,@k~/k"E+΃;UKe-̤;1pPAU* ^" !bNjF+zZ3.ZG!v&V{ ;og>#n3g.p疩2=(ZF5tc{'-!^XllԼvskĎQ"Rp°aqoPᵵrq@i^kV̵ ;Ò=zm3w"VThb<{j[SZAFrז844pJ'T'R {^W^[nM2Y~9tFvPԡ;ʢ@)<%tMSK kw\s03%riܤDZ5Sqk f{ V%Y6vꀪDXU_qzyL?5{*k)kה6P*b  "`"N{(IqFCDТ&Hkch% {(aMk\[S&'҄s wwփQcC(6G>u:2^(*(vH#ƕGIQdb7wԣ{/:f~F76,9^zWwR߽U9LA+a}ؑƊHO(.0C9*H.'DIT "?<Cn#?6^?xF86{SwbZzP0*= Z CvEUivJڭ³(ǚH8尶F,NrB+qbbXVh3.s'ϲsoz4 gOduWOr e Yw0Q,v<`S TxFJi -x@0*qHXD£>)SH5bwvbW26Vk?^P׊3߉K_f<}r+)e^F "Srb5%kd"K"{e>4,+#dP68NX8~1-vnd? ܑ>IN2nd6B=Ň6.)Z!QDIPQ](! %Y'4{iZFNTC* NN4EYIkD UFDf5e[cyDIE/o[C^y+"`yIJxQLYeK $M ӈ5G GEl^ ?`w8܋,< mĀݡEG9PK4GwЋIHGF?h\F)C;Vđb;)Id#X)3G8I/eJ$厹f{''V~R Zyl|~^fQ&B=sZsBet(AkRQ#:,XX"ZUYR9䯢LO 3?a S G>Ez j'DZӋ l 焹vHy%J82FPSN#Қr,Q"5Yʖ&MM>s3;{aXLx5[ ҉¨` p@ pdbPxSRK2#6Ҵ{|-z]lw(Jl4i(uF6P5umqsSYGq9 H)LsuAf1 F<E-biJGnqc;n.xʏޣ(%h/-!D6eK971TP7ELӐBiE77UT6ާ^f#pJ6{c~j?S/+|x|޳_x-e8Nk*[aE-*WOB/S54#֚qU!. uUCd sT%b=ǽ[we Q+q  ߀Ӧdc3E% `3TRQ@ M݌(]41n*J7-ib^0p>i'̷& :]RS:f\7)J>,>֐/Bam=߽ɗ^5T2ypv$nU8q"K:M&M6jlR8|{ ָ![QDesp)6ƣ ;g̓t;n*ɫ' ΀7fQ驭0ߍ-z.BȔ.Nj EpOD1-͝0X27g׸:GϽ)nm$x:9-v8B;eu)7!Bhra(x?saP+avfQ"p©Ŝ˖(#"T$ڡ3mnț[(ǎ'ޣN2bcXF1ؠPڑD5Fjb(K !4rߟizxV=v̶u gF~2e76wW M1 7$ֆ$WiS =-bh YD!e5}yK?f۔0҄ 1R >XA?5-~ҹL)B%%֗cܤfBk𮠟.yT,d{,pVŕ%^|x^f1E\˸!MR;=:>M;{ ;Y*yD\ݘkZfukG/-).|4' vzDSP|K hۈ["ZEA\F,9JpM qʺ&KP8r7nbo@?b S G\??MCPE8 C;F1 ⛂V-ܙ= tM %OB+V8[s=άzVB F 6Z7/xmum U"Mde@kΜ?D)c /2vQFo7@58g5]zbZnUTFg D"*PZꕔ.lC#{奔)ߙ痟w>f՛|1D e*uՀRĤ8c}&uE^IlV ^R-ZɈ%ؐEH>&?Ca{l"Ž'x+MftwdQ-·5XjD;kGѡQ*t(0u]DͲģP$J( ;&(TORtg쓤fT$gq؝*]`ys;^|.=*(lN-"~E5#]vX!m➢=cC^&d\~5\C)!8}6o;6hEi^xn6ޛ%_d[&bY>Spe]1,j0MyQ)#*v'jD~.t1i4Pb L:8'Q5c c*S׀RCSڒDF!k!Eh‚zCC@>WnCMqiIDSׁ[xBNjԴ~K[.&e~/pjLln|ͅU˕;+޺/K?KL j$pk{mV;WdʏeL%c*aK1BR9J$QBx , ̴ 6Y;bk@,"2}O23%" ·$ͭ\CekiO♶$qH)Ra[9ƻ;?a4?iz.yrJMoFech>~wlz.Yoaߔ}rQ :v0 Vn#]FҘk= [dVбYL3`/mmJTFj_R(E9~vB$i:<+0,OmEs_?F;X6J J{hzDt%E]n![) mfB 94F) -Ec4H)fzCG48h!:_5Kay˯` ^tI 7.0Ӥ!%jƣ4z'6YGǠp tv`>gSs>@TvLl|$}Gf^s!tՉ'+u9zm޸qL˃d[zzP.JtD4 <fRᗞ#6ܗ|waoP*ƋQ|k}cjt&YL8hjZ>N*NxV}&؏%lՁ t YT1׷O'* Fel{mJyо9(1YM>메oPmvo9xJ"Pr;z۲c,HY8ڐJS0~{?VO'/>ø ;MiU>cdw3~d`59rct4ozp) :v†V" *'<`)| p#$`,)4ᗆ4%s;=6/Yd7^LSɈË%`;& 62|!nndT7qՙgqM(lEv{S^/Uu}yM$:6 ؀C>=p̀j;qMIݢégmiVVQmu.N8/ywYEzȣo#8((?2:۟R@\<&s(O;OxP âOel씈@+MOu1k3 qů}P8͖_}D)!v0KX7Q~ S\ig cakτ/՞$ UըZ@ z3ĭU>mX88edB!3Q(?#gKFᢂ = lRܮC]{˗-_X.8:w7o(! {+w9z7q&3޺L[߉0[7X(8,XCBu⧎Ű`K[ʀ62|4ߌ3% ?(vl?4& ^b Y)+G#$5F'9 jv%JN[|p$l(։ǟ E-N.3mFvȡwkkX}7m [q [դqCsEȫVQK UU1UyGQ }# Qe݈m僿0N2*źm7`\,2j}F."aF#BуY/wOkPa$XJOor~ 3-,=}Ν=٦9 3|;..2Mx[|spdQNx 9C{!|5{Ҭ]W`#p`rD ϑ ȓJJ3h. ;c{;V5͐ۺ4Lɵ+nΚ-wیF%bU#EI&*VyY 9CS0(9QP۰kƈ-yv*NN"{tKԌ#JN2%w{SZ})6S+$Zf@{r)^_lk(s Ainllke&PUL[ϱbfCP|Ͼwq,4!X^o5>o1hrZf4Ƙz.u( jEG`">yb.p}&x-{^M(QTVPM(yu"6;zb>jOx{"UMt?ț=Z-ቖ湮w{FJ|מp>QސuNWJ+RnUdñ 6:NQo Ȫ[6VjXv\lؾ6%m!Oҗ?J2.h,(bE]z}+克o^{cGS-a^^Dg ,LyLRePND27ǵw,<f&Thv5CxsWy0 IJ0^y豊R[{?<7"8\E ,FG(|ZiȈҁғ(.^D'xeϛ,9e|>-S>.r8#{9+Y~Upx<^ƌ|J#v$Jhf~TQɑf0;;-aO[~& >~w :7WHJK^ ;77ۋ虅uS)9E}m>CBNphnl$7u/v-Ý1 ^n]H6./<܅nxY ǻp ä3E awc! S!0ᆭݩa H S?R^< 0קif<}dl KThK-#>nº0WN?N*^L?BS"6f"ox.R Iʭ3C9H榙g:P߹ɔF)(Q E;s'$BԚwDuNuD ʔEd?`Hv^)b3C?]YCDx=nْ2C:ĸS{̀H.6/xJ8x@'kQ͉h>=|`E-5YamLф.CwpPKD;sXZ(:SGoFmWY^u :gچAQFc4째5RY鈷T:p2hld`wf9Lʷ.mrs=z:%i/M:x<"|KxRb6z ["&25K y#?M&f#Mbs}`0=&r5=>r^{"ݦp̉@2D6{ڭgC+|ePg+օFV2Z޲2h1nD18EFI}v*@Ib U2B LeU~[BLn ?q`&I`RS~Eb<+lcsʅl'?_w?]6?˯gWy3,vWy~n>U ^gjkUْnM=>="/DF NTofW]sr˔d{tB{+n!?Q'8k5L_?mHcܘ䦕C%Ƅltgbp& ,7$2+́x|}+_TB+ӌK,o"^yCaJ{ljʦK,ţMG'8.FmjTK:buqe~>5c:EYDG8wYҙ٤pc'XhyRãNb\{w͹zNWtĎ K|9j>EEYxlph.~cko{tclEidhk(5"d OpήڼѽD\òЋثV Бvb&׷yn .=&xW'7T ? 74ktbvc툹$h4taTجjTy|Jן C(#c-s[>Ljv1:S5Oc7\1ԬkKe5\(M3j]WdilIdk='͞,;OfsZ{uw 4bNHFGF!ٞd?#b?+H7Qh("  ^]{,CYnu5h6[IKɞDXE tnuTdĐ,R=Qo~c .ܭ)ϭcNK[50(ؽњi^^@:, v 24Fnegu60؜V_5dach>x\BO*o,4֦ ]fa%_S:*'[\)%-W+3k+{<0ʢSKU9ziF TgZACTԐ(lUPNTRG1j].+be/~y rKňc[\T#1(Ld5$h֔j፡Z}CBl[ɯ{NE5tU} I8b;}ͭ 6z W/X9~Pr|gدn![`U\Q0% 4nU^\yt?E+M G^@ GNiO!6IF"ECT'vT)Oռa2DIԍZķ_>YR=Ʋ$îD pW|Gp^ Nͱ n1X%[Q,ӕs3NdJ*EzmLp fkMi!G<#aoKY*\;KoȭYthԐ$qdEEMT ^(UQ12$ g{7*򤾕ܣMǽ7+8 ϸ؏lbP4/f@8H6 Ϗ(' d$6Y9Fb%n|J\߁xeFEK&m /Q=6+,lNؘn1h6ݑ.e^qV#we^SXh}J[9R)gvƢ0?ZÉGO=7a/}x.Fƙǫ&zphAo7\Eь}>)G+6- N:gdɂ`g(tñB֟Z}i'{`/{ǁRK#G4* R#82+ՆS%e =DxTˣjZ)aTk陔Iu$ ^`ݦY5VTCl=MZi&et{}W"KGGG0,掞[}EWn>+$646pQAS˛SҴdH r册̌`]u!lZ +JqFʭ%C_ ^]٧ Ug?^#J2bҪe.[UġHݜDkr NNSƛ ct]l{S[Ts#9S^ <P M/K~0^a}+)ǥBFi5iU1|B`Xd.}RMQQS8zn0[*kыCid~UNhIYTll)>\c5g\<kW/>DL\FºYt>UMU~^YHM#"p4V:=Lwt7'Ss_~O <&Mrv׶-& z?Ch2և ˰y~{V$d3 IYzYWx@QVܸ9QF~T3?BH)PbRdП<Ǔ'c_}·~O?7eI~30FTZlߝXkhmVȃ8'o:ޞccB%)ګ?y{7s9_6MyFQDjޮeO$,e6rT|(J pTQϐ̫7N)7Fy'W&nH"N+(>Ъ#)ɸ5z< /=@(N$µo>}lmB[L!\B{Ջ ouQoe`D%׉ZTaW.1v'[ZI)+Lvϛon %WI!(,ـPU rde6lOM?I;3ґbX8,jl1.՜{@_+#?G'y!wUsyoio.I}^s=v,'= 7f^s&?nqt0cE;85a%[T8w0,)a ;9憬W_?k2QT]cm4Ow꼙5zsHSigR |oϹw97ܭMMZ`Qx@ w 񚲸aLOXʀD& e#N} 9[ Q Uot0Za' ;_ ^Ļ`TE|w[)2o0*Whk9.PvbNP*l~Th jLg\gs:xePf @26ZpYlp6Y0u#?`I^<}O1-n6 ܟ< 1Ws'TׅAk<#hίEĊ+\X#JuԄ]rncY' pY$燛//M#(!a8 w۹lItR[FOGoO],I}T>fzAuUq>x?cd%(~Ft׋0 aÜh͆ŷhRQͿ|W^]؟mc(I~ ѷ=Zpsu.u1`~85Wk􌺣V b znr>1WL).*x` LRPݍ}{1/'1 ̨)zf d:mEzt@]D=)*Z3),yIt OOJmp sD1JtJb6Q{j_e:n W/BqxN/MF_C'&z|B)E<(icj-L!+,$+#zC}C:嫽 Ks_!Q \Upt^Np Ϡx<Nvp,1kў+b&QWۗR|Y ;l ztiٮN˽DS gh2PO|u‹$iIJrᚢy\eMq![O2fiSO7jEjt+K7.{:18Qkw[-Z]2h嬈">0C@-pオZګ13x֡"$IɨO:.*!gGز ibA ?AM"11پd|\R*gY Mk8F dZӇT-h;SmXګG;k)H .IF/hwVVuʋtlE,3}N0_M.+&;:}fB4* Uy[@زkU+3u3~/.mM˂W9??d+8 W8-EZ >%[oʣ\^8ioCH?GU5ZNN ɅjB)+F7pn ? M48R; jڳDXRXjkX:)D?BP 7|VAK˷%v#Z]{ѭ!^ ) / |̬ W*N3f( 3l2;?8+ptt}gl@EQ`=h>#:&KGƸ$Ib+Oz=ګδ;> |0~dmWi:MM͊irb;7F(N\hYH]$u&P.doV|\׽jKa]d'p%['wb+úpwT;Gx咍.dl2'??W.~ӎЭDJ#1"eHt'3CL >y;裑p?el.3M^"Z1Fu¨ZT=W͖0֘ґZߐ$RjٶMuZ(pW2u΅S F6wNe .ֹ'd 9Zg%zJ{-lp|)C=\9==ĕ>(6f3ߕ(8"BbEekDơ`|P2Ƹg1(.,ok”|% m\Y`GzE`p _D (&iґU6gQ$H&L z=zL9(jEzuU. <#Ky(w>O54 ԐҜ#vN|ݻ^y\1Qo a19\OxL}u6,C+Uk q&4-H9Eu::R:[O~ɑ(ܜҬC0wX; 5TTz^z,{ypٴ+lTJ:n&S+t_27(tfXjHCU.$䣕|@EkW݀(RdÄܠ.}R9m3Z[rinG}|fgNJ+ L^aQEd*EhPvh3PlfH ;)]; 728 >=S+f4h[2/xbk?jvZR /Q(rz꩚iM8r]t)hnn~!X7y8}e\^xa°`r)$W8ʪ|=C60l6ai +4Ӝ-J g/L`a㟦VH"jogxߝe4(6F /'|y38bClGrAeCx/ѝ@>|Rm8pǞ=KH IG EP.=v+DsF8?DgpgS8 ēǟgwN{018}`zBk r.~o*EgHMP6 *F`%Ҟaspcpehj=5/M:WYAJeMetDI+G׸}t,}OѸ!`*D57sbHtsYe =2Z\trG"s#[ kqO3ְeVKvc k=x)\J ӟf[ZT"H=D[zmu~k +8Qţ%r(K`g(t8UI lڻTctyL8aB]gXjoY|Pq9w᭵su\4T>+%Lfvt ;/tКiSmсdRRyy''xB!`+O<³6[zEk>V,,9A@>Pb/tKa傋Mj?0z,)FƋ=EՎ㱱 ΃TSIYޖ&HB5}w^f䅥h0x4?⵼ՃֱdTH(+:EYKεklbez/[rѡS'ԍR)shOZ ݌3)(,Nk)˲mIUY0=IN+PZv|jVF;"=y'nlz[R8=e6r),'y`fѩFM98wF¿LhN2j[:pV.d7!d|{'1 k}wmJnQX~צ`͞IFWRЎue_Ӂh;A|挥A˭%eK\nUcl.26L/EwЄk٢rd-ƧUTVv:&Xh\%, `Ib#2ģB?a[|CTI)HfFrRtcTuHFvlѳDvOl*B_bI1}INWߧ'ɋ1j7H͂JFP1΂o J5S jԐ+9iᨢPbQhH+S'gz`Ӈt%`:j(@[}Nx #//ɹü+:^iXpt`~-m)fXN 2 eM7Ur6?}{QtC^ ޻6I`F*3l_s=-Me Vēdr7-VCi鷾[sT$BrzK KZZeEZ U:Q!|X3D_H쩔g{YzFKO.1Qe(mNe+ q[r[W{Vy.<+om &M(qwQU 87G3-n.x[rxo ZTNfVd1_QT7r؈(P]7*d ܴd˒QH$/򒴬 jhwBۃtu\E.ztեoR[sameU014fZ,덳o52pR,$ 2۰%˖sŲ$%#uox 6wq;u {{#A *O $W_(=-taDtd0m9a; fG;F!XƽKǣKپqq@ņ~jE:@y\tׯ|֚pFQKk"s|Yf~fPFGu;߼7T^T(a_}%1j$OiDu}/B,gʋ N*+i%y\ ?QRQ$< {+;Kw]]'KN8| u fl; /Ұݽte iܠ0YJ:Q,re OnᅯS+O-e"I1哟Z2ZQ7 :+w~o~ݝ{`XգSTπB%>0N p_F'D {*P; k#&LX+_Ar [έ$Uh]XT=֏ՇSFFheVuPoi%y18[D/LE+ rp~IΗ>u+DzK( JvK95뽦ww^:L/Yb;ڠi"4:%ѯ nDVijԽO퇺rpDqi4=4} Yґ{I>hL\ -6^Ƨ~?pC}@ u;RIypjE攲Dx}΃GA̶ǃ+{ݍ3^r2ζgR\m͔\8;h^8Hc4?^t0,*"]!'/8{o ۔·.'5=l>pԛv'ccduG^Є eC;ueg7~k-KJ.IJ,Fm͝*=ljm90*+?ʒe㵒+WnEl,Z>U:w:TjwEW+6{+b/*%:uIN+fUrkUzwĄpo[a`4TE#nqmi ErEO篱/ Ӈf@lf[ZEQ.aEx邶r^2RF" ycbS^SUCpn@q>I_]~+cgd/ҍH[MSZ60\GH#gEy/b zPT!oM7YJK.L^u vRsqF7kᝋϡo1{Gݤ68 Dn % KW3WXr~$%f3TwAj2>~1ʟ/wf &(8ItQzvAs&_mz '6uQ݂Wn\-SCCt@ƾ5}N<ĩ$ւdElbҊZK<ӗ۬`:=gu/qq̢j`Qa N_7TE8rk*nWU+>es=~pz,҂{K4MTDf莰:誩vpT[oBpIOD($H[zR 4(DiqbSs3?mS $4W@O7apC9P9pp~㛦wǑPQu451j.uZgwrgs${ 6 QJY:EԖGp:mH?8ɓW-\5 z{n@$\o+/m=^?n증9q#- 8klUS׸tYxMLL^Ȼ04?\sea'(;C}^l2XLg 7iN6(k=4MC@OOzX2?+Ц"l^WTڶ7*0IN% 浗ϥ7_͕ZT8u_"V)q$(qi~:B?.5:ACg9N[3m ^S\[QN7TSm~7OU`<Ƙ̙ |ZηtdG;kU]S!k>ry2yh /\(%*MX[n^*lᣟ+ʬj۟zdZnw,KK(N?i<ɳ;"Ss3Hu!P+/$qh h"kNǰu5#R&"3q4[< L~ֈCtO0]3.B+T3IH.w~Nu&5{-XXKcTkGWGGoy}#)Td+tS=CVVoZ4r]T< /=V5\c4Ҕb%AFn$.3Ύ@p4'S ]GDjVdñ)eVJJQޥG7[ʱR+IufXXKSF)eX-ƃSZ+R[,8(*Ӆ^G)_fqXeWIG0AF9,F3Ȫf'D<,W!m$E] uUb2c6?E|5aaG}M h/+ _m6+76q]mR F)ʄ.l<ĻoD\VasqqVX8.:\:Z^3o]S1q { F7. 燏E(K$bE._tv=#A#T%MKuF1B1 BHJ {P" ׺kWݾS5ZkNIƷů}y׿1ӯ; xyso' ~í-ޅF[Ţʙ`4();toV-Ͽ?x~@GNsuXl Xq3Hx8y5 vQg64z )raׄbu4,h0ZKHD2)-嬠8,ga'TUo{bđߩx VJU Q ,c:K@9v/9,yCclUf; 7UF4ZY!T I͈n΂{w5O.9Tg̖Lr1mks<|| %ICzQ̏=ӓP *|λOr.oIzgzP* >u~jO}~Wâ7ɟRNm.%~J2/ Kpi(Ԣ9ҒNQÊ"5,5!(ٜٙez4mjٜn8v8qh*:A|9îHaTͳtJتU+f_Du9f"e JL,qil;8*arRѠBMN^Ɔ0J0e~OamV7RKWpѱѯ:CZҘk.OdG ޶C\ӻ2"ߟ΋VVl*Qg0YDrFS IKÿ _âd`pcAisL0_.7wMAw'*;b ( (,"|d㸎&R{Mj5-+@UvY7F SNMOP y {$Q{$҆CBUb9ZO>?xkҔl ډ+J$Q7͑EButMEsBsΰ'S dC.Zh [I} o@]}Φ)gg{W,#Qxl Y! h#3?IjXl+{~wJjwSQZhC b=Y^:\n[P$̓W=\E@} .e 4,ЙNC!g,\ \Pgrj(m?$ ɵwȋxlJK|hq&&!9{Sv|?Q5 7<=j<&TT!*NFnT:߹Gh%z/WdM[KLݢU,ׇTmMW-Qu je?$H˂1@gR>Ut !B5ط*/1Sd6sOzhmU.꽃$ T=v ٩;+0NKFF5Y# V'ؼAB=m5{*ujg'f<c?f23b_/\ӻ(\eΜ;s>v`Wi !&GX`TXg^Y^tZ*>@R]˱G6BtSh%F )~=9[yɶyҪ͈VUeV"'chypäFZF1h8ȞXͰA|ހi?;Vr GX`Z 6aI~*vmK@èD1m-.&5TB&Ξ]as}PJ Ft4e=H̔qITh:rg}:nR3P[]ݥ.`ᡶNQM۪nW)U0ܥv6ʩƀc (!sBd&3m nB=z|=" (g.ǹS RQ3.]oGIoSiXv8&{?\noa6Ϝ/Bsa)̓ pUlCѩQHuk5q3$g9 XāsYŜ:D#)ۈ Q)JsgN_Nv3D<gr$u(&W_N#1t1TIT]?Bd IENDB`content-hub-0.1+16.04.20160309/tests/peers/data/clock.png0000644000015600001650000002437212670026423023151 0ustar pbuserpbgroup00000000000000PNG  IHDRvG(IDATxn0O -p!P !yc|$`~HUUQmT&L[CD4mkUr4Sc8]x\u] !:KY.T':0[ pR%><cBt}Gɵ^t>fCocR,*5jx<ڈ\o%#kKd9>cF?J li-+)Uf{&ʈ>ˎ2QK⟞K MGLQ,I:XkBBUw0Ďjt#Zyuvxkh^5ZZ٣ESB+B=nn7z^VrXf,'_ᏠOA/LS[yq~'㣂#Cxbl ^aPaLVS 0`Ĉ" 8;Qq! 7"C||􁢩/pjnkVt:n\.g2x<"=wF#H8s F(HB\T Gt!JFl^|R,£a\eـ TiiSzł`$4 y`|>I|! bX*Vfn`t{$ ahC A@d" X!%A.K'HTÙP5eÁ6j5JQbPY>:_siPe4Ðar8d7_A h&Lx9D,|L )_.LúdŸʩMvj9ăITh4x$ì(V5% FkDWL<\+0wV``aaa 6b&k{^ۼWG]g|hl6˓@"<֡|?V[Q؅i8؈Xy#x`dҠS!99lS$< Fb,rOSk_k]u#!7 ۼ!<t56c 0J$7 AF@22dHʇFT EjI1%I `{l_g5KG̜ٞ;wns={kLWř~(1 OY駟^zu& e2/ fƿ E-Wko7]fbԦHpM7SO==>o=cΜ9a ;,_SNa n95햫 R5S;iuC=@t%Ƈ=5 [pj|YP>",SqmEb>U)7Qr}©!ʃuRR2 !5 ;X>Zڡ6&xi O0R蕫bֻoKQF)D5HI&\96S8S>, * rmD'ʺS[4QTؚn S>/Rsf{s0@rT:YIO'S>jEyշ4a&Q&hL-^nX- WOoy ojkx=dP8S>6ցHV"Y7V7Bne]K~6!ZzH>#H #j|0ʽ3'"\:?GHzΘ1n֠e`3gƁj4f]_{3q}{lxmP78Rjdi^1bFr6fm7ԜUl7|mQgz4W8lKgЁݹx\*,BC=>) T :B0\Ius 9)ED6[(UE~ǒ%.h[o)>R%%9ʔ`kڜCm]>űvʇ䣢+R ;GR@H|_֫1H=I+; |Zidbz]ju|=!cWf<[USW]u_nL;n9`6$0M `9U &yoYkCXn߾= dL6'Zܓ[}޼ lzMg,+E)ˮq˸1K.Z7xeyLV5h7bPnA7gİPk5Ԡяv̝'"MPrYɰ-Nɢ Z|w*UΌt+?.s琪> M\C 0/Z$KK>s 7nN;hٗn3,ObN fBNp$XT.wEVHDUCgkƻ)Z'MI چ hd(n\;cAV XHJ |Jg_hBYIeˆN?ݵk7ؽ-P /ym3NKJ[s_ R* HXieJoYGC.i0oJ@Ȱ7Ə:2 Ab"‰ms a̍zG++= ǑW+V z;.GG7 i1,͑%gцkf| oI*Bȸ:]vъd;=`u# ͞37,'y4$ ˓j9 fz ՟p"C01O? TŠ,qA!`R҆3AQtВ_I=d?ȡȈ jC_Ȫxʧ'ځM`iϡ2o:yYh1tpJ0n|͜ /0M]Zn"y!p' gaVh)HFFԞF #¬X c}y\UZB-kb ӟn?-˗/i$z,M`T;xd@QAšQ!A`*HCwⵚ|V,%]g꽴5UDH l0Gkh\g}ƫXޅGۊa1“;_5ۿ K8^k$b~aZ"= M`oIxˆ;2%0=HDk j!"AaU366on?O|ey45\ I`HKZ$mz2%9"PČM20=}[-& l3EΧ&_,Cs{W>9߭FpXش34~IiT5bR"̌d%y?<^Kkì.dˆ9~2}36lmӧuF%fT>txd,qUEByF*ԁ}gHHNDMDt WbLV{nP%7ʇfm>}/FV Hɮ 85>j:0p#S'RHFkACy3xfav4ov[,}wHZ@q"8x#[xѪG`IQ_e"@~CHnjlHb_V6͛ߟ?ᇿ_hddztɤً`UR~g~!RuFa$̖lFF^A[i͸_M53n-D(ܿr%`5;׻@5oXx3]:v@ZLKFEB!x<х kcj {i=`_8>*ꢸ_ Md1D8pI[M{禛X8|0hM(VN:i=4'0cy}/ba1lL`}{{キm[yLD!⁁-Ӧ}0m]z):& UXjdjE/c3"H1FL͇@>i.84}Mc@iCgqƝ3fl=2宩S͘8mz㖼\x_,]bDHږ#>+M XџQр-V%''ISӍDs1Ǽ:e }L2wt@l IO50v*o$cK: O;#3B@bX98f݀Atǿf|]UU_~t-L5pkae3R.K6r'ϼ R|fT/A: :B*|Fb*et G\nAwO^8ӯX1ۖGTr)F  +Jp3<hI>50 3< 4pef7Y=);%]ghd~8=;݊atR}&!rZB#sMT{QUG'GFZZ X;te L$BQ3M:SQ [؏7M{> 'CG2ژIh~,Q8'0[fN)qFY‹uj%|׵߮p X))¯ /`{>Ej 0))_~( :ʃ}֯j^B`[`޽HQa?$pƅnq% b.L &(1DaPM+̤.y7EH9CWOYTNwt=OK#'!2|uF$l?hnߺt^;Zm߼C9 )b^&Ѡ# #b1I+|+Cƌ;ݼvNcqQ$ FVZA0s ,A0([ Ў|"zf&,lfd f<ÇL (O+^*pC8KlXMtmG c3²>u_E\J} ю|XUczgtk~@³IE19%ڑOBN5M  &QMM7rG\xB2M6\0$ ̸J vF0LDt U8iUb@m5 iN^+ЎİI7baٖ`cy-+j  '! onVby~\c YcG '!DqxV)bf7c1G 5"! 1n? X.1FոżyVMۿ1Ak@nL`:& k`hG> ,1w4l G^Tu+8S-.lk 4/5 jX& X I '!2ɼ?@ d1dp:ݻD%%j̍"MwBjrޘF8ڑOBd˭^HO+PPt)pd+N0}s@XCf[j{0Gx-Ι&`^L{$ӻuLÇ:t eQC2v@~K*&[L1dL zrCV&X0gG@}^ qhG> W'XUb|hJ ם{B?vY5&t`NYITuyk{0  ɟ3!N<'9۷oi9o9uTJXky9hG>)-:i32yG˜KxY/T{]PJvFlL2V}e^x@5e6^k>; lGW@X@ӧ;jƶ̀쥫n=cmfMR/WB5ю|ܢRBx -@1?`oԶ. fݸtf:j'%Z{]??.x]Ԋyih8 Qt(=>cNBy6)/dIWx9R/> s $h QzƤ L,rjl4+;ۉlɾ<:x _|ˁav~r9KKU^$h9ڷ*nU6P)K1Xu9{&nyY۬D0%$B9v^rQ^a%~s0HeU)(ɨF8cRBOXwrtvFŽd.lro;& }>4 q\2%BC?Ѣ$}_-dz=;]8V k{b*BUI,GP7YA;ǸQERa7kb2AJ#[f&-KtdKƴ MT]jW[w9Zs3*ʖ`ylb_QLguӝq6ߏM8 (@@XxAuW\g|> j)}2U/=ɴ9xit^b]5q__+U+ @`" :asBE֓r? ^hmt덢YDG<k²R֘>V= o6Urd+X zv/No) Anr>P 8U0 zF+oM&Nqt $˚6SO_5)hd$M~hq 8C{z`1/;|r8A4^&LC¼c.UtwygbE "qsq89pΜ4xM^UrsR//,;26&71=͐tPx.x>;֜0C( dDl.IC?*pemMoDUӀbTZPO9DLL:q^`|\c9\2??zevc7Ɛ 9%AE(E䁮&JZVԋ{0LIWBoעe)|cB\.&59nmTGw II>HL*^46)W&haEi]RR<Ԍ%4$z1L]5Yv@ȧYZ53?^LJl0ťr:r)vX -,̢vl鬧\^H{h* PcPƐk/Mb}ysQ|< ^ycޓi'-e'u;\M߲lERpb2%«@ٜUE2 CNWX,(j3Wwpya+dJwZ 8-. # # Authored by: Ken VanDine install( FILES webbrowser-app.png clock.png Joker.vcf Stark,_Tony.vcf "Music Ringtone.ogg" DESTINATION ${CMAKE_INSTALL_DATADIR}/content-hub/testability/data ) content-hub-0.1+16.04.20160309/tests/peers/data/Music Ringtone.ogg0000644000015600001650000321772612670026423024706 0ustar pbuserpbgroup00000000000000OggSC4&ƳvorbisDmOggSC4&"HSSvorbis-Xiph.Org libVorbis I 20101101 (Schaufenugget)ENCODER=libsndfilevorbis+BCV1L ŀАU`$)fI)(yHI)0c1c1c 4d( Ij9g'r9iN8 Q9 &cnkn)% Y@H!RH!b!b!r!r * 2 L2餓N:騣:(B -JL1Vc]|s9s9s BCV BdB!R)r 2ȀАU GI˱$O,Q53ESTMUUUUu]Wvevuv}Y[}Y[؅]aaaa}}} 4d #9)"9d ")Ifjihm˲,˲ iiiiiiifYeYeYeYeYeYeYeYeYeYeYeYeY@h*@@qq$ER$r, Y@R,r4Gs4s@BDFHJLNPRT> "9@@OggS C4&\lt0a ɉN@W{p Q/-"ۏux;gWèKעz#1 7"):<r%`#zϘoy3STZ 3Z![|1&;UNAj7nsuȑ@9#"_ 4dz1&HaHC-QA͞ݼٴџ~_w_______~͇7~nW;G5juȈ(q?[?_Lr?~zZ8myL~rʟuu?}ҽlq]3Xnlmdyv? קoo~{}qקqz_߮?^xLՆȧ[xVk|:gUӳ]C^~9|{.R6>]G6OsGIqݼ>znsߑU"p:Dc~ 䏥>.=gUi+SVWR4*맋Q9zeg_GBwWVq|׺}@ܽ&sZ3<{NʤJMfd%Vg&wS[> ΁ٚt=Sr8s&kQLOI>WH^D̚N-^dE=Cgٳ&t6!Q%8d>;g~Ks~O\?x>!9l-W+DpJ_= a)ۘ}3+Ey_uPW=, @kXwR)k$r4o[` :"&?<ǿVSo-4_"QᏻuE[.ow7\c?PmdFn5.=|?r.MMϐǍM{~/8}iTV8#({c^c0e> 1Y?BbJXh!]Xa]_[R8i~<>fC{ȵcƨWsi-_Uj O,h?.mlO 'l'>>42 \n'#4Ub'a{#x./~<%]n}69SBKw*x{\寧֡ݳ=O0f8 oHF#y4j%HiӘp@}j~NKaU~uVn=[R`έCv8>Bh⋴W9:z>Կz$J'PK|{oUI,-x(c^\?QGoHޜ|Eo Α..'Rw0›0oU?^?(X=% Z6VȜ_y*V[sߑ4wQe`srIŽVq8k>%p 0I-Q۽oBX[S<}g<%`:kld5`]ό=k\"2jT.ħQl J^bh?8ڴ`L fx~*u&y5nxŁ3;",pS;BA؄H6|<=vud9I/(}}_ys]Ǒͪj޸~v}[WE7i{:qz|8{z|y Z>enGX5g"?u+Ŕ͆tC uw+!ͻQ_-,VK{BК- sI&Y\=qQ 2  `o\4hoSA8Dŕv=rvQ+$sb/DmH&rxva0i؍]bQ6bb)vGZuCL5N[iMjEԊEݴXl],b5'{t2G9jhAD&<0E{BKWӷZtD6 2D@rƹ&aEmηG{޽OW*%NB Qzѩ$& J^t2 l<a,X۵$@Qb] De%mEUŢb抃(`X0"&e-xUZJ}{yQ+!#Yqo4SV/Mmã׮iA|VCf ~#&n+K:wp *Fm^ k#t'9v 6SJ5.!%JӼpn*On+>ߟͪ])2w^̍0t[mM3YEf\Gu/0sj!|a)cԕtb,tM{ޔq0hAh\]e=3]jԪ5Ir Jv7\)N%ů5p@CB35]T|# E"8VW%s]^A|sJw˚r˗v7%+%ls'z|5 *Ϭ@|Գ1rMŊhhL< o%UY%_"9;T^W&4-T${Krc ý1IߣCJJ W; Di'Ϝ4YSDU᯾)EgqS<)|ԝŀR]BdZ$v|9yEtg49 cEo>kYmֵ) c7`PCcROQ~5ѓ{JQuӌЇt'}3o|\g,0-,<ͶBs9+,yLߡ/Hu`W`gG@ܶU{.5TS6ˇZ LHqJa 0bYF켺vQFE5"A=If=;)fWm =-VxqއЧ</߉WkMïV˕Ԝ7-USฝJCKc%BvcTѺWPWjSJ:WnfE9ʻG]G,ENU=bq%5J]3WNl^'ci1x}nt2qU6_r iu ;{ŻZK`{?=)7L,BI˸NJ?a>^yQ~a?^Wq\ۿPƤ{^T3קz"Q%EEVŞVJ\I.7v;?c76칙_7ϝ:Nѧ_S~Z<}>&w;?~oVuYMJu,}U펒7^6.=k};{J |H|R=ܼ q14 U] [[:NW`ǀ 3x$':lU$?=-('\|_ƫjVđL(z=W[YZ65ksizV/@ 5Gߺ~W+d4=|#R7k## AG&j-7mm"뭥.!Ҷ7J;^Obp"c w&N`T2[Tȥ{/'x:/+j֡7.G%%iʱ@HzY'}RiJDr4Zb;N9J~9_.G_\gO1tRGǻOfsgkKCZIɒ^9lNwӶə_8ԲOggS@C4&JkԱx3^):T4ƳZp$ B5~!bcEu 5| )9"qE7uΧ16Z+\C2VIb?a1f/q1tm{I 9Yx8D.-Pyڀܲ{|z/ת̖֧뿑u~^j:+dĹ6ÖR]wh`fk[a+u\OD;}}q Zj"-";);Sr} ܖY"uj }.8BD7_S\&7wJwiKspoCӺ{`A1c/L(&722ʜKj3իQWxc I"Q>s○ ĵ7e5nJaNl,*v;Fs{pr=]>__ǷsU^kfZ?~k:GCϱX}/c;*V~x>oʰ1n U1TĜ%Kߝe->zPӱwN0]Qɮ-=iV]n Gcsn[@ES^ bOvSM|?k?|DO,$AZq]FG*c0lG-ïG>cwaߞ]te}u?;//=ߚD־]>I ^!ؽ>;IF]Ri~i}B%Ƣkm^qW\ˆ-2-dC+js7Z/Y il2-[QtW4+ p6LzTńL/wb>Ucʸ$ة0{<^|G#n~4/k;ռ#̚:QQe~o24 P-T_l^f:&Vhw mqփ< z::e@d F3gדβ-t#`'O٭t\Xf>$;cD;DF^-@)r( V4;6+.A:͇iKa3:١Yw!.1 Y&ӸH40|]$E4F{:ݶvŁrJyMI|~LPا6M=V4W`?9% j͗׳eY{ x>stD+)7$* ~ᇂ ֩˗e@~)?+PB~RȪ=_[-ODT Ы_5>yFK-Gm?Fad?>YRqvIlwk/1U]g8ǀ _(?o^莏DԴcaZ!|n^?ҵ͜Ie h||F~,5v>ۯΫE-ߵԯC9kZWgR+ E|v2+,;mn X͆ 9)!,vgfGo\nrl_VX RTS>*:ge(D|_\q}Ӕ|f|Ee]n4_ cnSts[b w\?ߘMj!>][[ gL{?(&ݥf-iujY.{8XM g4{-~jAU#<0SJT6NJk>HU$8Wvd/] rM[%z;ȞZvuWƂ\Z0JE2Jrz}"ѮPUie}xUǻr]znf'wǿƽ/֏׹ap}瞼Xr?׶lS/kP4?o5o,G~o8PybǶ6=stGWx#C={=+|5VN8R?Oo~gJkQ+Z8k=QWP34h\rx8 $.%}H"֌L 3Еf![l_ruzz>\>^uygqswT3L+"<$#0W/I4 T 88Ǟܲ3T)ӂ(YIJM3!8gOxݟ,RBW8Gא9k>!ٔ~># 1.Pݍ%A.mymt`Qk6XxawaM`ȧ X?8}Rvo{(*2h|#^ wsnuB1`iU<(u@oo"7}%A]" #O}:>}Mؚ ;%噝3&rmu?eMVBhB&UQ5F)x}!R촮ssu}WNtSsw0>1[j! t"馓W%gvۯ HRU&!ٖ 9g{sקؽ!Y%Yc@ 8=b޼d@!~gTkJ/㫹}W-I])# Gh%.ƻQx?C0{I}'\`5˼e_Zjd(%=x} GvE Q@@l\|8T!pMnǵDLqԟA'ʐJsN_4fFF"ϖ KjKMwH=C~vE^z=Twq?g@&S{GJz:*? *J Ĕ wh\5H84lQ 2k'HMԭY@ϹR78ωV3N ^Rs @*n`^H[4*P3VVn5s t4 4zFGX̦/~QxSC pۈF.rDG+6+ɟzTws7Ϩ/kk;RۧY^J*kWq=ػ `oëA,ޗՁ"w_ S1VKkcfeƩ4*\)Ic(r#no gY~U.?o~1n}E͚NΏ}=jt̠öSRbFFռ0W_KO 7ew1O"+YlmC}J/*YsKr}o.7I$5TjB?}h~߬vgC[PN>ܼ=M(*)u~7ƾ>q= L{Z>%}0j k9# ҄ OggS%C4&,7^(qs9O6eI)q=]7٦dL6ToWUgd1o aOg{Z FXO9>5@~WԨsWz׌$Q 1D}^Z?CEVI8ph8QC>s+9O*g,:HyO-(j{Se~y&r&|Wdz|:[ph B5Ui=J^j$hՒӠhNÈ ,?gW5Oywy<5i+@%Cz=~СgT{V\t,0PAC;kZ!l󆿣.I=PhW\fWk 㠺 @u3rf%-Ԟ$q! ]W'Fw+!kUљ!ѠqDsO#1>[ R3 dzJŸVqy:iMvCwٯ[e*kT3~Li_>F~z&š^>V\ڣ mgߧHߎRTtɡ;da_> I~r(̾ϯ+FMʗI?م>CkAw,dOXX%iTMXm;>DYQ.1i=!NwwuvMx$ƫ[n2L-pm糿<pc|1~׈MIJ9후d >{%>\VI#}jB)rʺj56NC2O76W̠ڷ3!cQWڀ7NԐ@*u啼ST`4#<ǿ=#I#ɘ{ݫp{{)57`|j~3BGlzd+ݝrd}W4Ik( H4n.T-lxMPO=BiiH +Z^dMk#: J%"dOh #Q':@O*yds>.~mx$@N\ :9)^ ՖiBJkP,A_/Q3BT 7D#4{QT+oIsWf災kԚ Z u9RjgSɝZŔ $`Z>!Z)姱xq=X򭗹4y#U3c7; fݎ׹)}Zͻ1*m/wQ?7s%J!hRұ] SO1W)}?V=_ (T^R?VK*z< 5P聆Nrw5cADqOw$EhngVPHt^zU|ګpھ -\>He+&ͯ߁,.1(cFnG{pW}L䫻^^z>9u~,F.oK 1_&jRqW>C1;a_l*!k; [k}cOvߌߚm}L_ǩݿ_qX}թ,uO["#GH7]hoS{)mboZӠb 9&zcݞO7ߊ[6xes;-35e6ZS[V#_cͱ H~mSRLiuBR|xuCb%NW8NJ̨7*QB#$n.aptћqYK;CF3jw4 F 뎙gbmidF&vIi&ʥ X D6[8) J D%?ߊ02R~XhjYm ݾpׇL[} uu͢-+v.`)^>c7e>ݷ~egȆ/+{l^Χ 7-8M -MVgUS5+puI!HSjH&Ex쓇TչCabv QɌGK JElql5@F#P@U=Lihh?[ t/yǥ[ uGrds}ۘą ]R<>M\&MLZukJLӎ Q. GD;ĞfP9:hgqzj8T!ȵ2@L3|qI:[ޓ  w$e#_uΏ{DDK3gf&Ф̔ފn΄Dw4MEp~|0Gd+1nh)fh &lѮW׮hz)2ٕ+%ٔ `sLOijsaAE&XAC^z n!4~^l37p^5,ތO)ޝ~ykJolʜQOa'joyv_.c%߇>7U Dk“E޶_'E5?-u4:"SR;?W}?pO[zxB}ۺI1~cX{"es2UL{njSHV JdH)ˈqfV>ϝv׾B8m3K}S2z~Z*}>v7Yz[ >("[ϤD/G4."DS-b*oBh/f3| Ψj ]ISh:ٰ:=y[ڪ.<ƞ%ȅ]k-Tfu.}m?\Q= P[i*59G!?o5=SꜷS΋]Z "^4O(8W3Ec)-8Dbu_F}:P[7fw. 4%7qgz0IF3;zeomM.{J|BgP^DtOggS/C4&vP,~"F)kZ"l`GGcy5\m[a{/@[~lMOTCU9{Zbz~ɛد8u)1w&%A V4 Mr=gU׬\r*^!H7ُzPg#io]TZAPC\}iòڥk}Dc׫4-9.߽_u<޸LtCe{GqjQ ekr< wJQ>P#Ue0R[/βzN=E_ 9o+I& OjWL0LJoޟO:nGg>I ya 4n(rSP d%Sj>_6!W/zR;εBA3H|֨OSL9>gs*  =&=fMjFl׫jоFbYP{Um,!*h*7c_>Y9׶>[񷷛II:~m[Cp@d2+Fjs'GCdNosՖE M})|V >=k_υr{NdRbZ[55mnP4ag&K (k䑴w(œHXGֻV2XFڭpV2bUUkksJ^Hȏ[ S!V?; 9TuLsY5.dGENW"VvFP9%ɹ1~yŁn+X\ZnReߠ#ov㵩TkG^Y<3 >avvVE":6>\h"Jb k֨asC b3X Ƃշ+K2΢v6~yqT#ݏh[-| T<;n99|6P8\s8ν?Y7}Y;ܩ\L5;&, 銪xvbCX1pCKkkSX=NqaQqmK5i(Neu8Mj]+hyՐkZcec|Qˆsd\/ _U} Q(? imCBҡvƮ:Ł2z{ =& үU8nׇe4d0cW ˴Ϸ4 ^x!GM/ "̓y!lkS~fI^Kw}_wI5:t{Xҿmt| 4xeo}bpFKY,f&շgFXg5Ȣ(j8 `2pQm~oF.{|"@ l&? OQyбmґ=Xdj=!PbeM>DN޵k{]ΧB ڏC4R.1|15,p?b`_}PTjˆ)+b85ݦSu?1G8YA5&$5wd(#jٽdɇa_z9R(?3oܷW WsSܫG~pu6~Kjž_)xy@k?w+Qݫl\GpF<<^Qie$`D2{z(Tfl56G:}~]@"7{^*S@~>bK lz,^HAotTqUQWV 򱞚.?檩pسpk=x[T>CMZ MVWȃJ^啹}">)2:׾w+`X"CG'me{G5ۧ>}RaܚZ#GtYFQ{')wˍ\Y:tQtU9 ҅h󑯫yMB8Eh`wgUvT|Ht oWS<\&\b1gS]_>ۖMӾ'u:20}LuC⚩Uv޸}#}6ͯ46T<ԑz4+V5i Vo]͘z"e0 ôPȨ!q巟+5^r1c w]8͒ jM{-{^Q0O?ꌳ#;O~BcSm ?9vX'mv;na@ D% V=$%^z*ʗ:'$j)z^yb6B+ZgV4h7# uLwlQHO60`|qͥk唍S㰟r^1q۬;ﶈ}ѵ|T2WFɌ};Uu7ۗm!y=5nGYU ~_#u9~Qx&:R.5ZaL `4\f_nΎE6>|Mj0˷Fefop}'T<1JOs*[v4jk$:veyɳգi.۵hb٢HL5k%NsgC `v N_S ˲rP*xesz0~ Z仮m1[#qӡ&M"ۉ m>?7<>Ãfa9c}3C~߶ jW\?邞K6 Dr )Z-q,K76hnVx۟Ǯogmƿ?_8/Ե"!OggS@<C4&7Ӿ1h֟i?9wTuc7w@ܬ{;m L#l`ϵqUpTTVEw0}WlbՙliVj̠5Cާd/%giJQ`+l$4΋Mu]coWHozme-{у/M%7qlO %G[FHn6fKG_6OMt/p l;q7/_lgUZ<ޜ3e>\1Ro|7nk+nzV7o',PZ9˙C&?Lcpk$Ӳfy+;b-r F&n7\^:?V|ua_(I/fLv^,NwvEz bMVedf缫bϫ=ߺi綫*sf|auk2a̴eq?~4r6ki1/'~}f+,no>V]嬭>j_u%pV da3 Z\@Gz$.Ut央X OqԕC&rڅI/Fi/H I/\fv$.><=կxZUޯ_ݍz[D ukr Zf-(8BRanz_??qGGF0[@7Qi!ڪMr w6nn}4%L ll#;2_NYt(o0j/G_0> ك9ut#l$kE,2EU缧fD$2eV_heخ57O=fUg;#VV.S7FfăfAyrzv6ˮ^܊߫ND1 tB&{7RQ=w-qtf+8).ՁTGeM6~TO;q2syǡQ^~{aB; $c]ڔ?yP'j|Z##𓗪a?Q_xr̈CzyqXG/cT/<@Rw ^&"שf­3c`)8h̟NMIȑ,AY;c|uT4 ^#IbqT&Zu+p#GaO☘ܭZh&uN~oy~=ܠZU IUY"Qz{TRT_dVFaS5xvvl-H@l;pz sv ڤ' 6j ] rw0y>nۇXOhlU8oQ"x>t4:*?/*#vl BׅW! R[Ys>(r $d:Pds C"  | \SjN{\!޷^b"3f,p& +Il#*n"T %"Wd%p 9Ii(܍u-|0k 0/^7ǧM-%4O?d`sіڣɣRj~vw.P|7pc!7<Y6 r`2i2_ T+TީxD An) X9>=eѶ@\'P}ݳݹaaa+<6(t~ eXM֯0~CUόgS~ ϋcXOqZR^ p<3H+2Qg*9:>6FJ3&w306.xbh,kCBS޽}~,B]Hs8u4*%ClKB=`Np#t֖[dsRb_ ɮa6MJ\$nKny_s#R_nlv9^U{JwC:6a9&/v^,ütϣ_z쫝=:\!Wy^\,mt?\C_>X~˪O"ıK҇e_8,G9a⃙h5 Uwܽ}6ٞ; ^ _ܩ5"+~;a&Wk?T{w2' JZ73L@M٘yqicvđ}Fۣ "VwU5"-c#j֨gWB_<z\ڽ'.-15"pZW< {Kq`ß^!i|SG_S}hZAg#(ͬ\uPf.3s70y qܾOMzDkTH5++k~"Ԩ]9rl6˯xaa|0rlZNrP}.t`*z>ReO~f}?,9 I-}ԫ})B'IGFViUh}.A1y}ɣ6f'hRl䨇H36u?_.`񜳿:}8H%VH/`̏?i_\egfOggS@LC4&fETޛϦg s3ua^~A %`R=eiH|XݟSCsh'PIz~ۯ;cuSk%H͖˖e%[$x*45r}c8X9iox-\bjE\)*3Yq3=u;s?_VTwG@(Ԡ&HPK b#"Z=:Ȏv{:_o#{e$5Gݦa@vl6;wgHGHD}eҺi#_TY -k{GqXvt]꨾IйYV^\J55u送  MG8ni卸@Z5y]1>4}awwYם~_.Yc"]~i-1n RǜT>RgF1Z}2>3q# 9ly|)%X9\s.hĪ~yha؅Fa ."qB~z,uܨqIXۍݒu!2n~k߭:.P21M5ɬH<&QH2u4K"K>ʯǎ/cPUi 1 x+'lʍM͒OO` zmf#a&:5P)(&M@n @n烧)M4ta까U[S$+Qʾ4UVݼە*3S ][rZ_{nN[sxC?MnWI RZF'Ң(:Wn gP l3JQkkfN{TY^F~`k$[ghrϽ!>"9dr[lKcf;R mҸӿrOgw%茬7ZF쟐8HPɾ|&fqk<#fA>9V|KIS@4 T'2!&GQ*Yџ/A1f]FޮDpՄR*$!IвQ /vwa7ĊL_74æ1?3~J@kl4ȷ0U&3-i7ݕdpC=F4TXVz+ǑQhW9wS?p0K fl|w S|ױ>jߝ7yÏw^ (SSRR?\ ˧'8Xp۱& |#j0׈5HJkĸ0dA"%y /YWj\@8hhmRUTw (eF4|cd CZ5뤿 8mo\V74q oIGuw͖q:?a1$(!No Dk?=Æ UׅTV}/?{hzD\ Ols[sN~sI\Gos^X(1Ga$Sg$ XϪ 7=2/;k=褻PrEN6CX`A+oۿTrU,sk?}u?+S]|~P5HGs#Sݳ|V [5yc@^do^f}fo(:<_>wNn{^ zSvM<IsVsG8s>W\~I[OF85%lsBz,$ILlONOh^<_CUji^[ r8nO,e.4  }yݟ*1f.0uDF ̕K ,$(@BehF%H'k|5+E֮rUqpJc>_z_4lɕ)h8 1cr fmILWzw޳""QؔٛlX[!Ƒ Z$y~e^sMb+el)KοfΑu{ͩ;DƿE@d]3Þ}CJt w¼]pS/tr7̴]sF[D?_<]xwuLbp-)׮2`  -7oS{I"Iqg=W|raYޯ>W@krO#\;ZUFT' f%>Z՘jdoh6h|Asc|x=#tWgn9ώVz"Є$CYT?qsu dBzHoN+gPpu״p5Öxm`ߺȅ\UxBj:v{)O{znD^!K9#ݒn请w;sO9M_غ+>7t+/ק´WcVNZ^A.OjB]h:n Ȥb6Lcڮ_ܽV}E]b.9n" uU53s=Q\"u q͏VO㽪5roLaXRv+"oC]Lqx$5c3[-k:2S]焸c;х Oә1-?Uh俻zy{qvm32R'xv(C[bFc՜v9upy'gJ.Xs24$nt<=4ե⿶0is1skM9cYT |A%9O%U"r\/89u[ ?{8{FU .Y:wM4'H^W[q@5WYw,V`m>zvu  p`g :̏]' -$M">O' uqk(!;U3>替IGK2HHf8_xj>2>h9[&3u.3_^e~Tm)f3vSk tl&ۉb/p"ҍB..z+ >:p_bR g b68W4)`65=1wY-7 ]GWܰ nB:E)ݣXl~m4LaWڴY~9zdLu^{fMZaK tpo\o eL >Km eIܪ~pyScl,`2H'{m䆺~@c܃ MX"ƀ0g=>C@6<[}Q~rbޏ|}(Mer~k;w78S=/\'[ɽykQiؤ `wQc#8{ucPz1OcB,ʭǭ[@ڝTi.`)je}V-QT}IS_|%Fwfdd}cɷٻW/$j~' "pL<ÑJh|GȮc+ 'eS-=t8&ڔ袹5z2ӳd?=IҔ.  WsUZ%\~VgUb_sB)O &*xuofӂq/[_ٓp.𩬳K*zZݦX: Q0g4~q B"%EWMh}qwȯt, B>$}Sju{zԛr/UQ**kJIùoB\R>PP8'_yxhLBI CŧOggS@\C4&Vkeي;]l&H#jˉKu&_@F:;WFdJvM\IӏfYj8^C-.ÙﵨoEy,""5s};N@%z'W}] *C_0UXqMF1X 2qB4ԵR3wmu|}.B}яۗ.>٣.!8+;Gh$}n83}Hy>C<{%OC^u32 FصQNUfUq: ʴw3EMYLՁh@;v=wwG[MjƧSPEzC FEkЄ-9J0(K]!:YpOpDv+82'^=gryPh#gR"^W*ek7*0I!p&v)ヽx=- 6]ǾgNS=b\H/4Zs~P{ST(^Cgq4St׏B{-o- MeJSpTj8 C{i*~@Ie6

|v0oO[EQV0DιzV~ "?An_rsbNV.Ƴs~ w[]AZu{U_v-SwB.q~'t 5 ݣN+[3DQifK(v}յos!sS$Vsw|I@|=tqY au * ~~*ReJ+🄫DcnV'W_ D'Er}Ahwwwɗ'_g{|xKpu5ocqG.N6ǵ;KNxq]mf E{o>;dW|88oYxmwYs|WEs> ^J8 [z_Wﰒw^ʹK_aeyq҄R~黶Gηx:k!~HPHyc 718XtȖ my8ʗy{GF'C^Z3VyҖ Kn|$}lQRYጚew8[gi5y ڮu?/1䫪6cW]ͯ]QEj7&~ |?k7^|E濶u &,*!\~+vMŨ=Zl$Q*N\^6s7W9(-0pQZD0b}nhwWe=|=kfw=ӫHNxGIV%kWK}?a]kk5c}o}.gULIU)f]ALV* F|r1'I ,oY0"u9@ SbNA@ngS&fDKGV=ڵYg2&bweL'w}~>dܞqĻP>=C fHJPėtGd$TtjQ{̨)4]?8J4UUC̢ h9r>LT "MS 4zΙK+7eH3.#@_;S?WG`|"s`=v%ɏ̄[Z~Zy#d?9sBH~_K;~l]ރ| _!߅P[ȫ.ˇFOA|vڌ֏8aW,|d.{AO3#k>Fo-W$ = B`V2.oCKصrݒ%ӘU40{Tyi|H'{-}~㏽3g6xh/v~-Γ7iZ ijYկdmim4j 12YUҤ6 uC}sW޼Hq{&޵}n-uKǍ4nhmVc%ĝ{*LGbz}>j\L[?_?ʫ4/%׃6hG\}3gL]+o)}ެˆC.+I.Ɛzrx>wΩ3!*mĻć}t 3+sFy%٬F,3Bxnc\˯)e)bs/Z*4lb Ȃ}W{T%;)R:+MʺғCLEĸe"p R:p @A+Cqj_ Dy"B-xQKq6sV1*( JRǮ nEηJ^~7oj#GkEJ}l} Ҷ~q @ 1B}wk΅5Lfޅ9\I2屗[UjsNUf˗2W| KԂx@&xӥL:eSԻޛW 63awBq;{ΚT(P&H7d*7zU" ! @f>S5JMv>[I"ST"$фO@qbfSwҢJj9+뵷w٢9u|J@_jqgz6'&APiC76LQڔW9g ;`sOd 5ӯ.vrSJi;Duy9ҩ&?FNKX9I1bR[UދfAe<']i Vws2.0:}~_sJE@GIJ{i&xbV>D6>0X V.D&z($s.X6#i㕷ߩMc7d] rS66;˾3Zbx6^~4E'7Lg8f&זUNa#w{mjsD\'5 {On!&I̹1\n}v{,f.)Wߕ^Z=Lg8W5jM/D~ɑyo ßiJGJɆsT_9ڬXY->s>xdݎ)kx7G\4Qw3$̳iL1$rK}t `&Qƺ~.Bz4tOiݦ߿ڝIS|p~:wKIXsÔ͗"7~hS՝o6V\$/0l [D\XY2Qm~>ixyw;%m6ڢ>M\XIv&1E6Svpåg?t~YiZ5C96̾,nѴNSw3Ue~:x "!~2ҡVOggS@lC4& \^1x &kAX9h0|p_3^ZA蚔G Tv0 C7J?HI*YgP3>>ǯMڕȽSHn!Cuu;0~_ wZ*uv2pc>^qI<n?xzޘk3gct<tfp۳XLjkdD :||pя~8ZRU/)"RɖPiIQNلꐇrݏo2!]unYS!GY+\LUݝ֪uRLGH#S@Mɮx\sX\LJ8;™\1sp09];ܚ̲*"/ 79 @' Sye>E?R]yqUG`jîKHAt mD< lxIj=r} N*UIԯ Sp?p,}h55YS]+>=oЇOxm6Mk)+Ms2krPeH'w!7ݾ͗$+X.˾|%jkf-)?hFVm &5V ]tfb]?PnlT8r{ 5ntg|o1~`*Z@\|!)FFR |,q_::q]`sփcһXڎׇWfP@RoB\,+$G\dMh5'b2R:d֩՛W{vɕ])~e]xYcxiWZ9y@**()lN&吔x]ݳ^|#mCag=G ;H.vPn<3Q迳$KfM*S#Q-SȻޑhrDy}}L@ɩtkL0c!-*˰ƭUPpdJCzhED]|AB9z{8ӅFO E }:,_T]{bDXΥu,tsP2FgO3~'m@,MܶEcw3}Q)fOI[47ފAs͛6;!wUTKñ)Bca)3.7N _wwFz)CV|@"5gcIԒm->p)x{RV/~+)ƉW&ܶ /*CÝNNg`rW@?tn>^_ <@26vMqw4\h><>s;,qݓw:Mtyou5266~Zgqs˼rG[yOߤSKDb%ޖ֕.6b区uC',ѭ2.|!X 9y/xQ=hU7ӵM<'@<8{];:t85NXnr^^\ު_.7]itj RkG gsv`n?LFP}0#v=x3#3>{u~G~9yRQ"^䒵0z5cΈpg_%FJ%rڿk$5P鈂!ק"yC)Ygf"B/eJ,:)*&ct)1]]LVE;$B=Cը==6Ȳ}+,"IOdEӉpGM=ZB3&N?x?aѣSGZu@ kQ@R K{ܯ.ńL0 .X#A\˙c_[|/X1ЧP vķNyO@[qD OG 5[|XDr2,ۂrVkjNYLfC0ѿ+{v3HUΤIȗf=5\LJo~;\=*О0?)szN8+ MtXX(^{2*so'sX {rB/ٲ41_Da/m N[U(mSh.|Q[}vO:K&d3?#H}W#hʼn{oҺڲx(#s[\[C^ƻj>ޱ ͨ4:VM>v>.?nEY()V|ID`K{~ @|Z0t#1Kg YVyJ{_gf}YRq[{((puyZ`#xe_u7/;JK]/j/Lj2r.ulI5&^۽ǼyOۄ+⃝pVCه3@ƚzڑ*γ ">>ZYn)/s7 % IzmڥGp+ҙWbd&߽=ʠOp#8q?>8U{Ё~rQ5T ҍLPڕ4ޏ!J!*xW}NmHQhe>:ͱuuZiuz],Vw{eAuc_\jtU!Of] v6T hzK!k8G.,}kG6ӓ+p+{n'>X4E?ȋ/Q4/Rgg׽`g<{(S\|x.v/ПYSZ+ ࢩ2cpO˖[Wo`ևaxBbhz]qfT׬%TqT+~̮`߅G߷~,8qyΩTTJUNEn>ow`&Ȥ(";" iM9@RM\bdfԢ,%׎m/_Yft&U[e=Ԍ"qXNE>PϖVE:נz8R8AJh6;ΨzօXP}<_zWmSY^Jl{]>i]sv#T*su'ZO':NC3 k78s(C΍|/qG)*w??ph~Mͺv/~VnLUt<C4aPgnw6ѧ; 8yn](qxg ozHoZh0kl*~/+>Cͅ]A <7'ɇۏ5owb%V]XA>+v9trXps|q/0#r~ \HmY Ғ:ؙ.>Vӈ-za%rrpURMu_Cikf2WK?vR\j\;˗՛ i,ޕT։m?,_Sic1OF]Q}4׾(o0Z֭Lh@R[7],i:~uEo[Ț7ȋZV+sz-$pFڃ-<~H%݆U42ISweΚ]nms~of_\wH s\{:N{ldoUUE9wy8KKjڧ6*O3OggSxC4& =SȶǾ4DLyš:)଴wx>ry?dolw'LhB֌RMKWv;-46>ƜQu&&7n~SKw\u ; ׽<ț^Xz* )IRIwwK4tERf=ܙ19hY,yQ7OSls@;Ho]"?okGxg_3=~Ǹs#ۤ;eǼJ NWIwFg; #.3E zhl9^ڗǸTjgW?H-֛v u= "踽&5M?IRwdO\o]R֙Y _iQm篖56#1ʌY7{zYwidUƞ}oUHPٗ l31pW/]OXMv{?);qg}MZu>y-vpq{7B, ȡeI #/Zy%8wO]:<=a/ڌp_u똸9b:L&YUXI;:(9 Ζp⅕4;P=pPqWI~Hp1ZG0}~F.̧cd=yb鮿|ۂX;y Lx޵Ҫ: bKJ,GO-wO 71*$B(EYYbnQؤ|s}Qi™ȤHIQ-t;v8h}'*` kNśy*eW,ǜѽ.HkQE+vňͶ=/z\~/V4ػv{"7ʾCn !pQ`;ooi5a1BMaccc1iXl찱@oX,j55UZ-:-`s`ZVVA̿KcD֗h_>GAp VmW].$֞WuzѬl%B~Nd{<1GG>1Ud#?6 R}}ug__3|y2|o,ßۉD;@h*T+"$V;iGu `RdͲ \sT{qh8['tyCvI&ƽ'ΪSƒ[5|Hux w?ɿF׼>J.HJX!}rT~Cͣ}[+`>Qo>q7ZѐU(I""|Ѫ7eg0U(So^=Zg1VOiqOUG᥎1D+l߰o.5fbM&4Tr9JʀL[Ĉ}WzML)Tߚ(q#/"#WfS6j;y3}cs3OUؙ +z yS8d/85ug_vI7y*:/2j^C۬%lfeT$#%YO[uN }WM?rڮ'Yޑ 3$ܰEgee h6 y&쿵>Gq9Va 4q\{f@ۈw_\ⵞ+;,L#eYTeZXhϝ t6',.qϸ"~ζr;wKYSOb]}|o'w1p͗ĸ {5'8VV8N}|>\-]w}Xw)l/H""j l =6ubJν_G;}\~k8_@GCɌ 2u?3M?̿M$=lVjP8NdZH7R1upGVRs[Ъc iCvںP1<|d G]xN;|kd^{ nu)NyE$t|Y$*I~Վ1RK"rK"u1~o;ۧTFi3_}\OAg<+3y#C=סNXOUq&vVZNx}!?/ݿ۵PAqydu2Z, j =ϗg0ߞՖ26F帒mO5E;K]ݯօwuS3{6f6#=+5u[A9Uۥݣ놾>}ݍ') y^s-ޜ@ #n߽g_?vZEp(yk hYVҙ 7߹e>̩)Owd]~Cݣwhgn$#oܚG/ۖ,FL= wa@@j>?_ٸ y5KϟeǷ9$H2˟i]:<+ܽ0/nW\sǰtkGk#Gদ׻c5}ETSps UQͦ|ujCBUh+MuT+XLt ]Uh`*U:F'Ӫ"RLܫ_eƽCoX(0LtZ7;ƒ?mgrk0էwYׇ-M|_m:](xvd&gct?<٫8xyt;\]y~txg/ב|!/̮;gF{=nlԵ:"bVx6۵q%EXΝ郹h_ mub(4I;`ZǺݜq^MW; `:O Zt`Ibddz`Faia}7Φ_T;8 ]m]t0R䰇})oR6s5mƺ17j]mSY-'Gw3Q&:BIT;d_lP;K/Ii _wIeNdCf}7|n4Y&%%86J!mț᳉g֭xO֋/gѣkiR#cFzLszS=;7/_gf@H䅗}iCCƒ!t3śm mx¾p?>j^LSszJǨ von /];r]4qvyo|2>N/Rny)~cYFŅjݵ}m uEdv\~K\Yé?uޯO<[a1jcx8;p | 9~O4;i]I‰ۧ%/ UG p[I^#WVD,3U&.RwbvZ%ڼvf@geOggS@C4& BkH$d"Alb);z{0ꋡYw$~yy]4 F1K;׿=N>}(y@53Dza tj*o5ui?:BX?k3w}f5XWR}Z˝LYO5C_.3V"lٮ{yx~J|gŽmNq;r<&Aۏ5ЙKU]{psr{uPDgCie?KhyFuB ۿwSoDqݧc \l2+E r3ˍ? 3ן_s)Xqڏڍ[`xfdj5j)U/Uhm2k4^| pʮ[\{;1=T=U =N8EǮQ[y}lnyJ=ny80rZ S*I=X(}k׮^gFqulXO==*VLÌ3r(*vNpNF{ڔ[zE%pkȀzKĉ}_vJc/nRI~lyy~s~j͛4K :&/ Ci ]D:)xnnSʹOn^(z1x&hʄ=9^qs` `4{T|6L]k)r::LuziԽtgfʹ W3wMSF_A@UfaOJOJ`$&2x_ʣ=~GKSdNiyK-;>J~:aA͞S<1YU1{~PZ]}ͱ:A7 \p4yܺT&C|N@] k=~|`uΚ˽v{ڎ +V BoKl[?֛f(:0$\5I~?0__/7^̿us|^M.iS߼G).Ecн'3EWП@iߝeq=nuw2y 9\+W}|jKU[}u.˺Yix^GK{kc]lr=m?sV>\[V.۸ y;즞١ޱ| Q2vM8]W뱻z]և-)ili9G'O7}&m^Uz|yOq]Η_6zc3ts+Jٔ[5RRv[ ?yuzۯ_Ƈc{4(Tٍ8|o{aeX-5 r.&&\^) fxIBSsE޲IB  ?^[?.ϕ@S+nNUφ5¡V%kQp30}t2bhNȫ)?OVhZ3W W!n!`9ߖB84T$? x _v}o1}L_ $|c\V> 8WLTA#$tO*tGf;=â_3rd}KN,ڪ/(@$œi)V72a y0<f4_4S;N|qPzsZk];AfFsMlΟ)-whG۾ycҸ6[ت='ew5=]@ɡ}_460{M)KfǪñ_Ṗ5h4;f9Ǧ?q[ng?6T'I^J LrTBS7B`ss7=e%_Yj4_eV/g/ +1<~́FUFFtdǣv\񻐮k#̶ya/a%3qʼn,Yu<[k}qѳE˝=T΃(Y6CF7IAG嫇^n)lv`y8X1/hk|`rIF,sҘx\}u(ef}ɼ x % ge֩^M~nd3WQUiIUm= _/.KYGY$m[I<:~';MD͐۟uԛǻ=mUw>bE>MEӎa'8G){Bsa_M֦g=9N~~8ҫ n9V7kD_kq c{,s -("y+_1C=9GZ,k[~PʎRAMR_/=TgSvM'Hn9P4[Ngi5T/\Q[($D/0U-,?&Aj+hաhOJ7'Ib/^n/AIq(H(0W{!jH@o0nd$tzT܋_U znt*qRQ)5S9cuj61S>}p$ L/077 3W_攜i4Uʉ3LTu\x͸xnz%->~Aio}M2 )^s>tC/V}koIٺݓ)]i|2Źvޔ \yuuaP~_tp} MGHKkpl<3[rWr %(H ,d ķgO­ڤN%YxjΜڅ:׹ i,~H, <(רppmc0JC8h v-IAՆCp 8Atg{jڑ;gl{PMagq+ 5߿A# <~u}vo>{2va@kX҅W~$hQ4#j [ }>R(#Bx2ε`M}F/Mg|a3[-l򸽑{/Hc]\ Z"yubjy)"hoξu{NW?ݟŃ )jeTsOlc6 ԛߙM+/U$b BMoci|h^ &S5/18ltSPEiS?n_k:>9#43XfiJ(KQ0MZ Zدx=K|},=hdFBK!_ >bvb` K1)ls!c{&_qg:}FGewCˑʨ( ;*59ʱjueIz%.uIӊ9K}..,S#lO!/F9@f*brAKMpzu;DiвL_ۃdzk~7k?0o^Elow8T3pb5.D6`BY%CzX_Db/1b)-^AF?T/4>WJ2݈-qr;rK_<4'l{pg% ΍zF*}88ǕB%ي58}x? ö!t>>#8H&G`6"E!>g^b{f6ɳ@::Ugy2_^bsIG„S}kWQP (]|Qlxj'vZK9Iz'`0tI,Ee{‰&֔5[Lw}qH?CBFBm5XK-*9Fϟ‚RÂ)h롺۳ud9f?oDR<nXXM֨~HƢ{T S}^7}iV]}~Xw] {=Ϥ_,7R?57K{IvinȊ3[1@dݍuUߣ8<[MXbҝJy_72>U7Ͻꥩo([:ߘ8}ɓOU~. FzgӲT&.b'j%Q$vmEί]cU1udl$ 2.b/% c72[l5s⪭ t@buY69 wD6lfskG<ϖ-o;v`q]%6\/gP!kYN]` }9H -a TeP`h',yip@Vjұ٢Ku}񊼝U-ӷ;I{l?g?t/JIT!;ǫv^G[v /Ͼru"(k*mxW1,>oR 8]OjvTxE+Nz*Zͱ~{&)e _؃ZXZQo'>gCzѾ?ȸ{>QLQ~ tm2 `$%*n~YWx4CF.6HuM> ̷!ThS0]ϡ3eJcz?ΣE.ֺXҠW =#Gz=Yծ?yET~J3޶73H;l0̥/m`wnd<BGg <#>dewqRB7^o뒵cOL>7KϢkoL33v~^d6r@c9:7aĬsL]:9첐 >zي0(D{]̀+iE97-XU=JwGéWUi|xM0W8mĂnŰps&RXgy k]4͡lv*scb3**`cK0> }=?>9MN)9NFySN|,&v7{6C4]UXGQ~&uH̷sTU8$IuͣOv3o_.wn3/gl}]ƧK-w^Q{&yZ&YsoÂΘ؇o4Gis;mVf4|ŋހ؊ؓH.~Njۼu yr4^H-YٿPPg L{&?z䠳P,CC)U؝H:tȢ%{|Tij9ú4Scj5.hUPX[('ᵉ! ?V+!f s=f8 PQdžlB7FQ-sjgJ6h:ȓ_fߪT,:wHt4JPi=Τ$T'^U-_?G)Zv S3!H%W+|Q0 ׅuk:8 {-1HcU˕ڂeI~;ktH Gs+$6v] )/)e3=˺ARgr^ND2~vrtG N3܊D.u Szߏj*9AViۗrG/j֝[j[ד6f/[JIpW[/o8~ \1.Ǧbr%\]k_Y:[+AD1h s1`~_ۍ|z"A4frL|igz:PD6"` yH{uH9cb+?}!qݔ~rvzG-^C։9·1 _2fMrmdok"Xxģ%J?|OUc@pLw %V=w*һ9*'}i#ߨT{S<k=uuӺ)9e5X7g`Eyz sL1=;c)\rCz-◣5|5bx4޷oN^Zs2lC]UA@-#T'*(_:[b&{Lޔg;Zz5%.d/~37z'$N֥wtGfr}5ǫ<0_ ₊j^ EGLM!<mWԺU*(8B"PI|"o!\hPοiT{*uĒ/=U> j;2,:MЏ+o"@uPv,JDGF/- SEt 5iL}X$SRp=_+O,,*g݃Ɖ碒 :71i/Zٲل;޿ }BS%g6@w{G0mYBԠZ"6RpiͱX؏8аAt;:mdLXEnpBgrM?e#D{&|Cғ=&:ڍ-Caϯt‹*^Ɠp_rG,`5+OUü0V)]¢Fh(*r&؀=,B ׌(9@qhVYǐd/+3 D:فQܓFhɌ I оf\٢qqX#?^G@9ਛюFZSo2*/doK8,vz{ ng`KU;^'<£Xּ*<gȤAe2OggS@C4& G0(zzwko}ȀKݚ=*eo)+ MT(p/0ؗ_logA8͢U8ܗDvpzQ](?ΜK1x3T=qTɃl˱T?ED >ъVU2֭3j׎Pl9 Tr'NIt`χyHk@=]Q8Uԥξ5ZljjOm_{"7 )^>m3GW?CG1鿬ΐN!LEb~%>鎠'hq\} [Cdi>O~y|/pήsLr E *2d(^~*K^-u缹x}( .ыO7q Mx9HYkg^acl+8Z,uԛ^h뛼)w۽)sq ͙9,U 4T#?|+ӆ{%B>}1vw >_ǍiI6a% @lE{CoNQQV6JFd5Md>߫Nm]V]sUg$/5ZPEx[|'=)@Q<qᗻVgu׈s~m*z"+%_3hAƺRRa?4'nS=/HCz{sm$ۯ5eHq1է|s~ Q{cdW}hJYpjDEa0 (il$kZR('ooyېFuU5; ώ%l^uM3դ>>ʃuQ5eGzlvxl}dϚp|- g4n}o;/aKeE {77L}MY6h̫ Yz84Y_T^8F2T(1` =_>% (Pr [# C{}r%wN]_\(ɼ? F (eǔ`q`>L<3uie^҈}u )BBdmDܽx:)nHOKYv^zBb ]Aʁzg歹J\n@h}jCDz?3+PZ~4h?.x~A9rHIA;Rc fu/Yؚ45mٮi'g2OӢ΍ f]J̹DvW!8x_:re2ܷw7EmEj{mgeCo}ϦQw / }nTX2Z3w%>Qj8lR7k.?ѢZ$+:%M~&|į~^kͼx:PNj'6gi|<%Kh ܠ /TQP;jT}nW=KKo0L߉/),plSwQ_Jbݜwm=~Pea8,SA{tͦB?HvICɞw,cVY?W@g/a nfwZ!Z|gH{n * =0>5א;xnx)ggz:X|)øZEmsؚwXw$γ K},xK#JTb]2ځc[>RzO E2bz:e^<%e q8X^2veyLi8}S_83?g4's{wO+^:]4}>ܫ>,]q:WT,xutvrU0+-f->Xq8m2yO^g}'a.NoKQcUo9IiG c`DҥQQLM}2s4'_f)ޟv>JV+!a$YVK_v2vJ?ZSν?cyK~y} V;^( Ć@=I:U1oo\xIlߖVN̸TڶkŴ럹V-ΊK)U`>h2YfWr$%q5g̥(C,d6O- P]8RyWuPw \x;צϞSCd3qDUF6%zN)Kp._%F9ٜӑVG"Iѓ:ݏxd[ЭPL7}4~ҵ$O*4+?=p < 3p7Oi@TZ6~ҀWQ_4מ&9{ĘzeRg } gO>709w!2s|9#LJ E=ʉHtݕ*kҹ&\ =62Cj/F0>ϞlP'v{ ' TF\տ0OhI¬'ǞdT+:We*}KMLW'FhZ΁pLq)"Rz-!Q9s={ThۘN/۬ip- `#TS9s$%$ x"vi%.bm-y4+ixC[l3mͧC}mRtGWhpHVNsܩk&/9 {5Z7%SD_BY)m~0hVa&ĘX 163k8-ՔfW5xšVqtm.+[pΔ]Eo\'bc蒓MUdzF ?Ge_**Ωώ[CK>+rc,X1ƉG>7>7EQ2L$.Ґdue?U\lib|r7ߺomW yqe~mlrOvny]ָ]W_܌uuu/oIk"qxG}8/_N-Vjw4tͽ(,4 qOggS@C4&.6V FPd]Gʑ9!KQˀ R+rTu$`'@L~үs Ep-ft^2O BK#NY$TVR#3¡8^8wS^uDʭj_Ns3eHؠ:akDtϷ4saQ ֽǷSIS GJ8QY}.4Z@꿬hePP4 =ʃ63ڝOXܾati_^GϺ+l77sQ#[8Qևx^ca:~11vzDkKѺShB;sagIEqn|.0ӞP%f'x$Kp )YB7~):D7fRGWG@'4~z+A ,}өj$Jj۫>`?z3 mg. 9X҇z:~YR-}{a~s&2'gzi[koorw ZKIr{s=]3' ;Be985U#G1v/h˟9[Zln$L95?t9e(:?(-ǀ,$^|Zm{'m<LˆA:grП<c|a>;񬟝PZq#rlxY{|\-~DЋpcxfËV[fSv]}pR *;[oRᝆ+{^n[iB PAs!e",Z쮏^pa$KxQM +l2ys}ƞ 1Rrkn'q!Gxu+)syV͏!@g<2=܌VqlJ_ pW6}ΖWWJن4s9=ꡏ:+0i,.82Cr_ߢ^\^+:/Ѝj]~:۝vM͚>i^:PgV0xvlwa?2u5NCexU긹>G/[zHao3c e{90IB GE ti %@uޤu[E ٬rZ[RW}>13hgy%邚5Syz9!^xs揦|qyLLR@gW@S9 t.[д s {m*UᣩB* 3}KOc=5/!@>{~^Oѝg_|SH*Tm:]y> #69%z&:Zze}T3[ Ny6ZA]^}q)d!kU3dr=9'.<=GA;~kLob1ݝxNͅo5`pY:? dF],l:kTUT=K)Һ $zAYU|':qm0htP}!4nG/|]y%<Yo#5'GCSi+w2z)݊>/~;~cwd^t[='Ji7˙^rNgYkƻ񕾤"U&GJ3{0Ly@ b.ōw^#0:eb{v_Ű,_(NjdY'UЇ yf2ooםpe=7N#SQS.j7A!ewΘf8tvho:ws׹y˯b:O/lD͂'>B$$7K hod) ObN% Hw:pn)t]֒袸mQFRCkXAt;yאГcZ_cY]:V~aPB:@5=ʉ܇-4z p*)S^- ?S (HBL HDuEXϾfEvUTE SP: yLw\G'}d;HURw ]dkR&b? -ȐL-̑ 5GnGr53SϓJAqT PEtPphuvUu|,!VH!F\BYR ޵H$B׵:NAAGDQTLPk-TxjEpNRdD:EH65}@]RGBhNɵJ6iBCtu)p DP9-uxE (@ (yd~NK8 +OJ=^3HtXx.ɳf{KtIp_ HlAX0 N /LMLvՅ-n=(x '/Uة9SL,=?] lԏdɣOM_ȸwu azSr?j./+rIHGgitWohOX5ؚwN]ԪVԟ{WgO _@E3S:ib$qOn/{yx~Z:o5 B*ٽن^p^=\ߪ|eLj'xѻ5~G7ASlƒHҺErooB BZJX$}RPMفxjVOe8JE@.3/ h/<'ݯ.= T0xt·D_ӆnBV$X'~_n;o0wX:w܌Us.9w𴺘v=q\ Sbtot>-[anFޚjiEݬu]wز|{OTIwU>-{&wxa+w҆A\1 iܺCNnG+1.c 껍 e3fGͮon^}_KͧW(l>X&#.6Fy~ ss%@׬͡[rʋJ[G,_ƃ2eєk❱ֈ>!(Ik7$UCI0ꢂbkZ& .B6!1FI6/gE]B12+8t p|PȨw&i-Fw UDUXg<㠨ty(;?vYYoW4κ=YiPN8^g>ȹ&h!qd އЀ]"=Yk_)CH>KL#d&u"31}Mc4g߻FEmz{?3&!15Z*U؊S @{. 64[9qv(:N/okљ]gˉxU}NBb*py*k]^awUHFkN^SNA&v<,ڈ=xȟOǡBBjK+sjW" 8l8h;!1xّyl0{F@0dx4W켪K3e4O;Okăk|@hf#{A .=$7~Eanq r}Qѵ#;;s^8?IzϥN1!*<5y~ܒG7ohKFweG7TֿJN*`ov4}RuXCEpIZ3ϻ%*vɲ$Y_8+9RAub?7h(8[ЛR-ܲ\#|JkqaflZnp0>ٓ} IM,~.zهK鞤uNk Hޟg L9ַJr7g|gMcl?EoQLjI~MdttWZs.}3m )Oא8jY}dh60{7p/̽*>y \(p/;_ZWr+EEiG2!s?xIriwnIJp}~Gzo Z]/.;u8>Rr\Zګ~?}u^x,vƽt5`\Rs) N1k5{ǧ`qG,eoV00o.ȧϒ_ߛ$ͼ7!bҸ0V^b>n; {89'. @D~&_rߟeG$%%߿_ ƴ΄|z6װ˱UzX^-H`) OggS@C4&虋  6s!A$hF99| 97HMc\j{-@j: <@*ǤY%or|zC,TF]b5&JYO#S'q;Q/؋9i-*Zkn@z=H}[(Ȏ% Eѐ4^1kDQG$TÍCV"gS x5}H t^_"M@q}ܾܓy ۋ8ECAjw)CEҌ:q?~jd ,QyuIG)wcsVq)U Yk-ɳG^̝Ugd~8Aԉpj 8j'C}H<Τ)ʼnJ*X"x\-8N1KMz{` D#=;SIniB3eɩdHa1{7r JQٳ9>!~Uf8z?sIwt.Iɑ4.g}Du%%7~g-hlzOkF_ooN)+т.TF [#d>~)nMRG"qWRF>;#H+?Ud>HQ3i]C6=3*}D["jV/tJ %b9%$$SJoU"38Ĩbe^]{v~ONsY*1С6蛁wb.p;^\T Xהٳ&nM7/>.tksT97 6þ[gj &]%AFXu?I.1cc;yŜs'ͭѭ'l7ճvgv5ِZ_VS3Mz]ޯVΎ睲֫dJ^}FWR+UYI*%=_ uZSsI1Nx yWe?B&VG ^*gx҈7F}+j"v?sfWCMoG'Hz)6paީ"Px(;#Yrk͊U5k4s&aś(5KDB\~^NWZCV5i%M9}8rbvjATJQC%*8 { ttb8>s3}D>@TsJ*hK| @|KTs*'깟ظbQͫ uO 6wrc*U RIW/&CSOX鮤Jos4,)z1eVr@\FIm[*۾ r7VDeEHמ~y$uԘ!bxz/LTH^ǐHЧk=m̚$Rv"B"kV|Kzs;ǵ=zk Ͱw{].kԸ>0g_-㶶M 뷺5gqΆskU(Lu2 D/?]4*wOwswz7_\~NYkU"6w3n~oYa3D?YuLI:99Uq ? t| guN~ -{lZਿ.\[~*.c\⎝ke؋r}'WbU wr:!{.*otKb4n4@srz@ZMN[O r Rkǃ'Ah>?= 'zYcU8 j|2|4jwE&;UfXH>JCckDZe஻S}Q'ଏBa=~^E4b_8/GVPFqBr8h;\\f 5wrȴfQ=&Ɓ{:ڈ|aE_ o{7>PIo)ww%b.ZδhJEqhLMet5<)n !4kCf)%6nTR)H FEa=MÑ% .jy_j5G1*Q*P"s8G蜲 3u]Ͽ>&d3=F*5D.^(h#ę'Ӭa(B9QU)Zy TGb'XD{͌%Z)#Dt.ZnV3 uPY'J$-h®FHā>TUv u*|e&+B$G3?872IkC@`S%Ln0 bY|‘5La#1^͍83D~#}:k_Y OP-~shr&fky!pM:+(m|.BלWOzSzV^(2̱imA #ᯱ$ѩ/ %(WYuv.|lAќqH1k}~NuL%WOыB[ݭ,RI'o/!P-A2 uon3.?ѿaf-U14 D_ϮϦs ?$xOa"KD^;g`m'ÐԜLI%`l}ܸ  u+${Uzb|Ol!g#6dv=ϭgrYл4U٭&A<|wpC[tGl}bZhkث;z'؁A,&+ԧf 2/[ͦ Qoqc4knl'@ WO(Tn${/?gLKC鶃૳l* Wֲ!|kH|aů\1hѾݚɊӒ1z*iGkE>WGє}֤$JZoLY"~6ŅjIHHQXC9[Up]X:SuڽZs9zZ=M0q}U>w6 ;WΈvެ[|Ο@37b zph pxL) *N~'1D83՝uI窵?Ks{,2@u&h#ό j>+\dz1iQ#JPɼPľG]0-xɪ^'l=G7^g#|Mf:H-zZzsM{_;,ɹc1?Ny=s̴s@SA8n7r]!RɠX'iZ8PAW*ǣC"\jnK3)WngM;%)hOo~DSsD !%$ >pk#̺I#6;3|(8{$nGQEjʨ1M9J<Ia 7`'/\\LlttCAHo:W4lU)vpӱTT<;5CazbBL0qg'[MGwgIFpm+)>{.un>-ev? Ӣ:FMK#܏䗑զg]Q4;\_KXeB_\EU Ug^=gu36a\,b"9 Xze)7ҩܲko˙|nJ}ksCꗭh>火喕/5Wsp40霵gp*H#gRO<ީոik]=m9T&KuFxʯ5^c+ngꯉ>(2(YPPncT:QHyipBеOz"ܮ IK`]GQG1H)vCg/K- v?-a,P'wrэ] ZCBKY<>ujch9t_-”Fov?IGFk!O!Jlʉx;S,93_/),RwQׂgEO?Yt!u|_+l&{)%6qz^MdY,wP7Ys>1RAʺ6.yнv!2jxg0"j}[.]4U-)eHqUrk;6O7_hp;՚#?]09#Q< cE"O2sఆр|2}+G^/XS! .5bػP%x{(I,j#ig~NC{>{ ]ӕ :[>_<ѱpqe8u,}d~SR$jAH%cjqUMpx N#Jh}J՜@4+*/B\O$H*9dvVVu R&}SȐwW'5#XšvJu_kLKeVOݮkM̯$Dj $T"Z ڱ9G9IdM NI# zPtP1Q3+ف.{VQTZ"!YfEqHuNui<7aO=k\dMUV=0"?T84x0G#/ \  C*J`҂@kp9zTWn`\9 g~}1EV{}oFȣQwzM'aFWɥMN/ƶዜ PMjb6=oQ 躺ų0oXh%^#7WYVA=nm~ۭ͑BfQs[*P2XWpO;xa%W)ܽsq YYՑ<*ؿ{ʣYe6^c>{l߿沶Ū LvUh9zKnȽ,uIPH3o#nj4Ńst˓an. >;Ot- ˲tSOi̟tҭ^dod:j2^]x ̩rzM+KxϳoVyl5 ,fuDŕ4ou rA VvRj<OI,iĻl"xA;3(`cN*^wP6Nc5~ҾCq%ygڪR)~[aW}=_a%F#WӇJ3ji(c]\r)qbzJ9 fisûU4ļVcZTeqYU9,ꅷxtj.-r)l^<[{>vt;/}~69{ D)eם/K:|1L^-b9~6)%Ѽh'_\dubf]F;@S_vSG6=jmiB?wE۟hbOBgS`}yw. { OZm{)|.榭\h[ou=ߓ[JccUjxȆsa^=n-4fMz^%c$|ӷ"5^/^;rL8J-& o)k璓8Y2g?E-d6Fo caӚ_'"kɃ0:uKVr5ѭ.^ bkWTjw<+_9^}M,$/]ݽ8\ۈW343ľS#V~帯`=~>}|hw1K-hO|%Ҽ=6bz?O(Pd?͛5%[w)l2)9XZZ;7m<36G~_E9%yv3-m%G XKj9tOla|dHLBw*"kB-mtLꖉ좴Oj/Ѽ]gog#Ou}iZGZbRr#e֦sZ*o00IKNk,y^5G!Jje+f{ u;|v}ۧ}* 7]l.#FI yRi'\/gz{b/Eo*t?xr')G4,!Kz(cDH̵]tX"Vj[16aZQֺT*C!ʼni`5d tXM V Wn))m 13/&4KPzl/YE\h0 `p: EQT DZ{`py"a_B2jWUm&KkmmvL8Z*-4*>U?/ 1g`-,Zp{!Hl &#FokI)Y]Zn@#qqojKS cvL՛SKe=9-q"/1D#\^f-Vgz8;)wS<9ύ`_ SzY;>G戨ia$ dߙNiDcyQp߇"sd~>6+`3Z/k^{}{mn9uל_o86^")EdW.R`NVY3n/?2?gΕ.5\`F~g\>EOggS@C4&dlj1&,`x2 e a7< /N{>z]?Gi;Fq?zLClK=;: @C]&c&4xOXs=*f7xv%_viݢ+ua8f4MOR ٌ$&;fE>35륩2޺+ZW8O~ {\x$&jah/񿤤A׍clq?*~>$Ao. |5!Rr*|8^y5ɪWOŐ }=C_5n6Ӵ0EZ1SR/'ھ/9W N.p&׷/]?[R9}-vdsECV{^i>oӁu{CHRb1ĝv:2m(j 8{*[8ۖapKvbn6RNwygMav~zq󹾿EvwWvU\q툜f%G\7埄Qu8B. ߧ܊kpnux!/FO_4,?{ju"PPTJJl(|JT s'-DbWt>I{I* ͕xCKp|T١>Y:BZF@8&I :i~l}wXR0gKjcoR%˫sɮbBzcu|9E6 /S LDTmp2Zc}j^}~YkvJI%;N'S5>{~\YZ=$ < $)ȀQ";Vл'&EL!z]\i-R@0}j3xIP;G/ѿu^x[e^ ֥ YCJ^`:GzW9T=p}s?lj$'pFl'p7Zmſt_`_uVtJe|WΥ頋_䮓\g͜0|ILdnw)κFb`Dྐ&-//OX22a iV=l}Lu}M~ȈVP%4/iгfRǾ?;ZD-C pZ? =%~d!sC/Eڜ~\e܀^L&(ďsa2b 2W㺟X:![j՗9ik_ͮZJmQ xJ7<'WŪ4fF&~:Lٞsw-䳰͑m#ͱn$0jb@[)%g/ɼ6?Z/Ʌxy} ,ˇ}gXS1_u|ﯧ(i8Ր|G'YM`6~ƭD.r>GqfovB hX=Že- d|oOf0iGPjcvjsx` *7)O2(JX#7#SuCTaAK].oTלZEM}mHI9%x#"aĻM']i9d ~Q*]gYoyoi5|g9bR7։.h0W 'Gq?|(mf^o[7DrFԱCMLuZzy9Wc[ucq]O}yp]mjz?*O%:v}E>[ ץ(YzPUlc3Q+m_짠S;* \I5egjyЗh G+:5MI3^s>26PGs26djd{D#&.Wk9+|~˳֑n`?Hˢ|O}Yy=^o/4U/vC 8CC~/gt_uu}wƎ On^ϷIrſWVEBl2'ΏhGXۇu_j7f]}ؾ:6?6N"O:M&ujRT=n-9oqwR@=$G~y^ Z4A]>xEtnՏ^[ZD Kw&?mycMr3J8~6dsK޻m\tv}" "w 4%].U `𽬏L2g~ߊcV!LWޚ)i_|?ɏ[>2}ܾ+@ͣky (i?häuC#S>JW<^د+#bz_Y4>{)hg|4/Y:ϤMO7{PY342 iQ &p:jҩ"wߤ}ڴӠ|,3LDFB>2ȺWݟ=!{;S|^ -]%)~CF`H( &֤ hByBFuuQ%x\qu?rFB%DaYFBL.g/ly[qiZ;w?CAhx5fz>_'ݛdιx5Q|Ja.ًlZO{M_s_/8%yOU}956Xb末s(ȍȶ ZiUz46C'OA):u? 1^{|YWGz-ʅ Z%ZGPS@αv# l|+0ц{ǿxå9!ZY> W0ȕvǹSn/ l* =P^Gh6|gfyNηBVہ93;np3o&ŘҀlnq|\_@KKtZmjn-wĺ>5e:AO&6a6t<8{00VW5sA5gL9NoQ߳S)o_X&ױUoeL\0*0˷gq@U2^xћU_Jʡ ^oos%؅t-\\w/{'⵬M(Oa>>mer>ef滾nsJ͐?;.kNi?=lE&r=fcWEw.-;e\g9fU#JmAo@`jWUy9JZUlv-I[20}< Wuk6.44>&$y B?[e΋)yH.T~B\q=TWu*Zd IUDKUC5֭77ڵi5ؗ\]x-Nf)CB92Zɫ.-k팔=U1pxC Oϲ˛X%3g` B[֍~qPfxrEϐAGJ#6Z0ZCPqDũ]ָZ)2 :8U_쎢9CZpڪu/:ӹ~}=?r#Z+Z+=1:ͱCxP܅|whKm 5Ck<7PCό AuhYS⨴sdJjD.Tuv"}Ų_х[.n$@0$.~"Hd΄>2^: CjUH\KΓ*|%`o}|`zUiFE@1-{M*hhUx?-`wM-}QuOq#ʥ7>Rpepdujap`Oޯs\W) KߋzӁ!B4E&1kSzɬ)[t75xz:@|R7(^R_ӎZ>2~mB1="||a>h4l 5wK jJCZC\qq]!\gQo< wg9TiG}_41+IK|S 7Sb2x؁_wGZ50A:U n_p]^!OWz$)5^/Q:Pyb87X3.46WgME+TyI?nBn|n6R>r qvXŹd S^<ֶAiSeSVK&iIk-4KkimqꪬX3suk 7RN @h0N5)Rt# kQ; 㜏pDZѦ*$M:s.:4*JOk{n^Ң. 6aƎ4TrHK)t~~v-9mF]վ5 [&9#0xd4YγQSwf2OggS@C4&M>;C2<\Uț0!ug2]`PI]#=k1ˋ Qdί Ȅ"navkK8Df?^]$N^+{Q3VK~50 \^[Gvn}#Z5%qx.Rպaׇse GVZڙW.(_ l(2{=*ƥb5k)s- 5=2 9}~&EWZ#kO6o6Eghg.ggk $wp<>֏R'8R'yaNtTrJdԮA;-߫w\O7A*Y\S wo{jTHZ91SuT@V_W^ѢS;I^TJG=yrg4?y_s^_{ۚ\$Wu[b Xa坯0:+ /cSƿŰzƕiLO|#.O1Tair .B=jqIXc:?n_tͦ }Kt>ˉZJs'oCOӅzW~;3V`I E05'Hv'檷Wl,SMs;n YDR+_T<α Vd؇sޣP$ȳk!x.fdS;z6慠#VD{:clyؠYtj*C>hfe+]]U{3=U%bVwF/BRo(ױlo)SPv}\k}4~e_b#c%ݑ{ɽN]踸WSw$9cԄ?[9dM{$4$7KNtkZcV|M-~;!lo:ئ~~2m,>xP͝>9SZ-|*C,2uZ~כr|:EQL;^ T=L[0%&c':k#Z zOa_$cnFo3(w.E{C@T u^lя;̨C4akqq xԙ8JAv.āGux/RP(s]JmPm:"SI$C7J@Hd1UiILZV2`*R_= wj ١>9\@DbyU*4JI*)`~,+A9w(d"5fo Cv$NK[?bMo r,ۂnZ5~=BxbnDŝ8/co'XϮ]Gn_JCxQRT1֒OsIun\╨7u83u1&X}؞+20DnӃ>;6K[sL (pwFo4[->*sGݜ}sG5.Z~~1IJ/tܺajjvBMG clgyS*u6bH{|+u6>1Q*/$f70oVޢA)^p;3o -8wdj8(m<^7w2e-L~lcU*:-+JIef8RֵkV\Of,b1ªϬ}jIR翐zx:s$fNP3*$f8~vcip Ԝ!K#xHM+}K]Y(3y/;^S <+cOr{ƑiG.w܎):_?2%qKV.(^WͣϩN۳ 2¦_ZwF4J~Q\< !?A;ߖeCɺ˚ֹ"sK>TetEt}Zw8]d$u8vIV_w짾l۵w-c=\ 2-JߖTVF8Κcכ\G?2BзR"'[  vpTD It9A>\ri!`8BAHBx|sp5qjDQqYEfHZ}$sRNS졒Q;tJby@ųEUx|S9n~ފ@R9S߿exo͋aٵ4ף#|DDL}1stL?>~ kv;J/D_@4ͬS]+qGe" 09[6}jfP;zGD-:2>Z']}Mm%F:Ss.Z34vp͑W 7h!"*NYJ $٨dƄԜFFrIWc=].$L(gZ'`X[9bH>1`| kd`M-D# /wo#R-9enx{gĶ.$( X>L]_gˏzi܌Cg''N qqgKm׭o3?|]u*T6{_]]yݮ8}]/lwt0{Ktij'=Yæ6V'Ͻl x&-S}ia|m tw=T  5}”ü$sJr  Je`X$܈w{}nS ʘݟ 42 @pޏ ;9$fw)P1'ўaoW p3ο#qU>,m5EJ1]uܹOlY)cu ͘ GC5[a!{UAj(h;hqJ9 ݿ^_{Pֳ1zihzEfѲ?83;c3.qڣq 0͞qK?;"?KZ;Zp%`deO|4leTwj%\%1Zۉŷ1)}r /HO1D3gD:~̦j~]ۢNK=xR|8_1+s髗&qg7߂w˟;/|/xeXh?xO^JJ( d~Ǜs\fvT $v%\ﵦ5h1y96YPtj!I'Zv߈|LuG'UQ'p,^Kp%cPR̀$*':DA7xQ~ KS ?Ժ5斾B5)&8ت/ NzuuC-y;gw]kvpF愹jvWfMVv]ڠU^/^غ-= |<,N8DQByl4_Rs@CoےqZ^TvRх ĺ85W5xƓ) :!/lxQ ͏%ۯ<@C:(t4!z6 M[m66C.{pD$.K\Oz)jp< 0&?5mw&Sqv7M?՘gWV7A>~^ڋV!I6̟FR9Y|\lѪuDas}n_~ç)on;iDYP,\y2>I(޶ߴ\/QbfMTg*%2ŸEe%_7;?G[?jˣPCɇ-TqVh.17{6 [{yG2POggSC4&@0+ܶ^IR!tm}$ҭ.ox`Pp n: e?_fez֬/3(:UWn>ЩEyr֌AY9LI{;@TɭhjE8zZS|?<HӻUStj0S_ nxe꯻z7MS 5vOk9ݏx9rlЊsM*ECfgt4zDD85wP;ɮSH $uU- Ƞdb*)sv#Y4NʉMNS剬JI9vkS6QZDczkhN=*^TlCLhnߣ& 1dJl TY %I7st!fp;pȉ4 gۮNJ7b B(u`͟N~yr Y4KV ]xFq t̳SH8)CAE˝%H85Y={D|IKHm1v 0yf >t-M_R3}uj0K~7lRwKӪt yP>ڏp&D\?%_GeH?(8E*X|3OwfvD6T bF-7OZkbg~X_[ŁӵYrS8U~6~6Qd]l=/z{DL{'ghs_˛T娅vXT5:@RkZtLt˛Ji>Qnv׋Gn#8_f;ؽ/v1b] \ﵕW<71zm(1c\|Nl2f~[ +-JsQ2SnK%qB] ItrݾLrc=ǗxSԝK'BJ (~3{vEL53 {4S#g1?IJϢWi݊W4d%٧T!R&*t:} v33T<'|gȡgSxI]82#Pb&R?9u x{񘥃+IhiJȘ[qtdG}_)r2+%RqCZ#Y :Owg?-Y\tHE2U̅IP Tx,f h*Lt`= ObzMAToaN[a<=?J=p9y wxUNs阡,N'(TL¿p& ddC\-ْK%>}&?sJ7Wd cC^ZV7zf?cַ>=(K`esxȚr ײ\Z"b4b`!y&ޅ,bqq'u&Or6pI~O1&S5:Kݳ>B}ˎ{FT2X\VmJcJ8]߻Tm}߷y䩊rj~ `If;'2\T]8}IQ{{ѻ|$8{_|ϘtL)eg. F-є;~2rnWt}gj)j*3$w0O Q`ֶKmjl'8)ʑgXp+cY`pG uf=2/G֞2jTl,'<\{P/nW6#$W'y g˷ح)yq-|V[nk|DzX>>8f#cG_ݍ=ۿxן#Ke"nxf,wKԀhҍ~P' VLgKOW f/]٩5IYTpb񕬃{huՐ+Y d=j|\ڊ2lQUEkh_T8CRdRt^vNNuWTSCngDrD/9+W|ljMѢ*2uc&36y(( *y~;VL] y%HV;?j-/q6)O:o#eؘkGOzL^,Q <~$aQO06 _ ʲda_j[]%g y4|ɳu5LOWϙg_o3]ybf/_ɛw2wYOEC$wy!1uՊ {:riJXK¡ѿ/"hNkr<ã'<ͽYC+Q˭ DߊȞMݏI~?ᆁK*3\ {aNN#ToNe>EIZnymWsn}^>>eV'!I⪜nxx1s/(.}$O&x@1N~?^3j<^ /C|>w9=o d\Zy]=_{Ro䉹pݢ:޻gu}N]ktXi'}4VO#؇{D\ {TR$w3xif.Ag=h(D7=_ߩoӤç|w vU:kYj+$}\q;R߿;* Wb 9u gY Uތ:fr:Rk]"y'~z;&vƊ5D#ڗO{j6>'OggS@C4& ®,3^ k68րM~=?r{0%wpZبdzr$tE$.o"Gp yY !gr===&DL>ȑ UW|X~%ߥǽ˩F6U,qs+-{mdBY7>MIeW\gi"Te)bFF\,]ztUZ3P-!2?E(ϋ~LY_;)(;uqo mhQF*÷O'A{i"x:nǒxmkz }de};=j6ȷZ=|VL)T?xMPȫK<%tqUOP­Fuc <ڲKZĚ&/9/F{mrã/ W˯7tyn+?wt4ݧξ7}ӔZNWABc7[z0||hQZb-tGwu>+fHAIw$&8i NwX3\ ,jhr*y^ uܷEc0]zո[-{aRSKNSE:!:}jd4`B[QfzB RTM#yZ_GS۾#oen/k2w:~}k~m+z#d(v%5Y*w|D]q"5<ֺe}BGZTAFY9t]?݃lHkgVO?]V6I|; 5N7_b e,o@wHkZRsîaM6k_y[jȟh \j—,'փT}8;z$ [/׮Gn*"?p ?q03|.xdzO[q;6/f>@?2o8a|bqZkpq?|ٔ|?yq.Q[ ޢ|ߟjܧˏxɴ/e>boU/!,_ӖM? K~tϾbYé*qn|uCFxjFU-:Af}<66>_Y}%@"Luk޳Nٕ\hk}9{!:Uȹ5ʥV#TL/-GВOKf!H332L^AnAkv:2%f8DS9{hwqՉ Xr hѤU6-s#o}{{8` UES@ -z<<%換}\_V#jۻڟ]r,u()5P5nv .>[^yzwώKV-wV|i*ך(5z~ѳpݴ\X-vT2|^1qlx~uLR˳lg8G"I!0[Ulw5KzUH/Θ&ZCk)W~c"YOyJܨE{*{'8lkTjГ)=ٷ{5?0Cǧ!GypcC8/ͫ9٧ ˠw߻|:s|t3ac0THpipRђDPAw{ٽK'K6~\RKKyYsC̬6R|jEc宅 SkSO-,)ףnj6$K @Oi&aVhOдX%O[w%Jp0ʔ+2p U:إkF =~_8Ge^6Tf/*6Dl/T >&>I7 25jocUU) SƮ*Nc\?~t5܇6kyڥD~r?u]{M|5lH 358m<BΥj,ỻG@@n~CpJI_I @s9ʠSB\Tl JR[O (^ƒN S^9Ku<@z/ܵ=Tp׫kHd>IzF]njt4ڢ5ˣ.ZEdꗐؗQH=d~T}wSNtoM{̵E!w էYۡ޿zx ZD4*Y:@!‰aDIQU33E;f2yhij$ ,@lT";w+ . 8CqxL3}&w"ʏƇd6Tl+?mVX>iE}@XO5Xrh`_CU?]x;F1SuM0F,]$W!bni4Zz/ӗq{h+S읾ɸ CdZs_(at<:锔׮F]:~wr齃tz%j[1ctz])Gx"%IEp  ЃnBS(r" HqBߍZׅWĢ[+W/'o-B?JF_<5E-.' sXSBס~2?;L;+|.0DmlJq`ڍCG{*2NazV K4DCBugQ]{>Q: {HiTuЎ?'hido+eSFβBīK#kC43:35&lo<7/ST̞: wwvWbɮ%j+Y>9idc MZsTuyI{+Ҩ߭_x֗EZqH'Kzwfr7, zUd^B,tY0V6vfZfw;|%ԟv^mCs i^'Oͧ 枑WvK9g#31]cʩ2OggS@C4&2>KPV,?*rNRkTYpx.l:nyp\9*"r&* Zkm^}?:B/T nqRzp|EY A5ERΗ3gͿNtz$Q P`t@MmmOäJ84r{!'2IGD#z\&SW^˿MJuCg(QAa>CuGCwGԁf'fg&q]!A>s% c\$qzp1MMH"`ZEC!fVcTGtaܟtHı%{C ka'=זDGVBpƛ! rݛJPyn?ޙ7ɷ.J?H9ݾ50Zwz0.z?̫AhsIgS!_MHLh*fF#_M=& zU×g0'\~JگRWOEA۳\Pwv N.V_uTrb/p> 4f=RZ *W;ܞޛ,Ĩ$Z?VGr}s/i)Z468km"J4b|r!@Ġ߻D}Y'|Ǘ%+^ozft c[j?+"(/HDw}'b+U@nWFxF';1| 8cs&r^wP/XԎ>9 mٕ1#`\v KozbIn}H^Q}|7:ZP8yL)dR Ʌ1h"r4T4Kz3% {xVN;U[Zlei^[71c[>,Ep.VݾNiM ̺K% ١[B:DQO.uu1&7S7*k9ΕWQȣ"d{79vټMVQctILc|Z(eY04m`I=f-pr_>7o}"v٢3(lOnMĬ>>h.k΁StJyzz` o2nM|p5sÔ d(>~㜔debx/]О^A2:k,/.t=oJsNHxu꽜U V#sR|HtR*.ʬ(QPCH9lt}a 6::lFP\=~'#ɦex_FA!%͔Pg*tu/Y.N }{~K4e*=̺;SIxPhA@Э4:Gtt{!;"hUP?ȄNQ%[jOIPdv="S("?j7N1+}EStN쾉ܡ]uOu_U B%J&wشɩD5LXDEkwyyJǤ}?eo3!Xj- Z҉G}?kd+| `:lIQwx:i~ru1.W r|vƮqb+hG\gpLU~S;Y_PWl8uqϠsuTz;]dAݗ -0]~"G?ؚۻ^GG& br= ޷LJt@΢C\e@U`I'1Jr%\Kp46t,#w,1qdXdp{oFPT"9ӎ5Ƿ[[!+zAo%ӹ?źN7#QدA/[z=#xoG:xB[J.OaX۷W.9տx:m_<}! v ۈ[{,'0SGOḡ~&s-Hxl53?}Z(N~!y|/ՙij.,q]IeknVc~WڐR9CknidTK+Xzr<O ^*i >G.z_/]7_Hxo;=o%\\LջXqjWUXv݅іѩ53ewQY F>~ }?[gmܑX^/dKB,_ ZYBɜvyŗ:yEB{Ĥ/~wnd;ť8 Q0@ѩJtn޻uQ1;&qзZvJT޻֢*e4xl#O5')8M3ORxC+Q uWID8>MCה)l!JȺTb"+ǤZ$ c2LTG I=+d7;__F'f~]%ڠv>(42Xu~v?Z֥Uum5]u4=Q&֎dS{/ӵ* GjePnQ. | ?S~QA:A)V3/ek/gݙ>NA%zeiƧ%NWt>`~V!ݸNk^}uZTMSuÃ{}A?7S,V-Qg{=hZ&ժ^w:([n1r10s>p)g+Ӣ']υ.^w,Xƭ ӝdr0!4#8XWN$6%(WkI]\g53&Mm5^ 槛G;ŃΤα~>uM'S&ܨQd"!|OshwY[H\t-z!rNT>IUp p:*pRH3_-gv_GE'׿_`̠q$A*ʹ៓f#2.| ީY뽇aؔdS Uz$I,p6:0 )xN4#yGQLJ34it]=g/tW׹jm?u|ɻ.$lM.[~`fSni*&aUנ2Jnh! x^#bA{nhlGy{h:'SZ$5d0ǷٽoeSMV|^ƃ)m\'Ƈ [v::z==d_# %Yacsz$k4v]jRBgL(pRuFKYC[?nOWFX*9cJd.#%[9HFڑboG[i\4e \ A׫䴛E'bpU߼Xk23\8_nto hJ6_)}Bt}buŖ{l ]5\)eQ2dRB$1v*B)0 LM">B/LԿ{rwLZs`Ob{y:3`t(Րte]8Z͐u }]ഥAj v jH $.!8uu (iʐDz8C~H&ůsIn(:| 5>|p̸P^e*8,'QX#\OggS@.C4&I Nކ2ޭP"Ӵ[̦AҙηrsBX[Z@p࣪3!0GpOZ_7S^* u-S+zD:f˟+SIDY5k<6MA[wU9DuI=L$K==7<oty59wР t޵E;Gpz S@8J3핈SPp5FѦ_# =? I2!8miqRYdP#=N2g ړdg "s0_Cܞ9u~tg9JW|ņ _Uԇj}=s?g֮6cF3GK/dȿIdnҍ\-`efp/=C!RDW2IN$'H)j.6Sv D6=c=4TTdۣ +xI(k?ȕYW%Aєz_)ՆW'~zUd߱=s~31{9ܬ;kYPbmc*>B cޑն|g. W~( {A7&9_ttuSShkoKei8ţ7cnr-Gj^#ߏ(2jW+'EBpͣ8VWVv}9G=y4O]_M'YՅ؊}KY^.ÅrBք^_Wy9b%/>p9K[$d ,wVk&9Ml)(9,t6UTed;H%|Q[b 5 f#wdCثO=/Z{)s"*^pT"cbuK^k{3jkEhN}pD/W(3B$.Bx6=9R Q*{ RøbW2UUNwG8P:CEia@IAn]5RUdܒ)1p)BXj]DsC+1(u j#%К+Hz2J*dqT!+; ղk2Tj.5>Bx3vQQ";:TDC +SA~8sUB@LvTjf4w^U!PV9~AzAܟ|\祂 >>BG<v),Bf\-7YmtsL=Bpa $N-995ZcPxKX/$\B^-||]у̿Ux;h wvr`A l?)/9ӌZ/4~'$o7)+< 4+#Shb{?9“)v7rڜP *N8[g;m}tP%d #Ն'|ͤb-ۨj˶kv\Q\(粔&臄獚?S_Z6`qKNbHN߹_RQN``rK VKrRq*)tNG%>Y"y'IV୻˸l";)dC\h5mL4Di!Ҡ,#77~}>9wn,˲ўiaf8W&lxDZI[6.-mL9lq7BTp@z"^unhNqFVUZlOVnRg]|+vx_pOg_QGDK Y{wlf㪧?m˩Qo:BI_+>w[V.kb\+nLfq$p!-y+p LofYْ!gIRFS0ϭzup!* N4QEHT)-ݫ{\gtyU?d岿qH!)+NG\{'oZA"NO=/eRG,DfhM"$ tV S @@4vt{ҍ{v}BC R`Zigrulq}kȄҩtGh18 5SN3k{l1_#7{-k K7+x1Lazjn\n 9W_ia;WWWA+)*.!M@7D'~a3;s6宻BY7fkS$h}YpbǕqێyٶL 4\(WqSj?J]7"wΩVfYdb/>/#96jVn%&ֱ<c6 ;Bv9I1K?<h3o-gK"ɓo[Y܁!UZ,H:gxПK+\g1a5תZ:O0j]!7GQ ݊~U9cB.f{lWe?fhf߫ @@tgA4!L'oM(Ñn~ *h0EL`DS gvTyGgܪC'`*Aq!>-FkǨFSL/qKqⰜ~$j*TV֊FC _Կ㙽i CFNUT7g*iYd ڎkḷqݍ0I^g܅wZupN=|da#8V½|WStKouu#^aӎw6 lrT1Gr:{SoŻ4t7{ )8yj06o~,'v=yhH>IZr61{]˹zߧгNhguDZ\ȤppAOv'5>xɌ+p^n/ 2"RsG;׶woM~ZQ/6s<M7WOҍ-/}tE cqiW$zM˽ٰi;xjYTI ;>ߏ#<~GŪk)\;~Dž=T_?t`PAJVN)=t }תDN\-d9E6M'1jiaiQ-*3_^wرv4(|9[Oq{wt!͆hnoإ0rhdA7.|{Wk]x}̇y8_Ͽr;Tܗۥ;W7EKmοG_Ejwͭ_~ wEks^nͭ}5FiO~ݮ^c-y]v=h U_]_m7%{ϫOr"BU5_0*@OggS@=C4&5h :9eͅ^*G^|\7gcۜyr,W>] ,Jm̻DQS}!׻@ڢ ҽpD͐Wt?Wz~3D8̃] O/'>ʋ߿LIsذ|tX'hU;;ӗgWGky!-9݈27'[=REC.3BXP)o+ڭNoܟz^踫Smt㑹v)YkFx9s\W\cݼģQ-)'c|x$wKtHϘIχJ~z08QMm} Mw?0{Ix Ps~{ԝ24(B[ب6kr?z=Vu>: W8ܙ&;p7wdsUD- Kv3pkd.H-X׀ON+씓p^)|`"~I# #N lMlU8^]f~z`xߟ>Xb,B u̍~Y_dT7m}GF]}朴wJa4w]y/FVW3U]my^fK|[ KVgrh[MRNܾ pk^1?׏z nm_<Ⱥn5k}d~}JS-{A!:LJbkpՋ:KU~V\y&W]qX߯H_?.x0Z죽?gy_ρ]~nn2>5J2˻u~'Z6\+^8 [`-,C7$ḑ~qBDC(g9cօExޫ|#ӬL<oD[J|u?U@RUqtGR _g'GS 'f*dl[Y+6E-kY+>BgCW0nL_,OVv *5 ND8uf}:_A3"y< 3CN(f "" Y@OQFS\Gb Qn-u쟑>|7)5 0<"#Aji3mҁԫ;kzp6#|6̔ƕg /Nu~=?2 р&]m0u'o!QT=0;{ 'LK_[_9iJ_XΎofrُu w* sHk/^c! l.nML g]ԈY5a U 3NU+7dlL[N׀8R^>񳚥;N@{*W1#d\? 'ƎQH|Fbm`Z3&I6b諏TZ3n=Ep[8˙Eq|PO߫# YVx֦ZVp޾m>JnӚyq=4 _fN;tj`} 79yJ&m6zG1\'bߩ {~ssI5 ]nc^T^!IsVLBdCϵW?o4hZħ42tc%7j\V]]O]-yg={Zu}+ڲ(Q\b 10ZV11.z}ZU jr_#R{fg,h>׃^t-,o].g#piB+t| >:݇ jH(R'9xAj(rԆl;S%ɬ5IH'S P!HȦҭuwQY\|ߖ,ۍuhZH VZ4:WGWw@gEQWf"[{=*=[r sZqKZU֙[qlXJeЃB,w]^1Qm u5Jf)mkw:r]l&:{"L>B }qvZoyнܫss}4Ϝ*ě͊Z'*瓲OJ]cOpb@ܳJtRu`5:O/ W}GIf3b%Y"ë V1\_4ÒGybqb4Qv"/❞0LmR^מOz8=c6K92WY9g5\l mE&m:*-L}!֑hpsٷv#JUqk OyFߧTcxgCi>e !~:fM^2rjܻ_SuTZP'W繺RD8T|M> a<\M^meQ ;D1 ~L`W.,p)lmwe_x,\ujdïHDc v 8ވ^H}1 vR@VdǥzIcO*uSpʟvRqՆNz(84fKȳ. t`U=]0PL??f!|M󃖸9\9WKFWe͒8lJnˤ0 /ɷ4J&KwtMԦU?}WI W>;$>=J#,znmql6s7L4rx,!  V%gGGűkMWD_YM޾ Wo;зLiZ[p .e[kԖD""E}8zle+;Q[ ũәq,{́W^tyU]Xj*OA_*)_2{RQiu5JR!갣UXr7ug?[.iMw[DњRWn{tg46j:iXCDŽ߇‘=U@ew f~F&=}jͭ~xg9X켅Gn~SQVZYﵶE<}C E&$kc'@Fă t#ZFK9\lbԏqEzh,̑^gDf(s=S*{-Ju, .d";Leo&KCʚ+R ud S)UQ6E%@"ӈd᭿ayȡZ upSA8t1ZN'߷Qx[2~6j3^_ 36)jH3Wƛא8){wtOǦo;(LҚy|KNbΜƋeWsC:MWa/[0M,4~*Y}eanOqbDUi>N^ϧSy.6ztO7 ,_&7^Jד6c~V/ܜu. 5Cү%Ey\Y7J{!G{{TkCU- "˛G߻.qX-H%s.JzuF5[<3|8en|Nluʗxn`S^o.ՉUލkScVhN&j@ho['g EF͹rW#˼Mѿ({m2am|55]-垦2Nw\rmU&: /v(qX[򟽾.2J>Ȯpz>{9>`>d2l)n2͒R׾}`Cv/o](\=SQETmM2}\suڬXkϨz_ͳl-LLޑƗEÓ1?OggS@MC4&]%2.+~V}[F&:[F{;YqtTo?F׊ l"5CQrd?n1_:'ip~Q#w E#CgjPc}^󻓛JY:8P/TD 53O!z9?BV LŻ!fJFDRL@pϦH*Id..Tk=j8(:S^S=_{Ty#NU(Z?AyoɡZ/^7zǔW|\wīNK?T/0{?ݯ]"5FinH+dMG~_xeS HGCBB4Hz@!['c6}B)DsHGwu];锔*5i>04BB'$ܙ(f'z[Q2^7{#' )_7"pÆl6(@K'@]("9y{!qX.V@ڳ*%;<6yOa|̽ߎ}FӍL&z {ڱn~[Ӕ6fwZ]8WO1 .`SڑYN%Kq엥{߹䉸;XgnfGɩsٍl+Zt:to_cl2u2' '[j5کZ37׶'K\ޞ:4޶y<zI -"m\]w֋Й u ]n~W_m7N ŞU˟ƾ|T+;x_(Di ,\[=w;]b;_v J@on⪴ծִDtJ`*]TG9כó'Cx;oIJɬ~R oPoA^i'&9S,5gs̥\ؒW^)(V=uBe8_qj܎/|^KPAU$~־m㪔P ,Ĺ7=? _^!aI}SQL7B6ULүL^wRC1Nbb]Pz^nWs<&K (s +859ܦN3dj 5qDg*q:@JZ9{Jݿk֜lG*)";Ek5p2mJ fU#'3>b*G6W~P:ԩ]A*ALLPGB1׭q TDY^لw{kVyBqg=׏|dxxfD)kDnݎ p捔SӶh_:6?_>'j z{tΨRh-Q>KZo<ij]h 27]͚h2r~Ƀ@Er+;9c*8$ĬH1uWz`=RWoAvoV00 ViVJ,/w$vY{]I|l/?}N$m#E^}e ie̋F4V9Qp}@KlvDsH F2tPU6)I!hZW> 2\KT,|qv7~XǕm\nH$ŧ 6$cwH0oW|7CfVh"r`oNm+XL׳svƂ=u\K&b8NS( * E{ t}jy3f _,=ૅ?}K,3+\}mxorZ'ȟ 󈛄Ej굠Q#)LJWkyIoyKB}^׋Zz4Opmғe]l$z҄CKN&fL֦ޚp(E{NB^FsGqy`I63A`|xyB%}+b Y Y1E90J\&jx8 X.$Cv``Je>1Tr,l3gfw)N?1tJIf~sZDI+.Y1[-J߻|qlUJf+QRkR.ץG"c/n^5œTj:{Jܳ|ڟT5  T eF )Vg1#^t4uׂq.q!t:.6;(TF4NO]bQ[%u'.RxwF19}v/9@岽q9&ݏ+"W{t23;]Tf邿@đh}5EZy!--hխn5J*>}\yq& Q&$>9z{crvwcf`=gy Ed]KF3[>ÅEW36l o}X,"`aĐG| Pz\[Jf(+o*V :DP{wjdmSrZBۡ?BhС~]]e:;_,ZMXvCpk!yQw F#ڢ'uꫮNt({2q嬮v)D+5(B"u"vl kDZ}.zo=gEq4sQuϔVFة*IdP{>rKѡud+ߋ&&Ϝiȑ8SrR:>{+*< JbCH!8x{%Gԧ+; D)gٿb99KLjU}̚/*;O<ߊPs?L_XWG} y]jF )cBl|;vFpċ={.7Wozs=.7ܧj.s<Øʝɷpg|~b`"T2$g pn;k "ڤz!At;=zsD]!+)/Jͩ{E{=8k/auUdH= M"܍FB/*S'i&I" ]㣺uy];F2lg/=O35?|X e"^>Z;VԖu: aI9H2 9V08Cl({Cƫzڅ`Jͬ@VOXU֟Gq*-:CV[~de]2lӃOw_B[҇.=mol$^d_LGźϞS6RL(}~Z쳫;UHë1h=I{]O*DA%ΚVݦv4EYM;-$OJ73]U25 \"ֵ37[׫"]8_{{rLHOggS@]C4&p0/;95EC'ÊE]33tzzF#p`Kϲ6Dh^aq! f'p[tmNz~qwݣ_ACHz$ zHȈftr:ӴD{u]x^,ro)s_T*kNkvZegBI]Ț!ACA0Q5S#Yy#ָԁ[=" tb=?U+9-Bw#[< 5veQٌU_bsKRn巠0l[X%oNO!:N;.e!)u/?U_z+Z-EÉ~7FsS~{xSq;n-=uVs?Gc2{h bs+Dm`9%ѳ3[cl Bo٥ӛ:LVk)\ ;;j6Rno-y.Sj~V2n)ʍ CɞF)_6/χzoqySlb>VO/9Rsϩ ZN ^qW_}lLDgM':q5wYkڬh;-܊FGJ =GD(e^} cM"~B{^1?Yqqź N8xyw垱K1e{(UQ2hO2`%Gq ]Y6xҌ4IvWQՈ9]m LWy#xL Ig5Q!+ptZY{1?X!pΒ\v!W XU-%^Q%jy!,$C-e,Gxe W {QvvNu [Q*R;N 5o9kZ}dE nioEB 3TԹjПMZlՉHG9̵@Jݤ ɍ.SJ=h9&{wtGZөg[܉㐔,:Wv(8Ng{ܵ&TvfȄ*QD tt@JVTT[ ZZw.i *; qփ; )>8,Wĉ)vJُR:} ИKD*:n(:SEUA4Ӡ~sFq绖YQzo1s5g|Az}d2?[}.=N*wx}J b꾎<^z[(+(Wg9J>Qzn_qL D K\G#G٫K驶|l0/~e^.%jéڜe2VsVeDF/ R˹,u=U3`xy}{C qGAOu='̞_ [ai]a0%@?FMùqlB⏇J8t(ﲗO]0=w"kǰg/tG:7EGsubJkcHU0Ä,4F<;W*cJ;PǦcQ 鋓l|KH\sWJnMx9l^lbf*BS*b^{suhK22UbTfMf؋2{oJOKO4<_f#}x`uɧaKzx1~x&b;h f38MgԊcS%+ [+-MQ|%C}]Q`D^W R6rQVJ4؝?XyMgzBӼ<Ͱe:xd5l<۩s~.VПUJ_\~3~uzQMXQmn7%Pl\qA489+}$J[Zoп, _x ?G}p?)w i֝=~~Ecq8`z5C7x׋UV|ofgG`A{+:e+4 m_z87h*rSCͨ]O?+Q!BHVB;~Ц]5ޏ))Y׏nkx*=b% @%ƔvB[Z=Xd-*-]S{)2+5}]p8ړԐN&"U}=||JkQڙwDgʫ L]s j1ǣQJU"tQCN_(jkCV J:s}Rʪ] gS Jtq5eeTN˟~9QYQ4R>[4DgJ͖UhoDhZSiSgvqG$((B&rеJUYnP@2F|C0 a+O{S=Jl[4[LwV *YjAY=~gL@ ?mu7Xż&'aft6CdEs'7`2F. = 4Ke뚆:RDG0zsiF;J,o<8_E/|xͽe6.VSv\-^pr#!/%U7mrVjO`?; upx*VLC7'll}F׾x$UΫ*}tfA+?Cs~}%i7 jYǬ_#?>>n2ѻ~yuᯝ Ra}.J{/!>H_*'˼f; cҰ,VZ\yWPd(.3jaY97 6C+5OM#_cNjQ=撜DiS\*2ПG6bC >/_?h^wh$"j|_ݻw-=iFݶ?#݁~'ط~M01\}+YZ sm;e>y|H&|Ƕ׋/n!.`ߔxlfR*Ƙ}ǩ&H9&oH;%){fJmIo跩R~ʒi1_;_S&)~]6Y׾r@{;6$MX,Uwxև^zf4w缠b˾c: >5ϪEԓICTATǚ->>>տsѦjH}?C*1֥)ZQkx={0J12/.Ԑy7*B@dDCEi҈Еl/zKs]ɽS5+G*"E^UP~JG#DF8q&2xqvx-!hp#Ը#Z5kyޫW夏8j{{Z*K,Ek#dĜ9ĒNWOT{lO82{qfDEʚf:S0e~ƭ^'wwCN s|,']YUL a@EAORsW#W@U͌12">NljzZ#=ϧB*GrJJî: ́$(PЎfJĴ~5W*mH/?Ǯ͠Sj'NP;?5*'.]w^wZ0xk+hn>lF*U .Ll@%˥7b.PB%4 wAg?WC6 '֯0Q9dw_קx^x 4 ǥaw+d.{%_}:Qύ6Fv&s2{0WYiT+${ڎ;o>Azi"bŃHCw1ߵ{gc8svxhi=U{rKhxIn57uJMܚGj;SWWOQ77&dX2>A}΢2-PO]!>5˛fx8 bU^E$s6_0moحz"F$a\&/}֝ۈIIr&%wZ|4sq]R:E|9^}¾-~۩`y46qˊ5ROF `OggS@mC4&+2+3(~V;}~kOWyd#y؃ T{,htBDڿӊp!'5I}{_~SQBR+rƔ3RDIj=t\*9*2DJ^yWJUDŘNmՔP^I/^hWB)BH>5y:A%\%i}A^Gvqf)G5VcYV%pZ+J% d9kD}Qx0PDjP#ŧ(WE#UҭQ"[Q<Sc,(x>w-~G7Gztp"*Pt(}{Xsx8>)jF̎3WNtUy ֜/==^zls.}#rC>޼>(q:!!ѐ9. L-99Asu 39qχ%*)heOylVl/q֕7G7t4پ IQܥ><3<̏[mOQVɺǹ٩ nm-0aT41='K+vkv1rfJwP݋7A{tT uHWI0*LE&iL#U+wei ٯ0U7ym}|nهâvnsrQUnB5Jl|?, ~;z*L{I.Dž5R1Zohd9}(-2Yn_P_+GKn{#͏z7zG'\}Pg(M3f6C5mӛ k__%4ژ47&\Y\Ms<'jY!̟柶ϕ83Q>VU:pn;p_p/.?]\]1B/ ̓mN+rm`O 9,ۚEJ=Kݽ n<#»g sr!k:Oо|7>g_? pMRHS_SdBUa_>zU9lBï% XꭺT1֨`7^PI]zmliMzN[!RiG!M48_/K%&ZxY;56?ُۡO*yiʿ3D>V3sˊf,e%NJ[)AIp*Ztu`fnRj =Wgw(k"RGSHHY%Jw:o3QD t CԏE[fMss֋s(YZR*] 5lq>YjT ! OIvt' QF=p4P3k\AꉧՌI>%kDPZdRC-;5'vDžx9DcV,w*Qc͔3hJNkq jL))ufZNZԢriD)qFOZx'4!&Д2cÉ"%I" w&Bt}?-H!v8Ь5])TZ̨fU>%XSq{[GE#==^H[ェU)\h 1G:dǁ>,x=KYwn&ewp˶k<4%i|cۀ/o9oS'Ô{K;:_!^g.m&k&5t2syG2Cjg3ˮ|V\ =ќ=MmFub8x)iy Lw:ZsVs:oaJ:ypKJYJ*wÍ0ϸ6UKyU̒0*'M,BrJoh}Cc؏%{>}[O*ȍmYx.PרWXVKۓ_F2Ůl5QNgFG&>PJ)"^Ջ2 jIخ;P[ÛPrbh?jtts7_TNgR!# 6!wzߕ^ =$K~`wgqk#a1.Ow ^+)޺99 9],Vrlg?}._;UQi/Zq /MkknNh>gR޷扰}4ނynJ&Qird[BJ\>>yhPt_ǏkR+ DCoBKQOP# "2e E=ԉ}N'{TW [0^uB0Њ.U@ 8yc֯qX>ۧ&b>Q#Ͼ^}Eۄc۽%䙝qSo3:HEYX7ZTVUo[Cj&_k/./- ?Cؒ5.uA~k+lz!})`GwH 8-5?bTR M"UyS*0eU)_ؓyiAs=E٫Z\xG[h&7W\s ?kxDz讳:PC }v a(-N:/D:jB3wuhiw#'o:jH]תutw4Lf+Su.Ȫ''t<ȕn-[BW ] S)<U3j=Ws-)d'Qk!'?s,wn< Yg9LgPiJJ:׿!vLju[Dt8Tyxvʸ*g̍;<әz ~_Fzё'i$k |l/7*]+^mQ$S] 8NmޏtM-m`?qb*l.OU) P;rNkuTսF'w 5UDs~^]S`r꼤=tV q08l„23~QE&Vɧ I{<›=ΟLآѴDH@MU[~?n?{lx\g1먼XM3ܧohW:ȳ$;WQ}^I70;كo5Ka vV- H+s75pʝ3}R]:|N~GsձKtC+y\ ݛSB"ӄyd+L,EF=M|NufiGyp,>rXnڽ۫Lgi] @;}d#䃧AJQ,vtǛuWöjcÊ{ێw5Xku!gjX_qڿ~cvtXd4STY ^jaig\!k%y xݾJv>` %-\MP>[֓B(phs"}YݜI45_eG[^U],*;x:mC2~㳸1ܬ9g"b]sc)SJF$$ D½OʻksO_\z<* Rz| 0zK.Ѓ3: Zk.z v Znd x7/_[eY$3*9~t9eHk+3ӥTQ %'\3RMqtG=5z',jA郬ZJHQk+ SCwD9҉:QR5)NϘjvZ.&U̷"jtT/,*"*s3CD=夳t={QDNQ%)jkŜD71CYvuGQ^Seg8d$@mNSD3;4GĞE( <E6IȬu_Hp`II$gWfEmAxۿ֪#9S>BVH9$i,5~E2W`A6=Iwsm(_'qQ^6kpʋWȰ߸ CQѫ󴡋.m/^d8[zEʫ)r1iG41QA( &ˢ9*bSp5lM9L !SpêXͧ1{i뗧ݚL9F GR$6DKu-?w+[ܜڄaVIKAeN)Qdu߾}29οz\P4KDEo2ߴυ3 0؇gdA':6򜃸M_p}kؼц<Mi[=.}U rM0_7nwa2lw)cl`6O铎߀\ž>hwܑy3i7U_$q{Y.]=pRb>S&PЧ58`S#+nߘ8~ 5v퓡N.ccy&M {JK^f!8Se)˼#DqXmY9R"e:O<߯=~oشdCqzPՓ0m>X\XҠY?+*ƝmG_&QX 4jwOutlsyzevl;VݵXvITOE=t3Ri}hoؚg[lb$MHI~֣ۙo)&wE>1Om/v\]㶉B:K긙ʵ77mgmno7OT myo*iqOggS@}C4&N,+"$E3N8'=|`[3:p[q6[k5\H*UCtJTnbBԿYP*A ^f{DJG);_S -$YOMcH<Ƭ.dBʎ4 EJ$9{ђ--%|KGT{F.WfܟhdDT@YnG,ԝW[Eu*?Y;JdgӱJKLͫҁ*8P[e_U:UK<*H՞;ZT:K+k[c~*N=aOYMQYJ+J0?a9~v:#̙AUfB 3pT q93IE%V"q0q!IMTPj! D3߈%̩Wӻ^) ٧)TV@q)(wn0k"̣br5'dP"n޴Hѷ^k'p7PՑQSY/RI E(;m5VW㭟x9"qtݱAv^-aC8޾ [VOKa`M"|J # ?:;sIJ2*+䇊"5?Z В*_I%Ic7cRUytZ?Kj+"k~? {T6OOvT?R+VgS;vfgߕ!EM&%FL>=ŧRZɰlszsVmJg3kV)ptK)^Gn97/D4c1s=)]bӇ{_enҥK=PNJ` :-̼\ G/^RUiLcweoz < K}Yc6}rOu4IDCDe鿏l׵/{ojE%ꢵT:{tSdGBNvM4iɤcbhjUUАg4w~]h$jPApt&ʡUxgR LWBJU!Y TkdmJW*r/jf-)Ugq4h_CHkh S;#vB.Zm$P爀/j;Q.*JT65 epRSH*A7PsTW_yjq~~;f@WtT |oC޶ 'p!-e}#oD:eOQK&j =na2n^>948>JzZU"R=GzAO}s-v1)C+9QnT(Q:פ7I+! r2xۏ MpQ4k:X<&Eew%-xLG+w)rUgzoLOc['T˽:t~%jdCbd jcrZK5fe&`q$Ӊecz-&k׏Ø#i6k 'T[צ.Τws wTs_!2+Ue-.U< }F/M|z>&cUM=]!`Gl ?\sqJ~;ѓ'ˆ{N+>_ҰkM-1>]ۚXq:1璗$6{*LJsU8o[RuƄ%y]کp^ Mxq(i.%7kE8,l=&7լ;USH :P8.?)$''Cn xwvԇBiOK.dozO,?VٻӉJs=2n=+`gpSSOOz- y^VViV~ 'V\r5SO=և&x5u4V>NNt(s|:Dn駬UʎyC~x>\d:-R^Z'^MؿhZiV:UG/ ,o\n.Y{lUd Es-'\>Uo٬gvֳxDx2[cV&pjv`8F:t_2K 7 WO?ژ";P]s޴Ff-s=ߝd':,Zr'kQz}ʸ\Ws(DoDˬِ{\fT#T7-UUϚe@7YTq* HhO^ϡZʫFEP%][GWU,iLtFָB4C>SN5YHRfOOq; U 5~.(묐0=>2=5NV}%2ӧ5(riVY}.<>4d\p?橈Ed]2]- c~C{:o/::U37Phgݑ@Iy>&?؟#zu_5ræݽ~ ;E͌\;>Ctb }^uc(dry.OBf Y>|^C6;S 0Kx#ι{‰Bњ3dM"(:tnwƓ}$ɏֶFŧ'yU˃pxX:ke\"IMQ |s%]%Ɠ=lC WiwfJzs^"J\$ĪmIJՙS^7XP8Ris7H.]o*4~ݔq]̭ daEN}koΦ!>ݳq6zÕs7…Η6ĆV~0C<)BKtT[k?یp8xQ0¿ÃWghHFzf F[1'lѧwAǣm4jT ŞWwe]Fzy]*&GF¼>Lޢl`XܸexƎ[\nQd}e}W{o wjҨ/вTY r v1m}˪A~GlxUSDuDiYo{Ms6\⾾`wfJTIFF*6z,l惫`[mߘ 4UcH8%* =PXӌ2coN?+S$SmiN " U!s}3ث{gU)Iq8qX/a G$TQR$xq\u[[t:"s̏yPwIB4ħC;\TxHpLݐ9,x ̳LDգ:YSRsZ*oNh:ˠŋ\S&z"&OMVB{^XQ5fAEr'Z菊? A ֋;]SU'Z=D:GD$=]@SIS+Vw.]F?Qv؀mS]CHW!t_,\{w<&}l)qK vluW(5'pcWyG;M.5qTܽ]ǰ|aٶ]>̴PI{qM6s՜6aG{R_4i, &m"9=6ʹ"R&b,T.ؒ7{N֕?uHԣZbyi4rf+3xIƽ= *,խy8w$mHvKÉ4@LK-ck |ԭ5 93Ld{n.N?gbRytX% {9)o!:\w*=8y~A-GwAۥakk;bNUonOYMQ5ji3l4 j[U}bAmM4MU׺ 6~%mmT>ڸ~ΰiwM7]5>;(WT&Ʒ<.ܛF[sT5INGpX_SN*:ʢ8tsgv"=fK7t>kEꅞ5Bک:4jNkLW 8yHD~KGm=&*0ȹB14(ڑcHYQ2?Gc/ Y\V@x g6/7/JKt_!s`먺d|z$-bxhO Cb qK)u {^/Gku)tfy׿_'9*/#~ߓ_Hb+}b鷄3yX&86}?w/~Y}:(iʴe?#`Yf$7(e3IF'$ՓO1| OӱV mNJ!VI]Gz1)oT'>FW寭h/7Ŝ+YxŢ_>i˗YؖnT? sJ:5FS$7~©6.Ƚhf϶7xa~ jξ <$z[o>;/5Cs[wZyA+؋eԾq!h82/FcԲ'9쵰F}|Dp$o:y}b];*SF4/xɧ݇׵ecᙚ޻wɜThwcڦaBOU}s=7~S:[OQW 6ӹ {? gޚ@7yኒa*ErDB]|n;Nh+ȷiO]x~t* R%uz/V.:p$ҡJԺwQCKKj z|~s4 Jdr 'z%=K;Hy3!P 8D:Q<ÜW[qf}2>By1}O8BLub{>P̞,f:31:C9beSɹfGS)"G8&8U:*sМèlG);VGӊ,+|:!D,JaG~$I)jVhuH3JT 9t"9J3kA u|pby,oQTqZyԨФGĉZcه8ʩ YG9|qEG Ss}#{7:3!ԙ'ѿd՛ ўn35XMe LR:per 0@X G1gkp;# *p*xb o=ȱ.kq\¤5szk%\ Hvltfwgw}9~ũj3"/Sby{?x^`"$}T7jɼ ~}~Taw|a2]W?jv>Cv4Hf}I{pw"~fltwf}щ-E%& z1I\?[NeX6Lf ӼƁ0p")Lc jJ듲wol~#k)fe O\^^X@֗8%t Z~5CK΁xX@f:b[G [_ ^ʙ2NŔSՆزsp),,@ +&/SN=ӱ1L-8Zu2rtg$j.܃*UCrhqjNpϬWH댠O{;Z\jxS15&Ig2Ah6)(i[ W̑qAOnا<=sj ZME&ZUkѲ%ک.򝫧=8UbZOQo*$<ZAC< 1'Y%&&ʆ>IS|S]"!R#Zb#H'sgp@p&]>ՑT޵"Tꎣq(P! 4AD]+1I'4G0~RG ʮ*21Br838]Q!3?FG+C>a}w<.N10!Xz;1AT) Q_-{f?|7%A SPk/4ύ4DURHo~idE'r&j7.^Wka;-+juR19y6̶>.,֗Nt=x iGnx\ ˦^s~eYlWAǛ<#b>}zsBPT#6XZthG;~iD&4Rsڪt٫ TuG?b:9KLt=ywyTtm8*i$G8hOקQum- <N[|F_OнO5xd SX)P f ^@UC$K3dEV=r`;-Qtg˭B{Y\kv Xumr&H.QoRL!Q~Sa k]Rw->!ѫ鑟7jGG ^gjVnGLȦhn}SiSsB7Q}}bbsΎ 'Y< Va|VG;pK|ӈIXxג"HiU-3|s62q$ܗLM((Rʺ{¶awLuQzB)wn6^=<]߱on'($Rb_^5{ ZԌ^?\*hVލ= 5h?ɓNhȔ&V:Qz}/©]PT\t7̄z!5_#yA쵑6fZE+Q.8TRw(.T):+S%'!HL*P< ~ ZliC[-[&TjwNuhlnB]::\/4tzw%S5fgBQo'y&&`iDW5sY%yg`^OԬ1WjˉLL{k^~2עy$45sƒ_J8\kCѵUjUOYH'^@GvkA@#1&sԿ<^g|+^_p3S/?_vW }*U%謔Eub^~7ej ]kݙЯ NUn=uB#4o[*G=n@|^[m.gQc.l<$K!Y͈Ekv8Z XP:#/q6P Z,.(n/{'!}_zw3>8zll~ۋEI`WU~{%SS>иhr۰ga\ ԻqsbL[ 9u)a,:,z]k⋄IXz3ؽ/u4zbx6pW0\goOʋa8[RczjwF=6[v7߷_[ȭ--|ߊځВ|:?Ca]TZ˟`"xӎk7&8Dzo-hh`_%'ģ(J*fjsLf$z\m`-Vv! I/ᥢ r!$c3\;)?Xt,]s2I];Eszb9VZǽ ygIOz:*%gJv8dqb_nw q???kݹKCNo{pV$іGICN0gr4KfeRަۆXã)Fʟaa#oo?f{寣+t=ZNrǦ=&gTvij`b ?Xu]!9|Rcj}s*̇+mmZ^J7i |,@Ȫ`OggS@C4&no})"4$~53灸|`1VXv cq[F&h9BRU}9oMPoɬ* m] 1MS9t2j ~ֿ\%RcEV",]0呹Xe%iعSehGythΐ.gnCc;H>e)Z@җ\DDt2URUq䑛ӉS.edQ8:G]ku~Om$kQ׬ٔCJEg=u&ZEH!Yw8QY0TR))k-|BwvDViu(B:Lt@JֹiGs8M!j3 $9 Qh|[sβ߶|_ 8/;*E1 *)wmMkG(کB$M &]k]dpP9s#O8W'3/~'״Q|oGvykDoM2LS}hVbQ킝PMlN\mNm6;Fհ.F"\HSK[ôtxN#a2h+7:WEg#ƾ<{\\lK}?yfeW?2p$ ɕ*P;ŗI~Om3[)t0)ƇPoyf]zuleZ+=܃VAh'=_X!bݩ>fKR]'0B^kR=vt%f܋z}̲G4kw&9XN\#DW*gkń~1 mL0By6?ۣu[F' j?h;lǹln\G/mȾ++ Mժ'7~x!RC.L+ӓB_wf.%pDQt\{wPU~-SEqn_J:]sk2c8g*8L ,UÛ5đB~,lJ֡ص>?ۉ-UrEk(w:|*}jvjTzY~"**asLs2G.Dt|slޚeU%2ZkS[Zj 7w^Xi |Ty~pФ!.rA\!7T sKw?7%WZtUȒ9iF]%bֲ9*{ĮI$UI{//|'.6#.-Ϡ n*m7YvW)z؇b~IȴQ:GR0&#S'S QE:CJ ^5aawL<;buכ]yZsxQ]-SS<)# ?Lu?Sګ]Rxn*ES@ގCBrekWf:J!]?8юD|GOUɇUyԚΡR)דU4dʽYQ㫶\Il% 4-{~t ""nGоq Uiu:2C^\R#P`=mRo%c.꼇FTG+S0$ڗC֨|"˄99uwUP!^Esʜ/ЩίKDo0{ΕY:_ةBzu >C:cIq3|5`CJ>Τ5k4QI(>VFά]اx*L5%4&U8QH 'σ\/HԌN"yd9E2ݚGA N3E;FqB.q'w F$D\Us2AT7ky o}L\x-n'X|Փ?4W]d%5CM9LieR{^Ϊ[Y?tv}{]ZأXSu6L8 ދ\kk*Einyy}SC I̓e'LE6K{I^O~uDCM6]ֹN$ ?Oޛ{ nxͮ"qpo0y4ox-c(oRK?[➙hq_WmqB?QMoW)e`nj45ҡ\m\yү^3, |ǝޯyF^?滛8*r5\^ʥ8Wc0?Bl&#O$Π"^QĢ} ӻMKMIlT^CtJK~ꍁuѐw16v75ַC<\ʙ>j),,}Ztox97@ڻ[wxk%(p!a ý/ʚi \ʞx=ʌNTbdgP. w'N5lpT'EOc9kҤ Ǘex'-9UP>H[dQ_'FyM7t=oc"N6h_V`)Mʺ:yKӬ}eޅxl˯ͳ<^TTo+KŮ jeh f"@ޘq˾*:l[>5aA NxZ]oHgW 7ak` X?1jz:o :oLBM $nׂ8\ΑC[f>5\_9-OYk>5\vX_-23q- ѡH](G?ӌI&9kggf0(*ty,^{_{_JE~#sEk7U{#H.S=3q| ww%?4]I̞*x.+&QqeLn!֙jw^O3ǍEˊP5/yBO_j>/:e6k6L{ͥ6ϒqѣfgSR.is?a`_fzWm쬼^'z+گ{~@=qbUg9Wshr?{ J6qM]Ƶv5w"Jep=5RrFUL%2K%\؟py-y+ǪOW-]]9ܭB;K7zwxۜx+fǜnx#1H9.wAѢwjB+_}ύsD]/:_ؽzH\qyR *^/5+Ob)G)' stk$0v1?'cCxx$UEn  n{=KifDŵ-Zq9Ac!XbB" 9{"-D<;bݫ,)m_Uݘ!smӬQ uhxie6#?_ł=WƩYwXR=]1q h|,Yw6sr|$d cZ󦙯lM>y<Y\P rv.Gsw}[~8}=w6z^dIycZoM4eY.ȍs4GwU> OggS@C4&fJx"+),6+Nhj-G) []0ϸT fE$K};h͞E?W;FԵ_oN<eDw=H8ϩV'5>|rdߣɎWzOZt\-̇/g{2׵3*]IGؓȕL=ifRMפWvәd$pVin~}Wi~dBdj5TRTVB!5D+pBcyVi6h?w:-0%3Χ'R HdME4zfed f8ɏ C EqZPIRٳӡ[Uy͝ik:qZ%Y'&j J8t\nA5'qr:HG[󐡃h7὏C .3_4M a] |RRymzFnpp~bKccҸCY/`a#I6j=WT'uwۚ4c d.E5{G2$M32VKtaJYIzZӮE+lj>ˮgCw *9u(W|F}`t8Skզ̋ا?1tiˮdtϲ,nI4ў)ਖW=]mSiٍVm|5x&)ZVf.~d[>eΥ; }|YgŃZ*N@WS#*>\hfOKv s `}*Zm+I(=Djbwm}nKYb|[k1u{Wҩ_rkwz\Qpn/ v"UI  ]]3^j]췲tnc2?s| .o:^\~#Fw& w_Wtk(cO/8`k~sܽ:Q4԰Vq/i*t^ڲiBV%Cy0&Ɗz73ϯJam틆s] PUjY\0O~&1M2|T6IKVL+X߇ŅQoD% (_7ŋ֢{ߴ 7HͿ7+Y6.:(Q q}.F:x3>?HW뷇fΩBAe )jٜ累~M$M^nCuw5k J\+@ 2TYs{?F,U:ŞTcKUYGp*SXD*]Rɜ=*[S?8t 8!#tDGN`)s@ܟхL̉AP+GHCQ_ɉ/u~pIJz@ja\n-ӒK@0 mӚw(6smdWL݄k_.m&|R7r]3gz}i^Hw74 M$1һQ<_3NgO/ U/MV>ĩ͙t ;p/C֏NuɦM[D&z5SwG^ߜ{}%}vu \2uP-p|a;dQBu4﹆pr*=rVNsbYcr/坟Όb٭M"d|T$yhxXW6Tiuj! iZI9KiAU ;OɯBu f#QJH'8jFX,L2ѺdB+q,BwĹ9jYBV;CciULp7rZ_VHѱ1MǓj?C7߼uBq,:&6?猪[>XFʸ_~݌xSO>la0G})QxcSQٵ=pQƃ6A4ޚ&m H @57h9ȘY;Cn 5H8(۟yZvd; HW.cj*")o+C D#5/I7U>8J*L"J{ -pΪ$"th ԯuhyݳ8S$"Ѩ1pVK>jM?ܵ WTpvmѺ׬h,sg!Kܩ͑T#%l *A-ڹZ5{^G$]LUnlpx3ZZe?Z^s*s%:?Th u'ɨPy NMтhGܹ2]*pT@e OxngpP휕 "]IЮ?Vդ )  (H )QəֻkyuAλ_0WP+/~D]? F쥖}KD s7q: []l"*Xc A]8:d+S$;y+Z )8)xr[k|eV}j ]jhuݺE ` tR0b-Ap*Re ¦f{eŝˠ_ƃX[N<ZnqTޝktc81nVG?+ rrԦ=ܺ>5D7Jhf=gI)fFGCM;gk;b#~'yUe$LIN[)nlN͉(G/1]9;]bD+H3U4d| -._8ނp}ӻ=W~ڿ~}Y޻rYj}{*4S`=ZG9~t6qoz*уR壏j7d2-D0(u_gEVWO?7hٓ9x_JwF(Y Vg0Av w_{7C*Sm{U}M|"7WaLXiEB}x!>yɾKԆil.f5չm^ }w8憻wեn.=/S]7h8D!~_=K)Wl+^2PmFJuv/-PQm},F͗v:Q~ Xu!~?.96~檦Ca\06x{rȏNxM/HɥHL ^6kh++h{k# i[]'N( }EEj=߁@Ͽ,3fuTD+dWWԷlh rGo|% 3Ϲ@Y9ZTZ*/R^ښ#M_N{I8sZyw .IvjzݯpdFm*eWHQWLJ*o9F"!k:PP@B&ΡpBV< /Uk^"C-5\wY)_,&Z XmT4<>J 5:02W*<1I D:Ń\Kgv0H-vjݟѴJ5vԖ$:{3B~CF֡F Yk($DR3ԢkKG}bap^ht M98wޣ~_[:$z, |rG]kC|@O .Pʐ7_y8\CX;j8̑۷5}L~&q0#Iט05"΢y;Ǵ7;}"]e&(^l%]1FqZ{NRo^s5_J/ "Bh+>[s؅ey|s~8>IL{2Xfvv< ~]'* >U,F;--=Qdqs!&'CgNC(l|L(~hӤ:Jlq!3Fr[ߚϤ =+Px{0h\hcf~ʚOggS@C4&#%5%53 Xt;kf3`lhHr(%b@y.։uz̎Hb:"s% ﯌Wxz#n&q)3ik%e=oOԬL ;^g3L8Z4E9|tCER2cm)n>ʠfu^$Y#HdfgG ȾfԌ9vZ"p2ajfrS1g{MÜɡ*C#9ɞ('d)(dd8 G~(&|SM:ZW9Uk̄|09\'F7SF( *d~DϣZCBFc|ǥw8{s BNMt -k 1RKTS`qܲnE# !&NG 8k256hB81vФr SK}^fy `o{Mi%aѺK\9[6#VMmElk]ޭmkEqK4j'2hȧvks.6]S)-cp=ۣ؁SonN{U ^KPI}>'NliP-:F>NxQ_7>K-wl>t.cc\eA7rkӪw~*b$)te)崿oX؁^r3I߲p4TZjuٵ^ $XzXr6Ϗj|\Ռ{9Ml b>rShfXzw)J$A^q-Vձ`ea#-CtsnNsh\>5yzw+sUrm s[d>w/8Ji 典Wgru&n(NOvm/B@M1=F-eKN{ ^Ϭ)TlJ1T,>+k53[{YCt&({.g-GNEAjʍcvCsУ)߭~b%$BGDS+Jt'rҍ:8Ĝs{jF~qA ޹:ŠCvgVif:G:H?_F2"vU5T[;kS{в{sejWڨHԘh=Q3{ZIW#5?2`?{w*}Ԧj,N]T?rugFIZ^khu}.5l BǒQ 5ܻwV#*LJ+uCjSGj&tduv]8Rգ tf vXbQ1uLhΚT8l%YڵC ucR3&I+9S4!ڿD[|g7SmߖNER A&8\:7˧}9h{-d1n ^R?'y߹tyVĦzNkx! D7^ERbsUDb)[M.F|"QT8{\ I5H^7m΄`ݓ 6'2S77<A<u8xc@oreK "|I[ޏN)ykyo#c(J8W];m%yQ*>/C꠼`^%<발 ݲ&R2 5ObcҗaFk+ p'-8w ZH/e Hʋ)Jx b?Ƙ0N˃3㊯UWskTؾ<*zKMpkcTEܿ ljr8;ISF_elqk<|sT u*i."s?M%퍑oWrxz%g-_ig]].G|kkǶ=M|>5sЎ̙B.҆[ӡ#.CWFgV[vB!PĶ7h0_wݝvтJR@)^:?"eOǕٿB1]ndtň̡*Qu*w2k3kET\>$EcvZs'R5֫aΓ, s:i,dNf1D]C_"%-BS+e=/u|ZzSVY:"=)ssΝZ<dtī}-B٧NbUtU%D0\ϭ_bv-gũ0ϯ)Mb}=݇[~7hϜڤ1W=ˑr+->QSic:/Nrֵ\)S&},RR)n2̾ {n3m,S/ʟ|Ȋ_kۃQnivq_CŒ)7+\ RW7]B6̑JWM㎲I6sc8wǛ~;kc8 7;{s16>w"!Qt*I6p4'eŢI30xq5nX Eƕo9aJ @K dndP[@TdfO5$'nfQ/t\Hb]֯jYA}}[hNY w,N]U9SAAQUc?cj]IKd.sGdUN鈛1gWjAG*|FjCwhOhF:d:Ō]pj:Ңs+Ok]pt_}$@BDBQCc+fDk-_'u~U`5XUzz<1t843|#8 WcQ4@Hv/>}[@wGf8\}T_R)۸u(K հ9pqP-O\\o(MoZ??.NtD;^N2mnb`#m@TőeaC*[^>iOubMw2j!={V]:e>-/I?hy0oSZQn+L"uz\:SkC0^Hp ӛO*y9|Bb~m0W=hg⠸/֓iS4MyOKOggS@C4& ku. &53 ?tvՌVn7gZ-<"FwRR,үUu|{-4 ݿZ;>39n5KVq4Zϟ#st gY8T]h &r5$(]9SfdҵV_;Z=ScU~h͔F5N'Y3SPChxϠ==#ApBZ佲˗s^Jt;5׿Z!-0%8뭪c/H(^ژ`/6N 9\v[}aOh 6gla{R\ 7=7Af6,^Y-՛wUTc4By}<L~__:.Z7%ͲO.Z`es!ڐ<#ϽQty25jN\ꥧW"3L5Oށn զd7Q]4iEþ*ܕh SkC}$fwGgt~Od=ǧwOGc{Jwxϛy+G`,3y^hLc:Sa9.u; " VI,1]{maevv!.DΗ>z{9NH_jNUCG(4 eG=%qRi|%ocfK'/*X]xNsu,:Yڟ]v/7 ÉG.K|\Y`ZG]KXNzjZVt=^$ Ɉ_y4_ w%7~/8|8IRfIcAV$N<-MlL/dR'-h1<@l 2_+5s#bkp͚j{'swD.`5dzuHm*$oaUzt^q jF'GK*LA,w^,M NWgZs|z*t33wuj;T"ZY$k.#6|5DGjg5Lߋ΄],N:]_`Rw2T$J{tZc0ϡJv/Wvlj:s.)I\T̲8ƾA0եjʴЋhF%H5gy*4rSP;͟Z*IMhǛ5oE#I0`֒SV BZӌvvp3/YCd5ELGX{A0rs(;v0DUY:9jGW NKf~l1iГK~OIJ'M1OXTE9=sf·l1T23~|t$zn6:Ώ5/?xa8nm  1#30[wXMkt4ګ[[u0)S'p}tyhn1,0 C}at,r)nYW5k]sb/ôŬzO:+ ɉ)Ig|5w<5[hEhpA?Zْ!YlMk>hid .?K?Ou qxaɖ {nA_лTQ^܎u9\?J)olnvP;Rwo*B])%i=ҝN͝]Zc \b?!+I43PMjt;jm jhoS&tGi =9}6mH8Ii>dC(%WӍLmw !ݔfALlz_|-0,yum-mnz&tR\3ӽmdg؇kWC27Ҕ`م>klρXnd,|c 7<%z&q#O_̶\'10'+2"1UJZsf%ƴoԗݗX?/r_A)_cu Z$L[o% h ?,U >:sq_b5P8vl}.>ݰe)k+,f`},ECLy+ۼO"-bt c>V37գ(.ikZbMf}bK]O^?Pؿ@^5=@ax?nyq$fJ&Dͣg7/uT2:'xyk4,~ |NLRO'=oq&mqɬ7D`64N>-8\eC`&%ߦŽ3f@$k\~JUZ( ZtZ%r#Ć1pgsϽˀ\ ɕ|cy󝿷أvd ơu72kZd6mn-O7Q9 cA.&.JgܶΕ>!˿V姷I|?G6J yw.T;Yn|YMӆÊ K,ŅM3zxYQdgꍟ\dm(R5|Ƹ+_Vn[d~tT.P' 緻&vk" 5Kȟ*HԌf?o훧.6*)j_.I{tu{苺vĻ ѡf JLkԞri5#"e2.5ƉG^;a&THͯp֖*)]늸t(O~4 ;!^ӵqV*6R_jx{(Ks”; #;*2#֣!jC ?uu-?)EYkA͵wW#TgOxovcK* H4zՉdHjD)FCWTkP fBNs@JsRǁκSXv9&NL@'ZԣB@k(dGMZ:WED+ϸ8!{3Pdq#=mƺlP0 =U{wNZF{k'@$ԗ:`|U崕1aUK`ؽDܺ3Ifܴwz[O8h?h|YPwԍ_Sྻ촂lGgb_jϳUU!sS5# =Mq]#lf?oUvvy׊!%lݏ!wOL]%wVϣK矺~nڙu뭜('JŁb[`Ά7 mJ{_s=zv682N$r5λԽ@Ъ%*'"+u\lm&^ ^qK/r߾;%8Ԁ!l[k\B17Y+qbY?b=U2^+q׏#^ͤ}|!Y MY]8|ܥVgPnL p4]9fJ:@:8:]qc.򤥖 G|Iud]'@Cq) j!>qDj#eZQc`s2+OQksEPk8{I }ej@S,ѯykehMx@rPpȨ٤{ru@Q&=Js}h @y:K8&dHgdR%FVh^Nun4'5^tҩdLNacb?ç; !*ē4 A@ɉPBSU{O{ 'Ubg 9:kɨ¡"&OϯL5הl t稕J͜ ]t]7g2['ӗvgN%ho{#pLP IPqr *8}&6a("/>|/Ml0ɞOs_N|`|xc6M+Zb.>fPkhU d>k=5+w%׎{"b"z\w_Z>J |g?ۉ $j}?]S n85 5|陫0ŏ=̠w~}uXOy5|>ȼ/qN[#[ }y&B)R|輄{KI)cz[[Wfv$R~zF0zonj?Sœ._VZOf^D+fלk}9Oӥ Oo'osRS߹IWkazxVsU3G7ҩM[ϛiC_]kKb4ΗioC D5،VF7.lPl#^|4I,6o?ʻ m "\i&w]GeM:wRYи7V|FwXD+$Xe"q;J^;N_HsTNo/6Xau*~ŒzͿrET^!~sG&uܑqЍX\V=1;\nPz?0JS/qap{ Tq} )چH,)?6[%Mi9H)Eux.Â^C x?:,mDA5ڙvwg\9g_;LnYUӵ2.~e,;F;i<9$Qnu*oG5/J곸&<]6d)^u >6[珗Ut{kcQV[9|]ҭcWd : .Ɠ5X۪8Kh :@|XBAUQy./Ͻ]o88ƅJΑPF:ŎiTq%ϧdҨ$.Kh."#&}|C3vGuXk2\_{F"yrRTzjA;~][[H6[Rc8^ի5Qs_NSsv"+A:?!*爓"qԜBF~&'B]$P!R#*{v t显U֜S*YHJބh/YPvVOhV G~޴纁j-tϦ5.$λ\ MZ)_wpD=Jz^W#=bSRozwn(˔ЄiJ`ħIA~!Szj2 E\pbF`RГWƸ1/=Mڧt, 6XhQG.qS/jG#Ü~n5w$1Z;q8V&lv}C,ߔN^(R#i,Ñzsg`Ĥ;>j\@ /}Ӡ7ܳ~˝ކɒ6-5qDd7;Ʌz-1=PK'xρ֠s֜?L4VKv-A -Y\~C]6y)N~&hq}$kl=xe=Elճ=K]h5T׊-> vurb j|jϿ:dSNEmo:fVX-I5liV6ׯ6Ct &$,S޽oa$Y1.e*'ݰ$[&v`ZY_7NB㳻{F;' q'+{W ^55}X\8l'G/L[S {yi?WB=lz78ea Ok5v/T#4Zrs7OB]fvܞ٥2_&9gATrOJOFQ*w'jOE<;X93c8Pt5g {Ntv5ẊNUKʠ:>Ͻ6))YSE׈*^Dt)1'"iU9vkKkNBCqcDumjfsGB"H ZZ8%C@FY[$?~q;R(Y+Hk}3-pr-HJ%:밢$*]{!N5ОNP&2;&U}r薢NtFQʤAffO5QJHfG[c63u1LT[w+Ժ+D735,{xWa$!bkךQƌ@ x9-Z\Ij됳N]&-"D pKd<ƒB)#vY&w2%"TL\wqk؅.rCR]Ki:sϥݽ2 nhI}GTx,Ϛw(izf;][](D;F }/Dgbj<ֵji%hmJp2>?R;]hP|t2Fڃ{]V=:;+]rWqԍmfk|~Qvƙ])6AbN\!kH N659¶|ԓTd m)__-4}.Ygߏ츕%CAYmi((5pճrI31dhsLsyO1rhmy.b_ywUs"j%|,*Mg/mJR8\-]-q7~HU.l8sY6e"\Ȯ1.9fEƏRW:H*ZZÁ}ize{Ɗ~sѫjr0:K@+sצn6r.*JI8{kpY^h=uҫ*rq͛sq@Kn㩚2`Ns.=j{O͜Z5dbD۹v"PE{k蹰M<_4ޱCBې5KlkݭpO_UV .M$SF%67 m'3>Ȓ('Og"4JACA%#W$/n nL1 CrQ׏3 WИ$,5(*NC[kHպ8L|?&JsSkԎ '#H&nmMf9vDB<#4NaPg\yшGMJ]BDJV劐5gVN Y'u+djsE Rh;Ev8>~he˔\TsiA H[{ko@աRWbCkiکEJJITI-dՋHQP/$]+TmtGt5jQКWT4.OjwI&$IB1kxlZigvTh-fA*Z%CftT؆+9oW5Æ3E_t|ADFkO",埗+C*w?X}HCI_0^%8#bvu7^kkqW(}/eW3&3.5Qqp %몰9+့mE8bmd{϶},XbL ke Y|.TOggS@C4&"سk15 |ŷif;#[֘yR3Z&μ䐈"BSWowEx9{kIpDzt(ejѱ{"%p ;;ьU%XEw1tt#q})RQ5*S q 8LND;lQAL%ODDj˄$[vgp~MK[:fx]w r<ܒ}K].'̕'F0ܻE{:DmN($Vgf*8Yg!h\7.)YfͫD­/]8)J(N0L1EP JBmrEث$S3VTQ,BZ@"$je]dwSh +T88TU PFAuvjf6lUr8*rU8Qsӭ#8c5gug* Aݳu9n{_:ܐwWV콃м0|DZ ]7{y$٩ò`rw˲{ʥÛT'տ71~nlho` jq}.\B%Znzk뿸!EV mvQm 1=ew$nQ.Ccr7+zDӫc崃Ц\ '+A/oV~Vi'Qo8ُ]w6IioǪ=FVPEK"#=Ҿr<#'φeF dogXP )2E^Si%6G²>&3 ` 3\.Eɫα O Ϛܨ%U}8W(4;իٮ*w _Ɵn-&/X-E-xG2w|͟Zq?-=)δlxBkqXS!mql5RƖ.,,cU*Aƕq'!aEEbZZs!VE\jͮJm71W_[:*q\MIf[:V@3yʿ&^s ~ue_Aq9I_ w"E h'!UsDļ3DH}ԋE+zr,G7SLKA@,DҥsRgөuzN$PuSCU"\ 5VZYy"B۩M!KFGʺq19*J뜍5㫰Jx^&dHi)&I/SY JRCk"gP;8NHbX$T:ЖHлjBEAqd/v2X'hV3Ot֬nue>wzI3( Z ͍|><ĻSLTqu~}}Jɓ! y1+,TwD8q@$YU`dznEGU0ާ@NMld]P @X6'ɉ)hYwݳl-W,)*D̤ ܹEϷoO, #SLX;6?#]*(L) ͕bux7Y[9łP /kyaveU:DMyJNWB4%sdzSvkZL/<< C- wuOr6{I\qBuїs.nZpSV˜8F9?ܢl)7>uJo.Ijߪ:@*i ZR\w}3Լg譧66 { J.7! W^x${'hm;XdkB*3nR=0vMu<*x5i4?cz )I/)?m/Qꬵ8f$ns]E*tpuY{?J)挤&զ 1/hViݹ!Sws8tFG|0,TN]OU)7XR֨=11Z7[;uNx& ذY ~ONSF]2Tnj~gF moO[?)IHo{y~^^*V+eAU+}DQrmƫ: oe/Vq[1&8kuZ?^\,#IglYLlȥ>1,ϝ iȋNpVU 6`13c,ggf>4j~9ߨɞΏKŬ_o}ދw޶:P?8l]s ?k7άTZ+ d Ӝޙ^#IjY]|\CՀf͋B0mVu̖E9#kWqGqh]U.WX:zO ojqЂL9KhDh#sN* α:Nz$L!ҝ[?FC=ɦAƾK ݠFk ԾJN H (/'PVaDq dH@Oh@q?EXtp#b6| ɛqʤ^[W pȧ5zh׏rYjTt ][S~&K}j\lJY~P=O}s܋YHKf#xAk7;zY:XKf7%s=nv݋%f+^\=#@z4C5Iׯ|~~zbt{:]}"'׳w0WOA^a\a`vA8O0GyVGdd o[8Lo;t1-JvSiۧzbbvيewa8 C9:W'EOVLݙ- ϰtgk)ؘ ڭjޱu ͙ zG7ӺR4Q2%y,dgﻜ~Þcٮb~|KDX'4Poߨ!WDʡxܑ{~>{&ung|0?GJn2v ๲l7xޯESГuq O6>ޠǶmǺ+~8q˱Cm|?p-b`WxkNH ;k+=\oO*9͒(''P7_ۓT5 f4{ }6V @ .g=4?6H(d+UL6ZJQ Qm Zp| ]+ ꁤ#3lN!*l5q!JH]WR..j~d3B:9oyq-ҢdEc٫:d%2AU8H@JyNpZK<}4T;UЉP\d<&Ok:GN0Q l_7 zM$;C=sV}Yz7Fφrg?| 5(_tmp@V`[ȧ*ŊY/cl6e.FXG$ t,?#u3G&hݭ VG7/ s gxT<z?g2>$%z ƸFE3g,!~w~6q{)'C?d{=S&!:&1P %F@Wڸ>17 7ylNC@m8@a]EdGO[f3;Ki2Zf _iT}[2A?zhP4䧷sj{lsuU% XhTP\w"Fk6S'JrQˍ b8UՕ|Խ Z=?~r\w~+Hc1Oc QkMCoUX97|]k.|G\+M6}W>=$-5Φ5oF0Sn8Q^ wZ>ѵ-_׹ ɂs.!P~R|8'e 6A }.߂.Bt{ssΡerFM\7e6_Ś$uS8oѢҳe-xz*,VP3OggS@C4&#m0* 43tǢɮWqxSp?˾}= {*Tju6bՠO~etֻ7nE% Gɽ 29_ t֐T'{5ӓ('Z_꜏'`2EOJsjGTDx թI|5"픮@gdQk)4LIu]uoi)DOZqw\CwscϷxw}׎woUᦎ = Y\ibAq +aj=nvH-ρb0 $}TU1Ƌo^#38Y9nw&$fh]G:Gx ʶ#|xW^[7y9~.ݫ{_cNvV}M\taR}g6Jj;q3.qKq4^3q!fb:q?4JI |s{r̞15C5&Pjj72:OeO)Ȯz<귽2w¯anCM Jwzxx1J7B-YXsLWCӴn>‘=KX}G<^,=qѣTNϿn.|*x;|{,xϵ5I@1º188|u4ukoSVY?e6%uyvnǧB}ng8={$njRKl(~5Kyen?df~CDuz!|7K,n뾕ҩ}x-{[E4 yͿҙd ]^eS#[kh.-+?:s|zGG-dE[3˩4_Z]Ɖ8xEVE#2j#+zq]l%ɑ58:E6!L=۩QK2zϜDu~֮*UGZ33]3eV‰;^O/+_1Ei Z]% r"rQdLޑnvNLG8*M:믣xu#*Av@\v5Y=E[҈k(|dӽN͹cNZ>*ATю[z]V2:\:NWOId%cB 0!2l\Zٗarb<3C6h!ẅ́{0 td"pMӞA0}r@Uvw1>³ _|5u=E7 kn{U8%=+Jv-s ^:os`\714^ZA2@c>e,[~2@}7owNLS_O'әrpy{R,xEm) K+ ~-\ j:xo>ƷAc}oڬ'MfxEe콐6?^_wkW֒yB^>6 C |FB룔_R<\F%ڧ$.hȋt{<˰~8~z΍_'S&j >l M<4s% :5:56%꾕y{{>q#[Hp_0f+Si"ͽ1f!#!%JѤ,ń,3ru^:g^Y>=˒H4h#zRk-bc93xVYS0!k>甪_*Ewmil.6ԲhTj$HDZ;:eP"T :ju gZ*J !!kǩ.5$C4 :uJvР8d\]i)ҵ-į1 =SɠFͪҏLjxJ&kl)t=?c"/ߧN@) :Q޶|~>0h *,]MJrOy |><Sܛg8)2KMU?nTuޗcQkt_:j-_QQ3+)2G¬;H!<2s{uݾ[卑/#_g[9naKc V *Šnۖ['dCvKo3F;|$_#X҉*}7{O;zGs@u#c|%k*m{F=ssQ8|y?uݱxɉ2\n|m7hA1bHĎE1uʥ(n<Ʀ:li}Q^OzGf?*SꉺŶ}gفzp^s}% 5iNK+ΑQi9܍I~z>$E.'ARq=\8!Ǘ_dY99I7H*2C4w)Rgm4p*5IȎs*ZYv zT0)ssE!Y&(r]UO(ؕ,N5{eG3u'3Sga49]uYOH"Z[TwBEi L -mӖo{V:#m HZ#}fo]KRc㺴2o"𵱳k{mv.ŒmLySs:qZMN%!p3k~WOՓJJj#q!>vS1c;K\.I~1z;v!*!!ͫr5'c|挥•K\'[OIHVFri!kh_DMJ,3հ̌&&?`lJ>K9d4hu[NGzk ƇZ'WTѧʞ gh; sHynÎ7\QXX;2b;(Y|od6Xi]!zn]BM_QG(P>,Av٥؏L"* Z4kœ^&tpGݿ'2wVY0]Po~J~ɢg־iBduoQeB:TItJw D W'IśhɌi7)zN..C8N6RcU8:tثS3,'T%)ze}Ԡ 72֔!S;xIf,h!:gk$845Io#ژ1%Μ(AvդpȐ5DS&FȜi#BJv JkgoQ\D{Jgx:INqȕfLz#e0{ui{bBB$-aLsѨry,h Q6M`k{Ƈ7| /܉SHS|ի'mbR'j4(8t/oT*UCT n}6.۲XsžT+ړpύ\=ELƔ&Y F$t4N߱b4DڻWYݿўakd_|.qڴH +f#%1,Em5˹^sMZOU@ҡ~#WcŴqjlun. +w26=~Z0XjWz^}"av_uFtT|f+cWs?ZIb#mE{OSj,8x]m럲[u _iu7u#0=Ouj?4ޕ‘۱żLR}j^ً翗jeoZ:U#Yѣ2cu~t HvZ퐟sG"\8=< ]X_;N9Ly#jGč@?ȬߡM WIm%5ɲc9CZoTʘ\5 6 GE4[!J:UL56c/ ,2I3-f~yO3ֶ졚5׉XmOH1gE7'!n2{3Bc^:ߎs_MWSdJ$vY5ėq>v&a|0uי^/IݍhKNZE:yU9RtRL͵gwR?zu'hå$>EGԞ Z=_g65cn(ϬMk7FLԈ=Pk19|Z{Pr<^ɨP%GC{0Ip֨*vVEBqKXШԜMfgBftTP;xcj̑c'{o^J/GxhlӅH !m/~w,mn /#͙kQ-uqxQb2eNtLő;~;pefmO:oϚf';{Z?ў⬖NuDha}yWgkNedIJV2qw,7I6_LΏ ^@.lvRrqVԀ"J1d5iXQbE@{-0}E kC+vӛSHET*`2S 5DtZ DzӡIu<:Ej!xճcexH6ٚԌC)LLEuq)祾xUT=_ ͗4ĠuHy_Չ옼s>Z4&f'U!gh9|Fr*4ttUD x:/ :]Vv]jtjwG1 5QXjYtJMfM;^N uWH]FkEF˵3'4ɤvBH%mYHO#4Ss^p+ZCHd,5̤B=ϑ8E<3{|ɏ?^V CwUfSV` @NN7LRgl8qZ5f9쟹fz))Ǣ?> =u.TӣsS#HAXczq2)@š${A%Jӻ~uyeD| 0' $ַK~;aߵ;>Š b/}Evn,D;mʳ2w;f5^~t'؜AqmGź$SL.oM.o2 gr&;Xw=w̉8f$Q̮$ne{Zc[±$ jl}L. A.` ULqh~+h]:YOG(, r>ȯ2wׇ`5ڏsbu/hV~U{T/~3H zT0 )]`SA/ۏ땻JkzN&1npE<^hwߢawy޿{MmӨSQ)Fr2a+:Pwu0ˡu X=? upʺm!n/𦛤ҩj+kϝbMxkNYƠޅހpѠ9) Z3;d`w|Xwe|}=r2QUm=>UW>I6{Y̶[=fڨk_*$b_GJ--3lҹwV{2g|=R}蟌w-Ly<dr~j.#>ӧ0#+=!X7TM؜&by9ͷP_nXkU{q%^2~VusyS T9 5+JYf.S;r2tE㷺d .˘nq0O[̬8H'@!D{9%EgK#wu"ljkקBh=ۉN\K\(a7K$Ft\2Erj]vtG!/2{F3f35'v~}l yhhex́NU̕V:F'iLIETUEYVvRp9)gL4-yeWٯTpbmdvj D&|N% V}y}vB,@QYN381թ:$>x .}'`#ztf $x|U/\C[!HʧsG|W"oi"3UZj&u}nꮻa$̵:'C̓Y,V߿3S\mxod-҂|.<'[w8Nw )h "'-ـ&D~o۾N>.Q`W~7p VoQtL-~a׎S3.WhAR')]aN-0=/]S.jXn&RNfaf鎁Ȍ/.h<)F.M@}ͯvbf{j@vyM{{3=u)`Ұ41.hv:dwgbnNl&,H=8oufO38&ad|05(ckk&::yBlX:t%z= U?oqW٥jFBw#+~F^(/虯zr}Z02hȵ_2sStn\T" Ƣjpw򻪌˽lcxq.ڶsc셻rt5T'7,Gd ׼+E>hy~߭49LJUl};]:@\)[ KwR*Dz >7'Vč;m*c4lҳǎcn*_nYQ<{m/EJ 43wrh`Rg^iZEL=*JJGt)g! DY (j. 5 ¡|eXWmUhA?q'+@Q!^9dWKΣ#<ݩRu3DZC?Nvqg1ݳfp=꤃PkK#Y۩8ّQ93#Y+gfm/!jZ#򤻯ofM% x1T"FBgZٶ)_ɵC<puNԟE$ {+A| Z+3q#;JS@TjBKZEoDznS[ %ϬEK6Ԡ9[{r\؃u Dp(qC@I)Z8atcJv&`M󟙋tJ#wNbif~ռm t WF^|63-AbʎE| KΉWw"6%ᄳwd~[^lq4_p ׽rj#-P3T$]fІ/=L xH(@҂xw%mbU #B*TwA8;ܼaRˡ_nIgF;qjYi9RGˊ 6h\ BDז^f4s6Y:H ~^|Zf(%Ãu3)/[HiيLq^esgBUU߷k_:yʂ28-|B<>x]1woLǻ՛L|Ima.6KZ]Wͭ!rIT; RL'6|0H֫pEUka*:_d>budy%l NN-v _QM}ſE"->:Opj܁/0ۭ$WM춹CMji?j;,Lϓe /V]@ b^ .g qqZXqL9d ^>"קϣw( iT8*n.r9h=xgqڌ4$FM[_5Q\Q(DbR0HO[Êחr&q?M4V 4 #~eQE=yX]F-:h_}w,R;j$Z :w+=h֎ Yxsܯ>h^s;,"^3A Av~=S#Gj,!&~DA";dCD!zMjmz7h*uzMH"==t|Kߑz L"K=CRxfiTӑP(M*uN^e;LR):+SY?*&sמ{lfUD:]@0r9_f.145 ,9!w=pXpfSoI7fp$za|cI?!&P0'^qg&s=`>N?տ^qCv Bv?L=WGx@sF+]UaĺsjdLPǬ&Ri>աӃd2i>HUUUg'!@|v1uB1e= :J!dHSa\p<^ v;mVD65cUGFO'9 e'\$^Jm&UMיPY6b#ȭi_Lel3W+-x m5TCk䜾)/x\0fםy# VZ~}KYз snw4 ϿrQL@4 VK3h)<ɝk 81=1 `;[jA,>\{> ΃쫩>v{OKR?>Y#Ը_Wt6j^a8=B|zV'sP%$yOQhy%ULx.)RO)K?MR:\ypk㓎p.S]ʛZ̊q4~USj#]zMgPAK8Rst-3C)]"1C@;(Q/:>,CjMv1Uyϵ~( r& 笽h͔ڨFO"4sFc)+ӽ۲;p hc+Y_[:)$GnH?CmqrSTFn&;J|tlW{!z8̿KSkmC;)_x9'[gS4Xɥ#lG =fJhA6[ǐjr<8Euűo `|oj)^-sIҕdlΗ2r>Umv=>^}<=,qŨ͟}00RZN9X6_ʭ]vvn7}6D4L(/:F-9Dxx=8%^ 9'b]?)X[1(K$mSTyOGwF{o:>_ˡV+3K}a{eQK1^M]pF{6< |I5.7.kD?Mׯ/Swz}'78il2M=dKlC䋳\@ S̾wO rg]+\N?)&/;lj~Jw8K0pВ*S'8t@Q+K|+.,TnIQ}ls^g&#[`RQH LvnYc~pPE)TGA2,šq%T%:YU9GER ihexFvTGR3kvf.K ,^/ЦEU2OUG,Behqv|p HZ ŚULTuzF#;QQm?T/ٞ݇Giu80 HǨȳG`ml!fZ~Kt=bvʷ,ed NL/`u2 GKڅ4x_MhfbpqҪvkW>'wp<|RoUui_bh7},J5Sva{>z.NrW( :4ۍҊ\PUKܼWZ̮3b@!l Cw"cwEzN/Z{ħ:\]'l[5V๝r[o࿛{~ھyEi1߶]u.^53LzlյjV5bAt*@}]gKxhnNI9/"N?ܷ7? EG\WQ nGRIp@2y]FըǫgO3Y?|?4sȎc*>˅zSYGiY3R;ߝU)Yr 5R]ubx09KGJR@ X+0'/u/NX!ډZQk3I`b1;0{e4ԧ\ɘ'^URG0MChsq\nϏ. lצ\JǾo=oPu 9VQL&ڬMжf}4*(|6 |.i_rq.It%|gu5 #9u:z\‘G&/UK(oyA~VBN=K* \^u:k,Az{1 p%=CUG-}op6~J/o<|xyaoW絺Ѓش i?YƮOxbz^|ǛW\gZԞ;ځ{.R=w9]3, ea2j˺Qپm#Ώa@$jQM蕓UI7R"No2 qeD{pTCm2ڧߥ޹me:>^tx.]̾V<җ;U.Fc@&x-YTðSAX>ce~+W~=؍Vosjfҽ˯!wъ:O_m\ݯ=ٸʶ"Ey{Pׇ3G٬97#g/sШD}zaZϬLRCLF~RC1׫t{r'[M+9}EA=VxP5 X̀#^Z9!xQ@7: dyh{YOџnS~ڞ=hkbW+t rddZdD5Utq 7kw]Z~(*Z Q=ѣ'v ߳tq3hCN7G8R;p|$HjWu:ԟ)}̕="*eMzasAGHLY/Zn؏c:'A$$Ԭn߿\wo&WԇStXzU:U2-]h:$zivpqԳV)?no[>4u"JN68NrsFKG$;=bb6֯'FţuR3DxtvgGMhu&9y L cR>9ZU@!%BHjur2U[zb:jKPZfzdҜO]ȭRi7T} P e(j+XT":ӊ*M'N i{w=M?ȋI?j0Whp]1|)sB?HԛB#ȷl\ogBwo%A jAjRzEW)>Uj/; RrHQF%:DPDй.3EsEb"!I~\C_]C:Av:Hؒ/:BS#WJ`ғWqw8 ]MiRckٴf`y{lyu:RMSl\xp<\+(7lϨT,D tZ{!ɯm}'`Q8EP,z_֛.}>BWW{HO ewkO@%IGZ.OЊ4=B{=XzИ Ζ1DžԻ#h5P\L.՘2Z\øƷTE8t/5[I`+š|z0{n\au}o^p/Sw%EG=ִo)m!1oۯ7_`>.so;H%x4գx?;UW$ud]!MgR[НLMՕp3}'Z[P VE/ّOs>_}ڳ} @j@zJ.]`/=Eʥw!p[s5Twa64x6x?c_GW9܈?hmZNn޴m?*ZG1[9Gv8ΟJXzIƾN I.n{ zWo9~;UcxP!<5y_OggS;C4&'О4*8h&#:g"b*!Npn_~꩓Y,IWCr7hntu=`#+C/ԐU~m7I$CrN=-ꥪ93Ls*HMOǛfMB \;N.0uj9Qpo隇Y3ʃB$qTF8tס-FE 3tzch" W-iz-=ɹRdZ*Y#~j]A{kT+yv֐u~JY%BT2nIVⵢp1kF1q))"H];+sE_AW +ZzAQeZ3Yothgrk~Q _q@g: " D{]!@yG;`ZoXw[ғEN_Av'8W 674z\nH䷀l'4׀qHdvYk|$-lp C&`Xu҂?1hg $,]຿"k$n0~c84[#[=(͙pX%\߿fXֳ 1Q?3ts}w⯳sVR,OM-Gh4捦mٝzYnbG')k}w CV쳙8mC~#OnY1ρ]d= /FM*XٹsƸz-P ؋dbEkY8uL92)^uDѰA%$s nkL+89ZMˋ))A| 6mnt> xUE@cW?Fctc,7A^dbݏPu5upZA@~ӝ`Aט3PCost=ı沅:.QUo-=9+l~XӓHzJtO'݇kvljazzt-\V;Lpa`k`g/+eĉ¨JWYn&<x:}>\G7|mŵYprR_'Tuv6챯|NH((ZN6{Bf^YRf&Yi߬͆[y7.[1|,|,za Zx.{c^5Y+ O¯$^c q8T4{r_uxMcȇ?1XST*0vJu'xSi'* Ik5 Q{CuR6QR|M=NU5uwD޼4}Ut4q _dK;.4XQZfȬzӻe kfJ.kF>sF }j]k} ]QjF;AKWb=fzWBk qqznj]>s딌\zǡПχyRSg!ݎrPyeNՊD$Z{Ρ:>dչƑKȜqZ^tc%*Y]C^`jiuهWͬM\Ϩ ŁSUj/LT 8G& h"rgfj"v+ڻ)_4j8{t *١Ijw/;em=5_|h$ 3$jqA쌍V&7O #`,-bC]OB3 KUHO&*ӈsx)b bɌؐ(yNj\dN2xޘB}e~&2l2+az{[~~ē^['O(vu)$ӶN]c$i:MFnǺ 0m}.]u:rܻG}u9u=̝n~~Sȹ)a,/Oztls֦1W+5rwCo?ܽ WOUG2|srte<%φqFAM~ wP&q3\K~qy=Mu2ke\rX]t,U&:&~򄅈i&RTIXp&N:k9 WKRwHjgDQA*}un$dCY= AF֣G>Tm M1 HMNkצI9&:ypPhJLE0_|5dPDL܊u`݉r1Mn lӍDluBBEX(*VU8[1=oD{SΝϚ 87Mظ5&Sw{VCZ4Շv! |-;dنge Oz5f{߅Ԡ"{Uqm_2dCZ=Ů'[ fkA[:T[]S V/qƶ+"Lw毼 HKo6rUԽ7O1;bç0[;^JQO*%6øΝr;{){5[ԡE|26!1h =qƝ3B.DMhOEy$J0P s{!"뷛Wz ;RZ$ztDHvT-ҝ _iojPP6EwC"P4;$[뙿B_dw\e~75%Y]鯰,$/l޳كdJQ4ȠT*ris1'.HRyN{o=(yEsgy=^}\8$6qG mAV{=c ҥ:qH_|lVVU m"Z|ib ]} .VqñXbwG5Y߼~%d5?c=rZ^}]jpՄ|&eȖ9~9GNZ{|~.;^kπOtqk:1پ >`ܽX܅M7m_4?p~7oV󮣮Tr[%+?Osq#,nzqe:=0{S$ZW5+`ߣ٪yʄN9 X8 q:sP{=Bam3.oe`/5ot{sTًByFyM })yf0]OggS@GC4&(2̋kՋ=٩'OZƬ^e[ڟq}d -]~w|^Vc?MufIǁIfgO:dgʮ?;3/OIq= 6wJG@ZEK%ް=|}KY*wcK>-ͻytHړgɄ՛gL>F꿽|=ug޶,cJ(8+r&zsʷR2~1K,geϹyw|vy+= Y6խZ߁( &mڑ0Kb%i=v.=@f=|D'ݘv6kS#{W4JhH~@h9LXYONWڅ1a q~mٴ /UQ~)㟵}eGîuKEUB{q>̺5c~egJ_oE:{7w܉űuM౎h}(cBCݧ)z敲eoj9J?pݽt/ק|}mZ,X ,ւ5>{du f0ai-&BV;"V8V"j*jjk6v+aڭX\ycYJeG*|4ͽ:HOS4zP(B4(DC1 @caG@L's_i,%`3I24j嫨5AF+LvseZ* L4T/ϡ4Yp: _mٕmN.Қ41eI1X/Id#ڛHƗn[hu r@}Q7CSPdJ8+rKI' Ц-[=='<;W=٦㵔^Eu \=ɲ;DWO[Sg U= "ז ( dST4z(L<}\lR#&\eh/y({oKIGe"5*9 tYNN[ {g&"7l7O%j櫇Vӫf埫Ǡ/W~m+[<9$B16:DZjI㳬e<( 6{znlGMX'ұqK|d= mQ\Xj4/P{ s!(Eo>%@lɽ: .=|w|i_%bQ|_{w/S2V)ꥊ˦$ C|‡;wEL}SLpd ·?L!Y`qX{tmqbۅaj["Jb?w\$ vqouf?b|!WzCc"5nңɖ=-a!2λ)eqMu~oczܽ3mUoEy,ggnn{>ץAe%/5ip%\q||{ZeS;2<}Yagv_:0>os]m䩺}q=u~W>pTߓsr/ j pkkP_b*yq ry)x"ZAԆT_Xou9e7hJw8Z֗=R Sraf9Fe~ )Uս23ޑuqzBsAes:aG9 ֙xѹD}˜;#F "FV}nr jOviΗ\HU|)ninߙc*̭x=%}KXuZa!ө瓌Ɖ)V7g׮uLQデ<v=?sUfY8C=:w".j =..f݂]NY:c3ؕ.[ [d e,B_/ ԩػ z1RgJM.~}vQlS8镈:RforyGWr2s=%*s" % C:>|`˯ʞK-W+D·g'(.@΀;ƿe%` ܷG5Z83~eگq$ ɃKr\j:v`&炯iwwem]M]<[Y5+>)8nRNj#4GynQ^[{xݑc(p!PywsWnJ%mDzB5rUl>8% K QvyڐcNY u7i_ ,`45 {=(C)BD WO}:V|Y6ƹ␭תeoj]"Ȗ }>w)䵼 >E7CcR+y(w͵qq_G6 G:a_74^7iS3+duV'UN7:͒Ok*/?Ûb5ULo!Z2*\y3l:,o_oAk8{/ӻwyp!UP+idV,5&d}7τcgp# '4:F!&o_"~Qi P[Vd w k}7<$QESSkll BoI캭bN=4sigk>yɹJ4\sHMoθ=mOՋ:qp_S/sm7>xHg-rs]bZr2|ϕk{$bTP/juQ ѡܱbf*Vftxp^4ڈ]e7ZazڏӭdsIf.n3~QO+:OsroVۘ:]|}8ԻՇwsD֗ :}MK^?6r D{|gD #%B%jfcDx{Hcib$^{|[*qC !ysP9' . C~z6%*!WvCn"9Msi<_ڇ)V_G]wT>mcݧ-K?ch?h,mn@0lVel:1^r'dxd˶R9L7ݕ&ӟG}<*OggS@WC4&)خD~xFȍֲYtO62Hi"-oL rTgDԊCs;QFRy)T_Oo]<]V󔚺1edɌXS\Qk9]XF)ZdVS2IY/~^yֲ8sP㉗*5 \, OcIjPh8*g'~0 Ӣ@54hS=i5O@oĽVfZcHVkMozm?B:p\Ǩ*Ocr-z =sO[CR/"Ҳ)Y=8|G]'H^&s: _{eۜzh;l'_iJ`Ӝd킵^ (^w3iǻl/egۓkCWs֞kMs|0Ç>}o:$}i#y85(dL)RID{֥=T &yovOA[՜ʏ\u{Oe9ݹ޷no&r"RwTRv;Yb)Wζ|y3xk|Ybm|‚ŪS~TrpfmkseymO3!ħE3VVc9[.N&< c:|UG<۷# 14Qj!P`lrӣu+x އQcFbo4prm iO b-0<.6ByF*5_WmY\E tV*B"(&p<=Xf'.odƬS1g-51˖W2y͗2&6H~MI.;rZ͇u܆;4_݆ Ҟzc91^d(ȏ/(g7htV4w)W5X)S=K_?=,b#ژRv߰/q{̤s} 2UCn%\"A;ug'x"O8c}b .2NF>~N[.K.a/KjCRQUW>s}LITוu^޳ zaյ k.rnp@MZ1T)T>>5 ' 3)8Da7}lC#jyNDQxd- UT 8IAQqPq3:lcLC}Zf@8Ϭqu.zݎFQ`buF6/TDfzQTц#꺤z3})a9g]~yhsL[x#SnA`K/lk,vj̤-5V\J5\QR;ww P1|W%w Kؚirhr)l|Hs֏[%%',_neW;15ggFlj|$?({IuOW~d03.MZ,`mk+KFd#Gpvuߝ"D?h̸ٖuX{|_[x}_rj6h?~ZUAR֊PyO. brem]]ӜdIi}LDKBjU:u{{9&uU:ñ"SVFUH:}]]]A'QlםI=W3 _os7氚 W]Iž@U GW(>۪%!vKJn,8rmcE. -8w T(Aj ҡ^5BBk|Y~[b*N=Is r$~v9q |,Ϋ]<Z4 E)ߐ~H>|Qd~FD9qn1(~_(Yp8FHUyRUFԳ3 y"WU 2P ZA^oc0f*а?w؉7OGu?"y"?+\5¹a8M_,A\6xE0{~7<$|ˋ7Lzus# ?efG>{[,-kY=&UDWgQzWNj*nb誂4Y v]XbTZ;|I+=as,Nbq': 5W糯ڭ.{^̅gy_35S9ɾxNY쥋:i];x{},X?0C _Mh%hW?Ym'k5{- :/Y5ïw?駴EcyZfa)Zi!lVc+KJcF0 AY"W1yx eMG6QmH ~r9MRHs=U5Ճ گJY po:j*?Ct}>IqXײ\t?6%?gFKoPoGJM^ZEk-Z &@4` :e?)p:iID-ZI=CF I8T9ܓW;jÌM_SfF'G&'51*8r&[GkKmvMTHZO*p(>H֮h# LIgS5:hv !juqͫj,*u,6eb(jfj$0.:,!*2ݏh 𐞮T-1/'j́55v)aB 3bmzvfڶ_Z ң@4p \Ck|[MzmpWqζoC*j[{w@[eѤ:Q訽ӅdoK25auK+'dX>j\/FjBZf_J{^^GNg1J-.-AԪr#90[:bM K3 V?𷗋> K-OIΏ&Ozx W .sPN^͞V-@<Im_"[*hs^WD5GyM3<99!q睒\/袷! {:~~D*Q[?zpsroVv5$ޫX3E p| }[QׂOﲷA<}w^-#oC.ܴ4/۹)Ф*)zDH@}I$U_O^uMSCJO7 ՌpMMv32ianۣ8tr$">)Jj@4@Qk^D $BTvA%=)U q19ksIlMIʞ"YQ8Dk̵ZL:4!utʘϧg>kD72AAAldF j:! XڈyAtf!5Furu=n>ZԤI sdW(pD/~L[ep7U27d@2 z+M}tT՚ ;::;0PɈS=Lgl0O{#'/1ϳv=Q|g"O;k&>Q:70/{@Tކ6_t%@ )us}tT+w1OWO/)Gy>^1)(?E~_NN>HemwGXѲD*C יY4sߒr/P/ޙ{k?&ȇCrbTMmvLe}~nr~m{C|?]{votmoOs43z > 'z˳z9}%N#R]LX](.,4{X`ҽR$ijPG>*8; ԪX/3$Ğᔗ~ZQUpl?֫Bs5kU%΢%[!soR3saʝBA]`Uٱ2<&Է*._LGkLa ׫yc*>; M=SV gf|-ͨg܁|<҆2Ȯm bkۍ@CUTF~?T|aoo1LQꈏπ4z/\KP- wqvnӤRFd]z.)hfi-E|ʎja]ܔMWk ?ny52H-j}msc|#=_U-mcZ.jaO!DD fHDάwTXyYjYE1EKTF!&j*AD[ Q#eʲj1F)2obXTG +l9; n=약FKg7u:[#~Ihm| sfLDXjPM;_l7WYrU(eNL%i9T ްgy{<֜U9fD85^b%A=oy9}NTذ.#=0hu:pG|F(k¯VӗF1O˯;'GkfX4SﻪOĘ?ٜ"k.KC4Ό}~PE7CXj^pdyYgo}_ƌx1F{ϜC0R{d]FOiB7]s@p_[L֡GhYKˍirhr?&q̤INtgs!}e'xs;T^ ,ҔHh4ڰ3I8\eO: l[sd0wGY0;Czm=kU ,bh^G$u9c AfUWs{y x{I]&updUK{a;)?:lntwtU1$˧V%?l!1ו̿g() T9e]Sw@ƶŜ1~/i#œZ7U`.vB}6$\(Tk^k=ooKE&񢓦XGQQKܿC-wӗHYR(]|YwnvLX'ϥ>X)>֐Y[S@ Y'IאֵU탕 ˭IH-Pb 2qecҶz}mx34ӗޤ1|+jHWꌿ!sfa^P_5nv"8x i)ܖ׬߅nFaڙ,`ervsH) f\nJ@i{gq;&JHhc ,pͮMPհeF3q=>%2 MDԐix^W_f"߃z:ӚѭsE+󖙈1f91kdf׾}`uK_*̵tu5 L҂73E\cy~nƏc΃׈Ud*GND,}㻬=!@'3"-8Bn> fOY5$vM5<"u$uVU.6G^Ef/9n8;3Nz\]i Yj03eۅ:;/ <?-e<\&}&SfWsMGw%gu7j}}KDAR%xY(_bOnpsCa)& 37E4멖◛L]"4$u,zRm-X>k9vۇ+{CXuV>o2ڜ<>KTB̉DR~2oԉquxO:}"-$Üstuyz,X|\wqƉ |)CHz/ xiT{،ՙY${6&ㅶ .}Jc"8Fսsߗ:og{! Ax!xw\Ҕ5|ܲo0)mR.-PodZk[k6@fqVKęGSb^M>F`?tԌgK>7؍x&%@ =þOJy+<`aE)¦p{(Os<}7`w<Z!oX&ƜA]!y{˿u|oٷ;x޲Y6?D֔BV}Zmb%+cc ^bDu~R\8ε֏7j6#Zk- >i:|>y[-z+"9hAj5r1FZ*"U`RQ?{I.2@TKMk-nXS+Hƒc*c^?ɮcWJ` "# j{/Eoxµ-ϭ{撡pZ0)ࡶ`Ŭ 1]c sd<,17PY=8_+ʋ{Zax j㗗~jo~qtN[Qf鰼MN+ 1)|zYTZDsag,_V[kp1Vw)tbq5.۾}x5#,:0J$b)ַ@>)_$LsIAgubUO5T;**UTQZnbv3ف?\O핼8rx훃w[kGĴWD_~Sv_~ۗ0]z_o}הgјѸf]oqWKks(Dž}<;R\+P #@寿{v{d\@jWQTT `-}ATTw q 1d~#BBtq|rR @Hxf!9)cZwxRA﷧~9ʫ`OA<&F| @= 9%Ԓ$d'322@o]d־gmݯ CzYHsդ/632n~qgPa3'ϘF$>܋/qwjU>D*xaʞU*ȿ{zzxρ¼T]i^敖y:TB z].#"5O) ?d 'u5J=i\omYιlq20W]s[Taoq̚Fm䥺/{E[Wm40.rZom@Q퐋]/_ԌL| ~-nx8uI[ Ӿ~ҭ>޼y;OB!z(aOǼwK߅SvݺϯOyOlq{k^>/}{)_${Zg[_.ښS~:ub.>9==k0u,Z5]Ƿ]c,C(Lˮ2޹6 ӗ>R5hrFguZ˩Od$G_&e~ڏ9x,hNtWg|;xfp/fJޓ**Ib 7xٛhRvKˎ]FE}y'ֵ_~0$ݒB>g鹇G"?^f?̍phsKSAiK:3Uwyvɗ'-nOzVh+O :s=A ug0 Z1? `gJL$wj$ Ax?L]WGcfnwoŏV Ȯ\Xf *~ g503 jh㚋ީ2Uv;$ƛӲygɷ":N/ ?2y؞!C23z$t@u"P5^=PmsIid=b-E\s {"vNu1Pa5ި77bh W۽aw9)Z"Mi4:^c=Vr^jtū/|g5nxVo8waM^I+$=&ƤZm,`?~w^x+fb篡C<3#_/NTH3eׯvOR{[ yp3ϟc]ʫ(KwU:׷vb2хsuIgͺIPiWFd'vߙl_.8=O*E$/N9K+1-ݧ/nzIfpUҾRnD_zc;Mq#5~^;2uw<`+)k~(OggSC4&,`wJL Wr̄JBwk*C0⊦H^i.k_.8\W0iljh[qR{rv>k"2/#p4T#Cc*%"(^ШER'w@t}ݵu2^T~*._<,Gk%:G$5u/ֵsroMV-H{}0P ~o'@tc*[Q&wls:u J4Υ-fr|)λCޛk m`dv}ǻI0} -"q5J-}D67tTWD'm/U wF@x%ضUǠe*|:^Wtrļ,XnmcCGp>8#ROݩyWZHN픗k]bn"rI!ޖF72&&='k΀ PxΆ=v`}1veML@!='lj?ZL)||0\>+w- 2G9ޞeH'C:WbκBrʬ>S[nh3jzj~W'A~^'fw#9gDsw!jG'n8 lW{&eȃՓA,l[w1Cv+W+D1V+0s$:xD= KƧ9Q<ܝ{֫U&TGI$Uzڃ.HU[n@?.kɀ+ܠSWa.`>%m2:Nuȩ&GtRGf'enJtoG!}%n6n|CDdCt OMs0 KBq~yN͞~~҇m?pG|㖇Z~ʬַ~˱~>'qfQ{t8ݼAXwMSax rNs֙_Qΐح(9HD'8 OXP : MWv[m`wfW|G$\NΥyc!h}9`!m|*9]nc7݅-tek⒗ pCf[w%D쀜oV" Q Y3oSeXv7r.)?aDE˽i ׻k$XM!>sڰ^VJEܻNN9O[=/WGddgu|:I~%w6y҂(0c{<ҙ~ {R=ϫ3{˵2S_k.ghOOVKGiM]bR/.IY:._n==o]Qٻ0.uK~cy'0&ivn{[$缯vZܬ,uITrfi]˧5I̪&mYx'!1"ZsVe1d۞݌(Eo1iۻY[g^qQW1> FY9F>^H[ jNO %w- ״bԵ{ (((;>d/~Otjjf%vC?ߛHd%T RWzW݇v:%*-GZ}ޗ%D~.NYSZKwqA7EbM}k/||])]]8u8j֏: ;5+@8<0ZX/\:n"QWc#R8Ƕ_ok}Bt43>0:y/9{=hQ}kmWHYlÁG>Kv:(s̉c^%̯}рBєH=3J%Vpj˃p~;(ٯ{s ̪*sSҍP P]>fz9J~NcIWDLL.u=H;]6wзiwзMd,=k 4 xZ\Z6$ Sb#Sl*m1gs1gCˢZ~.`%dΒAn'=7 #^ gگ˟{@4/PWm؝/ L7 {޻_N+cه㨓[qX)ߌbgC:wQB]՞}wx}$u*t)8#A9Y?"ɵͥ5BxC-;1H6q[v#>eU}naG LE_ZpEs9]Yaڢ>t˱͎<~Wn|A/N*TםQk;!BӑBwAGy!_p-;gs=</F1qhJU9d >yJ^vAn$ 2"&ٱ>VK37.F`sC] _y5Vq p)J/Vއ(5q'q.x~Ⱥ7imQT8ʻa㶴^$JUz{i%+LknkN\6jkrYmJps^G+,At^ɘl$m@ʐʷuLw}*ԪTvYb^zgG뫑nU"דAޢ~Y5>HAͧJ1yx̍ޭBvo+:!%BIDxڨJ^=4>99=g25˪P|~H:ȌX{|nHp'S:$LiI@+IJ:ҵG +hȐ)o<եx>kJAg*=?{ܟ,H%i:@2 Sy&GOh?Gpt9PZ8N#H~Qy f8NFS 22 Z'nz>d;`(WFŽ/hhW (v@,`=Ÿ Ά߯VgږPsAzc5f0;dZšww.εf }ScWx Sew1O{.Ȕ/G1E.A腏3Zڜ?FE?pEcm5|ޘG?xy7i1<< +&)29*A}hdۇIBx7URWOz@{5tIMatĴ|~?y }`q~J{}Xi!z73C?]\Ԫ\3!zGzti~ftWR.$rOfc3 gO|8Eǁ3$a)1s.I]/OŇFV{F{/Pn4kb׹++_|"; ]}2~zqVN]/^ˌԟ2F?@ڊ$y4e~Ê*IG{Td8¼lQ:_#&dc;LB;'39۬P~8 >LcQ>'W\;IeН,Ch炏M֪>Me=KkvSHm -l.l܃4nݟ1u} e5cwI*kbzx㣌溜7֮\*‘J*{T6oXn}%/1)n6il-vٷ;rs2S(OggSC4&-  g\)ZDZ1&{O7Y:G2ݔbu* _i Sn*,w=Cp[vAKNo痪RE~RoÞEW"8s:T$IGLa13TѭL7mɾrk)h6Vo?r9WNW4Q8%=zk˔@ӟi*]ސ̃ 1hCDix4z`ya4kskT }Z)*աݽ)< -NkS&*^[6'#z9V }>>ϧM2ENW\wLoncIGPdJ@(KdL_p*iD;5*YU#x5r/ Rs&Q#b%pt}!)!6b8X&?>~z~d?^əj/ZA߈^D.0\PÏ %|>?X35}L/V&,y9z )j{6ݯw 8y`oW ֮;_kv[Xj+u2L7ʃb+$0gfa+e۷5zػwlw<5~-k()(Zs6c_ǩ>!Iƍ P3a"Z e%Ծ=}Yj۩Ӄr>< )5M$fN|f*Rڍes>'RDb,VէQWӱ>FCÏuWJgHj3j1[g~Ut84*ve$;YyX {{RO6cp25)2B:LGdv4ף^AC_UOk/5:(tsSj_hE^GW&mK)c }͓ojwsz&lsK;ra^op-ÚL7AltTiXɉz W0' To2Bߙ"&.͗;U=vW_ ^U?x9fD7n%&Ŵ9Q9$#{Gl_Vx揔Fmmu14pܼotwk ; n9%3m/A#24[ya8bˁ xg%PX>P{dYzjvȻٸ:}9Qg]s~߀p.*yy79eål8 \n?N1! 2M3uRkaP"tլxnA(o/m |E"L'y9-^c_3uȐm \ Rע`#~q`Vϥ=7c)B Ju~AqޟRd7_V:WYdo _:AphJA35S?o<S9%|z}}V{.jZ M t>Vf؛|nE(ԅ*\-2u6Vսk|ó+%|'C8Bpg&me> ZjUiڟrwݬ,-*KMC[_{|^tVeT$q5 _~1+Cd$euK {yغI~c54%B{j\M%|գ_G5d֕NMpkM.^gU j^f%eHs^-OwDmy;]* xQY2=; Ned,NhdGE,C2:)3y}Pb]"sdDjSթ=Ql5kqۺ]2Hfch%ɣfIݵlGkТK n#G;;{|{|P44`|ui߽I0'M~GAZҁI3T8J_k@Rrk ɚМM2RWm|\U?Nd{iYu"ZCeRBp)Uk0Ggʔ rz\ 9KJfm2: )QkB#ʺ}⦅ QDFD=H0w˲k#(W=hE!XY o U̱#'ԞWPNiBDqX.wμpٺYjcb]/tL x c F!b/ܗ?|VoLYq6T~-geڿL_@vɮ&FzdѓgZ"2f˧,3{?eG~4t҂Nᗞ6ä9dߓ >瑧9F.y>']VnɏYBj\cz#jY[w~KtRν\iQ>n޽P2^3J?^L9w9w#5Tx#cP\`q+riІK+ ~%Wjk'Wp#lW4s;{^z.:ٜK3&NtҸ3,H^S ᬆȥ2;Aݷ\34aLK}uUuF%4)|;𣦴܅"Bc9ȷKR=IRNϾ>߹?ͬ⋩`[m l{F4^[ B;K˅uUf <] 2'u\.fz>7T!a{ ʣO%d{ևߞԵݹY5W0, #.r.Zt0&t~]8Yr_UM4)NZH*"ECsX9UATø:~Mg\9՘*RJF ="/rZ^wiݝ.B.*vWhd ѪT!"*ͩ5Ri4M8wf]+7_9*ueO^7,pSZ5;oyea|5VtXG̡$liίV vfkЋ>+5d'ʏ>:4ù'cI-EYX Fݚ`gh;$=fݓιC-'BH:YGs:វS^ui އ%rqjKwha\p]ںIHc>QE~gGɳ)r\,qt1 e*ͺJo۲6w=[5#g;U'VUfֆRQg!x?놮ӵxr\2ݎ_}޽ϸnvF*,J]oOggSC4&.>qg\3D{.z.g9o9lLBELnֳN?5as@+$9kp;)߀G[C#6E1vK/9:Y# M(=ix ­oWx[}.gJ-xtu{=hOG6lPB@F @-&Ó^ǖ~LIՇ 覆Rq1#xpkFuIXk,jYWX^bS [0YD'Yp-҅$O˜))H45F2G3W/S>{[U5Tt# EsL|D{׿ًcџ+d;NJ jЅSCӄ”U#hZc~'4}^67䃨&޿M%jZ@4pل:OrY%ws uTAQ*ӽ59|ȼC | $ؐ导xo}C"OYB_~q- ͡g6zݞc:ZMVi( [>howIlyq_YmT;3$Q(4I9x*$}O0qJ&uqo?)$\[—FG9r(:P6@p~qaNų)HHH/{!3vѼ}k絼t&ۣ1'ts:+(Ysy,׽̈́ Et 6)2׎nM,=+[ zpha5qF<\6|NO783ޏ6wOzE/dwìr$=e37 ]%nhÁھ_+Ks>`JfHIc?{ӷH])dP"UGt@/ r۟LQ^empBsfH*3@R=sI\z{|n|#@tu;B#LM⠒dCNP8NsjC@4Up@7k#3LX`un`yzZähM<'A`U3t8Bj35el ߁IIk֮MǜY$E)3ȉ`V=tW+ۿߜ:S~_=f&g"̸wZ$sk?ӳth>$\{GNQL0>U75'H b; (|sm_ƿNEG~S: gZf<\TDOF⻊ pYt KɯwTH'^]Z^g`H!UG`07HPe#Y5]k5x_A_1z@1uʰZ`MO)<O'Px1Qe|q)徟_s8?c@'v$9ߋV}GnpGU5)3WVV}da?#dsJ=$an_BoUt4azaMݖչ]KRsmU܌\S)UtO_ʜKuvZXXkRyN֠g'vz%Q| x7ngÛ$ ?yoxƑqɂI{[}q˫S|x8.NN3u=q]?6S{~t';6౲{}%3jr,<ۚ>DOfOKy*>ţv♨\~=)qӾL2s9S}ZNode9;r|7QiwZR?{-ܽBlH}֢ܺaz%Z!_5Ipʚ|7QqLoJc֍ng|I},US4>K\owV3nlW~*M|iN![AphV~]oySv¬ZƘ*CD&TfRXGyg9KpR:w+֚]0., x 5 [.ȑq* {vyl~z09K/ϺLZ/Iw^ h'e3a9֠gώ:il`Nˬbw|۱]4UU5ս:H ffx^HÖ:g/tHf~9_5SuĨ*}L<)I?edyWA;˹TsJ XO Qp3ѦSi]=h?O# lhiϞۑ/ z7w;r '[6X$^V̦7\#)%i@5!ASVoO3e𲆚Rk$V^%IUѬlHQBcr7Oՙ^W2,EPMZMTJӘDR٫v0 ק$TBڞ~ޛ8s_ ΢xNڤʊ3_< qb}oϮqӗ*Ԯ+C(ʣf"Y]"TqVvW>Z3lp[V˦ZؑVě6_M{/&zj`\F tQ|lSl>vD5A}2pv,fuyK -՚klz1)/POןidpz؏4't^ KKg(^t߿\QXvP(CypS*)_9FA&"{&[T{~T'isǯDoGőC8 ȬG͚5qDk˨Uj{UXnF,>|<"(jgtMn"Dč:5S~qJP9bkg=j(JΩ'58 @c(YĠIVOsh&`b=p. ?sn#msZ9 "`س۬%X;Uy,}>d-\!l[Q7s,rVQ<w#b;xzC5h?ueuYi]7IoЂPREX?u""tB͹ۘ9cަxҺ*v1dtt fBm;:zs9Y9gU\ŸDDZ]DQDݮCiF;4-'&OJ )Cfw WCI@~NLwpaRs7$ӝgY;NjdzN1nx!Nq&=VrkX¾p\zݹa!ɼNfg; v/V#]O7?R*UI?rE|t^vPB뷦V_h$`nvd#*m}:K&g|6zCWpw- HklrGA3koZҧ8J[23Jۊ济7ݓx_mH>;CSjBuO o=i$/Ήcg-9{n?Mo5EǑqپC,] ](64%ʭ7u^!+JoR ZQ}Z7$jzա;UE)zI6VøҢ;Id>קu_0eŁ(w֛w͙np }_Ƹf$Xx?wy%{OggSC4&/1@|NƾFA/J&>?a$ƉfOz+26p !bUgreXXX1i;0CYQ:O\}IC+H4'uDvq눺^RO܍OiY\3J֙/oZ}obkYhNv]wF BQZSW{Vh%!҇u>+_( 58M޵*))S ̎rd鮟5s?:H T45U++ YF8-Ǒ{}0' &wijB/@ՔDOȮ{Ԏ? D"U M3P-b5yC(=u7|!tkHR!N+k>H{ uR~q8ԉRk>ΝH6D09& yanh l*Tm?{퍻V&MW԰ĸ﨏fOˮIK:\x5 UMI 'ﮠ_uC .ٷYEWKL۩+LN#3o@_9T<z.cg7΅75&$ˍ{KJJ ~܌ñNM`p(f²*v6xoyo91Q7L{fgƯ^Y /5oo6jشH//V2tnSUIz[CbPU68_R* ݜfE]=;fS݋n:0eyޝiT苊 Y+G* =n{*\PTc%SVO+½ /9-Y "'u^fN5:%V,̝/;4-W>z3Bs>n8&}ێPͿ_K}w}[nrw,\t5s[ ;~u(m=jwS0D&s]wbͣI4\,qɎWg"K#8Y{~\-}^)Ծ5}&izLDBq}tY}TuvEXIHOsju}d"?\\=~~fvR헬 6!||$w3w t}WDff2˨7S٫1 ~;Gǻ5r6}h;ݿ21Woއc->eKz=x@k\@Np>hpUdސ&R]l=UU krf;IJK+׊DQ9|N5{KbsfGu}$'ňu|׎ 8pLNF ~PЬJ .+D I9En9=&Y)]y/W,lt晝M5PHG槆.s91Ei&y<}*QKN42ߵN峌\gw/O"*zD>$ЬǟheG&W0?$OG ֛쬄=?!ow]9/)4lF^z]8]~JGk2fwi- N {[=V3-vQE48֟5fdMb|\i+n}QvC+<W7$Nrc&X?  tKɣ;wAw?e?4/^#Z]Syb긶e{d.ҳI27?Т1҇kn,R|:f5owo_.5j隩V!k_XX3gx ~_&)A[:ڌ>~۸9)zoKaFpIbReHGEW䓟!|φ7 8fʅnCUU?-?Q;:W e }og;(/ X ز3mL}HQO-nF]/ g =:2ѻ@㈝QP=Juuүtzʾ_8jXy~xqTez%*gh.000Y4}`_|:ǥaxg؜jPt1hD%RxǠ~,,Fsw`njJRi&Y2{1U*i_|>Z\Ts7yA1x}^3YcroҢzA[u.uu :N )M|? dn+v S?|R&3$@^,\qɽ.穏܅Wg9qDeeC|}<^)pK)<؀ f8lt6KN[h=P4=Zd{'Ր2߮*= dܦ\*J`tR7֜#i7fZ[υ?W7R;n k?49ɗLYosyz]k&u:?ώÇaߵND;o'dI cA)SGJSYk96E;H@kuPweHotUv^u,rQ+&i Wm_>LDgUAg~rܳ1 h8kz0bR.1RA丷e'0ɌWؓruwoyyL`ٿLq Ҍ4 jkՑvWKst}YֶbGaqvX}jU"i*j*PGΨztn:;X6aMq'H>?^OC=B${CZ:^D0؈($E9ÕM?)xyL߅t|xp='8MJ잏^ }aVޭMxm륗gA0Y+Q=Ȓa o߿pw]av̇f7H' t I.̠E ׏)Ap(P;q|4;=t$vYEo|_[?lry=CҿufY-[^̞n&iWOt!%UJxcY>gcuj zz,7O~t9}2]A6+)r/3o׫9 XUx7ѿ*)3(EqqY[Z6O?q%]R9ٯ09v<F}/=d>W~Km,>m}iDG18voK̺Q"65}n({>o'Cw&}k@@mտz>SB,'rllyh,,ȫRFնJMu6/9^՞؟9 -bճcKKH@z_eKq7tv8^4#dK{$ꤲ׍rw=m{[I܂^44m=rO}v߾b-=n];6|iG tU\Xfz9_خSS1Ƣ&/ Lεh!b5R"uoճ:&:>a*u@ rT{nRPJU+[n)vrNWdTx(TR$֛u澿\93kd㪊l}kƩ-UNy#jenk>ada^ДW;NIbs+҈((ӓ=kd|=o:xx+Y .ZٙM4a.#~>/oiԖuݪ|y]47>pTfnCN;4](z:"=+8}Ę8%AgϧDQrw^N@Z3} jnio&C`_j,j4m~!Å{z!ֻ#>mix{ɷI݊wg7sr&C^>ۀwT ]N=Q}AP͆O]6]z Ͻ'|:1[o-"ISqaLS+ GCX_ =diL?S*>Bbq½AHyE(NMCXEs`=6x69}[o^/VfC=6uB!>xw=me?SӾOM3te{(to@^V ܒLEX89~;K*Z2w;{Fpx)Ji\C^ww-'ӭc(y󁪲w+LzmO.[߭\),i_o^ӲH(4_{ۡzM#ٮ/nߴ=Oţo uǿtvj)ϯxD!w.}OXUjGfuXh'߯~ޛv)kEb9پ,_&F^g~xm.@%=~66$GJg;@LAD?:XǷoo?Y{fwpf KդJië0F4";},pi=Z+c?*k 1JPy=u (/E2;>2waZkU|:$_y(G_OUqV=3uwxvǭu{{9i D~_߭x{/)?Y[ZQ9T*g>{ 㗾Χέ6޻= q{YRHm0|~:h|Tn^ DžS#Ux|:zG~3^xO?n;rj ^̫?j y94 wGNWy>;6+TF0;v%V}=`ɴa?.z߯]vWK\Fɗ6R]7G"*Co Rkczז.sb''O)nܓ>JC[^קq/᳠S 9KH Wo& jdpvqJ~%vjngKzw\ԍ q: n54BI}Ns#?Imr!7j?嶦A`qw.qGxߠܣjCS$_~u\̦,X B{o+<%F=q$rbh>O{gʿwkP\y[ HWbͿUi3+_:ڣ}_6o-ėҦyx:?t\>_], royIH$X Yޗv?yE;$qX|G28nB8[Vpζ.yv#=v[x֫m,a0o#]7}>.>Uwq`Oygг깗;MÕm wf/nWߪݽ=_-lېM+_ST&'>V͒~y}"<x˾IVe^[/<;oQ?tX{+o'l;ڞnlzo[UuW|ۚm8gfugҹjs^]& qs%-q:O2 l.OggS@C4&1x@J%N <8Ŗy }X;y#ItcU$-{<4Ow#Юз`znv\A_̸vu~"ɱ( Y+=_[so^L) e%U]<ѡASTf dJ$3SOzAcjQp~Qvf 4GuSq%S֮ώլO^Yz{6L4.⬵ XI@iCwn42e4t$-q2 PeW4l*Qysw-Hp:X mGThj$`q'$E0po٪\Fld-6=@>  +zWO ~p%O꿑V1Yݥ}y}^sݹIl :?oSqaߡɕxv4ǭڠX!wZ)^7U9qc|[3;'t:_ʨ;lZaꦖnʭ ̻|kF(/ ( c5UbSK2أ#Q0M񟏗i '7e ֎ɟ6rճENٮsv˿wpi&?fd+5n'QrԧeDz a!Z,=sX{NΏWTsχ.vHR\ݐƄqSi1:H8nRm:ȧyҬ^Tӫ9˱K&Zr@M:sAox4e^M>Gq?!E9+Xf^˷E*0U<Ǿ~n[Η/D;TMu0m.qx/%Ϫh"<:(H > eY$bo${tF*~Du,E-5w[u}~l@d?Y7ﵟz7믉o#{*yidBf4*Psoneֱ˫ۺ!8)d_fhD# P:HO 9Ǒ Hy͓07?.]:ʱw (DP ur+NLvdh|&2Ǿ3)j0@-z:'=H3M kZ4^r'J`9Qqh{uHfd{f[;2 ];tn{c&噬Wp턈 X_󝙟.s.nXha;CR~&^0/Nf4VGan[y%rfQ n8<A?m0kv3?9#+k8 Au:!kX<(#FI7ζɫ]h'&TǹP|&{5^ Mۇ= K`:$HFG/8e@LXS׌ ]ʵ;HM9sz]TU>;G*{Bgov=VCHaC(4 |2~t휳fgn~t*I렟+ϨUNQ xlof;6UqSV@DE(*w.zc>^l)CԯLӬQ4IMh8v[$S(Y->}>~2&`ީ-f+~?k-޳oWo';]&RaBZbn#wx|'S,ӟ3XrkgRB^ܡ3\k0+?`_mxm QBKu#dS3 mB)EH--jz^[b; @sp S Lo^ S1HugG(v[뷯6ܶYuYPǫu>ƿYXdPwsBgó 6e#*SNJMxpȠeuZ!Z+DZecn2@`aShS;+Ep)P3~ё-Q<#ͭy^">Bߨdo.ǧ^cγ#h>c2#{ !\H`ϞS2dnSDl?՗:r. ~ Άk?ǭRg *MDd!@'=P2W^o,pUJ{lD#{Tq”i=;=`NS Ƹb%F&sK>>>C4 d/2u94#@6%n7$;F=y9,Oc8Cr"˜75O : =Jzß)W"Y{)}ᙅיH7|89B#J¨ rNJ/83/dieT쳿6^ HRw?{+r*~MKxn,*k}xD׻({*,ݬX:XwnL7{g1ˆQYOJϛrMqkcEgQ ?Tpn|Z=qzaƷV?5eaZއOf}8YސqU2k@΀ kV%O./2ʂ&+E{J,Z< .|⋮n[Pקw[loEVIN'EDY^_,EJ:\wY q(D$?unJdGSp¬A4 [{( j@K `ZL{%҄Vxd&h^|z*_u \ܺMl&Uf>($;-'uen5!3> tět̜?ƥhV! h (!:~7LIeU6k6?Ob0XɒejL{c6sQO_rn⣍(\1zOkP(qQ\AZA&3]+g& nB<@sqFZx|w+~_2OWOG>2zib@vCoQUD$ʣkMpيF| T 0R>/*h+˷ {["<]O6{а̜7COfZ |AOggS@C4&2STHeo)M%Gl/G;BQ>7`$(@/̸ p8#k@W|wSoZbpͦbITVy:9*T7#^{?U*tN[opfyɾp>kT k_0ʼ* ߫ST( ZZ/!5ɤ0n~oP>S:b 3?6 P0дC?oKm @bS*ck55qo %@_Ɔ?s7Szm)qM(ȣ\g!Z {5]y#pE̍O#,+X.[c4p+cJAyJ_Wl=jl-9~n-Ie,pJ5bI OpBSbqlwϠj?%^BϷs,6.#J)9咅jی6ԡ.¥8s߹MSD%o(:v|XUy܆d]hQ>fqUWi}wr^oT·ØWwr^j"G&Y|Gxn=(]5Y9[^X:_o{z=s07r=n죂Xes~NjfEԽhfh7P(K@p ?ݝ2v֠_w"dgݴ\,K^צQ @hjqt|kn8J'u xH*u${t$7\RhG\`Rv@#byK$ο=qǭcRD\HC@K2׈ *NFgDWQ4{AnO@o @ 2t eZ-PY;"̝,uS +S\FLEaEUDV N]::h O1CsP1#TukggI)cd>c0G?5g# bB]L")pJ⇠X"Zj2wОfODn;1&{Cy#ر:a~BvkA v>1nkj[+5ֶ5nE_CA%Rݞ]iXΝ,;ח)YQ#ŝjqNVȜX6jn;;Sji:oG9yo5kxʷWSZ^( zeΙF`(ſ9p>}5_d_K.>X͍/GʢlshaLT!VkYPH[u i qԿ3(hk+J}:uO 5EHB)F}q9sqQˈOTk`4${4NCI&qo5:|Nz1&TlނJrQԯ7UHkX[ `麞x14|l=-c˱5ԷwNdm8L?)+[sb8cjUP~,%.k67(ݲJ06~_ܲ$eko1_>}P%:u_.S'n_pZbc+7t#1w;~-ErMmX 4BL,Bkv[VJAɌm<}aWn[ksmW{>Ӳj^In\\ĸ@Tޥ߶eM۲}[l9uvb{ʋ:ܟx򍥎7r:6=oD5M);/_Nant$ p FQPvM=8$&8x:䊚9!H=*'\PXcrrŞN 5ȉI1I|$ هx5*.U>?p_A/,tj4Pi/{GMG qjm .Jغ^'@h1s!C9"!Phk9F?Ѓ80Ԕ4Z{Dc;ٿz]L^Dk#E @#}&sCRUe UnAޤrJbMFX%T2pu4LH44KaB7v$bݰoyg='~穼(}hrz2>Y.3&|\GGf(r7B N5wv4^ɀZjU]{$K igp=u&ZГn%8,؎[%G~o-=iAmҘZ-)iY:-i>e `ӓ0`rj0  w_|7Z8 牜WS _?@.Eۻ7K%.?EsYWptVY)XZ)__ùAR( 5koW͖r_s$}0ӛ\1bw.[4}zk'⪷ b6mGYkzC~l1um(nZrop6@洩Z\S'(dԦ{ީ6.<\szMW"{Y}'XB}m]E=|;}z֭V^pH/;H=ԟ}݅"qEkG]BQ{M]IR/TJqReq%Y27cweZYpYpZyGa 8`mE] -gc >Jb"U{x/'Wgj:1n/\^w`kL:\~V41.i]`4aOggS@C4&3+q[3 }@\yV91 RPoCI%.USLgȈi5 08֦<2Z[3>{*|Rs&~unnk*8"kNOI׮<|OuZSswE$2r278q7Z] y|xUjmgv׹,NBuQTHU@/o JWVY[* }:/0\(?B p6~C`=MԪkZUtx Gjj{pZ {qI $4Q[Kk% P wxt6 l L647! ż;ۋ0$^%%>żQK ԆȾL{_-6h0_k{=ˎq 6BUR4M>f ; %kʇR[Y粺?67哂ɾ4)ݜy}`}dgb)O]5`{@h-l<:]SsToN;6õj 8 MyާHЀGr.|eHNF=:776** }PjӸgPRS|jPZ%/Vw}#}Q`3GJO_gEo& K"?0 =}@KS3uቖ!^8']oQ!Mמ`G jQBLȔOw>/|amb+J0ϗߊPՒ2OB, p!f`ּmDl{0ˤ-8Em.뙧&"[>5VZ睃+*Z@$ZH^}0>\uyN œ8ԒD (:U3/^$D I¤ةI%\/(D󺉜`^>a %>ptd\*%4h}1EG Rk}9$lDr(b<d65(hyd&Enf|wc : TXh3[mz#.)J~R 񽴹\c)_=_uO*v){ q^R4LD铚|J:M17Ź.]V{C`5,'wsKT]χM )}HOOa{7(e=!AnFLמ&/'9 n倯prgN;ߖ|.ܾvS/%5-B}Tȼdr Q ;ʡ/cRVى<8f.L]|-wu27;2NalIa>WB+d&gryњ :cXV2 qg }25 _*QʔD{fKϯԹöDX_kz>;ywROr4cuV,(r{5ވG_׵O+#V;D>٬޳ߞȓ|q Fsj,tZ=~s/ItzylM||L.o6Li}3ʏ!q[ J-(ʫ%J.o85{G-Kd<Pٽ|~yʐ }9u{l^?,dYie 76(^w+C)Xfn;ւ(aMi]+((13DB-GsL'1]9uz'~-_gQBAp2{GxcG\Q!~%Z@++BUﭵ!KSkj %ޡ>2Bn.vpPE@ 4,ȱ+]r^5T*|^-~O?V~ 9@Cc hа٦֦h+f йΌ\ӱacԩ+⹌0Jf(VjҋN|׵:<*jcΊG}JwB|(VA8N/UYCSN->%MRG1[o-cLnp=5I@9}\-bߘ"omB'ief3g޺ =Pz<$@3rƳ~'$[ɺciW`5ߡo{ xn8j< [AKw>ra>ȝ_s ٞ0ғWXp#Ն88.j6Z@/['W!/"cvW1_/Ğs;@2=z)x3 j*xwZaEsU&u]{flPOB/9KG8z Tsd\D=OS ?' p `ybfj|Xq0Х8sP:.^_ nx4{о}*/c7$zNݥ&]_'j-ƛ+ON\oFT6 o94-_Mx 4KkľzF0vęOƀմvjwoɿDÜjbul!iٝ~)~> ڴ.ɜoͲ_MƧ`PO_V,䵖]~Y4 7:}GƏ.NNj(̇bQ|+9yܙ)}\xU%sq$^f/[۱~n{8yy1J:Ӟ' ~wkdoQZ7K mhWX: ¨%2륔FГK=ڕIHO;IkE e]=2tȗhVG!j ȫ({Vi6!nOHf㐒y-,zj-W\I7=!!#SJD=w d(* ]qe٫WC4ʽ= Tv*UJ"@ v@s$Ԋ8@B7+L(Ty$([(V(9pEA~i[뛝k1&s>EZ'GrQPvj>Hyt3y'*}wbwk`-5{ICV8U #=9[z_\qi^1g!u3$aNm@ 'AWEWI%]S@d DY'R>nN^5˒,܀|3[۸0禆VNj={h72z[(8mo"^˒`@ a^װA-UO)Y]-Crrn~U! yz(˱'2+y5-ÿ| M+claf'?3:X]n{Uj>~g1yq>kao26*k\\vuvʯK6| tt3JV6eNs1|N/, ]?tMXOޤSYLo7;/2?*Nc_\5)usY;RlNv_YQ@@cSqVi`-d8N~_;/͉MqX\j#G{,"_عo!x s!V82㵽E"j~&"Fݭv\M$ըI会._o۩iZ|K~e&7׮ t? 2OggS@C4&4| ^W}Gt aHbuHnڋƯ\g(.qKY%fk/&ybw( =udQ]4uj3J_o+ߢ-6L"/zBF]R@)"+ At~M͌(4sIzB Uػb L=3P [F fSq?9 T{Q!ij7LYC&xУsA0J>c{T{V0 xO_UROѺyP?DZ Oitf*|C[+!{gliwN1r=r<[CF*T%bFpu(v tIW|*)Ŗ$) D w讴 Gu{Sރ>t<90ɖOMYk0A}UTlz} քoxhlTo)[ ]?@0!mx~CXla0#׮P ωj S*h)yr\yԢ tzFwmOD\.Ug(M׫s.6 jũu@qmߜ428󸳜qfx8kv4G`y}j9;iIq8( .Xii)(.P{%F=Yj4kzJ\f`B*U1xXjĚܨЧ~JN#'mD/c;1k`\0\]aN>aʚtzU.+FyMwofGzûʾM14!rrc0Jk'wښ@pK2|X-,?wZǂm X`!%d>T?;59P9I=a3k tsS栏uF ;'qɶs}-O<53]!sʔw=.9wv2"ŷB~i]xw޹>2ϘpKWb!&kdn,[L\uW3}'!a-x,I d]OM->^RѤ1bsFix\_shʼ\bJ8)J͹/~nc_{wNT,Ynfd6u 0>7z~4%tf_&U&¹ުkg5A,/;2u9=7@Mҏf^~U=ɽjhu5 }=A-!Ϧ]ν.EEY'vZX^Y|muY }Hb 6|J^^zؓK ؚBF{M3l.37H5#:W(02O:d֩eј{"=ʽ47^yҜ)DՂxbʬYAz>ZpQPթ<T KA&F M%pvB$D$:;-GҹI2&c$*=r,4nޅ}/sUĜ-*lQ ~L%ג;eLreUyzd{TLsZ(}(*B>]Qr0viųeN:mlt<ԋ *lD1ɟDxKl7`L"qHΩHڃ 2n{* hm9F :p u/T\c:Ca7ƌCvK-|shǣlΨu GoL/jX ᾋg>LDU3u6+# py -E3@` DVJ}gD r15nzf|3ճEDjz+= y K؛Ǵ.}<"tWLpPq8"zɥcU?@ڟ(4 rc9ģ-ֹ1m"м?߶*Xd,f~E{Lgy}<>kT3ZuBN]Ip  =A~CkJxZ?ܳPn{o|hGVdfT_Vg<;{$y+3&${QTgjh<4#v*(>($i̝?TOXfuH>+r{nkz"Fc `5@޹,XgrsX7<_C_SJёԾ?[ax\v>ssFۏS?cߊY@/dAg*p5 x2v蔌nde׵֙jQݶr羦$/K6: YJ.h^Abx^صwR1\Mwgv1J_/$c57-4=80FIܝu{]fA'I*牆ty<|X.ۺjq;Ʃ}&*+nK>qQH&87+ z/\"ws]aAZ@UJLH.m)/G &O{&,;O Xj7.NIBf™'/&aj{9΄NkJE?~1O_l\I0{G#&8":EBS"u~/$}$ xș@pHb^Wq 2щSoރ<[&= 吀גr|ʥr|E.4?D>1zмķl{}Lxp5C?*U# bƑЄg'8^kdרah*UICS*S7;GfNf:kUZNHҡ  uj:;2ح ч_^5Z^mPv=ϼǫ;.\ȍD4m2'9m7~h\{k"d͖)jw| $??T83]~qvS_ 6]33W.=UhyڿWhsfvםL70]D^ka&`9I~V9NK4 KOV]W!zu{kGi,e0]TgXCTp/Tps?fxI {O&YZԷ8N\[EV3F `X'>x殰&d a"n[SdZmxq5_֐^>?x07η&NfN0O(vcJ%52]ږ'rH=}v-^;BtXeruW䵝 X3Ž^f{meNg-ײ_,Jc÷i`}幓Si,U7n i-DyX:կ.z3ȇo[G}-q0_7._D[G O?_1t:bv)rW{cp9}ƨ;d|uʝ<p5@2L-yz s]N m>E9'_P64kˡ}Dh(egRcirFw^?h+):6_Ex=(=__9 ~&qvų\SrKXdy2]֛ tnտreS=r!uM5zŲjbu:0ڵV}6P}mOLJƼ Ζ7b(kz'tm_G7OLOܷp!c7ⴍ;?KSQ"ݛ0֮,0Ǿ89+hK~b><%٪ᘃ|c/ }"S"E6ȝPJYBcC:%R }(Fc|BU)};R _ =$)_+L=nx9] }Mb]gr*&cYz&{>shw;.kqn^@`ވ\7 V$(t)]o(fc*뗢EAׇ5%@rWgOK{;Eu򤀙ՙ\+VJcUFѸ }J霓6آׄ/%$""ke:]qIBDp{.(b06RkUD%ND DMћ gX>nzr/7d(8&uwryI ^"^g=C 'f#2szHX$h !u^XO4vcQ6יEA!Kաb^uCkLDh8Y)wk.&S}jHfP$K֒i~d{dJ y>fQwLEf3u5iO \({@<'ES(Ԇz14e{{>zb< 8Nݻvѭ(~C }CBU%"N[eK-*SZ`y>8~/L=9!BΘ+{" tRx'" * 8̑cދ/I=.fvB 6A6M N'rqgN>g81O>NStل\ʨSULBg ?~?O4TeΎ:kK#FfUIry q` 9ju=eVůwD|zX<'J#w_JTiL,L0e3QTZ:ib[?ʵD+`?UyyO4֙,qxʲgYwOպeiwMժy{Z<'xF{` }1/;QnOKV<|gO{ n~@{U C'Kpd\unX܉Yszq …nFz+N҃엗>2M]gW>uwUNs.DJ?aMypNw)[)7bIܐYQ(w&\P߃oMyv)ynrtzV`2eC#ۀ7*Dgn>kNY\r[{ݫ^Yͻ1BG;Ӵ6 *K:Û@NB^w}Y_"*E]WOnmE[W_ g0kz'Fw#FK'u/EX*7Uq OJu k~:,V4͂o$qhj~{j^6L&0 ~x|g;=+idf>wYkA#ΓaFDxQS"[ {:-u_|Gތ8QShy&;/Z|ru s5;nOv4U Z̑27PTd*|/~䏽,C<_DVkWy8L`Z@ǭ'A9)tbv^{-;6HHurx^:H1U8r ;;h,QGgRhS*JGS+G HG*Dmd7P9,{?m#CDX*„D~d{Ez>rLt\;"֌ 'dGI UWdnc dԀIjQUPGuciލxש>Z Z/W6N O#i'9J{r"]!3XC/J"JnNk'2=m%ԖL{/1͡m~AQ=+=܈ٮ%%Jb8moYV>YDsfφXUC{ؒ: ԰XKJ!y|xݫqZG- hrMW8M{[ݝLOݏt~Bm k LKlFO~6Bˋ\DžTçȮ-`& z,=(b D|n (|C|6݁&ؔة(ۗ\>HFQ~k!:j";O|Ak* tymCÊApw Lך>)Iq||JsX[w,W/oo"!<öCEV,w]5{[mL2wl߰N ȷܦ]0 gw=Ig5]e!'EZb!Olvu 1o Ε޻wn}sӿwg}_g&=ӳ_+oc@$x^gxx}]Oãb2~ٜU;H{hYV<ĺoKr[Nb=3띹jpk//9ݥW|RsGz]VGTz:N|ig IVLCx<}C~<ŇZ"180|~L>b{x$f vz/b]%=fr?sfC$nG|:\½ h_U=~+R(e[<!%EIRyZU>}tW{y4(\ y%b~ Ch;mL;:Q֞`jyͣNsX=r/*'~zg,h#l)5_57+IӾ%{gI9Cl5ߜ!f^"o[Db4ݐ hIP4éȻx ! O]lb v9~puέEq$vXs|SsuKqVcg)|ug!ܿӪ~Jjz=%m bhl.;=syΟP٦mv-l0V,C.w1^s}_}|oոY?&@"J9NmC]%φ_ '`Wp3 fcN61m[ذ E,OggSC4&6J`&, !V(#\\CZ0p70<;koڻtn?v^իrtr]F}u;Rgl5A73ڱ;doK:%Uۊy~<yvOwF]7}׫RѰk\ڷP$rW§Zz=^zD'[_VȝR{/D~^e'q?+OB{?~]?mWByzNq~f4_QE;b;6> oMb\5i9.=G1}r>Idu5]֫bTj$r ̼bOOh7;~qG]^k)}o"E5rzԿ9;ck=mvGN3-f%l.A/8U@ZfwsTLtgMnphDh8Tdpͣo>OHWw9lvәQMly,,c=%ɮ5`fSP88-tžEIv@r֗@k}ܩFͨΓZw[hj\GN q+_]b䋚 B/_w' teW Gk*^""!OͺSɃkBC'ڙD_Z!R.r(WT%]IR"ިt"]jQA\ҜI YW5ɡ"#8ijk\??$af<RD*^yz-zCM"fLg;h24=7)000 rFv@Pwr"Mco=`>H_"zWMSaW.<3EHgOTxksam/9U{,4{t>==.*<39w"Ӆ$s.qTntT/P@n۷5 4Eyg}ztK# ?|3'%a!\+{r`7JK;$ή z*R.Y+Ot7U\|'~v߼ ɤ,k]| V´ըmE0̮[\+vDҳ[)]y>+j^+ro>iLG1x2گi94: o\8Pm"G+5j'UBW/ww.&=8Micg=u/qUz-nd2wYax:)\dΪJZ%Q'i6n9 Xgw6ն}<=YllN@ 9'SVx>XgS0uhp'cS԰og4e/]k/p\~+QCef5Qo|]?6G?7>6~ykue2WHT8<_~ޏ9_Ϸ|Z@_A}&FSeJ1g"?~%K8jh&9C |P$&cn2HQxf0Nb],џyDpPihdV8K~ϼǑrjYwK|>̣Q qp'*b۠Ib>qMG~2CSg4Z@pfq]AQ@<LJ}Yf^]cǕE ͩ:y6@/Y1+)5>LfT`jRTtj1-(l R6)ӡy_43mYq}f>2NrFb}*'%#R#ڝ}}7癪Ѷ`3OXLY>574}c,ޞqw2t-~KYw2\O_Z[;viƇ)nV[+J2\zL$щݳ :UR?@ُ0{v3*ch6=y=t~?Lf.d)Te;A;v~V;L빿-j_ulCOGTL ^X|Mh<G|5m{&Tσ 1 ι9Npղkj1= )x]"Dz;vz8ȩYl]e.q>*,jzMƖ Hp^^ԭ}·_oxqn˜ÖMw"w^e䷋$y:}[[M[%maCe]m߶iwyR?aV\lFO@M8&Ԙ`WIQE>kDv6__ۛ1f=do.b|EIZ6/_m2a4CVw>-ՁhbܾٺߺS#Fh>Ҽ"QmsOx_Aa 3/}IbKB1K1~ RBob F=NS!+=>F'Oxhs,U]|d{V{AGuviW~/&L]N$7=G8k4WeE 9YF9n? u-s]&GtuVKUh]N3%*q]d5 K=[@B"Қ nO)8>1ӠGק^CI@!i. 5bϐDZ W$zr+W7 &fu(ksk4C8mdڳdD)^T޺!=Cg_QruEutn 뤏{w({Zz\stקϬG{*p1C;Aml$^A ~FN*ed4?Dî˫6.jCpO^{vGQCR 'HYl^o!>Cis}#9w3+OggS C4&7f8²dƳ7/g4~WU$JݮBR2|͒%wtߪ5E8u.g4|;EE@^k;};q͝nIi=ӫ/G?ϊ>ZqSѤoJز'^h<ޛ̊FR3dHNfIt} gKT'CũT^]yUhZz0:; hyjOD<µZO&kK'.b"YF`FL8,[s^*K/IO$⥎+- d{zcw Ov=%/1뱥>_D$,&ZMm,G;tQNnYZ!u^} p',]y"|^ X$ަ#"yR?fMJs0Ы;DXc sh޼RI >?#Ė=?{a2ouc{JUvw6k}vpYR\aW<+ەްHFZ\XoW%sLe,XFy]/4~2,tE{b5}A[|x{lإ>ܽgϚT)ob/ѥozg(NeN/]Q-!pdz%eB4=h.h5s܍Ӭ2wa|_ȿ}q ϧ7N. X).[xW}ex?I͖}ˍ>|5qw\x6cJ fϛ=^mxcME4]Z[E#롙t\/YuWptzr:|9o^>uj-yoRt7YlT)Q:/_Iz?ǸqGWBj rb%שh$xzNHpN:Z_^[;SQn}'UWyt 끯a"ҞU r\T>U':փuc<<2Jnt4˻gPۥO9\.'E=D5B!7RubV)+:7'Wurw?^w30 ]flB<'٧-  ;0\_I//EǭF|f9,M ̝VV?G펺.v^X!vZ82iO{~zʊ|F "s7DvKHpoh]W^eRW.-%MoWdx[̼x\%.ߕ٦1> 8 \+ETtA4Mʲn]*=$ )[ խ8COg {z=p `Ϸ>sƚ_t <<ެte/Yޚ g~PRdUR*%;S]6i?/S,{/m+"DT ZyOJ.ʢZ݉?!1P9wD{0νVqAQɌ3;Y;b9hr5E%rG{ǞlphGP&p <\sI~a!,KKBG=>xb᪽\gE'J1osi!4<5L ,%5s>ik!,sȯm')ƋpiY'ݑr'4 %`_{Y{8N|붠7KirNZ:ͼs)q#Fr7εq:Xn*¿1ҟHB_#Y{ؿ]ٝxreQ>ݮD>g$ [ySOj]UpD(jYz/˷dJz`NYf0sU?\m}Cy+SW~AQl#F1~)oy~{۲3wTՍ!䗎~wכC˛u_;}S͏ xjU\3E'7;9 mry /Bs &kvJw=t%E id}OoLM_V(6"&d>_.oE=U&<.;lUnȼ0{JN=d<ýnbo6fȓܟCq^zT=kןMϓ[w]t%ڱ޵O=,Qkajm$9b7ո=KkIaTxzqKͧv.2g./To_7FkIԒ8I{;vcaɼ"*jk"F ЅMi3M&LlgƬ7M@9׸[Wӳ.# !{CzYa~!yUv3*>{߬"T!cԹVy~gMwWº\sM݆}4SJ1wٺF k!.^{oƅ."4G a 0W%@PHYgy"G_u/497O>$yTtC+zVe_}9s|jsg۶y47(c{kO{%~kc!L@.re6WGٿwJ=^_]N=bzw;re .[?v75|f$UE4ڴ lCwv, 6dk޶_[ۛ[߿ɥ^n8,{㿽]G~gzUs]gNG t^s)z'o+`Pd9{- SJa!/^G=oFP c^X3~:-Ly RՇח{_;{L6yOggS@/C4&8a(_zlնjqz~6 jHے)cV\7?M}yo}z Zez|y\CygUX~_tϨ4ͪ7 ?oNe~xᦦ44=Wl^i'~UOOsbgŮQXqCg+eQϩ9*,!'|i_mGWe^ױzhl<:S1PKy~|܉b\P?3-a͞m3r5Ї̢B pAq߿~zKlWj9nf퍳jB[_\(~ xGV~ؒT-euc}m%R3l}[s:OGٿo˗5r+g^{|1?uc40}UY ΔE%ڵ';pR[r׭mVQ)~Cx՝~|= [ke}|=y9d+SjdC~?C8FFGp_=ch'ts[py-#cPQڳO#GzҨxѽ# ȯO?Qٚ˯~GeQt7ٲGžekZ#@2$ RVH!7[ϰmF}7i"[6*Wi5_L;G ?^/{Oh䌵\ۍb*uoW~̫k lF ׻M1asus׿ӛI@Y6Yj㭳Gk҄>Tt#\>~Q" K>pEr,5^Z Ƕ{,ʲ^+2#n̻tD0#0jgLeEA,Eѝ .,#Zr OQ67Ѯ/y E8.xŠN^7e!]{[BAMHDL?l7矎e`2~"ITvZɓ}YUaQ~ؽz.']xS6=Lsuq]ᖬ_n<֣.u"MpJcLwwg_ؕMKj6z~29Q|g5NjKNX~s+?Pg^8B)4JFoRQ.RT[oUK@pGF .KEa&U"pr*$AuT/OS!!gZiƹFmBҡY3ZȫXȧIjԊ_珿y>y]];[Ci=^ ThPUB4^2:HOO2xF/v* QPC?SqvȽF Qy3=K߅@BTVPI2 ck?'D+驑@4T(72;4@Q@tG|Y+2/L(}ѧܗ5ivz @\M{W:һpPkw9LV8H۹up~)Uw1 9ytHZ Ic`-^y;dJձ7` vYawA k ^7k?3@Z(5>gxKUf]ߣ~aZqt_xs)[:h"O&ފ **)CjC{ʊ/D>|;O$ i&xׄ7::NYzK0,2camZ,ߤ }iǏ2GcEVM/[at3(f 7h16Ukrסw^umi'.']9CО nw]sJyN1\lK|\ݻsBމEݟ;Vnw9etsSI?=Sf棇׼N~W篊]9Vӊ/Tm0(CSM1`?r(ُK_ԉ3=>̮.}qjwynƮG?mǧCѸcx~1Mwi_ȧ7&e̴w01[<Ω C܋䋳l,-;P[IZXP-sHCCX:/gCuEpo\Кf 8J Q2'7@Ef Wlypo)׿3}(UyNUd;sPA-X?VgLi|C{N YO1%UUֈ"W%G^?itl:Wddv n,@J{[t=M?iU (pgzR UW}rNYp)9Iȩf8;MJLvggl1'8~t&23B9E쎰6!T)2ZpH4E|)h.h4;{U< wjGR]=͐V>C5QzܥyZ X @L [jY\ 2akOBCh _a.,pSZy|}ς'%곭[^qqG*x&!)nArʠ'QΓvWv{oK}1Gghߟ4 ԦؽCWqGwXޒ6}!ȃ2]6$oZyTʩ*~m4cx/>N lr)@1ظh}ù29>].VNª":\_ǂq> ! C_'mFۏ4W#ޱɣefbҪƍh\OXjةOm'ÝCr@nGDV1 T#w1|O_ȃzlca]^k}{1!27I E_nUὨ)~%i4iX5i|/Oͺ:g  jw&_raILE"ב x -8pR8NvXpoVW̨T zwcX*W*,E'!DpB:F,Rq?GŲsڱN6{!kT) .ȄD{\8Kƨ B+P{ } _<$ unCSL'_K U9 Ԟi  y:B=Y:DU$=G9": dtg/1o͜}U3O 1؎ P"}Z W Zガ_E{Aj3'Z:UJ,\$˟dr~y2!*{ (>4:Ol> pD Y@qcGkqWW^rTj}xe f\*\5;.j [z`mҔ\~O񙙿7r)W3df`] X;&J HTϑuR!Oɩ& ;˳,$`??I$iUXR$Џ]r9:\螾5=nR%kY0GM?wΎʝ!2OC~n=]mA| ӓT=ߪk pM^k ZAXRVէP 'k̀ڤ7"Hso;&!2&ԛ֧׽Lw Ԗ˷i*SWՖa_Nl@q^XG9n2k>.YM҅uNSԞjsr*gL`<8޳5V~tC%\\17l]ZL2*ê~YcnK;¹Jt<`}*eRDn^/$MlΫ$͢Y%˦ݺNsTmVm]]M&;;ijzW=_t0_n/`J{fm U<ɞ/ӽfBY4m5($OggS@?C4&9~y=~*s]ݫ9Xn(deJ"lv kX.]K#)UNⴐsiVb{LjxG+RqkM-"ꩉ"f3娅dnfHFuVKz[&=}ޫ|z\ڸ˨ݸ Llo8f膀֠۹_&Cf]VSRUxԞ*y ,JGD 4]F9^v]ֵe_|bqT4* %B8 İi.DrP~:uKݍ[>$63()zȺ֬Swf[~,2$w"=MZ3 } Pe2XMM%wdbPj|L?`m/JRkj$A7i>/wl 9'luJ_ W]<ݓl ۥ!Ig}䛸/ @S :uRbd%}R{Q% `ic ٚ4߾ӎ܉]뙥XA}%UB8L@~\5ޛ-s"B~#U]ǩ| 7- 5( b=WD&:&ѷ^KMVzmn Ko\Ve8.d;g9Eőd,$˓w*|֣-]䷉V?0f=~vj/Ɯ~yI џx\% %|^KYU?STt9>~WkM2HH\`ԿuU 0l¸d%$҅ڙMkpu+D^敨8^w^ބ]Ě>8=w@)&S]ﮇ"?^:T:94H#\ޑvA-r Wzg;ξ>cͻ5gp]8CV]34ʈ!*HrD i DW. ?hRw9d]K>#OAB*Nf'?:iHgckpr)D:USOy!jV=O#ZuO*2kQ{JTg&$Pѣ[=Z=kCP?F$<kdcooRɹ54Ow.M aԓ.JY\c^h+V~@ w|?bvtu;W[׎Z,J~˗!㴪:p->K4j8J1B+}vopI]~O7]EV3ğ)3WmgT0w~dzXUڵj{5 U3H]x ԳIug%l~5S-l|'677vqHւ-$.q6;{@iZ|`* f]1L턔"hQf]z1"A2O-EΜ o^5][@Tw0Rnyj?(fFX^dRN \ZG_ڜ3n4TF;~N;׀ziz;P.&ZݹxLDnJ^'#fn]t68Jm+\4!Uap_n|@~;[I?GQ*<#]鮠?]|[,{|=ZShE{b Vfc?n>ja1Ff\ ?GEɼ&_>\ی·ɲ/ωl>l?fۧ5;S܍㸜2ьn^~n u]Vǻ/m_Z"Íя|[M‹ģl k|X>]SՇ4+|êO%E#H8Ju[چ}]Fc{\$;SCčOBvPi>B#hZdu'A*u?zyoS-nfW!Xi}Տ:^tWo^898YT8r Icr=w*դѳk'jaA_ji]uT*|0QFWVw޻y=ҙt]vYYE#9bZ?+l86T~n1J3Y^y/2qlA,G$io,D#` Hs(Gpij=APb u+~7~|e= YW [ m-VۖBW ]shttCԘ*X(>B趙lZPIQoo79ê]gzZ?O- [P̀ļךZqrPE^yj.f,|Kp/sh !E`[TX{Ja9Ϭx^st@ @J&P)xmw~]tm݂1!`T!{C2{hY"4G\8 EjmGN)SԽ<ɏ/e3Rl$ՕH.Ϥ:r>~:μ>ǠUW*dj P|Wx{{ArnE7:cMδM%}z5U;˷ (U{Xe3,?}IW' W2յ'Bj_@((c4ԩoUh 4%W)7vkNL"-M,'vfEio[g_%5%Vk^Ѻ77ؒMtw?cc}z=d\\Y- aO#[l "##"r9MRy ]K.0bOyOF}Du}: 7kByYhvJ{OGy۷>NVXky>jp r_b+}0kTHxᆆu~r&sT0ՄqPKUBP&ܾTƞ@0( Wϖ;+7]]~^ҌBs R~^ۊrȒz#1k#~Clk}EhE`]exrR=ҕ k:&rs "5I֭Wo sk\\TIifXB$Wx{.;ҡHuK{S򲊵ـ =^OA] í{i,48LݺN+0:-(5KUjTڐ8sJR?!(:GKU~T9g2 :֥6_|;83tL4:Z#0H]v*hRY=S]<_ٯWb⏗)ΤA !zjUҁs8n1Rtd{BEg$;T`[PRoѭ\i Wʮhor_lq븒LOc7ͱ&{! XU1I4M~9ٛ0jf1jת+RWGg C2qs=iok'P"zyٹ~Ҳvm2me\ Fc|&.|QQ\ )e|݉5ϿJ ~Yw. on%}-8H8)-fw 9 \0˵>'`67.aHuj~m8f5s(']?Aݕ:x؋[+{ zUFtR%"k6} +Wz 6akGT[ \@HYfmia hEd DZ *mBQ(gJV۵(Y'ъgHwmt!Ԋy4nF<#ئ;cMI[N"ɤ+]_ӞKqC6NuiMq$Goҿ.O>6tpY((3|Ky%FKGՉxe=xݚbNv\$5ێ83K)zE Cq;czeqjdZWVD.^ lR䉄<_EڻsP"s[}H"+|oU:.y'ޅ ;={|t>ݕ*{Vyٍb;azd8z9x<9Q0Q9`z\s>٢< ,Ma֊1S1˥}n|?Jl5x\d{cU{{y-m1f"s  M|WeksHl!^/"$vW3Z',9' -I-j+pׅ\y)߳H~gȫ!v\;cs=;q*#/s:cI^j_pKW/*K]<{DzQ]'!dΏrQgfM*Ȯ/vLts֛N6K٦1xzǮc7tiuM֬\M~,ny}EK/!5:"5@1G F|,OY4bH_L;lUM6Vhiy7ͽP{.PIvky?U7^̓XZɦ1\<@.H @ߴ`ق=oLHsuÞFLPWmh=3҉~F]u'}-[K/5:5/StT85e*u%WY旫g9R;jRf}=Α/Vݝ`ў4^2$ OkC򩩷LL,8B g/Pq=A}g8F~9ԮQ+44CmjKMīS˙[k*Ԭӛw;Uxեc <"vn %ifVVbiI+]8Ԯ:GEVtTp:8Zgh,Eey *@=!ӏHϖX@Dɐ@sMԒ1D1gAEZ"p}_ /qK˖^/o+{4kFMyAɽfug*OYNuk#"ꕝ#{Oi*1|4#*\fy?$U& o;ki2HSTi+]JG=[W7t.so^s e+ߥ*>K4R0 w0$LmW]~W:3͊Q!֣fV=6@"q! aW0f/I (@S_  Z{߇~79_r k?ٿD8P\)v:Bl~.HRz&1Z_w@?;DAv+*{?:%[*^yMB<*.wH+ϋLS0 _NA$mxC|fImng7ZO'aFb<=v]fknSl--:(éNǧwXu1~BJ&MfuZgRG! c=\D Z |Ӻ`4eyci;iqd}Um$dXW*&.m æIg;._~X0j\H'+ i,*~4+[3΋~QK  @+OO*Lf7˭(T(t* G x¼$1!NĈȮ37YJʑO_R#8U2)SϡJ^7Dy&>G74#} ۲x}ۿ[+;«㪲d`"}3৮7l~[cF?^=BJENq Z@Ԛ\k\jA!Zݚ4gGPƥk8081y{KMJ0h$h }ZjM=IG 2DMB}C2<|IYljfENחANpOkE˳o? c ξj\ސƈcPHZ4L|9axD"{dqşnv?+tbJVl;ksOѹ^qe9.k'tϿ0i{S_l&|'z=Ʒ;@YW?H w"*Zwsse}%G7'{ƧU|{̕F݉V]UEz{ :`Υ!gG4@)5h_#DWoU?\ wL+U?xOtéۭFϊƱ?Co%MoI.^>o n Yn^ض{Ѱ| 񹻏{  ӻR^$vS4=K*ӎۖ?k2{E ڿĄw<ŧܩ*׊ՔeK҉fĞKm=J>S2Do8'矎uLoIjzO+ |k~L\)?'|e;1?MVɥ-*MX"5Fd+8c,Sc]llP٩Mi9NI=v,P>RkK^4R4{o޾h~\߅m^{a8p>_S 9OI;P "j1 +JԻt߇-ѲܨFz/*diw֣v.!ζqx%s6UY=kuZ:l=DPp3-5LF Ͽ %U:%{tQ#>vS)^qvRdV]? qôԮ!ew 3K#̿\fQ]inJ*;#[=>{?yfuLISQHmjT Ƥad7s+.!.r;j$c)SfƄT`9*bjry؀D}y\.v{RGM/}~ؐi 'i"1P,~߈ `߿0 nA7,6_.hn ;}孼>- G"8ӐA{+OhH(nP于H)-Cb)Ls 10>$ג rO+Jꦷ v7IxFYzN=7%X\޺٨;%(%n!'DWt~b"gUT?aq1ֶ^eo^L>u6V&dlSŦN<99}^_Oa;1f*Ϥt+f5GO5yPGNtNiU^n/@X=nuuxPN4*=LdO?3dÇa;δ%p@>Z*zjtk^rL7j8*d*dkLիY(2Kkx=ԬEjKޓPBRܕRխ(Rn8_Kxq⡶zVL~Sl{ؙ(yisC}͖?UΪ?{${/_nUo+cJsgw] Ҿ Is-~pMfu <w<@(uEǤj^;Oǭ_SQX"[ vB8 KxQLQEnu (ds% I" eLuf^'GV#7948:e5x][~MGN{ڟ9GkBJK&|XO ә;DVm'VsVzDz֓QW Gӊan jۿY:[<2J#z _w ޺ӶZjGπ8FRm׽e'KUWD}r.JB;/j >kz$Ei7#p~c{-n}G^`rUX;mWEE>.1(ct<}9_JH_&ZG~||X;nx,(g`(O>h^^\^0m/ ٟzd{{$U$iaf^3y'>K$™dEfM\bgPX*ae[\`ۤȬ @0E[b4w"HC|?3?5?丨>9Z'Pr+j*4F 2UUR%pvmRdQU\seN ֐I(H%ы~}05UZBu@f+N(3=*ЖtH1ZJf?!QG䳾ZUzn5'`RHL$X8 ~<!xaaDCdJJo7w͑bQ~_o4+qբvǙ?{a{@rĴK/,V4cd_ ʇzK[3#50m#ݟ=i^tGKx_Npܿɵ\ӞJ|XTfs?3Q>ۆܭ7 Ft-tG~Zͭ=<>d+<+!#U_4r#WܯN佟ܞx &[tö[xV$`1 <L(@!F)ԺK15*1ۂmاSe ;zX㭾#tY0r"YdJWsj=@^աqmAS#Tq[!:-BYDFk 0L”_-g]pijVԝx~m~4>ȵ-҇87ʫ&vsz) V{hvˍZtm !$Z|׌@U>),y1TNkQ,pۇDN㢱<2qwNqyƅU'm,]H?N1FjTAS^~nROL .fVԬo~6"Np چs9rId6 VO$bx#ZVkW|2 bzZ6l+N%iT!UqM{yƷ 7mTK -j^5臋ſ>?ebƝ@珙ew}CRE]-# 뙴T?T)pJHs_u:%Å0lPr!(dJ$F&bqomwdZ;!'.˼C}5NhsϮu<qQu[C]OZv=T5bW}Pk鼹羂TFwB xZO8N经p/[JT#5@fx(A@OHеpAЀ*urR=%OIZ4rBI 8E4wnʱJx8Rci#AT!uԂBsjW59M=1wUJjIܠUcrfcaFGhbd]T6PK$D/qHDU+4@, 5Q յKDH !:9q KLI-g~~iB|W-Y;;"{*OggS@oC4&<qv8^[BVMugJrz\C]CtA,)8p+`:Y33V7M6L\yY|yj 8{*@,"J,* og#]m YYy$%LA ū=ksG槔dQO_u:~ 0_S.8DvPܾmh\x9xtVu>ϕqc)ЖԤtzy25f "%$)PGvȪW*B%9=4K$<48Θ:KuZ>51Krmre>{fi~t@Wr:QD(}tRTO)`v8DQnޒW4OU.rJ9o#D;0HyP5DQ8.a>E?B>~>`y׼y]2>2kn+pRo. %&ӆO,D8kf`1ƱQ=y{JRjҵonkg ϑ+)glP_҂ ̻UMlfdwi=Ug:],X2a)D_K?7%le}RKU,?֋pKVz~7g-?L11d\Gf1+x786j…;"ӵPFc!d4(g2g=noZO}P&cXrx?,',S;_f.ex}֟u Brgo7+e_\EkL}*wpOf4imHmhx:Y:]FxD ऎjˆ(LRVl䈾WP[IZark¥_s=ľ."ˮWU7NjN%mqݟoR ?冻WS޵v~5fj;Ԕ=vg:{Ӕ Ž7g8i2䳫FkfcyrE߾nKk뫉Bp"SҔj*!*\%4˾pejxǩ _0_l83u_n5 ^nF_GS_QpcqMO6xPi\MM:Sʀ^mV󬨓t3ALk rxSVwО \X}x$V I!r}Z1EJC͠^s%_ފB}5$&Y Kop5%^)-RgN-qdjJ<<׃`,eN΃*<$zҏ߫~3xN'v2] 쯹j)'lhE}.atbǶ#y'$j8y Σ`הҨ~,YE8^g0Po"Iv85gEZ O֔H_#ߠܦvK/Ԧe rᗫaTrmbb9-?m]20wZL?|O]bK7FnH?>j{lB~3ؗ3r=Z5L2X+c?uWG=Ǐ\ y$R3+M/X\9 ôۼk}*Yz|g)Xﭞwy^EV@݃ŒͰ ==n݂kv}Z2(~c 5Nrc(kx;,.v@l㿧[x"]OхZL jXGuHSW Ykn;]N5Cчsh1zȔ2=tC;xDdv8D)أ_ibBNWj%t "&ﮯn%7<B~t_ljELwV[[ͣgz-wUbta lω|*<-]H"G,!G3 A;nvJ55tP k8kH\?T`EAR㜚IwDheGiǟfADnZjٙf:5R kf3Ԙg&Qk9sцq޵/׳Օߐ>==7nنf6w_f7js$MOw%!4 'rCy!G[+ˣ'sM3f}w ~iڧ+ޅsWB]"A᱾{ /Vߩ|Vj2*3\rEthkȻu묋'SɩK$_q MO#ӿ-K,Z z|S+^dM9Ĵ[tC3{߬%ݡR?71Eh$<.| :{]J/u>)Ƣ4H|)||)yذff1ǽ_Lfd rs9۰몪|y7WM_>eRP=SX1*Xs9ܭPjD l]ul2_C.˞[yQ胻U1fzͩ-> ݄Iv] bxLlP ,4¾"E8z_D_l?j儳!LCVro>TKEUu|NcB*:~o믫&-~xMz;Y7iZ>d{>E/|/|w\t\9[v޶OiűJ4kyݫOf" `T/H ަ7L~3P,^ںR޵źT p+#j /Vwֶ'g dqr^NR֨DgMS? pA֥Țr-ADZǪEcyٱyZsW] 2&N<3/~vx6uBԾ_'C?tGPMNW"R=97ڣQ 4=0S5y1BٷЛ4w [[k*uͫ,[߾̐y찼'|"d8]$q{"!+dVj'Ö́[UkPbr*يV"P][ipTdCѝז\O]=Jk;F;I4kM'q DђyzI;Dk+8#dHlZ_d?ERƧFj }P?bib. j"S'OYdg~˜/Q(J|>D~9?]9 X}:mv:ooe|YMt2.w{i%a$ZP=556f`nsFA|# ޥ0ʷY84z.&+K闋Hc6h|>*J O NL..$@mG+ʗc_dz` F6_ʄ1%'"_E?Ͼ`U|z1K'w>'!:.8]Q1AQrбЫz^-d-Uv$,y玫j.|x3͢]ߺ隖;e-*Yk"ۭ^fFL % + rag so*F&xer5I81(lpl7'G㤌/R8Bo! ZHh5Y=n"RX;S{jȽj?Dt*A|6 C'n:vAYhezݯR9q6_3ݡKTOoM;oB4$W,>5 s4ݭ>q"ba?j|]< QVp^{BNOggS~C4&=#GEcGü5r2ŋr S 7YٚE~$*][e偲,޳'ntۅNƎ5'ٲ/.gO9KQKp']p1>k?T%4Gg"yqҗ}ܲ|Ƕ4[?5+l-^V9^F_7˿=Wi/I/!׮<EBnÈ4ix>s4 3 Ms*/3Tpwnw{?д6@T ZgD7 $9*7EZ>S:Z)Bpq.A7&D8PьI8燝8Ifv)G>Zhdm ƔRKG7ֺJpRk wk ]p"w(T`ϤE'gYhΉ#4e j4wG<@$@ )P @KQPb>a;׉dJ\ 1IM}I'AݟZ3FEi]7'M?s?N'EW>X>|U‘O? ~_̓ɡjqY?(J=90f_}\Y?i??n! 5z{LydoH %WzJv/5e˽>0HkOQ QQ@3'H[pn)l,wf5A%N~\oV!?}pޝt;q q~r铼n*(ncfj۪OsRUwh7\0w4h)kz]Zg։X=fJOs\ק q%[\EYl+݊n0y6XDziOURwSMBy=}_+aBnܧ;/)H1 VPyL_2 tC#wݩʹT[>hs:z\o0ixW5m(ѕ+gGp&mᥢ#I.|0K寲4kϼ O ǩH 7FW`Gy<4Om3MJfSafx~(VL7jaGLΜNI#aw[͏f,ݡ,ڡ!M=x%OkzJ7OM4M]~٘gILrtףF;TT"92 nx5 l6XSXxKfa( ýL&O?EZuFsfNR}PgV:Wznʸ18+ɉᳮllgG!y9gpceQOyz_ׅtQ`lF4ɦ2eK=1ˌ#?nt\qI˦CK'"GdvCMȏx44ŤDCg#\k_BNU%nԫbeo>l&?t9]mÃP$6 /"!:>nf=li{z1d@.tFP7re]7{Wgͣx~8}6ڸf+߬m{(ۡ'=hrYiF8c̼ObWU͌&28&r&6KM<+#nW;e H*Ћ5m:05dh"sӝo'⿴/_L9$nk鷝 oPRn>6f#2~ydSɷsc~]NQscOsIK]@Pc/3=t|#4~t@~]UΏVz^ecNIswSAOn[9V-3xt-{{F|{'קN_>.|r=Q>T4ѩKp%G]L;HըlgK8N(Ll~`D葏-zd!Q.$.#H舯$ ’+N {jٟ[g7C@H*KDsx1K. si<ĵ2$;EA+K]=[rƨڨ/ʑb͠aYVzn9ϟjպV p>>J񘡢yél2GϓPMu&ȳKĴY3| )x1$U:nJFXL"Y(wdr d$W7 ocК‹~¥uI1 O_Gi.1[phz)Ԛ,E0AwWfںޣ+SVwv}MFtuBZd=if΋mUT;DwKjπ[v)+Dkgm`ɳjFD'nNTOdƬ 1:CХUmKD'}>N>ʧ sc *awx,f]Sg]<^ʧca+_,x6+$޳ˬ5>e94+$KE+1_ G]Vd;ݛ9DLq>Y tݰQDp{Ζ~:s ԁ`o+aty'bf7)'2ޞIJ"ȿw$VnViM ᩞp48L2{pu$oJ|{ {TbM8}:&Շm}ӒяYNe8]=p[ 'C|7G)/ >h!#tz4W̽&=KCYϷXBt\*q6t8}c%Cw{  /GCG'3Ⱥs5{_MK/5rL<5eNL$>¾iެ-FmyX%|AMkh zsUddS-5vtGg5z*IƜ5KHKW%T;82'FHO|SU[pVBhQtt6GM~CSJRg>!jmQ%CkPN_-"{sD Z9I=虬5$ۉpd(`N-j;f$IP'k2Bٙ3RQjq:%ɵ&JTɕ瑟'"8TG!ΐ]+ \J$/gY ۆ -85=-Ꙛ1 q^miT h~ԇP ;4QHLwDi%(Q] Tm tL:= w=-veE2kO$c83?ڏȱXplUw>U߷OgLȬ8!p>$3m vny$L 𷹃E%HwaB,\ ?':g081WI_'8}oPk|MId:Obء!,oVs!2ie3w҇m&Y%ZnVQMe u/p #NUq:߈ QkQ|\Ŀ°9W{d#3q Ubf{.}(? 3ҽUc{BԕJ䴕)&S_G];gGamR$Eu'k]Mk~HwQ eY3wF\秵yMahtrZp"wDwߞcv5~VŰطʍ칤9jƦDWVԇb\ZgjI@O07͋7wzO^D7꺣QK^l3kCդ@wom6.^\%ݚ6cm*5o1D6N~U(gM{{}_>YwvI5!uTc3 I"L]g>fv%}^m feNxxv-3O{`ĺ¬^MshOggSC4&>\~Օi *c7OťO\T~ޚ8 p+=`K# ശ}੦5byQֿ@29hfOOzwo;w.#].H4ULPkk%oʼnOy7t-Y<*xKҡr&|N p#/ jv@d)3-$+D1C^"xrsZy1ǣYk8ΉQ05ruy!8Ԭ)U$%kE}R "PDtw&cdHD؃wB"]Fd1A s@j/+_)0!ANZpqTiBw*rHSh :_6]ub tJ{hB ,YU8Nt?ga&C~{*GHwCTQ3$>[񪽊TW*BN&S*<_q؀5^86:B{<z|^?:˃gA9qH{͘|l V{'M~vea0}:Y.7M {⎇}=gx:-]'*A["J^nY?P=g+Y9J%1 !@+n{x%k+?n,@~GUS> -ܻ '&mzmtʕօl-Du*'ˌ̵ݢ 3p+ '\b}+ß'=rz}W3fkSxN߭ʽ{ SsPj=MʹH$r'KOͳ.SKlk,]hJ 2\hfuȞߓn,Z/{[2Wv1e52DE#sko߫Q#)=;>ox%6m`/STkp-6Y}]ULjBSS10dއ=MKKZg_F@hm\rL(_:Roac3ÃI֌iG2v҈'T;zzutTDށ{1)~9@ sʗn,C.0#ouL(Bs}XdS~]deʭb:]%(QE_EpnG~Ί:Ҥ%XOwozw{3n:~{uTWM[TqZʄ>59 [77llB}Y3+uNη|zkpf@?:$.P!JGe_fQ5T dۿpS^=U(% }@ȤM/DԽ%]+~]vD.NK\}ԓ~gG@5ZpݪPx3bo&PZTR\ή5= @4@/]gC?48AshBH >{K95gꏿ|(snBj+5C_43eQ+Q*JW H NsuR8lm*\tMv*2о0UapZ UA6"/~:NPG=;TÃgNJUGUن5=0 PԽ=8M]ICAwΧYũth‘x P0*UpXƊ5 z~BbbL6UdD|fJMdwW7^9p{쫳kӚqJ|R/,-le/v?:V(od|W4_НSc%Ab>jUF"]"1 \IUE{p:3Kj>E.m28k)^k\տ~^>&Gvڍs0W&yk< oWo2;\>MI :^ߋ'X2R:(w>ECø+2ydel۠h"zpi3O&7~@FT ]=^~z8z=7{.33jٓmQdss2Ib߄ud[bownB0Gw1l7O۬(g7%tZ{x[׃icлW]W(?ւ[q G\y=|U@)Hm=3\ -t/7鷜5`2"w+WG`A's ݡ4nuTGڈ}lzoڳe6z_b۸Qm+E?K55[J>+W^A|}3{bS*C']'!k'omƶI5qMnOt/br,39MMÏ!r[eI *صy}/t6׭.}56Qu[.O5l O.3;c@|!?FV] m<'YS;k U;`CFΎXqHNBDVyS&].gb)s*]4:7ƿSa r9wQVz>jŽG =Ne|/ZՈQ!ȹT{ > H`vDtǁN{HlB?( G GH\kBRW*!88Юtdxso1_,]Еk<QyzI/~ꦆRh!ťDa.JgpPDeC>[2$'#Jv%aP~dJe>>vA/[C8J !8$!I)NXpһ$$QDV0D^ttӑSrb֌X57OP(9 P9%Pޱ9&r n 5{H5FgΛd0Jqb`Bc*=sEjsܧ.ر5ˌ'&Jt1:_Jz $;|؜ h{W%kxmlԵV3{O+>bh2:%ϓ7lS?WUV䔨il[ ܞגBF)rԂqjsV}d8-}6"jl˝m2cuS#=Y ([.k=7Mu]ʧw }ߐ@E~0癘l fgeÝ-,jʿa"5! ο;Jhu,Y/,i-Cw?+j y#.l䈴/gG.'o 8N:sp**NU#-%a#t ~jRx+E4'EZo&rˇ1g yoY!5"pHmOnZz,Ic*bqyloO>U^{y=Tۤ.O#cxzŭuZ!7y]]-}owybuW9޾o7'?/ዃ2xe n SҊP[Zn>vL͚쭚s:H*m۞H6:DžthIiP+d29pj=Asw>,ڐ[@5 `rBt9$,/xhϥx.M)fx%ƙ3DDyT}&z] D%c׳CRD1 tK!tB#фh5 KˤgT&>$ԣY#2B)ѣYCwP1"u+{P Y)NT)It.ɌE _ ""Pk(ԳhTB ^IVUd#s#*¡kOP␃E }u>T7T2-ЧAIRq*BG<~zodl[33)ɟ)p{4p"SP$/N\0a2T+4$!f!>vsx3笖I H{ ˔ɻ7{mVoa=I_Ǟlg#Aoaf ~Yc_Ǭ v6]}T(标)GZ6B>]YygZأYx-^Ҕe:U'wPR6S9z* sA'hm;Rg6/J}?=+RFU{P-@kdBb p;`'c(X-yyGe433;I |IOggSC4&?OdT"^vk#G ~04ZQ/T4w뻆`4cj:}ag8)0Xf._јBSꜵyOWMow vI@*N3t#%UDย+kte8R=P#J 9Ԫ -9tMDIL(duIj-k:"#R-zhmj ]éUa'q=hfښ)D?ǂQp?mp'R&f$|oHbvDrЙe[uN 5P;x(:d8X$^ToA@9KRTmp}nU2oQe!P#ԣ:?Լo 4G. RHiJRg:*!)t/׫[qTg1UAq 34?+1C u2Գ1/ ~4{<ҝXp }r7p^Wj*{=T pkr 0laz=oͯRy"8݁'h4_!@g<<$]91H133Z{C2nC˞v2w{ gǚ5S)52wW 䁍str] k+ 9g$%O+R^b5 s.tu<`!mJ*{Iű.׎f/֧տ2Za0+wS5@Rʓ|)}vI4~^Ob?%/ WztL~{L!ᙳY`/Njs2*52q{kCy̜]fDG2!Ƀu]H* s=lPqo&nd_S_/߼5}W16 R3VfK=B\zo f׏Jp[!P[`[}Q'NϜn5`$0yxBqCpz3}X,Xy7@By)H*P(,Y'2 5D@ 8_?'յoKԖGWF gYZ@OcF1xQ$t!TdC P";~ D$IJ;-3RUݡj3A$RBd{%UHTj;a0+cO | IL %^ . s)JyK y\y3i(w0׋s\7Jw~m9rQS^6X(]T7'r+xܚWUO9x&Qq 2H]`)QGO59rd1.-+yBG,@dU*ʖU7EZCy׾ۥ{ڍnjn pTj|.C{><[׊GH'qO>?Ϋ,o5&INvV;לJgۨ'nSL!<|w'(ԗN1.M=ӅiunKEFn@Ür\b_:ˮ{fZW[j<< slQp'[=Ɍ8t$\!;^7ΒÙx\xXc(jNƃJAhWg~ƷQĦ,u#zl/qr-5&MZuu*Vrx ʹ-OCrͿgGG9_Fw|OH]4&պ@Y]N=#=;Mmvj#b\$Z\DTtWI|T4ⶫW]E5j묌SQX,.ƴ챜/,Φ~A7{xɧ|9Ŷ6z?W/nʅYiM%>fK%[44*WYo V~`;DԀ^~ DH\H1OsE!U^XXuzHD8yS<)RݩJMԩd'Qj("9ôkg}IU~\~QoK=z!dΓ։9X/wF;=xU#=`' $;B^3p~K?&d*pN]o^BJN뚫#sV%)&jM\֨TA兇hdz$>WB>U$%2ziAJy(#G>Y[v) DP=ZHGp =Bler*(x A2M-Q9LA5 |P9ͨ;4 Hw>}_F% *Ae$:; 5#G~ݟlK2)9֔iOx!Ac, @2 J= u] SW5wK:[B>_a}qt\,'CR꺚zt o9QxrOP| ] DgO[g]Ƣ_0B&e>zv֨mO>E!}l\f[c6՘;ԬBZ\fDPU>`b&ۄ3GR+ mjݣOYuG? Ueπ;\A0A]d\,+wk~|3^dSncp@NiP֝Rm F"'xyc$yù}vмHf"l 6+sUUn5I/#/oŘ. [(5"bqP'S8~,R_,#%VU芻)~3lG323߿tj9ɏm >[6W~n0Gyn~KU^r5rjđ4=+λOȩ\buݦ0UƘ,.ji¨3T^7f>R*RK `b;c!Y14V̈́H֦N:KjO-卧 u#qNNkH1uwKshQf=-M G-tB2:DT-2U &v9e;u= QD:g-_>S;k׭0^j|89ILYhtdBWJhSQoTP)J}*Mj՘(Ьd嵓ZE*-Zxvg"O"Dcg"̮N]DuAL"Ρ*CWd=b9O@5Iv$$dYYo?}*4@EF jԑp'@H{+ 59%,̏~s%ۀft8P-w&=@f Eԇ]O Tz7TӶ kD 0tYzbUUcdžh5.>Ua%MQU{ߊ4sfZN)vEM ޿fCuIφq]8g 5B8E*νrz ?R=yةz1)vy ".vDj^$QO(Jb@hg(%pW& :ݰ+8~y˰ʯm.+g*]o'5RՋF>xږ>qəp@< J[&nе6TǴUn癒_ ̓mE˞|==mC&\LX=ݸ?#Opر#lw^muL 㿆_..֫a6rYVB7^$nL ѹ85 +e"9-P'j֌nIEOggSC4&@)$#'~VLC95wKU3&/U)s GpM~aҡE.T>H0YĹ@x|tmu̇L=~M)\L%8RS5ꑻj8Y\;\rJk̫q;^ZRywWXkc6Q#) wF/*=_=CMAU ^;}eTQLY4xڴdE4Y:ZЖd͙Yar})= J'j0[ӑHCx0|PLHɣtD[fMeJZNDT OyU8{55WnR5Z12A@Gf@D;C>!󞟸ws&#K% 'J(_+;ZP@ N^tAK;y~;٣ٯ!2>?"~>21Ȥ<֝j [U{!i)P RW[ GM=5/2[ aSΧv"/ ԯh?ru!-1_3h^VM/8V4uNw%p:$#&rI>-9SduTD*[ꇋojXu֛qzK_Z6l#:Yy5]7Es|.0!\j1e-O@$LQdw}î~9 ?vZ~*A; ƍSќe *k&D?XLj޹Oh!О*b._ +_ٕz[{mj.u/lrL~Q$v,~Ř;]2E~K:.Jt񓦢V.Xod#]i< .v jx1^rçpE}z;uq?Œu܏KĦ.rD̍Ff!D_+X~~ޣ _o֫-WiVH.EgܛS!DX:5Hp7{0?m{QE[JkZNcLƣ˭`3lt&IH*XP՜wl|,YH۟ś]\p~㻓'ORwԩH[~=<-Hzsd'qǦJޯTuCj¼n84@͵Fփj'mJJ&{GzlαND;uu#qv|ȧ@cm'#hZhj6Y]d|8Cz|iݏ7$ads07R84S:$|M̻&%D_3#J$HȈCbPt7HH<(҄>YsQ=9#jvK@T#-goq˂!-+ۗy"I{^?[W[;QxӢʾɁ&&5ۨ{T[MEIqY>ɆiZḵXBEEu3C}y*>qI8øx^U5FΕ:Hz`l?\KYy1*bs<| vX/YK'OΏ\cb?uHcS0.#[B_~l\WU?߹1VE$91f~Ecel!zenXތnR a0&k_c!7l!.KpAB/hT& ~p jV#X)ֿ~n*C\$aPU8#4`sJu\f޴Mw4rԍ|zkеUSA;-MGHQ\ C1#W6Ɛ%wiFMAw&d-ګwF㲲Wp>q~6jXp Ɠ cOZn+f3tW07Upp~) yZ+^wOJ÷桀/Iኜ0YV|u^<\E^ݧFqH^i{Kӯ͐__dRlγ~!?¶B^ `J2W.V+ǢG/f ފr/׀|=!?zFgs@OnU. -}'%{E(:Ȍ]ek8u=b~VEc'$hWL_keqEҷjUvkNW!$H.Εe~sW:h(2qݏHzI4/{eբ+s(QZRH9i֊:4SXj\iu8Ɏ"gpGfu:+UNzD%$BzP{-[bB -tחQgQfoVTĹI#\HԨ qjLTjL;dBڴtQ<{}پC{.,[@YTigߥ^zO)͚{[@ZsJ ןpx~Fdty쨮~TgKn%XnT8bUutgH'/`|66צK!1^ќx1{m<,}5,#a'ΟSѾdAFPq@4_=?\QM iY:wȿRyZ[|nmՄ4C^dNMǓ+bDʳf)l- |9'GDG}psz^ݘ[jWE?HFfӻ5]ftbaDe9~m/o"Fy %r=C=h$^J Ѡ2|QF}<*fޯ#VhwDž]\RIЅS=}\i=rMQ"51j\j8W9:7b*ޒ1ҜRL>+Z"Nf_-tPm{Hʼ??Xk/T6۔ni?S,'6`: 4[5-brG˧@?[}*QeP <`hZ5UlO 9*{/kz[]~Ͽ'--/TlΊP}~5$ )uUZw?SQ#Ro?N! aSuܺH12q~>} HVUiO ~ѥyG((#9MUsR?t9%cb_T@p+?>UJ9n3{]Ъ-ź[r0_$ :GWvvaJt0v*zJUu/6/y#lA>~Myiy@?ghA3SYy͏Cg8Iew#h/G>Wi=C<_.{ʑy}INS/A.Μǚ=h2ܻ 9JԨM5_8UZY#N,iRdZ{_sLTWā5‘B*{3!,Urc-uN4gNN Gq@>u;$f5Ru^ LQڎfgqHNhŭ/IwP)}C 539'#a+?ơ= 3bSB9@@LDdCA A_>( d#, Jb%|cF)Eڋ@L,%0oVLS5FCč[g)U?|8-f< ,~!&֝ɕW~A<+3w8O-;Cγ0V^ߏh8MWz2]8~JȚOIx3~?q) b5 fwz_V>!KPv&,bWEzc;5+J>k+9w.Y~}Hzo-r9v>͝&GC bn|"d͡IfҵpԜ3|"PVkJ冷7*J]܏VWM+#nwE{t'UO$3,sr :: #:bf8gm/W|R=vܗO{ISnW.W¤H{=`_zk} H{χ Ai&uCK*cVZ] =n-j7y^SUl[n!Q@3_nF6/?7s7͝X A~ daFk[dMomͽgbqr=]j=ܞG]{K+X6 =ņ_>\(&*Î5̥ Rո]vܜbeszMy~sy Ff\SNaĶ.9HbV'bs;?&O2OggSC4&A,#(;^Uc.y'b\Dkd.pnD ()%ϟ5˫F<Ѷv;]=kmݪ'Pk"Dgɐz!?/yAT)ׄhUKte]$PkfKΟ%v}%ߺJvz{}c9:iHKHC~*݁:;Ckd=K Sw+ S#29Z {viѬ%U*Q'hkjtfȔ, Df*ʣcn2r~=Kv,gH@$TvSi|ē4kiMq[0>U3Q;Q|=@+8-LR\rڵ&Q rn"t=I9 F&y IJƎH|dVh'!aC':8U}6冧 jvHk@z"P!HqF^PEi1A> z:9\o-Fj>}|"j`}ەtKhkSǼ꓃mJ5>x1_"ҕ^dwm^3nv"|.)ߺl4;>5EOioU=ݭ+_P5g[6]4)Nf3@ FGS齫'ʨ8-ׯ-fcv6A|FL0v.ıHޓE(wp9;-#-f6 rz zfOɡyeda CM͝4]#ۍ}$٫Zʷ+f& SƻAyOxz)x+㽬uGH=Xhj E{v-'טD} l\{c /חU.g*Jt/g&J{ʪw _L8هcqOa֬3#d]'gmfW۬oeEX氕"oS+Bï!m;Qo-1K3&n|M{;?k?֫u3wknz1Pf\ 7f@ ϫUo LE3g pa~> طvy/HD}&A>=("k8(~O|U= PP\U FO)FOYJN:|sQdJ Y)[\W3 v"kw:6*̋i5v|(^+v7W374ԇ:ȡ-{ߪaQNԋ7iJ_}ʂx+SMSK~JȖ͗(^ i B48'6pD_g%lDC?/[R~ht{␸X/?82Oy bV`|ݔ]$3%x;og9Ʋ]y^&˚{r9 @zR7o|x;;_7`ϼO:Q֩&K2 ˂zD̋#l4iC>b@.k]^_k#hN{@KˬRE&#WԌ@=*o` rZJޗv%ʴ8 y^TfaYG؞ϭ]*=jFvTmˣd־$-<[oZƀcTwg3#_E~P+6]?O'c`[=iRy<$JbOE۬쫙!}k\n$˻l 9l΅J;do]'&d|WEٵ#0M./pyٞ]>x I]prG>%^uy3łgpj)U]pa5ߺpÀv_rs(65`mHX `%#N1Z"f=/Fwc6rtcͮ2SD_;z&ώ KxTȾ_<Lc mnRݓ}1 wL$Mzl:w}P7h|4Q=KtOڦQnݷԼY ׭hɯq:6yS2[+6wrq&qt}+t zЭ)qV$4L?LksY"U߬H7gn=mؔz^ʮ_Ɠ ћZrrQ'>|}6cޟnPۊR ~6_)]3s>KE!g$^/VoJ.. tdKZQQG#5js=rrUR)GW35,][Eo7nO}y)?~O2jEWLυ)hR]Yثs¡ݖ:{hen$@սZJJ8-! YvXR)*zz"!fͯNiIHZdYs׊Dg'GA&56Ԇ3瘒i$iIkt;nEL@*Y5 ֨h! ZtN@:M:G{oJ]*Ȑ iAJ?,Y @T3|j*NRQ4~7ꌁ̻mdonlfp-H36*Kf{ _^ot foˇ[!c.Յ_I!^ӶQVY%}Kkƨ)1] 8>Id䄱TE=:~nI#86~cT3{=n.$5îpǙg߻f/Lv]5UT462]z*8bo .%/m NGMK]gß~ǻzq9=Hq4wLBҵˉ{\ 4ҠCQ=?^PI'zQ^򢛇])[3$<xuڭF_9:%_AE$wAy*}gG4纼2oq5z͇HH6DTRڽ->"Evn~a}^Af_V˗Ioni[%vיH->Auϼr8o[+:)5Wd+Z]g=If^V~Ѻ RyqoZ%nSkSQ5"k'*.ѵҲs20gAsL9Wݝ8$ZSGM@F޵V%_BKExq_YqvvT{kTŽHƗFEӮf y:5 RxqqBvBjKdN }$@kt~kV.]yUS{ڠH71g', Bm$Н%ۧ^_\|Uf 8LN &o&`GvGuhp>H` H-$fJvghm8h`jt=ÖG{r)Z|P ^nM쵟o͗8Tֈ (*YbB k h XozwPZG{r,1uJ i*WfVc(PU9j5-<<ob6+Ƈ Q!eHg3f _Nا SA5Y齩7KO977}+j]iDfPǰsdҾoa$jZ#~:K\yE c$+I51N7j1g$4m6iYW\2+-}i5lw*P6VY7D?8Y?#8E\*eݩȎU@=(Ωl)S*ߗLWIr4E+'C8}Npk{æэ\KBf}Y ߂63p`z)oʉ/c{sƷnh :_4v]jwL6?Wzo;UvBtZ:-dxzۀd"=5,#j] HDSաMaHdCs?Tf^nnZju%@\Q4AZS_$҈P2PVx%PU کnR `_*^dfݝ߇1% 4CDZ%t#î" =4MnCDfṅb£ɴUd1Q)r45`{VwhkT#}mZox6olt^[2U$ޝmPؚvQF~UƎ_c@/,=ِOEUa?e{ܕ>?))5>ʥY66ݫ?#w.lX^'1K߾9<,8.TSS6@9.)/m/ƹ8Lq1HMw36 9ď lMTnMŶTn{ſ}\+ò,$Qh`"ma ʱ@˷ zY4tݔW<8OwO6HZo0\Ok:̂'봼AUN_X9x"QGKWfsMrHeM?#r} oo\= o$CߎiEb+4$߄(tTSб惴W+ mǚo]toGiR9jG>|PU4Ba|@:Ο|2~U#'#kkޙ:?@kE#3N+"RD|,au0*VQ^xl>j||˾rz_Y}LhVKr]@-/~&-m\wwI%7.yw=5 6 2U{1У}p ǽ>5iw:-!׋v2)LY#`ֺT{'sh#ZTGp z}9#E)[kȶykcܫ!M4욎=uf*"pT" 'sqZÞl6 3DZac{Cu< ks*3Hگڬz=ռ8mi.+-;*,OFքwa@/%$fY$d/B@ޞd_K}7֓ blT<{OvkVS O;u3"&s%wvb S={:'ΐ7'rZyO/R<}}%BBP p#4,Oc8YozҸyz\^;} ^&޿ W"8$ݙaY|xyg:&:>Iו ˱BV]c㫴3֔}=4sxmccQRʗAk9U}[smᜁѫVɹK!/zׄ 1'wCgyz?NѦ/?v1_hIh.Cۋ?E.o2pӳji:1>~5-S_"6kƬ{!ee wVLbO>%Z]ޚFYXus௔րHPF$4v21:\1ED8\ۯ:Z[{=A+z$qvBQd/g'U .E"Xv 򽫸TҊVJE 9^Dw232!]Rgg|_HTě 64;o6Ѡ{lr=W 5CK-/5 < qs6Ó,?VYwZW]ynYX͆=.L>{_[StN+znA5<{?{`6B2/ޭRi?hkSH̗X3g|lj`Z;{1jZШz'I-ŁιӠRBcAsۺ,c}H%CZ[]dcҚp..u8m[746uڴ6Ymn eU4㮪>sVsrԸG>nb}&%֏GrAUOggSC4&C1&3+~5 G} ?yգB}k8" ܫX@$d֫9}4fL%fvT6wSWrc IډzjMɦ[Jfn ^.75ϐTA̜j ^P){G)4uј Z$KK):b.ݩq#?MO93kwP;_:I·q2ՈZcZtkYH|8s4RHtwS9Uϛ̨&}SJMu*O&o 8٧&%5Jr||b6 J:fLQc" *1sMY_ ݙ}[| ?gSM&鄅xZ 8iМ.m0gXs&c(j=9 "8I}9;Wz]1v\: gWOJTxUg!` nʠm6m5 |Z?MwUx ,y'vݰ!Q\L&B'FXx_? U͢9az0F}t/U3Rt c@b?^g;k9sYWKJT1* >_3'1&|tㆠϻ>m(uFU`?^E3P%J@g*G)5zv=oߺV[◳mlУy8C1Kgbo/CӬkO Hs\E4Keir͊ozcRgDvlc,wŷňKmYݴ5әm/&֫ o??1֛@_ d[ l "n~4QIO{oڔ\(m:~{Vtg#pEQԉ\tXRIUI#v*Q(GyܮQEVC]dYr-ֺK2t3}N-2iu\kO `(X$. ~ݻ%5̢ٝש;߯h ]S\+ ѳy#57O@3cҕ%dYy&(dJյ_Z%ld)h!Tjpfj}+)P/bVN _%J\=Q}h5[!kD8iFUR>ypr]&jkVu_\A>g?wa)D)zY#%N[W?n'ij-Hbq >_}ιq?hU震ZM>| dpNI +.2%:o2ȷ^;glJ>S[~{~D^/w󼩻Y'|BMu'Y͇|qIOWvEHoP7ltQU{iS?\{u |-xms_:>/^+sbzI<״Yz8q![;Wf:!>&vHΆ͏iqp_<K&HGg^bf0:4xdQg.L3,6i]%-N8}\ܢqv=m;IziY8v#F}0l nS2~ڭ 󼮡S8)Cgg8[lS{v(]; gƧsORFu56=^ 'Wfs> D3_XLսdaqjp.$T(HWV;%WYxthU}ȯ'F6kK;9Pxؓv@ws4)sy3=JC/ko')/d6Л%@uv3J;Me6fS$ v^wr._՞HCY?ijqfx.X56@Cj.֪ɝ {2Xof=2`&J_rty zO8N'!++B٪*Ns=BpXrK{gyܑS;Jj"f=aP,/NhFܫ.E~VhJZkPoj2TraITuZ7z)S&IdvudﯹIRST~Ϣq#r z'tJ qh5*$tü.r)ufjGgV8YDu։9%q:9 MԮT\4Ы5B?E1g@VVM 5']gZqf*U^u[|rƇx$MCubF@m̧dB}BkIwfE(&qxHG3+M"BPf#CDpr#dRDw\wDEe'r$;]H:l1T'([Na=pS.&KFm 89'- B`5f Y\{5ti_ciWc.8jWdJâ\)BU/*n^IAerLu7}6Z Oq@]$y/fbĿ7jH2P>EwE.;#^9vJ^mgzX!gj2;-Ļޑ-Fnztnoe)W6Qdi ^d ҷك(= xg,(]Sn=~:vhҤϖ0Q<M<.^=tJLO'X򶼹A೼oq a\9br'ITڟaYwgv#.,;9E#&ǃ?X1rk:`iWƼ S6`9/59+)͘"ˤw0'Fۉ)/EǭX#8s$۠}4dSzpW[^>4]j"#^tZ9%ύ.o gϺnp`o;S{ãXZ?&}GփG3}A )}y>5c-S/[鎚W P"}'n;>EY-r,Z(/&Rhrl)pfj9."cC5kӑ qHp0-̇dhB\(z'x%I"̢Y\Bd>tOW?,?g֩5NkOpPAizɽE()Q㠃<\"w[OWZT=Ck *TJ^o{򳻓R@wennfٻLqT™U"{WIFX&qVI) TuTo# b)D;A# Ij7$ %Nuѩ,ȯHQ?|ӕ4B6l:_;97z|7(2L&[qw)ex߫<%c{u'Cv۰7Q nk+o"T2|Kq⭷i` Zڂ_G^zUyȎtsCuGêo?d3[,r^ ([' ^ߪn;;@ۢf8qo4ؾ^$2׾Ufk`mD?ƫ׮6f/8s!fDڸץ l2<1'i#FND"qfu} ɐ9Mc1"7b8u&ܿ~0M.+\_ǨLWס)uN|{z!{Y)>_O.>k@(&Yk띭?=OggSC4&Dw6#'5~%u 26R4FEGXyKB?XڈJNu"mU->I%Vo|Vvh'/)ge(r .G VZ#i"N@>HT{:N?ܛ9Sd%>2)ԉ)h혊yx.HCeELh&*)L4rdAQIhKqŵ/(#ttZ; I/zDHU%T*TZLQ]/)Og*D*LH1}P3Is@y'Yע3yZIr0ي@W&XI#Z?V;+|أ.3,? ;=d'Ξ!]cft{;9^1amړSKʞ*0ox㋏ɿdn% #.0cכ㭵%{-OM)7NGC^W-.|De;a_x7%%xμ.7؇zT}Lrg9fSx?_:H}5ROI09q xf^=SK#z0UƏYRY2|مbJ)K 3|n. KwGW^%@hcH$d>ku w7"ޗS_q-4$LHO:l_qNJWnnRǴb|xwy6o䕀0ŽHTP1hE89W{L'uIYo{EhL%<*y:^x7f?u$@?5~gNlP fVۃ8l[;vD`}9Cc._y\ T<LU45t3'N t^2+S|ѕk_ȩJ3!ktxGfr;Hi) A 5D2NK KCoxM?d/"KC#ļצ_Xu&=Z3kא*R;U3};Ve 鞥2u.?Z.N 3k}J^<IwH0wSN9E24ЙX2bEH*T!bN $:q'2#8J+fD\,h|>tԉTf8gNJBChB:Z1$C+~|YjUJ$'DTUhFR_|r|N<4 H)Z= [sNZs?4 3.-1#s"BvG%`^>ZAĥ0^rOh*,r]vZAq5p 慎U0aFؘk4?d0اn" w+XgMu*o6MLMG[W{!.n@ry`ޤC=֣7{$Hb2p+UA٨T Xӝ+ ڮGxK47]XnkOZ/Jm'q;ßwKK n7=`jEZpJO׮GukN %ft4M*W)Jxۤ6Z%)5v]5gGk7fnp3uxm2:A'O8r52Z6#V洍hGOظW}6HYΥ̶?oNάt7ơ}/wb:3s'jܺݷg=oN t}0qf$M]-~mfIꢦ nXMn~OKF;{;eLB}=_Y#^yZոHVZS5ꇈkmY wXZ({QII:ޥUOtTiYHpC8k]) I3. BpV5CcQY?* Nml2 ^Y tgxAFt_WˤFTnHF埊jqZl jdfS*咝ROYVsO؏/ 5M]At5ZjgQ={HNҕ|KS^qO)/2_55QWw =8JV")5^7%WQ;kHRCBEᑠfȐ9P2:LN"sQkNZ5tVLptWho\AqWzEL8d#_E.ڵJCSӉ+Iu$ H={;ǫKw*C7ŭv=DRm P)9aKkզ[eUru,p9TEU;w%7S?`b^.nn~Fa1g=C fk W5X c:ccˏTG17v^ `oʹM `)U-$ Uo%B $!UDϷN&.D%/YZ5jHT^:W .vi;?"B"Yg$ti0)R>L=zqR=!k@;DU tDZ$F?\-Vhf>zukRS&-b=+ԨTdBtCW}~|~~>]S(du*RSDO\Ȼ"cT9ON8UbH#ݱ1Bg6݀N"yQ.kvT-*Qoz̾1ԊE '/Sw3X&hE%Mܭ㋅Ӎ-m <~WsSL}3X,|ܕţ\]C޲594YE~lTXSNkr;sx@No\?w*u]K z,YD;m/bN1௅\ng hq;y9.T6=e9CG=ͽAʶ|o& O=XI莪jV ~sO|)֓]kz.~ؗU^ʿiMG7p!Eh!*(Ug:C#i(IgLtoZբ*ӥWy^O-ojs`զ!NiMzg9ʇ-壴N3ZRVYK|ZTf fInvwퟺK[,br@#ŗh9uܰOss=ȶ;/_WU]غ458k۫2mwYK.w1u\QRΫq] /|ku\?eGeN[~[[ ݘu ]/SX^OggSC4&EIn /5 ~C)vLzӮ @:8+U+n ?H Մ| j3Z= /Hfg/Y *ATk :kTLf7r7kQ;v!|kxN"F7dvOUV\uA<>SeʚL7yJ)drW#޺w ɞ2XditfF ShwjPZ M;Ny׈%:yZZ̹T/ƺx!R!sFɷ. u!IK)_kZcF"꤆~~]w5Z.&jנkhZ%j% 1 Y S)5T//+g9n(ߝ'ڵnvk29sNǩJm\{k| 7w.%"BǒQCT8 "D Q C:wtB0hg=9ۑ;dc{xѼ <ĠR>"%N25cTFRhIt[="S UG"FϿk#R9${pdE PBߛ< qK-0|P9i_k"&|(Suy|6bIF]"YeGpYj;327@fvzud<&р +W ~ "R8p8R؈%Ǚ6ߙ"b/4ˣnUzW1;a;x;DIk>G{ƽ^cmӼk?R )_&=̀+ljTUp? }b W!g=l1U),'}1-l͡A"k #r[z1W.":cBKw!8RRlh=5 -y=RRnVX#ʱiBKo$qWwwHUUH0 ¿T[w/~V]Slv7f&}kaIqǂxSAһ޶UًN^v;gA'{7s77ҍ ^d5_ Fra2poU 8SG޿ZnF6 ĺñ&sW_ed|߇41~uymR_O|+u616^SW.oa5k#xuCgi[ÌfG]5Q:fGLHhv3Q[s^Y/PFUkNܵN֛q'ߌuq}sꌆێc^m^͠EC 536KޚI垸,zkJ TAs?t5/݀(O-ы !a{$OS[pj=c|>.Ek1SZ wY>!t:VMLүTT'Z5<$W;wӔ~"3R=\#|!bXYvUS?&zYk.*U$r\Y55ά Id!,YA衩1I2k 1{UTty32Du4x=Ez\SĽ6|ˤgԽɌAI4M%g9ىߑo|'R(Tl0tJ2: KAAh ^'nln"X/~%:Ni P8l_ߴtGs'rWy2 mI<޶KEin8gȇx';oqxWrlG9LƟEp={](jziO K{2w⫹ޱa6xe'n$$'&Q*bp }՞FKOI e\Y#+4[mK6z=e(/0Bdy؎j.6QYm7yvq!=Hײuv)]˫߄شAկt>|`\r_ c5< C5ɠcWz׫4.DgOxQV `@, 1_ӘՑc?ouF?14锣sznd޳#_fmZ ӃYdü//sjw֢:N]>S hۅA\Q%ތ26xE'$\.h}7I8>nxxXiGIy%rZӸs_fcSnj:{)}x;uSič-%.RrlS`8?ŮlYƺxEpIPsսNU{G(VҴO3Th_+Utϓsvפ}Ɒe}%J)35LzWdy/}{lB-¥kbk75 sUXf>R7W=Nx|XP(+偨!RhJ6ë{!Jj 8PIx\%pS !DsL5txW& 0#3#qqG]uM|f`#hfQ8p)DF+d \xJ%E}AYd*3XkZ%E\vKQQՐD'ȳq舡["B%4:SjJd $\BBoԨ@*y5';"{@cz}(̭Nj䦀VJ]eZ*5Bpo+":Zx̗J tA])8J' ON:HWZ-jW )c!q$ <*NMjAd80E8SMT*S Ep %樓gJLqmzrdؒjv8F  I.zs/--'O$at $gI?u:G721AC-,;1fS۫K9?8<FnronJlU%>/MT -C ;K>ENLUrS@ՉޥY>kh7\Нue[7ttw6>wNic~4+S^&.Lt>fr-n;I|U}RY2| $MN^}߯c 3'!xҮyY>`hT=8#dh:bQuxDzrwd\ n{M)  VHOvw1ˆPl~>]3| ǡ Y_Ccql'4 hr6%4b4m?=Sm!nPLjyQEw ?EC/s2]_.nGLvc=9e+-w 9^v]&8nY1__`5GzjyZ=# 2ZZ=IyßzLqbjn(^_ߟyFr@|onwNdA 1r&_BEQՎ6,kbۼөMI5Sœm?Julh7OR䢑C-Y{rg웡\MOn.w^0D< `ߟrQFc>|-~533 /P#S3ݦ}UEݠ9Te< x %?ty*\lp\P#~g=T]!+Kʓס(jW[F\/<6['GԯMɸ#PN☙ob*SMDA$YiUiYՕB\Ζx3ݏ^Ǵ#bSm+yɛQ^3HGߵ&qaaHwfwJ.u47gM]̩ʣ.i+wqlS |l GfCf{||JK^y9Ἑɱ&|Y۵fO蕽nUɽ;W5Cgz1[ [Ɖt}z kݥfZ+?z:!]:}A?}L7#^Zk@Og\ m[Z{JZ#,닷࿔z3O7?Vo^Ĺy V[N.J{_-/B'WJQԬ막̜i 9=¤<]h/S\! XŅEd.>.1%qz zZ068|O)[_Uc8ǢYP[hJ] l6n9&:ퟣ;W?g*/ BTk8z LN?/.sx`Zp1eulQO{ /52I-[9 >VmSUhEO5CkHi'>ee: y9y}Uq&Wا]?jHvD{VR>jCЧ=ϦE זiY# TM{/Bpd:YDx{`W^WGOYdv퉏|tt8tc%W<.A] 2ZIkM!MM2"٫svL4N5ztRjM!+E5%*5! ]U@v^ɘOa:Nm &b4IZXhZd's:yͱr-p|% i>!}ЙZmqhu.-}1b{ƕ;έ6epAD3yA3BDpR@GWU'MVp&1=JJONF>߹ZEv^gD 1,q2O J>^)Q-~q.gt}F{YSH[lV߹ܭJ,§ƞo;&wE,>ΐx-czPgZ}'s7Ktq.?b= }X쨧5Ͼ%zW+y9wȟO!͉hj6t̄֏m.U9_#m,JưQ;/ ;kC9QߑO>,Hki=Y7$P!KwAf-b3霆Ʃʨ5]O}ҬQs4{S`pOI00IMn_7哽znVXה_Q43}eLo*a2ris{';qSH.76 6wEk`^hס?`#byҸb >G܅^uզ妟:>/>ͻ:[;sħ CUpb{ ^iP+3=?ͧ|O\ilCrI@ WTr)4"Pztk _ rH*w Q40zSڵEz6嘝#QNP3JF}dօZŶI_yEqTBڗ,v`mlz;L9r[ࣛ,Gͭ&F?ty =QO32Xlp5z!钱HwLdW_~ (8C¼NNyΒŐs;쟫}7v.@E٬ _5I:Pe*2GzM6=!jPκ4sw]%Zяv!\zzf9S4(jt>^ %zFV:!8ZHG`lf`Kv~UȲV'{,JHF~0 {Q90Wglه֬JԌ j;\/uii]jUJAצ ЇVBH`јFUΨFh,!ѹ@5Er'QV5(4LvWuvj֧^!hVjᜤVaAѧhTh`l6A#[qzEJ"YNB^(` Wj4y^t6$2-T3ǘp+QTS YCWyN?Xf%;|Lf&jqN]~NC;]][i|9GzhPUkel|P/}]w;OTgl+qr*UƎlzу=)6&TZe;QGa-~,>xfV*w\}*⛨f9tεg:Zj -r6oFpECnu{&hϛZDzQ ]O'H6doGjQ輪^j7淣.ѷ^{ڟ>v~XthLu|Ó ڝM&ЊIwjr f*;fxqtH)0l+-!n Ojl͂bܾUӤebB&KWDh0)sKq h{=Q}nG.;Qwwtr>֖"01Ntt `6d8c/ϤvmHK 1%?b0vW%vMaW,@)%6@&'%1"\vVq\n)( [z=dNW"gJ/'^5yC\"ukso7*dPּ?t.6R4Vv6[D*L .rNԞIZ%sU""EHU$}5QK.u^΂^ש#$棵CkD.hOPkeFK|Ӊ *zA@Y3:*g%$%'V~\osW hun JU~&SJ tNIYCjt汎Ǘdnܐp|+Z@JO8]I`][%bmE8PIU ]GEkWQ; 2gZѹ-1nrdJ6s2B"@D^ᆺFEr,6qp)0ĕuge >ꩽk[RMH|A0ɺ@w]-{uOC._6>J:LN'rt7ʹSS G3{ֻ|o=sϡwayNƊ6'^oPPDp=K{~vUBf/[L[K~>w7ԍ>r Ů!= Ǐ4 ~vλ1WֻuBGþS)ra9?J]DUZZ <"eQzl]Xl -fL*Ũ+?״sLLmOS={$$!ݩ_l67ƎYU/gv_!4Sjw&˪7I Xt{ؤ^ 6Tcln}_2Ms RL بqs_͵Uba}zNTYfݩ [^=u6+ H5Kq ºu7WWQ Uw>j!H(Rg^~y{?vpPQ/Zԩ8PtKsHwIfNG|S4caMjuR+KV:ճ{#cwHH]7B1]ǑN2M,Q{ hyD&Esu@JTO2vUk#իTp*z+ ,!HƉ"9iђ+wxگ⼠ڎs$uH3KGQJ@t-R!;ШbwbeMdOU$yp&0&\Qs 2 ZkTP!‰9i)TjH՚!zr 'vl늈0wdSҤ9q>ɺGɭgr_҇=2?!kC=-G,bcd3>èǢ5yJb3NXB070ˉDxU7բcޛZgaT`> 7yxק%;Uewq>Qj†$G;ux-r37g6rZo?j?~Mp$5=wNvN]Y!]=6{\G[kp^g|^ۥ1]>dƮ-@R+Tk":{,(of Mּa5t՗Y4 @?^ê±!W&[,']vsU)XA}4T !ߧE8WIي;tcc3D׍g2/?9[!Y+G:rm..{Hx@iyD:iޒiSY*d}8ݧo\_UăT%zKM;r'״WQZmE7o~+sܬ^j8"-nsWBY՟䘎InikE7Xk2zz=&<Odi}rW-Xm%ȹNcmq1L5 ++i |n&f~XGxA*ms~Y`.NJN';_-ZXULsEQz9{A2.)*YcSqu`( Yfmf>˂-qnHջuC]VY(aښ9_?&=o2GSL? 0Ɯvv+-aϛ]_=ۛ~IN/ѓt#T@ Q6hȮZw3V2gC=bMRu'd&P4"S= HJ"S)x^/Zү?%NґyTg»Xٗ ٠hi{38^iu^W擫{QP=ͮݕ.\CxT sVt1s_e v}è!"G sn9:Nqv fquv ۧhA7:$=Aq[M`}~R*N)1~ ݸo9*<_cTMn"qGjKߛ&aKJksEQ 9Om Y81]y6nHMזc[O^J]X!h]#7 XeH)DOGU2*S4X&͖fHDW}}<:[-k*ϸa<{}ql ?lcSP!Pݴݗt*]7cx m.E_eB؋ //;ͯKӁU9=.dpor-n:x=<ERe+@$ L8CIvVrit{y VSuS)I?ſݳ_k=DUy.c&ڭ|&wRVNW O$6dx^lQk0ދdo7c%1װT[NuZ,j{1s1rgbB>1^Ϲ5ta>V[/˝nW^( M|_}?5sC{XEj2{jG:Ԉm*U2Nw~T7MoN%388NjwQz٥siZȨYI8%^UffתWhM ɤH8U*MLS+3y TE+\eد^ЬNVUϥ7oMmͽVMF%&v@q.C%DY@Yuhm2R))W;!^#J`6+RpA݅Yz*Sn%ӡ,&Ӧ.oNQcu$Eo[6hjN^/[J\E og 2tgT=#J_2kW^7ހ_4Tg(o&:] %U5$k }E/9t MV.Fo]>o-eBXq]'+ڨN52ew1ue{DE%Ve[/&QxG-XgzIaqH?KSƝ_G#:HBG{眯(O>μSOZwMRũjZWhJ͔} ݟScE)2 Nm>T~QD^nuNw;0 Q4GT]R K䱊trĐ55'ՙU%jAZU)UUin(ǔ\YT)IfUI:VqZH=YAcelA UΩp$ sE_֡NBԺڱUɞPi"qJFX~řDUDfwJH;Y!ȉԌpV)b;(_Ybc,~)4WvjA]䣎MɑO* w : 6=T (*I`̒̈uLVlBl]jPesvvKN](-[ʹi_'|ĩxz5)8+;,>[ȟuJkD 7Z}iVlu1Ke]tɴj b V髖Ε[T$~mbH0HɫwGvb]m& ;u1UolcnwlGƼ+>HeԁᥔhyF[*lmkfs(\)W/gfZ(BZF3"$e _|*Ko.թ槥gj/} lpɤ*OYٵ*$hAx?ǀ\qSsnT %^vO/]^z2oxbN+3n~dFb}Y +#_#:UK)'o;-cXQ+cu r_H%?Ed25d[mUue7<_lwoQQG61q8m,ytu%6Ix_yzZX}cC}lQ^RhOjV& ~5#sA\2&鞚̙~#zVyс {^OWŖ5<8+ʎ:`CGU_3'::H##3L:upzw' wb9TKNԮCEU}iו.IQS4͓f=CkN)z_9U6MEejWY ԦHNٴkH*S;]h_sU"Nk[oCrgu'w]˶|틤;I j8)TCًVo7  U}=kY`nܦ!ePF(aj#0Ig@Hؽ雠_~ݿ1y/b>x=@?b1K M|Oح7Pp&`L4_ݍ1>WsQjb6k8;@gv*V#d.9wp~f4 j/a]N4/}ϰgu{ݥ_quʙyjBTAqδ\IL|T].O-8wTNHY̬ӧ1Plu8e1CwW]v\Nuq6;_Gez~ (My=ft̓KJwJ"R䗜:i=osrŷk{Ufkt?ȞjaWl ZOaZxޖ1 NDQͩ.VP$X]SVe1nQ>soCtݗ/dc 0vY} f1e\E dOggS.C4&H$x53A<"f>ئLfW qH!8e/N`BVdrfDm~7@DFut\g%Kc̒zD[_hi\:yL"AVOZkv:2U?k`.愨*}L'kRk 7h߿Ǒ ͣ|| U=W\T*<dK謟[\.}ti }%Ь ?5*t$9WmgDht@K_֔U.E,MVj.pjfNRYp ^r19wKȩNv74"]ɸj8f`Uf^R[mjV)b ,#ܿ>2@4%eh;*N:] &ЧҵHHL8Yz4fMQ¨iDCB2SHaό)5A8: _[n<8>ᇥN`4]3瞽[3g] "{s!(V85#<'mK&drFh&7O}|Rzr_f[Qbpz\z6|=%Ue=PG Ujk+4T|1riMVT}vb)N nfSiIߛS]WD.I^N%[!,W('=c{Wy)j*KOvQ- 6+n\#so'#R+ҼNzݮ,/'y:={_\],X]O'u/ԣ@^qs\^5ә3 ѩ43#8=Lpd:[p5~k|tHM)_TUxޠG՟PvN8쁬{h_hV;4k9~]`ҹ4 Jvͼi$t{eFK$d?^8).-3Uҙ 0rgIJpH2WIfOڪ=hTZWD$P~r/iv=âݻ4ڏQ3]d {g)R)R2bADQi}{Dԇ(3TgJ ݏ:e,Gv7GmW:(HPaoq`C 7W$#%+]Yv?*Cx0wAYҵ>$3 ԙLi@X@`&hf !Idg%2d +j۸D`@J=Ԑ-CICGfDmvyٷIH,2l Cq12.ItM8`ٹ*Mc32Ao^4X~hOd)J%4/6M=,b3SSA֋Cq?rOY øcYݺs5?s:ҏ[>-uH֮w<]ʸ}Cdb=oZ†;2s&_frbcy%pk{c,sNW{+t̹[$Vn+ dԸA*8Ύ<ު.MQ[:e:3汳,XP-J0όԓ^yu>:VY)+θT56=Xdyt%zÿ -MWe9m"~,jg~_|4w3\ל3Ee,4} 4{ qfj3Ct"?p%Dtu(:gl(qxa(h٣#!RsyS;ЃVoνS}T4 9IrT .vDE4$+1Hx8BrB?ףNWh\'Hܣ<#\" G5^iS_PS9IhvAddRujukh>9]Z=!cd)ݿ-9>>CŹd~Y'mbNf sd"g"Pc{]cb:Uq仗 #/Ti ihũDu:2Ռ"y&DФļ S~B3H9KNȉP]jt%mL}p2&Rv̺NBpu0\P4q#z@}|͋{1fMxLϐ1}"7߲iO;_y=oze_j=ͱQ-lЦ0|/n[~C=Ɏ?~'mu#sdg3uXMe5 qb],WgPx+3iۇGGN96)3$Jwmە㜦\~ړ݅1++lU+ӪஃᜩSim\^nG: H8Lfs`%? g( ַe>z<4v~הS`8(ך@#bҢNZ[.CZC _ W ]LᄤB r_S+</54P0_.Dm=yPV?`9rJ MZ H*NBk3Ӈ+\vk&Y&ާso"?0ɔu;Q::Qp8;:ʬ&peڥj*m)ˑ/oȑ˞ A)(k;Y[3H95ժwKY^T-&L3Z3U3"Z.5*@ GHfRg7qIL,~Yݥz#}YV9/gwQkW}4h'*J&M)L8ftUr;t)NDSƉ W!QgwB! 'h_·_̇V6^.C"$&5k;Ԩq.sz''e̪gߟvi`Wso(;mc􇳗lf$bs-°KoQlk!Tcn-hZ`mbc rQݛslz]WߓgSU?#Q3VrȋMXB jFXNߟDtDB~3yW&qw:(?zx{DS M"͙h*bt/{})dF} ='Cձir]Oq* s]?%e+f^gϽ"QCrtx:( ꮽ?٫Vjvwlbn}1Щ 4ƢP lC6rXr*dwj<^ؕfiI.d6iey8[۰kpح$憙;|] mKh$d+4Uw}WK?M9.\9(hѿI=Nz,'ŬY_g^p'܇C!7c.p7&cm@+ ZEmV%̑LgS"wےliN6J빙?5NZ E)JbuȽ^N:|&JPqփ`َpܮ~w=rlɜw|t}R%C\clD%_"VdM}Z qԧ߬XwߣGw7ukLqcӇVYlU=c~:c|F}Xv*;\4_ 3ކG5u|kH>wd0\/i&@I )/OggS:C4&I$ܽF' m>$Կt~\$y&}.egFY #\iZBM䦳S|,"UgËHf`;-Wb'{+,fvzND1'mpsRtn7.Hz"~^}DcV0Ff\S\e4 V=ܽ/UJ+0a ܝZ_;޽֣Q5QS2TC^^M}fR1OK%ce?,9'n;z8mq NH0̻`;B;ˮ <ڭ̍4fFȵ̮yAT8e{OGtq8r׷I/:ee̽EB^i^9cqS{w.lzo-2G}]JtfzG~fo1t;8?>dJV:G %+hzW/o&ɞȒSK>Vtuܗ`@4iK딚晬]׵: vW&:U5̽,`^u&2b=i[}ţZZk9K^]~J}Tv \yl{ILPro1|\`BFr+Y3-#ve gVq:~t_0* A&؛F@hg%nmXۤ2_3} .T\]lM0qG.7ws6vguDM,:aY|RXg~ I ⟳<~>1{76>DþoFc߷'nt|Z}~,{coH%)<(Hz{RiEd+G~㠗Ợ~u> 1A5a RӟڳM4plf뽧v{%y+$Ko;$r;;$Ld~4L{Z7[>ix[fۤ< p{2YsXKArd_;?Wa@1MFs|;o* O<2ttx#&1B-Q2 eܨ8G6-1sVWe= Emh g2 4?Z D#뾽5dV1g~jnm[]ok7͑1O?]_Um#͍g~v-jzךO=9F\f;בL{ƌ#F?~O_~-Ϟj&F.<ZVA4 Bhx9~% ($5B(d(BdcGǁH74= RhU\&]s?'{jtڵ^!xw}WKI`$*zP2HgHrB$} $rD쌌|zt R7Ǩn̙25/xF6vzl17Lc[?>ר?wҬgrua À֏G><=LDDcSi4{]{#-qUmЧ>&:c^+wbsQrLLQc:Ci$O~-vӶYRކ\y.dq;W(0ʛ험 ds0 tly5bg*iu_6;{rt{mL|Οjs' 安k~.|d6mAVmc崙ZOpsHnK _ܿ\iuIM[n2Usn ~7AN~nOov.K 3H[٤_QG!g2`V:Q$,DHgm=H|]xBRRCکΓtF54_U[]944HNƶyb=Y{|/$$!dFHrASNC%:kCkUˊq8]N@}q}͸ݚcjލ ПG\4f68*/-bP-qڛl϶R~?kM>vO-|O~Oz I<>7?e]6Gwvw<tw3t#kv yL'$̻ r~=B@+耿4O/VMH+*\̽c\䜼vpNNF;֋jzǏ#-^y]NVSK*~ M?N~ ./.|WqvoF^j9:SRV–Ҽ<`*ė15YJ@G..|ݴW76HOggSJC4&J9B 7#f?'*imm\( سF@i5$ۚ"PlAŋO4߂]iz8tNQCT" vROƢID ID2I+M*z`Vǣd~U}Qw)T@1ז5++Rwd[{)BW4nz=J/02)zlk^w-7ouV>:}P%n6)[罒;Bv8CE{&qBg"Di&$*=e07B8ℇJm9$ɡКT ]q(YkO3RYiЈiS֊;YE8Idujք_+h v+sßKOCJ(SMʈh⯼DC@sSZ)uaaa_ƧO˗(Y emkg M{ۣ $ xkpT W5aNjKc:ot{QbIaRK]ͦӼ':zOX-犴 V?#e>KX76I獴x]?wDܝ+%UBJ\UaV2.6-1%~>g`ҿỹ}{oq!>04q64+P $Vlmō05_vxwƟajv] f|p;gwB:6s<>.bGy/eLpSZb˥,.T͓/R=c\qw;_~w =-}u |XJS1Fm,.slcr?s[Ȼ=i %x[;.=) yvPLtDm$5tW}wG6~c?ďYn:{5HJh2ekb/l!A㜉v}Rޓ,WuOIt>霃Xl< 2s>.7ɿ'@N_̣.GΏ}D7fŏ3:?D*OZ:倌lu-a;gz鹒> ;Aq{R Ƨ K6 3A xuqc$~n65Ly~m:s:E `~̯u$KHhwYvE6$ CC 6{}>YI$[y!AڡZr檱C1_HC$S\Ujmc싗GϮCux%F]Q,Z,g%NQ(PQ#ZS;ʪZԟ8aMJ07Π*/J֎`"(9rvhDGb(Dޚg]KdT鎩:DdmD;HQdUU3K/E%}):jg"OW10~8ӪAp:ٝEɣ7]E=2d3z4IJéG-%erGx)(aڱdjd9 'ɖ% kP˨]֎\G{~0%Pdoٶ7wYPns/#-olܧDJv7qeK)`)ROZW-1o SFdn^,]nK[wG2m@vZpGFKaCvǤc4W Sr}dzI RJ! \;v % s%=C=S |G!i=V-qK/ZBn;3?M2~}7T:Q)i==չڝ]q9(53VV>Ic5 M;9 }A㊚J~?&pq!\vG*Z362h}S":[ǻ6wmueYIl;x3F_oG3^wXp)/ax˵E%9F1y> lGüqX[}v.&T-Wϵ{RIz{/vQX":khmU}  e=5`h ocʓWڛ!5qQL=2?} \Cw3) CƲ l*uO7/K*SR)I&_ 6%0>@dk&U@F}}H*nB|{gV{8eӂxm\5*l!_.[N4* ('qjGI|ǼsB?; :rgEtՙ ]We" urV_+-^18\5u'^O٪sF-2Tj.2Rzif|VbӑF5& sEZ$NG:h {A*2k3ƗFr6+#5&S'/\6s_/ΦP HwHt]iנ8ʧjmS AA,grLާh.ݵrtHOt% ؙ+{k`L17ԓ(V֚H9S.B;B"Q8Z(,H͒V9vP{GثU;TiishhDoλeff->1D@ Y`! ߖ5}S4h[crLS^]_KL]'rZ2&i< tg>R>ǼV|Ǜ?.ngN%z7IqFhPb2a p% ^!ų ܍k Έh'CZx^*~sTy:G="kc_{ՠ-pU_4xݢ# xƖR~3.%V R& /\~p<0˿WPpהcS}rOښ:Oq)sf& r .S1M"tYw"؈k<̯K|TאwXڜ:}9_` y84fRo$P~X[NnȆ1~:W6<7Y&0I?`oGVR]dɠ~ >7doU%lU LV1G{6ˏ{t՗qa_7E5[".:]̘{6.;IT}t- [~ څկߐ+%g?ȓy<$6Ǝ[{h18K巠|{OLo@{G:cB1>7{=mmvmj  a+a Q@2$x+s;?~}d&і~M}5{ɬ_ZlrKF%$m u/>nBN긕=\s"ZIMf媔F^TXЇ'aN!3tB=3$|Zz9Gn3?~Hm ?*G;-59+F5;%CH=@ b9*q[ɳɴ//-9Rzͨ$SK(ڡ="\]E|O ь9س.DW~rKF-N%U{֕WJ!mԚµh2,?E<{BMS"Q*5D3)sթ":%)S@sp=WIhUdAZT#TZejQ}Im;{DW!yhW)eV.;qD8 :G1ߔY"{W@3t5`(*ʬK*t:6f,g^:)PqTw*`*.{&s=hiB<3Q%8_o-}JgјsXn֥+=i&5@-|cc,h?C'vvZ~[7.t{ڻ'UUܑ iܛa i^R.Yɐ`RGOm]}9h2ӃX_JpUBKX/duT8[Q]Xg^ncA hʹjmI~[+r}\W`O[+2:8ifն[nKOggSZC4&KB6ۂ50~ c[(}MƘO>=H`,z'ZP MS?^hk8}*gfRFhvjf"u*t#Cw4*5ȣ5tҐImz6Ż@W҄FChvXWDd/HsܩRSs45Tutvԧ(W"ze2;T>WLy=RjՋy:H٩RpԲ?ݬNF!Ujq)bF29e֔p36,,zz8JkKRQ*e-B>Аk K 'R[ N41CLT'D=Ax# =?7^,䨴B!R׉]Eɤq̘*Z1/<RkS3 VdpTQh9Ѩ88Lfםd!o xD  ~GPXdH ݠU_ǹOnxʒ8$cQлG/➜5+\=7bg#TG.V cx9~=.@z!s>i4XŦ$ږ".6EWVmYi{\.&ҭY8H4 4vRs Ne̋3j8Džk|bJE,._K7m8yQwQ71x$v nbvB/ AI(<y'#0qF*VؗcV<ꉥrUeh?:E156e}<ƥ>_>6,h"|D-}s3)!ɊH:_j6\oN?/V AJ. XvcQ7Pn]<w* LGnS'ž|2EYOsoZa>U nMO.[fdI qvpҵ5KS3Y>mR\=\Iª4]SWjM1 o}` RǶ9浸.ދuB\IL=ޅMIB待rC"㮽Ƥsf!lnoM|o?Y{PmunO )e1^le_ ˊ:{|L{$ks;^S?.V(Zuv&.8L4c-[}<ǧ\`Dk.9(q9R/~6[6F*ⰕΌEřM7ay z%|jS0׿>c̙un [hA5N:Sz]|x]CE(Aݩ'HVwL0uEϔ=z%oxZyY[TMdZdyh*=EvFuB"燮$0%; N'U5jm7n!ըUwDpNjD]JUF/GW&)< ̺֔ՑxrozdN=YԮ"W!"JCx8͕YtgY+z2S?FJ@GTj5%k,5d/3c,*dB)LQnMDzX8hӃ$ YwIYOS#D+U3jZ3KM!vX}O6q`)\ՆCԭ_Iq=6‰ro_KXoz*{"3ka~"Bq=8$n݀K5x흣mG_I1mwd [,H'z]>s:fg+fqx3vŠS '8G7>VKs  l >ĈL)R9c8<4wϷyq)uK:\1J%+!NEU ۹OoU#s6>m]xz}S&,r`GASEzf0w6g?8_"'& +evQ7ƙ4e)%V!:]UҬ+=k_aIOڒR.CD O5MN2`^.z()2>uLt @_p6;YO=n*Mv#pJ#Ab'o4I"Ⱦk 5E,-=ֈ~SԩZAՉGLjvV z_"j͌)EJ5{G^6tQHOL9Ak(5Ȏ#{Wa\/*B::@2BuRVArHg8DLk:P"P A G21W ";d&@A :g)}c=/"-2CDQn{N_'WɟpfVе0CK&pT͸nX^*X)|o*=6X/7>s0 CX;f-g{8jTτ!8IcqG;!jdϩ1o`.j *`4 iu]+Yr?;Gݲ~H,c x*z1:^T$_f=Uef* R>ȚLJaڢ9t\n<:AzMk <\y?~On.S3}w8 CMol+i)qjT'Y<|uq.%IyĆGҡTwlILfGeᦗNH3)@8ܜnyEB/pw8ݜG|h#Nuc&䞢Fժ7ߛ+oB_F=kh~@DQr}[VԪ:]Kg'ɳ~9vͩsîmm꛶_JTir9T;~QA㫉.AaQPb81}؋rye{T,:DF^]/rDzWs#*s%j:2MKG~sct>V߯~,!Q TJP$&5[92R.ɠ:5\$ j>˪)ٱ֬ǁ;:W(&*ZǕЬ-rhC$#\Nq˜]uHI%L Ν)S*'FDHǔH3)Z,1sC׼>FgҜ3T΁ӻfGJ"ȜV@;EO1Dλ#g7K҇jQ*<>p|TɪSt"DȽ;'_Q=BCpT1WsxhtJGOQE( ޙgvdBEv\ԢHK( 8E)AU׿\O}:,^ε:OJL5yu}LW>I=p*}u|TQi|.( Hmf=D& }|pW"?P چMɶ4&>yZww]ە {>`YlkW`ѵ#0D{|m,K̕Cή=絮 `4DUo&q ]?͹ǼWϾg^5vyQ<3˝֚;^WS._ǃ#*Ð2?7c%!Y{Juu-J{S!PvOyC'_p{qv(HҜ><^G,S!rnr1!šV7ρk6\}Ѷ0R\(̥w(XֵVO +yqxo<$ߡCW0pAyymmEOv2՞rYⷺʼ޽bn/922_& !0 Llk/$~RasNC;.D qQWw<)k²0mG9-Ot˫ JOggSjC4&LA!>66CTpxU,aӭV.B˅&!:-b}{7#aޮS鄾d2 S-sKS{̷V$"5N"nOQ) )syYͣvx%Քn {tGJ41e2M Ru"l)`=V,?[TM]uZSI,{0+tY_.U3g"^G6RDLtkZwwd*-sǤQ ǹD@DJ-DsT"uٽ+8rS3Z"3+LP4f|@Lj@-ku!?SQe`G|TQiB5qj7dђ@(y y5Ghk%d|BDg0GᐵP*!* 1CQHov!je){nXw[1}F {ӛAߚ;i *D鞿oyFJDYg63׻?7\yxoMBJ볭׈5LVg{#d>QP)b>юaj^ex]'>bfX&6ܺ>? XGw]*]͕aljN!9&ڱA/ۉ˝~O4Ri#u?VFYK0NÅ?PqQ?->La\MȪ\QnL=xwXPĝnO٥¦x{5"gʮnhzJal}jk~2/|% i[ߪ3_'OywHLu^Dh<=#v2?~e]M7C(cH]w\k[`ˠ}2_s h ?W9_@5z0Y#Rnm= W^C*H:򙒳{{jk 㽘Vh@]ڡ֡~Z&pcPS:OgWOOr0:+JwՃ+ڗ>U H#Y5dL^gftya5P5iuJ ]G:Jk]^==N}Nd}NtZkQ]ZQH)_y *{kB_IFdrH<^g*ȵ"2htO%1DvHݣh2SVSB錹+⸵OLL@#b@{忘3qh "wGH ڄX69m^^ĩTmIevƜd/,]UZjVᨎ~ìIe?BiNERRڙ,QI |Ht7Gk @['fK^fLBI"p֋)ܨ|-7<ݽIڒ>8Y1ISS?w wnfwC95KBs2IOv_?&>iI[#iߪ' W}Ν {aA]ҝD3r_Tvs./`jQhfŽjqHpOw#o?ET<,'|?M_܍h kIfTqA2<6^C0?:N'1y(sTُc=vgsp=JshLJHOOr*(ҌLƠ=RGث-8j+s5vT/x*.D˘|Bfw9'S${N;µSzG-GޔLFP+xyJ/}rJsh<=lD~4݂oY]޴ėEmkƾ&ybKIf0֓IH 6b,*i3u3q08>L<+[:m~zܻޓ1&Gω8vRA ;>5w Tk;*\Oڧה4R>^/*>w!f=sZ{j|g!CvH:O:pн#iSa +芑|NǁTq@| Ԩg Pw'U5@P -Q) #Z2~婫S|fɼ4jt̎āDSJfUm#}:ZyzNR#V ZdG8:=E:t䠭G:/SvG*WEdf@\E]rDƜh tD꒎֪"^ACρ#SMP8At|rIDoqy_`9(P0ævldB1\>[8(IeC7rw?J~s+_ٰX yYUC/ĄݸG6q2VusRM{d}^nMf/FߣWVT|!kj$2UFb.fO?[;2dŎe'U)t&-ozEf}@}L%BÁWNtSl HW.w5RG;^[י+#77-C9=VDqw5Wϭ?i\rtX~CW>籧oGt_W:lv3I0zN#j3+Rmմ0+hj!XwVr4郞֮;NB:z ЅֽOOTj؝"b=szEfb6ϓZ(TFsS'̭I~`*K'M/ ( }doqέd*|V..HAxeC[īNzޮKoOuvQdC~~<8d#t<<:NkXv:Gxs] ^ҍioh{\N&5K`1cհMYNq8^1.HM'h dԽ4KHiU٤5PlM!d)jviZwD>g F:(ZS,:SQ%vwrB]OuAjkͳʴ__Gut`ּ@:SfO.g+S't!s-Z9.U1/JxMgw(CL턷,{˴sbRjh:*%W6%VjVy]vTtBi+Z#CzlN쨼JceL78P% β0=ܳ[_'FXaEs63Q256Omq%{T=+hCBII"CJԮ3PJF\$N'@2#+gjs/^aHV 0э(?< {Ƒ;>ŊB񊆆rʻ]78ʛRV\wW~w7\}+P|O|;+޵ٔi.ֆk͜Bk3@`|{ Ęhr#?ZHhRs"j`5>g&&MT LY;awW+tx<qoG ܖ J~#z錯2*B qi%uY|~m9?2>NԴF5V7>'_䡱"g#=bl`;77/yY1}iG -}Ryo󅄍a^Gxxw''q$~rH˿__տwZ/zWhrث,mZV9pE3n3øo^6|g}0c3ʸqSGgk?o癛"D3WtFJcPN Z>dzj)naVVԡpعMǜqїoYW ep5Ruc=<Ԏ ٢-[N匓\Z1D{W禎Ґom_5od.BـRmLg }TŞ/_%S$59?Y$Bf* ~f;=j Q^7.jg2)z<'o/sZ]5 o\6!/[սX,?OggSyC4&M6p5#5Pqצ+xXlEU (R= {YqVnMЪqnk3{8-28ˆF&m~OY‰&tQ궖򚳗c>C:^cȐJ/19eS@PMuZS e*:!sR܏{TGlY;Uc9ǟ"Ԛj°|ljѕM{F1e6/NS[#蝊4dM d ~RgiȐ)j^pdԳ>y8ijdQk * ΚMtZkч)! ]!Z6Wԣ92i:^LM(gfй7NC$)"3w:S6|Sk@]JZD*TQ巳(9okk,pMT /tRtí]3A21q3180BUo+;QP@>)&jiI1;5HHxxe*?y{'Wz7x_pĽ {乒a UOk0u\wGgxaΆEٓ$Oas"kOv*R>fSB1Fw~ 9p ɜK/ckS< ZW.5 WJЀ3%e>]#OHN.te'}Eo&A<͎g?~*yAji?/5]!F҇W `_nu4d?>W|#oM7J%Z|ӰUX#R/={>gX9erV[-G>aр"Ty,,}rAY,Vl3cZ T k.{&犠O\:_XrdW75kUʒ p ?\lX@hP&rO,[خ}: &҃+O|jh2;LIu52NP]7YƂ̛<|E Ӡ:L襢ty'IyV!{sz9oJ^ yvl/@sf\E}Woי$amWjkѸ>Ӵ3kqp<0 .-M} gOZr[tg9 (|Fc/O$g,B m6[Ef[vFAmڠ &j9kJg^MV k(ݯkZ%㶈Dhŗz2JHm*v7 5P+Gsه#LPM$֪]sWUUh^NdN] ?^z^MQ9H¾kg^H Ru:7}Q$a){W$:m)K,8S+WJ!-$ٚdI88ɂd49E;A>yu͇LBu2 AN9)Tr5''TXD;SHZ@k~&Sze{5L8 *oz;uq2׶}bw\WLVҹdĈkDqɖȺ+T3(HđnFkCNg{:D+}Er%Yuĕ:rݬZ+eq-xCKV3”C%dt QkG%Q" A[S ut:H~r|ȤmeTٚ Z1"2R]_,~3@bgk7қZ8\1פ}Xˏyք.3Nv96!Ee02#b.;tD~9WҶSߨy絫%-Wمh/5̘rFz.@X-d=V7DޫuEjS#F<_>T;Ib nNU匞a|]gҍ5|$v ރ7cOxqnk]pJ#}FwrW2.E v,C]`vZ㠴HZ?=_Tgz,͓ܣu܉:$3א\%de^t2 MK̽:m '4s];%v\^K7]cte47IR9 ƺk85لDOrq:=UsgB\&у-ev7Zhr(}bG曃/P*o#ysD_7zWlDr>HژӸfqRW\VCfswa~&TDz!5bPLI1? vSîUHHo( w#ƊV[9I:sI^K8{65\+Ѻ9u~xh'^x{zߨ)#_ܚ-f@J6;1kGvh .Pz];NNã{~O7?{yyxᓻyDN>gwĆ5Oq!~o|^ڳw{S#{<n,'%V&d_)?gwÚi>ݾu7Ǘ}y{UsG-Bwۥt_\utԟy+31un>Wk!rn^71w﷫7yv"/ 9{̙7S/!\ˤćrIKxQpƑtqW9td|u5p,4 g%+d&Ss鳪q Fֽvk- WT%@LtYN"\]\ꑯtNG%sDDHsSR N _ PN@ȁ;YSAfU3"tBֺjuEPY{ߺsVPwOTJt]^'4lu3TR@Z O !m>>dJğ AP}*a=I1C]?/G㫇uiנTwUap56kq4Twi4y9FQIixpqR0jb{Tڸ #W#β%mv}Pb/_>l#N[窧u&BJYa@%*e3i~~hgPa*^@j ,wc@-5yCfMy4Roco^^A~qRzu/:*dC~'ȅr1_XzG>AkZiisRˏ^{O~fb|~-PRMNZTw*y#ߓu,h6*ߢYsҿo>4Fλ+.aP2sw27oC_}}Jv9K{7N]GWVnY42CNv56>̦O}VX 9hx:[=寤 +GR`qjiR!jz?~ǟz:1:«Qݘ/w)ytgMX 0QDqm((d#~E'{ަiסKH9T⾶zhDXRK\q+C\vod#d7 OU䮳~y h؏#̎!9l!,[5~=[CZ% k|J)ཫJz**7ےq{75psx5-q:~J_ʄ6ӸXvGW*?y:# Y~ 5{wMŷKCBq [tktOggSC4&N:kT:?UoXh{v.x::=)o_w4?t}gՍ/e a3Xq{j`\2W`?I`OD=ʽmr)J5gR:UT>a %7jZ_?8K)K}[O)}V8\&oN v֤Jb{+~ضb؈bZUekbiQ`uCL5NT!M6k0Z1ӊ0b4lvZ VՇ|y>ꛝoixҽ#C#HgX"C X"(u4 "jCrQ5D.Bh.%d'Ƌ/C1fh~:Z]DVrt*q!ʠN%]lig>-b4)e}J[Ӣ#cpbE" Zآ`lؚJ8* XuHB{_u= HNwpS:!|{@#p/ +nU(ɽ>kDL N#剜>֨tIcDe9Fl~l}c>2yw^G v4_~G6d1V)]p IчwDψڵҙO\"]Af;#_Gu|+@=qTK ]XUlҏit&鷹|?^XI  pBGTڳ=ƈi5EhQ<~锢ɤsj޶r @pPTQ7v',mFaLOncMݾk%eZU?Wtq)ҿYgӕ&Ǘ׵D sXwj_s5}8T|$1>y}]9UfECgh7q?W$JDw^ߓC vɻzc7}yO'T\h)b_Zqlս d9eo5KBV˰CH`µcн&l{ڥyJD%6k#-EFjicUpR4^ϟxֈ飁zqknVϕ$=*RB4w5ZYh烶aLRO$IMizHVAG˺7[lV-0} ɸCk:s!`M#^-wx4O?[)O:ɤx+KOWY6WrxөkLJږ驁ũ:\#pyyŹ+^juꮇ9qz]bJ"e?$ ,/"W_᳏,:y{-KR3Z]oac]ȗ&CVa:y ^)9gßl%-42ڋ|wh+gza|jz3]tib*]13t;dϜr%q+1W+k >s촼_ʮ )6 /g:^<5V^K<-N3-Ոa< aӨ \m;gyh|ď~A;=gIݿ4]}\G|pNRD|!.I~n `БF;-G<*rHZGC񴗅}`aAs:F|g~_;o5#u}xnf^?72yo_wm+gihz].Gk 6Ą:L?zdt _LJk({&ِ>j$L4V yW?<v~5{cmT7w).Lx/$2W?luE>i9ʛ1u_hEZ;ic6zN(WYkٽ%~'=`?ckWox9kC+{$|J \T9tzW@ bקI>u8' |`śz^;N=R,-uUy(lxoʇ&LJ4Ǻ0j627q Y3/ϜP?\`s1+bg[De~P`dMʰ+E=ѡo[~шh7g *EtPdG߾|{Mc7/N0`&UK=5¼cNMlMj9xMꝮZM\JpyK:\O/x뺧Cf]ϯ*5N0N5c0}C)ڧ!8W?.(EG Tɡe`nxKSiвvOV]BOY"jW^ AF.yJ0ƗzswW^Ps1ҕ"p3/}LoS&Ow1xxYxo/HZ5 Icn=*˺ddddcz夏z  "rIwK=kf2wHe 2 32e1yw*Hadϊ 1ctxSFɊ}\W2]bN4v_IPN 3xYXL;Q]UY#Cs)W~A_ Qf^;uz^~{{nЀ?'c~3Gr̊; ɺX&>;-*3Dlt a9qM)674Hvǘ4xTtO{|[E,n<*JGp-wqyrFtӜ|qљ8Wekv 'c r?]7w?~Z;=>IG[z]LݶӇK?/\ZC>U19pݻPj=pɞi=sfr[n%wo,;n;7?ؙۘK/^ 5;+LxiYpnߘkA9xA&Gn[4t9l js^!*q{= htw`JjOggSC4&OŬsw޸K8~uM9HOWQP\@@C4n UrqSՁLc˵ч~F!4*L'yr-s݄hJ+5Ϗ S誧q)2iY35hɡ}&GD_D=Qe|ВW1O2^;I@ЖnXQPUm6;۔X| i[]kS(?Hr EB uA'Z+&˼N,e О%z]X^z،Ow~z /'ͥTdc \怵P}s΍(YhƜ2{du4*"ЬApJhC䘃19+6ٴ&b=9?~ j6!{ϰOd;:Y>!YAu!eJ5XWg/aܽ_F74&,9bT>ޏ!jom.͔Y$F%˼ X#)>Owaa<|[kJ28e|oѶfhm[eXpK t|zKXסԚ`s^ˇ7I_)!F?뢢IEEXE5-{lj^T<_S^[D{?T󷷬'܍_p~k^*02_WاSI;DGEwGZܨf<qAT8 [DόUH\#_f"~@HymXSZ "c< *5Bm!h֣% z;[rF>I44*!kE@4nr^"ɐS'YN/EÜ7doZe*iJ\;qפf ӉO4VkV$@aYZ렰kmy!fûv9g7 `i'S-v0aW$ʪMUl[ϸ8)g+0=JKBK-x i _L2bG4i`9QfӪ[E{ I~E 8w7}Pf{+,bnoZ{g+6LG7yg=dboNhlPk Εnf'cHp+g}KLv ˘KdS=A#bO>Q貭Ȫ?t_}6mnX'oЁ'NL9 yፘ&^ő/|<nzluy;B)X6kix!E%ʝ1λYa]owr\ww6p¹{N^+Tzwq 4oi.J޸/)ۚ1iC߇ڌ+(.Ox⹠G8@vkJ^CWMG~i4lgzAK]<H{;vAxjVr⅖>_Ⱦ\gC{9㖓FLkʦjyۻojCSTԚh+@k.) 񌂏%xJ_@^C'47]٣"ljcFϱJ@;zϏIEMpaHROD$@ע2tCJ + EUݹ Dk@k TC;)1ُ=yihX{1ʭӴf<|3S7GG]UђY|*9CZy5<w|Λз;YsZSثiWYKѐm)6{}F(ywݻ<͓Bl_Cמ/~ǝEz+HC5N|R܎VBϲAExW =̿OMҳCm Rߵ#|?]#("Ru-nV{ySojwۚ;4qݥȴڼФκ!~"`Jp̞l:{{+${oNg!1:_Sʄ#0^cm&4{;l8J--]3uu"O*ʝ. caݾkJQN MU[vQ˘z'|gƜ+C֜!=/U=V*0utV!~eW?O.V=>?dM7V\_;¹TvCn v$EbZՋg!Y*jvK.Lr1"%`Usj^ʮ.D8t3$y۩(^x;YOQmz U@[_kkbO4 gX+[}RjPnK}o1oiU`[Fx[,枵 tKesG\t>d]I]9;VjC~SpW3fzc^jE|y;N Ǚ&?Oa}.v 9Uh|bW*rX̵D ;c(iN䇉c<n%C} ׼K ɌЬfY'z))~.,qYƧlimbO|VpN*1?ɺćKB?w>M|jԓ=PBWѠ9p]H⳽;?hL}l_fSus"ܾ0_[C`vϟ9l+?;pk<)_#_{CA~>KuչiyZF'*:GaOX.O,:l}:C{#PƘ,_G1g|K}Mt"G/o7UWݺ2NtSlgkӘ  WexsTqx#B=oZݥj)ľs ŇɸI(y%qdac ؟ײ]֡sN)ZIWh YYjiwTY)V8p8{\K䡏]lVp0]pzK rhr n#76GN&yY|: bextֿvat@}:aNH?LZZs`ծxB]&^{]? EzVqݳmT=yG30@EK/96I vk&E\wf5z ܭ-?j 8׷v]Eq_4!EѺ_돹<7Ӝ>[mw#y#-}N<ݏHm2A=}}OEaCUHau1+5l. [>78[ڵv5%9P}yL溾"iXuidnG~=:rxjESnZQZg9E=Bp7Iuj0)`pqV:[&v/iO8Jva27"V$:Ӫ實uzotKm6RͧmƾX?rϝ\YwM#.D-Mmq/ q>2ު}|>b oQ}v"}D9T_ql:e+]K:Zh9f`iVRi9r7xQ*Z®\> 4Rxec'OĐ@k>lSb٧!+w>\x\gߟ vu/j"qy.EP;o۔m|qz؉uk}@WNϘeM|3fJu&)rRt#SıNQLR"8ݪyN+0Y`9~S!y=. ] \<'Hw8W-7rmV>f96?ΒN<;1nsr9߻=k#n|l޶dX|Srs?碑;EzܼfgMɈ)oC{8+h_.fH#TR*Nޯؽ+qzi{9\!" Mkjۏk9OB-GɄ[bD퍞H[܅N-\?~ \}&Et^M~xqy'Ĝ֗IyBi=׶/i_Ͼs[EI:leY4S>M[&~면(އ<.r^ ^s?H94m< ke笯Vk>壴.'4o&PmD}L!zxR7QfbqlVN}=h=~}wC^CZZuZ1cOȎmۅ/_S;Ws*6jy҈;m>jO@xy'M7+OwU., w?a*{mBt텑}]qQTF^ZT:{V0س=_fpYf5eWu{Adj^eX52b#!U஋wفᇾ9շ+~|V/ƼY^׿DD\fTN֦E1+|cp)_h!mEQ#;E()R}h#6_s%\y5ٮ}9.:xu|}R`}nVu`gjTb0֪ ^ixjHꦏYKEjkU×{ge5UMUD@ 'ۭ)aXl6i5%aLbZM-6* cP;^{aڏuz {)D w:0ETB.锈êUIT<34& 9 '=6RJj&;~w) \l2)iR? `fVݰŔcmh*@X ;2Ŋִ-* Ub-ZnSsnIU73+ R5U@${]i=1e]\Sk7X+ /m1BUReiDdGf+&D K2>vk$r=؃Nϵ%@!HKZʟEkcQcg3Lq+U;P?5-XqVGgۉ#v:O_;Yq2|1-lbMOk%Q332_y%Yvx)9:XCA=%@E8N]H k-tk;fkk$1肑}<öN8ŵ-q)/+WnW-Z|!|茩f?n}jjCcEaT)9nki2ۃ n^ڛwD'ky~yTT;eO(FULҼ\[h^y<X~ņY/~`f\`@5n~B2U"Y J?]֮>cvOm밳gٸxK-S[Z<le;"Y*B[r#ْwgvvqfc&y|JufVp<ϵډWrUo̹œsNe>mk6)WJ㎑SbG&r֟ޕP}M),[\ů>9 a(LV/u?G2Df*V[tt7$8 P h|nu>d<Y90aDW{D-=!!6#svB/^NyS c=5Oa ٸt_z^`.D*œ[dKA-֔ï_b~5bu(kGIĨծ \dUWs1:6s/Iw_~k7RzȴYr"3/pe1՟/bD ޓhPWk,.² 6"oYoKWk8Nr qzR ~E dT+9HsQ}P`r\6>`, U(9!Ֆn'\Bp^+wrRsP,`Im8æobCG{{<KQfdgZB.+ )}pġrfl]QAA-r46W?/!6jw8=MhRL0I^Jc&ۗf݄%jaEX7MU3ٰ O};Lf9Q y!i'y_džS6AGvIȪLlikg-jXdqR"MSccGyϣ.?h9'Op{ {1-H@r"m~,7x0wY[{>U- sVf ְvoΚ^}LӜNwhDDOcoSbvl` 2"_6r7NǠ*S~oKٛ5hwEUTTU':Ŏ#:΁㳰ɛ4YG2c=c̋V;A'0]Cj4*=Vg2pԲ''no4^yd-.(Ro{L 0"u/ihm/Ήٯ0z}o:4{~:)UHtvϼj-6v{^u)-ɲ$ 2~YTB0ɷ<9X.k= <4j[U=R=4mݛzip+)\c3{j9G~HC<&0)U45j.GqoEvmvC:69KlqKE֤#ͽܿcdr^x!BJm^lkji?|Y<|;ebS^gIP4>xHQҿ39io߱M5ϭЃ;<^:?uWcU& WmW_,}`Zm~YS;}՝D{-׸Ѳ&P1x:j<n RҔ:UKp0n?=v$'.ga D`pof~o9d6\fNL`Br@q92C.FGZ}n;EմEJMynNI_x m4]z\$ِ雑hHkR]1\o y/%Q7DdQ\#F#tkW_:Qps_)5uꨦal\޿>m:ekf|ݠuzxmC‰Rtq3?]h>Ņi˳l_7l{.Hb//weśw0eP *1|菻GR[[ 8)9eDh<׬mt괷JͣTP鹞׀}p"V+<I):k}MDc5Pt ' @j=hJ#5c=Kmg`D>N6mݐ}s;Nܜ?gde 6[~NF]V ȹ#ιGsKqF]\NT"#c}#Q>t?2wyP=ua xaJ42(.'鹍3o_h|o'Ӓg`Z0!xux4H,ʕ ZEnz5û - Nxv@,lPym<I}ϴӴ&v+]}=K+? (A8 _0284xLrPu&ԡgXÆw/M9J~5zXoa*CKM/|tlH,2> 11/HW0]Nwikr@I:.7Fµvn cD؏-\YVCݑMi_C6:Bi4;﬽TG"{}L?K|yߓ?NI6]x8{]wz\:qhpr~mumn_x|o?WEzs>OI'5Қÿx;Dp~u)죹ܶK%&z;ӹ2_ ﲿ^/MLfQa.[8.jtIfy{cSRJ늟3';3uݮQzԇ$rnp^rY9G>Dg2^ނ5~qGČnz^p/W>b;~)aʚ|uN۪Ϗo]u@inSUUWS  `L!'_$}/\$[P=fC&Ij /< A֭:Zjt+ƉxX]oq5mwZu^$TV5KI>8I1% ~.um([e.^ą/}]5]ek{?]ҮPcGn5EyOA-5OggS@C4&R ?޹{&5鷨{)m p4YBzފ* ic z[ƪ \Z@р{riψ-n&2?GF'~{g% /L SBq,T ) 66,o=_7Nf@Ti/ @aObB^rpmpct G'|?-ݪ=MQ.}>/Qdh|L+@G. I7COuhK!B0LVK:{cnɜDR(CHj2Y) -CI8/o&D?/)ݯOTpv׳0.ywuNza&Zf'=,A{NL&QDNV\g\S/ZJ.i%k>/E>,,ݫhPi4(lZY^u&'eozSUU PxܦnAZ ճ`Df}N{p.|GGlvwyb̧r_lK8>X.v6I &lgh$ip3^,Jdn qLb7׾`'M#Y$Ÿ! Sxiǽ9OWitڊM< Lٜ+yaqU8bO2Dp}=}G%T_˺DH AXb6j:;y* HLLI&1{sC7I.2yQ0P6dhfL34H[i$Yl"ԶBDAh6p S";W8Cf&1lYo`#wۋqdQTl{rj-=ȔI rd}x G%eN4Ra'WF.Lwpz?%ثm z\i8)D_=!՘L\%æzKuPGtN㘌zv0?vԎʭ9j{FVxsڑv^h椕9En*I ]O]CWgP,NCPGICWxu"{^o2PK~wV:)[.y9FǤz!)ƶG>|JhQk;7Ld!*m_@BPr 8TH&Dřp& "5#8u1 ]3d_J;[tM0cOwt}=BtHQ LV Oٟ6 f7Zf昈˻⓵z_xv $dSjZuM1\ei{7Ltn~ iZ$cIOlf91W~\[C1؆tnO_wm{X ܳ!&_\$mϑM|{XmP%H,: ^sňCțlr3h;h[^GsOr?~#;"`xtυBofo}I#/jw!7KI2iu3ƹ K#݌eб0^n\ŏ|C;sZ=JgH=GWW]⹱T鏼F@!Q?gw+[~lh{i =bGuRSn,z;u*'B*W~J$_ZL[3) `)k|m?8n׬> (/re/ ڔfp꾩(uMKϦ=GTgbMfTKKX_*M{ULk%1++FF_v 21O~=_gy;ߩŽ7lvYy 2Kku7Fb r̢^{yM=3*oo5efep:6j֩;~K֭PVw~]oQd?Dr?PM@b+ PL-aN+.q'uj-+{(|2o~yy`4J}46I˅$WRxQrf;n!pũ8)}]f z4s Y\9 RoQ[*Wƞ;hhid+]w{ NdGrɏ*xXصt 5ʬ`y4" c׏6Nud~rWf(.ٿ++T8zrJ3$ك}HZ=׵]o8<!yFB0cz[3zIC1`B\%u7"N!8>=e7iEûMuI'k8c|d\4j^.哎 %O{Uz{k+`'r {=;yWU:cJߍ+VuیL@LXȸsV!KB\z?맶&~FO<(bon OFH7\\jyhu~ 8}O|mU߻fH^^HS#N]c堊*Q?%@@!xQ5&䤐Hه?&_ӀrԧuXnΩ!GŢ[,jCʕOk nV*ZYsd A!Q&'F;ԠijmF{u2_~N)#)UOH*qcfqdvt2IQ؁uwd~mufhq"B!o=\¥wgO Q?`H$ r ".BՑ#<Xsh)VRnf_)AX)D4Kdy3χTj0^hM*+}!}Q\7 }=f}v{R40ʂ[&7jL8FHC䬵RVrcHkszI9t\r @STך!kP/=!;1\fD̠ﭓ8Q؋ nesROx,a1FVULkX^% 1z"Yw+|=BI57przXj%[n;l!`D [!e>rXͤd213ڼxt]Y)hR_Wp? 3 X3NXx{y,PS]{3_3u_N~aD}6,=(-\;V_̩nmtȺgm bٸkޫ V'7a ;ntN%=Psr&>N8|kcF 7,<7vfQ$[y;n)um,4i WJ9N[8}[3ļܕT1IINϚ]vW?T:z,Tk43P^S%h-"\ڏ9Vt4ͬRSP8tV*N%qw0}ۼΐvif3.zC:.cV)R<@QýîR>'\<F ? d>Ipϙ'CKNjry<1ǁG%܏=֨hH- Չ*Md~*5 jfH4Ar'%?J)MNd'UhZ:TyZ.:DC84Rwi<]'yG6h7${Q%hM82 "\[HkPWG @@2lQܙx =q.Et{X^K 7 /:I<#v j&ER-/λS.$3[Ӆ S H'-#2 '_sʉ||,o}wY3$4j!p\)}run-ZCW'K#6)e:wAK Z|ڏTzFyyn#ߵ!j8PO.ڰW$cSCG5ΞumVBƟ19v%Ri1޶2 u uؓr/{"3rN&?OQFN;L0xr7"q^sm|I GwQcuGz!v!"~1_f+37w{`bȝ_޺nx1VD;~kYF3[kQ;n jl#Qχ4nS~{UTij|[Vzf;IoWyH9LedM-|TU;rVQQݵd1s@Qg3??lf3Si#^K\$3Oq8j6՝ 㣏^g#dh8>(֊tlkbvwۦʌ^9X#=^lMu>XIbnSDo=Cmz?ɰ]GTyZ7ƀ &(bv,o, kWAߩ)WR ^@^ٻ)ӓziH9 ƒzސ]@TAE}W"jGM(7~u> W{dqoȓOߌ~?>Yʦ5813쾯lHƲ\I~ΕXW~{i#^G)٢>?i}wY!%$kEUR&C|NvU%zhBHdy^RM Uޛ.<&p@5F\~/Ώ;VݛBix! !ى GwYeE쿚3YX{t !ҤAB@kmp07Mb_3ܟp^+LHlP`Lߛp$&g`2C>l"hmO,.m]mzC馮sBʯp/cp?ks䵺ƃD'BfD]e0V6V,94)Aznp} .o݃%mV ^ HΜA>Rno⁍ >S,:Hu3d{hXΜ`b4r>}>ȁnO}r\W)$|={ `fԵ\4]!z[%x}%}m=ߧ_̘?򤰔'~NC^9BpfhCJYn[C_,"(VXWx}lw]Td]%~| UI ؟}ӯ nDו y-$/+9M!x8K?3뙙v Լlb:mK52> X~WW#K?EE+SFi@-rEl='c{So-ژ` |k-©N#;x+^?:;OI&q!|*8\ws~ަPHj2ZFmo fPqlV7 Tug`AwM qiWC;֜]oLk|ՀX-;-!̈́DA-&]k$,jesnOb=kZܛtyĜC*Og:f^-Τ]&~Q:"14?gZ0CkE=3f3" @H "e^h)AA֬Jbi~1^)Lţ"2gDOD I:dVV~:ߣ]r̊ӊ0 $ {6ms^5U2$8dHd+J6T*E4ٻShlfrS$PgufRܵVZH8u'[]㸡}WyP0$CI@䠨^ʼ2 1>@ԷvlH8d44/@gsy=k~1޽ՕhXye^ U8Uen >+^qX9bI^^U KV8"_-8E ;sa:l/_'Lax-{0l #o^Zї&T̙a/y}&Nu'3G@(m lQI\#-%u;?7u`\,O|cvLClKv8^{ qk7 Qjr*MTyޗ)&ɊL :8wQu:CS%kZB+q@Zy*djfDHeh2*;Q3#~ES&q;5nTGcS)gn*qI~ OIzw#Hh5 <{qPG6Y8 I""s.sFm^L'(= - =4-2)z<'J+}iy)/YN[>E0Vf#LUo)WX_NDsDWcm``2 cCXoHio:>C% LOv8\eF)`\Z F#& CBH]Fׁ:(8mn6yJsb֋ <ĵ%M_O-$$6 t텣qj<};]omelmoɃgpKWԫp8%M͘}:}1"\D?_:Yp0p#=}ܗknu.r vv[n\d&>_B{%NS/oyS oĀ"#^6kAu$CsM^. AKpMT26̭稧h?  d{Z)Ns2dziO._]]*!~?)GYGgɿؿ.8MS.lpn[!T8z=ӱ;~3~kٸ8$ˮM?.E]ߺTY|'=Ͽ*??afS*]O. g7_5ɟa5sm+оi%ˬ@>ۭ#ucJA߮ܢe8z 4tAR nV|P4n8Q~K^lRԃBW:7ɩsUnPJV%=zUBǩ@F:5y1b,3dBf?k]њڈ0Ef8Qӝr4OJ+=h0$̈́>CT}ufD#R,GȈ|~LR<٣:O%KÙ?R2idCRZ컄W:!(WRy"F%p2CI=TI4fToy Y8:[N,i8Ȩ /CuN(dy<OkZYᘉ"T@:LE'kU i" ye=Һ͑gp(8 Ch=0+d,p~J"+𲿽Q59œ>_x:|ʆ~_xcTs^Iꎊat%i]8gK <9t/~2D)+QYx-G~.`~kHzZVwTՓݺ*Řvv%.t:X C,0!#S4ZlWT7Gd28}P*!('r>v99Iղ&OOOx)Rf}{[+ߒgHRX:q5_,arRbN{4ݾS'Lrݞ9!AxWr{kŦsd/wh;MQ ַxw_7|%[ߔfDT!lƙjV^~iGJkgc[$ʾolE{GE5]gaf]N'm\~ U#}Q$?)U+3/ƅ5vfUDB~>jI9$ oEf hAp 5mѨ-A`VlkQ/*o&jK&88k 'Υ SH'5URקk !gj.4MDo'zB([Vߡb{^Qس[HeD6o!yC4*Vh>?\'RSjDxg4ut U#s*Shfdۡ5Ƚ/!VU:Q;jk9\"*:9D~!W*p,HRWRY@:i!Y*NDgJ螵ɬ53;~g8P9&YU%:ZHf1U)4LG=ͦH!t^?62lL{œ9-aHg7 HT,ɨ8X@VԃY:mlꇟa \x6+f3?g>d@Ky>q6۰fQ,%y|~i?mSQXɸq7%KxL|XMH)\D410ϯcBLXJzKh{Tjν+p%I[,/+&q]D]T~%A+3,ֽV:~ ޢ~V_Gj;Onphu;팏/u̿=n.3ag.w;j2ɿ=ŽuMAC^S`/pGUk'OͧS FFjS\j@7C%GǮKj_@Y{/T۩˹j!7/l̲5%>%ÿ~75.S)8̹ ljQZ3uZےk[bTգ&;EzP[G!2)x~ōcv$9PoO>\@ (_ ԗs.[`/6Z6ԕ#z˷s*H[3]4O/xG3d&0 yS6&5 ~ Q垊-Vƿa5^}ۓ-z q-SUDȩXϺ{O}XMLLNE;)aKDrX? x J&B:CX%s㾹t,Ѿ@_TG3qq5[yjFt)sr^'Og#9X\ywFO0F*M=@߭R I`[-os,`[UR1FO.ME=W{u9W5oÑva5<Uw+r%~F]1hߠQp'I1oOo<[#Emhb/ d"xȡAA6Y_>KT9޷y7fOkU5U\$S+m:6(G~>Ȗa6'Y[˨vݽ4O:gVK}',Jc,N=m:{Z̺On!I̯.OggSC4&Uӳaƹ̽v༚%Ő:̵bD>OHwnM/k-vp8bD)c{r@u8GNffYS`KG}6wW_g~9r_[yTk(^|pǷwƳ ?o,3rju&.ԮԨR*FFGxPzQ~j9`h?tom3$fxD釈t_.ωf׬8ȮpDʬD4SR׵j=US[%9(P+Rvr@-F#DzGf̒q-ѿݟ坩m}X$8]8H;# # ]'< oݶ?\:{0$,k9ίWܙ`{q54,Ԍ,$á؝YC(H ^h9< =66D^ˆdL\n3 "P%C̜ 5Ç7GʑBoiq nZ49>δn.ޯLqp7o'SwZ#scW,4zUn /QNLSɣθ U &}Nۣ_n<Ѭ.~LxtUɍ~*A,Cի77baGǟ=|x)'+Qw) #|R?wecNi圕^G¥y1F|Yq-5[Y5_x59vVjVK,*%cqem<8Iӻ^okKv/1+V]{'Nn=6 2e$!}$lS7!nY>2L&:q[AQ;T)z {٪_ 3$g\I C! $yWhB-F <7KN$d>v B7!/ӷx0ZwvQEjeAelRD귯I5_>8Hݭ֕z\ !jyl_n[evc9hRϰ)~Kژ$tMJgcg +rؼM܎z%/ɦ>=,on&]\!U]׿%ߡo^mۦ7~?iH{Zd6i؞plcp6/m\_cj}qotYs2ד_w[: ^>*vu}qPA@GRۢoXc>4l@8{1>_̮RڍZg[?YUelo#uINQN$ti'F]BxRq =CE ZX?7[Ekdbq dy_?rkb16[v"ὦ;{:޲IR>-?p5V<\3\$ K6Ni/)Sq\gd~>u> F':/Ӻft$K%kǤW'3!`K";  qeXBe6D,?Kqc }Z@巀kozXk*T}Gm3F(( =y̛h|պ怋޹03r5'(}LtCj׬ÙxNop|_qB}ܻs5"@\ӸFGd]cCgAZӄw-^1͉F4_-7ŀjc[d&c@qѣ2B ?֧pol,FXMƎnCH|ʖ\sS1 6~-U%,qĉrl:RhIY%*Aִ<1'}Kw*3SUn5.v(hŢڙtEJg%nrmwlU* ?vf[6QA9,KdbjDRƽyd3-Cv)_;;QfE %:afma Sjۻ%U1 jب0]j=bc[OXW0Y:vhJ^'8d_P}x^i%ҕ( XN5_g<ƝdN 7_840R^Plք??wjo.v78-ö؍C1qA )?jKJPϸc>{8G3X*OW텬n*NCPt^ !6&$qZ1+U>25}v8gn'Wl$Aʓ";|Xdc׿~00v[=jj`d9':݃&MU3uMhQ''Ǹ5v/>IH2ɗD[~w}{=Xf4[wKnKvR|Zn[޲ʑ>k=;E\F |ƬuGl_#7V'oO.}syZs%=sžK %Gv t.NmOTS20X-gO ~/LͼvӌZGyoNo|SDd~a5G_$J?_6l{n6Z9~Z c3Ri+H- DyՉj-.vCVWyš[UͶi~MވVp*+fm{<_^Ah_zy\zJrTǶFl\T^ᰎ?D)^3G<{;I25sL2 L ;^$|}u8s|kVw-~ 3{Fx9x@je5@cz5Y `n~o{Mcsa^_=w*A&r X:H YHJ/Z4Nƨd\BDϽ/_5=]x#)/{e7ׄ3?};^_fwN9W^J(W;Sfk̽'*%.LIes\U/^7j'pm2GlL8jeIiqX|Zj岜*S5ͺG'ylRdps'5^g |T_e49&-xrVc&cyT~p;_#w\ܵnnG1q%{Kq`C/04C?̹r3|}ʦ+6jb1=]b(+w3͠}>Yd{2f=?!<qo?}AVOVx fZ{DNAjX*7lw=4^[㸉|h5-u?d ׂ#IfB.t#ǯ~,SގخWrt0pnyt*۾(6K%E4F~qclvu `Au*{1GEKΨ fSF zߥF aXQP\0mL*^򚨌:~DXv{N3sP9)EAW">ggNnBeY|ߣX_7U=jwv߸*<8P lIQDfږQc0^7?GS3.zFs|x9kOysX.Rau5٩2'r*pR%t<:5,C+ӷk@+z[Pe:XpK>FDeiQMe責wkDRhF#t0S֮=w_O*/G 'az뜘nOz?T*4t+_<m:0ɝS% &g پ%.ęEznjO ZzѪr7*:?x·&Bit9뎳`9h3;48 xd>_ H>RdO;;@0}ҕSW m$~^t5|IJ!zB*J#7!mlױٛ]/84`=}'lLZ9PkJWWi-KpZtĻ'/y2Μ؋&AٯPou{/X\Dm,?6.LY\nƼ ;G;bfٴ<[ H8g?S|{֝LK]0RyLݟ u@.غ*.Y Y[X͸]W~_dvWԣͯӾ )gIW }%7=֌ J2nu188B~hGO!J,M_ym\%{yc.o!˯S=[w&pD\>;ҳ>% X?x缜V%jXxmٓ.l8ϯ!\·f׫} sQ1<[r8쿖Gzso0K=47}w;@  Qhb$}1lO_y/*hΧlz|zۑJn3[s͗V13+ ϗ n鏷! gs=a/P06qɔNh*꺞݋/ӛ2h A9F3<-T@Tpt_H@ۡ(xQKEs?}@/ $.]+8DGG%wV}a6%],Pet3PQՙ-왣-tH7≖M\3XcpE@ 9fi{[C̽wBGIyJ^МE\>1^.ru.4$2S`MipuݨNme-HY2_S̟XPøњ!挫?6oK|ɍV*QcAݜ0υ2R'2y?qؖh]#V\]0ߖ .(OZ'ƺ%YDDj2=m}sUhAĻG݌&yV-"UA#r?t:t׾\]t|׆)"%t7 oQٓWrS;3HS;mK햼_g>^ew걙q"i2?vҾek}2 N^߮<nR9ނZrWz ٙVyrFF!8@V"|lf{|W4x .csNC%u!+":eUQ>}.uߺiPf:6^Ce5MzH>~M_^lNnMK]aI3|~ʧ5TfZ{}C&1}l-Zs1<[,Q^L000O&d |p*xɰ>&#Vu U%sii]@ ԰BÚZV)0۪)ݝ<.XA[-d^}{p{s@W޴C@#˶e`oZYg9n9'˫hV2~U"lѩk*C9w2\"2u6SA+y[H^׮4mV$q <cJ@cp뇥yZ{z PBa {@z|g(BmfHrs9.S'Enqq@%xu>mA;ǶGf}p7Eqyp6bcj'I|kBnQ'5}dzrw arU"|UV6t6&hջ*ƄRIo*6xJg,Њ pp_t;z,QŇ\Ll3Zq3Ln!I j8(*.;8W^:c<9:Yw'F\9P?=Zgɺ~-eqv{\c=G_E7 s,U%30ϝ ҴV2Hm0K!yY~Q60d`s_CKtK7G}m"n"*IƋ0^s?&J\-Rb$7ePŵ!#c7u (g1i.lqD%}_";Wn3 EEor{0|l/VݓAwJy^VM(8P;z P})ѯԖ9пfl]nkh<-hsj&5 }Z%(8DZ)ZjuƤ&~tAˣdޠj\ZQZ6#9w]⿇\ZЌxA9y}"&$QjVUQ0ڿcv_8\7m=vGRܫ*>~{%1,L=ICX"M[ VhI?sgn~s7i_ѴPyw~3hGvDgS~#Izw^⽲;;j"?h"u}B$>{!Qk\`j8r\=dDd*D #ȟ>=];2ccĹzjS_`{NW}[Vֿ\Q:ר>,AY۵` GO{)_q1}1I<@^s^|C?Ý]K͗)h-ɲ%* 1i eh)~4kz-u"w+XZV~iKAZlڨE* oQo=CʘV| Ίp/)Np'f~r)+K؅ʄ?Hx \\$Ee0 0yu]ŬKǙ˨⩑wX|_0 ҮJǯI`v }Dg Z!66Mr5#HY~7&!>s4DLQ\^hv,xs낋P( Z4;yln{Xs_6c/aY||K.(_$zvy DlM͇iqlGⶼR3u|,gs5M:_hx2vvU'oA]4l ԗa7-,4'M^vaYFf98}+Yƅ'`m~h-Wϩn' }|fkV%?]q-N\|L ,fX.a_Ԃ"#Z SkS.6ޓ+ #Ͽ?gQ[G: _pjwmm @m @ Ը@ ew4!sU|r#) tNģF>? I A9WDϖI2i 㮫do> } &dcP>%#> _K3|@?ʏTEҕb*NEOr˂}W1l>,5s:bEpviX'<ƴw(wqH9|G2\Q"OL*a흻ʃWOi<_mt㸗~h+E׃`0N*#_3]zpi,U>_[Q_fwUX?p0}{9G\]}~MkWo ,H. #~ΥPDzX|c9;>wsE9랜c~*JáeC 7kHf=MTxKSN;a2zWSw K\} 1 -D9tRtg#%t53)kUkoJgG;N ]qUSzrKqBį̯bHQc*4w ?;ɺmJoqrj3֫V’F_ /١nI?_uj x;\(f7]yƄ`zq{+]9*Q bޅ5E$yq݉F]R(Degzpn> "ᾶOI6HR<ˬgܚW-o,7ZTrE_ߝ5]+Mq[>mq\0-RBbs|i[&kuvw0>[dKz0 o[d E1 f*Q+ q!k NXj@AQ!\*K,ErK{滘UZ DCR ׼Iyxk\zߋ4֍$DQ| 1k.x+bjcMĤX;e+]szq,\}΢u[TW}7xc^@I[,-7 _9^.z?m?6󛱿s<{ -G!;,`kN.콎9*Fr6#j'PlQkRC.d["Z t󱄎+4ZdZHA!2.ew\˫#BqwW. "_h!BiۊFvmp7?,bdҷcmh2wZ'NelfZ;UV7 B矎4q.U~ck٭x׳nKd;p!OggSC4&Xv HXf>2c̓,p:='_E%Td,\O0`CL,EM}u&F?x<ڪ yǻV j=gy6!ʥ)"SZ!jRWwlaϪ:gO'gU3`5HBKz# |WNWh&t\# @uàm;AY }8G d>A&'YǐG&=` ʮN= 8ZD'^QdJNt*!l.q8#ɜ Y4 9CB{gJƶzm}vсy?*i62w4no<,CssrV›?On@N]@YMYrA l }wQ_c|C,|&q]"S~)?E2.eM KwhY~՟i@Kc)Sa}]lc3:Y8}VWe[MU2&Ӛh|EIPs[VfW~p*ozu2e٭9Eq Tߋ٫u,/"iiyxuu6dl23q3.)İ0kvvOS7pQr!pW}tq2(Vs4D;\9ȿdYCAqeŻ L0~8Q ;{©^ejvXɝ<|sҋxU#";eR%_U'ٵ5!I pLx-F:.S/R*Hur4YP4NOy|+5C"2g{Wi^ E P6 :?.ph UlW_t*? xCd=8=B%#p\D 3zfVݣ<g>{ (JХAn 0H@@PSFr!6xo$Q_[R lJ8Z)'HpN=I}.w."6x(4 ?T=~R^k7YVݛI ?Ы?elĵ MiD==hggeN2Jrd2dp:B)rby&y9p{ŋG/f|<ZWJ?~gMԔY`]ˤOee^}Ȱ.C'5<7B/T-}:E38o_;|I{-js΀[$F_ p*=;z+QW_ p'fauksJ9.kNޚ}L<;VCcZj}׷*%y%6N"OܙLyg>tuvj(hz*5]'=/5raR@ixKVč[VLtru&Dt}§\qa+ǃO8duf k˵결I]GUY ̢$Kħj$vc{Aܹya',f^]qufž=Z?0& U xˆgE: l؛-eX:-:{K̏O}Y[U0 $.jkU~ ,~w p1C5X<2\0KfxTz,!nE BZ9?ΨUR0 n7tЌ6GH?4CF0 #@ koߢh:1?u!sQG';ғwIalpa&ʈfhMg[I'w:QVvr;|<<ɘfhx3g7Qɾ?9f{MYiyDGܖ6f іx>8DKDN5(Rmc'R^hz՘Z6){^"xml -A aUnMnt ϓ?98j.ͯxŷ]䤜zCatxΌ(KLF̺\$|Ct-du0wn:FCaj*:Vxv6w`/A; C9S Mlc?v:R.'ஃEJe BLvY G9~`r)uqCdW8A6jN2-4v:{sW@yltyNݑ'5 w]"/;q7^5φ5z,")ʷ,}a>sk`?J5fH h/d7 VIխwvkS6}KlH#P~Kq}"ӧQL´vHGQ%2RS)*czCi?\#/8}y+i0.6ITzupUn{)7uy \_vL\1wY90߫;'jn lrY<3 6ޞv\6lC}a_x3_nWrێᘠ9j9o< ur`4kt| ~sCE](4khA1!pi?L E1\lnx {J:d 3ǀ?fpcf |Btٿ̜ө۹3<[ ?{Q!6gtmV9ݍEs>nSqYDE  B`ݾpTm>~^4>=cآAKC\+4]UU}(5  _Pij\G7GE{>c1w?ųufJƧQ gvZ)فA+pH=Xb-+c<0C%$1DvuCć<:PaGPJʿP@jl%jnY[1HŠW`yb'j?׭;D|u8}'Y3*A㹨Q#aWZcCl[=Dl=}\~^~)u~;", EܟsFo^p|T *_ԑ Kx7»kyMr,.LnahTf]||#E)~8imv[9_OxUɘ:~dx}%-I&d;\+*۶Lm੫dr 1 |neٝgƮMQHD4/cM9 mB1lZkin]_V(6ܳ.&sxOggS'C4&Y]ǛwΡn[VbJW.hF,g'@>7qK\&V'[QE':ZV)w\ZYZܖoEݫ\<AˣHDhdД [q9N~&Oމ**`?^B*xh.ɿyc<0B5=U_ te*MU0`#ƤCNzvha`sɳnI3_3Q(^Ugj醣Ur9IUZtԔJDEsPu@kK\>?~gqHBM3HбgZ[@rPw&(ckgRR"a}^bE#wMò]Z%4JUϘF,ZDÅO:;5toC`|N- rPHU:a:jp3it==ivj\Q-ٍ܎6]њ?Nʒsrۇ/sh[)ל3? 6k#&5>;F{nwLg #3Fooq1PiG쾿B* )%35sbV,XEJMg0c>G *,]~%[Sm,ؚ)"Ft߲4qsl1.q}9shN~n_n7d\pk,{{k2-Jwl$8eɏP9 ۲B-78ޒ2?#*Kjte'L_Qt_ʃ6oͱ;[= ;cdHlH `{zm5ޕܾ k^&Uv"?qᇂ`,[87O0ZVZfOR5c~ 3^]hﷳ {6t7IӅt)r1'q_+7qWiq`Be=|vޫf%e\WUb1!2$*>ξ4\h/x;uM'FO͢mAa],->TKߖ}l]aL*[jTg?bV`cZMR7052{0q56Ya>̼XWNA$5xGE!ͅ×' wv(L|=ﹽrQBWcׅ/~}B>NhΏ*):ySHFu[+5eO)O z" A'`88E4SR\Jg:Qi'Pt~#n\?-hsh6?>QT2(]V}J lM+ 1c<E bHK7M:ISAb;oeaq.Ŗ@'mNUc3o3l͉'qW}ٽfy+R'ꆮq@ e]s@պnvg}(M.WU#u >53Z(& vF^B4[7OlbvVTIۊԿ5]ڔ->B 7U&SRsnqܑv? P#eM 3֒:%Ī?~i=">+o4H;B 7m{}<ћO2:h\17ב@?#IRk<_TUKvg}}!ݥW-\-9vEBo^Ol%Ä}Sj]^#j T*T 'u!~!PA"F 8葟cu/ f# T' =6&Ghcah"N )^"#g8BT6 `Xjho'1Ƞ |POբ1+ ^I:)Qt;ѵ k|O׶Ԭh;+I;5R-ފ$Ydo#..{eAX_̨/+摑[?,y.IIk;FPI|CzxK4:@4M9rإ tsx `^遼إBƨUj*G348o[f/6r"EUn 5R 7s՘9-Uz%I5LCI(&@::V] hjf,jRʷd_?i?0`+7)i<د h)˸gC>ME~ L۝@+9i/faj[ec^)omUϦ(ڢYBO(M7$S h />:>>~PǼfy] Ye@ߡžhQv#-(w=EFo!%[U? 19<,īRQi07^AztWm`>|e՜`|ƿl41+ES#Ȍu}'+6E0R=9|FB'=&ƾ2\ VWR lb9cDcTZ)d؇5xnw{bKΗw9^Նؽ?@>GQj<Tꞈtӟ`Aq g8Ċ۩Owmi~{6vfc|t8%~o:ox2&dj2hGUX]Ext$IytAb [xnLّOg6Ttם»I͆[}, 5똾OGWo4#G~hʼ7Ot&ݺ ==: p@ިT>rp1䫯ƫuuj**:{)R ) Oƺyl-|χ$\LDA@J:+d#Azsu ˉیxKKOPT{i< c [&I$Rǫ\ЇߌgBKN(ZG|8FԚff.rd0Y&6S̈́zuMԟݗqT d8=ɂ6=-'rx&G㒨*48Ph**3!ű_&{;Rٻj+ǿ\&z$>NR-jS*$թ%o&4kC6]7R8`,Y+N@=e*8#|9G֫5}uzmCnub7~ K>:x:! 2TyLvƿTv3{OKp7u}1n{dA;T%rNťgZxM-Z(>N"UxqRNԽj^\JzCKW\z ]qqu =\/Ai&d?QOHPoKxj'tLE^D$K\c{n*jqZ<Fpw&I:z*NNI'Šbq3nW~/nQ҅>ܣI~h+;vq];8{5Ux5)zPy<>w CM@fZGIHn: sh{j6]A {Gї^MJdøEh}ztR^idwAJA~cZY-}b0dg;ߧbټ.ڍO֭CY?x9D!1!H`<6 ˡoKS݋Z 51pՀ"]g)@OggS7C4&Z@k~+sw2Q7b$yЈM H\r{^I…_rs;]kP|j*7:!SjuxnqNdrրbaj>{aI!ח>iTj""}P>3O3@k& ]Bt-h~_jzzxTPГ^O?qZ!z ;@?E:suhԺlYR3#] h zi֎n??9!Qz] ZiInZ_}sj|LV?I>&'{ EB=Bеan.4ti^+5PRh jPX<˒z+7qFdg>}8̊@79@#YLO sD]כhNAމJ>^&m:]ji]6ڿoNs> ~FPpNvyu>1"m5 7њ`r5}: nMYӓh|tzRᄓ%i\LlԍbM?o:׷^0a (n)~+4oLo4J4bx} ZTF)EgcV@/-+x $IqVûSw%Q!Tzꂼh6P~!: sV7e>`tby,mW5/;TіTqlΊяrB h>{ pWS@cf}5WgfpU\ԫݝl !+ &OSq, 'V=JsJèNECyrN*W0*םU|jFLg֟FKgz.r>Иk=NSAkn&V SmeI9}<}lyS*ğrh S?6/#ZL.^6UazձGK6^OWȣ忕1E{ٹ)ye Ɖ.?*u%h=}%$m!-+cOָ4Ji\Hڬ(~i=lswF3|<6gj|d޳|(яű_/&x _ۺ9kX];6[c:Q;m@ܤogG ג-b Z~J+3手e=ɟ@Sˏp4<zr"GjΔ=O5<sQ]?uYэ#/tﭥ"*t+ D;ѐa~A4N hAzyHՃ$KGkT*Nt<>GÓdJSJ$5Dc tO轞nIE;d2H H8b`\V϶1qp_=܋ ge缔+3GX=B3}:0qpf>OgZߖvb-ԹӪ)tϘ_ڵhsKԯ{ŀяA4R \r&T,?Ҵ0&un'^+, j#fV/r &mmEp=5/ڎxW R3./˫rAmٸœ%SmM (!uV)P=|arqnFU\Ǐ.;xvUۑcIMNjԃ) }W$:_Be9uw2V!uxtrRnD9xT}Ẍ́\Qҏ<ğх@pQ㿸_k% /;μ~KG?R5e־Gw}$:`ūsUc !J689Է!޼S$6ԧ@Z;/Sؖ)LF^D߭i72\G =[{ᵮՓ]y T2ש7N8OQ#Tx'1E_*={z=05+R8MgݳqFޘEr}Vۿtk\!*jc͞iO54C RGhEAQƁYX0WJž@C NT Pk =_h*T$YH䒄yyM3R+T Vu`G6 hvX ̪|!$>I@Id0[ΰl\_=cFaq1uuP[Ӂ{HI LqJ#AMD̎Y֜,ο:mTݲ,@RGj$~D5{32$P%;h +L 8 .u(ÍBͫwKJQ{ʽ$p64\Yx.ַ_gM/ᱰ| qxۉUY?h8rex(VtI\ӽs:^h_6[pv2Ng#3z5Jm/1(Z_49Z*zO ]~T1Mk.Ҭ08@ 6]/ށRw^{2d!"yL+$Sbq)S ,nj 2<ɗ{.[YObsʹ6OJ9Sְ2~ʉFOCZWSzgghX/ջ;g Ϛƫ/suABv2Q ZBkp$ߔdz`?s] kO ^s'ob_M*ݽq$(=u5[~*:!H?Z(Ӷ͟.g%{ܶg mܯȘ?CqP]IesܻIo:B^eeh"}@tQnPﳥ,.Ajԥ9b8_k~Aj^ ,F23ww9:lr]Fo0Q%MX yYw[Tx5NDVEońDi6uH{}\okmy`pk}|m.;93~QVJMu݋+&OggSFC4&[ib+soʄ׿[NxCZ|*PGtCZ.=m[mkE_G$jI>;$Ғys Z\?/{v͙T5jRkC%N}}_CY5r8{A6q-:Mqg٣>AAT 0^C I}dGu~OUF6G3rd]vy$9^:I5CԠvgy!>w~pրʤ#xl+Q/?}E )H|/β׸ B{G;O\Zᡥ}#2DetvIwa%.a *Ĝ6|2r[ۯo~֕Ϸ-KzbCye-y7ܼ;3Uֿ}O8gMyz+D#,]qUK5{'¤dҀOhǸ"a{]VpY`c,{+7is'ZcK]r^~ջbJ4ya2skx &ɉ-24lNa9J/앯+Gs|}{Q=Lqf~$ɗF_U}P/?>L,fF)\on<⡿tj/ ~-)Zߧ`yW?-&];ϬU ePf-H_9e"&G4$#^g {cO0.qhJKܷyn3};Iv¡Bo2 7/1Oh^lOqգS9_1zjICڏ>Yשo>?:dfL:sdQ7s1/RWLMjr0)vc"[&1gǂ/-q>yRͯ{6x٢2Z6GQd;IWlhU+`5iO`L(ҴRp]@vocLlDsS,=dzڿ0)|6ˬ ݢLl~b7o`d!̐%/\X^ p8їBQ@|#2}WMz mc~s.YPbCCkdZN^kA]zՐuFB݋Yd%fD!=&x5gx>ȊCtA*%3"?ElZ_W-ǽicMAo2{ =EOY3RytOQ'ɤ"%CF>EYM1AJ+N'8w=b>$I̡EfͯNJ,5Vp¡cGs>,\7C4ά$J_V6_Q@brl[Dz$/5=-նQr0h~L0ۛ?a.ع5'qRwхo c ]Y!}:L [OKC;^\0@@ ?tR\t3z&ifk}b Njo{C4-|5}ʪ, d-䑘`5֏cp}tn>8wV[顲rʗd=#1sߡ=[\k2}ӫa^Z~؋xա᯹7["ٰ/܀}S'7vZv=X+ ܟo/sgyx.R?skK9[sZEi-]9 "}o?({۷iܣxHC Pv |~L&:8h~lDhfh#nGL*Qy*Z䚏(TuTwuT]ZP#(ڸٟpN]"iRui)NRN8s缄p$DM.?E_q͙أ&uѹog_;4+EU@ Bp>旃IͮK>\ac! $A.deNκ$DR Xiq&EHj8PQ{}vBdB&jOA.MnqS3 =Nl-*AgE 9c+O$ND4XBs׼΅2U 15y9tJFWxOy,@T&c =@ G-PxC [\O&#h,rxNPY:zL,ˤ#nWw2y~6ỽ&6oޫK=/=:'u_rRv;sIGMӞpU$ JVmf[p%uHUwT:\2dtp:Rs*g\n:Qw{GiOo8~$]j`2þ-v3&%4E=r5f ?zzc -Lf?:؝u9n&{f~5IS Uov6b?^+S DbsQ@}J<@|6 x1lts,c\._޼Lhw M}`UE5SP* 8gYϭ|Mzl)2z9`x!E(JL)bfaI+۰1yyOǏYv8.rI;Yu?L(I!ڨV/n`/sK m!S^cedk7MV^Z@TXP GMr]]\[z[3d"sͯr w>^'{S֮봜˧w^?~s~s}PD쟷oٕ݅n65urR/rӺZﶔ~3+zӃ0iTn?7Pfͻ}OJN|j~L*Bɫ&ZL55=ʱp8ke4\)ã g|{DeO ;̬ҏL4yLGBA)NQ hx#j;:'=2[cCMzԮ͖xz*m.p%9;|[$h~p˘K@}U{kTu]OggSRC4&\EƸ6T q0Zl ER<&!/9n5AݟܧvrNgWC䪤D͚֩FsM"̝},t㳷j0gEc_>vnOӃwTy20lwGrǽL -tTݙ^;Tb54u,D޶ʜ +>V HR_,3tݠN W7/R׻\k&$c~~ Qh~y{ɯ9|Kn\)9xuk7w#T$Iݳ*[*s{?Qq?)*SkWNU1q~co{yXؑY+euz {O+XF^^Dڞit D2co k셗ܞ{wIj6Z6=Z̫<MGIH.(jO|U*n|I8Rvj[DvNNU=_-\8Um`߯½5jz%8(P_'w'=ϘLkDŸMޝ#r慟߿'ˏ w3 ke=wbQYg)={|gG?p֞=BEj7!v'50goavvaьfd;7S,4Z<{fùHҞw\2U"Ժo#̳/l/XLbǗa-1a`8e; PjZqŰ3žZԴ`bbQiS˫"mr7q$FhX.̊é2c6ډ, 69[HthK-9J 弞+8xn㡼>1sl\X^c[c[*(%*qy 7|~Z^;A:~h7|˝2XGgII;5W[y/b%VuO 9xˣzFsG#*4%gܓ\mrm3tTt&+4AWMK㴍я_Z6E.܇GƳM/Gt0 sZ5KȀ/LzI.dؓx1KvA~QoѤjo>*FnN#`aZ3{o"#,UgҤ*_7Boyb+hX%Kj;a`.;O~(4Em^O~>͑cVOJKs4tGL=DuJq'ZA~v>їTbVKҡPq#<=ˁsCzB8p'T0h1_RÂwL6rGOpEWwϩqxcR!Q|v}6\fQgE5A*$X{=oGtZ߶oQ_<땍^~Un~L:JP/g*; k;;f?Y1s(JH*/dNO.uܻ?^'6vyļV'⹧NgiXnvS>楉o1~{\ҧ +'DMv9JI] `[NyjShSxYZ'1{խI?F[z”_#n0^Qj>[]j7zwþi_|>~gqڛ>z0~ljZb_;vϳ_k|{nz;t|H$u(* H}{ggb |g U͆F@ s=\tDf*.&`J h,s}u{VSgZ#8Dp V=~Ku2jPUz;/&i_5Mf'^0(P# ˯v9LYHF3uxw]g7pQ4~*9z$ZFpeA3y]H 2Ri&oPGn~7wKV8\-C+W\TXmsH>ZҮ߰.L-> $b :0U|qpڌ{5Q{'?ƤˆzU1ZoG8RY~伉 InIA/h!3rƳ,BJ f!E Mk*NÌ)A}<)"Z )"_ 3`^JCFѻM=_m uz_+f̜+\~#-C8(<@U砒)q>*}+XΨ:=7n~thS+|sc-V,*UwdlLJ}bpbW:)N_Y#G -l1ȋVfz!l5;CUP䅊KbRzJ)r>߹_3RmN)i'5']7w-(egjTvbSD6Y}8#4*o(a8~w_ֻUnm!߲f&Ms8VNw'؇b^tsFOoZBz~io\acߕ]g< 1vX?Ϸ_/|EWo5YuCo,L; dIrq<\$:ۏؒwKؾ}UrL!^ o~Ǧ?]{]#4ENEߕlRv; A9oQ٩fraʍGycc%zTE57 w[8REv"oɉ:ז9蛌r;inji;Q-شma]M:.:݋_X>TS0ޖIx5Ā#,̾~%}Umm?[73[ˆ>pzu)z Xyږh@k'msl(O=q?7p8ϰJ#wFz ~Uw!TZDRJ)i{p:/ٞf>\LK:=~tf{W62r# :e 7DeœLj8R^~w[z:L7u7 Y-gM˝ VqDzy$Ci'vh;Дt>6DD˗̞c' dOG-?#:NR6~?yٖi¼ #/Bo۵.0z!W47Vv֔#FPt"ߛ=r0y`PV(b^z\>Ώ[ǟ/7QDU<66/?۹o:bI HH쵽>_rz`~?ә6\?}, z\xX0 {g(&Ֆ!z|@-w ¿7kF:)PzukPVQX'jqzKR~+7 D}W f4Uϩo˳>U?}q冿wx6|'/ʾkrܞAoMrʶ[i.FNUXk{kQ]6z_b<]}ʐ?j("#eSW÷FZUj_GkjV_hujSmB׾#}*ItxS:kd +'}G#cwRE>5JU@驆`C߿ǿ>y O0~-ih1]]] =Tm%&[=1nlTD.nhOŷw۾bb ?1(Jdr_ 3^+W;sg{. ~&鳌Y7nOv{W:7cDZc]o{VlJfˋV?Wx! Qco}+1)|I{QjXsϞW>n<W`Cps)Q}~\,:]N4uFiBH2>Vx:oGxı}a~sR:뭟]xJ:GOb/+}J2.p <2x?Y-cV>*9v`gEZdk9ϪH}̻˹Y=}e*ƭ߶\4}=ﻺdexe> Y=?^qqmhC~/܇juH\"N;9-o"&^v4=_{T]]rm_Z5/[Mf8u9ܷ۟ A=o6\GNj k˞ OggSbC4&]>|[8}]&'FSACi]RIP.XR:G4.M&p5W;T@'1t*|\p+`=ػ~߾ ]kkg柸;) 7:SGh֐NMACVd ֔TE xK aUt,L39gj@(]TN$'PHˌ24^B,׸?EF R9(mRXS ghNօk;8NRu(eF"QݵV%:O~([@`9O.PI2: }^Oh֬9 2h;RRЩ+Y(,i̓`]Ʊz&z]_Ի8a%W:gk$vҡn{A9OwsΩ׉SĴJzr SYN]?%ϐF&e8K}ul݋53J!"7dsXKQɵE =sN2'jIp#2/}r6p2:I4 W{jZSsG&1XQELq~7/*\-{aɁF@qynw\XIiE?鵪/ V)3'9zO'oM"sZoЫkE~ʰn-_K'EW0 D2"󻿎_Nn5;Lt_nc:?\>/E?܋RLv+.ȕm"O Wsr-]W׎շK!PR/vDѝȦńO0bJ|Fq=f?o8\\/O\VIu˕Yl#=),zCI:UhuJɅ'KJEDtȜ :O̵OIN6Xc~?xNX uhuDEp]-|W}G+uc̲~/3|W]^ě9eMpViA 8|bلa0O&~e0~\s8K+I:o h,M1^*l#ܲ@) Vw6OwxE.` C8)}8sTQN(.q 'RYXgJ<+oKJ==֏U_Fu_E4FԘٳ|ڈ\3Z{-\c=uݮ]s/P&}yaiqeS@8p{C |ZЎ'{dG=a`qȈ~R.D*/,8 q#Bq':E I*ztV$)sPbvQ+G矼q=j"j R?>Z I$HJ8wJp*Dt;]PZ#l%S.G2{5wYќ# 4wKEB#6zA%rZz `ۿC/UɏCVsŅ 2>y?_}땧.h/TvbX_CG,8_|{{۲|ǂ蹊퓜5Jl^ʁJ"+Ex\M^u\4_^}jXN7GbРzzO62qӚE{r{YnسG&D_{zbN]`N;4Y)( 8cZ_ڙm@NfxL~ִ1$Ų^ ;P띑bvW M "@惒mVjvN!ςN}T=ŐMo7ǼƬc+a%9qzK<o*xdn= *9a͚p\l*" *iWa`L~<ܡ ;֮UD-E$ :齗!@+B {ERfDG;W h5O~TL<<:s=6ǝ&Yv9ad=̯jFng ;ܻ<+,^g!krfl K  `>,I2OV5T_^L\mV Hd>IV.z;NWΗD~/I,-2g'Ife>E}:.mӌUjW Jrtf8P!b>fO켻iV:b.ȁN=}"Wl*^"@2u`S;@X{;@-8Mу|+Ʊ,4,ŷR~Qiw~eLĨ? sB'[Vv Y/hnSw nA+o'S;L֩#`{ #C&k<:KWS<8Kb;J9q'po<> G/1ԳvO=>n_#&o.NcCz|Օدz1ܧҟs4*OIVNmZ-pukM"%R49g-raa&[݋,r9.ys%4YgkohI~唫J*l?5'? _kbf? ?w\Αi6cԝW;w/9'=Igߚrnu8ɍbs/ؿϣQZ!B4{n5N)q`3wu5|gzp.Lvw5N~.z =vyݥ|ޛ{L}߆I}مݽrdҁ9'2)h`~[ܺIKCy2Z0RP\Zgҭ׽_*YpaEI\& !G<;bc`,TP};ONXZe7:r}7iיEeaYr6[vo|d$c}Ri>ٹijNޞC+S[2l?F@̃,T*\ Y}p-g5 !rc "ٯgČ]" P&]HI*!~[Qo~F{ԼIC"콮N;h3S/9?u6g_^T W7c !*G4LE}l|jc)sOGG+Eיp9 hP/j"RPkp$Ywe%:( ۳$ =6&Xf8"R%$GU G^5]!hOSDߋd^GA"DgI ]u2PF &}yhBNQ!c0t H$0gl؂eͷN '0Ąn%2/n_~'EwۛyOX<ڲ7ʽYz֋yy9y$y]Lر֠f9oW34;A$qħPFw[)V*f9WC1s ZъEymV$U¯^x*+g{c6Vz%U(q1`қ¦/Wf$Vۯ5{,3-POE}j]ۖm[qn lg5s6x㜵F#g]M{RҲ E_ޛ|i.~VEN\Tm׍4rIYZ| ViG3Qg~ن0Wfx9_d{7 X OggSrC4&^`ġ3f@zU:Ub>M!1\eS`<^_ofMt3оq#^zZ?DW~ݯ#8Q ӯ@Z̹H)׏J=>j@vd|1^\%,jbТ܄ 4=5N έ"?9r!+^ۢ)V]L )CO-r]@t\yNtJ#!qH;R@NrAEѩCRZ_-?.=؎D !A5pGHT;:<(r#9*@D4 ɀ&TZQ0n eH;&RV s0n@ND_ ͟pW%sWNӳ@ ?Sm]_ ~y'ocλg1aU_/=%>$ ܩ6N4DL߭R@ю'&ɢ}hg$zؒB?Yi ''1G&nۤp銤Nnkqdr,)TRYJà.녕] +m12 ww?+*EhqɖieC]֣xGqoYۏT$ Eb 7dDy!`~Hrm1/RM}o^ǹ$N=y."dR[7Zvq)=Ec0+Vx yǛ%U*gNHkhE&v :KޱXto[p:\m1}2_' !!G|{1/G^;iLz E"fY=?5ӳBCr\] -_*O8d9lv>N\juQ )^Z'lEhbo#8StKr/Qq,VcUc5NyOjL]ua:Mz p'nY&t:<]~U?s)Uݣ.n**v?%m[`M-Z^xko5 0Է67GZAi[Dz! yGNܥS/~L{(PÁ1\p. 5H[-3>?ϔ;#_blaOdNyNϗUhu5SXZ]s"-D}fWu]j֢pKFS+L~7bI<P#BE_0BNBϐZ+}__G)!TR:^rqP+׋>$YG$yZpX{njT ӊgM:;-Nj(^~Fd~{Tu8*R$EmxHa9gvݩP{' PT 'Pd++12W Q4T$ I.RH^\${ ] (*w! ?HQ$àq%6oVUYF֢|kOp]J|y"sA[ S`SE4Wbc!mK-S<9=\xZZ?;岪+Vf06Rqҗ9Fϊ$Gak?#v){ hHb[,8p19FN"RxUq@Y{K" (Dh|ʾ{ǂ_E@GۋG_WԘIB }vrIբ[E>d]v ?w^Èj^>`s|uAfδ}vlj\j_N_5SgPp|%Ec=y7\WrR97-㨕:yNgt]jyfk"~sԲXxLgr#>J9(z2Uz7*u~g`.B-/EMR`FodxMk@]/GxT\y &Md8ƫ^R->]!)<&L@@< UP]\d? Ȣ%)3|˳>DO48UTG'9Uɷ`[F:_HE}їu+wi~JDye]t9wݢhRjhXPQ0\ Q =t F1H}q&90E $;C⬵l.Ԅ6ru,QN;Hz{9.GlR\c;OP޻VGMi&NuI tu;~SO=\'ّ &R%WyI|sxc/?y]>Gh I{^j R { O1$:zdĻe f"a/*Q~m=7m@|}Xo4ϝj@ yBA= 8W쩍.e_ h`$a͍4PsYsL,TMήm[, aSomVzlޕϣU}ȄaXll-8U7l&Uͩpxʦ~M$mGH?漵3\]&$y2\y&EjhNm5O|dc|sd3{4myQE TBZL(\}(&2P9%9CWzMl~y6#^QdUv 7MeoCF _0_̴]{/~ p_Խ /(1;|?1Pq =V ]8믕nT?k\|~[AY޸ou9K޹v iA5m;>^r&m+Ҙ aw|O:edukv,C&A\s9u.Q{ W]~- z7^چȈ*i,Z>"DVw(} D6dUV* ͪywuz~}rmDQ0!1;^nvZݾ3y>CT>sYdxCeoZuZ|a-FqSTaZ}빞[1f"sx7C&QYoHT4Iե`7%2',@R p)m;[]Ny1SUЎ]9yRy6/Ǟg| ˰UobՉKE^?$W2gno=MG1֍L/Ϫk-׏yOκo9CkfR>3=Է5%Zfb9h@^S/P>›(ݐ9y<ה0/w?t8;SdVpQ\U"CGpR2䞱3]!kF!}V "Y)#"ĩ5IfԐةY{t)R^Vm-&j2۪ؓ;\yװc0A0)5]=칌 _iIbQbltmc9. hE*,q ¼mYi¼L- ,\SCF}EWx4N46rd^P1o^ڣvooz(ym aTI [Y434A Q'z5r]b'>-'Oo>wRBn@H=\vN9|˫sƿ<ڟL^`jOh KQ_ͮhAl^)a”:MKi4ۘyxl>S~M9l/_g[|)m9Ti6`ӿn޺r~ov|nwnןoKiY1/0)3sP*YSYY{R~}AOggS@C4&_"Ko-τj5n'/lbSDû.+ E V ~ |֜?R>{IjcͮD?vc'9g]{Nabp?K+˕PU[n\v:x|OlCAu2?6 4jLGnS=}(AZNJ`nWK oET.dRz#4vsvQiv񒗦3W~s|/$Z9OyT9^+KvŜ]@S7"x^+<UGΑ?`hpgUQJeߢ(|^`m` OʽarcxOo,8Lb93!\lkMnlDxQERomI/޺<$?(pPyRի94Z O}xv:yͯʽxQnC$םQ' 8li܍Om;HY~Ԝ)h15waLe=g{ndYE}KwbCelU˖DN^k@vn7>SCq~aF֯nnB-GۉH9%ܹfܓԽn߱CCwM؟=2m-un}E#_xIrTO1K:H?8v9r'm FI7^ONa:ʠ3l DjxXBA~c9<4\Cv}}Ccz_n \' 8IYw^fm^:k{pb(wRs l%?r]eu R┬7UGn׭EG}ⳙ{k7Ott`*]4Ӥ%~> nZ[UlRC<4s4պ2zl]Qmt[\fZ$TBs^Ol>b_K9yL |xKiQ߿D?/I<-B2>':}sru%Z.hk6Q_]~_s]aoa-vGn] ,/ɀYZ\Φa޴{8˧ǘRU?TUjr.|Q_EϰNFGrݼ;q{75ߎjܿoxo%,۷_[~tC~nI=0ܴ!7 EճؒiA ݴ\{7as|D$D[l˗8GЂҩ2^AZ&B+֥:/rYɬGmWxy\dՁa5w)8ĨLq ""Ujf{կTgPнT*3feEm="̨>@F/"SȆO\$,%!",f ®=#mDFf?B؏9(QP4^عӱos]*=Awȑ r:O'-xsWQ^V\R|mwUۣNŒ:{G]eʡ.z1׋Osz.[XqVz3 8ٷ.}Ozi+\~^e]~OىJE)=K>W4UyMfNCN"?uGst"Bs6E @ }xR)ւ k#tlʙb"4*I4VTz)]L-n5زaOx=+_~QҏTRIQ 58lQv{Sb=qxӽ,-ni*{}XiXқoW8ߔj"4Ub'|@-Wd.c[SFi\>xDG ׸{(_<4zZ wC|{.#3 J9{;Yw1n:rV22ebI2q>))>Go= p_ FVl$SE웰 I{iqd{ f=ylC\G?կtUT79}?;y05uG<\! p{Ȼ{=~{㽎~tPS>taz[}>ڷ뗰}lg\WT+Pο͍v#ߧ&m3^h,gQoRa>f@g_+\Z "a+Q`Oؿ<]ZM)v X 5Y5h3ő|#ևBg={G yJE+"SV%Jzܳ}׉溶ԭ$!zn[v"Wx2-Ǹο7+>̯MkڼV5f^Ƴ9 JA'^ДPlCݷc_\?G]FdKP njc:JǟR#Όn'QIu ,(5kW:K'8hǞ+S<]&)[uSOB3*8S8t`S%#jd:;̧QEإ3U~Vazwĩ$ 8:ODg4#i)DlA'0CӂѺu+=sgߡayK&4JӷE)eEj߷.Z ?F rNhAk$nh,㻍|*nF>{C Wxئ|-[fm11mtPLt61ьxBsiV DBKAQB5CK 4oc`WwuSWKNX.ϹujyOy@MOwLw &mU4rkkD*πsZȴOvm[+\Gu }a0ۨut)62S׎~9|!crͿwyq;3x뚈׹KePݷeX6z MΝ:=(oԊSI rz6&sMx2aiz&1GN^{#;х0۪ ёhz{-qb~}&V:@egcf8B*= ъw%hfNɦr%u"Tc]MV-NJW鱮i]>giRGO6ioڜflCֵM/<ϛu] p}fuq?]HHfWl" (\-G~\@VFEp ];6[ B:-;PJJG{CgmSRT8#k- Gӻ5ה5p:Uj hH'cgM7N\k +PkWE2V'k g74yvibx/ZT鳐@A/kӾV")1O頱/QM@wǞd"G,짹c]c;hG3j߽W]ԎZF4>ШELTK($ҙs'yHA/sAD5+Dψ}6"3:nnUShyҟcʈ+xzܘCgnȚ)j1>eH<N/cl~C3mSJHcƀc->š6/nmB)v[W dy*]̂.: ҉|S*X@eBN]CߺXwf)ߔRdj~s '8bgsD#WuK[aXcB4 1nK> 4UtBK6ƘKyfP㦣$|ǞY|b> \ףoi` ʂ(p譿BC } =a-`kR Yg7si>Bv5۲1ZD ;]%ȝz͢-y >C.>oţ&#DiwK R 2H'ꑾTu`@֒l!]mXgxEpH/^uA@T\;H~"9NV[\{ 8X Usa"[ӄVFD{6V|)mTDJ jכMF~n]+b_)$Y.>L// $i(]|LB^7QuxX:clȋwJ/,[6F9ٻof5$1zY&X[U* ט,պ_}_K[}~[ӧ`FUw]mՁmnC4-HKWOgߍ./W,ά8ȳ(OggS@C4&`^?~曍̸Lsi,dWC"'{+2q6g/j1KdP>TݛO܋`'O}qbp`eT"N/\Ɍ#jOUC5qթN|@t\y̩pʽjD|\=엙J" D)^CȗP"ked(n¥CT{rTt\y=Hl=tDPUfЌUгJMȚGwHwwGCtejwmiSvܗcAx(OҫȻ Ip>h=i+I5cDVš :^R/tMvH+${shz) 8gzJqN! COnDC/'0#AgW;ۑ ^ŪjJq5DY!!m~R7l"52yOrc4f/D9xFдqZGq|s!nTd;E:b頋w'Kxۋ+X&\9pQ;/Ŝ=G؆V6+$K,9:bVރH EŌ}Y]Ņe]rԻBOzO`(|-箍fG7yXJQL5XDhW)Bݍ[_da<“fOs&.|lle\dVUb_#i鯖2K<kJ˝A]iCWinu$?ss#>q\l1ʓ :/ЍeN*V?Rq֗=&׬r϶H;8,ki_%A9"Q U:9 /v>u2n\\ex()ˢ۝9'9﻾[/{o{^b7_)=߷nM_DMYzD=܊5G fPΈ0Yc쓾e耩ל>2~r+@ma<:~'`+89N$u /厃6-~U"7n2lf$S9k?-s^_J\ãx<)RiX4뷹joKn]G<0՜C߳!/y*Ueҵ)Gq٦Pn4`:xr6p|vq9JO-t7D:p',EIOFBA2N,K> ]%jעvdEW%)*=i_DA F ~)fF"KAOݩ8ɔvɺOHCbQ}cT=HUd{sm xs't^sQ (rpRNQWEWSܕFjL6=>쭳ɂ'`!bP TZV*oDBBf"vJ{v(_~ U*Sj}Mk95esx Fd^2\ۘ u'G6n=8c [1 wKSFc\гeLPAjy?>k x/i½D6?]u HFz ^yU iAcHRe:iqbG9t09,ZQ| >j<"wNf9>7>{)_zM!ҒZBʛPeHt_ַ ߑCvn>HND7/W9c%2cY]#hLNhQ^plod&GUϝf ԯ#aOWmrX(l; Vt|nc\ .]ÃB}B2+2 yZ;>L{2v ԛdgwo=t{ޓ`nVi}>ّ`u`+\b>vǵLr颏 śTrfZ=;-Fl%ӫcaU̡4f]Oӗ8n$,J[SJ2SF.N ]eIlIt`w[믍_'o_F7qomW@pM3}>Muz6e%<NyF"ВKI]v[Q/[v~2-z^Jд6z8EP h%MIoZ^kfUy ^".75CEtgy|{Fvw!F&r\$/puh"\FV6__Z^I9k@y`ؽz|NgQԤBxCiЖ])juґϖ)C f '2u m5kj8U[}dOG hHCKPˣ\8Z+jCl1SL>5*Un‘y8sV~<2٬L\|PE 0QKIɞu2#Z qBn^h/39q!1$b/6 =%TlӾg(+[#:_T'8 dPmv+Uoο\T&RQ玴I" so:z}z{aٛr 5Dsd fB$mߥ뱶1wxq#xܟsKPkGǃ3M~>:H_wVfR7`K{fTI~u|h1⻘m⿽/ f^ =. C2ea{ܫ(.so?Rf#p">lC< , .$rN p"?Bjt 萻+ 'ɜ0‹-MNwӯ 4̝ugܘq5Vd~ >6_f >eLbOR[{~g}l1_9r=z>-X{&e*:U2KxsUj+MڹZY qnCl]y"ջiCźP}iDŽӮQJl 2lboY_uvwPNuqmquTx\뿣_[uGFםz;]xX>71mUyndϽO 7A xe"#(3JdDXh{?At_1**?poP|u[{Ւb=#':%u$zvvy^Xi&VRM]}b}6ǛJ$3ae'sQKK-ͳ^wp9dX7&-# 㮇?&Ca[s~ǚ'|}OMw%mԊk<韅nxdtUgij_4˪+Rg 5Dƥ8}|L,[{<V =~?*4UP`١#}D{49?lnYdl:uOOggS@C4&aw>՘g7M-]]r;~A >bsFAG*J6.lܵD$ve'A w  q4APHzj YC)8;TB=-To[}͈~Z5Qfg5M]#x7i=^:O}. ՃyehoxBH qwGNwh5=c9TE!P~O]44{iO_ Z/U"(yHMgKO4>T+QE1U#ɖ\3;_Q!u>M+ZNw܎Z@]GQ,3s'lW(43S#q@'xS0΄BT=<@wvنM~2x_2E yvxz?C{3$G RI$TCGy<ګ(Uxל!:vS;_w#lc߮P}N~gˈ, HDL:>5n-cT8 8VŤ+NUbВp1:>LsJoU?}]L>X ^a4c}u 2:T, tߕ,Y,NJR";3(e$fI:UY3]/NT`${.9vJ/_D"$G>abnWڷ٪Tr@\l9 9:lsͨ`$"|g`p^?-,907kyS9d_k ָiRk5J;]Z1?by鮃>n=-y'"/# 9{§ O ǂ,UJySʔ-drMď)xwUIN߯_h=0G\ uuג۰ܼTkbOѫ̰CxDtJĿQnҏ簮#wUƁOzr9t+q[",>7\=1t!!56zavZRyDPH~V[G@l^e5v3ŘNz 9꜋cˊsEw]t2wM?>Ԏ|+j2 ZWaܧԫKo|{ /=qP8I8̠B)O6okoDM*hg%b -oC+eU"S+ՁCI%ֱŭYScVwdqB%>GY3>EG3D+0oO)QϢR=ήk^~s YN% -{PSN$+u}N☇6-5*-dd΢2h5SSNCݳFPS:#Tz^~_?JIpP9|FDMYˇ^Bɨ:Tg}yM~. Yt84,5RD (r *Gٟ*"{B0L0Wql1s% RPWSQ, 6@BŲ4{2:etqɼⁿy!:o b( Vw~v[Vv&ײbiyϯta~ၯy ٛKX@̵7UPFT)?0c}%ڿy+V pM[Gkחk+E*;^uv/eeϸ2XzI~g}'] Sl1bJ0lto =W/<>6|K,C!)Frߌ_::6KBJ߷)W+BYujD؀0F(:@ִ P^Ғ+i, d7{Ϙp\T7jJvwK+H;,hwv#JF l^(6WqRu%'^)wN~T3W=%"1&W WM,>.0a<5W6꾂@0UZRkʠ 16Xu~Dh51򩛬% 뼊YoςfOs<_)%cZ=~ C%~f7? %s-^'εE3Vgrh-S:s$&zĘsͳ|v[[]wWk3mP]lwVլ' [&s@ٺjfBdb_GSקg;^oVrPͶn]1Pe1%۾߷'e6_m/kW]{_@j>x>:TЗRxKR}~R7cJүD [RC/7TJBFC\}*~DR{&|Z3; 7娑 -ޗL#:yڰg":%*{ɚG1~5z'E{{w;i혫> SF?P@++Q'(=IV3w!9 >ׁg qd@.8|nEu\^طzN|OqhGSFKHs9|_u9~v8iHz^nuZVYrQWeF!C鬄 BDJ ړvvEeԅ|Ɓ>,َةQ5c|e#t $'T"+Qsdf͙kB2&CdcCܡ]&Krq.HE쉴1z0brLjJj݂ototWČ+pr#r;r1&\LM@[\]ob}z϶hM& *Nm2&U/Q>uUj?)\4 !zsiq)ͽuW͖lԠC'PU:w׶6-Uiݽag^鍱Rҵ6q8E$kěz'nf5o)m~uNp:>۽=,b+q,k?fsS>:'}yi 7&2%xǚSmyZGo2i<\bpwsaM&4=$e?mhM/^tgs5̋8yg} wJlp5 R'$j?&Q?nqg2JR$7/ftWAj!U={کӗk.*2SrzIs/'L.ih88isr9_QXi;HEj3V`Yo[{Huvks]Gw҂@w{֞^j‘iWiv|?Rx? tJKs/: Ŋo|IӬ}$ ov>/C]㐕}rijQ%pXOR3h_;.cM_z9toZ JŽ„ػ_px}OjNgOggS@C4&b/[HU"w[>KA7uK߼WT8uߤʲps nzua\Qj@n\(P󳂣 (;(U0ZּUs<&g k,T3Ȑo ZkCH`xeOBd oki.j*{"mj ֚-=O/+:2`AtJma>27&FJ23`C"aO#s4}GrcT 8}U'= EHvMwEor:V-4o ;*T3ɊZ#/z4z<N6ӧ]A6ڞIQ˃tDt4Gȗ}ŕ+>~dhl}: }tq$GiT?U Nȩ Hgj9?ɞu|>e7GQ =%` 4ƍ?^nt%g)\myu(*m{obPξ]tFo}ط=cT\ 3ޏ_N[ )V rGAIĽh_+va%k'!w݃ ֆ1㓗hϘ췹.F|rnSu ;V[nH=r=4shjl֤KK G'jWeH޴|X$KrDލ7k@)GƬo7Ɲf]!8ycʹ6i4]=C'kcwurTDuq8@pGj7iE@3ׯ=nxkOut.^:m_u4z~9;2R WzzCptKޏfkWƯK5%[nJ`Sd\M(|n}(a[쾟GHcoO~6LT ֚W-KE#gz5M%![.Fۑ K^m͌? \A, %[?>zU"{OB֮;:R^Pj*@~ݪuVe>9件ʪIн2iسg31_й]Cf2(>jjL1MIY̺_ѕ@rwF=>u]HBo 3y} OHn/c^JKV(Ϻxyv2U GBW Ƀ:Wϻ1:U3'SAˊ*Skq4:uq:{=^~Zg (2q_5jEAQUeرkOWbP]zo_QE 2jF ^hT(ێ|ΕvsTABNV0_+r6""Ҫ0ҷ;'gB4v6Γ m8fy=MSgXkh/2rH]9t~BegؔN8w3.ѝ[c{A$la^*_M+n8]t_,#[m,U^]ѥ, =tlskr<񴯩z;R l7BnaL+/A?tX|/yz}>*9c SNώOL, 1"Og!5u,GQ볊il>3UE ӽ7B\|bTIEnl< k]#C2zx, ytܑ\[ .uk~W{>;->k׵2q7J&+>Ypܳ;^"!^M/ֽU?˼aʏ' *Åb8==v͏A7秅u$@).Uaq:-{:]:[nUR]q_\$8U*'snmxNZ3[MЕR(`k 5#v\mV(ߍ /INNoľWO^|FYvU%1:z4n%$ۥ8˻UWE eVMu5%ݮd]y+ߕ٠33}v'qJ2yve>eM#_؀.~;sS(l{f@Jrҭ(ůg'L,$.y( .8MDV 0p[g 7|3OxvS 9T9\C44`o,s^3_\N3vX+GvTX*|~Yj;Pns_j"4Qo8{]]+Tk#B7GqH袻ԂF۩Щ{ӚIGxtKeW.di4ѕh?Οq0UHv* PƔhtT m4iVB#/$1iuL"8{x?Żˌ_B#G+B-RsƜ-с@jCya{ P<ZZqJ hivE>gS] }Op~0̛û89|82Kq+ט03dPj9{EMuO=wݪ1[q's[={3] Wtd/Q3܍l1Wă",k|@& "3,EzblCRڃ$6Q! fE؊OX36W~1KKBuZxs}IUt!.C6kْy?|&"]Ks7]z = NMA!i܏'\d~Os}+\Ww(x7f6)oς* ]w 9+<7Tg3#ԓyy):49œ!ۡ)aiә^mV>^C<*Yche+ pm߈ZZ=c-.+ܓNl=O eܴ^8OWݮ+Sc_XIƈUVgw9^sWA9^JFa'z_1<!~X_q@6_9aI7vłޞ᎘OlnoVmeyddZkoU\̻Qt%7&+UYP|Bk1_ svb-8K !IyIR݃Feu'h@ҀXM<"y"$Ub󴫆qn#.jSe֪:.8]l42Lne9~e,ZGbaĞ-e'R8r0Ig s -h 7Eçz`!#%Ej.Ўew9<ޮ).TXtm(q(?b8k5DwU'쇦"KkԹcfUS~˳?϶.gʰS5)5HCj!gO2',0qajA9"ٷNs?Z Ԯ(MGׁZ*-]fGZzЅrTuPD6dկ-TJ( !/U#ȘQ~?R׳ C$̐NF 31#)P{.Vuj%5[A/F;Ʉ en:ՉrTe"ݔY) 6PLk5PBPe-!I6TzL:{]HU_ZzHQbRϺOQy`PN+ϱއRLanY0=Q?.k~{Ou]s;.̯@ǾwZcwaO4<.~.7mIDz 4 :qHMcQؿzS7X=@ZXf@A3r=ɓ6vbNT-Ӫo͑߉G#N\lw?D~B^綟{_Y.I?krAWA_yv:TV]:nNtK ?_/ۯURNK^^QAJsF;3^zp.,zejNRfeOB[JZM j-.HYeЮvjLS(G񙞫!zw\䨤r+ϦxgYdx{Ԩ<~:{BeYQ{:G#.Yl1֛M)H͉bc#Y_)FyEԒғ2_|DՓ8{1)|YPԭL2fCxotP+ޝ>JXtfTz$ 3>]Qk7S>':=C[|0Owu^iFu}n[x~z&V!](0WM*u5:*8U|Ԋc>kNl=zB0HnC䓲ɬ)rirZ}dClmY_΅k߾9ߧvC뺶Nvy%'_7;ilP㛘OggS@C4&ce>G;v[ဴ^I V?ۛ5Ė\nz:p8S\~$]pr콿/uWO*VpUUjg3E7wMy*E]R1$џطx-)^F4gn >$IC Q6[z v{s^qT@㯨8ѻ T=sIRPӑ‘w0Հ:@!zt;ߩ5*t=J&6ԧ)v/A*K:fuI5O!?䈛~+!YJtVjSj[Gv"9(GsؕxiTjʿ޻N|wT(Jҁ;u" "rj%3QfZI-Lhzq<|TI ^m)( <-5 {2$0TQ GA3-d MUjkgm v&Ʒϛì;H+wT]>=K>PRj=}3՟M_lU"y}l:u()o'%]= j{9 5m Q2LG5Lǥ#>RM}`I}ڎytZޛPf"|PM͏O\M q;ZoN{JD^Lu7O]!{||;lvV28psTC;E>wߗAO4[scj2;mShWݷN۹O#N6atyђPBUdznkKi҇[0}uqQT<Ȩӵ(ʸv_[n;BQżf֦SL:wPk]܃1{)F6>Ϙ-ٰvo՞4oS+{Θ=z5_+ WS:_pV>86-6#݅( c&^>z6%dƹ~JE}|pnH{L5jFD#j|\w0s\ogUŵH_+O~|e~fr36yXKrx5}_{-> UzԚܧo<@4._wU$Wm9QDŅP̢ͫ8vNKuX?f[.KU.eىKX5Xth:v59br/ aL4 w=mŵ"ݱ O_i-~;'TV K=ܙ]m<2ooӶBD`~+7]D? pNӻ#`AOƾJ)jW9B$Uxq$45Z?M%V=SxsʼnD^!dPtLó띜%5#^]\ /i" ͘^{#{~Fޏyo-2/׾sze5҄8"pV*R#NtʌTOD4)df#e²=WIv鬋IST {<āGNtɔ(_S(dHi NawoQOu[ؤ=4>YY#GrSj63Gnxk隻{nILz7p5ϵ5P1hptV_խY11!._<UFډ_NЭlK %SvɭE37\1#ځ= SE#l lkg8ps)7ޕhƗ~(+6~^O/dc$lir 'X<[Uo-6[%4' :yLp]9< xAO#Og J϶}auazv{w5^[W,}(aNFۄTk?gZA.oo"6Iƫs3ѧBy|l+Zpbc*Mܟ^irV5gz_lZb Ey]ѹg$30v%JVdF9nWCzL@h+UBA&|"va2*/qi+! pEO/6˦s*1O/ >]ZY"pu/צz`vM0lޯ@[,>JWT|@Re\_\O7)FcsbzOoXG3UfnI=m6|on>dlON##}_'Mպf2Uy4i6#$>6U{uSWv[=/\ y)F6Za6ycm£Qc3޶7-a)7] z- b35&2eVNR:{㺖s5[z'So+:/N֛rh=>"eAd˙f ϴ(ђ }0 ԅ*T4u;wdH/SN0%:Ndɕɢ,A]Y4WѨ[wك!BkG:INqM|9g:QL{'Zi:7TVݥc vڼ^LՑD:U4dwl5]/P.t֖&g#DòD ^0* C"5kS{uS~ܟϗ )P Bh֧J7Ǚ{&͉ !#~. ]QMUjP ( g(LGOA(x|<"K-|U6vճ?9"q.Niǔ@xNdP[ Rl||ΎxڢH'{R\p~Hg,{;J7sxTf9kcS@wo6힃]>ykaϭiR^A[܇?*MpBgv+CoE6FdpN {=tz{DQOq:wXh+UԋĮ~qv.v{T+ }]X{F{?W$bqp):dݳ[/ /tIuσ|Qn9Aa3͗ՑDT#X5&t6}(Ntԟ! ";UX y";M8:IhZ)O]31Gw.8I S(׺̑3w9Bt[6Vsbؙ ~scE2_ݓ6JOezHs)_JuS~9e~bIOe"\4ND!]4?:K&[f]ݶfpN@篍˻3^3-ķ|7y.Vlol@3,|6YA~~ʈp3$8TbC[ c48ɔΕx U0mU02H0[T/ip./Tu<C^JԻB;QAu+2"0#81'MKj_>Z~GJ䕁LT#z)qAݐgHR}?fH(ԹSIBz%|̕|̟E6ٝH1 1|lяߟOq1jtOkXQڵuף[H\9V̨WQquv@Xڼ˻QtS~}|h +-BIѲx@2Z+U#:JR<ԦLX GGrJ]O7v$.{ZxjϽ,"#5o-2i>q SԌr]/jfGY3ȎC^ZHAǤvTjA)${M35ɩ3-ulYpB1-DAS~ @DD"*HI"KzY_(+WA> ezÏC'{{buL8e ټi:W /tb4,[$plg"a?.q&ّNܝS=xR~T#q8Q!gW`!eGoGnX uYåbr>J a=k)^w.]n21{nMS66?)x@߱"*X65j5p6o168G۫[@gQ^ k w6rK^')Dit?S]_fw}g+Lr1Q/CٹXuP2jϩ^n_*Ɇ7'%8{:iu+յS;5Nv$d213Nu|4$(nB`q~{s. zb,o s"(=sQ;-Ĥz0^bNm?K8/^^*;OqUItpQ3P9'>cII/uI*+U%zf|o?CgSkTV23V)WutVgEj|y]*gm=hO#/ѵ̮ ! utk}UY pW4霢 < 52;YA EzZhݝ2A)l+ԝSET_[eS.'HALFvtS!*Ԉ8ZQ@jJ={VyI:U.zJ UkR9Y9d 5['=ϣ"_;4RJHXeA+8.CNF4UQm"CS'G۩P!h7OC#zʸAщ% B jY&.ʤObR0`¦ŠX`urh.{xC?NMۙtwxt )cuaf 3=99$Rڮ kzN.+i;/ĦMٲn,^<Ͱm~q̕InjzvfyeX\^$Xs8ip ċK%پz)_H'wB0\A*jOqݘqy5)׏S{[1Bh%3|g#9 "y@xgi2vRD'v[îby&k陉j*M.Y* v Px?B !,'ih8{OrԁGb{ÕATbő Пq1<9٘[zq^组tXXGɃ|(k&c8WtnGoMr[I{ ~%dFۄUQ%8]nso8]W}r'}󷛢Fak\s1P +4_-zH~{}TjҬjÏ̹r1Z=Z'ٓc[p H<صYW[dzpQ̷̎٧J0Xnx eqEoX8_mr/Ӵ;9cn]qr_m:Y}2{EKҦu岟8'i| *ZBWfn]tnnv=w/vP[Q.4\ti|la` psph`ZN0;>[ׅAbr  S7oQC[• v/6-)2pnn/AttT:ե|zaL4em6,s';N<9\a9,oisW&'eȱ'WgA3i WAgKbN: qӤnDm'4q5aE dYuj qV)ث _h$P=25f-kkmֺt9+ ଝzg^T,$5R w}vRU*"Gg@qyx>Xsg>SLWkDSpjj:=Q+ԡRl,p 8hS'GרUsmNݕ;4;%3='eP:2\ъKOT S0@53QHpHS=bM`Y?~u> (:;8,?1fz}J5HaK1|],]s^~ΣxҘ5MM}%+)."yO\!omB$5"T^&xx0*퓐~oVH%d*poS=gAZw^^VRR涨o&yuVx(q| N{乍 }xƺϹ1WHJ%{܉n)#@Njӗ2'].W4J2++D=9|Ka7.]e/$,+!Kr]+LhS>L –jwnˏ\n*V޴֧URhXU_,Cx5> ѷL޻U0O G"m2NI -cj$ ~/(DuJURp舙WW`S2OPp9c=wQQMn51F4$YeMEeoSq|Q{lo>8bsgܭa5߱&lrfP44 mU6^>[sk/4s B|(h#>[\U1w#Mv2XFZct7)S.DR3Fݫ2ub8Ig}?~_NrHWR %e:?!SQUב/B$ErSN::>YS*w'td4֧o4IrIpG& TѠ!w"&:܈ڙ29$Gz[SJ53~ʚ)dHz*YdhEvCT*UERs !"GUhQȬ31dl~>NOTT^RSvй~&Y̦̿hŜ5bq(pE MqF!ǣu#!):-yOJLR"vUk`  raf3u,E߈tauw^LJ~G4aO{qs)M8 m~9'RO^b ds;w&7d[ '1~ϴM{ӰO$|zt _qwesjM{1+'Mѫ[At읷 ~} Gҕ}{QW<%SOh J>mqӯ޾5U{ӈ>nIA!MJ~0e!9 & >K=c= pCB}s__q{\ՕOKx#'SX^0^*wf&(욥$YMÖΩ΍≸6R}w35(sf#+Ll)&r(l}2iqsl|ppu$ܢ=讇4'If.MFezXÿ􊉺޽^ݗ4DP-8^g ScM+< Kݧ[$+5s/'ZCoca9Fs\Y,ϳiGw;!Dڮ;q&A\rZk9O"Ѹ72_G]a8ݷFZ5GAu$W=t]yG*¢U"N>*3՟+oMkȒ*3!#DIWo9ٶ[E7)a|6H納cបyOC ^[{-S[e/#w|Y+hUQ#T,7u>&Z"7(bԞ( NSO]xE5iUF6OyO#\rts9ʺZ%$zqBB3>h珨 ((:5^gT ph{ |DKVpjc"hsB%gjP j?TuHJܑ% >f$h*9 ˣ2wJNQ "AF_f)S&CQ{B<(nq̵SATpxmP ء$ ԪvA{^}I 5l44-X8r÷jW#fBŘ^l~݃g~i_0+w5D:Q&HN]V0Gy_\Lj?=n9HۿEJ5s" ^@_ {;V9tl%8HN+u6\oq(e,6I=gwݼTzq vhr?JJ :ל2Ld=,wW*.x"X/sBqK-þ@7Uc_Ɯc'.@:g#DC;(C=6R2~~"z r (8_.x{S䛩G=p\UlW^7 S X85O}Wnc~gcӽ;nwvA?Er;&FʊW9#J_*d|hSuS `GWdlMP֦0q5w;j66W oo aFj#8Oۜ?6;xil7 Q*\/u~R~utm7AI}sx+hyo֐]@?'g>d179MI.){ڜ[l_>_2 V3l]Hwa3y_ ^îI~ږկ @*9,8dr&HOggS@C4&e:t%^[[' psfk Ap1_PUeV^8 B/W[]21qKrmB^nѻ\|4i' [hZ}s7 A3[|+|?_WM6QhIH uj]G̎c(6kY]1ɧ[EolߣLH~2ή]>=SD}F{`}|9 2kt9K9Z!lܴ8=,;3BUo@3CMD[YR ڙmGù?2#7U|ΩYR?p/bfV]?0h,] ky❨n&Wb5UO3\q\o mQK؜)gڏҶ~B&㹛 I2^okܮD(N%ވJ,J?W:Yd&[T2!|0G7o7ܛS)(?q;p˅MiyG^[z vRq=\7Pܻ$<ߥp$Q9]< TCŞo6/货1ZiA Q$2KesfɘO{%Eҙ;EOGϗvGO9D +q{^ni?~,e=~L]& iHs-v{?-*6q5'IfSot2A8 :6= ( ^텲'm^!4ELi2^KCg2\†^V8@A/ POíp]ҨW)d@ EJGMg +;g֨N>Guꩠ ϧ~1)3[Fn<#q]3E$YCnjW9*\Ԏ5${νO}0#\CBXN]H<Ϯ{~eoj խY fP1/;ĕPC3IZ؏)%|Q#!Z}NֿkVs ETqN6A&YjUY{ D%5["S%C=Wgȹf*Dhe92! ;RήE ,CN.v51S]*'IQ3kO5Ύ'#&5'w܏Ql=)f0.t+di~ II\^cL 1=z^&5/,.9v=Ś0d +vU7`5ʺ,pH,KzGXK<94auDn{,MkPn=a1(8mg)ª7(N4,5ƞukءo6zQW5;la+wa'imS/Ѯׅ:;>\m>AWU܎ 魠lz -MG M{ W74Ou -^{kܻũR*2?)>?HЋ<0OEhN{JB7BzUnk.1Ƈ&Ox.'m=|nE{{ a:Iw/Νl[sf ]T_1EkGts;uq.Z~u5Œ+ѬҥdPh f9z>UN~s-< B[4醘5=w;)NR SƓ{C74\/h;ND;\SڇBJW="ֹv?Ց.XӎY MOgI_(JI ǍcEHH…LیnzG!lvl8(m:MܛRq}G=]>%U8yo v{ua$+4pc|򽴐:_=#QdS 5;*Mԗ"ʘsql11&^ݽ#-<n+bkY}_].EkOef՛JrһB@#փyyW\ \ |(pť hq&ǨUvtܾ7B*1&K]u. Cnڢ˼lZd^6*_TG56 l gI[P'۝sM­p~7fFvowyYT `]o_g7iߧ<WK|{"BQ޹#r`/OlE/ 3wIsпͷ[:D:.Ve_H1].䍇OPnYg:ͽ]JZ~ܯu:s8k3iNJ#-kjLX|5꒺G%esz5# m@'TVjOLRv}=8Au7XB`pW$t]qSqb~U~3ϫ>0߷F/Zbɶ{z-E=[Y-\i-lDi23X;t?H4äk0|+/ުu oR*F>` v)F6l*\ZyQ*r-,{ot8O6/Wg;%.7rx8">5K/8SeM6'>k\i ?_iQafw}(Cm\_dս<^hU;*+Ii58IO&3yViZ/.5SNԍ?42ܽ*r@Jdj>H hR rPhtw(B8]@ ;:sWDJ"k&FG4'}a#Mp*9+pN0x:3dTD. Sxy3ykl&Ӈs^y6FPk_#e_O?5ּgD|cʿ: 2MgϦ;H$eHO}L̊RM&{saJbFmQiVUD /am2_"7#^Z~&ctdhՖxpֆ|zw$Hf5kZy%8}lȑn+n59_?(-^`çrXNv:"Xn/}wyJ$n?/͔ ۦZ>MJ5/60\{eƙ>Nz*b"4 Fs3_R卑2\'mQ;4s+bwS zff(e~#JEƲW P` [o fs-u,΀x`4BЩsBGÏECMh.:|>dп!v75R~mtnMިc]wHO:u(%LP)!ty=c?˛Xk^ck0=s95-Ĭ]W\(YW|d Gʌb3#CkJ?<ͬK{T&gu-\]H^kġQ#\RHK_HTNԞwnA Z |~?]Ɍ]ʔ;n[?nQLkr*xa]هBlBQps5؈P)xE!6Gү{7:;ȥV~ r0{޴C";?}_'}bqmeմe?k%Z d./:*|9DzT&-dvf91|S͚/S"JǼ+^8uꋦ֖$kY"ւ ܏ZkHWqfz<]B̲ѵf MNgy|8ܩ: N:<ՉRHIJ֣U+#[۞?^rX膦Ex-.h%Ldygqg=un)&E2d׏~ P霯 xQ`*dOwTxmcw~zTΤN$m9?;TITh??'<'a$#j N '5 T+Jv/tGy%}_RL.όm8A$$B'~@00FF* #2&MT\J&Ļg3,x #scG{-{Wk%PCm3X II{;{A8n'E&`VNԢipsrE|yrJk94z8j]v[ -݂W K\s ;kʹ &>xbCqq^۷莪UL/˭/sxΔ5AtD^s~,ϗz>,,.#RŢ_X+'VfNXT~pF߲BW*_'֝p9_<.4m8Vq$}-qxUVUi(9XHNGVvu>?Pyz8F3fX^j-6M:{ysLEg.{2W7k`"T?|_%҆|0eH'? w!2ll=:/}/c=3~񖂼V O^ls1^k xC_@']#_NXKl YGy1e~4I\V'EyӬ#5q-&1uq*߼)Z^W֦|*d~ۗncÆig g[-H6ښ]-{a0Pݤ jh!H0}v1pkܫVtqP)(CdMu]B 8CCS]z]]i5>0)E]jjLYk9=f?ЕYy,$ta|TNԩ5k%38sHKH~3:p@ 5|h85:%dUjX[fSJ-}Dǔs9Ʌ y5H4CݬdH7zbZJC㨝Rf9&JC}HBBF%ɝڍ2rTj }tK)8JoS*6iG@_.blS1z{oX9GfzI"/6rzᯢR" ^MugRo̜wj06j`M&^ rTv%*fM|YIW-#W3#$ i9Mkaž3|܁_,jsokHD~jb; vQ:)*Iӳ5{>]ɧ"|0.Ӻ>nj nr}۽Mbϑ7Vþxݸou+i\wO4\`et֫-1_bzl@%PC 20=^C&nG~Y(x寳yYp1ylkLk樦01̱l.xT~e݀Pt18\`/ .KQuDgc%-xa'Wϲ!h_ ~o-)/Β]L4*5 &p()(Co_|= AՋ~(mp!Cdm9 Otx@^ZۛC/'E4c~2G͞xRܝXqZfYnY9;՜ &sީ=M:ukWE:ܣrz:]vunTk|c`Ng4ٰO .Kv4D'/ZtRN0/R~Hpa{@Sis7ރCMD֩wJlšaO=QrЗPC)Nָ-fA>)KWrlM L-R0dY]Ԛl;`*zAN}S\oʚsL-c>\:b}J~ v C͘qD r9[F;4c;[_N0#~񋬾ոfusvm|YGuɺZS]vzRbfmКį/d7{FnP}M!Ȯm6 N@#{)ýgzxbzS{B=r-D*8@bޖck8RVX0)qrM_*WӆIwZWփW} 0-*d4n32Z/{#9[ Q$ĩ່xRv Y<%PZ(mʶS=2Kk+UV|I1Og>NAdTqsԒ4Jk!4 ( 5vI:8mBwwaq1{-z` \cj "6;>EL6[3? F+ *FDuwhP(|>رBj~O>O%p4Tj2;̲o1:!tnPעcP(UY$[RUYE+UoIEEwsԃ֩뒮ǜ]Vh9jtK/j:L Mej"+uf_Y0D~k_R G>UHG}ՆC^}%*iΝ qzL:PSr{OR|uqDI2eQ!ST;{BzT%2W fԹ O* Q5DF3QC4g(%mj&6-ǹXwS7m.{ G?fpNfp/87وT[\TAGÇek ֊Ԫq ڕ#DQ9)d&=YdC|UxWϹQLHchf';pRbǟ}>ކanK*J>;1/^8e[{Z-4XE~*s5-ճ^;`{/&_k~TzڅpgYϖ/v; =?$պ5ϟ=uq'ڷDmƙ4>~{i@KfJu]tf/_UCSjԉ#zĀFF}'n|7zRws>wzk oYˍɫ[a3IXVnֱ:ƦOJodueZEnmmePNrNLM ҘcQCs:M<ǶY blux*.*B͊FQ-‚qNINqlZzQ5ώ[3GaAw[-8|HDVN틴&LȤϙzxclsDyM,H)5ka7rA6c٪7Y̹w*Meeq˪̻t%_8?zvOj}{}23b fC*F66[EyEԈ_l\ /"S wVKDP8%7Unun ؙz +j@㨓'RFw=9 e9eGRRXeN'D J\/)|Ҭz&Y/TԀNę'֩#)Dp ԇÑ- hӅ N-\ȌEɩ"t9eUo*J^cґnNQTkE*gZ SΉyx,:kP5c9$ΝoEW2F,U>AtL)H:WS,y ?EuT hP$"*KxTX hWcKA8>rn=EH uХǿNvESH-/>;P3'~EsOy`ԹHB$C3&K [Uo?'}Б93{2cxҪa;iF 5(cuIuw_Wև/0I=%)X9j.tWcǂ`yM.|ܚ)e\-YϠmeU"_{v~h!/݋4;ka-stdK/^t9I6TNzݻM .<f"zeW:rZ"-_J%OI|G=:F&|zb?U6fHkQޜ <قzoae,N1ͽG/ӴqAu{'lD5>6fT=Rn;3i%eN EBIKܨfyP>8MIٟzs܎4P;f{]$.rL K\̅`oj's> U$~(7xnUԙ%O\h:\NgzY#XPM *tLҲNNhM~vooƞ9kX`ȿS57Yu-\~6u"JS߃gB? CgYM]up될wՆzF R!)hA Jv̱z?&B>Pz.~4d?^.q0r<)yO?*[L K<@]~~ㅋ;]=WESEz)d"2N7&* liuU:i?/.>7ydyN'TZϪ%mן+$ƫ2wu/Nkࢺd;+\K/TPA SR=Zȧِ'c_*˜hFs}L(;ͻȈ)O:G~n;臎9VK-\,a{\IOggS@C4&hĪ -3*/~6k@f1s&a1[8!A5(X?ʫ)Ն>a _>TRA|o]*U):i5tJɬS,Dht=g-A(ŭ2xc֘xݲxKFRAv3gQ[cMG =7Skg=1ӚwŹ{Gu!ɤܔK}lr&UBZJ>w@ȓa#aOyѲ9E9i jMTDawwZ4w =ϓ5WޫcM~?{E|;\`gV8"=Ȱ~iWpv*IZdlM8,o3%>+t|D*P~V;?p DrPibPtdZd SeBQkF ]gӇ t&?ы&:joGZ[/H__9lƃVA$; @ 7-\02#x=Al7O38~ɏu* $̭Th;w ,ƶr1'פx[6K=ńSmg'4kf*<͓R1+!L}7r'BD gv(gr7v 5"Gkn=Ep{c8Uy?}.ʑ˄y'2^迆glt J1;a"l!{r~ЕO?f?UVGkLeޞD᧌"hX>4?s)VR'Fk\a?ZH[ B}!2cʵĘ^XooUi>K^_['Hn˥jH^Xvz Gސ,7H n;.![K,)Qz]`hG-2_ɵlM)}QOᯫwʙG֭|xkUD;Zrv;nxy<[i◿ /aҳw: }6;Lox?f/ECaA;ix84i1޾~_t-}$̆*lZb8К^_M6["Ye)3c"IwZi)B<ֆJzn7OnH*9?m^VtdݼBk4е':N?=KJ85w:wJBggsG3$ZpxH]\*̢afsKnQ(?z2r .i_I|t=$#PUx «Նw &Ajѹa&el }NK/q~C}_`Pff*Cdx5DTD-if'Q{m|޻F/ai_LPQM^1gέkk G{ؽSX{7\OQȳAr̘np?[sr}}~$:Ҳp]$j|هD;M< <6({ch!Q-1vmvmU\fXVQm< c^JT`^^6}:PlVs^\{Q*p^[DqoOvTZ.i8NC\MMN:XLw!)9QAEI!ՓlZN"Hj>U*'"fA #{Zi|Jy^&L!]髑 Q#uR:#*KSҹ?Z#5!*tvKSA'E IHUE2; {]*ԯtg8yQkWѬ<"D*AHT2)~]]=R*(N\q t/MUM{Uh3ECGJֽh"8g:,w-P@2XyQDΙA 97䍁,bR%TCDo4:D;]⒘kB<>1t;dͲ-y1uJhIR.sض~&Oy4/eOѤ/6}@2r6-,eHzR6|SoKCRt]W`&_m֦hWd"^םJ/YOzkz꜃e]8C_SJjԣ/ o|B։пrYov)+g5Kh_.W4+xs d2~xu=wXB+fۮ|I| Xlj׸Lg0 r.Ezf8s)e(W g(S$(&0KlQSi(x@[;2J r14VfGզ{' %Bq`淬q;^Ro/?v*u 쁵]6̍YEnndpρ1#)Y61ޡ[mjd!Xz=y>>vbz[k sk65abf~;,*cQS tM)'TmϜÔyLu$}6)1\U/bz5{] ?@G/ܻ5s^(Rk<5G>4&!ƞvnl ‹Bss:y2%l~x)#Ěz~^쥼=;])qaOoc ZXxJq{1R&F 6"s6ښؾǖҰfe̛r߶=q/d{̠BϹsr]fL6;-Ve|łV[24{i^wxnRM771[4;v;)ü~4ʁJc('瘌޲|@TtJQ[eZgGX0 9r9~*U9qhQkxQu=ڔ5)..]5kjM٪'U+wp!(ZDX[膨fBT8Z{/KUIgnY^;FVfS*Bu2Wό8 R$zс%U.<:ޝ53L0gDL⼾J]&CtDtH ਴䃪QEk$螳vBR )` _1g6KR+٤B%,qprzT*qjUhѽZ"Zq.vy'ȱ b pq)@+ +G FrݲK4lQG 8DLCE̛G<"2_t5w=H]mQrFBsб d<'JɕjW`,4HJ= [J/hhW4ZwK]<2yԷc,&(fN25Zb,RW7x[Cw.CZqw`j׏zZ7n\APL/Վ8Tf6G?$*Xf;#uz<&IzK^U|!Eso'W=kOpGCtYcK-0yҟ՞.Yo^"dpFuoz.*c'6*~w;^rpvAv|:^q7-1>:s0~^Ln~OJoTsL%O]gOqˀl洮p>*y~+u{YI Gn'zZ\<'-jw19$ 8ASN ~yИm->[Χ:xش.0h{:qmP"@.^ &ĔP B}Ul NhOJP!yӒE%u>4'LZ ?]?<:ĩ{ov!=K>k>ِpmBԊ̚#D>ޖ_-~-l'G ,w;/VOfp%<8U;l&nƻ86#wz}iktLDvXJR6P;׽d6pݎgZѕeo~vKjKjF?Ɓw}U<,2E|[ZN`6?4s[Wi׎bAvJnh+b2 ;5,ROggS@"C4&i`ݙE7D=6[Q0/=lfw>, 3foEź (TSЧx lkyHQn/q{p$VuZQy=)u($7슓_J}q>km™5R*/[}<腫Y[KzǤk2dk:'{vu"@-e=0h<#ڟͥMbdԪDEGW鏁TP5+sBP[;-߳j+]RhL%UԖڪ*#w#3KOuF)dȺDKRu0|ќr( d99D{+MzI(GgYIW C8SMV:sUƮY8g fP#ĩqh2ygvI\[> y߿g=Y/ǎR3[^]w@!DEb&4{> ?fQ[oGnozyfJX8Y?"3c)Ww˦ɘ#D1H^=}[闲#fvG^T}4 ;fd. i&<_Lҗ8 yIO^NU#(k}w/XN^[ۮÍiɷI&U.?j6ۆ]R{XQݵj/w}`mXJYhIŭU&gAۉj Y]NM;_z PэTs=NڕaP,ާ*,Uzw噯ʞd \%y愐d~HS,IfrAjSkMf)"t>FRsHdv:wvvD沟ك>kܫsJv3ֹ%U ,jWzt޸>>RZ>.JS8:j?ͥsjf3UtJIGBMUTkwtQɢ,tĜH0z"Y;p=jWP63&đ4Y1O|iE$0'kPP#AkU@Kɽ/Bdj S\ސ헏} 6qBL Bnj@qd }P"򢐳.Qi]ոDZQbdrt]cT#9)x);5 {s6m#֒}4ܗ(Vr`KƼs'[G5(/96Z@|hRm/9wxp3-+jͱ?' G GWFR}[1l@@^h.Fnqe J|g_{HxDn9Wa]G>Lz[bE|,j}/zzmU\;<5j;jV+;~b][Y~{,ܥ)].9Sa1ᷗJ_(JJ0gej %Cp_eWFimMgzHpxʶl}:H+X V(Hn-Ծn|1s>ŅڮP;Khj{aJ/cjRnḵNͮ{OMcC,GVmO nB[uU]H aM=O9MΗզ'qK#xk?V:(ylUT#^UQ)Z{Y[T9jFFw f:x?^\]JT.=Uc1Zs Iwk7M ==^# ⤶9ӭz|߰^dHP?= ۛ!< <x>ƛnlk\C[l: IEҴ||򺯜q1ʍ1~I~^BzĽ_ (&@HseovDS܀j^dkf?GMH߽|`ȜZи/fwz>HB%!Y榦΀!f5{f;_l_qQ)洷t'W|f[MSW~ 3ŕNjw=/`k`34_=54o2G2A7#+ N 8w.(-sTa">~uҩ0d=8%P~Q8KOvɯnO9Y'뺔xWU-z3s_ϴTl>~//yg9A{ryYin1q.e.\'RjDbe*KGZw uRw,1wNo"|8TT͇uVV?m3>$⢵;UO&e#By^" Y*X3ϱ<nS6LV-?gL|]WJMw#r4S[+߅E"ȳ5+ K:M7w]|Юv[Xȼ W[i1&ʃk _tg~~-!y^£8䟄 x)mb &U#Y ni !eiʨ$*#EL82ڬvyom76U3Cn<| FC!w@džQa9g~6k]0yY~e1Z"F}1vhY>C~P{B:At'@ 4$z߿N?:B*v|-ғ8P\r-JՐ̧s=IoMJCui$ה ʃw}wzHķn?PS.u hNSdyUk\.Mބ#_o8ϣlqUo>[N$hK݋_f>^7D 3ߤ_h/`$5Q,U E5Is9 glJ+1'3OK]E= F=s|io[ɬ[ا/]rOQqo##1{S3] k:.aĦwzs0u $Dugz_[ERI >6[p) *pv 1ò}EXÚz:FQG⧓dz˟<X-[j6|K5M*zJW/u✻֩e'za!(,]n#fY{̼CU+-T~V4{s˕eR9qRuo=OwFϷU{䭬]QAV7̿tqP}DnM@߯4=c|=i`.!=ڌVyO\ X1eGm~XSoZ4~W,~/A8{F:i=(#Gښcay{.45'Ɩi|ʢUpj׺kw҃dy`gTbBQ,; \x&OggS@2C4&j"&~-2+*6;I0/6[2`N*c`֍(d~+N:Dو*)q`5)ZZR>#*C݊K&]H#ڹ/-r]37FLKuiUr^4tIե {5#Bl9{!S?'/@$UBk $~g=T*qhw㗈;ZQ~g8 '&Oskըu} Z%x2\TZ_bMNVRU ' F~[ TMGOWDyͧ2@**gA!,T3`Xթ1Uv*](]w*$DTP9Z!=R+" MPa\kjKZPN%f]jzD3z'#R BkSDojn]bGţէ{r>=ԾtiM{4ٿ~R[J~P&&+JdHHjlrq`?H=・»CNʑIx0H(d܃idΓ/xKKj }OMuKCR߫rd2ͳN׋5v"sЅ+ELM V-sW{N}vGgx;~*\DFDŽ_y)΍i8`O=tOOjc IS5JgUS,͹x\٣r(ufH53zmxś?lRI>j"5GŎ]``Nw?IƘJYZZ=]wzk]ݫ<6WZUQP[W{$MJ[Bnf tށ:>Q5IIzXp~U觷4ŗ[=|-~T@k|5ayiy]|ֈŁ~X}K02~-&W8'`Ywɺg^{N%M{4:[Yuunkv]EI V._)ʲ^ʟvʉ5(K9 3Rq|ry<6+5Z70H'`¼I2&n$ 'S5I+|*o'Q{e[B F;`Nk&}c1Y 00F%Ue L1]~fOh7>hꅬǫ!8*Z*3+[P\x59bIJIZt]kL]>)<kKStC_wȋ\PߑGFgQ.Fky>pUY"̜):~9_=84D-K(RYG*'*{T˾C sxgV 4 5QLPcZn{uTAysT;Ju]w~tKGh-Ot.jstkjJ ^VDYol5܅֬5gR:S$YF!!ڢq?ߥ|靓~؟-JF5#ҵTCdsgT3WDE2[@v]\n,/bkdJ,qӐѮ>dN@ pJsC30Dmoj @ Ump'X/zOC˭g{!Yz[>>?=X/;gImv/5wcN{k"TG+q&%󐜽6N=NYz~6,w!Oc򡕦妷poFft]kz.qbôECxANozFϱf!1T7_sǺ$Ax[8\: mTQq"%]0J I%FTm"g 孝NDTC^͆{pW#1ƿ,w|=2G#]Ǘa Vdި7N(!|9#jF)>JV )*.ivoKM>^ MFkO3[h?h-Mc?Vtr>KO0>ޕrԽ ;~JHf}kLӣݺSϸ lض"4J+L\ԮZWS\r%at#̈H\TQLG|E|G#'LjW*zi65q|ėSL$3dzMMqx\3RBT]{sk:B(r¥m6 o+;g۳{{G;^-F/45}9T4Vܷ`w ?]qJImѨK T=qb[Y]eÛq¦Ivu]XV ۊ?REIy(~Vr3wL2fMM]Sр}09v`yp,2!n)({ynk?qjT(\5LinYV":#Hbv6 mgYWQH%PB2>f3C y~v B$),h?CqsΉ;Qh3*fD3Y].꒔刌Qh_kWFԔ&NVv?Dur)SDxjSKrG6Qd+}OUz c>َu]XN7۝&:S[w M6Lo(Nl![\jT.Q&nČx/|\^ipZ׵9ߧU_JOGDZ=^,bT.7V)7H]\cZ`6ӹ"\t-ɳ_\t)OTEd:TMXS\}#|Bmt8 %͢yS:Qab\7JND{fEAfTٝ_s!LqPw_ݘmt.JxkBC`Vekys]I f'Z+v-cn(Mg#Oο 3'(6q},58'7%&!>_P;[dH!/!Hf;8O6ڄ*׹(aiKAXH/؜R=>#o\ G?[Gw-|zv~ѪoErZ9Ád, S^\\>٣oeaW8;5?fU?rW&\4Ȭ1#$_vvqM?M.V-'m:q2Hy?5sD^#η~xwm8k65F';B!(f^{ZwOggS@BC4&kȝ%+V[2 {l6| Fۡ'h BՇLgmGR=bb&Т袛܄'^EMWf$cf$ %ӆcdy^x.Y!'z2sZ\NDAq7ư{im{Uciuȗm~2@j]8i7-77zn8Q=\utn7W=}>cʴaU[a-Ű t?%Émkc>c~GGutqf?avpP{fH2d)%fp ѴaU,awoW(G93~izG}W⣋X#S~גݳ 9Npݓu`7jRsGMD* O|$wuT-^Ӵ~~UcO?>(}]]0tCz%WTF.XG$]K'8  +秡%F\cH>\¶|fkQe4dwԲk=u;9b?w+}:., S9< kb;w#$&S+5`vgx}moqZ=?&3%f@^I.(q܉p)kX!9t)vЍip w%MDi坘6E=;K8,RB9lvYK`֝=ٽs翊αzݻRg9mǚ-iR 3s/Kצ.XP8Q 5x9`{_pؙl06ubae5݃vVs?bٜY1}4S,6)4@G?>-;_(^8GM=BjJܧǔ:EWh(ByAݹj̮ll̥!?=uaDmz8GQJ>] {ݥ~so=x]?ګFNn8] B~!|ϗ8Dӏ:-k@SXR/B'馋 oP ԏ5݇pL"}&m's!I]BT|fľOL] |Z4fE#-H.:}fqL@=GfuUNݙX4vNUN]).X;-2]ߤPlVXQc>s[)^nm^RYv G- qLw<$wut+Z5.M]v|zk(ia:+lf,Y8)]o$Uv >>V[Mz6󓠅cv*nk`U{@DBP)֗{~?O-Hn?}tpjˑ3U?Xx N_q^z.GJ꠭ΚT9?ڙA49SB?)̜r~@uB^G֚Om$:g.Y,Zs׉辢iMǛ׹ԚOI"9ɣe7ԫsdMhX,Vq&ދ菟sǡv8\NVEVE3'Gpݪ(.} \5t3gϕ*8=6$K~&RsrS2hv& sPI΀j\@xjr(:"tO8;UHpE+T=2˜/i9!P>"}DA)\SD>SI <Tl5:ԋԯ^Kz48r8wcO5jbۢkXf$*&0"AAa4vBy=^jI]yOs>#?o,X#*:trӎ^?NE#9{w*c77+5o mRbS&o#V3-ŃLD^KV)sa;z4$Ƒe)Ͻ9;_JqߠiʥD.0z/[" Ļ@ d%B:'1L)˵p]cM˖wc^?FԞ3|]#b؝hm~ܹ}i,D[ [ڬAGuy͂NN9;/{:oqnKQG”]FW,u,^wpz7ǷQSݻ$)W 5٫]W]4[f+.ڕg5 )I7ڄ%N%V3?&fc&yok!`/fCBt>CD 9 ".\[c>鮳$!sDK4}n:LDDFCKGsżQ~˭69qSz59BIYW՟_ Rߞ 5tj.tԾEslUugI==kwW!ժk4=Q%ALGZᎴd3Tw*72kf)TV9"+rjԩH\\ j菐2;UXu mfr֔`%kْ?S+oX3uu HP3b9BG{"'*4$4ddZ#W)zPD$gW$}D>$ TZ5EJ>һa "'G{/%~T"*lMY 8G'i4]}JWrEW9s  pJr&nlrjK-J) Yhk ] .>:x+&o_׌M vԊ9qs׿8Kj%P_NP9UOqѭм_'`o[uT>yWo#x_F?TM9`5{E&BrᎲy6vއ/$:=ܠa[>! Mn)/bpL#6=IGSIٶԻY&JdjKN#zomq\GgA"&V;29?#^LVuȃN($׍E͚)ߏ~Hܬyq'ݯ65%"!uLpO{j"6NFЎq~XrϩD ˜|.k\0HEo-uQUĭzYlaq D6hQc3jO_wq32q,\ُwJF=:hE~pg\.q[sۙ隫N}i7N$DdwSUYeS"hdqtAOܹ7STje׏dd&R*Y\"vґDă8H՞\GO$Я3]%%jdPU IZ'AWQLI;}yLw|KIJoV6S ]`if}EafWN-HW#ܪQ:;3s`Er'ɦ#%uRgP3=[zz`";_`Qêշp|ẑ|5UFw=x)qP! ratK.hhY %zKNm(՜L'[t9ŷ9LtFngS 4fL~i'@'bU\E2$?Zo9%Ν~@k &Ru sY{;w? MvrG!QZuZ4\߄RT Z_n]pR3914Z[M i6.a[3V<1 9U\coco,LG88 Mx 5RgWtٺf?R*o?"O g>Af?ۭtZ*騠Omw]}[)*e%$_Y\]}{W쀨#}L*#udDXJ_B7PzFwk!:'($AJS%U yBKuPS ga"dw+]CJ>2اvצZ jwRË|d}e  {ƑZE$U"=kC]>h*tU&ID{_:#wrt~ԙ~՞x;ȬTt{1>I"rw I:wESkD8 N H%±1!QY#!9RJfrbHx ;MCx(ӳtޙtp [iYA")uKjOB|;6}W4F@nJV?r`;Nn5q`0᧨u}Գ';clZȪP|S?NH6JX/TdUef׎Ȅ.L:ѳ{򈙐5ja|Kʦ\V^lAW]B<%t1Eƿԫ] 3yʬy4xs>Aw?Q2~e,Gw72AVnLs"0i6v\K5MX:6/vetc}!! 2(?mma>}qnec6v8F֮L?`lvmnY,HtXW=:܍kAu?S<(DX<\^ = IV12#u)5:vZ-#~~r?}a,9wӳ_awB jsSqkܝ.Zs,v{E= xcm:EMu|\3zh 4WI4z_rf~QIQno,u9|WoͣްfD] v,>{>M}ǚbW ];N*4'L.6#9wYڀܱ:UtC\kڵ(T*k =Gz}y8;o,^Zc.N0мPXZOQ4Ij @VV;Nik龠Cm|TnL&۳?^ESA򜜠"u&FꟹfY(ٳ~40ΐ8q!K5HZadvY5EЧ*5SL"}JuNRkH(C2CU B)&B[HBHz9"N19$*s\nS_Zhhpz2U"T8֙O^dSۡ {ܾ>3|>r<͟qAkGv:[3@pJr"&ˆd% ]Z&KTtsXa.\F˥˳D6X5vߙʔHE5^gbkx(:h& s/m6ÓrE|'%9Eyq+5nm=³D"?}\n4Qݟ>^_:YZ_NMNͥq!.}mcXqFj1.غxs*5F}^.lw sEOLˢ>/ R25GW* C2cT={>꺗`ږ"|1~O*]4ߕ"uIeAW/xNqqꆻW~lF^Ťv]C_GWm$%Dݬ;@6¢9W-U`azk-U!$q_XX8Ǝ{=>U"oC}9+'%u Aȩbp?/&MW榾F=KBB^aU+}u6 u;l+1"n5Oo*c!d6鱬ٴyk9ƻI {=ԩHOC\4T㿻{l0'x6pOg,LNv!>;v]f\[j}jrllrb"qK}S?OիN;ݾۋ#q@{yٖy E0VLMH)^Ku^lvST­rKTwo*5ߕ{@F^7 3m&noKD%< 'N(©d(}孖o{2mE4$P%PJ7(o?n*RũT"g_ϳ)3?FULD%%T E-KWWpF;k>y`"W*58ZԎ?hԆ+ѹkȚv^J U*=^ny;pDEk^gJFԖ$W} qTgxs_2VGI*ӎTvY&{zÒg;8)w?;Gϓ} M?4 RV*;%\eQB |JLH(DewT yu @f&\ϯj>^:APԟe%e\wQIP&k=i>BfOn>浍#YeLtF2 @Fǧ܀Μ63(J;oMNQ G3[2홙Mm1`dI3unr^>zH7ۑJ{ڻ'f7y-.-Šbqc^s$mN c=LQʹyKVJ/dD7 7OnYM&M=Q]H*7Sp_Nkul*7;2^BJ'df_s_ùܷ%$ ];0HKXkvMҢuVc)qi`0ݩG4 NNOBw1R/]yEG3U7}zYkw=bzzẻlܛӴHax6`A;8 o'zsndIn|X 7AjMXr2\'9cJ פ?) < 8N|ӎ0r(]}d.mUڍeӠ&o rss43Ny"g-(%UAĎT RW9Q0P>q{K͈?1COl}}Ӟ+IYGs 9{:|-#.T6eZNߺFlWЩ +xO?wB:u?VVeTD- Lwݒu>)2WEj{R[T[|J$qjTGԫD<9Ǫp|WeΞpC/ʀlkO\YbD]hSj%CR+I:^| 'IvG:;U%vt.&~hΣ[JyALUR#U$!{ݝk3և_#+vuf=Pen$C={~淈w,=TvVZCׂ#:$wNRfg>u9敧>cΣ;VHz7-'N "*-GQqXCgOC̢$!LT$a}zx]i`FQkLDqDJ9YD]2{W4^㍢* F^QJMlW9:ڛ?$tKa@I]5F~{:T5-9:,8dD7>yb^W 4dmLy ʸwL&1>YznE>g}8Ο^ru5!Pm}H+ؔ.DS~8ka8KuJJQӘ m,FD+ӞgOЎ` <[v]hl_{jtTmO?u4⫗41XBmZ<4L}W5W.nſ[Vi@Zl^ۇ] SkiIF[{/ֳK>3ҵ˰^4R7 6]x6fr"pj6eag^;/OhߑR&ǻPq"X!*f ewJP,e6s>xݼ~ M69=\@aй۝Կ$$62zxNg ]٧sYjP]-Q"f\""b_*$,-w1*S|v>=^g 7[&}ްi*͆*ל@'6;Nvϟfg01 R}A@Sm@`)gߴ?Yw˔ ` IxwwPɬdcxޟ}^85@s\?̵w4ݳ.xt~'%V4B**tVUЧ%4Hڛ`neB]NV!;sOLfϹ%+ 9ΊFRs%NAY! ׷NhtstEH]Ash"4Ah;e -ghZ3IW+fg8#BaJjsG%o%6ECK)wJ-՗츝r8m nyr{?qyo[%/Y᫜m}ŚtprF<஢WLz+ow)7x{ W\q&xr=>,잊+z7Kk4RѫrM6t}݃KQYgcQ)mD*֫R&b"R4)Rm#"Iep`:^Pk3c8R_Z]Fձvs?OnH)oGml-qJwN ۛqffD𘆾de@:k;u/_W_wZ@4NI]SN}xaA.z'*o}x2M3GZkws];* ѫfQɍ˻#r[/[[O{sn\}Ϸ:*.^%B;eC\ NdH+ W%.,:iя(#sp]gd bUzFqqUNS@S13"GDJFms)}L9׊FHn?PId/0UִuK}wLno/⽉K ?ywo֞o_ooS̶55/LY{qꟻķ- sO_ C ! 0 g JwWm|zyQW[_Q˼w]4-5?]V؈(J3] S;ma[Eފt-/K;}4(ƅt}RLó mk]Wu$J"8z- ]*Y7C#­)~6[󟏲j-L"ݷ2 㖳L9*tM?C_VQ>lZ@ksNƠ=*]+]T ޥk Yk@33M{W$ppHW}EwJ1D P VF̩Qǐ*geF*,c:B.]nE4돯KtJ#ɠҽ>LQwAvEkJt% 8dvtYߐC?~,q{C|mr<"v5v8 T]oJ 9bp:sאЮp@g hy?³I&=[J%k(S<9T)3qkT&p]cM9G Q H2|^ q+r @.^A= &?w|Pl.4XĶz; *gnG4r躎[JÔky,xͩ[cx PKvu*7VFD߱17R6\!A=wwI=o,̚|9NxԽ}s;B4eWo?\{~Y>Yn ) 4R< :-RQ{{&K* u6ګe,1SgU]Ɠ] 6+u7׺.e'v %>$["vHIG]z[ ֠jۏBN2 Qdͩ^Ή\ /N⫘lOykJ}|N塌 9K6˘[1W2|Z*vuz<(]8$ OggS@rC4&n {"!"6[aaɞI) 79Z5< 7D"g/W*h6oǕA*LM髻;Nu u1-|RLS׌ޫ|Lt=t*0΂NUT>OzBļ1']9,S'u6(22#NF_KvdtM_Kח5^%He%A]kR#WBiDvYKAߙagk@ҭu*G)-WvzA*SBbFWC{~s(VĩR*Amɡxž٩1#) %4 ->*Fj_jTٶbO g(2VrY<=T(<(|._\i9a,afdu W㎇ ~Pk|=gyVN=c-YM4skUx^=(^䥙4C糊S^AV3]0d]^Tp~18̫qiu+g=&n׈M.#D8Y3- ?Bm[06S.E7>)q``z/\o@"uOg wn{ӽQuf nا`ȵ ׌Y5__{umDu㪶=Lsli'7W~ dF_BZ3Qg<=x3H^er}^VRqekvx9v+?d8zwYe.In fEpollio_0LCy-r W} vhJ0)-V ~ޣYDߕ9)V@jǦjKO *tlǕ΀?cωBڹ}mcsDEľEBȾ^.ǽ̑9Eລi,{֫ uamԉI>^6;2Γv{"O$-]y.SP톄J ڰMk,N8_=&iH& _ GCE H%BF#K Ast뱦Ft28k"v-*NWىٍ7S,k|,&9,"#3vҳCBQK֏z5[)Qgꟓ*JّYx5%{ƽMf梱S15>!1Gޤ#ESvj;fTk uevchWE؅nEtv^"Ԧ1k.^Z*ٱf22552qDGnz5`&lUeI8a/ykn1$AZ$TPtյ憽׬I "iN[5ә S  ~fV(p-! "_' 'Q-])RަVfúM o:ᗋwM sRi޿}S; պ4}'L<5_b W 69d=n5 ]c$=ݽ.ҫ3ԹJ.qo_; מᆘkjWZ3P*ɵ;nQAنHU|pD"ZN?߈~>ʻNߌ+fdC_8~).yѾ?o,' ew;QhGRS)QpeN={a9ogc`-AG1 {}K$1J}3(vEoϲC7_RA^fSq\7[B]Ψiwws5mcfk0ΟKƤ[T?5j=8]*}KF:rPYjRJ#-p}l *kx<njWOԄqO/%Y E#wn|K|?ٶk:(s%tS(tճ$>.!nNg|˙HMN#-blsT;ֻE])`9 $aM4%ImzLO$LTnbDq[>G]:''ǯu͛DM zVԲ1n=D^R.+E&k> O:ҷ;ݭ-7c<ctw1-鈢ZC8s~hS2F1Oygb6õ_tʿ ҳih!Vqj9BstO"uAy +j֙ÎqCƨOb]_3ś۠}^ȸv[w#}7rj8|q+{יQltbb][P9jabu.j36{aXٓ:N- |Z4L9h/W}i[/oCVLy?ڋP}Zo-aJ!ԇ2͏9ew{4]ا֖ݷdw~ݍzyw~‹ 'JˑG82SϪ-k!8'X,=*t)1HjZEgH Y[ZHEYIEkM$pKZZa j:8{GԀ9gt"hSk˚\85%v}9g 3 ѥ3гdEe.:*韱|hDirk3 | D U ,+\St,XƄ8 -r† |&87w<[CgS>m1ny)ORj" vIN\qU?/MtT2u ,s2wIem`icaxʩlU?}ӂEkN3>Qmp7}sY87eڑgy[ϗͿknn"u*YP粄?7ntϑsn H~ED˱tK(I} jS̥vJm !2J9TQq{FI3Wf!ק5I5^ւdY)-jA=YkLf̯s׹}Ob]ު5ɶuWbTH]'I*%OĖcs_zjFoI#北GscF"1,D驝vFT9ca.1F5;ģgج)_S^檱byW!72 cI6vߴ._ėG<۟; bwxw/k՜Mns :߄z6+/#-zg;NKxܔ œ7p$a1rM_ { ?7<[xWʯ`]UPUBfqtq+m1cIah c|l~xo\?68w{!?f1ޘ%1ާM85fY*6 _^\g7 >vN _V/$}wS(sMqjDVBNbO][%_ңBU倢RT^BhM#]5k(d֦ OAFd8v1S>Ǖ(vR{^MXԋLJK 3h;N@tpD阒B!7)tڒRZk>$HX?A\n' .R4R*9Kz*hQktߢw63G}|te~Cv-هEՂ&ّ4 :pOr"ޓ 8?F ;ak/\$զ7)HxrOV %X6FmS͉7LIkbjڮzfLs<|W*TLbzZ{Y8~) QϚL88o=1ߣC^CÄ[<=_Ƙ/Bsƻ?hImZKdA2{]#vU򌫘 PC_SW5\sϮEi(~1sfVy=䬼Dɴ}M݇ݿ㯊U#=Evq*upJ:SL|dS G78h׿F Wn-8nϝR]xXR*I~Bw'i/t{Zd?ߒ:z^ܱ xd#J[9W!pt RE>_45u4Rv"ߍZ3+PbS._ x]l̗b*v}6%|FΡm~B>oG+]Oө^jᮤ -Rm]HwVH_矋}_~_[t߶i;#)֭ebKXܭa&2w;gҷ븻fi)~6rfed>lvp31WZqG`8L!Ks~^k[w=uNUZc\j 09F::Ȓw_'ؗBL}Z%3m{jA@JWgΥZW-zF4N$+QɬTbw<"Ege,xs5TkԜ显hY#LDknQȨI . $ M*wvՏH )<EJTOTa­(u b+(ΩJd=fR1"9F;k ht8G22HAc_yg8^ɽUW)iŇ1 y$S%íʝ@:_tEHfJTCHygb-l$Evgja䐅>|\qʽe8] fRTZ$ٻ'֎ Z}e߿sA贄a h쬮[@-i7+},!ȪW)tq*mʛNhs޾eǾaSwt+Yth [88Z ޤqQU'5@\ .`ݕ!l19gk$FGfhQ-8 PCǚ^0Th?x'q|`R_Շ l$<^[nSvH/[?H'^Ym2F^J)9^=lW7&Y-S^l~;CB<98La%-Յۉ ܔ}W 321SVI6Zj :IKw'RĕڭUf"ukrI+^k-V+@^jnF&Ԯ&cizIy)1bCr.sT|oѬf=Q&9c3<*Z99NAƲkc0u# `|iW*Vl [w&:wbg9N$Ԩ_͊j׫Vc>;w_ǰDW*}`~~Lky;1~#c^$*E&0>6q,ښlf$TEKi51+ʢRB{ܐn+GM~wK?tIU݂%x?ߗ͜'A6<ga訏WߪY\R'6@{fU>n[Cm5 `P{'7 6[NZg2HfC<(V> pmB@X,>+F#K [a[0fA|VQ ;A%H0Qx<ѭ;J>rRgħ85I"C'EW=uMjԒ&EP}%,]X”w%ƲR=pD2Y*@yۿ,KKbL φ[m1MU }B"tZqHJBMG9{d߫ՙn̑9zf 7?׫*5[}'19!2Z蠣Bk .dg4Rgpt+$gOn:znr5ֱƷ:8ʪUN]p u"#J5EzS._sHMQR1!d}G3k]KM Sw&jXžq&(1*sYgMAJ18]ǞRU2>y6gV= eɻ8OQ=,}>(<'ױ^yi y,kU5X|}{95tޏZDR3>qڗsFA>1+N3_N6kn&Rf.`Ttw"krF*sr^ TpC^V4=ז9rrw>>zjs&*:U Ԑ|ȦT0J9(gOWgcy-exS2 4!R۶RT̟k'>nu=.4]6<[<$/[ݚޘ_Wt 7(]^`[?ύCa'rOx1OR5S𮱙D5d1 0-hO:K'wYJVx0snӐXgz:ےzt83WeV_~w0!(%͹B.(OggS@C4&pCS}!$"6†G%#ٖCDxSP O=DCҝY) " Hǻ אivHth TȚ}k=%SȥXb&Ԩ(EQERS&LKQ'PI%֛&qJͦEM7Z:EՂvRǁ꘏I_z=c&݌i]st"2067u >FqF6 ~Q=O(2Tm[\kkU·Ggzv6ﮍME [}|tV)H؈{z`R<7Z_$ fq6N׫]ɡ^ 6ϔחܣ'E{qDVA"άӿ5'u8YPrU]gRz9_Z;g%Zk%ȪU"8[ߡf4S5Ʌ>ԦN=)Қ2(I4:;G'|4N=ZZ+э(}B4nMjgH"'uG чԾ8aS,(8X#g z*Q?xj֩|:%7EA[x5H s߹n+7.bΝ AK|JpyʜqM7ML'If76 2k-9;9r`f8=zd=' {OWiج}m[ r~ ^N}缍@s-U/U}FjѽwAk3F t t7\?e& [jc@ZB1)鹥Yc ՌkϹ*<_TD#m˻,Fkw;is\dY7Ml '/8hLKzSYVۂ>oYoԝipTKFHڮp yo2>a41ד՜ҽP/..څKrɌoi\iRiKsLKӍzzI>7[et/>.b'\BiusWsC_x,({YӲ\mL|H.pW6G}! 7 Dv"j7!nbEvǤeG;K9<(߳[xUW_IןL f^I-{4]nwd=5AJ?/`lL8',X.5;#V4Z_'zCtSoWO:v;jfo^֫~iFݛiZ̺v;C|X K8Ʋ{fJQƮ_w,>[ˊeβrTІojB y<:Il5?. u;5+L~6 ^۲1K:='!:hTZ&^2_8/_ 8(Nlk#wzI&ў&CafRiD"/(Unz*SԬh֦V:dEUφqsz\U=k%K ‡\%u28;6)}kw (jqkv{ QvKY;|dWV'bYVtn8P"UC's|o%@ۋ@II>:R3A"`&ȵVSBZ;UG'ҩ*WQw#UzmKo۱ݟv)D&IPQCP8CWE5l =:GI2@rΐX\9u/B-jEj= D;Y쯕;.ϡUU"rͬ88RN3!:~3D+ M<԰('񅌪P< ՚5iUVixDZK[H}ǨYFۻMGA6!\{6cǫN`rMo |DP <=Ӯ= tx +'jeLy(h>Cdr)X&ȠhDQp60[0 ѱTÿs w&gb c% #ܵ}Zgeմpui|r)|? 㓻4 z1 Cm%BO{a;ᑓ_8nt6\AŁI}}JOn%eIH IRq{Pk9NGe4s s[=FyNxI맸;%^tH5^͌*0F}Al^}/]X(^i?~\"6 ?)TqX9.%71ܽמ'$=K%0>'4uKS [3Wki {F|*>` WK7SEߡ΀kb}Ŋԅ|2~N.L(yȯ8rOS6KKXk^1텃^E d#?ƨk*YwuFy6 {8ք=^E£d׾o]|%!M*bo:.sѸ/Z@zAD'u&>D!b=vPy65wk6#f2MQ^. a=?k܅֚ LLŶ~8аcyZA bJ:1$Qp)Z)R:ѪNjG={VK:֬BVuZL1H?]GUC.CtԮgT͋! Zkuh@Nr̓4qBw;DWmS#HGEgTb(t}5,EYu:% 0QNZV vv`(!J <>D5tRUCZ[SN䕪!p gǃFjSM!ITl*G5CJ?g~1,cp u9>SC]eA#Xl۰ChQHvD;GQFg](H8QDͺw)Df觫Dlltzw~@>p B>;QOvtI05scue7sm4joo6f1~F]'kozo`8ϋ3q<Հ%س؍_}AtʂD8[tu0Ѳ*e)s`-=Y__K5-!nmSxnR7|?KT?́⋝+:}$6ѕ4,{뤥-t~N z>(KvՄZ\])_iouA4YDqL+a:Ǜ\K._Ĕn*$t8/Cp20o#+4ƣoϬS/чN#*+ q{ j5FEwDQG.G5^#]mg>Vy?xVBM0ù^  S{xz #qpl?߸}/t pbnG2}|kT#S*;(ˎbl_6xne#[ /_=UR 4\}#D%iև8>k_P5@˳6])/2LJnYE$mRȎPA&U%l$r_%+IE\LY{OΙJGsu..yT){C3#.9h4x}Oci]xxik6$K{fHUL쫩${5[ɗ^ǂ.,67>-u}n  Vz'g/+oVQERX,~ͤ&ur#[n L)Ayp'Crvިvg#!$]WʱeI ]ʅ&*Vs}?j@M"+c {yq@Y+HϾB`0v{%B+͟uŽ\Jv~˧ROéXD̦Twxx<2exo#r嵭汓_d/y.n(IԒ/70:m'jPHjΕ/wDk/ȣ}'q_R3viOm-L_9މޫIK MZؙAn!v{7:H>bLÃ>;U.8B=yJ!EeJA_qMڜ/0Ԣ(ը=݀CyD)8H[^{#YX?0i Wn {-7%TvxLQ?pRO0u^7^|yڴ@Չ{嵊-N^)`J|=iQnb Eђ = b/2_w]~dЋ=C|Ba8DLMK.hMOP|$bVŖ⢒j~6#!`vl~_hoT 곂 D~)yDAQkOY STV>+Μ}YǬZdc ׳qZCڵG ,d\5jgyc&EZ]4b5>O'8,u32-41Թ2y.\QS/5~WјFB)b,#ECD݊֘e!s Zb=q=U]KTd^DHS"3TȹAPVYBjd~ZY5kA%i Ip ;LW"x#:ǩAĩNyTvwԜvȓhߓ4#yxWB~vzRYu` C NпQl=2c|\f*NlaD1|l%y{Qˈg5CjM5zL~WS=Y5G} Ү\SD%婳iJCw`?w' B;'?ϮnN<ʜ4kd[en <-SkS!S,֗%GKFz3OG}yjyg0>UWs@Qbe] (om_/kT컼4zi펃x7~YyUWaի ʞ61:,:P͠ԀRpqQB ƿ.[ U?/^ԣU1\A[u"Ϣ'8h[+OF{WQ~_sU,j|])= '+]=Mb8 P?RS-hdvZym4zEO?^byR3|>iyX0f;!q x/dz26?Y9b:7_"ʎ=)}&}&\wũǣS M-{Ɣ0˾=RJ~h!k t!ZCûB{;2u]Cz*v]ބ̪u4O*kn2|LtS=Hg^ ZmX ؝7,o.{v;d=iF-K Mh@ƾG@ s i24 6 8gTi?s!Izo!u|DUX% RERυ՟wxj˻ `k='>ѩDM%INn-3ѳ85+T ImG#帊:ZzCt"Z8ȕEM2CI)jOD14sK-R+u_"23'51kV%Zi K-:E{="tLڪNH\Uf^}jIV9'w6u.phu"g/5H+Q9jN)9[,C</}kf:0v[}V jNkݳDTǡトHQ]pbZjdFv(ETP=CJqКBĐW2؏y,Ogg8FdS$cv (ZGEx^Iq-ԙn>>Dl LC6y`$S B(GdtT讽=[kW49y7dM{xwwu;+) d):0UT}_`g>2^`3Gq$>I$pW߮SQ2ɧqY`9:O{kΤqa/K+<^*)Y{ ,Zuc7[D{\~ȝ^:ZƽtRZ:ApJ .~sⱺՒ[oU)%vwj;^m}>RPVN4O񺚚x䴮JV·Z8/'|FGkJOua/^jR>]!U#s|? }pdRӀ0|mt+{n6Pw6*N~ee@IkoU]˅K99K7JU7~E+p+u?=uқTx~.% {'Q`H5FEtw{bN1Bw(X /T,XIQҭPv9֣>}[-f~HNS}}|sA8]T:tuhBEeǙUR0<θ\U+e{No:IRs~y,.Asrk^@[I:u$$nkgD׹;NL"U9^G=*tIM/zݱOAMr8#o!t/v5k(5!*Ž#]Y^9=vjCT t_&'B?=9 :T%SMU ̔+v(jvH9wy~\X^dhgIuAR,Q2wW Z3(G ȯ< #ЏSOIm$TY#Z4Qjv+P')wjfTHC5!:OGgȸ[MugzmUw pmS#C\@rJK O1*h,LJ(̔ u](1D]X&OXVWqga/6fEmnSjnm}ʇhx\A to׾twӘ.j)NA#?y1«qxk_*Ek̵#Ş'OQs|ew,X]7)|Z*~S5E;gZx{BZQ/$ =wYZ1~t\"]E[zM2Z¼ȅ2۩ح3Ksījd"$+T]wݮS[@W60l6Y(G 89ƣ~^ލ?%u98kHg@uxo#|: xוnn*۲t 4Y_>YE)=i|tb\?~|ɕk8m|}n@C,m]g4Fs3ǧָK7X .R࿐ޚ˭՘? DNjIIM_ud[ _wSi#=s)DcFu潞Z61X'YwC4#V=,/hU"{_ |jTZh<]GjsFGu &K!5PM=5@k+RhO⪵yjf֗^{;%ry'N?N ˢ5XnGj.^, ޥ"IFAI /coV*r|]Rw4 ۝:u|7c:8eR}|- RcfM G}9>n:GpiPk1|2D CP?g:sMNN/cI IF&*PQ7ZR D0~S u:Խ+^"F |َ_3㓽P}O_eBkJ֖LքzRd{%?Z{pn~[Q6Mh=tz| 3R#{[1JW gVD6h@%S;oa2 @AZpyb;(I/{(ZDݸz97jfyVI0ɡ5p.TN-[&݅*.&ۗv D^) ~`ZA܂gոjGDHiJC{4)/ ض9a\-S=ÍQ-{ ȥɏ5SabRmðq7Av>"v:sŒ/׭)M?k@}&oqiEv\[սTۣK.ȴϯJ QO _RXaoAs~w4v 䵌}NN-e?LE¦{\X7@BɭH>)#(h*Ļ[*ws= ހ`Wwe'5jGAƢd쐶](^yF=w՚D>BfBk}ot5eɵz{/׬2wLY=:fE~<1xԗ}kNObg/2?q|7X[ϲ`L>O_ǾZ+w}9%e\tރk{DRk?NխRW_w5Һ͐)-k0׏ ʍ#=%{ͩ/:Dv-E5;*-VtjU=zc=' ҕT9ÔuHUZ7)Y ^ƜKHEҁJׄ?$8ڤjvԮ!Yd-_~Ti%viH)QuڙΪukf[x#5&CΦFvC8gR2:g}׉9!$GEĝ}Hm~HE"ψlN9W#HGlwш$ΐԃ0=gn3e~X8@3Z?z?h'-+Vј/^50g,\ BǓճt[b'wιwִWDJKP4N7uN'C']`{jEu9N-\cgf0/iy\TܟJ]݅5y&h>JERn6Lq8N^s/*?Oդb[=pj;:m{NEC-|i{MK OF;:N``\7!_ɞz =ʩ?‡DWzy~Jd0z~8{`\ڙGL{r;ݘ˦.& ] .K x&HUs䮏x3iF/U:vv[!z_cG֯43k k.-ޠܵ&C C_}>+9䬭ՎJs7t'Ů5vX_ݳrB$^_Gn>{y|IEdcN6>iכҫ9⨷cAՕ1cG-Gã޷[{㧴} r_[j0uoWQ7Gvrt;ܹNA-챶*|Z|e9n,4ݲ^|>S _bwK"{fҬF2wD?z6`P+PŷU9s/sXe{gTfr5Fû?'b&\T@8ދ#K@4e[*Lܒ_7 iIBtݪ]FU[ؗy0ݲ)sYYLj.Qֵ8km*H>sIA/@5 8>}0A>-]}9G$h5~|o1/hOh$̪zԇ,jpY<*-UϐQh|,RFO&ޞcZܵnP\S2=[x2V>cd'IqI)JRݮ;#B2lk e^ N77SOnD "G΍]cmG6gq37Xr~ܑ,Y|6q}q=ˤw&NCJԹVTZ/\~ r]c}]ɹ8Usk«a2_Z׊N)^_/ϟu^P&{T2Gf۞]$!QOjDHiv CQ@nxL.z^~YLro؎a~ 4lCfsfa qr~AVT6;;)n&%Lܽ 094dvol~o˵cQu.x}M-eh˼x{}ͮK;O{zAB1s撋a(SwSs?xz{MJEvȾxl9ʬ:C(Fry[f$$0g:[ ՙg"]u}oUז5>}"fڧ/3]}ۿwo_?oƯMv}v^t݅F%~<RS.[_6{)}v;kϱ{jG}`ͱڟ{^V8Vrƿ$L|'\ L/ @ߞ[2W cd]+VB Jv3Xnoj'ko&2n4EUX?׳ۡ祏6iիˠ&ZLdOhAa t|W}=G?nWK,>xV2>j-zDc_EWuk=0j_k.Nޫle)~+l2/{m~ [o[g/J'| ݎӁ1X煗Z;O9l+z%nJV TV"V])L]=&'Z 2ey8l\k<׍:p7zb>5=_7oeOdD+Q"gzFUWf)8p'IͶp=Fz߸c`M2 H~yݞ۵$q|pkWs+ozk}P,\PSe87qOzNźZl 5M,v؈aCV\a0upuL1tXlLkXM)e`[qjuvS,OF{*gDc!H(QGI핝,<$MOA>)MB#(w)XSF!a7ݞGj*'FdX%arEPgQ+Xjz!~uu[ +2RYW#a53(z6Ӣioꀄ8=5 $l}շz6=>5^ .U֦ %o縷݃GKl=ҭ-&0e/XjK\lul2r:NbdʖĞkNtȊjlqma15KfD>9# b$^z5lC TԞi,6"*!&Q+qJXƘ!2ߋ8_dAf34.WNjeuZPou/y4<24dul]u^*K\*&>}ѣ6Eĸ\R;ZDe&o5 Q*^:,Gl8Wm/ C9KlΖo2U6_Ѱy(xums)w\-!=MKⲥK,yV"YEP'GϘ8}}Z;Fidzʎm>ENJ~\bչ#SٛHD'#_43|oot2~-wh+ Ɩq֥9/Ͽc{h:rMRPZ<Žtjh2HF6ǷpIP6X{ѰMI:ׁyL4&!X;{iS|j?CTG~vwngf؏H%oJkzg/?>pGհbWM)ETQCfE$NV٨>Tg$,/ A^=,W!ˉ/n"8:8B^T4FJ&|t{|6viԟ]e,Rgha٬-R_멇* ͨ^7`ot8+5"]Kw;a "hS*wg#\;v9ߩ}}Z4~e4v_B;KC11|yU޷wktGv_k)g?]dӱocykFY L0sEdjfnѾۊGOeJqAmc}uxw'~y׶7:Jwλ"ùE^11-휄I3x'o{&.3AM0rA*U3T#?7$tҫ cʱo&lYՎ0+R|jta {c(S_ćQCOK[xsEڧlׯ{C81e*Æ!os*6o|Mfә}]6s5yTrU/i׳]xom'\pE)j}ĕcv+4?=E R:2Dv!|Y{eH6< ĊKLwFF!MFQ>)%`i(]T"nXlRT ? 0fկP9Kۻέ3B~qc?r#jY[*\ֹH'7tS0LsU~HtH>~\idRvG ;&(A^30v;<;wT#t{]z}Z|\w?mf?˝e4L$wRVJzK3Fk~7yco$GGzMi=9hSTA.yui=^&J= wx|=f j^\|~RsB'_Uguq7t2f >]Qq5W)<\Ur,*}+X@)JFB[a_Ff_>CK۽ul6hb`~g UU8ۯV6A||' oXޡk0VBr$$_)m0 Op DN.U -R]_'f޻rY\RsEx?1[{V UV DU08-MƲxW+0pws6]U`ߝ85>/8rݶ wg0. 5ԢC^꣠ :<>RaC|EA,VtkO$!C'AofBgq)`bs$N&af\Es78zvT>.iz96Z%./kzҐJOF}]w/U|`=}W6cO:4]w}Ygv6&N*?H[Xd?n"?կtQ =wUخo'uzx~JJ&]Pg ւV M*2&y8^߄P.p5#q>[/|Y>RkO2og1 =wsKDR?:r!%3{1\s>F;x2P 'CQ+t ' -ZiClGFJ*('`crГR wRwqD^7mGZ,/-WqඑhkŃv磳vjhZٵk׾v=zo}:^R.^.k2DkX(&vc'c]LC[]OT'Ϲq˻>}tmxey|_=b>r>UOFWwFFT@m~MźSEQ  `bB(T1zOvb? A#cc1OȕzV%\OcNc86iju3ѻ:~% wshyz79vUpK߳xJw fҰ|إ)pjߍ+{|}x_>9^%,Rs;}Vl WݩGt˝yvӴيM1&2uLR ޣ'OO? k3㤝8>jM0gun J ={«kSIpzeZъ$뻉dl^Qƨ3"d:O;[W&G<].Hw;ĤB}&*[hy}]zJʼƂx :9a_w߿Nw Z =|=5FH *\JK33u47C 7h{?}HusV>qjǩ s-!\7XSB60:?}{n?6{Q_?E]LK؆nV2N\o9S}e]qSi%oV?n\ݡNgI.ʻc9eowx/iVvyO2mz|_&??e>cz߿&vuguή5\PU_НWWWYwqsoY*,(k~LF۪kEEUzgO݁ KŸ~ mZP n+R-5]{F{\ OggS@C4&t5# 13EXnwrM}q>vHj @Fk[<H\zv>)"ptvV k92v,]];%):4~t^E gJZB עg5}a~SYtHZ'P4ZM׻?SF\ٞ /4POQ1-ThC`z2 rSTji%m~ =rZXaTz ?A@`[C}MY3㼱Z5iMH `0 =2 oH\0@)P'[ۑפHK6iodEF&NbpqcbvmvƱT<!s”p_2:7gHqjr7O9խ S>Kčr[We{7fӄqdCQkg';$HL;ȕ\[?!ږ< @}xub8k^VmƋ;w \AQ}guM`j.ϢZ"aIrwa.?nQKo9]sM”BJXмշ`M֤KcfUۉ6|uɾjq*UoߵAB9kչԨ~UQAc#07QA?'FDzFo6c\p#nJ3+3}5۴דǮS" ,"b4O~'q[D?}i̾Q/'?^h|AHpv1#6,N&KgX}D'^I'dYb4qGYn,5S}~C6E,:an=$k.Nja2y6RO~10~G|mnՀD_\((rԦK|ZQ=׬Xۗt5+MN'>i~1W[j\PQo掙Sd~.>hS6P:g&~;#G7rp`xXkv7tNؔ d)<. h0$Q@[NW'݈lezvJnO=>\.n)S:׹W+VbBKu+ڲtiWY#>:gUǐ]kTwPK$>tukgN^Gk=eahhEO>H-x^ү #NZk~]\BoP]Գvm*Swyeu*rQ63p=dz'uT\C#Oc<ѽ3 INiNHgwÃQ wqUКt:>s;`S94{(J"yeBγ[7.?/Q /g!f#l2g݋:=]7m#mྡjijok3a٩8P/oog\ۙ=d07]NeT^71LX5_E2rk88؇h*q+.@u$rݯ@^+lgSqV%YkAN[KO]쀡\K6?ON]dɐL܌WCH(=aa*R0h\I1D43̫,<l{~>$GSO>Uժu`{t]UE,YMFmF) fz`TC⋷a:[6&~2Ic-,O%("lJR~G+}OރeJ+ИDBQ~$\FԎF: ۥjRKjZ=9ߙ,;1?nSR K'+cB݋X ӹlvqke*~96V$}v?eddb S4{ 9~ϏV6>íD>`q$>\0}s^0ƑFno8_*+WK"gqnݦ8ƶvZM]([yƜ"{Z3py٫~33Yʵ|q 7YϪ 8(Gdnf!wcgQVT7.˟by?D ?'KlOѯFq?H4^:,sY"Zb:^ݽb2tSSZd|M8{7?G-(@vuW;4 ۬L9矸Je hx EG#>_T:Lg# 4U|N;@kTb %>S3(*Bj]5*5(;RȖ ZБu.._"WvO G ݽO:scU P$8JEq.~bgk>%R yS=kӳT%rΤ_\ A~'y|!Ap uk(jZusuܡi`=v+qe8?=< wfnȏa^{@yݒz??vУƮG=Mtc:b1 >u-SMiA"h9m?ca:Yh\o{x'eQP;8.QU\XG21Ovrbq+7$>sĽW=gOvm3b4󢙓DOI::fn$6x>EN;Wrs=l(VLj9=dZO֛Iq+R 9ٞc5>f})WvC YsT|ӝ^҃J2OhZjUk\Ҫ!ܐSş 96$mCK6K?>2e:QWnRVjkȦtܘ7HX^k*wWO.dHܵP{1c-'rj$wa {羥[ nޟžc$ q,?8'WpjyٲbSݯeUKFĺ4DOmHR/ټwl9,y_GݫG>\ikSLQ%!6S ޅ/e7I]G-o\1k>Ox4}uu=mYd!)&(p)-\7lgzjT bVn*GM$czz!-eP]H2Ͽ*ѭS5HZx A#:#gфz[v!A+Jn|mB"8=M߽vR%lg"Ev*IbiJT'C đ~9EBjtPcynD$3jЙ@ځߋCNM6 ˊ{f^g;Ț^2Wra2g75̵ּrmikMQU'e=m*/2KMI|3[' 5N~87ٖ;Ss[.$i`ߨNQMzHƱ[ f⾑G(SWz& &vA=Cr6|&5EUo4yAߋ#5;[)}9oͲ.)-a8I:ͨX5.ٝrqi:K|T5 E,J*dmM+$ /+vc Ž2B] !#̢w/!p' }бDɏ|S+b\YIz2BzM_ G0y VS2WU% ʆI}y$K#>H 㚰G}gD(w2n C$W'ousLz5/y%#+@5}vOox= KcW*pzJ +8֬t0I{ʗď~_Þ LDVWE#'u_G2\/#ϊ$wQ&|JyߍEߔ9o|x8J.]?yn>ٴ^(+BpQd:4om>bhSo3ƀ qc5`?P OggS@C4&u"~uzێ#2weʢImڮM ]0nW?ɝwtG\c>kD hh)?Jn|\pŚN8=~YKtIQh·q9Z#[]wX떗nX?,0v9S嫈flnkط#2j#ZDnF(}?ܝ9Ԝ"-" BhevA'aտf0}s"]Cy6ɠz{;d SyRދъ"fZVwq|ӣ87.2sjq.+08<)E'㿷GHmnݮ|ƭ&`EvD}iΓ\ю9`V@i1c~{ĺ:ߝg9';(ラ#7?  E1E؝I(vNb85UnpӞlԈնcxzJK[[2`km6].c~yV?9k~ ?:*cǽzS #c8X+VUs_[W-Ŷ^x.Nk9m eF| 5y~0ASOXuMoWUl<:htIz*/>ΈH7Ot^%Ԡ•k98UHqĥ_joI_sK+,WXҽiY\N:2x9?N}lQ^c4?.opB㗆!kխ^Ve/ӦnwK.ݜ3V!mQ._6㭙ۦtZ1#ܩ~9j,$i$ާ[whYw L8XlP3OBH|: tLӶMݢ hQDZfKl}hqL[smi//v;T%fY_=Ek4 [y%JFފE[I`4>Խt:hc*Y4.C{Q !r`[)2XN&{P.~OVl,i5̑MF7L)G[9e1Ԯ~*jkikre0Tæe1 Uc'a)SjQNfW[iSծo#P/tԊ-ѧ1T)l[ULEɗ~4U RZdtLzĪY7|} T%\r(-I3(:fUT#YC0$>k,emlz0<wDa/}?x vc 9 ?0jE f>OpJ n O]yW7}k/2<{ƒi@o"}̝ l|`-n_9$GI#}:"͉}8U9~vwDeFG]@8[gtGH_r0Սo]gc;uwOO|@(vbu }X$~Kr>nۼW=JL'}뼎gXzQ3TR۵Qz ÷:/~.~}ʶg\Hq-s^>b?YFϿ<@~;WJQ~K%8y pw|˂SݐUhXW^]@W94_]m8ϳ/7붹}4~%'d;Zg1N޷}ɭţG[qSfEusaH,¥Q#Ir<3$uPjVld@[Tj)|ĉԀC# cn?ϼY۶5#/\[-~퍊QȊv;%y74;W^MN i%V<6x"oJxy+.\zRxUKp" T#~TǏ8$IءM4[1f_\iJ#XE@5uT+@y_?K!y3YlFV"b% WYwlVDϮ. j{0-~{<JߗuQI{4~!l=@^" j>!::^s7 2`1֦^[P717%*KsRbGHoK$۝Xlcu\Jŗ&"}7gzXˈ[BEk&?4וUx]$=fЗU";}c Ufam"\M۷Y1.ͯٛ}v{^gR9>[qj4O1^ms14e 7KgYޗSdNGW&W~ژWv]LoZuCWvφGET,3a8~S%߆Hv6-CQ}K~*y{MTY>eVѥENTz8m3;Kq7`g:z4#,E6u^mekf;qS}9]LǶl*eeL<+=nV{Ps{.RV`_2OggSC4&vErTbP%ms./suS6ExBhaoU ] |{{jՍMd沾eJpkk󠿂Vv=;3 ~Շ?aqj%Әy{7ҰN/)Nkp;Ftܖx:mslKzͣz 2{8s()sk=  (Esш53yUBK:X}S[|!8Y'\\]j;er!r%\l˪:{?~];~|dH;X.PM47t[YER Ͽ~Ѷii:<}^eq_h՝N![)+ݬ&t(T"f=Z8~_o]ZޝJ㯛"jᯙ,yܽ?^'M] ".p>& qaToLNuwsn_&Xc>׃xlއ}:3w"C||ҚGd!)v 8۝i^XrݙYWOyx릳{'HaɼUH̞Vd~Ϟ#:e_~=bRmz'ҭ7C}xMbs}}v}k9| 2NϫmvQ.g 2E5{R=NrDXȢ:.@"2L@ mhg\}]HY\s{zskcм-`X:` CZ^|}~ ixܷ_z֚ѫ QvJj%xptdU):qCLmHddB;CjmÖy|Zǿu_uYjnQ̋=nFw]k$#TP&#qMd4.43"HUly}O05ĐMoYT}X?7{=H)\xIzng/xSp~urbq[FF19` _RY-#MMwVsKd5Gӹ^ݚ?ULSijN}Zp$+ f;{{O@gG&v Io*oCԀ< Gcp~\X;R'#rm$MFAjE ->`w[^7tJdl"y=F͎vǗz=yYxUEۍW/{/׳}Wf}1Y::z?R.ǰwݥg}^ay\gLU&Qcߗ|7>8߸<棋4xrymg8~ucُ/Ccs.{e4޿}Zna-=MCwWtlC_lt*nU;ܼ1W+Loi{|K,MF ʚ[t --?ż4[#ٽ:ܫ#or{ZLS;Ώ˕VKyf!kn+3YIdkJ5}YYB@F>_4Z#*o]OkS^ #H > 0*p_O7Z )?JtB2}~~>CtKf4J(2#S%ßoF3)l;lI؊ީ|J^ӽhS0 1=NRaKSE4MB~tXtu^Ӹoux_XϽ=Jڝmwcf͞2]?mtXJ&ć%jyinAibT+QxxfOAk lh5zW>&߸?Oz;ib9O/)U_vn-l |е+*J_݋ }w:O|`@jP&gwcd, aم>bQ>:cAN(gɍ$.gIor_I0Dji_iF Y+l3u1mERB{?S93[|Ϙhym+se-u:VuD[G@׮7)JP.kl}yB>93(Y[ŹamA1R*e[Rmk!eqk22Qp`/,x~ henqd\jQ' Y*cMeUvur^1i]U IK5Eg:钴H`#WMϮUU`_,>!NQѐ^UG\bۼ#rm0TS3N)߇ʄH7mܜi錓8;#'6k(z5c[pL˷a6:9lkA[:ZBҬXp{~q~` 38EL=͹kOI&2#G1neyEhq4 s/- 4.SՌHiqݏlw~]cre|Ѥ詫 { _0DO$Vx=KI#s 5kU#Ar G\]ڣ*<`< zq22No0nC$GƊF T V-3YhYOCFzFfM@vA1S(YHO#[W6U>Gf{6> M3J﷛G_=nhs4ylo+۝}5| C 5#)xO-qN\J[fK`QMlpR˾?r"?@P=~F3'Q-6i)&˘Y,} giՉMajzic{{pX\}cuJ\=t{p I\ƩHޥ3H;}a3IFr۷{p_}",@ffViR:o\u,&+}yU@^,O(A=ܧ:L?7{N?A2W,K_Nz3>Z=q=meg º֣Ew@$ؼ_Iڄ][{״_dqx.Jm"v!"ɚ8]6ޛ{$4{{db*mf.c]9n'w9mombYS۸a2]<刯ӎfh|0_ ,u:~]Z^HN^6OggSC4&wlq[A-m>­/; / |NTy7B]ɞ8 sԬu<7Dw x@ ?(\׎8 u@PϿx<HA$hNSjG@FG?{С+&>/9[v%%}tXZ@MK u E[ӽ'JC&AZ @i(t6LAD$.5TN͢sO/-CUI)dGٞ1x-~$j*ʳYt%f~\1R-(vHcۇFJZx"`tѮd,hY`# ѬX;k5_},5+n!,~޸/@G=H!7neZ{oZ}-0PG'~]sc6)zjQ0K:NWEg1f] t8'(lX}6UJ>םt?B5Z{9_y)ZnZYekt45nrg#&J9X8J di2!ȝiyooyxs]i(G9 &x:Ma7kG|K{vi&c׎6=M^u>{Mպ.ΨO|I^(QJ=iś_>邹ڱL՚^zY$J]ȧC`RL@;qv`L$%EJ4h[dzBRdiIJB!@PDT+ IS+R*M;KOFÎx;wfڿ\j8z_Ϳ Ƚ#*5P3P$'D* w Er)~~},-Nmm%?ybFXvt*:%S_ ښ$ Jn)PԔ5u>Eő5.#:ee}nGLgc d sw1̞ =1OWzt.&bh@ⳕ:I;R5RgTꑽ=r?s]}U'@5?5kr_}눱uhh,udXE??G;cֿ͗wDJ)npf&0_d˹u_imtŕۏ1QF $@^b@=masXl= 㙮˗+bbXs+CK_jdb*oW{aRGhP"(D{F&ʝ?^}}=&T ;7[uW{RK [1~thީ˚HODK  @goao\M4{%mC~e{_T ?lZM:/[+?@rOLhdƏc/#g4.6|Q0ΞK A ʭTO~hrus DK_ fG^g]5;f.B5Ax޼먴]O3GmE,\Kkj!shˍ}6Bt}dDzY3̵޳+~eMț [zO)åΉ_.Ƅx%y< ͗С:BPNc$ڍ\O6TKa=Ϋԙ+^zkGxn/.>ޮW2nhUefUF_qgn{Wϣ;w~xz|޷mznWVߙ1}(Pyyke\˟lg+rݬRSv0n$[ U~۹c8=fawp>7~]г&YUg?Hh08Ljh$ @ԹJ:Jy;@VK +6)OB*HfU܍ǰ/E*A{fPΗtC QR"4%[-{N{|Qa`ϐ>cE*Y3R(@Uvi5$tE'eJaS;smo~"qpL rOtp 8VX luAѶat R.w=caNGGޓR&̿7?%6Q#]o}T._vwG`OZeL SYBXWCz2ٌ=(okbXu aj a@ohmƠdC=\q9W|4GX/2:mch%s=6'Uΐ$qK7U?Taʷٞ{-]ص\%"Xq&&K,a|[XtxqkL 0j r VKn:h\O-׫I35'Vn9.ߘc8N'ȥZiTϹn@4ُJ$Z^a a^^;kPbxv+ЛPAݏ8⹪.zA툜Z:WN򖠌!:Z}Ό|Ű" oߪq['Wbq!`N^*$FE۽wCv QV]}7k/^:~pَ8^#qqm5]J`yKϓJj&Am}`߼zeXXG6zY}wɃ.5 ڈGc'߯ݳjKG$2Nr,6󣿚}u̗"jxDb9y! xL{OwH?\*w d/A 7g OggSC4&xL;ܼs;SSaoQ[{"jr? n ?mИLؿO ;2eG@pdLdg32ߪWQygAYu̵:=wөlTRԹh w:pjR?w~[t71Ov[7d},֎b*G+KOD->ǡ¢}ji[PWb'hES+vkc=s )/kYtzL ;Hģjc>prO$Pi@ݕ=j5vҺK| ԉhG5UhvuKtQЛR8uΨˋſ=SщRYQԳF抴:EJqj7s(uEPԮԬG$[> @hΒWCϽ~zt%U6I,# 4o[`RRD@IAf1y^j-%5 z׃gr^Kӓe1x.3?w B 'z'⍿|z ]75\ \ m7m#B_9'85 )Uc’UvV>#Y܌s_lf[:|H^rj?tv/jy$NØR z^~'i/4H0t$gѣ<[҆ ȔPeEaV;Ϫ˻WJ!/+,qEuٙ=9뱱)tjZrE>0K_xsl%(Bw`ޕы-.}Y&{Y.Daj#6måCJ{.e8gVK\gկ҉'g{k%}⊠" ۩mBk L_J-~v"6_"1]E*L?ROzaә{yL8 q;oZɎ(FG{=Ygl j\ =n׸v p-;}NsEӫ`H]>f.&<*wXaC*'Y+}{?߯&3YouVzJ8x~[eoc/}r&4{ZG:KqRD j mqm.|.lfGTۢL4߅ܼ|o1uO<ɖoѶ9SeRp^;>^*fHTț# O9N7*f|C3N}dÂw S'b"n rK)t(Y.:?*ř>Az'ZATH럺1KsVg}.4_x 31M-PhЊh7@=&I&9dH}>%*l ETXяY=w#ZF׮S _4ApkS`Ohծ"+Ӕ}Dfn> Τ9E+:Gd;z)sZYSE p$3kWΜs"I$ Y5L~|E(Yk+&2^euj!A990W<#b)FZ/EM3(CDCz$vVmʑwmepj~ _6?j` usfvc|6@;,.p=Mujgxўk$2m_5ioAŮX{$B}t(^FQSn+uZ!na{4g )gٟr[?>ϰ/ӠрI3RC#;᭺O>3n@c{}ۚ4 `%FK'Ln\Od7iRsoN۞Km\T!.xJ ޼j0pgu匭y?>7^%{fc՞B}5ǽzrQݧELllZAč*,w)EANc C =^JSbUx';0d‘aʇC2C=Zr7դLW~ӌN%TVO N/y[K>UFҘA9QU9H,NZ6>"Bmw'n.xw(W0sPw.@9>n,ug{ۛC٧=&M>P9ݤ~]?{.6SSgW(w-^75T!".UBa$q׻>Ήwy>]8ʪro5JZ%GUV5EUEyNm xn1y4֨Ʃ $I! nOiaB SE((]߀Ruw$T~Pے-_{\,Ȥzt=h_["[wE:LU)z"[R Ͻf{v#fd(Ts&gNTϨ|Tv"Q P %A. CS30xŶ ꙴ4䰗ur]:8(- yI{}DO^xA b8suU,BYg>b4I۝s o{5ݺߕqHv[\㛼U"=y{M {](oBƚzq'Te,M,2;Qo]ʙ!n|X6[>&Mͣ&KԆ~=\(@,֨2f6R _Zdu!b)qHd})βw|[VH޷W>[1Ygsvt|1y_٣P( VOlFC@Wv\oT8=A+&7ƠZv3+ËkŻpr֜^ {8O:E&e|;l%\7mL^d$J|V}2Am;]'ş$D4\Fpsjc$ިck=`w!HE.ÉoJ>bzgҳa ǖ'9%5EM[K:;UJc:! _..5r7v:yYOEWsnY2B֜-Yòa+oe9J/}/䖦5JHυ/U{cfٜ 6)1nUۅ*X-cX[k jrcgr_ 4Hr.X݂궽gŅ1 @pۺx!4:oT]@;p/6t[{#^0ݠ1he y~duCby8Ȟ?A[GTQ]ڋ~=˰V4K?}l>ֆǕYDf=qU_YeYvmԭ7<'Ir(q 6OȲJdWuiċZ8gc炒lU M.viY@OggSC4&ye[>*5Cv5BUTa7YT}# ܸ~ /]* #@8Czd9|c}Ri vF5ڑqSC-AHWn_q ^ |[wgTBJ @XZ(Ç>B"k겺)+RԢ%:Σ$ZūԪHpqxq*J ([@Sb5й"o$*NI`5J!{Z.bB,eN*BRkh\6n;YzIkk\0;akx~o"F1bFI/GS 쯗ta5}}Kw`8\gGWnɉ.{;81'8MWلEz3G=\ L5>.{eÒM1jn # =[9giWU#ohM6]cˤ9M1Z<.D/'e^O]g] + |uz_,P \xc5}Iܪsϲ>ֿQzz aX=Llއ lo(\q ׈3&KY4\eߐp4yds_~w; Ȉ_@ wklb__ofRYbZxV#'髛z짬2/agC943ųM egUzExٿK?#,87ҨWgǓ-jc]ט8}M"|=s6Dͺv>2T 5}w[ow4iGٮv4iʃ*ZbԮʪrZ*rW3֘_ӁLDžk_cϋaao|ڛ!C[x6fsսo3c̵HwgFڍz^i&([=:JJdz7X+#" xRo\uJxǾHVyl^{佹YК;sp2(.P}:|w3ԫUj{rA۹qz m8;f9P7{;3nGH+pK{uW/.9Mhw`!Ȩ{q;@<y>:M? 4/tײ%|w_!-0^萹nhz*ѣJPh@ 1$,J2hYEcx-BҊ}([J߶]Aq>nZ/|{ c=2%y]ρ/ cvK=̎𒢛|r1̜yϮ ky+YS8b]yqtbKjog`I0W@ pˡ}=h%Lp~Fa'LrJ㘛u-5ŗ&8\8s-LƟѳlb -~{ϝz7y۞})3eE)f`;yĨq ٬mód~u6,_Xs{W"V;IJgIg{!IOwY0K.Y Fcǯ(E%i$ +n!()g~h?|礻Fz]ܳta&ꬻw:cw[M]ws&oY*=2 u-q>ߓ+:/ ~frT v5Wh嗟"8eEmoUZD!7Wo?ׄY0AhD&>/VvMLUbMWզeI$J^$r>y;e]r)jS>#-u/ z{*u%[iz]jVRɼUU^T%5qh qƣy; SN0<Y3jD]w'+.3wݍu8M<4٣)*k'6NKqQ<>ཤ/e{͇KvO=zk]Ֆ}LZu[Ghgn9S5G^#K .GW#4Aw߉>^v*p{6W.G#u׹%!Lz#xO{7@c ՠtҬʍEΖ?n#U?τ1l]E6F%?ǯ8tt?'iyLoB.89ʉf]g#3ڙkV >n5 Eޝ)R,'SDBĭ0FVzܥ DFyo4L.0\]bdHyK\ȶE^U6O޿Xyd ϊ+`(nt5g?)9ns4٩}fFz*Ja:XO[{~S+EVڶ_0 MSޟ6ӲKT+ c߅n8rQ}ʔZU9Y,gv6xbj5{e^v`G st#U𻗁Gr*= Г8u$)xIȯIx8+R+3 LǞ1I wgU&z{=_ڒJUN#^)$:5扉.+EKb`򕙖yowfomԺ~$%3곺S#Jv>K }UWwۺ.gνOz_'ԚuKeڵCu;c) zX5lkۈIj3&j GѮDUlEUuxI՜""G ҭR4tfr\CSN=[Pc풲}Ch:r4+5j-=;CfF%҉z)Otf݄9U'U.לdkՎ%w!jRfݵzUbV6ywpXH]qj^-8J/>cuGI>EC+NNR! *.gFH<"gi䗟xda٢%=GtFk9j:stv.>vvS?8ݥNu Z+ KirZA233cc *<N ˹#78 yy盱WAQẇ`=7yW{KQb܏"1$(v/8n>&R]YUfXuP1n]g=o\CO1|Zߩe]zE u `'vR/0ػyׯ? }u‚Dq AǿȬiC`PkkQm$ m@08LXM5)M>>{vӾcK!W78Ş&_0 _>ԟ;z3(ccz=]лۚ1Z̊nVAe:H6Rzt=S6}shDxѪ1syOv ik(-_ߩ_I0B]as~'lF=lθ-=p^_M_*"*y+Sy*MW ~@WʠRډGMFy`n9% M߬K[xMX R8'h?C.7BMyZpos?I ߝ?*c5/,?nW'bڹ0B zhi7{UޭS^[ⴑw/ol[u׶Udbm' PغB<|wz֕8~68Xli}9?֧qm*kvn)L׉=<e޿沿mίn_c ~h,5_nqu<{>p?ݷuWųȦm.qɩiZQs$c[I=wu|ar% )0 3[Z>+YR,} dz׭$cCl٧1uk\1IG8#Tr郤J/ ۦկf9}穅CnZ5;#&|bdΕqf|ڵI諫޺4.=3Ҟ|-G-6E/ <.mHxUB4p{-Sa̾&_Ku,Q3/6rZjd3Ϛ*2yiL@:6 [ͱ>+tG Q o__sg~.yȬimcc&8RO+8BpFdZa۱d1 ;=.g'nҊ-3Վ;JS:۴֭s47t%ڦTSK1|_'Åݬ|nP`|-:4}+b'y+h!ǑGXx4TZ{{u[Ee┹ؾGqW9wgAR(92>/zXӖ904~>xaV>=,6L5KT} `Cd7NZBQ sUuV@ί+$[{FĬ\D븊,[)u<5R jheԊ#+М#m PUpy!v]/y?V)ZoƲ?_6LА^p3p?Wٿx?keOFWYmpP?O1LƓh:u3iUlȹ;S ;t%"glF0<~fmMgG|<}^ĻR_$oo tꢨrv@&42"p_|{ۇ=hͲg}΅ʝSѣVO!<E4 BEOwԇ4 #w61P#+\=i}5I@x[[C5_]ljv}xXIH13L{IRZ0/j}Չyszpmk7_/%ll?3Pfv/M:330/i [3_wE]d33?<^+Y&>3OggS4C4&{& ;'tSP0OFu;'~Y3IY2:R/zcvUͱ`H5je>ZNM7pHJӯT1+OmƜ6ẍ9?k:%qngRM/NGS:El>m.duʡia`><ۦREɸ(r'/RU6(ͮ{7o秎s=<dS;Y'ޟ9]"){ ajXo=RSE{ =7V{%vSs/InrfU- ~/~Ir)P=I_|J6H=1Y!Cɲ4|IΔ_g;?6k7mm(Tjfۙ/]S9}I=r>-/?g9#rB2v+\A&1A*Xy귫0_W浽xOz( 9?|'ز8BE3~ y?J9LOaL?DMCD^Z:N4qʈuëԟ>>]9"7~_sw=(}ɼz.ݍ'x L%FB$Su؅_jaGˇy*{ݜu[_+iw֛#Uo+5_* QYLz4jrZA^nQLrH}zН+wU=?__v[Gc@Z2-4eZH}=vE|0ք*Nprjϥ>7b3W?u fym0GT|5@p.X/[ q)[>Zߣfm||fV7'N/k\*Yu%#0YUznQ_?z/rߟ#z[m+,6}fźDvVm pGJ~yo^?$w膌t,0'l^:0T~;bWwe~_yKmG0mMR&3<_Zug@w޻Texȋ|d;5Y~~O(U1?&H!?t-^PJcǾc\ia;?<:?# .?=%N_W7[K ~_=*سhηvSn~wj43}nr!w!$e:WZ3km-NuVzAFz.2MI8 ~' m=cb 2F^槵{\#{Fļp|h~uӦ@Wn8I맃gs 5 BJ2Ynf?:z=5|.ƻPe}xn=] {זj0?cN:ɂ:qw2ԞէS?REbME.EHʈ#jmI]{XK޶6{>~۷pE~;i8DQi {>R;\yS gn%Ǥq7>"5p_ɹ ꅖͮ,"iR !\ ^WS??_8/nAp!uyqxhȀZ\\D_,Hk\bcWCΧuˮ鑩\j* 6ճMF657|sZ}n?~;FӤ*wV;8y Pg<'ZB'CX4S|PTU R3MbD>՟zו7pޔ~󴽰bN8p~mnVϴ01X6ՙ% \hL4k#60{)݄Q-!kVwp^2_68zNp9+՘͇G ƒ }{>ޟ /f#'u]ܪ;.m2t-YIW&U.yoϯgF*XhK2N~;sŔ/{Zz?TNEwurGh28z?aX[`^ !zlU6rK^;=eeپy{N8wu:ӷ/}:^Nwc.3xfY{v(\=K_u͗1URyz1Fcgh{ܸ֟Q`l?{{z<xwdrgb^η mWpᳩ}nqb<&E^KsZ}w%>cޟן`^ BEzxf/‘jS ɫU՚E:~@]UL263KgM>`Q4U()-/9bQdpt\shF %P̲D~=Ljq7,[ {$_w hMTiɹv,96.8Y/%"*YcduIIE @4|KRhQtlFou [ÀqT/U?Hs4}v/;Fj'8Qm3G?v3'ndnaP3C :{k88:Nx_Pr횿=l7u^q\}hFbuUˏ~W"vњ.oz4G]Ry0ٔWv/xPʼw>ҟTLs <<7wp4i []'=ōUNX9֨|G7uUxC?4U+^h Nī&sv^T4QCh4{ew^#b+94|ЋzqKŶ/~޾CqT:.;9mY671[gN$~^U8Jl1Boݘ |R_O6)Ԉ暏xӚ$}k$I++&& 94czY"#+jvʋ%--N%ɖ~iRn}Ldپ~h'lz^vv_|'l~# J$"D"[@\}峉.7~j2ف^ODyoʬ0st~m.x?;ʰr/e6ߍ/ fHMA@}:9o Ȳk /,^短>pRmwg38R_)%wD+)ϡDE؛JH{M|?]RuNֹy *rm|%xz,pk>QMs*vXq5w]VRgyZ?9}W3;BR Q 9 Bɍ4jc]5@+~dն1 ˃6]tݫCu+!A@{OXH`*CCI@3HNTGҦ7FwJfn9vO5p&V4 e@_] =pUL=xM>|j5~k#聯]~p ҆ǛyO]u.![!~%} Yq.vO+Ls*ߘH46s۪BQ0PM~]W!\R+vw1ս>~s ٹ^[:0wEـ,?L蠓'㏴۽:7vKq Ke#lY.8l{uWR 6{okp0ugK|z'B6g[0Jxދ ɓS8ua +^ϩ~_`,{ ?*~?ҽF;}ۇZs?-Գ$KI"-n'~-iՏc#9zS^Ma ={]9(-^6=pÉ"˷U/֧rp޺xCTÕƏWTC&O(1!!5yw./n\|K W U!qqcSdr~=_CgYTWMe~+yn]TU!wiRg>i<&^o~mχO|.nTyux}8|xE|/ l·00m Wqcrȇ>oL=|7B!pn; YUtrk 7OggSDC4&|ؕ:KV6aF{GЧBQ||U`z{]7Եpq4.8nL'(p:juX&jXR( ,B'v\Uv'*H%,ؖ Gg<x=P@{T RDbWm2c B <^$0m60W\ > =0O6WlsT_ϝ5? ][<Ɔ-G= @v &oq7x@XD, FiM}|6 d1Ff&XH O)-wiNOJِ`$kRr `Mt۴lz^Ezu5 _)`:d;0cto|9-щx;1q+?͖湳yY0G8Qh:+Peka++5_MmBDCSIqVg;V]o.Uއ>3شe͔moMWu:@ J|ǃ \d q^ȓ ;{?GeZޏEygnV]Ƚ蹣fL[3}0_xwZqPwfH2_~怂hO=onM䋖 p$=R2iҫNv,(39"*s=HAJy/X͌z_a䗖4_b5cY%;(Qhhb(a_\[bl"ӷG|Vo_3s#ҷbĎ%i6n´'’]oF)@`)zVL4\Pn, vdIZptacl1$Hc!9umX.}%9bLH+ug\յlWOvxr4P.9џw*{[g{F7w"ƕQyj[YXO}-(\0e{ MJ5xCI$*k~ac~mNT?za, {*ಲ. <~=.lXzm6+x}xg4cYDU79>/#X =#a=$:)-Hj[01V?L#t;ѕlj,S23t+vG3TLh:JO*{Ab85uI *{Ty?ݖ) P|*6yf gΝdzُpc"3*q=t)-]0-*=pBHA$~ݒO~ygo %Qf#)]VJa/s Xݬ%:ރPQd9LNwjh3'd <2(Kt6Alk'*y8NdUWW\%[YqjKm+nO 6r=A^lVtGtĸݐ9z3I1`~e UÁ*4GwXOJyZe|_з4fZn!rEWct_6%tQݧwmlk$/ogjh/ѷk8?Vy$m"ܔiE"^`T9j6X+V >C̽};ͽ9E˘g{=C뺜:Z-~YenW3!e'GĔ2yW'…o,i hoi[Մܶ~!riVXV$O Kv qZbNk`.`q< 6%kyrE12V<_!|]IƾPHdIV y ϨZQ~)'.Pv*gm\.bvwMX_ 7bJuS_#֖w~UхԘq^0-׸b]c6"4[Ҭ1/˘eF`7zB vB&>e#9^;[3s %%o(dq{EP{Ln Gu"DVPQz?3(Y"f}^FLB| !3ҧ.geJ[H|kH} zO-1zɅ(_2H ,Z/ ~Ǐ T3( 2B88r5sdWsB}"jnzn<vx]\B=u}fZ4v oLhOxjJ?;.lE21ILpڱZ(ͪRj¬;*膷厛$jNkcxDk=&Td__vK7;5|؏[o$.B|{7m;ߥ=lͤ6-tL s$?~|f(mLgh̸qVǞfoSlۧ3ʍ"3w.'M6P1v OggSTC4&}rq>lf[9`CQp %y:9-@pލJlp.+{k_>i}[kG=cˮjL+3"k*H$"sߡyacŮ{$tEtg8S=m p pV@q6ר{jNWj$q1CT@hUG+4\W>r6ɑ. @$aP7o-@]JߙJK6#ڤ5jE`I>?˳G:Is,*W* AAtTOOokGmaRy(4`; ?")P_ޣ P7vPM Lܩ[qs P^ 䉮Z.7ƴQ U7͒${eg"Q.+2ԧ9\\B%F"@5#,KC{J {{ 9Qѝ 5=rTP˶ҸtIjWmv]ewUiT S7JŅ5aL/URTuRY6&]pUeq1OTT]_m=;٥"94+/oCakȯ12r;y0!EH=78ݬXVB-/Zy#-]pY 3~h۫9+aM0ؔty߀Q˪Ǣ=X9oݣٯ4/h-ls O7 N,RqÈR)uO3e"/1xQ^y;''z9~p֬=|wn),p.ݻ^o!L'X.$M)C&ir6v5] YFݮ4ڍyc٤X.Kuw9܍:}].nJܑ,w70lhG 45Kco cXM<{~C$)̱XȚ8rpb† s~7h%7*y7@U~ԍ,\)soノn9pwp l}5}7C(P"~Z.6ʖ߽͌MGfHa^iwͮuɏ?{FQIֽy~y|0'fJsfw'hnHt !ہGgF\3-9;QIP 8,ĕ1xc'sm_IS\8+ξ.qw z95%(n; w@T6Ό=;OWx>t~an)z=sWӱg1-2jޟ _7 &L~p Z(fWw)W xYLJE5SDXD@W`6Ċڔ3~&Ǻц# D~$7nyyؖ'񝇾:coM}z%_ gYİ*}Nu9yaZV=I؏p@ʐ[+%\ K,$v~~wTOn\$u s]{6jGnwi֛b_fMd==t׸9EH?EUK gYԋresgRcȠ%X.25Hg6B.4>vVmij&+  zΫNjTf gN(h?R J%'7 pz|xh񳷐#"U: dN-R;i}"Ir,:&-p !$q|{]?G&n""}\P4Sq69"(>HL30XR[`4MD@rp̧G!_ Ѽ҃SI ܁"{r~70sǦuw"_ Z3kU./-.h@ǯR^Ԉ $岹;7/(?y3qVI4!]kgA˥|5DՓScyo&YZ䝕?!u8gxg|`N0=Ѝks]:(;\W[0:&</#era h-2F<B2ڭ!UɘPF|\s52S/̬Hf{z\<6셼EtsLhxq5(p?^1`܊7⬹܄u2̢wT4/%64ίUǪ~*,nW{.+A'ݣ);񋮩G9ҢU&yT^ #ȞL9wo/!CBƇDjV65J»ɯE۪=QMsYbC=uy\֍ᵹ?E&#yK?д|:?Gs4St?ƄY6:T?7@?*7mnmxGOoW]^%=ZAN9:Ll#( .f~ fs#f|o@%?vr2x~?qFz|w=1]K| \J۴C'?%ZC굤 j ՗".vMƊX'w/ؚZF2w 2+̸XHTBY?fBlNeKϝ2dQΛ! &.~[n_#F6_>>c 7eѱ t]%%Q2y)C}"*X\oMդc!kH&`4 p$H)`{+? Kv?gyɣdT 2кcͭp2FV5i*zE_ZB 7r=.o;ϓu6~uX4 ˪}g5Krfz\nK]]j9J㘚e-+bz.w9UeaM6_Kv=IZO;>H8bݦhtOxSqIO}qlyvnuIGyeb|}O_ 3@6W= t"#BAƎz>r:8<_EW|57:kgmR̅žΘļ(5nht8k65E|k{X }6pf&tDuTIvwiҩ1J"-@ .nNE[G%{:=~ueR.O\ZBl/d6Л9Ft[XV~nJo@Y4}#L?m=x|ƅ,5Q\|>MvoWt5P X tQ۶&& `84'n!7\{:+׫4oxS5qB9k}mb[^-l$s?ŕG|L,;I'[Iozluڂɞ|_7=c}sѩ^j{jвYI,2V5.2py҂%0ӕM%ѕ {[/c>x _na ?hn1 Y#([@~.0Fq^?٪uﳬTukVB(xj$3=Lϐ{Z!%*mc>j5騁֤3 @ɼlXrRBW]/GЮ:L* Me"[ZSSi?{BX@ԀMO.A{CXu7 G]+AQe=򸺵rpZiZTY}q*sE"{kn~rA :j@28TB'gZ{k;;CP"(}Cp=f.UG7ځ8Nޠ>5I [.E\ƏwJيb[tHY/jY6F/7!T׹՞.{/VA0RŒK>7$7"L^v.~K,ݐ*nY.;Jc/yxS3ĞSXz7xK|Z=U.!"=V}Q'>_tMM1룚}uB.Bs]>c@4$jy-lNjEm0ϔ6w *>Uy_ӣVy'ڪ.DN3vn fCa:[Dzzob\h4=^[-Ȟ@}=#QG `T{! K ^!.Dޞ/Y@g(N`?5X)Xe~q56z~T]%~OvES#*5/Ww,-VW<LU [Nx6zU)θ3Zv[߿}F{^9U›5O|uz6܊e]Jwm}o’owKk|b5HUqwTu̺<c4d.U|Oͪ=ݗ=w]&_m5e0f( h&52|֠v~3M%tUL$]J\r8Ty+ˢX* Z2aeݪ_l8\?U#_&KGq1x~Et;z?.ٔڑ4t돪N]LeV:>,{9fGK>EMD3zLB4y{ޫ \n@ y {g~AZ9Oſۃ#UWUGD= jrP;` 5&'&rn>47)-6 b@ ȪZ-8C?cXIcp(gίxM\%YRB;mCmӶI>z3Lr{Ң!si`_f5'rO4d.S8`=F*_'6h]Fqm0l3>K5_Y_]/]^$m?[HlBF(![{+{,Sv>5!I"4Ue(q:tpu߇ޏ-h~<n޵;.L~ L?TWlΒ2-0Ӕ2%>[S!a51r-.J<{> 6_?cq<nQ<-p@k}Rs !Dkttߎw22U:T$,nI9̕7,:_"&{np3F+PPflb ΏEk8S6l$ѐAl;BGAjY8DJ P֨\k;ghZ~N+Pc>8$)T#tx)fш2ڝӊ*=qd?*-VUk R@r żvlTgO`<lc14ϐxq&$jK4]Ĺʹ9{ zoWz Q)mucIcĐVG|v&XhHQUΓll򄠂TeQiٞSMJn. }x*)cR_Y?7'+nHo9ЮVK w_Z"υʣ+s&~ȫʰhfÑQy xCT3AߧxzIh/Ʊ!osz~d=PR]Y;kY]P4=*?ml|iɷ/\1eDt꾙y 7D%fe~R^=|5k5Pa37~T1Wk~s<8?o<.i:ƃM{߿wfbHu-oF/M^>ngeB~C:',{~6~I~s2P_*Ly߯;:h>wzr{Yv5U]s=^$)>yDN`vz/R.v§\i!@nqX5P=lMh\oCm^]7F QTMi\tMQHnw۽TfivێҎm`4_^a[ߖp ,Wp*OggStC4&K8]I|tG>2a/׭w&uG| /U7sQV{{wgtnq? Сn8# pr_CtM17 __1TfCc<3i҇d*1rz|rWf By__6/$ZF4G1Bl ߌr!.|^I6 ] $[nSuϦ4N2D &%{8H9Z 2+= 폒NfXysUlD"$-]W<۪$$IE"l 2nUGpf^iL~wnO@z_W7^\jPDwWcʮm&LUɜH/֌3yR+TzjQe^`-"HF߻;^u><=,@uW(RW6s?\ďRpetg -ū߫oc>7 Gؘڧ:ET֨PVGvXgp*+u09)(3 E0;O+\ > KfҩVDj]TNV s)RMG9-N~ȿA(_[])aEGv)Cu+iow:]Ġi߅` ``nf9U&Amى|@'p[(/LJu5+`#cl6 e3bMȝ&5I02zuڭʼnq!v Edm^ӿ^ң?rr0ܳ?^rC)޽͝ tܬx:PSė޷pF2/7"8%7%Pj_>-l; ۳^IDM7@E H|ٵFyA3,P%W@%Yj\JRˠvԃ|rN=l8QOCu[*]ljST|{5hc TSdjXy$cZvȸ{lcxtU sbbBjM‘>=wIPəpͰ=!h+ys=_Eӎl!A3[kjA;aYsEg;OjxPf*P%֬NkcDKtT!ǁ-HqaF:XqvjS jMwjjD;k(U:}8@'2v=6O<6}3BHnv@}@9,ڰ,33vږnƹQiذ(Vˇ@VE-D]f17uP[c&";NR7wZZEX.nmsN 7x4[ NȱkΗiZ?6iMG kC{*\] ^ģ/#+.(SUQQu1vaKg_$$AydתzJ[iQS[=tU[E݆ֆ&cn焲~K{t}Nۭ{g'ڸ'.TVBډYVУ^rjoKQ~sY2W^?e ϴW_yhp9_,; ¼V2wIk\s'&zi?x<(W۷ ʆyd{Q6[H21|~҂߮>9Nv<g3_̺{.Wtw{t^}(\dcϱnJPJ$1mEd!=^S%gD8c*pUseQ;(~jvC4wSIpjxT$5R~cJ&* N~ sm'p *2,|,MBp[ bp` \:˚tE2niD(PQJC)ڐ7 խCvm)-h[5N=ڝ gQFK If@%Bu<O ZlP{T:N%3;ö_-ЕRہ։fv?ZA@WFR:EZςB"@'A8PۉHmđɌS!6Ӈy>tKfjUcQ6{J̺h* x;z.[=GEe>#J_pNvuR8}C E!4K{k<<ujk6YEFCV1u\ C@d, HԠ~M~e4 P rLzM㼻nSA9Vڄ5k@=zsO*l]<{u\jS#򚄷8cz5[;UQsAr|~wsd*t{ uCY^5ɧ6'!pS䌽'S ȉvu ~*SeeT'R 7> DdGkWDTRZ O̧9Ln37vS\io8+>{ZYLSο_rѩ!i]pRct ;[%z<4q9J]XN0/ [//h ;=οUXξq1>.vp֬ 1LΓ>~_u6_Q0Hd|70׮EYS_* K'գ fZZojX1}ay^JwԛJLx Dz&qa1\ݿ~CPĥN ޘ%r̬2laso̼Ϫ-ZZ);Mˌ'S]w,$ s=LLMI/rJ^֋Y(ƒx /O%&cogϧ!\t,j%nWô0ۤ 0o?N(CpTqU,֤k¥ ޷}v"ܐkgF`17(1f:q@iZ`71ZEηL,aS{͇ "*EHק+z{sj)Yy)5ZBS%k~7\pݒ^N63. Dz̵ SJ]])jAq4rUh9dTICJJm^ZUqM0S2?Co#o)+N=փ>9 u8g.2ucv=ǘYLRP+{7ZAu/?+.$jr\N^[Dd, y逦 NSS飏UTnޟg-#PG%)(Dd"̕+ar|ϩ*)\ "f%vF?cTP4fBMNV pN"5DbQTӷdD63j9 d.@ˇ@HKF}QG< Au:NjܑnZ'e8~ FבKw}bwpB~ǁVpP=lⱆ$ZVClozQ{bv-݋5,h"5;1KRU~_:Yud!<[-LũV̡eʢP|FX2tk"_m`6|7"Yn(B<ޭ׮R-'^>JC/:}جY%#CChSWrGSGs$=|a6E2g^/^?F3φkĩ d5OggSC4&QKާԫگ{y9gߝXJo$G܏x]yhWx wE꬏íi +HMr}=Q?Q>|$Sh""qx!G<~hOR?+EApT{$yިsy * { *jsݽȫlO<~}^{zb?,ϿѸGsZ~6&ʭks\M{Es#97p ?7@ހm^r<ٓEhβ\4$[%8p ?)3˩ P3Y)q㯠!brU@è<{"Э{ڳpIĿGFߟ[{#;vx9N/\uj tߦԅn=mmU}T:^%kyMfZ|5j+5ͼV"9c鍚- lsېyYsк3 ;z#2xJ=A+Y=.I%[MR?e+~~t7ģ7j{!3 E621һ JH~Uu>=Hא>>2=, Jxoex׉>P>;ܗ>ZߎzQ[Gh>fB `+e0#'Է9׺b尟1_˛RCV- "*^+Е YػBRڨ#s<֜!(uIY4P@eaE~ß|ujiPj3eէ,g ڍ.Gݝm9|jM;7e:*5[G7ggI< !Ê xGOoJ| hGEk_0iőy96{m9|k@8~O,:I"\Q{ ϼ5%zkw]F&bqY(IYD1mu<ze}U9`Phэ_˸OWeh|\ss36]7^KU¯J}U^4ѕ_(p K+Z .tAMV9'iSḗgM`, #N)巋|gYx~? P;l_d8g- M)Akz "ɥ:4_뻺Gvڙ5#sd!;Fc•XNMWQ.B jU >^5%U.7/:!&> 7v*PJ^}'O{~s=J>ѭlՃ|G{. ~cX Qg#r|=gt쫗K?Rixl['?im3ӭCK%tތ|+\i /8J޻;;؀3uzot  K}va6Xo@:| `\MdRi ƩڊJ84t IHE9(&Yw*<:!@Z8HA7qz!"5QG۵RТhpzZlݝ.bn|H@v}r5D0Mzvb=MMGMS <[pJvt \,ezCLL2Aq1d*?A?LOfy fzmd5zE0:#"/:}rL+!oz#rW+0F=yTY!ܘz+'UZb=A2\I&<`P"E\5c aYV%gZuMsR8iľ=*=-[q_jhc3]=D-<5رSf*5mI(Ow\$>~EܰLG0W+жcFWhUBR#%SYkKn,|2DfN *z-})7 +I&ktzߢq^+cUq5.2 u%9>;K><,Po᥵n.XfHxhDDؕn^qbܶC9.C`Oci?:_&\0Rf^K-QSM}yz+%yWENw!MXJMTaNʓ_fUb[8VMZ82Ε~\'tcedF;wYqZO&~uwƹ@sdhG| <ո}a7Y/c Mͼօ?GpvD^XT2QoOIjʙt!Qcn]X{={t ,.C^H_ ^`3L˟=0jW kH/#ef.hM Δo :u @MbjΕhN9p DTjj d"S&NQ%GNVԙ '!*CC!MHJv%:$i{K iq"٢>Mc)>pW͌tkv)QhΚa;RG1v= N>3b_c8>e6bq4ݟ@!q4‘Z * /:WPLF* b``t螷x͹8fLVEv"si]€Ks1#=(ŚQO뿼ʼ$&B|uk?t*7F{ƆI7IqLzi4O!׭q#@k0N})t{Dw^]O*7UMk}$ܩjڵ[9RČ5VI1/b@<^Kj,U?3>n5:g&_/,ț.E‹ZzOָ)JSx-.`}TkV7ҹ< vw*'8dRquwq=#1 6Q)V:W }lTh:qVze}L?Wk<jgY`z mo~X~=ؐlft äMm੥X_zvr׫K*ۥfs768cNiQD9\7v2k |*V]W帚oAQ21+ H. OggSC4&gDǾǶKu@Ʌ5.WɳyGֻP=_Qw/=YQc>oWt˷wsYT9l}ojG/Ǥ\_)׸d}Qv{qZrwYUgzs尥DQ6@Tx}OLQQyKggcH<*Zh/&+hSw*8:uuΨR-k$NߋpHr5mu"[jVRZI'l;3YOZtdRY5*E̪Ukq#Q9#wHKd3Xw]r}MA䊎p|BYSghK%IA)LE#BkCc)YN$gdw"+wPgJCE8jwNoHgVV϶3F!Qh+_*]LiNڬ0lS-X6S#X1Q IZiOg5ګ: )}dkx%tR0^kCPuAJBk+]ݼˌ\`L݌#pyO5 /ۭƷLA VGj!|-rv6{Fb=?+k*^0~<>N|G8+bgu,*LR8ؖcgAWI  1#p9RV/\qWoWkHl#wP]F:BuбGE{G[rcfC:MdR2ay%| g@ [x,x5|^_ڏkISPǨ4~܎x?W |Ioi E.|g/>vCՅ'8\ ۺ2-/.ǎq ܊u/MT$-@ؤ+}5W09@{{,Aʙq.wlxg&>9mOsKx?guK+Z(WHkҝ}Wwc9_| jl~F}|rMniݟM0\/.},}>OxXՔWeLz1}vL~J=Ch<ҷɹwscE>Ny7V|8?vkx4[fRTȴ܁_Y.ڌMxŋܵ]Alɱ507P4 !?uإlěPsv=US>Oݼ,>n}e:GxC[Oqםg'3}8N/>q>sdYpSP=EЄAzO~~X?>䝅C5G[/O;~K߻-BaF&_LO6iZߞ/A>{1/uMqk6Tat/ó.{YIncٺxO~[ξgDo_qGhS(7y~qFFʒ̏C25 b@='"є6,]oܹ~;aKjWy8q3 xnp^pj{U?Ec.!L[~t}\֨Eg k' j 5O]鳻w{ֆ=Ʈ\u>ku5z_u9+TE}˷&)vS|iŜ 5lz쮏_+WcSSxYsxt*x+0'wľh~JFP*rNL[ͩO72K <Ӌv2Q~tѹGl,>W_A_^zq_^{L#v[=5~xOQZ,2;}N9G,DụrL|7byN)~YRHUұ ?mZ9Ҩw~qnQu, aqj]K:~֍ُlV9Gok\. MR''#R^6Иe!|8u0r{bnZmmaaoD)QUѮԆ%NZduڐ6YUbBie Gtnr>_Pn3 ސ1K5.%/%;s`̑ut!Ds!Xdh6\^<j .E,6S8[~k8VbzbaC! *ʖ*qpP56k؝[ jX-2]9 o~U$܏g1$AZ,/h-l4Zt mneEq_wOR\ƒĜ`bWY]]UT]l ;v_?BN _A(w@?V>jߊ7`0bS0 J@=u#ev9]>*xӵ?zVmCZ˦?t:]~W7~`ե3޳ SC[IMG 0b̓`3wɭK>mY>b]|~}WXETc vk5ȞL o0u"\@ 7r9JLH0T eԘ&}R;\d*Oꑁjͧk͏ٰUEò2BW}/;"慈>Ww5xt>>Led'`؋uERYL /,͚VX_]o魭-˷v :#ZbK{/G̚3bXx|P!$r2דL&aq`saNUmC22+CqYseT0Iqb.i?{}W-.,ߦ몡XE8oÒ\G1~7R lgڰGoey2$>!f^췽J?m{OM5y? 8#>DKpmm1<wcԅg6nчV4 t>=yE*؟xu鸼+OYhۺ__t1~tUI){ڃ2oe[Eڟ񝫜&\+08=} FhտƑo}}O""伖Ml<{ ߟsu1T}L#2J[ѽuQ$Se~͇ʷ(AAn?wHw4'z!®RKi:h\_wpvGcNSN-}aSl9/T3:*g{4|#im. }TG*r?<\DF2rs_{QSLa}7Eifue+yK˼ V$* ~lӅQ:F/b;5&<j7?kuc7[8LЮ,o d23(YfȼgHhVn?d^WW=]:u3Z Tlnfv,sASFsXnp3KNSc|8.9 =nux"ѳ>Szސ?9-ӌݍu,o |xt~JoSgT24Q|wCmmg_GvR:Oƽ1s|{OG˳O}- <{w FF#E+$::}NϚ zg E5w2@I;J䭫Gkl'1ᠻh\K'"Že Վ]>ַMrդe]25e)dB3P6H]$-zsɥ(]Zjy,kag9g!ؼݤYhSk-j4YRwyIf*^Y"ݨ{,oo/|E޽<䪋Xw`^Խ!W>`mJIdQWYs}܅W]Gюp2<=nyB&i]4O]gn˿tM=nēجN17QTlj"DYIWmZ8њˇHKYqӹmVMy^mhIzM "m_QNgj+f7kǿ?Y;_O]f>8( k[|KܮcYc8~6o}ڻk|IOg#8@ߣO؈Ãx8Cӟ1DoXz?ZSe84{V7(XO'BPl>O|dQh  Z[KxK6ݯ#.<{j,9TRj=@ĔGPv}zr^Ti(k-NE/`l8sϑSm((Dxni^S._{n50xBEGƒWEQR}֮G.k˯\?cpv׳UrHPtV|~#iY}bH 5xH:$$;BddD =!7_Vh'ˊ)IEtu>z/e)?n)3$ &v'jB@:Wez 4gxOð3z#qq_^ubK3Vwʒ)EF~Kdp:+)$' ;OQ R=?0Z9/ [i;W-g43jEmL67|0xuxU@LWvғ.pX U&]ciĕl<.发M8cuu/`% NgOf?.>W9SXD ] s.=,{%WF4@m&y0aJJvE^ϟjs!:wC";{xG=~oe~'!i7/0^N6y\O'1X>;}[yD9޿[{Xݖ — NwWܹ9uz@{7bL-o) *pU7_TȀrR*ȭگ.H\x^>Quv^JK{2-Y$pF%,`㥀D$] NZ:|sywm{bwM6roݺ64 +v)%<ҍ#y^qҵ_%K6ݲznci۷4^77]I>ɟz>\MryKN1vZz;b1L<}sHz6I=t}79} hMKu56î9wd6WZү4/spH9<,J#k FCAbi8a鿸p:AȾ'[#qD|r5ZGrAi,s-IG T!~@ɩӮ/Y#zKFPBrJn.4ڝ~uO)agZԢ*Ytbg*)-C)I*SCqU@SJAd$ V[bp{=o:-mBِ}@_# v>1@(13[a\»U i H]ݯ9>6Efح4k4;:TJu?rXzv=NCmVh{(ȬJK貺غ4&1t(aں!D>0 M?͒sgi/Wxd 153c,G>/IE#!n}6|υmc-@ϭ{mBӌX/3𾼙PEX~ K@-Qnv ݨ>)Qc56Yt9i{|y=\*fw\$wƉŨK}b,V+ʱ-Mi3)If\wfYvhOڭ?빯~7F{< Wˉ<(SҶŠ` OggSC4&c[hm?XՊ"ۣRp8VGRjMPQ(0w`R &5X~cT"8\hmG" G\SCDf!74L,:so!8"s7y"%RCJE@8K3P֨LDkuz峥>n* jD2ةv^4R"B3wM7Q H@90‰ʜdW?+ $bn{L Яd[\ KpPQ1j=i'z7o@}3 M"8m+K:JNcG?_KoOCNZ+n˴ͯzфSNsAo 4;9{jmA`#S;lF?lo}RMoB&I, HcR{tG YWM;6S>l:ɘ<rU`ZJvwpͳ .s{yZƓxJ}maSZ4Ҁuݏ ]Hbyp횤.M8Ͼ[Ynyp}QEO>:_Gw_o'L:qW͢k8->M6;,_cy2zeNکoR>)ü^\w z 2w|_ŪClOSc%:k+fs-''*8Hbs⭊{wwLK/r2\l|i.W|){߭~;8:o)ּ[E}讗dXf:FRmڟ_{{*`KUհw7۶`2|v8 q75ii(<3 ?xg#/]^UMF[Gl<:<,Tѻ`BЩDhLֱPVUkDȪ/xqAEGE4{?cTrQ6 ?2{\t*5<8::$ֽ2SGg dS'AxJMeRۯlTjD7c3Rݎ=3:F~)hEvO_MUio2(s sPdQkֶw ɟ;j_7?YvՅhݿi(pDPb0<\O[:% 2ǁOx)ex3u!~V֪@11 NT6KG9rFAսpd@n,zU hZ ˄VX7IxF'LskAjYձ|k؟CIfe<4eE.5m.ء^t |r1ȼx)U?ED ZGd9Cޑ5}.U oW 1J0 R'Fـ`<$ %{JwkدˊdDd1ZpO3Pn]H탃CTG3^s2̵oHyv JY .ry߿IK7s!caiWOV~fw ]ǟb]|_l(򤞵tfojfe|O[̤D)Q@H| :QI߫_Ql+χs{\(oyT-R q1ML`V3*%zei2[Y )RjI,"P!Yud߆h@ Ifepvb?{| TLrL(Wbi:ZHO Oǯ;9I:rE;ꍢלYx?8ǰ*|yVGM%eNM9Ů@%䚺`=L闺˚)'Ԧ$j%<-`yEߍsx$ nosLzVtf}z{ġxn^}+SBhͤ䧉v )52_YErL'kNc#܆[Cl.dD[H5~gE#yMQc>X雦>N9US$wIq{uˮ-2ZknXˡhC7W]q*#R9פmH{H/ ΐ)PCN$֐@ FGM]&7]?Ҿnyn0M;T֡ D犆}O{U% vԼZ!|*IXySs.4껋_'k\()?[=F͹%Dwb~2ZU]DQϬd-?1+.k %tE +xuqx"=hF.һJ~v8FY9NP.!tFvWQC8$%ړ3?71 ̵r{jne.:ht}ݒ]]%3_J7hj])Z,V?Dg;-E= s`ɳ) nNtu2g^Dv^ϯ8ꐜ@q,q*;GDй{EC+id.3Q̺L7in*ZәJ YQg`u}Љ3V|9Ipu6V$7A=Zp|TnTtm>s "m  1ܔ7c:!Tߪq2O6W$*/ kdN$Fhݛ:hS*6$ۭ%y A:> Z}]=Œ=%AkXĵܛ:WZ &yGEC> +{yn'evޞgEI}P b7LG [C':-|1>'ВkvҨ_o3;{Q;w6,ѝ2ڰsGk6ЮQXke| W]n_*bWwM\ %:Uꓥj-wqq{8/%hUM2wt}:ɇd `ZwpBm>R88.*hu`.ͭA,h h{?޵;yx5BjץK:w!CP<}{OgP^}p$@a-Cs{{ҞbYc=RL٧KK"ڨ@@lOP >7Qm<`[ag rnQ HEJf*IX3p+D& +6Ow(lT53SIHɬf_Pģړeaג\emme*g9w1/<ϧMiM^-v#r*)8F+ur״'[ץڿcр`6hgO4248UOXrx^gH^t'ҏ{!,f[䂻ly>BM ՏQzW6/h&ΐ/|׫gtA_l|Fu[ckK^ٞ(]}#I+1 煮b̥Mi(Q$Bq!g=@&Nӭ?{x|0.cO,)WE`}.uKv-C^/ӭ3gzUGM**/3]؇K`i8{6 :x0d{/j/GSqzBVA;,BOP j[G&] ^LOziv=EJU̮1޵Gl_M;؏[٨SS'jncKUgxed|k}}zO~[!_~G_snկyy?=ɓZky ܲ}zclεUTyR~Ot Ps]Op}?_.S@5ҵuצ0/n*?S HzEj)ZLYpO>e^5(yͤQ)AN!UiR'C}F\$TSvW'>s{SԬ O\r*ܣ1qNѭg8޽VXl;F(ysDE?؝\5F~+}B{:Xsj(VaN_G F7纹1B\$\$mZGy]W4ެxU]s?!i)OW!*)5|LWFF|_?}6jt#A8V nKmO< {A^wѤG5"Sۚ䴩XJl9?f"Qᦳ< F_\h7-z%(㯺{\>Lbʱ+m1܉B?@mc3L?7TiYjG7O]\y(feu7cU3U/ߟwǍyٺr{ŭTC>?Ze>^9rz3<~*̀򩻘1󤘎+0bk,PY LBSegviIn/Dn伷q\|?kg>0O?Yzù@';|&!IMq*\X*u,<̵* +(5M;}'47fdދGbLd}ws5H^\9^_Lq7mlqKŭV9wr֤^6"YY_fyڛoٌ)^8ooT-i2tJ=vD)x!ӵU8rpg"hgP?nVOs6&Hmgf|޿oR@F1nOySkEre,g ;pZ \GѨ}̥fk+M֬hkK_qG߽ oFrX/M;{xEC ~l h=@ЖWn{Ex5֡fFze~{[xTY@zExC}v19Uĝ%ZsVų̑8.>1j@3m׿&S{ ҿ>Dknutk&]զ}-2k/dz`ySe/7vҨRňwׅ)F_q3jJΨ,eV?Gqf|RG(p=KU*LxU&9lON@\Ü$]P)u-@ʹ,w6Fڹe# }!LS4{&k8>şeSD1`b+==韱v%@YWo`" p6&Oց MOb-ގ.1- 𮆇dK]R7þdz۾VY|ZvW#7]u}?c=_X=yy_e[sWwjn/-ks*n@A*T-n BzCCtrv @ wQ]/ۗ-̪A֬/  Qjwy|hػBmpQGUpsTZ,yh5QAEpuF9*BC+aRx/ԏ=ޒ5V9 I;j= G䒝œ! {d%4NJ Zj-Z [VF;78Oh 6ReW7 NjHzñOGvbB;?Q>ۦc-2׵,7}1󎁼b_'y W VۼTxmNziFޚ]{I74:y+u4%эٟJOe eRq ORChh%_OWעflV*-]UDfj1G u(0>Q!ofà36/[I/Aqυ@hC"}\!.r#9]5kQ# BuB3\+(ԺS:"uT#!xwB]a~龑ӭH%WK)l zʆg퇙yo#@ !!j5)Ϫʸ|)?pXP c'Xcr@f8ɽG(cL5y0M[ǜ=S=|gеAUK"e[s&N)b 5t9]l2SJٞhdr\3R"lė?"!S}CEӨ-=~ZZ1NG=Kr.(N6\ԩ&sZ{}giLNsE5שE 6d7]|x]5nwU1/S%^%eܳQzX{,aIVk}Psۭ,Vfzs_OOz IdBO+'J﯎Pٳ&UmavaAѽ3rgˋ~ 7c|z_B=nRm޼38/ޞ63NEb|0C̹&_T:2cTuKPcߒ5˽\4M5nw>N;>gLW;bɻk{ot|o%=I⻙Yk mP4w ?z]ɳ=:31ʢ8=d?Y[ʥkՉ6oYc-`jO6j! ! wbNU\SrS\PRZ\m5q8YX#ЅC{hUceשj-nqE,g,{PHwybt=ˡ9$g Y_>zϗB"hg*"smjڋQ]]OISvȈ"sUo̯#gQ40}Nt 'ZΜ>.sSj1)ENFT}<^?g|hnNFb-si^Dlx.$ <@gEPp,BE?BMa^Ic/AE6\2DE7~ן0"uRx)YY)x$-V8u ׏Ɇ\fK@W~X.y&4_sj 宿+La=ֹ}ȏ3?ý|zn=l& ᶰ0fw}P]+;Z宔MBh'[tn8#yșf#soZɭs5|2Y+x֚ЍIQ5}98:ɴmSH0&WO[#Y&gw^WTU0Է6U7D N}%pQlnHImcӡ)ύPأxInDX5<91||16-xW??7ͺ{k-Ku86lYy+?Iii/J,jv,l>K!UW̿Yw_Kwõ+Tm?**uI?xG3IǞaA8'xh Wy-қ֋~DD BU/$͙m0:\E[?aMI3*>ɠ؎Mnjߜk`ek~z?4mq+נlTg7u(g\HHOggSC4&؄4[ X]ML}9+F?UߒV@3A-͎Y$W} - 3!Xh]wiF4ْYxUϳ~wR_GjϽQ Odrj9E8GCHY[ǨI!Pv_48 7?>Cc. b9ElO-Pa0t'εl9rK 4x񾱪㚲8U!;}wF]rڍ1u=6n,K{ wO.f(هa[ܨr9ߔL@[M⃜ (*C̢ [l?8t=4?A _g*\@DbYp ÈpRYd N#{oEk⚼1GݎJ1gD碌qa5ZO{"RD%+Q,R".j^I_o'#BI+{<, 簐Q8…j7%5q}-тWd@1 6l% ֛r 9ʻ_a[묞褎gN䊲*˙4z獁9mC|K;J\;//}ƅa_%E`aTxv̥0[?6˞Z#]lmi׊-HopvHi 1O+AS(A Q 0*oBlo,v=V?؛π 6F6@ј7!Ϲ>ܫL[Q\4\ߍ.?VdJ>r%aԺ&/O!">uijgH 2W۩pv'1g\7-ԇ,zz 3^4҇) Qc\l`U0 x;T $e+fTd+WӵA<*ڞl"Ü֔RS ~1sƔQoo"%qkl*ϕ>qzoͨ% ]^)fBb B2EG>YI⣴k|V(P6::wwivDxep¾:?Pu7+Z s/|fG2Jl$yC8q7#&-jNS/UDRyd/U-ε^QdpN]6Nuwr9WO1vT3C4wpHΞJIQ"8tsnj7Ҹ8ijA83v@wGqr8u/ԭAj}2AU Q)7Ѫ 鹩-P' :@^k:v &A2_CS"sJ YB gpzֽߝz@(<~Xe/8Q[w:V2;2:"qI+I׾Ǧ|NuZj%p ƫ54QC*݅YU*َ6QJLfdL*,ay)^paP|0=0]$Q 6f"(5Dbf^6sC26f wGc[z{9f|%@2VOdjO. 3] XE~` εb@/~* 4k[w]>:y8C+=9 f9vG3,8WVx$6kex3Yoy);tQ1+/.ވ{.k+r_FyUyɫ2~4 OܾSv̡msS6'U4!`'U#b?QZVqKT32݅ %R)SĈIQeE^4׿VfV]c_V;ؾ#}2玻mmn?m\YݛG/cz_+/\ 1֥H&'ۦ4ͪ> Q_}8oA9nU|I&gqe'*ܳBk~h­%'gY:1NYÙ2 <)W23eG1䱼! F-rkQvלhy?+G=>IpӾb{yȺPi84xyfL =ڪ;-YRJZwȳzZkך{EQbKtG."*ͼZDuvJ1"IR qT%_$Gu: Y6G Ya2;{T:HEZt NpP|f#jJ Y(PdQ袷t OzHɼ{G5Or%JWKQ¦/f(Bz3VK:=Sv0u)r.Z[}-q).:ߗV@zq+6_onS2wkG_81}~;ՖC߲yr{aknk-fȲȅi{!.wӕTK>_oS y乏[hw%Z߽ofY3N B1_Lmw?NPq}+\C?+U'c#x(/2 $ (%: PU쩓%GIbgDA¦pլ56XU*\Avl\:џM qdެB=M{}\u(?BpH>l}F$vyQU^LN5>YoU{u.#Uڈ;K;ސ!iJrvtX۱;QdyYR=^}XftS= qgZK0^vSLhoprkA0ྪ טMқ9+ OggSC4&OC;{5?ilw&TPܪ+=!mKwSdm,8R']$Vw&++ٵ]{}p^gY`A paK% + A+h2tV3=T>9Z+SPk]og:B u =נ!Mp \L`p͒J8Tcjq!u>w}b,P%RR*рPw jWVѽDVʖ#u*K-RI5O0⠆>샓5򐠻ȗ[l&BvjE Ea. =VwCY>dNjߧcMU45 L*ceEd׏q VӰru:ߴPg_Ȩ\ɭ‡7f<pn;=u8`Z)G?wn_cڟvp;x>3}Mv-(41EkJsyG)6VPR *H);8)ͣ:q4-o:;׬^׵֧gpz_w 'Cֶ/Nﰜ|IBa]xC*Bp]읟:<DZrw|<$ (4mLtyzdfH`x%Y%1V"i$1uImdoÂ$TZ 9ZC)ם!Ya=29>q~-dFiz:~0mW]pOn=ʺOb?~a\:[6T;'@P|߽{[:)r *mE;L Rל}EhExz7W.)=# bYG;o% /{Ks1bYk{h}ݮEMb_ IiD%YnxYsYJ7u^{~4Kva^'?2WkRk7mGYoczW̶ӻf+:jAEå}Cq ۃҾ:9VPz%$P=im_=?,5[DO}1v={œ|Oݝ1g$DPTLyZ ~B>pH"gJl̷fK10+t)iۭN=kDPI4BuPS2eLѺ hLq ^8 (IAm>!^StWFnhoy\=)zwHf p(;{G5! ԜmƝH%%V'sp8DpBR%Er&EE{NjJPRqVh,BGee;ȼ }4Cٙz*uT=<ŷ]TW~bo;% SJfV*93d]ws*ғЄ^ " |8 CAYa箦SB gPL9y Pϛdnu %h[?L^͹|UGZNU͵ܾg֕pZp6,7Xnbǧ۵L|>!Rs}Z=oM'xI`rI+_.H5x<2Kg{y"p)sO@mccIoTw~u{-0B/RV=4 14\ij>Q7)$3&ΗTw!FF[.U1Z[Oʅos`֢-H>H?*kւO?\K6^}a"4 <7/sjjOK_gυD S< \Ul}c~l8ޑAZ-]L%n7I ^B&L]wdu.qa&Yx֮s< gn(׽u>lҟ"7Uy.U6Sz[>cnU9w)OmZN[r@d5 -ޙֆjSWsÎ7.fOZG(JR 4=:@qv,~̷:E8uqhHEu)=UtCZ!Z⬹/u΃_QkeYkS#*Ux萏MtD $:Q9颩8EQx ]Pҕ @Q ɹnشV4/BDI8%=\GD,RZMj@򫩿[_2cutr B?p8 |NY#$J@ !HeTCjh6Iγ|=|8{O;#S͑H+f܏CS|yX?'K)_}-sbNhiA8FҚ/KjHdDM=64DL.b2W\ nW@ry%,6]Ik:!5`??{SVSe)>.E쏦{~T<rM̿NtSH/jHLL=1NœkKv[ .L+NȷW ϗm~LH}h25_Gr9hkZݺ5F9w]uO}ͦEŰ2&܍|<7#o2v8~or\>1gGN dG*.`3 ͌Ghbf4/I[5MuK^ό8,UV jG_|>-u` %1S}~W?x{^ H]{3_޹NL^*&- Yc!/[;:w%c}Mq+L ㏛].bV2jVuG#8#-DTV[%w^=yXd"+'AKYrq.Ȃ3 <'ob-1d%Op͓! H=xE=_f`V1j4%cyfofۃ+G"q_^}x: ]kgx-jQ$m[> !h Xާ/N7r|EGݟnt2=1o߀ c11'v,p=y@ ۆcP,*$ۆ)O9z-!p:EQr%AP`[I)u)iu]p0~2;#)Üg]Kڃ3[!bFZ9/x%rz]ӫeukskWYh(ĩrOqwDRy?ȢY~&Sxw޸g$2(=||~>}oXݢ)OaiB4]orF+]H?L 8AsF(`*kKܻ: ]g&Ý!$}uǑb)4Rאt'8̤F2U2F{1~^[POwfqkBN$MG> ɨOs$S5A 衋H,y妿Y ROvI$2N(L)Dn%q"3Z;T"̖H.z2P%ۡwt)ޓQE2$O˂)s-Rf=0%.:4 }PRA!oR*$Wߴ᢭gRۍt+5&Vq&t{BܐWOvu`>;O-Y}bdw)l:0< 3E|fNz{o̬{B'UiT~wQ&ZsD5L}"T3 Lw;k+靰1 hst͂nnקߍΣ]Rf3j_?#s2t|>yO!DbitC.)zl 7cN{4ws߆(+{q'>{ԀX7ҏMOK|PȄ9ξ?/tgyؗx -y8?TINߵG:.$tB Kvk l lC5˚KkN{zp5v5wOlÔ̓w]cszt+'/ꛣ _[9Hnm"/ݩ}O^fUimmIL=)\BPg>EO{c9KİwoKãe݌; ~eXk1$ve_±iC,U\Ww"kyb. "~5rTKZݧ\caN>3kGgh,n^k)-½*G_m;픧'ѱ;85n S6oL v .h5CVuPԪB(a9`ǟ0fO=,5ݽ{{Y<9%LSgZt;kuyG}\Buj$}RUV.x*N?/aIonV j@LPl)^'H|"Pe̳]{$B> *p9BYH &ɥ1k]Z_u#<ީzB4IhNS̪*hL{  ST*"WƁ訽T<1継ϓ!XUh=;`W VSv\DhR ֬SԨ^5:k|%^RNѝh!NGi( ;2` ~"Z|p Q#~62NJ_; 3 խy4;ID`~s y}|)e9~@|[o?_˗juհ-Rx/]]mg4H2PYVy[ $Y躯}vNվ"{ _za R 碱1csT puu-yn23{?SqdNiB^-&>j*SZ\'|!+kݷ<!t"_7[~RqCVaSU{Bu1zM_3x?&0Fbӛ]䎥E[nJk(nzL0(ۈWW~=\}"C`RBSO%'b l0$1o]i5+Qm'/L#{ķޠ/-ku0񢥗kAqW^[OrZO;IkF|npߕz.\QgU:&u7$"_<|o}Uhl^b{.] e6ݒ}aسCh+n5u *T(Us|}W8$ƥ1uQyvCB2$e_ٚ4i}k֯m:BA\n'Յ7_|Ǹq[xzdێYk69זzK\ @|Laud=BgR* gJsZ"fF(yd:zBuТ)?B~9Y*_fكם'9ըG0W9:ϔ.5t=GH^E>,\)t?Ӛ%%yvޟ_Ox;઀gI D7yRT#~ݴ߃g%r͇ t@._SjQpM"7I=ZtmҩPRH)#(`DgGmXq6A2@VlyziGMii x-3 6ss |]6mBݪ; y4ߺŷV=~o\T]a)ink9G|![x<>s|OCwY|,uL0˽ICd1cURRN3X#z>m.Iѧ==Lґ]w5~_Q$&SIE߻Ei!}7YzL'Dr3^%6zgrq'a%1jVe6bYJnV 5d}_!纟>2Io=bO[8}%;"\I'_b:Uiew>:h! <.>\XM~6_P<$%uG?o_o8o׍t4yVS*L V~n^,N?nr ڨ=5^< q`~2c;[I;^J=bպ:ƛD) @WIw$H c0KjUVT#QRmNѹ$2EQU/h뛮w.uvdtj!oM̈́xs* "C#`oOHTH0I^uǪ jM}5_WL5} ~ɿx kyTMdDCֹY͌$Ƈ=~ԚY9MפMim8pRSE p_ j=z}VЮB8lphՉ|s)ZU|nOteoyPYѣ-rNݤQɮ_SN BU46KٻSv8h芎mX;Ϙ? $dn: "vS u|,?= dD&5Ns:,Cj!Y+1\=pX y* JP8_f-r6/rEgjtCWκ9\PDNT9H8_a&UFDN1+VNwd] WߪmJ;@o0m79" f>\囵\6 Qg/hٳ~}y "qd]3R85Z)wezV< 5^m;(,~sG<,9NM#wG~[>\ {H(;̞q#b.ؑ@]qI'S)9dKFV5Aqx[cԞZvR=-^4sNUOZԲ>m7WQ?m4?!ڐȊӢy-"Y%q!d4;huuZE tv1uo]3.2. NV9E"BS@8P Wz5ok<2 DzxnX#3o:M `z hҌSncđy %Ynw~oEOC."d'qv_cj_ y2`PNJŇ.-xFnA5'>6ޑ5O N|(;K9i϶B^pZuSj6o≠}}z7>OO=3gWEaŽƧ?.sm: oUdSO:L&b*Pb8&dwW/wZ#VCi#;b&c7,椡ɿ5;Q|g?;pRC ]Uӌ_Tyd^r5ӛm1ϒL1~6@&oy 7ڂFŋyo/=aL4G.;nC )6./pGTOKyfVt-TQ\|IRޗ6?\wۮ_ifMY-_י'LM^QoqW+_h,di#LvQOggSC4&\4׻ a,\:&tsMѩHI @a?m랼PJLCD[@*{k+Dϑ%vttNDV8N&֛<[|I$4gɜג3/j˿xr[17UA^qS7e*QBb-_1+^;9"7A2QDթh.}DGMvɚ-ISQm_mjB%&wy ਒t1_ '+{CTڙ*Ey.#-zNy9r*>"dRK\T8":RipjޏAyeũQ[$b.ft+~;$GSDs(:D"ɁV!j(=1qT`G+ !<btqo<61ŗBh@br!ҵ% <dH40|V0" [7@"Ó cCSgpZs7A.0o~`fPidf}ks= ǯ_yqMFutw_`+xl wGDcͨporx$h5)u^yGosKzܦuY[1p/c^SLudYD*k|\$pUW~}cR;Yo)3JA|ed,qK[G[*JB6F\?:.zx.8](4b_KiE׷ҔTYv{eoϡS¿㼩Ϛ~^0 NMN/4 Wg0q>pXHIa+*X074t rqwyA.MTV@g`ϴ,4(>%eP~ӭap<˕b;Wtq)ZYw_f+!v@CV=ZymFAta- '` 8F*q ;s%Ѭ?'_̈́p{8mOqL]w?Ilt-68}Xg\'1~ߡ\rݯ$VR{[2QͬG^j*\P~ɕN;S8F^(%?opu%yM/gw*_w,D-^omP3U>;iWuKխ*a!-5 fh=ًƬLp#^tæ5 z~79?<,O;GOoİ\|lwUΙf{`3g\y'xXUƗܹWPh˯%׶UoTv(W$gpg1ވRU96<0#7]j'_..ʎn"-7Kf v xel p&8DYe[u MVk|_߯b#ea,G>k|8>eq !%kl˛qvD^cF ~;S-V5C#O7973Ҽdl375q&o&tv|Ä^Xi뼽8VCŖ~1 ]5joif6wۛxkT#tSɌjA["&a6{V[m_|fi/`9ruFy~N4*)V SAܑ'|uͦxJ,a-Rs_#XYRX>/n;P.^ӚJ*6VdL3dK0rJ4ERuEϗ'P59QxOj%"D=mʌJ~1BJ =ͯxP.ws? [*p8]צ"&vO뎠כ[z3ނ * iW+:(3V4)~;2jGl>D"q[+Ϫ6 Tp޲Z#CN8AE#!GVu_Cx˜?{;A1x[qSw@g֖QB%~`ڥ¬PA!Nݗ׫L W DtьCreVt7V"o:Dh͘R(ʡ:}4Wv"N+^ $RPj~!\q2snk/Zۑkhͣ?ݕ uZe^τjVKEZj5;AW踨Q8:x{-hJ:*5Jj8~|БR$Q&8TIqq+g>̣۳##%&y~uY>m#sμn99H+O;O H{>="D[FlFbU32IkPT1u"zZ 3A[Ѫc95nP`k(!Vm:QUC6t[}f w.w1ݩS-a2hk'P`clnw|eʀ(0qi֖e{S)њm0 ̄\o=%k}N=T d=!%M&oٿcWJ{HqOg)rۻ.UߝO&2SO6Ġ5ɾz7JzTZlmN:ʡtvS9"CO$4|M)v% 1ڶ aRA"+W9ԏol ?}Y{ʖ[%eڥuK2&a;9O# >-u.ZBPO$e89eƷc % uyNn{.1frpĊ -T=W3;wX`D9k+gv hy$u*ETŔ۱:TZ5=GpJK|`6'%Y?'LfUѫ2ڳ*}/ W1@c?m/U&G[ͩReX/MNqV3W^I/_i֧.ڲ,Z'~wy{ zK ;DxMa埜92P" i-F+E+Jo҈LWүMQ B.ѓIJma.n.[kN%b\<5D  Jyn~jj0-O]Xm]"zKjtv-Z?;~:;Cv*d_ n%U赮-Q֎w=s-(q7.^Oif:Z1/]>92;5at=PTNZ<{YrT<^s^:2"%3.!pj/穽O^6NRD$uw=v"ĕioAks Chę^;-wʹj.nˏYu2D**=g CBjfĔ.Y*=HQj8JYm U>dv)S}j讜:K\t_d>Ks7dhSC3(A ԸdLdMGS+$>3"-mFxv @s7i aKfM"V7t\0s+ 5e6W,E{Q1>tK.I4\GNbX&!GrP-S~76zU:4J$Bl[Z1$1}V(g}]*JD|.ujeNZgBՠ0OQ5\Al̮oSC 만|>vV6vg]LU0Wׯ?'DO+]V0NЌTvY޿FCsW/TG/vMޛ^-=$ɠ~~e--uBھz'{eTirO>_||CSݑ^urPښ~<98!nEiwQhK;GugVU`fHueM yOE1\+Xƚ]-* 6+XzڨO `*CکLj&U,حAhTގfb}5õW[mb㎌֛WUsEm Ny'.s쌱v(-GnhE4k_t5 $4&@a h.9{9^^FY*\IjhRwJ/To_}?/ܥ+gܻZI4FfG*Qd$Uf=w#Z;%q)ct?)tנD={zA7󀟏8q D[*=53iRcDx;(Kj!TZ*9]/kQ(P#kL(_LYvtt'Pr~\Y~rК!!][f徨_>JWVrwkS#hQiL}CW ss?}sx̙$=^r""s5 `ffgR~ixtIЄI &~TM/RN "jPL`eFm~Mi4рSv߂m|돴ؿ!C]>m?MT"0{$U==(7yC4Zl S~2T8gހ?48 NϵJ4줮O ?*i]rWξVSVJcgmR@NMf"oMǚxnʼogo9i[u#?,y\33;T~Z/hF <<VH]A#~Q:+"E@Irsu+zNU&%c{>j00ً%JtJWTzu<Ճcn^>}'n{sZzgBhcbCi.=, OãRd8*'1(1i:/0xGO,p(:jOƣbv JLFmN=9#!vC%b&cT-b+.}^DS Z# G39Yo{.Qif3Aaz\'+% 70~T:.w&#:? h!-%[SNeZ$wX*[oRrݬ.eW{6!PTSy0o%zwVel% _@Jw2כ/;t",*.(#7D4vKRÊ7&A cmAS!oNZwBQqqk:Ԣ^0p'[$f|,2o~4G֚5 FdǛ;EH/Pyϛp #t:{Gp>kZF;Pv= tPHkTH)f  )-/SVGޙI'#C[AE,NUqs|<;k!TS\cvZTy/'3\G=Hb/:ǎ!R5gMj*rdY{G*I 5a:@|6RzI#85[gz@U\˚PUDG:)ycQ캑qT+K$ʛuRyKc? 趾C\FqxFP?q}A.}}ב ~ oԲ2B\Mfɱnv)[QW֪E;<ݠeb8eڋ(L`2KFb`&G%(ZÃ[6'}չ8fpD㒱' 6Ϻ뷐_\(-G߁0 x7f9F6H"Bpp] Ta~\nOP5j oэ1}=Hc=Xw;ۛ?ԝ׭W曣Qf]l^ ~Ӫ徲O}P=8tNUPiܺD ٍʷ'yf\M}.<7njaUjVQQϙ^TrfݩtMDn"\pIQњZT2CGR[Ɏ*>/Z{D4}ZCU=#(랢ԏr*{=N*:wd:Պ.9Uz엨N/NN@z?DQ䂎$j,SڽEU"d̎kϿ@It3Z*BVUpzrhp0dG8)OYfCiW!eGQH\6>Wj%I2Cyi 3[^rW[xa0;rGwAuἑ[R9 Tqݧ{UjEYdDQKtܮ~Rqf J*!3zy\ uN̽6StTq4si~\v{5V\ϳ6Oh k׌8j0+OIczu.^kzGwdqm]gӒ%t'RIGZW;s7stDw#цC5f~ZDpD^h@2iD~c7""*t.gVNId:E8EBv%*ڷ/Yu8ErOR Yk5ZjPGYz3 U&5tOUWFv :/7Z/h ʁ,PjZdCSduٶLe.WpTS:g_ɐC ɐ۳BCĬU򹝣#RPPtF.MoNԵxó>r˚źs%y2j% :G W.G4==| Wz9Le:q|z)G&6 ]># %k㯁>ۂS6NUDXÞ⩢p ]돽R of߬3R{+iv]Oۦp*1q8ϽhC}{Ttq܆{ 1jH-aG=fz|Gqc\܎"({Ŋ?ye\].]6IW{D~B _2xmoqgEQ.+]Pu ۸.w"@u(ٻc+㫏g.B]i$hr|Lț~wףNݚTbj$r_tbKX A!_i.}T\1v拕CXpc**;(_+lEKѬ2Z:oj54\3vyҦQ$+oSd i5 Tj^ÓA imkʹ^D'ujYiP~;gu&^:.wfPuÉ-&㇜.Z@bk>b(8Ƞ٪[괧3D ҸɃn`2M]W`#ǖl}yd"gM+ZݵNd>kT8kZ~HJDyRB ) x\j$"/)ZSV&:8baqjCd}/St's1{jJ(KFڧ.}gJmj#~tYkyf]'GzI*2kō6zNtRCxFsgR^{h]?D~zk` 249j¹!әG:VN])k4wξ:?YE gZd#D D1UQ5P$#$tf=PyRw!jLЮMW{͌$prњ&ENz9Vʞ_=ЌqK4eX0wfnH[T\M AXX-5@''Ѡ(3BKq ̶ǬqpFKDIv ,~=1%E:{]v ['ZTjh۷ OMZ}~Prz~ZtT:mmbȳ==z[OlI59YĂ5G{V!X+D{>}}' J== *؊I>6|',5d{,T5D܅uߴK:{*8sMāOx_o3st*J+(e&>K*Cec dH fE|d02y\>pҌ5?i"̃wwZ殹(| :Cզ2b9|=J\ 3@_wXOZYއܞǭOa#PWwP\֟+ơM&7i 1tUM3w<>Wv*;B=7,{]?blX^jw%$3w[byEx\q3$֣OR=VT/W塲)gGI 3T\Vӷ>"-zy#abPR[EA^gV[K{ԩ'+ޭ=QFu)3]؀G[,X<mwP@ȱ\>uaN|qm_QrJKF/Sa^eŨx\aի E :2tަ_DXE8\lq!OV0.7 0mlcJ׿؄"3={L{#f떜%U`=@?^sUC__e_g.s},ETKjsI5b"A%xjd*~ Yp?QӁneJIE"3Z;󦏨9%WgYHBLu85і:wLљ9I><ޕr+# үt",u$s:#R#ٓx_)1S*y]c֎֢׫F[ɋuuU;*{vRzT!W$=:&JtmD[dɉZdB1Q~O׌3[?;+H:4U_EotTcL=g@ORbΟ; ,='WBz . W@IvJ};dzxfk|Dq uwVZV:u\lA; ;_q ϙ]O?օ ?!`M6茦˻R@ %KxW\cn恛< v"3&=̊pJxnFݬ筵u%:U f]ZQ?qaD G~1c{Yo} o3ٱQWϞB|Ɍ"שxGW߰\-r`F"׹eV:7p攜)B墐pWx~#\f+޶܍S{jpw~ rM+̍.@lHsz@|ǚZ`S)U΂grByʛQje˱;s>zIUnA~Q_6OoU~p26T>M A+88}O # z[tbƘ{4l|e8w.%î>bplJCF'5 s.{?hhWŹ=rygYңUN=k v| gG\}r{Ejj~v5Eijφ_J~^~u=Mrrxtg1 *[ٴY!V",k70uRLXgMbb-oo]_?(("OggS6C4&"7P ("2^;2G/Īb'pk-Cz,;]Bp bP_=9=j֗ˑlPh-Ƿ'f\dӍ|r̢#|#ԖꔩA ^dRu袞s4rs^]8#c zђMrљqѵ q'Jp,g7{z~u7AU"z!,G }t,I8𵡘gJR]ZS*/fEu8;t dKs g3OZ᪑2Ht a:QmUhrWZboije=)At*B)oup&खkbQNKPֹVjT-XT!򍓙BўtƥSСS)>s"bK$:Zlm,(5ZP;VSZkB̄>2ԉ3n4{xCjזdYf~E,ȍ~r OUqQS&ԟŰ,7m4g^EX=z~˭A-%?91ٸ}+I :G~2J?~ U1jGޮk2_g^7Mqq2fс#q^~n%iRK?C"mm,PuiF?0^Wq=+WZ'n̹vM}־mICr.>QJgᒺ< = Fs<1'| < 8;]e-+ôR|ޓac1{Na&kÇ|9Z[;u)pZ騔  ׏> ff:yqr2Ɠ=/qvĻ7>Fjk"iC%XeybO]Vgȷ6=ǩL ')\?q'Ȣoآf-^k,'6=/Yy\0՛JOԣD^J}VVl3(1ͭe5R^"a_b~]4Y3vTKAܓշa,\uO8<w=d8qf{B;"k([VWY/NCJ[P|k82QT@4y^~72!E|ׇׅšW7 e-xFI)&F%@g>+?CXncj wDVqBk`;v(@ ?}U6J5vjO/MxH*DB CDQfR̯8:К-SugN~R@ZpIp|>MHsQNV%8sjڔnLO<2LǍ,QÁK_T>jLKYkPk{Ջ$5.ݓKHt#tQI:Mjj\]?[j>#ѐ^rg$C]j͙kyW#UjRE#&ݿ;^[ .]$L^UV*!r,Sd<ə'fkͬ5\N`Qjmz'5i剌ju@v2S+^U8B{q;?szѓ]q:3tݎ$Q;t]vu@dk]1M4tǭ*@{~|t(A(dž (kjԧzw-N^?CFo H#ITSі/k*@T/7{:j7~gbm%ph6{|^P Ic1ŮxT"cw+IjP] ОGF{ɤu\Ǒ/sR꩞0([EW,ܯsxKDRO%wwnaܚXyˆ/0{==>܇MUǮ)fez DHQ :CLis~8ܑLOUs 3 ksS]]G#OGl\U#T52p}6K j6`}vѰ5TE黴) ڵP-c7l/$H4sli1Ui)8D=UN`I9&OVP~j*spa1߬fcrV;СVS"=;\0d5on;ܥ} V-;P0{C4ݰ!MeW}d h̫.L q:,{e֜OWA- zin06H3!~eH9|_T9<]m0HӻuvT-_'G±;]C/F=? /ojt-~_c4Z;)sPmjW;M45^̨GI,Gu./|7_;ýh}jFvN7U *^wf_x>hUDAfp $.txu|7V217! -똧>dl[ıJ#0X:j2gOHnOYs]C7};Է[L{mv:9Yj7ݎG8kVxiz#vWbjU JdMB 9Sȹ9~+YRcr 53j $ٲ-.^|85uteyϐ)Fנ8F̡\M%ש:cI&5kō$yJgpxghfDdGBCSbZxj*sNHuM@BWs4"tjԨ}H0ю:DPꐸZ{1WPGciDZYI/ 4Q#q(Yʠ:DOr=&o*QUa2MZ;-#6И.IB\EzQ" M*]AodY7S;ŔԀ:Ewob7:{43,TZ/;?^Jxpt tFdk4]Pu>r+jjq %y0׮<1wʳVX=IR(aƃ5GE݊ et!}[NKnTM>,*Yx.'lKBAo9)=o9 NC@Iz..&ǹYz%KWdFqr8"r,8CgKp"L{'&roI{ !?:uN8 ]|O1UfcIi?z k3>K8 cz-yG;v\ysͿG1Fg7Frs By/XJg7kUso~+򾾬.7#̗>4=Ov/0_%8Rk]?R+8)M8)9(I3LwJ:TԐsاRkԛ>TgdjNٝzeqOFp^U=5'Q;-滆CTv&}TQXԙ:hrzS.?~@ҽwukO^5Skut']s@|Cר!!;F8IdM ]7 !j|ӋTG{'hb̊?MRA{/h2ү)Q%kH-HZ)G Yq""'@ԑsVs|U2I $#jj sqY򠻘dYgRDx8Hզ?2=8b<4.!UPZ$%Sfpqf6*@F!zS@5~ y"?? !ɝ/Gr;|%YL]1j%*XԺ4? 4d/(oK {~#cTd渋lV NbM=#)G'>Y*̲QiXo~J*d;:ԭ_u {k(bkҤ'R<_$FesWT{Sp ?tGùrE:Xcsw_{z8WJ^%RH {?#1Tד{aZQqSި \N~NV!^-0KVccCKZ'6[_@6tagǞ1@][S>*8ճۃ('/wA|n ;yҗtKJBξӜ@RJUOMZv6ɑΛ[{Sݯřάh΋cH< vo&E8Nۢ:xQ2w|Սl6{(.?j}2AƸ頑H Ūԇ!*5 ǛZQrwKjċ&bqIGF7:Ytq{{֣u*1ų] X:}>Kcүmh6 :̪/7LqM'r8j2OggSFC4&p11;?^G3^*@hvk+h+ -r -ۖpr@C♿kZ@NXyG ӠRISF&"VjQ;>hܧu֪15_:vUcQX}*U8FQf͸Pa>πz?EtmteZdŸc/>s,d/"Z>QkWx Abf_8Gjȡsʼn=^Έ`} u?רZ{զ:O5ի)jəZ Py}FB MLQK5vRq'n]%DR*{'jSRRZ[iɳ Eyu4QB$d kt=3!E׬J飆Eŗo)d߇uBDh;}Ѭ%Uƌ~'ԣ$%>n2GRfg{D)k0bf "Eֶspg테mUxyKM< ;!"aκ)i "dfr1g}ˍo.@ޕ1T{HY$$5<bpfO9A|Ju0(CJ%;ۭ+)߁Qeξ$h+.ηqd!65v*^ps/c]7IRg. ky(㽯,H<pIЮSkY:[ӎSD:~P _J1뢠oh2?=yGK5y㇮BL0fߝ|f^)2uÛ0 ÛY9 u>ߙFR󟪇ѩ˿r`kj\L;IӀQxF;OvI?D61Ehో%uE!ņأSlm (ZkV}KE7ɽ% "xvuJzeˆPX}wk~hn1'!U*ds>[PShEfG0E̺x_mِeӃeqX> !w2Oft wϿ[=ڙ ꏲ4U V K O3 [OؼQ(Vj (7zO$h ]bƶQ0Xط Fso|n{aڶׯB$j4/1w3Pj.d->i}^fF͖V!ggbY\˰v>0?Gj:C-|!'eH&:0vBcV>#Vw9;LN./êgPhfD UA.*Rs <7٣cdQ'ZpGZ&施{ԌCV-GUN_|Pٹ^4-)j&~ܟL$$QL_@Ck\]BR>VuLTbdFю阤UpRE+LЂPԈ&Ѳg( M}H * UjEF(]b5;QL_tOi4<`@< #ltu8Ş=Egn} Zz7rᎩaB+3lp5XrH03K,Y'#-.LW8ZKcJtT~1b9?ۯȤKV2-ɀOKgxDt*[­K9} g1h}/gGwM|-_s&tj/!/hwdTTP@3N)~PaDf bkѴ,P ޿#?sRwTo" W/ќD-^xW;-YmB s ;q埢[߸75-1wIy\R.G{+H~o %q}מ\!_o?5w[O[mM r19޿*#LU݅u/¡"yl:gR?>ܯVjڊ\ѯgWpԁ])+cM_COn!Oa~ tD敦ǸVj+"֭\.{J;sq^{lƳ; fe3;Q ._6; =.߳Ywҷd<Fz\j tPzZ?nAP^~eǍԧm@PݫfCw2n\bZSЙw57jjNQ:)T(s$ů3>QhC;q>y᩵2ꬳR;CR_s5Tv'8VZ%ޔvBf G~-^k.N#6wE GSvN"B!]Ԧ+4N(MU?{Ԑ0^BD'U޻YK͝X98T yH:g+[ %(WVCIx* <&ڵ*@BH5K QqTsZMyw@i=ЬSS{ɇ;z={(VC([klvy|}0efՇC.F##LwASCg1[PƼyG ^M{oe.s$8?JSf {>25PGqu,ćpUstDmn޸0j{ <9o} ,=`0L/oLޣYhcTkMJ^xt=%@أq5Ɣu K ='ݵ+ԻRY]m=(2[Y"局Єw5 i=[_CT\rq͢EԘk0e)ޭ"6wϨ/DU*Ȓ{<Ӄ_Ocvߣ`hNrC~:z\Z|Rm4J\cy asۨԠ(ߪE[~&f9.AW[whsGs5}O1ᅱgBIno8%,;-́6ǭ56 =;Lc;un#zȘɴWl FWwlf)g-B֒qiq^Pr|G26l3d {.Ž}Lߎ7Ġ5 }[Q0VElmeE.'N77í-VgytYo+bMV9_tD>y6ۃ9/z ޒu`6j!o׶.yG--~z&d5.8 =IoQ-߉*:;/c 0gg@9hROJS(n,wH%WQBTЂX+Aw%o2%jebGkt<<`BDd)j\}%ʔ=TH=B 'ur%8󵖲#r"Wya-©I5uVȊsҵv-SQ''I 'UH{28D} :tHqЬŐHrT) (Z;gvDTIh93dr֌ S@">6ҙ&5 DboqtEjB~p~sX;uG;jC]Ͳ

;諨^n`,.e#Uf]2QMW5\1Kwү@fb>({>5$%}}L˓݇(Uw~,Z$(UTo8Ǎ?Odx94hOP2v_'0O#|HؒN yhvJŝ)`sq{w]jo,0e"ŦW]ڦ^ 6cA-~IVBS+~F?M;jgom*ZYր~;jLoONr,7EM'"BS^0 Z._/u=I== W^7?*w1P#pjXrzP5v*gFDh4ZQG#jCF rɨ uuLнԊLv#]؟C-LB %ڪZ#S:3CJ8OfPC#5q!{*u]*BAH582E4ef]kGDױ7+kHЙY̫β]oυ,ڐdL^.b8ғԖ w'{$3PIhi>O5yRʇ٪5PR72xG$Ӈ7l"#s|0=h9؟5C{~Uivؐ'H>t(δ"7RTR)13y"|J|0fpVЌ\Ni[#2fc)>OcR7'T_CmY")<9lYaE\"7^>9sKPnc4?mr?^cG3i%TaN gK(`>vddϝ7}e47,5  !@e_gӻ73N4^ڸ:]z~X[֧EyY"R#mWo RMMɚURNeU =D{!+a+gIxF>Wj1.g~W{_]P-G&S<[8]G pU慮l'PȮ:W-#MOYJ `+ZXztK!KmL*V3suJ+ƟЁ^'9vvp;R1͊{ko)hovYI*i{ *݉j#ᶸwc>qj?|yHfHBV ?IQ؋Oѝmm3NqoS&nu,ov{V][=ӗ"aqy(g]yc%~ugŽF]x% >Yۤx6n&yԧkjG%XA7y훃_Bmj}t-:?ұZGsV%uA6tfs0ᡢX#kױn@qqu^)i?ܕFBi>=~)'.hi; @!@:5iU:pfhG՝&gDԦZ·evքB Rv^SZ{+5;{UU1%WТ"GRSEEʿ iT]2Sѩ^(F4Z`^Bk(]6tTy63}6~!)*?k맠G${ /~Ww{гkLedtv-o 8Zᕛ82ᔴ'ⲅM4IxCXXQM*^׃٭hKOPN.~ybZ.e4U^K 8= KA>I0R/Ҵgsf2l 17N ob 'ӿM=.hgߴKð>47U~R~pl|#_{ 2׾ZyT_-6zp^,`9dVe=^H;%DR}w*`RQǥQ ˛l4ϯ5z.} 毴>)jFT)y >T,= YA1Xpg~6oMk.tGm^ go7ɱ=^d9& G? bDNOCIy5 2(u=CIA\`bL.z´\ XqY_s ō:b_od8Uw ˕[i12qA瘄q$77y.f|\?b˹ʤpittL_/V(Leyou4ƬOϦ?АR.6<.6[2 _?zC^yU.w^n@hF4ŕ][,|֒$z!)@XMp`q 3eKE ֐_֥e}M5{9Q;ڿBzZe9:y:?sQ?:sV_ LMT,$7Ƥ$g"B>"0D! dCPwzh4)GwU=dԦ17]锉,oI1Yٳf4:"군cRvQ,ܩs7щB {|$]]֞rE52dWE{")!u ;EDT"RV jZ9>TP-gjJS]5!kY*5;s}||MC_+f TmA#{c _Me$Re';J 4$Hi69 "t'/ (.>DmZ@dT̜b[:XOګ[[s1=AMVV[])|>WjyT (GE=DSca뢗 ǝs3 {Xں3Gz#r\Λ|l4jl(8vK-Bw&q|u]\YA2H%M{MpKūjm}9l3K[\Ŀ$keoyƝvtH;4 #^;-'3I!ߵL+;vNy~;me¿t7LGNtRϑgP7`r\=5q.;&yw`gPDjXE76S-K!@N&ypu~=)8qIӡ<; sݎ[iY$Q+eZ>Ʈ>Qƙ俻4p^ۖy-%z -P}D@$ʅC X;!ac*S7'ksInH7a gݏڥ+06UX3?cTmFYɎݸFn5m{3:=|6>0h=ߵSsutMoʣj^p)W T>7 /Rq1B1z( ܿZܶ.n? ܜk+K?47j+5>iS%$Ą^sB;z9=yIN')9]uLh2?BOL]j S =x&ȣj ͜k$C{Z^/EB;':jPnJL-:uί5Qc G^uΤCZ5׆*وd^"~?G;ŲWYfL |TS%Ϛgؑ=yǩ!YtA򡺓@f]yM^Ƥu8vf#g}--=;7/Qej<*VA*KgҨӎާ)({z*K|w,Ʉ0GoCvikwSO-|5 -iqnZc&lch2,sLm?>jyAgj.Y:94+! 7.kG6ZH4G^%H5>uM F4aiq+O'i}g,3H5bHEW%m4:6^G"J(or-~qni(_kUqd;/BkOyD|wF5x}Ag%vWSӤ$Ԋ#3tͤjkEh9iV896;R V0ϖ7Cp$t׈k"5u33fOEqKfGDwҔ7D:i^tWJhOZRN >j̵}QK+N7hU̮JRY{ljdJwcn^GDFӝ-dh5i ?GEf 3$PM'#35Jҭu!pThhCw} 2HܴTjB7Y]<<ߪ_~n3w!ky蟿^)QB4D+Cz:gF#!PQh1wzYn|]%o{] ,"upϸ#6^* Țd=[6o݋*UFߋSv$~qc[KWhikktKٜwmo_Ix%:'Q\3Ռ:>VzBt ɮo)!,,զw :9m2_7(:zGm?6ge#ju|Mu!i]&lAQՁl|I-͏:5!ʯT=>,-ԛ7⑏K|=djԐeVm[x)~ˬ{䍸TF3 ٿ>D\zLf}KB]R57 T"NUr?-+Im7jۆBV]"KMoG7c!e]9T ;"ڪRLL!gȮҢY#_!G)pTFyTyHv=ҝN|ihE|~oMp)+dETQ=RF֩9Cz09TyN:,^%>p̸{gj#H*1Wrs /F͗}աq{Z'wg!"zWcBb-cw9*d:|uM:@PtECq>kT' vZ> rNqD htNdѕdSk+-DHG+pG+7C2mCֿ;9y̲`T5"5/;Sl^ (A<<`֗ݍ:ۧMJ6/D鋥j#>3Y~L!ARe-gAM15CN7>jn#~}N/NJ: 7#>׹$霡,}hukfvB_V&& M.FKM|4N]&z`^.?9`7iP,g,r'#?Deq4~B3W:@~V?}ʛS¦ߟq75R]9JgmH>]𱹣/3[ pNiibdzou+,a%BJ) 16uE7@{jE.lVz&b;CAbۜX81f^ڃI5E.6SxRt*pA8c̥xSoߛ|Go v>Vtÿ|Is1Z0 Þ]leogG N~_,)Ybf;Sk`8Kڒ~p_H;h,c]zܵFa;& ݆+hfi( 8vyꄶJ}IOS%뼧դy_V=-f}{%+&}r>泥k@YsjmM.oTq>i(MCA.Fr'K_pCaa02urhG=)WwQQrSkwovڍ;4ky]wb`IV;3SwE9m3XH&cUFDeVs:@Tw,j{0.Kgp޷7?9K(\3u#X#),#?O}^T[S2nN&h12-UZ5]gSVZ6ԬSV~N *׏$i\qjHG>`^zc>##ő%+΄ʬShZ}YPGUE>."Z8ՓX֛fi33VC:ȄeG^[8*0Z% :C*ʑnAt3cA(i5d:ZS5f"r}mWvZ!(8ILQb7>Qc!~ZQk6"dBF_5CnyJR .b}T 8C4M(*=n`nP# |h ,a>;{GT{c)rѺerOrׯݛ61F CLc_hW)Kfy@,bwOrWTK#_||8L? "59n<۽ SEs}fIEц]%]B 4 *"$^Kwʜo슯RM-Wֽm8}2ҍ=w9myH/$me*$5Ѡ`gfBT?ݜil͠|1.I߄?<>[XuᇺDZdi;R'aR7g#IK Ioy? l!,Į,'=7w|f}0TkJN|HMm4$֤t 9;ZS {[ 2}ы,cEff9_Խ6k֖\"`m_pTѬWǽ8jDjKRԩVyzDəǩ6[ClḨ4\q8) Ы:_:Z; DTѨ8u@kȕ8u]bޓhzڑ.Eeј'Wcoc̵ϏhU E@UjԐUA^< Fw4E)jRwboԩNȄDu"ّ5Q$0 '68QHD?\](?9GjNPDQ̧gpګJ/qvj=5٣l|]*-C nb+ނ3d>ն ɧS^kεԫBU'=cѥ#}sW:Nt/7_Enb7Ӟjw5!Nq! N2. 8O˻ˏs!tkKYE棃5q<47'?Mک?^\Yg,!F"GŲ \H+@3^ *ne"L5ǫF{ZdR:КEZ3+W '檏HwPyNR\OɎZhEIzxSQd?.VWD9~F{_#$H|w\ hHwyvHU]5u #.2ϼӏK֕_z)[$C=9D wBWHnZ6Ԭ'E & *lBT}L7\=N5}AІa}.c},R…P 9K4]|;!r*~F{iuS]BlN88r%o|B~>bo5nrans̈ـiuVv^Z~g)vf^qھh57!8Zd1^;8h_osџ<1E% >^< gS<iR@v[[?gqќj{fiSFodeX BM~u N {C!E>рSoݿUhG1'ꪀz#S[޻Kdu A3 /ٜ/Trnk:(Ѧ/S9Lu)HN8'VN~*_?윚LyFPΗ~T'\FhC!œ{WlW%eN,Ѫ 5`0}fU,##4sEG:* ԏKx<ӕZ8UyS$ъЁEUI7ӭS=wfR;3f8Gd?5#E t&5T]2Կ _Z$9KET"1 T( jD򖃆}."bW(HA^ҼA$ w[Y)E r2O[ t\7/=ONd}EI/PW:6y伥7GL=T2yj9-N0!_:%/iT{/V5F݃Ncꮼ`Y |҈2'^>b2>=ww:[{r4cmEn_{|uXC.x;ulM͆K64 )sT3?Xuҗ I!${G<J;&;k~@ qUƫ};ëGlOhm||O&x"Y2ll!zonY2{WZgtw/b?\gטcB<7fr"J WZ%gxZUvvA7;|'9􂀟οp1 gIѫeJʩߙ|>4Gv> Jst,~M76wgMnݼtsEPŤm$#yu2LsouvWt,ܴfH^hK-w; syCOgB\sm;m)tqV,|8BOZzIx;X,XhA]t" C9! H4F)E8GM("fSwfgZd};ڼl%2oF]?.!5~` 7\:>v݉ʸ4ֆw#=[K`疕 | "B LюTeK1,x{9Nn:0^͇玐BR yG<5oDd^\ݬQ%>^N]ڵ:SP֫;8j;-3Cy秼R[^ѫTj]pD{V 걋v9u>Bw-Y+,b2IFv_Pe ʫ3ΞfSkG~᜕BbU |~ZaOs9T+{U2#R*^uj3$M/U֝}[{u-TːQ^EvH5TeyDZOut4'ˈu)|I7+ 2gy'>&Vi8pPj*2C fJ7)U+{kp"{QڜP}tH!s$H%Gѡw^sWfrmhI,uM'pl".]5Rn~`I<$Qv4bKZ̉j r/[zr쌞+<w]bR &6Yo\쟁he@C>3EmSNV`?Tqܲ&"xKhH3y?%,Kܗ_@h x";ߧ*&{\7z/=^Q4+C~Y&vhǚq;ф*`1llrڊBs6UݗN`Htx ="$:՝1TG+|)D\q=Kގ{+o}g%!Y 'Ӕ~E1ƅz?#-kGƧɗ0/KzZnkӱ硰N6FJ2:?z?ixd`&!-b{z5ڔ ~Ӝ܆<5r6{?Tm{|NJ̭^_paזɉm4-}rb:P?@ͤ< k+:ߨFF_Wӿ:R?(&m%u?CRmjשR6f0~Lj/`Mx湧EKK wl?eoq󲫶夻XO6R+ KHi*xN#k`s7!M^叻G{#)<=KNij]z^F}Xwݝ6@b[:M)_x~s0J/~;ʞ$>.a|=nd_+,o{Qı|<v[rKޤœV[{ԟ^DxzPEbw{D8 @%7%F] XNq.js&Aa A ?"UHՉP'> :)Lu! )[>K.(%㾟σyͮRjy@_pQE]9{B?Ԕ=̑F:OV:3|_z {2wz !1K8Sm *^hX[&*)ݧ9qWPtL5jgGiY*%*/˩/>zJ}n ?WѼfz}%꿑⯘K+ "4=IEmY g2ޯ/{\MoamվFt/{imZF<C7'5 ܬO} vGWk^Qm㯸BQ,37fy(*z!gj%/Zqy9ƳU|5Ƹh*Xݥq۵K/{ X,O|ZKqc i0qS"o%~GcX-yݱOggSC4&R\n>v݉Xa*-|OчzpBC-k;  Z(S=ɭ>GRd@ ?Dk=Mv Y|r~8S''B]vh^2I(V'E U^NRDvVz&]dhM6]5T`n=4*NugN>TJ "392><NRD7e65aIDqF"Ny{?]&,gnzΒ1_m8U5?Io"͡s(!}LjwUl?ҩvjw.:Ifw]}I[z" i>IQO$A ZtC*Ԟvm5^?Q7;!;/ v_簸gB6gQebtx!k&$98=v'm¤ht+dSd TR`~_)ldIT-|(}YqtV~ƀ,cj^vuYҽ\䃻D_[U yw[&>{0ĦaSnw57~mV/Ƙli!פmm09`ۯ^`dfe%gkW΅lv[ݐgM}r:<2GtXu*ʢ{g_~XgEOH͌Jl@0o6#uEw BL 5_ɘEc^}#νn0d׼?P-u%<(J)|uڢњZɱחLCGg:KCx=鹪U3ΝUz'biʹuf"%*1էN"n|-UT8n:+ sUDzz=1u "KI3o9RjG ]jVRB! KWsPП !ZECz"ҝLkW{6-AR'khGgHvDQ =T_/nu1)rs.ol?Za*p@D܇ۯ?&{מNW-lO 4G׌wͧwe\4Z{(Ő3KWzqRt'G{ ga;쮲e {իy<ߺcL޻ϺMA &7a6 hkC '<$pG~ \%|Dfz~tA$B') peC=sXl%חyәuulXn߆S~_ij퉪Zv!3sӣǘOݍ7o(ԣ-Nl?:NfX+*G9]?]; w2A9!ՇN<_DC4*>h!f} 2WT6^V7Xn^+m ţ`PZV3Z44cxB}xt@}.xH|I,~+Ih9}c{ 2bm8n#=Ш};lz0)j&+)PQVycJ?~'9 _=7Ճ[QtLclhTsf亮e>j#0RJvWtfI:X9d0A\3|;W-n._:ENis.=LmU^n pMhb]PW'Yv;A Zm v٫օ X,VkJ 6N @Egt~Ooh۵8҉&YZ6S[0L;눿~ʈ/ЬuZ!"$BeY)Gn3L23uZoU#WoIt|2Eԙ Mq"r:)ssi"DCzyI.G ݇V[R昝u:5s_28yϊ^;z -}@q(k'HQVxk#5gg̑J&g V hǡVZT),H*DFD0 e헙_ !sEPigR'=5U Q; jYaʌ8TS(5(DkGSP@>q|J>M8 R jw:zhHw$=]>x2~d&}è 1'ir2݌ڤxTKo.EF9inJU.M hx)$p:J f+3{s>J_ZƺAmZ{a)}}ɨ{V} o?mYR^ G»2k|0P7#FY[RW;F< Ha\ܣګLF}f^NsOwݮ688eaY ٯnTnUS6sxk^1u=GmCJ~ nwhge% c~r\[\›3䔧?9u Ci'G}s(<.MHd3-umRX;-泆\'F0Aswyiqog6Pk W:[aM؂t3rg'٥A\U:3-?yB+s#/BHt˰2M'Q3CݡILN^_Bm ]sJ+_Ě1//ߍ\H1~"{[J_|nX- +T5c`'6[91epHO> ;tx (ڝtkQ7sϬ=-ZuvfK]. mӍ&}sW#PG\xmDڜ<ԯ(9q|LtWlrL>Nj܉~võw 0Վp)9Yy|PW<+!Me;K} Jd$/QA#׸%%+J>TG15λ5VtO]a:Nz.$,JqPtkG1=S 5F qʼnNNҕO,V2hH\M=x *!T Ui&SJɉKC:x=UJ 8Yɹ؝}IȌ{*thu爬ڢD"٠NJ28 MZ,!wuo$4wX8CdX`ͨKXk>M&}c/쯥Lˮ7 O|jΠ.3t=2666}&#jFKY+u>fqa&|쌒Rǿrԇr7! #k^7N5x*B tOCaPA^qmsz\gS9| <ݷlv_?L 8pqv~xNNSXe"t,W%w?4^>z?u2.8[}LrRej s 6ҫƿ_Pn6V|[N \nZc?(~.^FkUekGuv_g57i |P yۮT~do|=/G3)pu9,%f9f4[I5eqg\ua0}%f3yئzRSHgϳZްQ*+O gѾ }MZ=nOZUQ1.FRf#>vk 4\M^ ]ӣXa4MyNZbׯ nf ZSF(!EMK379vP]MOggSC4&^`A ^vȨ1:= 23@$8'U%NQY?cJh9x@Bv]FA:S[w=34XɏGlyyiWAp1/G:T !Y^t*FB̗ZWi%E:Яpβ#q:uF0K2gYPeD :iQTB dÞCZDDfttt@]tTUNv%=GIV Q]d\J ۡpT}W+yuծZ3}Wzfv3'T9:gwD}9jw+Y!SoП84|x@q͋$n6D'^H⧘VJp_(*y!88W FU0 HY.p":9wn'MķYNjo'|.:ƟZo zq0Duޜp <=?g1Pq+.:;_ obOIM] XE ކ6k7rM)'>3Yp=TcҀ׻++G-t#٪ɳfywW3J*[(X 0sK>5IA3}yEsS̹Е:ǻ`YM26]#qίJtw ôWchoՎĺ.?ey'^} 嶗eN~987vss_+)PXvNbބzlmB9`Ey>3%_&뇪?Z1'rhewilYzeΨ{Ωg .}sri[}CO:VglYg-79 ͤ="pV%G>6R%ޞ+eq:N{[l :[G^uqn}Ӄa#8Υ݈#9iX˭dǦ`hڙ2yDQ<}m}ͪjܗMcm/i{}+:蟞>W+gX/dޫSv@W#$gk6tizkGh |w-Gj޵q$us%Gsi=*TpU,C"B4+|CŎ*NtSR"w;qu N9:o[CM!9Z٘Gdzew4Ț7^wq͠Z1A;I-sݽWv!ك?IY^i-z#%\8LGsy/Pt3x=~Z<_hєdj.B^uTUj $g k=kvٵcZWxG8]w+cmLiiz5깒V+|B>3F 5MLOiGף ՎG~,z$}hWGZwZ֤R&S3a\]4UZȂ}2Kijצ8j:IQ@&Tɨ+*5!r֐P[ֿv( E\{LpS>ϋ?pERdt%)VtP9C.JQk%('˔bɇ݉^h"FWaj΃3qdY9'2\H643E;3jg:BDuqj'8*C#}ܽcxfrq@,ݒw=8e̵4' kc1bL]Il )̀} s'͗D7k<+R5 \H,j|)D]x^pdq!O'v3ٹ Չ_:HOC_Wşkt/ӵ:vwӬ=D`8.jQo,ۃr0;.RsÖ=OLK# yVN|ַW5jTTP'6X߯ }CzkGlޠ7bW{euEy+OyiNnl@V;SȹyzFݿef } J䂊*1>?+IS,|:΢z>jT c W=ـ"*aeM Fr$⣵{jiC%6'wJCziݝu<:nc/" OAf"NiF?vgzZkWS,Yw)sQlݪhYᙨZgԎeZ:Qc-[]c;Nuus>.qj:UY%LRS '{=NAtD%k=ON;3ήt- %^SCT'R:EC1eE::XlFsF RQ5Z8[)Rҝ:hDr*Uh}*8)+ׯEgQlV*$A Pسs%pj\a$}G:nj|<N"CLh}:Q:w JD˞=Ҹ1e`LqaY # ?q46Șy56E8Y6ѫw%;M]c;1m_!ΎvLpjR?dPJWz]Œ]MdsܴG7nmad".ko;>ww.S'!ϟ}nS7འUZ1W-]a{]wsL][ Jn~!Q8$5"g9Kߖw[_"N#hYOiiDtWG|? |l"_k B#R^Q![o NV^yf]X6u'O OggSC4&ߠ%!>V3kګay$=oݗ6V eApdA W!dnQp-cvuKA$3[-#z;V䖏yl NMyU](uQiuTݸ2ѕ[HQ`x٭=\?IsQM^3KÑ׍~G Bh!L{RkSe [8SjW,~];3tcβTZTVnQȑ}9p..HmyߟY[=ZI32+-cbvpu#I랕 N,3HF"ҺOZ(^:9BSTGPRjvBhNYT8[ {'c&Ztj'N6uk;&T*I$D՞MM49^7n~2Mek,wj~ܹ tť?gNitkp\.?5ֻLa1/=/TqndoUh$;$&D猋O:WS,h;6oomdعxQߟ@*S$")k=bm~=QIZUTGG['DZTg޾!Ƞg$(DHu&y1h r)S^,RfVHךJmD#t͢֋C*ZH'{z@{1EޯT#*_NQ|PxK631.z$5 ND#_;,*@=G""|F$q2{jYfT%Ñ:uhzI{0Kf*\"{"IHORCQ]J ݜ!')Ty>/OQ:e(GU0$PIkITZ|"C3A)G}EKxπ1;nZ8尨JA]J_C~ۙ'uͻeyVvUbswb) O{CmslS6aJdx.l|_KdNGL9 knb!4t^buo5WǯQrwr%~e6('|xةwf"K|yܷ#~-bGmz+JCesd+%CJ3cM ogʗcgmY½_T–?.S1nAz.2wpѼ}O"IY#I?Ⱥ8' [>|LV::*w"ODr]gt蹖 럍DU՝n]Fʤ1g~<d%7BwHUYڄKԕV:|(4"݆VGv 4T-EJp{Zi°Wn܏:ZHʝ9DPr@$\5Mڧa:ET 8a$A/p#Q 蔽V.hK0 ("*rXyHi[/3b OU);"$FLzFF%zu7WON rXwbwp%iv0s؜?aK}aRXVl{:7@u˴ of|C۰bUZ._<(4FX,~q`ݭ՚>vkaӍ)ȇQ''jZX>[2uwd`z\0]#C73ںNޕ0lѬƽ"5AQ5yݤl+gI<ȯi:SȫdΥo/x?oysOLtɖ>kjLx6d0f9^(4x+t\ T CsG~ZMs{&_FUns㝩fKC ߺE_8{SW$݁x"x 4K_y#[{wX :l@Iwa$+t︕ǵ-_{/> yʑm):Nb򽨗 ^6۳v6ߪ yCUThКHf HIenklt͌Z[Ϩ[WX%RO͞٭s9 CCCqaS3t.|uڳή{U]wJW\՗.5߳v3B)h=B2_y)^uT9uY8L}U.Ua zgJSVhk;Q5 EGrr*54\zU7iY:W!|!6u*9U^98;cwh,n}ևИ:RY)Ўt+)"U&{D !)yj=CvISC3=fQLn:RCkFDMQs?w"N)X'3Wn$SA f>IK28SupN}3-7Q͔(~-/$fOQc?n#t/KjԍVb'#87Z(a HDE;lLL8ߺ|]] ߾0'yӑypJC\g3QKTgDr~sT>GcԾ̂1~|^\_E'?oL['MH:'{Iؚ3w=t?}Fd9'nD'ώPj,W2ٟ9b5䏊4J.d?&xLw@T}>6A"Xc,@XkU=k͉`h)Gfr5-?8js_@"\#l{_ܵ|7;Pbכ(1u"`zw Un~s{%-k=$߉0cVw|Uވ_J+m[[)qj-/诟UB 2d-yL*h&ɷyY%mtM_p4_n eeK?f; iK/WD+oGp6ǩM ,A"q~(>ksn6O&3CU,ᣯeNg{^5$5M;J}+\%~ }oL-Y"_J\2k˘=)V"![qNtԊ1h;͇(~"Vkw1Nޮk;^{M7G}M3}N OggSC4&H#!6;թ:d,٢9KtQ<| ƝW"߼:-YcWdmGdG=v{4:6ɑYk}j;1k:>>5%kѫԡ_Xy}e/nz *)㮩dpvWіt>_?wJ,Z'zu !QMhUDkͩN!QS3|qHXpV{}͒sUʎE&'<qWb_YgzK;'Dxh#av:)}Eפ֥CJt{<;~K cnvf)2u\{?!_zNNmGm,x-Zo:ˑB\@*P9&=k& ~>s=ʌ."CR=Q5& 3 5j;$+9\Wj :]LfҏJ%[[j RkԤFAZtOM"}gFw#9᠏%g#ڷ hFuoA] SES/V,(m(s"vJG;ᲭIOz\J~ y:>\xz< DR ƴ*{OPGeDurU\m)8|oY<#`Jy#`[҉ ITGK+)FAWe[gtÕNir:3!nu!<}0^Rnxkﻂ9,:dc;q\ԝV='^fHYWW;jd$wۭ՜u;sS/VPז]o˥r]kJ:ϯU)5KRtuI(Ҟ7)|y_<Ԉxug޴*wԜ3?fY="HWkt*iui/~ Dr%b3\ktXO]Gl{_ՖN!a1G<{? u\S²7D%Yso:ڔ5o}/ iǧIS OFGބ-|? [<}Ƿ?qO qmvaKr'}U_qK jdr* f<=L'B ߥgJF엀_٬A-ҕ[kkQu~K:U*䤲@YN E1uJ=VGZV'kDq GJd^O+5W ڻ޳^?}hhkd\s³EU|A,R@?U+"󪢚8D]pv"˔*U$磎8= 5r*<5*葻pϩ8#*ߚU(ԮL:uJTX H3%ٻZөN/'m"Ѫ8)@aV;`WV%06nnn~;_w! <Zl[/9KVR?Yq4}'w!Th,5x8WcSw0!֍&gGnܪ>~gc㔒2|~ی-w ӿ"] |O@~Z!61qUwW'',E^-θr=SA:gMS]=be5z:}xÀw~ _Tocҫ0Nj[xx] 3T{y+i&ͯocob"6Avo|N"o.Կ@su],`/ 6[}$1&^f bǪ!=URnBTG-rQ'r-DtKtRu0ەV:kH BU]Sz(:NTERNט<1zKkԐPQ Gt"eߩZS!^9siޝ݅Hoz4Csvs^׮ 6{5  u%A D:v*EN?NAϷEψJu34u!٫i>vΕ5Z^g37:L{:3HkUZwmm\>tT-%<ݝjL  )z7IGs*Qgjv v$1!bL<Dz=O­7٪B@'Q3sWdd.2t29S?lTLd=wCiI>$}VID\i`Cx76$!=]сew<]T7H1NskàVZ{YjQKV^9rmK=$ܒ:*q> wO?Nrz1 g=FOrsǥEg=$ Uk]r)݀;z+wP2;Mph)hWڊXԝ8vSq~GpI{ʋhHџG ]C\mMQ댠UX;y~Vap7^h}˙9_ߊ[ԏ㎕:ygi{TdipI?${^HpY]+-L78 pb- oozHŢ'S?3r=;n[ydݻ'fR= 7/Mp?_UYt}e*F;0`ajXYhqzkBkڎG9:3ErDɰ1 =,Mdsվ*<ߥ=Ti?Uy%oe YGa]}m7t~vK \¥UQ]}&l*cUeBJ)abPΆMbk9{ߦ閇ݒX2HP?xSReL5QcHs)-Y0κ(qq/{LL Q/*O;hb3kUV/(*6ՙta͚Mx Q [aq,|Mۂ-tz /$q]5*S;?62WC4ɈeZ{ߋMuv=N{^IU6BznݿPK-:Q5Et匯]~ܩ)U)Z[㳻R)I4k}ʰKT8RSt$֧5sE멉Piօ}6uEkMM?Fq!ʎ,-YVRtPk޵v-uqiR |dBW=&*5C3 xTդjBB=Zsxmy4)t"I4k3tՄ$hk>!A (tH:3_]b+N*tLEhtB:ZʤκK8NA;Q9W(SL*{Ñc|ġ'R9ct+3"33|,3hv:6\kmdHcl1{0,˞G ΂Tf J{N4~_`k9L]*OOb/l|%Q']Ծ49+?X~l={Q.jܞViE${t[ ֢ʎ*ns˫6W}8L hIue1ۻN̥&V#4x.[?ڏ^ ܟhʰdGm2Ѻp8O3خ2a-l|f1UN=p ;=މ] *2(u%<5Ӓwm#V%C +CKӉR2>cɺ_~C;>_rY)c q*g19܇%nWN0}h|okأo,;-_sǺ s5|]u/6 7]?WDOgK6yMYֹ6qxKT&H~ffR# _d@NjC;xaWs>*Wx?-{]$8p!_){̛ut2*LƷyU|!k_udTM^-mrB0ct^:soދisAbϜ_8"\63/W=qRo撺mNH}teu3?ǭuBTI#l>T}Uoyq{5 ߶;[}).FÖcOggSC4&BI]5}*!Dlf6| xqpp)Hi3D=+<-Z$V]M}_'oDC*s l$NQw{\Tr+tvrd2FT:זլ"wy<5kW4tSj֔ F Cȕuy)AAƼBͫSHͫGÝ2-G]ȌFxHjFuzDdWMP!=Q="V}uYN0EGT#3ūTgB y_f}1|=*T1Nt" UjUdvxfBZqBF Ʉ9CgahPRN2IgEYKggft&ڪ*;M ZE2#I, 4 3P(φ;/O~'&]?[j76Lo|faH Fta9MIÅvż_U~$Οl;zīիW ե軭d7~+xP!IC^oU}/$*L#(bFK]*⹥яL{G*m@[0h\}͔tl3(tk 48qݸZ{Ӌ~}7R(Ό|FC 'r7SwmyBBr/mGG+|[,c;jfgEcAT+pZ˲83ނ>HxOwE5jޚhUw=fk҈K41Z xE]K>>O?޼jadTƝ >'#^yh]y;bW2S51*-{}^g6;"zc͋p*]#fa姗wIO xh^/-FDf8}.=Q1B)3okO1q-)o &R.!C3JΞ|T]m 9~ dgj"ox<biB>Ôq,HlX q(9iLeyMךS#ǵҴzFMBM-Yի=!Eˌ#qI 8bAW{455ص]c;UH'%g`tD'A^]grR=93"給r[?R<5ǖ)yTDk 5$jh׀-SdqtE,JdN%)X)֏*oo6*JXyxK]K#)L'Po|0 $;Bط>߽tE$hY2_}ӍNPUʿ`qKᚖ>,FkcdבϹ,x<3ޅ[?v,{9y;aY(wqQε|3:H^>Pr4rRkLÏ5ƨyn⎠ P]?=sʌ ,vryiPFYi_>Oj}&޲Z0J1Wp.FwgXfcyc8!/yd=$9v{ΚrV!nt Ϸ\)6%$ޓgdz޵6'cA6o+xŒm^)[5!\6'D"WֲI嚐yIxa}7Gk _jP:NR\eMR:H-YIEux9,U?:VXkK +S:}#륑yv'd٫hD|B7I2UECs۝w[z@ u7ޭ{qPֱy &Oyp$T8xsy7--[pkn:NuwųRhd]jYoѽGkT8-'erVQf2e,@/XSl1d.mXcC6Ҏj y>>C#\x%>ϑ"2tZU-fENU$|-[>͙QGu6]U{s<0C˕Wݴ*To5^̆Z%NMRl]Ef(:_LSg(N՜viJB_h{|{ѓgvjо{ #רDg] 4|eԈTg ?..g|w锌ZIIe#}c\tʡ5{%iUa!= H8#ug7A㧵&5w($~嵗¿=)zSYY$Yҭ$_J—)':ygg|AlataK’>r+smjl;mm|J 8QՐSaqj̿90L52G <5űJJR]4#R:|q0vFHOSH+%յ[-7SLp|s5:f`5"/J3"~7>닩A3:]|w9 C7:[`;]il)1n.e_O?~3\\I7-Db)Ko{] ydx(8I;Ě+=E#w{uR`8sI">vRږM#xcǝYf]^OLqSqȦ'58nz-5K|7'b;r:zVXرIiD/SNi`ֹ%)7XupM=Mp?uLEcgq(wqEὤJj]H3똭|RVv%9ow~,0\oؗ͠ՑGm~˻_b/.!;&gzrI4i;8i/UlS7bkBI$\"A#{9D?ֳo|!;m-" 6PJOggSC4&,k lj~*])S{UB{:uvt#sgR R7rȭ9Ȭ2ud_TWGhԺSJQ{Њt6dvm:Z]VZ#4޲FTơ֩g@h>Ph9ãRPJD'j%Bc"ۙGHD+QYQ9 h嚡8:%u'E?#T5G6ґISw^* MeGwZC)M71qd(]2y s{1}]򠏻/8_o` PsPԵSF W'}zTS^Wn9wM/_) y$ܵtm-6= %r/ n-I]jsڕJ4ݕm̿}&d2m .DN-v+ѯO}$$_nc-՛]0S}#u{AMni>>]}lF_/=rrd8Ύ a]Uu 瞟~vO*Ae"$vLv;=N{㻕KIfݏt')䩲a(QAF)Eϸ17ēu$ FkSiVNCu|Ƚŝ# Xp|qf{uУгL|35amg+ ηYE~"ͅ⒲!_X8ء[ZoM> E튌cNv=?(wOzSp3[Yjp)3ffW[z7f;Z]XhX.H;=*vXS)!Ч}*=FYy*~S[5qh&0Y>F:"ڏ{]tk\}(tfʑWPqw~DhM_Y\O׍~]bn:t߂1]K1HZuнҷ&ZOP c6_@]] *:#Kő.?H}~oE}n[_=ִoxF"FX4z{m,I>6q$<@=z6;ew }C@aL\?4wՏV*q$]i{eZ|JH:԰j^U{!+ӳ/7`чйcWNfmTY'39/SҍzAkz0F,uRS+̎W":d\tᤫ[J+FD]ԭ3R#̿;t%!en^S'=dXy}\Y{*B; qe;/Yמd8GVdߵEX:d#DiQ `UJ9'mtgul^p֪ujtS N '*dzpvyiqRi J8LH9gY9TG[9;Z]R!Cq+y1U'Gɒr&HdĒs܎zBv@`ʹFSL,shc0U聝S "0(>TF\d{@;;|c=ؖK ^aJꑼO_>aBw&|ttnĮ"={ịsZNȊ{fpG#c~^1X4Д,$86wiN !Gv3+JujԘDfihGl.r8iJYj^2v8V˭PãHa2W_cz䭋|Mza%`tYKR\ur{jŴ5!<岐i|_9E'ɓ|7&ߴi9J1YȼGfG;z]o3!7w_Q3:TNfMOk"KXqBjd>,C8QU򦮂 s{G/T(B;OIRG+S1߫SN8.LPYv$jքSJg)Dh}5qh.]*qq)J4}e!kxYSWPSÁi%yI(K@s2+fIiƃD1S^|2 1xq g_M(FTU${>SsHntܛ$t6 %C뽘j?H.}<9=\wQα_\R+ɟti6Zmy^{KJ}t/eT&]S454E;BctUdžG8v R"ĢC6+/upQ1d%uW<[Jikw:F+x4Q$s(K]W׃786oW7ez&~(  ~6۹窀f~>* %dVk^UW%P'iGcz[.m\*Al1y~&54UiUIQ_l:ٮ.sG2UZޓWWؙ‰,{:9Ѫޙ)UXr_w>EtHDD*[z8tTl B|WɅ=Th S`F"jfƯnǟ]|D56jeMPvٗ?kbVt {hs=Z61҉-7-)[Ɲ c**<-/yj#T}#N^޸k@M.nA^>cp W jJܞso-[|S\gl߷"z&f N ұc$ɶh,k/ DIw]WOI H#J[{kn_6Hl\ `CLVn1;fyu9olf^+Y#́kcSW7;(W>Ԍ^*OggSC4&ib6+}:=d\c՞gx[Sn߶p%/N2f$tmljnHrx&VD<tnmK TP5Xz|=yޯ!eSxOw4}Sw=CkWe*S=!**ȶ*y Y[Px:™E)5;܃KgMw>E딥fA1S{U jr|8&3$FՔ;LV6p5ZݻHbҜԪw028~zx~8*{Tޡ:uIU8@Q+F Kќ:)n T$wjE=)Fm䨵 @V2Mj6{jFTDEL;h׮s'Zt{*]AʣQErt8}qBvpT)̏]iϩM*]#E̟-N:!$!&D}~}iH@96}%X<`^o cDq}Bn~팇d1=ܘUh]IsO]\wSƚ@'{JUJ(ק}KӑOnlI[Pu_q9p:bh7W7 &$.>.&UҘd֟9VfE)wV0#sHSU;5t 6]`wk LE9tTa18v W{kۈmN{RrmӽnnW`c8;M8jJ"w\l6nkBGjvvW>n,1N S;-̷V:MMB Rw>ޕ/ozHJa'Qf'؋W#zIUYYb9;|3̡W*5 bcƀ>vN*k0hkʈ?fknפ>kӷA\CT=}K1}-׫ga:矼?eRђ'H[ZmF5j X[ʼnxb!6$|O}R|l bg5㉡fYX=!w^eݖV&<<$y RΘG +dU:[WQNt܄FH~es& 6⥾T[ᄃָzOvwU6!Aeqk#bQ} !Af~ ^|[HZًkMMiNG">. 6{c'dtkX ipzq:wu2Ԛse{o3Et/ߟNZ062Z*[RsҜSyܟ$!hh*!.| QIsgL9n)e7yKMZ̮tRwBݩe=٥O4/ k~Us wyjy9#;wdx.P5ryQz>Yx5^6#f:5T`Q\ALC:#YtDZ=ףX*ehȣ T2U}wWh= *ĩUҿ o'pw~Ҋ>-= )(/̸ښhH&L!ƭ>){ƫKm#rЋh%"%s ~? mϋMzj׭osK'eFyעx 74;ȟGOr?/Cyt1ELze0NھʌǩKKĥe.m=]*ݛ~MoĴaatTٹX屫a.yv4?!=u163m F8*5[ 5 a^ρ^BFO7'p ǽ"\R[k;R@k,:28 r[#)G#M48U"pj;8BU |"B֙bȸC:&ZR@%v(&s ;$Py0O=S[ǁP:}?/F֚IfМ%\LJ|a&C硪irv]z R1{DfHHv#cJNC>dG.3-SflZh(>Xn~m0?[h&ovIS2Zz9~2-fݝ]MƸ1X(r9~;*@'l/v/  ŪNSr'^tCtQ,xho?EfͩҀdZ{~o޷8;7 .DzdZ1oaX1-MjgG dty}=4D5߸OrQGѫcXzY&JSS QYnhn!Mȩlt"'Y|V.hҫ ǐ[`#k+'Z"t+ V)ur%5YOl2[Tn]:>5A+_xXk-&m śIgypڿbm}W*帆*/W{A!P>6Z%y:XD.wv,Zz/~[bX*0|׊vDm}&" 2TAxnC@1N\ DNYf-אT9[\#^/\uf]-n'S't#5 .Us>jsƅrЈ82D4j_Czl̝Ԭ-"$:A*JCtJ Dd:l~ ihAF^< piTI,NE)F.J>ˆ<Ԭ%)u s~:Ud;?-[эtfsϝxOʐLkG@Bՠ7mqRj\pIl Y5!z:z\ T1hB +FC 9=izX0K mտMg5L=2iϲu-2}"=s=~68(WƖRWR`ؚnv2x2fߐ=SRřV"=~kBW~ͅ0eK0m7H,4Eʀ(^1y+!$*wϾhkp pɫGss','y]iѦwV%J>ϷaC OHn{Jw_7g^+ibXgX  }q^HcǏJj@&sTar3 ]Oj_j|{'d rD=L7F)jos.Z9=V̋Y]XG:fhhKaU۱bet!_-ϫ0pdZpC\Xܜ듾 =kV.o!Mcw1gP* 5.8irY)j+W-KC{Dt8mU3_IkY=U6RyPàC+[TszYW͟DOggSC4&G 5[9ZZ'f'?5Axz}bU d7; $$=ESCS6QUў}kٳs&Ӵo{ϡ>s.Wt=ǽU6+?/GZz,5ỨI.Y;5벞]v|d iK;T顬<8{Z#w#ܨKPvHUɎw9h=:gR|8Q>~*=&W5+:5?ꐪs8E=憓 Ui @Րf%=Z}Z_SҎRg*G/AcGrwsK+GfD-ijG=z&?p38xM\R͇s8]d׎Jh"fp8$C{9tPt!/ S!ݴN·hWZLTQ);y6Ȥ5pNZkϑ 1vYBhJTDJa{̶=#Q} PX/zL= d44қ Řn@&6wOERa8Z5J>ct9@աw8t_#nr>r\g7T 9~mSOz-yYf7⋔FA ocЏ5>odƸV8]&*+>PIkmٵ\Ly-63-e֨D]p-<~N]e?Yoҝ==mcWwKr |1uL6v?9R^13Vu=%q)b-,ƋmW+ǩ,ֈͨb3ΤE}U/%#nڑfsWm:l"l:fz+h]ݨ$ EU/jf2!+\2.ɺqfs j^ q1gtMR|8r2De_?jg5?~}(aw9_^NkF3/flA=F^6ZcCaU]U/ ׻!@nM$H$b Yj EW8$RaT%s)bd\ڝ5:^MY\zSF-#[2P*pսwM]Lk\u~yT *9k8g"㫪qHiҸS뮪Q3K5g}QJ:phWV囘kH%*"5PY[_8>BV9)?ʷA/V4CnŃԦVݤ\W}ϋ?MV?< !aF{ g6$XNI$2Ί/7wo;}L5!x%Do ۹xnd6*fZjjw478$Ukq&5Co^p:Upk7fp,r'DDBؙLB|;Hu,7MF9~ WIONOK}٫9qnBsvyr-8yɗđӷrc9('ކ/NQNZq,OgUƲ'  fáI.tn3&ee?=ڛq^\e#/_0M|J4R\LW߷uM.s& yg\dy{ av/~?JKc5Qb$}+jy g+G͡JK:i]dk4* ]]ӮX4xT]_V~^Y{dꌏwAoɼЫyވxr蘪*%SK'u { ͑4}k 3ۗK*I,rξN/zAM8>~p7r^9}&Κ-.o_d m^mߥezQPq,f2Ip6;= ZgXfcfm ]s@7c8J XJj8 S,'qDV*h!RY⥋QNe2 5 ɫkc_AZZNU rgjJz!*VEk#jK*R"Ӑ)s fT9Ϻ8G8Ս=^ +JJEv}pQչIVEKDwBkQUlrWZj.~f=b fԔGSzv=c)GF/nc1',Uk%ءFk.TC)AuVA[MCTb~͚ 9kQDD}Ou~'LQRG }Zę#5H}w2өYtfujD!M}Vx;"(3QwW@!|l$3tݗcBhُ |k"RJޟِ&e;6F@ؔ2?e鱖[HdIrdj/GvN t|ӧGTOx60e1l>=@GLu?fnJGlᛖ,uǽwҋveOE}Z./ oQ@f֏QԄH\<)w9X-U ȸi/C!G%ߙʇhGi_{ϪbP%ǵ\dm𙧵d)7%/h~=-JH8.X*qӃ,RԼ] &~d׵n^?ɸ֭v-^]; PE{/yī6 hWֻp}=E;n9##'bޚYsV[2e"usoqQSc+"fXu^cʠ{ahTB rǾ.MTrE^-u|?dwBrɽGs53u&Z w6GK|G_KonQ8wFeymwR&Il$]U{c~葷~UwWT nrJ q)bE6[{^BF5;{KD=ѾE\K_ц]"un TBD:*߮ *hH]U:)Rk V{5@b,FE]]DȺSkb*%G=[GhT{:M,9S.ʈ G$+ w2#3X!柪ĐK C[tI^{4uߡAY#> Uu85rkTdUNKݵWϬ;>W|)Qt&rh#*˚Hp$'q6@WgF25I"O BtƲdVRN:kufݥV+̏0wJzJѓYSkW u3; Ukz&Q;[hLIh@a/d^EaW4O߹pm9ӓ\~fNn8 t''xAA`xU4.[>/)vO 1ﮔzYWz̩q;ˋ8ȩ[5\LyQۄb+ׇ 濞@yetVY/<ԍS?sM_kF̲`4WO]a|rhU} uy1}^cH5vT_$ogH7wjQbvAþT{f3<I2*yβ'L, f;˵,#}wXD=~/>z^ *)w_H5ڣ'eГ!?|w:@A:Vtun9s5Tvڜ0:2{}^ͅ`Am)N =}Ԃg:Yu2&c)w4msEڡSbäPrG=I 8w\!jP|1vޏ勯 E])%ƣ)lz2mnг>No[6=@S$et?~DaݵIΛ*k饶};0/sG|n7K /u}n 92:ve`wvT. zwux0`76qH>7tΜQ|UBjW,VXw:c"PM&^ 7K'S{/ya:`!HcMTěnYo/OL ~o^ޮ_<1l`@P' OggS C4&} ~6~v͎`ٗzA O,~:V>NՆJ2KN [Nehd'|RzLCVǁYee==͎m *uZ /Ss, (.|zٳRBCcd/j|=ORg|Ԟg̚LQ6s#|9v]cV.v)b%]-R_Kأ;Y.Un+Q?lfjK֨Ǐ>gi}/ =1vi jJRxtּ$yE5I"P3][##3sl:|͞| rEP>d A-xCK:RI'P4wte=Uhd{Z;kGd f)}TEwI8$?&н@A}Ɓu@7s НEt۵), hziԠLȄPN!MȓՔP(L/p0x[w{9N`^iUئro2G#ow$Ȫ 맯~OjkcKpΧh=,E%5^>JIc*:3)czl?>s ª{_5Sd/qӋ5ZdƘ'xrC7N)O{&~]?\Kbsl<ǗO%}wg|Ξֽp>u'nn[tr~*o2zPן ]Ob,g0=M_c{i. !FuB=Oh`h1?Xt"sD=XJ\A䂉,ZUԞoB|cvb4-vi:- hQ [OXI/['?eʷ_ۯ2zU?=c҃T8Z˛jVh=Υ^% 3 $6Gi?[Śc{ E>M2Tyrպb Bl+v4aǃ974~5G~G~[i3Y8}nGq=b A?[ozs>.-~p?Qİ__gIiŊRF:<&&d}߼$wtgѼ1ʧ|ȄHNc&ڕߥ|moNI0bz]>ehJ7CP(H8hyS"i:v.8碐1AO1ִFY*K\\~6۪3nu.pfw5w~."r"j +PH]f8p _ Jכ~\Y YSA竓<|TϹW7cc!%:Q8ғgxGˡɂ,» J.ɕh85g-/Ynjeg>~}DnE+޻V߹h]tqPQJD$$>֬>wrVGy>d9 N͝{kD׈ m٧f]"ѹAQ#&~GGP\pz+N읢RQ'ɩFO_L#sLY=;(sWĭ*1vf9|\~n%U <2΃tAuQkH漞U]43#<_pJǣ 㣢 GR_09[`oa#_E&p VpnN}]=nWrWmš Ix^?TofqoTked]c9;8n~W~$ۡÂE&@Ϯ_s}ffo'3Nbhɺ +\ɱ z+RK_u|# ^ v(y%ɾeB}9jb:f85(4tʿK[.LBiД{ύ lt (_>6t7A ló %!Y/ oޯg5@!]Īݡ6Un$e>QoPH@BNt>xjU&jNVj(ܙǪ]N;U4]3Vk~I&Rr{nNzw%Cj1?gŹh[#9k*RYSYZ^FvJn$GcLs±)Ӝǁ+*CzS媓2՚ϮZH=$ѭE#O}qs>ϓZe %Ap}&k&1U Ȫ/NshbɾsuV՚, { "NU5sR:{/kOQ:j4Jw (Hd y$5[}Q)]*B8HTpRYkEEII‰NTDUNPunq1'V yS SL#7ǁiƓpM{ !.~*'BvZ@d(( IP\~:)ș'X=e;tAf`V{ܠɯlܼΜ>#[3^U[gq I>L # ѧhyT6o=W;uD,[wS|M|v߭j9.C1c.{LMd5CQyl&s==Tc[K"֯3wXh#Sdq+ z.cnDbЭXqHu,c.j^[aj +Ta.6 luze9U!cԱϕWC9)u>׌Ŀ~v0tt?];#8(Kv_Gz)\gۼ*jx!/oBqqh?p>ȦħP ϺzSj]# zqvM^£aAsF^z&; @}:emE]p]Kʓbu,y"޾ܩ&34UhEj|z:S@|) zN<ѳšc]|{ٶbsDi)+PUWalF LtRAt=v#sB+J%X)i]#t`y ЙuN|t{S*[̦ y֬k4"NQg CD8^7-09ڙH;ًZjL˧蔩[_Dt"*sg+sR5wW=T}"ZgE%Q=A@Jпzܜi~"kJTD`" .BTh NBY*4}Uw9̱{p;w$Z|_$Qz𲧩jGnH(.$' YzQCb굓gԶɈ;U}WsT:Gr0@c)rA~Ü=}^'}"9y1"v"-jzu!XD(~|fuZ};ɭv-^;1<ɔ1#E)!ҧ[:Bŵ_̛d+,4>~)jO|[>qiј-+I 1r#|.~"oltGȂka~^ܨ>wnHݍROų۵̇進e*f}bQ%k0Vt_Mw<-&U޵Aqbv sq'(0{>ۉap;b{8UN#ŝ,XJ3˻$JkJW?1dVt%u\1R>mnIPj=..a&[+냫\tfhsRyU=q}.\sxϷ[ڪs-~^SNr6uq8]5c,uQdҽ4f.FyG7{oW>YW5DKcKԙ-ez\L?9W=7d}| ۣ\:1HC@n[VOggS C4&W ~6+tgVC;lvXxBg_vXs 4D"CZt^4u+Þfu^UNdYeЧT=+ʜ+Q{É"R#DTG^ 4f}nkv}tERVZYM=WQJ{|XN-/g̞D>5XRk%d\kܯד=Zcjj{Ֆ1WGV^@A7^GVoEE`[|ۙb/Z9D}7+8W. Z|xi!]{sQv~Z|=41#v"=!XWN/<%_&rϝXI.uwA2rjLbE%LJ/agFY+Zo>oՍ;=1$71]}ߌڞ6%}*MIթ_ǔ)rP>d+82`#2ijB8gky՛cZ=fHzF丣Xz2+{]}<;ٴ[3_wgpgl>+qUy==kOjO\W¦[84:٣ڇ.7sgsPcد+fYt7}\7w{F\o^f_)-A[GOw{rg) :dNKm1k+s-SyZ ?3 9O47O[F8> zRroc|eQS1%#9#GM{2.}Wi@~ȑOn׬ɮ{nLlFzc``3z7cv=*3{\t`Sf梆_7M>=X;ΚxW~ٸ0B~mJ/0yhtaGqP2zyM<[{R oܶoXfo-kͧr#Ԯ{No!%IOeU"Cq0STi2ujIܻӣY2f8Mf]ejvk6:kZ9X"玓+$y 5Ȍ."HWRRFͽщ$Z4K*ŤUugT31@=-d̵KzORٓ>bR0W"3ɜ"jktrDڪjͽ>3XCyUhSͽ_{)F&='&,N%VZbF 2'yiC0Nj DݽQ.i;Q$8ΒOOm\CE84z *tȎ3EȾGSiDtT5JG]+!q<7ؔj/H"GEjɢD11L<̶'vpxr{ۂ3OA+cV_av:m~‡&:KU}p23 Ad|X=wteҀb 7T /jt uUϵu,.-9q=]OYyk/cBuxxC~ MU'!ႇ͐ u^DpF >Uٟ6F?օ%YozܸuQg "d; yaϱ*ߘ`?^g][F7S!PK5]5ET hq{  YisQRqYKe?T[y2a6I}n?-O~AZ{̈Q] 7ŏ=ee8ԶkG4:|j\фg<\ts˸8Nw\Sx ~4,oMol<ǻ5ӷ[쪵k?q'uzظJ!sIKde$[Kr5n/y6m0Zlb-xkqz%;/o Z?U|*^T)`kgODuӗ3W6N~tQ}t\=[KGXZO۝-t+'nݫ5Ef~/#k.}'8UG+Kt+kl.ڬ4+pwϥօH]ӭ!NЩk@nr U.ARtF+-NPE*;sZ/3JtkN 9H"Ic"LO3J9,3dMnZTNOQV1AG.Z:X9l_Y\4{nG Ԇۭp(mAG˶{G_K@vRߜNdO';YThO4 h mqcԘ"Uob0[&z+ҟ#i$w4-/P[vlE˽.Gk)?E-Bzup,\4osngY%\& t?܆}h=S 8$9:Qs>ߋN~7N:a3=5!/k$Vw~ßn&W+tRw/V"L%k8RK:à{V؝=K%jJ}hf;D[i`=oLȈ"j sh- pSʭ&{,3<1C$OggS& C4&!^6)2 mqMb_ oH  fM"yps]׻ΘUEb>MYS^XCrCnQN:|J&|Uv|&P)jVKern45Hd?^. MqJ"BAN)֩2'LDZ71q\9$殎TSOB5L8"IMU7]9r#Yd sBoN|:?ݭxJΉ OQYsgwq]T8VR|5"EFCT[ѯ 7k RshRzvwtCS,Ԑ*; 1+Y!em#2ۭzZ̮ ə(r 7ϧF*TB'%yj7p ssό|L,*S =φGHFg]ҘȀK<, isXqŚFj^xEyY?g[3rg6m1{$pP&=?R/ڴ"][ybb|H? Ğf6-yaOPs!C yq2聅t sR9#3]?R^;mS|!Dxb9˸g_~`=tk1Z+1T㗙kKg<ҷ1x57ɬű AZ?pU>MV!ԋ3[ū ;A)1u5П7iGJ*U/=M{C$E!9d <-E|0 ֨rQ5muε:<al/m~_+3G^/Tw|? \~5[|^Af5Ϟ̏BU'%Ua?!Us?i-SG6QvLڹ"93{'7vNY3#sv*]dKN85x<]|!8~}L{Ϲ߉Jw|:DDTXX8}Dݪ5k7=9 2gM5j+sC/kM}6 m+@w|ﺐhuKCߐNv6D#B44x*QeAtΜ;OOVR!L]kB3{H/ɩ?8k' ZjAjuD;wkk@RO lj8~p~ jh}#!؁AD8`!]ҙSt$LYuznYR8bnm *UiЂJkD{ɌF:u"\jW9w]|d%H[RM7"O@7b= * ,X'Pa|Ӫ3*]n띒?Ց 7!O̥SC, {JHI~E_y("EcW- YOLޮm/}-nR@g\Yv3WH݊gJǏKJ``jvgvԼ6#T{:ŏ?lBk2|{ )鉮^'ٌUН}#j<.FؖouĮ`v K ǝ5E5Ăԝ&ağT͟ fIHKV}`]HOYlWқI@vCfwaOē+BM4qRvoxa} _4\(ު.=; Z{3j-r:Da' fz7ǹpG&N[`SQ,Z 0FR ȸ0Gj> w,P2K rXωΝkR "o]ɟ76Yi/瀹k4dD" -;H/$ƚQ蠹Lv>24 846KϠ-s&&r, [-U$u#}EQ{!%1G\իB|#SdISĔQ||xZ;_Юmjr<VFrry:R$*Uy(VMjIϣFMz?ݖxr\~ Q!VkyYwbZd:EĻYd&ΘRZ^Yy=#{[su^Ղ)uxY倘@ɪ)\u}>o>_Uešfz:=UFrWxd :]+ Nki]ytUVkp8]ut֎c[u>qHjuBqH'\ h8螨Rx8rp+#Kāُ,:=M3Q\{ғM~Bb$Z˲V9`bko;P62!gq b2Ћ}csvcro`wt8]w¨귎Ղ;Oui>JU7xdۘd\dϣhm7H-'LwڟN::ٜxCSŅ,ԭ0Wy?^fAmU=FGxr܄htQ҄yB=VWLX#f·;]qᔟ3=Pﭢޫڥ6k^{0un+F7;?._֓D6VLإTp7nf2y&tzzJ7`!rB !PU{X^>?_Mg^o>IwS ."}kx܅+qˬrۇeSsWy1y=Oeǎ8_yИj|ޡfW:Jc5j#0K(mQyEerev#6{쨤j]5` z4VIROy뼊m DӴم,Gq^ɸ\GB+^^ӨoeB&œ볊YnIW1碰zaO^bu͝;BXM m"#9<.2pZ#;:MMg-NzoGR5*m~+r{lvq|S,/|`6qhBP{LNT^yQ+:IdzI>֥09꠭Q ͚皡xsc׬'ݑTFL}L%0/RNSu/GG?#|)Tij>Gk*C5-䜟-hF8R;S9WGSuXU9HjV.Zg 93{(rjDZN;Չ42cdsdpcQTz"+AZ3BN](HSq@q¡'rwZ"%8t#j43I3SYZDxԺY!gؓ,Wc^.kTz)& ٹF)L{Ӥ;<{")S.GZ3VVdNEQoW3+{z覚O|_}KaݼƽNÀ2d|Y &leo 7ۦ-Y| S%qJL5yڻb]6tښOAoO4_ \6]~FzoY:蜦49OiϧﻻO'35PǓ|Jz(VRʞڴ~sV[lGyJ+NK#}ܶ#dGM{6]8N&{>Cdu$>G >eș8affoդ-2W҅4=|B׀s#]۹&ZȵQOrBz,;%}{جxcO?tSV~6vո>]|G4s{ ;N;Nb34wI1E@~h~K>^8Zۥ8cl.&|B}0|u s.Wb̬1 0hO><Ie;MUaWT4^NF#f >[| `2[ɵjJe>A+7ɲ''30hk鎒IOsDq Qz$ȗ/w/Ђs/ZJͱՀ+)Mi,;HŸl>3p[Vq&>HivY[s_=7Os~KHOggS6 C4&  5ەd_ v^'ڇ u)W @9(5Qf>p̺hR?T3UpC/HwAF-uXw%ѯMNt-9)UkhqHGTl/&v>xy39/\R][F.kr[<"߄1Yl)gQ~}[V tM5*J!KJsS,tN_ѻxT[5vg&~UP3Cw!ÙUv.=s8~UTf4 7*,,ԥFhԪUY1gÙ̠~%843ЇRfT a͚UȦN5i 2H'uw-RZ #5@  %D8]k%t3e8NBDu!]8^AΠܻk'W$,C9wS¸GKCt+rzi>l?\\aHt,=vY$wp)-٣%NJM}{ \Z銢W{Y3=u1=.)b4T|7"_Nujtt&C-yRiH)cކا6Cf^r?ET34D {x vC\nXKMu;d?9|FH"iDR8t"Ÿf-OLJD-u= cٜ4W5`ђi/C9XMDڇͦCsmOQ39 )bh˺p&ӈ̭iX+F^;AO/zH1[~ 8^t=HiYZ{iߗ<j `Z/+pk^J8j8Q'7I=ͪxS۬/뷤Եe?%'=2 [c["umXC^Dxt{]׸c43{Tj}}es2[0KN+)UOY]sv ,Bz-+*AZwPԯMォb)\؟9k@PO|~t-A8G%miqm=p;p1P- ؝*75}WkIb_Bn/yNlQ2 k^sx2iO-gY;ɢزyS?^6=q85;qv e F(0^P\-UDʐh3e}RP/͔e9~4xZU:2J|2eHg4PB3d'ʹ~4<Ԑ#pk%#xxY]*GsDE:F^ȼEd|TW1GݷI+:2Zsiљ l[A$ 8C%'_:dG8{},5p(NMQm!ҿQ_=XctSN7hxM*/qXaI,fn.IyB"I<϶߸^/b~53BmR1-( J4O7Z.ƏҞ[\PQSzRZ2O5: l.+g^iro܇}៖qgDۙ& Zx epH΀ϯ} 6Q_O AM^+އo.JvtzqםW{<&>?l$+=| 8S9Ő)u"f$X3=X<66ZXWp8O 2.T|7TғhMAjw*fPtMmkc&ʐ󏄌ƒ/|1v^hPz9G8*$N! Vb(3S㺮ia*z nwKA50#K_iV_w";k]6סd{YfCVV3;1 %v?MTg6{_ 1ZV:/˨x!i{sJRla3Ttˤ0n!zt&¾ЬYVl4BP[x$Sj_z~^Omgu0Pz㵝ߥ\;n,m{Od*-J%36(mҐ,fO/9zM c0}Hg=p{uSդJOk~轪46:?Pv*.8NKrORfWd=R[cFХ*m"uiĈA[ ":3E[^fNy"49OEs'6"yZs ojm:PsB6zRtVxBVt ฿z&>'KݪSrVf:HbrT")q%Z&? qWi\Sd?phk*$<*5wȎ:Z8k=7]Vtt3NkgL';ttw*ڠq*o)ur&2j ]5Ndϔ9QUfG ]n?b38yߒΘud9hU3ZA3+= ZibZ;E j 2EY@t}'-m*y/%1YvHt&[A $$>9~5GxH q&gg ̿Vx$3bZfv~bmLUrm [7ty"Y~Tjhjԩ ]y`y{ g[qzFu\^+o-: iLv]Wo>r;,Y|]4ϸѼs/#Y-Z2_^[4j{0S8)Jg<fq+-[#<퓉=/]7Z(BjֻKi2;3f'&3I#iS~~Tɛ7?mK]nCɳ\]]dԱ0yL S;qӌ*x ׹6^ĨB?kP/ >>B:W1]#˕I&t0h[ۚN=5٦"xχ )S,MxFMU8V3ɝ=rc3JvL{.%:rOtHaߧǶ{oα0[|2ϩ}>&AxaFϛcC?An|tՂɎtz .6{,AVf'`y(̄pyvQ| S\Vf]Q2ME1\X)7lmQSSktԦ>uQ b]+3HSWYKeE{.XU,<|0DIsJ9dԨN14WsTRyQ1%"Y+AG+ eS},GS| ;T'ډVl_kMcZ8f*Ujґ*'wEFEueqdvR_( 1_N$kNY[yI T-yk]#Y"ZE?.-Wsqp:ѕtk,+LdY[5"$IdNHI /Fp$lEU5tq2S?3)9C#QIVJ=Π:]ZkݫCӣXcjgL'h#=IݙH Gqf$\w}DXF_a+l2VB<ҨѺbFsEL m)Byr^b]Vq,4'WT:m៌磰^ߤq}c}' %XJp?^UQE=> C:UVmkN3 =:,3{d!0~6aKJe!Eߨ^4Y3]f!X+^w)Q5(URϵWmO̝ _A ^{eߓb_ 7 I8g~F`0;rx=^~Y>o\f5uZd ,5!q\}TVЪXUp-v%90 +Kц] xvQ/JpfN& ?DD%I.Ml^u'f?޶)ٗtM2ڝ;*0Z 4ry[ǝвk ۻx9ՐW4H7_fGCq7f5iUk)7F{P;Ox&&w /DP9٘?au3a8ųw~sD*8^^E˩xa+CjRԳ_)R1iy||d*-OggSF C4&i366X䒰>2J7\`KDi>sА2ݬ}E} Wu{5(ugWTD%J~';/!bʱ">! k4Ip2h@]:blx-ܷı> X1waeuvd$"ա5i8GRR -Ίt]fuzLyA9\MY%>^"\ Y=*}P({>d-mSuY$^*w={ʸӫ-DO(|eZ OYcOM1Tk>}p%>Bury@E{2WjǍd&tVU~ԑs8}JY)jWxgZqa*0TIxZS%j0Dd8Jּj֩NKZ!PDDג}ާ>*$7zwe&lOql[|>Э{ɞ (p 9mV%ͰnlND7+tDn1ZՃetT<-j~o<Xm港Mq!`a\qw wP/!*WGY?8VB8S/9Dw[V#{&|X469܎kH_S]!2|Hyz}ޥl6k:zDjtYJ7E=G#6y^pqŃgH|c'`DGZc5xn+zNjF̧+|%BX^B@.1Ùo|ǽU1}+B,ttCtZID>l=wψsCdj*Ȩ*U2h)qV{`F3*RQ楣`)m:"ǫMj@-i?TO*_jߝ^p*{Xٯ R`ឱYKEZpѕ zxWbŕ`wfH:%_ixyK,g:Ub[3Q*xν\+u-O]c񺒟쭑2u h2#skrAsԒ%Rj [3³s_\}5#‹ /wweϿy5#J[-F!j'sUxiNϫRJd=Q?H9D5-9Qupv./SE)5Ye =ۑ\TpSQLK*d^Ѡ kugTQjGpf3_yjtC~GǼJ L&)!юYC Ijy@N4'v'LHFCC?s./|\~F0H{(J;֊nJq M6z '@ L-'|уlntV7|Vz#]8zt0 t>?N`Wxdd>5XͯPX' Gۈvjt?Aӿģ}ǽS} ~6{6xdi6* ceeF\~L4;'щ]2!jL>N'BU(}USy]kco9o_zȖԨ!T5ZR3J6^UU '5z.}G3R]z?sej+L,S[|^FO\Y:T8)d=o;L)~{1zHt,P_J +""gn|w4b:K 9KejDw!8Y0ÑQ'mi+'\9<| ݹ0@^SZhRc9 3#oɳ\I9S58Lɱ8pL#5v Aj'<5*sR8]sJZtH:љU2GNN%]5ާcDkS̆@GLFOe{\tKdfsB5d7bCNcj+/钦;a~Ja!&IgHh8N&-x|rohyh˱|WӀ 1`]q&jr)bER{3wrׅEomյ~*zvPo9NO G7dŅ܊^˺euqDGqwAoݒ /1%Y]^7C+ĻE4,RZ1^p?´u;ouTڛ]uCGdp\01hSkԓ&pmk_;?TkL0x7ߌ?0W ƂpB^;6bWmKViȝP=(OyV9'X2Juzg}E1H5<[CO?/ U>'Fި^6{ 5XfO5}om!D^i8#7͍6WXކ/h~Bk4l'7z{.~E'.V)@a>6y%|~͒jN1J\_Dsʗ*84yN-<?vEGP#0(G ͯu?}.DT^W7<#5s]EOggSV C4&5)uz rkioLrK{(; G$0 <]0RUu[@<5&\jăEe &SdzHz7^_c889A&tY;#'hȼ/tbL[J;%{h^aF əGJ\dS5OYsQq;'9m"f>Iu48q4԰g 2kO.'2YtΪNԘUtqʰԈՌPWx~,DRS]Z!2܅32rt#3Le 5*ZZkK8''jLf/J1d 8S/JFgDYT#MfV仯zdsV!N*Ne"B|^r󂏏ddHm9!jJ앬_G DE8Ph5Αs4tUԀfQHu^?Pp/8CQ&FFzyVΎ `!?rH-9U#y/^ɼ̞Y("D, K`|47U9KyWڃU'7bE6&2qUmF_qƵf6MwVr c}fJt1c<[.Jꎶ\c0ŝ{|>J!rZhk*gE/L2 <!q/ez *twyp{iw.{Q)C\{p5ć }?{,6:խE.:Q12V5Ή¨CoI?F(LrWX2DtA=O،Qz7Y$U*wu(Zۼ|BT*낎,B(x*AnVi:¿S<)O"^W\G4.?PwajӧNi`.Vg\aΧEo-"|{VOj5b%#0?I S;"+]:}v{sV<:!rSL8D=e^c 2!kN!dtN5At, {) HutHĞxOךh\S:'UsW'] Hu]TSRq[`,N錚= kzO^G*)3hD09NkT@ 'SGkݑ/te&X5$7 7% ȔTe?w2EThy\\ c&8PT# s \;2dtPj #8SI&A_nES5WZ>d^9$f6VTr>PWd& EܪKq;gΚ;C_/E#̬F{dQgSA|\vM. <%DK/Mh݆;x+|:sgkzcj^&m0bt0Sx51Fp ~/i<ǿT8^ٰK)1u6;)UFLP|~tu$ukþ>P)s)=ӓb VezXLʼѾk)7(~WLx>{Hesq &M((h5ߚW_ j~Yq=թF\OCğ :mHo ٝ]'6w}j [.T`f 7,ߦ++&'%WNZ?+ޫz5,_Uq7}?a;ͼ{7D|@t139hƭ?_d쬶~Wl1:14[g0Xo:~$e;~Ns>Hwu̍fCw·9;rOX;Ս`w'hWv)ޮAp:ڼ+[gGF|36ƆW,ی>C1@\q߇w@x'Z_U?p6+2V 9]q 2W I[x2_;MU֮u:#RdC'wE.o`ΊW & Bd&TZ_܌}?˞Et gEvs* p /׃m7!MTF3לIv\YG#}n͝62C]'uJ A3ɷNkDOR%P%|ս>Sn:dRq2ai5zn҈ʟ:K.Z9h;И~I,Lm8CJQ3hyh t8hs璪 .!#|{/y`\8"|DI~u+|>K_1SwEL{Mi&hsWIC]!ZA9w2k"%bjD VE~IA QjC3uM# ڳ*QqMHEMd!B/%׻ytɸHb8tj PJIU/H+YL<׊R: \YE0hdNj5x{8)qϤTu!lC+{7CuX>'i:ŜerB+/橛Qq~ӛUbm\Wޠnn10I}Xf-&ꂯ|lTntaNj-Ԩ̺>2>j"u:U'K&&NcK3]Ȫix]{,cfۣ=3 _]^7XZWmެ?>NLox}oA{?!jIR "؟{v=k]\ {7 ]=-X"7}ލfJult\. v;\_r^AE~s? Rr gZq5ڮ8Z3mKEFVoSI<_NW$۲^*&0DzPm]W@V}o5wƸ>}΄:PD@"ܨY{hG+fzfҞ;`;ZN:=(or;l%䛯/{|x,e&|]+vN8ʾr8C,v\oc ߽{H6.偈Md]s`^a28}_a$m׼s_z?k)ڊN<ƥqT;%niV[?&s#"xV%ǽ 5Z}55}~ i\ C G0@"Z#]*JQN]czt{fdm:#k$:RJ0{Eԥ*/@Nr&3S]k5jhFμ<MǼsjqWo͡&b!Gj#R_Z p:vuD"䑚:ըWSvY4Bf*pO'cMIM"Ԅ!$B©dE*y=h Q%_h^Wt9Eg S֬\SZ֌;t7.{HB9z}BY[YkJ#uVDR;53S{dd8>ZhSk]R9f&<5`W6kJ$~ZSvȌ*Zh?b؞K/_%h.*x/_2 wyJzQ"⸹ 0k?|Q~)OqRbg~vQnjmϨ;$>xA Ř$%մ==لј\i6Cϕ \ΈZ gA3*ٰ#r4g/tJX|C%#8U?9bdqCҐ?҅gRgu)yKNh1Rg%"y!N?߮]ouSjh=`E=x<s|[LqV ` <|}LIAXfoy[*׹x'FTWF-Dn#~̩ Ed]|6)V~T4'I.' fFCK[P3|K+Uu?Ɵs 襜 =f aFӛ!㥸]vpREae^!+4m:Ot~&ωdm49O|9ۏd(Fk<2?_;]ÛuZD.'it8)KW߹#ѐ?޿݅ٓrfPc/>OggSf C4&2z  6}hg7ߦȾ40_m6'.Ueƪ1׬YSR %uޥʣOGgdL"@dhoA)QxOnfc_"{>UZv&]/ЩFS8;3Ǡree^>ed:Q%hڗEdn^ٔx)]&;BF\~^މ]S5_X}=^4sO5HKI-{p+EҖ?&EG^̓P=9νO,;WWcؓwwSC?0QinvS6s瞄5u/^ht :M$g uo]򛋭 6$*}hy𹿽*s̋ϟ̶u쉍 P߯2,}ʛX8}@*S'@|s1=gV,ŻlhIy\kkiAo=15!- xNqv$To~~gZ6껽l4LÊr3Ӎʴ ߺoϻ"nYLRa_E98 qD5x4S;zv;98lRYsg/7%{֬*7JO%:ש3S37T0_eۢd]{Rd{Š;D& PpAS}zbmؼmE,LUU=}'uw/zKxkqOZoqoU}r:_r󊁁Ә_ϻ3䯴1I 2v7/zar=ӽ]Yh# ͎=W^+.u _palЏ:yrtPN4ADWJ'oxݜabBw/q.?+ʩ]Kp3Yhq͚Fm&6Ƕ-W'ؾH=R,t2mĸٔlm'jT~Qad7}78p9wJf"'06iUBOZ״~W~p.w4)>dfF/#ooyb(Vu}z*>$H^#Tvh^OuTo/#Py\>|]OrveBE<;*z>ݭ^+3Of~Ld:@ʪ/c}A ftݭ͙ykP]C1&|>Rz׍W˼)-'\]=4io0֣yNJYuB,J?e?/7fb^+ѝREΊ omW%zw]w;mU=ɱu*P5} k 6bcU˘HpJԄU{իpBDm_]L3$&Q]z*# u~RB'$D_5^cm Y"#8)[2Ms>^+~~&H0]xNUDrKQ:ԥwODh>b˫ԵuRwѼ]όOwꬵ.VBJWdL \:1Kpkْ-]ojq#4#Y#Μ ᓨ $ɞt 5G6%!Ua9U,aH*SCpDZ+ՙgʫH<NfePDԉUD|G}ꬎI%5>9+S?5TZ0g.[SB4vGW-fn~ʪDZ7L+{ ҇8AmudB(N)gKўlJ'؉$sxyDQF#=HN5K^+fˉՋr#t>kgmJC6g ͯ2^+&Xk=_/#[IU UIwv#(֥Ŝ֪ 󉤻yOz޼ËCtk ´pBUd!Nj$81R`OM}B!r_M4CR7]ӵ_ӥmh&3O ]vM$gjz\[M 5fsŌkj,;|՜`dW?ԵJ'n1n2M慕GqO{nF0J4y.,AxН6`>#7\ΐAABZ_ETص*}%ܰQ?Կ}.:xȩ̻*K{VE(vFkە0q KAW-0Ռc[,fgiZM uU!/Y\/O]ԩ8+cXў_~Y9s*Q^_! ZO*\2kb>-Lt{U/'|6uJNJ9ig0׼$D rR)D1ChU3>99֨/n)MikB%&T̸+!x҂OiHYkJLcm^گWD7mb<-t&˾^bIdkrMw 6{(X\ kJopĢK͞aTOVAtԩJFt|Heu`!!G^qRCٓSz&|Bc*ᅆ^=hZL/-+CY)O.^#:NmYsk˃|ԻĠ5q9Af͌STUu2ciTf΄NA=w:P9h_C$g;D*L  ;nQTJPkL?xddmIb©E% %$N$HwDDkNu)@#$DIw)H"2A>Ojh\zL"1{:N8q$5B s/*5D 9+9GS(9QkTMGWJWoA^!Ζpv~In en9{<|[hNqRS 3PTFN+ PJ3_wa$,#la*ڇGn:z|>>KA#R=Ș 2LW~; ˫i?p4lj7\ԳMIuF6r!7O^-PY+Exg3w}X'p$^7^ѾA~K)rLu=r0o0e ԝTm6I-܃2&z".b}u%UǷT͑rײC6Ü2S[:$/Drz0#6N SaZ+KF:8]1n?DŽP^\p1>Ri:}l_{6{=2h6f\ERTvWOW(1k=/GA`<%JVѩ+Ntw~qUdr'$KNG!tAG\qx䜵X3gr)2)p{yf+e(TȾtЈaZcv;yЙ9Gfj*y'2Te|y{-v*~RRiV~ d Q+;f7$sRb_;<3'_۩.ys5܉Z 'KIL(zv25;㑅 K-=JSg*TPt]_E8ѵHhufLN5BNw쎼r ="@'{cB:DmDȠO-_HIԕ/8UjUy*NMFvfj.sN=j֑L>ܬ~zXgcnysԈ4XR(.@a)Gnpltns &PBP؈xupXŗsμfasΏ|0d'.^KWIUDI/QC5cv[^wAg;+Pnrq} C3SNΠˑWVoUm`VԴbX4Nu kxѩzIU|4lw)dG?Sejٓa|#\V 8cw.­+LAxS\\q}ԣQ #P" r1;f2v4Fkf n-Avܣw'Z2b[\;Vu>vXA(a>Tv,X|~򐌐 m/f.KW'zti8gʹ1i\^xCb _WrO/q5v9`5'_(/z:!EzS٫}~U7 7gATQ1(ח=Fe\N8ӆ}bXw0Ug5Pig54] SF5SEv~fn%?_ +ri=>NJor/log]M7vpr]h:V6߬A0Ip;*NQN'EB屐XL"/HQYk=N2ԫ2oLWK.6DV}f59QhRy6/ Xf0zXoe qX2"W lK<":?5uvL*NQEj+xf^ NO]SKkmO"Oy]SWGdJK~C5&RAfpwɢ‹9>x d5Ȣ}By*/qG**Wuo*ginXHҤ_!jGwGա YAy8Ƿt>ӫs$JjE>ZnP;YSbglV)_(< Q[Z9ИW~]BhsmUZQb٩PDI+_9.P7ɜZh2@(EJĮN˾|~*ǯB4ѭVrt H%.UR[QpRٙ_ 1aRJ<t]Q.K1@hrkdaiJ1l Cw.ԆD*]8>\Lϧ(K+ܖՇc{ƳqF*ԅM6o_C$]ݬ1*vxpL]} hՂ4TEK/WqV5'Qe)fľ);ik;2997 J{UpQ#%d_ )[Q8s*&2z2v4 xjj1um ϛgWnDK#uFfP;7j:H7u>ҊrIqz=;r[?i =ihL,O9{Y@uZw7G^y7\tAjtNJC4Hvsˋ~dSHڑX7›{v hsX䏹 ϪKy_R8,w7>E"hm G}m.>*'),˼k70G[5$6xzq,J5u:ANC=٩!5P_kXGgN]RBJWgNǩcqJץ!Ypg- ":(PjqVKmZ#%n2D ZP'rN?SJ$}:K sx^TCh$t' ʔ"~jY{O:FGg$W,7MdV^dЙzSI u:3E.γ2D>Ц] ]r;ɭ{I2Bv8޹M7 I!DiOڥ^UW?b'U_KJP5+rD=ŋfAb8+EvTpX*ܴ 5ZvPY[c{$\'rui"*V[ #Kfg#ī[>Co`E8ЁfC= ;J"n[@C\^20 @ l| 2ѳ}ɘubC"bmS =?Lbh^<),L;op0[i]wh HWnT:;sӟtNU!V5 .V{NUu$`֜S=^=;{v{ԘnЍ Ug7va#{YeG: M"g}L?gB1`yvra6޼h5CʐxOVdQ[=R~{OGRo9$1x3CTeN@/ћqLQ8+O7|է;D_h`lW||h y:-w` AknooABg3s.׆Gq@>̗4$'ƦexJ4gu}^aޥQ}Bm&h5]„?-w Ӛ[Bg@lZ'_%ᄯ\?ξkmŸ́:cŪM{~x 3uΉQU&OeIʣL]Sq:UB |UdkIAԪSԬOf#=W؅pBBЮ9ɴ~<@'Y3tTQZ3a' DPڏ~7 p|q:)ӧk%"E bFR$ _cQ \58wc9e:6bҶٖ;.x_彽lDoŷcTܭ96V5FeDU4MJ`v|PCz6{{7:|&9«%$m1C5 '-{KЌ[|5NZ]GɇŽoߡ3]R) mS KܹU4!7J9_"5)ASeA{aIףj kզ w´ql"s|0.M9 e̖Į`vDRcs{xwKvI34rؕjƱxVWFRcIZ{M>C2mۛ6L7f`k*Ay~*i:3ܰ]G#?'Apܙn=2{cKPFܒKwCϗ 4ISO]D|,-߻\&b r|0*wJwx򴙅ym[ەTڬG'.VsCW2}N5iE߱ ~p5v52['ˉ.9.BpS 'C9:Q?:щ{ꎴz{uyϙ*UNkg8g'f=2V#[kVek~&Z+Ogé8tbT3Rd"뱪GdvzcWw25L j7$0kDLNwd(ZTϕI 2WԨѳxts8zd G;w]R~+1uvPV]2s-fJ:bjNW׬^>cWGd^fS.dOQZxz&"p*4Ĭ ZcnP|,H8q:]k8B(@~"qYTBɨN*d}re!4>= fܓ"jTTG:uNѮsLih*B%jo'S@>g|vK1WGg{,=&ꇖӥ:G iN)z۹_g$ cM*8zPZx{\|mbY/ڪ&UCmz˹v{블*:[%ΨY^kTƭ;@OF3x6a1/.⯂=OJ@3aA/}qޘ"fW OoݚOuUa ԏ7BWG͞Mφ,~Uϰ3b]ל/4sRN-qs/)SXL5;}x?HTigOJ]fXR[yz"?cs.N C1B5%+'~Q 5NekDeRww8Mgv፱ Ջ>5@ްq;->#yGաsf?e{#uA|夿cg6 Ld{7)K3ͷR;?\gmh)Á )}W|I[c9h2|:dLx+G\i.Lsn8슩9_8z_5&0K8kYR ldqumW{ogK\U46߸ xw.렸QzX=݆oVLMi3n:ɣ\ʠI#ɚm(ﮞjtY.Wnoc@>Pm)P*5ڽ}[ڧSPW 5J|ͤs+.- w4 a%b2;wQB3HRv*:E>)ӄu.kIB#K5~Υp5h(5䕐}35O-֙vS{N*Nwڼܩd1QzJe5m:{]+t U&k0eD(3 s MWj#ēC},Vcs=:N;Ÿ,<ߘ_?|Z8ǎ3ףy&Cٴ(x~E?)6#kvsH{2 hPLN ă##SufHޕ`9V1=aJݫ8N il "LUjNGSᅚM^8եyYt>ı5XϟOx:t42jr0eJ1rC}ʶu Tؿ' =>JǙSzh&~-Cۈ'L !yEL)5 FR(aQ"b)(}5-[a`9V2_kRfQ^\*o}iEX懍qW`%n;_[%;F'O5_a<>S/wv( +ɺΔS{jQ,SiTj;^X!c=S 6fp:| EȮ lƱ^85ti%#+{{r`%Ώϗn۷?7XH'P(O fb } ܓTDEsV83n_ppOO;v!&+Tl:%`Rfiinҫ${Zli<մI5FU0CqX(<߮7~ܪtlϐaKS}wMY)\e ujMxI h{EUq*{̏;Aם;@g4م*@k.Ē gDEE˦g9:ðv_1J +.g$FW>Sh4̻ODl;zHk"J6n+ܯUK>MvnBzt'6=7lM7H>`1F[i//)P!}O̕#vlR'yy-L.mS]oa&jAm1)ά7ήby-pIsޯulySݦ @>Aӳ/M쟃t}oK_h-p9Wt3"wP=궵U>HOcoAXM>CIڊJ:f{d9-Oy{[+WﺈzQџ!t[8!Yk i>0N92tGiso*3IDY>CMzˈ,tP)FϫqD7ʍkv}{-M7ӼGvw+Y}@e1[kCJ쯗 qb G/_Κ`z޿(=#Ǯ2E';g4h۾B׍e {E\_7uJk݈?RF(>8xkي\Dž_XAyá$k{iu \9)eZ@)yj`8c,EE3CX1FR*|Ie8,=nㆾH.6"[{a `~] w(E70 ܃Rn˳'l/2AP[0YvkO^nެuN:6fUuS9-quUU+&`^&k'뭜_*nף8/ݷwwb-6/9{_06Es9zW.JaX,I_!4HX:ExNu~$8G2h TUYTuɶ?e|ln -y9L~Z6:\園׾CI$SxRWM~KUbQٚqz:/&0n9nN4R&Hzn. 9Oս`xϖ-<4~1ϒXNOdkIQOo"c. MSO6ZlTd?WDkjJIar=OggS C4&ܯ 6- kl枨߽5-5tGV"l0E"=bz&2[ODH<+S%Pn^ACDNicyQ[/M[J\Bhk׮1eJx>Ytԇ˭è]9 1uF)Z3 Zйy]vht&s,#ϫBkB=IVXJ~Z+dT󄌎Y3z224_0k,)75ţU!d>Vū]rY[@Ђ+UU3/*JR茶?l}Ӟ]" 0ˮ/NR'UuΩVPə`T\"H*E:P'h=*ɤrGJ*S;C0uA(U 锢Q:`,ԟ"!KTcb;lۇ%#aY#'OX'~Thą$RI (N c e8&0 @*B7ͽ٩!Xjne{/.lRZf?-E~m鯊EvXەzNƙmWȢJ)mr[a߻~nm5{qA:i; S~G ?}LzԊŨ;/nVGnW~ߝ\BDzپOonI/FWRDE=r K/z|g_鶱zAvp$Q`VhH=sC}GkVv7\r^IDةdߘ9B0}:|kUbH&w\=\KN~%iȽx?2i\PZ+1W8S˥N{p? wGo[eg`~ε3Zr8`wSo`Aw_}~etP#u-?m}WCW|+:CRݥRi,幅j,hC͛yN UG:Uh8 #Dq~r߻ ]f|}ZAͧ5eg⤍) yWl:12~e/?aӋ% &d26{1gѲ(d-&*~l(8,ȐDP3x]^ފSzP箝,+eGFk,WMyaV$5)T 5ԕϬ1 PҍA:Cm:W'Ix)\kl{(EwTWBWgNꞱC]yH^[Wvtע;WoE#*8z⻒!*$]\nGjH̄BMj ߲{U kt s֤;[Gz5ce NpԜSGsyj\Hj7sLthO?kظz+Js ton<TYtr$5BDAn#K9!J,{Wi̵,uaek#w%]͵= uյxy=+lAw_.Ĵ-VupᷛVln7 tNw͜`,od"k,Z?\-^ܢזkFp]բ: cIǔT9|]ŽyJE'$? BG_.ZY/,ˮ)zWckla>1;y[#vtCqS2ba%u!g+LF0,\a{ OM?WqGVCmJ,f;8K<ũ6ö0WGGAl묜.u> g=_4˿A3$O=5VCW.ے!k?TgB:-B6%[Ï֐WW? ؚXL\_.E-斥?K|p^6{ڬ@,jXf[{G&fYRUI=:I~|Z_$Y_S K63]Rkլm ЪH%?J{9Nƹ$rTo U.־DQڒ ~5d82)rG#r*rVI>E$Q%zc]{:DͽxԆ#sq91yhu2>Πю:t4 }e/94đIB;4]%W@zF7TP"59箄4Y*pdO*=!$|":d~ PG#Dd®u.Z"p[%>u*uR[J:_1yDmZ:W'G$GWfATnSiW5E}SJNLI`БdBg^߫; R=@2=<;尉>Ýrzn!=ٵ[#@FH$'!m|w匟oYRx gۮNnT[juX z_'SiZ>Uk\l$Z#Q*^҃K?5 WaT") N+>#GIEkG ]uPvKE++εSBFIۤ WrWx|z-:"=7fgxXɜ:G">f ;wo}+Q#De+=CSN=+aP? {bx0>:TrȐ}%IBNJ%6vF/*>\ھ{{O t9u4.~SE[1 KO;xM-_|ȅSGQf7k}-ך_nۍr:ua{/{;sm` TBv.T*o%j/]e2h$Ũ|#\AwG0 }P(/IơT)mwga ޺azEk*<;i؟8ςSv1NNĺ?y/\~x| "rw/FX9{VvKCߖk~!lZq2ĚQ^H${!%_Po›D7fɦ󳌓%ѫoŏ(![Q,e5]||^r~l?+jO.m;Ue!X# 5۪}z ) fg{#Z501?uu]F]ЂawFUŋ~VW~ߨkO|!4L1:&7wlkTrҬWk)QTg?$jYb vTg$]RJk;k״HͼDP~"jE* S_s>k䞝: ivw8cT"'.jB8g=>Wěe{qT鸦*GxgtKmSS#jwpEcF*)u/*Ǜ=w _3JZile*ة5Ak!EAD:"wN45S<\¯_&k2gSP.ݞh&^@G$5>DN%/«s;JFȚE8Ss&8Yp~ !ڑ3Y(&$pLr/zrg.9CNnq)~@< /BIi^۶+v޻gLp^߻lOW7CS#yinl_yߺ)Uw_LmLuS+vA=k9ԍ8]$γwU,0؄鼦0;TҲ%ooN`']8֦\P>vYh:>UMV`6_56X7Dr_1ǓᇢU!WT9=+OTC"Q!mPKRS8@&9k*n|Rzįgz?rL*FCY's^GheseUvc\qE*z&%C-'}߇E#ۑݜACio?LOS../ֻpq%lʌ(iUTtM7Spʗjt0{dK3=6m$kka]O>4 WeN jLLj9cKv Bs:%Y0ZVJ_U[l\Wl:aZaƧ7i?꾮aϖ )o'M_$ȶjh>쓥]'pDmˊݸwyCbz̊j  2Fvcʗ],nma{Q/S/_,dn~w>! [:|rsʑʔi'IQPR;ՉPnk]8h龞.]WNV*oPp.ѩY錢TY'Gh/Qh] /Eג p~!gR&ָ+>ET%3Zա#4%4[+8B*{*]?KP:#kwPP8FxvA1 =A:*"&NI_#b6Q}FN5F#]2nHh$R8k1NmֹN44Qڃ-Ue =_w-Ds)9}LI?$PWNGRt6ozjusӭ'k0/2Y*vMtQpEk8jg}5;O`fsy^89an@W73`:1vt̜kAw&ͰK㛼ڳ{:ehr ޏ|L6л?KN륷7k-f` G]%'s'_5oa7K4W.&W2_f^Sŀs&G 5M=VfQx~S j4I;L&P~ fnߺ}򀗸8ޥ oġ{P8rO66Qκ]Nyko;jSQKK}X &|apqtڛH_:n?{:q2uj5̓gV>/5B?~;yPWu煜j]? 9fO:v6FΗZN[V|#GQ&<~rDuiHVRֹuv_=˙MAROUlIz+$Î=4}k,ޘ⨿25z[ZbƏ.~G1X* ^l5qY]qj 4`@~jhКdNUBBtRԢ~hnv̤SEbTU:]UBim)i iZs[Z#K/h탖c=S/9fϣ qNT=TW%{7R/[eFR3tZ;M&Z]Z_oLԒO=snK}G^P~`&+ 2MIDA^,F@v/j*H#Ezϰ.SdEYEu$,9RTX_K:h`|yUhqy6wUL^^9zꙎ3"E*O{L?+@NH`'E@JBP!sb'E@ݙ2~ BH)BjbV!kvIOM2 AN3z?ЌhR$ pv ۶>9Vwi~ڊFImXitv?ąMm~X& V^ѺS'*-5an^MY';` eVA0OF ϫj;8YGcri߇M*AWU4lzs#JU5:~XVzjXg2F W뫾t^Bbܽ6Q͵ƆV̥_-7].GzƯw/~LF:2FPw%s3c@P3C~納jֈ^3!npaL*V6p!,A/yidP6 0Fm~}Y$o٧D^,Wk}`>OId0BftRUsu+hkJ\ޞ@G%r{w]';Y#[Cj1/_hMcG2h53#;ty4t1弾)S6Í1n[NT:w_7w"B=)L'їU? aIsZI.nsDjҺ vu؏f?-0"o,[Gwzpǟߩ{'i1<ɨjf/m+]!kvRU YW-I.ܺi\y̅wǻ6䗝I(DWl6{<I%^8a c!t]9yW:٢"Eɛ$$z5sעc,E T.Bl}kCPԩv8e!WRʜDqˠ_>X?V]+lEԦUZUS)<Y#q$KB1 ˩TG٭NdȠ$sMϛP!ב+ڵœ9PuȁbD: z B][Rk6s81J=D"(&5@x\=R©:=NHQ'R%{~tUP1s$F]3Tv(2Q8IΡt6RJL'k*E$ TfLdeTDQ8 %"~'B:'U CpBfvEkϻS*dH{.!uCgc^ÄU~ WN(C *$ f~[w^0ݻt(bw=k\7n['+!KɅ*=hw <RJWoVyozői1^L^&B^ZQcO D/Z|LwB,?XQTEz|ÞK<0CưP@H|N˙8EJ:.t8jX[EJDnק8>fm!bN%/(.TΙ;X[UhIÙ{UILd{1zm8OM- sì$&n#;:Fru̶<, JX/scڜlS =a+ v72 akyt{d_/$$o1e3V]yeW-)dmr-p?[g ͭ-K,9)|ǹS6 :!OOo~FiK׾|Y󸎶c ^6ڞFX4`=B0V;GB6)~+d#U m5r=N.%KdBٱj^5_w!5BK~еJOGQC0Ǯu~뮆h\*{Îs$J?"GDcH$B>=gud-u*/JH;Qڻ*u{Bj0#dp,4C?uѯW pBTxVIs:hku@܈&uq'B$"U?e6Yx]dBBeSUpTt/b"J;kKT:ʧG_~v{!NuJdIHOQB9 I!1G*M"J|`lAɹ4GC#]9 Pl\qnj.$24ճjL $)<Ȗ{gyFԄRCw7 ]u)m 4ɑ]MGYG~.3OBLU._Zȋ_-r{{Go/ȩ+:TP069|EeNC}Qx?_iq`kkrڃH4(bo<87iڌ Owb>8)dzNݟ͍nCމΫt5 ?P5,>&ɴ1?nR ;>rhѝzAKpK;bJ}shv#N~^~cF7?kQFgy7vw'ü)5T=L OEl,'KM{K|i*IH]vQr-zbrX 6Q g Za :1~Cp!_)KIHij 5yrSԤO3T,p9Ӓu/̋TEʵcutK#zbXsjf~vɸnt&RZVG*{g##ez|j]H[2<[;tz{6@%* XfepJRլfRNF՜YD#EKm1c>OK!f[gv|tW2CLϒ՘ʬݑ8^8k~t% ek>y8^594kӑE󍤤D(\5ZJQXpv2*,jG(Zڡ<+IO!Cd̵_3BG3N삻Wueg^^mD**Q#kݯZΨD]a&j- !t\{hB^cxc =Gs *U ^~+g2w:}M27R; ݻI4aTj zD$2:tCˈiY}G)+|œ1`vj;TIWzG_SҌ֬Q5p3SJ.28* _$(9*Ƭzz POq1'ιę"3S?k=%>> oZX4d1^׾n_lPTw$h4BDH>Q7iJi=Q]Jo1+ub&yVp]@IiK+erW~ԭ6{0uz,Tېqyf&긿w8V8zDF>3DH~^^y جsYr?ut$fSwC3Υȉ^R=FϾ7YNڷκ8OQGzH<6g$r8D=^ 8aIW3\BEWѰῇ1qd.P7SnZFr3,nO N3n6wecI:i&ո뎬iY 5[уҋϜ Cq3=xzo!v ݇}L+fBѵ; -o9q_* vri_lދtrZQ}7Lp {/"ŠQ=UrF"[J>|XKx wl6]k}ϟ-_p9aҤl+oAa]K9mTC_7fYY#fVe`S:A]K%QN.x>d5}J8C]jSH4AWCl gRE2Df:w+爞:J-I d#j$4CISJVz=@bN^=īEjEw^WYz%"uDZ8$/}@~ksשcp:juER59pPךQ5 x"G;2-fD354r5QN={2UTkP5i7֒b"nN/s}C̯ɖQ#q Z9@U@_S%bjBY^_]7Nh]S*2IuP(f;KwO أRvbӻ~[jj AکZ!kIFuu*j\ADtYR=ũ5ϮZ%E#4p>4ĄCEEMjD5g9htLD$I6 > )#JAU"`ѣ6g|WQ`rnpNA<˹_ha#^Xc{J}Nv[B#>48&Cv]Fto󝗏H(ޣKY5WΊTn *CcPgS}jbLȓ),rJJj=QzZ8cruZITOԀ[ 2Qd. _oFqZyVmUŭ#aN j&} 垠gp*=w7Yav׺7 5s~s摮Ήs; *혰=tӓ_)f<_3솘=GSsS.7ד_ 2_w|y.&|?9O!?yӾwϧߪ@Y~fd|D ^'`ߒU5'Wb\ɃLaR1 ks*^O$xF{'Ey9#i's&bijl Wó^c呴 ~ij!(0B&:e:nr 2ꇪ& 1mV(U4Sc&&v`k ~ Jϓ(V&^6'٬hl9˽r-fRtF;aGX RKtDHM!YO'nkn,_F9 jKG. ^_*+/k|:E/Q>6}z ._;= V\ pʭjG3ihYugkD3N:Pf;E%tԙ[hLL~ f݂Z%N0=ʣ޸GK=kȤ^ѩGwuI_BtXѢ 3 =^uyf톐K@p_k{5J爲9֌}GfUjF2tsѨE-L2/6#j9$488MgjT$92gٝ5~85"ВN7*E^۳`ٽYi@u9D@^e9_ W!4vBV4hD/pce<ï"E"q{" DAkՉ94"gp?I?BIh%;SANj*@Sszf?Q8+A792k-2c汇ig/rS 55#@3Ӏoo #j A37yraфPn{TU}ǭYx}3=1K3 rĴ6ԯ鿱Zk'?["ud7;c?󯹽>٭Dxh\n yTXf?Bp3p̶}װrQs̴{]Rj'W}^Jw"Uv-\%Xo`!M-?:g2%ǂGX!ezi!71 ֑ ;Zt~^$fDf=y,ۯNqz(~׽F G 2{a`py8z{5 oL`nԕuZWrhUL;~o[Syz/C ))GЋ.Wz\cAO7 >iqyڎXZyfxK~"bh_/1KV5uQi?3~}fr- ᾽Ƈ[Yz\Ga;ZMzqLx a>[7uZ.߬#CnB>gHrIf\2O7RI8e:ql/oca=PAuQU ;:iu_XeSEU{Og8}ĕkdiD *9@z î< K "U#qq:*M?7j0B`Y.}ܖ|n8YlT{R];P\Ww{pAۗMi8?c } 9I8T]:.5 D%L w:>R-h+uOcm5SS!Q9½/,Cge֏M;\w{= I޴t~?27Ǘq3*aN%eJ|KDRvHpj)b>Vܹ Dy32w:u&-uB ;#c.S_=߀s[F`]-b7%ꌙ |;6޵QxTRv5k*l+b'|-hD^v6륏Yab؇`.+{Zɓ'ΰ4Ƿ8&y.=@gX*-E2Lǥx6g 6I~֟/?%A3#먔 "=kF0 &߁\ $6wZ'8_-h9Fk k<*`>){ۗh'Wc-\⾔rpaՌw}?c4jS!L4i^^s 1+C@TQ>Y6я8րHڙ3<&j]ʜuZCsc#Dp#~Hyxi&k櫃9KՉɪ.;Ԭ{"Vf$5"Q7\RC$[*Rc͊Z*Noc?B?;`&OmvuMn+l6{6GT+SWdTQ e/ gaޒCР^H&:J5g j_d<+&Ew++75惦ʁs4ޒ=$Z[sA_.y􂡝 RT%Vϙ%"{UoD{Hm$OSqUR+R8(J:t()}*uR\(GdEskm.=wN7L)4?螅4Ya{F=^km=Ah.w.3VSjU~N9Attݕ%I>9Vt>ajzbR#&q0(H:4:tS~T;T֪5_Cyd4;vQ#N1ph5*5ʞԦEZhan|ҾYlj]dM- 3}L~dR< dPÉ@A keAzn;ZSg냙XF>oD!Źzsrtl'0 E3C ]Wi Gn1͒1ter\=^hQsl+X7[{Y;K:ξQd%yiG~Oz=t auG4_rO9`_?2+fk%ods{^#[VFج= E299J4wEUa.Z^Ҁ3-͗\_j(+펮φlحg/Ip~Mݲ0{;G\AXv-*jn:)ҫ77U zTHmɉ"bqupS +ng^1Dh\'AЮ(UՏqq. Y'?'dak>'=g{̯k0Y\+}''@O=ć.׾rSnHP+.Z~H #}+ӂxʫD NkTFkmACz6~ \ȲZI7&ۊY3 )鮮Ld4ơ*_NG:l^R;{AYޒb ɻ\z7q&z)(f.]x}}=҉ J{wY-6s~/5+a]ԩ}:WvP4@7>*R53K)|k d_i~ݨP"?j~٪UuZ3`YrKGfTQV+z0yh, Cd=f$cPp莦N{KoޢWgbm{Bv/uц~frű~ﰘȜqP O3֘󤢡 sL8|ʡTI]TT-꒺c>T_~=7U*韴:J$*u3Jˎ,&H]}oT (@NIzd`UYgWJ³%%>VG:߃)F bپpԃJꐙn7gp3 :P2|O窇P5sLըַWKm^UoI#}"(7 dLǞ(frDnv*iw1~@J.xp:/vZ,B)AվN}?;yB-;6.7̖^z3!;V:˱'.prr;ݻٺNd*6P{^A:^w{Lpa4;Pu;)8 Иba5uujQ$:R'{^0W^jmA&=kLߍI'OmM8 Rs\-2dkO'l6G4Tz伊wV=k2❊jfZgRqxYzzOUBk08s|m +}yr=ob.e#%&0y|;st~VPWy'(2&Naޮᇭ%[o%F4\ HBျb㝓 9~qOB\RţϨ4.L|Q9MF2N!ooMfUdJgK^G$:9[O:eKSqm W^LuU˜d,|e{Aw#zywOggS C4&r5;f]V7xSfh'h%DO~G^/j_IU $+D\k/KYɉB\Ѥv\ gU< 1?$pf8QGk*T]\d{&JGֹV!)Ϝ]%s%eHE9C3SUp{" Nw*35tKgYw qz*ҵfUjFļDI"@.B'EZN<'S3Gq80k]'"oB6M=2Y[D{z.Gט5áH Dq&9wJk9{ HPq{v!#"^HUy>H< d'}e6*b%!\j&ruv*vW ى#T$A("m MWe pUq5(i%9zx!}JοCxOˣN_Nmqf{/O[RKO\ϾWr;;}1Ďg}PLn+ɇw2r=_o(Uնoa|;S9A0Ksr~%"P8fu}3Al߬_W=ϐ˸9r:Qw ݉%{>FsAiѫw m9%k'rxh2jucR{"K[p e4I n=r[ݦMR~)OYYZ1+u R^ t?6~uġkePٺVNuȇzfZqZjQ4q~XQR UѫIA5ʤ.G8AmZ𯮯(R/HD]NQC_P pp>L8TѺ+Y$_ɤ5f$Bk 1/]^ ٻ5+![[?@::fWOm:X:sr*@"`5F>t1K6: vghot V]R5VhOJ:U*r*JBh&{_J:SN5D+dG_5b:kh6^L0d-PhJH"g1E++Nu08˟y|\נ3)SVz Ԭ)r*jKŒH1s 6Ԡ p`Sw"T Αa2: Ь) Fjִg'EԬk{ [;^Ғ[~ _nԗn&fz]᷹&>Kor^9;#1DYwz_mYaZ8\u{\~: sƢ:N. (f;Et@E7-u0\sNj9OrxղzRRo^ثB޷SDPXPܵ}-E?h*1OnryZӊqP 6E9"Hknr~aW]lίG;"KAt(<bavv~\\~+dbʞ$}\ۤW޹.|;GS"}XgsqޚU@&EhiM@fzw><S#lfWi~Q po#;H'|ky|7^:/Ɵ3[!zzԆpј`]-@XuZ[S'¼P=3,CZDs{+;802 ʞ>~(%Qw⸆;%xzzQ|+'kϻm~n9u#濕0Y?g;mafqy3_o˃]cG|tY'߮g|i['K#ǛWЧg`G zv֭{|Qլfn-3C#Ĭ()hIڙ2kY.PC[E#5]\DWmDVՖ]a{ry[^O_iz!STu-pw=ʾ7%5[ٻvaStaD^xqabkϋ.YOד]jS8gwk7em[`&ٿ%Y ޳&ᷛ l4^ *ٯU¥^#P~Fv$ EYc3JcMR=>FU 9~'KIo~bhP_)Gd+Ǟ9Řb+XMyJ,KW+MZj b"ԜozkU#cT<7 ݭ|{1YSsf%:!r룷kk(X.w@\Il'?m.~q>pˏ>mܒ~J޴ѡ`ΦLm~M} {Se>?,=}?^o'vO.4^5dj+2 \5ۆ=l7;Q١b|1XӔ  鹙$eߺZ5VWtziV%_U[bzO'vBԳ~q^KQU{`0EB3#55ˊ:kUhj2ONCˋwsՐ=CЉc@">zekkǥc9sm n2f:N)|<ѳO\@MWզF?EPC w8KqHyk.~wpAr7$ҋ:=}u4;*|0#FeU}s&lvqmku?סɢ{Y7͕E܎glT|{[]qCdZ8~=}Ȳ;ѝ1MZn ?#^W`ړU;P};'iyzLRYEמ 讇w}`X6R/-$*WY&ntSaYݐ|v:OČwY(vJvj2,|xR&O3 /vWYa uׂCn*Fh߄ix|x+M˙g & ~>?}:$I+O CȢ{ +D_#UՈGy#wۿ[4'%dƿOpj㪩 hN읲DV衚֯&oF_NqCnrcniר)e_4sOCUS#QVkl⃐Gb3@kr+5S8(hU]uDATry_%1hW[#~V&+g,)1=ʆ)n[\:fu)z~Uw7g[q{`I{cOggS C4&*AS>5ۃ֞ &CLQ3ӫH` BE:G)2awk G@ 4y |t6Qz62W›꼄6]fZj8Z_+4KqoHɒ{R;ZqkKDžTirFK .ݵ AQ_\FМS)R '̕i;Mך; 4&Lc92ujc)T~++{IK$r힤;E%pn_ѡZΑ_ّ̄EWHٜ 34FdQ3jV&Z>_"BNj~Lj6GYY:pޜ3@fKkNEdORU,ևpwFˍ{:Qk*E2/d$+P8JUbʷ6:usJJAKG%[Zu qArs%̜P5*4InљҷIʱQ jCs7E&zF|\Ja G)`emKϭ\fcW74{#Jy~uS>'6q%MߞGOu.Oq yWgj(VWl_opO6VoGjT/n=r^ܪ {[汘E ,Jw!PLIe#skŔvn`hZ蝏a%Bt *%jpxr{ j6b*27qv3莘CZf .nNf56/CC?&֦`1/i+[&B]*eM#q]s7Sr%*nwvtaZ}ɀ?߄'iu+ .` >eXn5O0!~_ڄ1hw/z7g*G߬Ȱ'e驿;1T7ƎnGS zWڛ/爋ՐT@3ߓR6)嵤ߝ0"L=y?`O|,g*\Sƨs=?:V!# p80!eUm m6z>G7Lxkv~ Rvhmc" 7IH.RUNHjg73?ьmF~;J[gq U KIE\^5;:U1kPq0o4`dx[7K~uo2(R*{=cEtR+ʑ%Z^(E\2ǚ)U JST(wS3>\jQ2)sW1LuKT+Rgxwj?Z[1UNn!!cZ4C I:z^`=@ص 0D0EZ*s}}HGxAsf\Coq>O@4RXXޡz:j;Up]iN <]X1ErH¬/Mf="ywvO')ZgLaKXtN'gE$k1iV2>:TqTzu# r$͜řW h3ȋЏ'u!,=j0ujdhAME@f՘Q؃: [O?}]ϩYl 9hH2ML-C*0l(Av!^'H z}OUeiHh]5< 93a\HsKъ7pw|2g݀/]`I9kY^FKR1U_p/^MO)u0|RnCoˑ3p!qkk}as}n:ڂ9Wm4Qhxv`HW1~_r0IH?oAYU06Lr?,o5 ;ͫŮj pִNz-OZ!-+UYF}Q6%~ yMoJJdAmsv/:V[L&pInj?Nكgc0^u;{ߧ][ݽ8dW:(}IK`%O1Xױn'f=:=UXB2`~@_n֫p5_ X>o/Wz!XU[ >]5xukzLf0bI ˇ-Zwkvd2ŕGJ Gݱ{ȽjjV>)g!%ڳ")?#{C 9}uf:ui2iΙyR3#H5d}2D}y05N2'Q4s!_N5ufD1K'w*OStvYB ΋#C{/$Y밢:)uԲ{>i? ۧg<2UN/&̧AsESa3zjwNh{!Bm*P_Ճ m*͔98SBqP#aPr*G5rJy8}TcNh"qĆ D,} =Iь)d+iO `\> Jr|(nK׻BFCæA9v=P92'lfY0p=($i͓-S$?zVuWk珇Ԋ1l˪jT?̟J,*ٜ<AcTN-Eݞ"H}tqN ު7?!9_8_]KKeIgq=tl1nA)^d| ^"nzI ؽ3iOס;w[}IND+ r3Ӊ:+zv]"=&{ vickO9X/XF,VaTN2(L?8T_5 A|'4}-G.:ϧd~g^kQT"sC>l^I%qcAK&:;z^{0P%ְu[]:L(+*7I?h||e:4+܌%&q÷CJb"ͧSTVvvcFS7~aky4xؼ/V~:4ϣJu<!/$Zz{׭dvZ\s;tbXLSiʒzO,'ɧNv֬r 2,[K!s)-ig:>{L\}`#~$c̪5٥=J`Κ2JNyļ5k'peH45ddQ|KA> voZ:<:ȮS@|f׮Wt=ԼA>+,-C)NtTȂ8˺W=>מRRkV5s%,|ҁ(^1/ٻVZ_(dRITięj&~:'7IgݔMϦ {ov#]3%r5$1QT#5bQ[Qj45!祻STtl>$Ȣ5 (b~yRYP/SѝL/-7wL]I,Bi=O(w">S>i_E,(e"@9 oΖ5Kkۥ\hYdp|!4OQrfZUAUR7}ѹS"NBԑpί~Kٍ.W'sb*ͻ|oOe ݝ(]%]ie"J})A@Mhsh-9hug U7aW7Aw̓ (,N6DkF k_o̾//m5Yean|Z]\ayt$7#][)OqA嬗|V? ˨7e2sKaW~ t^ÏRmLTcudq{!}?7]8{m&Xf9о{zEZq %sFA2pyuR}XPsRbQ;.=1ml6('fO*E]?bVj3-֭wHVgPc0:=u.߹?[(fmgl "^θd/W#qkL }m:h{qR|εPϛr_\EzFDub)FCqo%HV]`|GLky__rwk%0F_8]+zp$Ay6.}yA'5eZa63映kWHZ[Hl=Z7rB|{Wǫ1;}h3?׶3 B{tRk9 Ӂ+dOggS C4&>5;:;AX@ liu o$ dCF|32F I!{wƧF΂YGG]:'t@x9N]j.2w̻BO9sF|2ܑ}ԭǗqĞFS4R BYGwTqh +J31ug}\sVf)HaqƱbQ^ܘ1Ss.sGU3D~gqEnyY?nD- ZU1wZvg= = t*t6Q&(NZkpvT{ LU*hkVRYLy!_E9 !j^-Pš>ݵOf怩$ԏtMu&:i-Uϝ)*9 @Vw*M5#$h|t1#GN'Ш!A΢Hreɭ2D,l3:#Qɯ>7F`|@pJKl2!&ah{CDS>OrA `g6G(w&,sVilB/39籥*++k/.͙ttO͔)&>#BWǫM|ˣe?C\i֠#>m^яṳnB?W_dU?>wgY}{]mYoxXIMT:RMr\BE{&=\VWXØDO&95eG`RV_`?Wg0  UVej4F- (c|wɠ٩>cbUܛ&§<=`1"U~[. m7Y^L^][t/BYu\ J-ɦCq&wEbYهcu@|{6׳bMtrlןrG5R>)]=X^Ah$saqŷmVEqZgVn ^5۪NLiBXc*GGudA}J7#qI8Ac*sdK$jwjtdH(FAO@B"PfJNvp;DkkRxsNWܞ qՓYHohZuE*CUשr4^'fZ[$W2t2G|2{W)hI[UCdd=8;i}t1DWGsYSr4dv c`%͠LUhgsGS:ا_$PK&KG*5a *JR5(G˲}y:WOU+NhL7@h֑w|FWwbD+c85JKI'3*!?FNtǗPMrԩiî1cƿ "PwE΀.![$n+1y< 3![~=ٷ` 9$ GKۍ(ƞ]rK{ߎ. z;^*KuZ2CK=®0«?p֘g(f_BC7LޤWٍ$>f ܅O |,O)aEeD0sL?/1Mn!|DruNv&*-M?|q_?~gseq2ݤbN Ǚ%zh-TK޾kG5D$i1nאr֌%᠟>;)Ys~8=Qf_T30y< $AVk?Oz|HtU?Y\e eO9٥i4QFGN^%.ry5G.ʓ}q.ʲu8nbk=E3[7k]| Ĉaϝ!~5\eJoF4`a AG֯TRK9WQUdMmsRgg ϩ[hV.~ b kVi1-nTwT*CP)2ykw3qktߏ9fJfmڭe_٩#BUrN{ARk@ΐ5d˛jnyGsHˉKYOθӻpJh PjBD٢DPCi()+1LY9.1f4 B$=]ݵ+H'j&Ku"$Z5J$8Pk?ȓaICI ]E@Wmij*Y+󜋡8M=zzj\JNA|"`!@jtA\iCH4DuH_.#&8--\!lG٘L|J 5dH3Hgh뷀kIiJ6}87 n>^AKbTq'y =èd6 \ǐ{2ގTIUyR&U2ܗcV fخh 筻j^q<^zo-o~wPO"QJٽ:S\ L,0(Z^|3RjpGL#^3=ẳ1Lh(ֶb.T[61PvmDXo \* r^e%3&{䐆"?ic~Buh㸐-gtom_hēsu}FngguTA$x!Qoi/r' ˫|_y}NqhpΑ+1թ,n" 5jm]EOSL'*~ii&m~ftRDgR~[KXpׄbqᖌ|^W'F?U,Ǜ:8l=ϻXdq?ZХTqJ ٟbL_WgxP|uDi9@b]Q:^o77 ynrf٬? ~?cj۱c5(9\5iЁ|AծRhzdwMZ8 uf)~&8 "ܟ^"єS$XT;ˣ·÷auYę I@iYֆU?3%D8*"BHsnH%"-MB"CC~M{d}l'+s)C?4&?/guKک]kc""in:WH81!҇h|SGƊSv̐@wU2zvf="4;'A!FDDJ&gE㐣D-fX ziI,KՉ鹃+lU'`zmlg?5V5 F"tP}(;@Y9Bt%dM>hDzݱ+f hD8dg23]]>.zlAȱ +Nz !,Mۓ~/) ^YP#T67I_@TĿ;ח!BRLuLåjtR ^N|&X\E8O9-ϣQq}ZX=66=Rl»W'Hk OrZ<)݋z?gzltȴ!Թ+2tBl$Q-5^^WI@j1(+P[Q7{vl_\[@0+/+Nd^&H->a~?}|UDϬ<ǣIϚOǏ]2f?T|,kbrvv)~Ά/ lFԌm.ytzsG5=9EQ.== |n4߲s;_ X= |MjgzT彼? oI5wiK.jˆu'ms:}T or/x;6V!vqf}ؐ(P/@OggS C4&-S5(T#WS_u)ڬe:*׺:?|IRchA[+wGS*d;%v0cB? |dPHIu'S8"t^><5Ի'hfFyi>$`x6[5gaH%gr jb/_!|` Œ\H]!R1y|a۞ڙg?v\TxIM/  g2wI[5̔4N}XGAyٮ RJQ{xYewT,ݛO=JA㸙dV$?Z%8e1>u~;:)̻2OঙYj4zY5?k/l@J<,,ǧcEP5kE'7qks c~5}2_Ki}rcP/Hg>xF5W 킕{G*L'?%O>bOš8;+=O3}EEܮIK,e9z{ 73Lwxڕï!C?%pgl1T aҥ*.g=u&]>`k;tF:8` cۮQӟBѓL?Pmv8ƞR+X7XνuU./HfYrzZya ?˶F]<[eVM@SѸ~&z'Ujz6ϭ9~q(Vd? $V$ZK!j#k=ea 8]2?m&LĊ6OpdcuC̞KLl=t]/*|>5; `].h8Tto3OX hBGNZ3) X/X[DJ4x^# |_JDʙh]knv3-Tn|#{䜜**LE^@ϯmW׵fu8ԑaj]~hA٬TBH6MNZwj 4dR$Z!54Q<%UԵERoDW#RiWMƍd~C;tR rOLF]k,TҽpP5P>*?9tm*H}hkBֹ;Թɹ\OΚK촸N$+S3jtR!zObV͞΅[dQ$IrBw;:9RJP"#>:/rģwΊ,P9 >2o?/wsdr?]@i$&5ۥY$1eAkv oDնa"P!!?jpA=JhW|'{J7FDj~kF<ȚWr0HOU)֘⹃DjQXC5w6:wJwܨvG:WB*EHPV.F1zJ@XRqvz!R#Z9~ Yqh8E t\Zʛfyחv9r!*TÑ2IF79׋NO nFQ@\_ޤ2wqwj785`s#_td]SjҲG3H}56|ECO+:Uq; ɮd RIcv҈409A ;:ܳ} _3FU*;ٍ+t+SӉY4USCSmH{תXN[(n(ݏKOg'|BN&3[ [~Apo @ېM r+k> pŎ id=n#ln7%o>g Q)713kjEXSn(HB N=dsJQY:DHZ]߭d_Jm1/)-8 4TR?CD7&V[j}kI&rݘ\N#\X%依.b.3dR"ݻmě~Mba9T;lPٻڛ~<8X~]+$DӝjxHh/b%;5$i,5[ͷfKj0لO/ 耧F]fs5:Vr90R,xG%_it^(+NʧVE&2obl`i /$~+{QIE@fbVO==mv̳Xڶ٧8F E+oE_biKOgβ||[1ScqtH+xL4I[X/^U+ܒؚ1Ѱ455j5\ eIS#lqb0Kp<$6_$b{BRStܽ@vrKʲסK\/q䭻iN3#c>5r4'oB9M2O1\ث]Y7beա"IKf֜٧+'ӌL QoL\%zXT qJkҤ:dzQ"BHFQk+-]~>;5kWzʔUNTZ95Oj.TUbddTٛazl9>ib=_'V戤]kQRGHc&9nHmd&3i5D 2DՀ QwTdcgm$QmCL_1%6'LⷠSNM]oo K~4 sA`Db'`6t|+>yqղ/F&%,u^l7( /-pn-Z>&gʸקUJzﻋrfoXߘ\|~8,_|NcSv#1:cK}W"lqMc7}Yn4?U)g0ʋM2䤘X+ߎ%_hpI'T%+nihd޽ ik[{VK2'Ef+\8IqUCrC*m/hG_'PRF§Ȫ6 _Dثi?lܫr`BUkVCKMrD.yMSMB5pFRZ/|'E EԦ.U4ez*9* }(F܎avsI_plf`m쌔SQMa+OggS C4&0 4;2݂Pi[=A $` JNaz,ԔzdkspFcscDvYM5zR#rI^ROU*B#LFBp6+˳燑NU5SEuGY+ T$l ѕiGک'I:UΓGNa6<2D<^#ayfF,5g ?jٵeZeW)Q묵kmN3Y_$3q0&sfKJݵ5ZYdtN8j"){N*-SQIU'fķDKCnW:u?AR8j@rmcY'.eR%6y2s^@Cijd'o Bcrb y?(~?uU4&5Oa88UGP8%C+4gdV.oFTpm 6)nB$PY"ԴƞM <& 3Y7CjhsIwߗr~ s4 l~J?l +:m+Ro&vÍkՠ`RK0mxo Gjttu>SMk X" *b\W]4qvRPaW D1K?Qso9kx\wyhjw/M0H̙! nΟ6-V3ud_w?]ii [C|_=;OzOMf;#sLzWH+oheRFosx:]+{kڼ&+&꼊ꪪswO[.z:- G, qxg=KBݳ#[y7,DVks'սbgu;WϿi2>x3ecAB(&r9ֶX^?8<- ~)HÊɎ٢ |<iCJGdp}k͡0H4aMݶM"cbwiy8mꥊ]qPiܲ3^~k>osJ^55K5i>%aaPpDG#NS ՖC5@Pj5ڵ浵=(y+UȘde̜h<(Sy@$]=LD|@Y* ;)z RKWJqM`̄D1AvpVǼr~GX}#_J,^rk752Q3&2I9)kЋZaߣ8Dy쯫Ssz3Ď5dN^KǓ 8@_5zH՗ d-P%C83T|N$G$*4..kQAۆ8+:0&-X&fG%q' †ރa>a~O%E#Qc[ͤ5F8O+Uf=x<R~PKG7 sn\fc.'5I_?D5B~kiy2=ت%^l9~}nዘ^Rܟbkdrl1+<)IpuiSL3)^PkYG²{'2*BuuY6Y^) FJgP⦶.R '#KQ?{/$6"!- u~Y: zk{1@HJOB_Q"C5@@ocWzk®p= N=oNFGTA-(p y#oOC,9Uj%\m?Wa> FqdrևZS>6zنo@0l˃qI9/>87O)Q1E6Dҧ)it\ԉMJ_=E}ح&4"?YH#kjF-PW 8ޛ_S-tbqʾ#b {ýˡ*-/};o Dаm\ģwȕ|4;^5۪5 P+>@&ڕ k_/gNu}Xd*d%{S@&}sYᭇtj3q~,ف2MYz,e-^K Aj P4U2娻vkq5O} FjUɹ*Nί}8QГ,I%7*{GQ'NNQ|sJvLz S%Y<˻z<ܨhTΥifB剨5Rr=R|(8c%zWuF+/3ݕHs/2S.hIq &uNocr=SA-$5k ڵДY ;Qs֨^dE#6 Riz [~;~|$0 XQgMx6\^ _c5 Q] =LZ# +-*fj0í +k^#9OGLљ~څ{[کh;EQ9zXjⰑ=筙1[FjT`{"⿮o5l^.~:x!qR-?ŜTiqi w x2JK^}/$V];[FPCFǓ0(h;y~Vm^PkΊA暹5Y>wHڮq5wrXI 9^>="Mr{={9r>#_ ǥ5 8GQIVS. ׆1ZqGe]g9ɤ 3V@~,n8̓Y=r!`t8r}mspS< ~mq-{"Y?WV0cłP$n9E#D}<>7/o+ǴTMXm07 < f|8%7]O 4Y#$6{>.٥K{V$=3jJw=T#e }gֹ௪ҩ k]W%Q% :'&2H;Ry?&248癎!Z`T֚=!ujU= Y G]+^YD!^ͬ@ W=K 5ȩ{V"jVmt%dɺzz^H]4R#ɃF[ΒP/cH=W)eSjze)·Q \k%]ȩ@Hfr?>jqH&DsCO i(q֪rԉKD- Jln!t[BLaj;!sZ2)G7e ;q}뻔QjVz'OB?UӋ̞$P2i;*WsDhrvut%Ǎ~ͤf;u{+ wU@cRXA]Im?y"AC|麲'Ni?!{8Ǒae?`3%wg =ˡvTBG~VIBdOXMwASzcL<=h]WL'yZw2kK?@/82U Pe~-9-k RU]lvǿ* ĕ1 s񒂊iF~s< &3 c*8ys4rS_.Wh6ƽ!J82Hy银q#o={gC, 1U7Dn=L5׮jJI{p Us8^{nTw;۔ W=2^#E7gpCѭ g?{QpYf$<^.>«wG%?j]3B:́`F.;?Ń>w+Y_e䡏0GKnUl XyYN9شҲwϫB>gm4Vng?&}eWPlX~OggS& C4&@ޖ4(%G4; LwT#I\OzUq-*rn}Dd|t8q0vxׅZ*!Gܤc"#5fqn:Ea|*o7{&F^L<=qʻzޜ5y Ε;Khvsk?ڋd8."Ⱦ::R 줆LIAW?"Y&NypZtSҽk 5Vzw#sF:j $F_`hT#Y*AҵЬ8MN{rǡk6Ut4JQN P)u} 9]G{HXũ?MAT":Ϛ DupD'IO(DXNųKP %qW$LTAE$f=Ao VsfWF'("HOw"`U1ϪIƹ]'\ho=Og㞏z]ojVcP ̾w?D}Btp#L6GO샦DEްҠ4oP_zq ԑM.|^4^'W_̍1gPYEPڶUsKF|3K}u6U*CۈQ.CW3_}X&7Mwl"V<:0'B[S{#~Vpné.;][{QEޟu=+wv7zhd݃f\R9tr9Ӧ].6V[kCzޭǫM_9ٝ3vGE)uTuS]gf*]kyZWPjj9ddصxJpjzDN*"G|%'VD iuC&$LOCgjsٽXѢ!vBj*kp2NR$e*]IDk;^jthYt4At~SՐD)riߩQVH z*CH:{b˃/fN.yET>Dy cW@ y%AtooS$'),v^ā)6NCI.^O649a\Ƹ{T%\t\ۺ&hs;o- 8`bg^]{XЁ&!-16af1_ J'C.C<=U}C$Y?.O$BZfT'OzoһU8϶ Er]*{h,rZ/<$Gpɠ;;fۥ˽E?剬zI"M yܿfu"ԯy<V.jan3Ny,3ixt}_16Nb|wfYx߅ƋeETU5ө QrfZչur;'?='|L1y, 5^ [AۈBo[͚}fJӺxœ?)!=꡽̝p:: ߾Ugo_S+Lˤ7lm;Ec:rnv[.>ǸnN5m; sebmWE6][bMf$nU<[RDs -&D}p֣dصe^? BCjjs >554qkDPAԣ4:EDR]: &Q>MQAQySW"%e-Zދ)Ϛ܊pZRfewh$'}zL녶ZuoBŭtݽO"!yjOu^?LGJH2FvQעɕ)꽉%D=WȘ =23 ɤJ2 YTo9v氛YOz#Fdi>\  CDbPD!Yq>HC_5y>ƸIvϞ-6j fh?Dcɋ>+h\ϛ,~FɃ9k=t`0<Ԟ7' ݻOB3>"wo."a \/39_jM;wEJ/ԵWk{wc&*'j]wvB䓥={s(5Gc:mySLs}sťer:_I;AFvs9J4/?7TsfhmRf=e2< i\n;Ѥ? yϷ#Cbƫ:NzPIYmE~bXoe׼}%nq/d&Eqjp/5Xr,ZToǝV>1|NhΟ i{Uv[m=jra^e+8ﭯ eO^2?L::gm :gfO}6_J/nޯ}W_Nt|1tj$}C\KHCl:.J_/ p5;0'g0h1\hv7_^ғT$ )d#mh3 \]3jS{#NqjDdh*! y'~W{ԩO^ٱzVC+_$Wոb]S2eY~$jwm !G>'-qC˒4Eq))E6%b*}0q -!$, FS6 o6 24;̩G ^~cY>{9uwA\9r}6r5|F/Xvz2Gy̍02=ɍ0t}/,4/Qr֠ۯ:سiDSyC,88왪MEn[9-}K{օ'xULӤ:n۰~|mkD&};T"A,zbτܸk8Nm[zBqP/S/>fMg_At.q=TY+ܝ]%qw,qNώι+ϨxHgmWi/Њx6C@Qkϝmf t}N _&:֦̗x5o~پw!yn@Rrr5S\@܄e͝MzGW01x0ݤ^כ$\+KƼɛ$ShFPKrצ/Mh:j/Yo*/Q +.8Ur95:Z%]k:}IEIc,9m2}?RNF5LOp7.?J<)g`=u齄{ A|Nmۅj@zU~{Cj@63Q<D^Q\rKK{םޯYZ> K?TemU({}CjgV?n}9uyp<OHܕROL~DuVJeztzm1a ;uǪ>7Ѧ dv7wIyDVߞi{z:>?ze9% -/X=7 NSH`ڛSo<7~Z{Fٴq:BnF6Z壎_اoV4ph1OV5*HunIL^XK-qnuh տ*ΜgϬSAW]xgG>|]?y1w)KaP qCijCm@Ii8ΗP4[Ֆ4`nT(|dԧd~ޮ\kNwxuG[R܇cJqO(SҴ}?A\0d8/G*|tGBwor+e*yda~>eTˠ{L>hY]?a~+GhE $ʠ[Aa\nDCåB>X6G޵L,~$BdW$:ᯧϓDى^`74nU_ Io}O|lwv{2R\/gB/-TkMy{NB,lkRTҾwn2 KN%WRh۳j ^NVu cyV޼rV;+a`0>Zy|7O@,b&f7L{zϺ:ᷓ_|00{18P툜Q-qn(XrhȩppS!|H*wԍ*'Djl ,7->]ݭk)jw,.N:"ii+6'M~(dPqc}?9-Y}wRHvR9Am#pٳd|bixݑz59;٣iR*EM4; FQ ϶ lܬHE5ЭQRIF=Mh6'2bA:Pkk}]sqZE$Rȹe"\yM:)Ȑ%KĜ)z5;jtkٝ)3BJv+!لDIZDtMeЛ]vFH3j{ݏD/3N45Ti1WfOjR$B+wtW7s%{4Kd¼߅=kMՁ9uR)Zleo/u+>Hmq3wY#*RZ[Tjr hjFU*Cs(k:U|V@Mr"Cr|5Ct*-fj7\9:9Os %*n#KwQ* M:tR~FqD<U*Qq@SD?~5e1_ќ `aH#W.#̹PBR/ե՘Dχ| }n#ݭN;#p7Vɽ4DGJ*9o/QI_24^u[u{xa'،?_nϗyЛ+OeVi6kWj}2fz` Tי#G0,ȒƋ}-R&"}G=ZUi$GPPK7hW)x7[q!_] Ξ붗۱ɽSzw{a/d\s =ɤkF >j\2.Կ0N-^B6пO1 oe7hޟ;aeэة^C*Q{z]fl3z{P~3{gs]{JT-h9| o18l?k(nwi55v3Zm34;!XSl,'068 GM# dБT*˒ܛOm% &!;,~ݖ=kVT1ؿ_] ;uQ Թ!'jƝhp\9{qTѨ5r zߕ:xZv3G؇EGQk"۩ҚӏFSj!SYzA,Bnƙyvh=lVPiVpfNԞ9BԉDR[~Ǘ>tISa4.=j7PȆ)gqZdEAYۙA=4AkmB  zfę*KQFl<"շc=Բo[)^ut4@*oE@ٝ)8'iJjLC t #cvOw8(؎n K{:YGR 4(@2$nH_R[s~uY|e5uX3 >$ݥB^k&ÃZ;PMAce/<^OitG$UϿ2[cazfZԿE.u&5yo^=ytz}>=]Y-יقFΈ>6_JkfaNA 2" Rԧ!5ᵾ+z\a]y_Kz#APC˼1qu5\ |Ɇ42|(,@Jlh"k~#&Ouo_C&4/3G| ;3.95/ 3Z,/Ǫ|5z6:dGr*[ӐW}:sn&#v(6@FeA~khJo ܝPˮylbyIM yLq˖; seva4kX/c;EH.f%VU4_”Lݑ,i.Z#p"f~k<1i,?KQHhIEFoc@鯹 ^]S:IhG~GՑV=.ObÙQIyg8*TnJu.)ksg* YEzo9Mԏ>ji*k^iM:d P4=9*U5#HJk4$t.&2 uTb:GEޜAN"Wq~LsҚ?w\+nlzX4-DHM>UZ>ɽڵkO3u`j'cGɂ잟b̌t!jf;$|89X 5fQVE~^f'gvikD|Z 'É| "wEZt:D '2t.3=3sO޲_[<H|_B|(5\P,X8lKoz~Zursock$_%ɾ.l{|~?Ɲ?搳PHz@V3O.cj`='k.zψ )vv Cb"w 4U'Wt0&,Y6=@Շ:BGGW/T9?B\` ޷g RŮ6y:xV'M';4ޓ.6WٯS6~IJ=@[>#Y^=E+Ԙ7Gf㉪-bcCĺ=n8mTOѢ.s^Cz:/9 8+}ҎKE_,)AN7 e/yU֐ޚq窏wKu616"':(P%0nĒa*.r!$`ɧ sZ}yGob6) < &^55K[&f"R0{Pk:T]NQy?8z@sNB c9r7r/ Q%1~чUT)Jz9"DI%!sA ·CS嘥޻kLEDUeHϑԮ.pduUȖ*JKtWC[䬭qB3̺-GvkF {HG?J*]#; w4ZGϴ"/ِJJ$Sk.M:QPZ#G@8dCNfj%!?Gyln_r|9r 9IDL~ܽ|s#\]r1^|HÃmSM2 f8-5؜V,8f7}Zzɽ2Ddю2WWu u^OLm<obJn\_i?I G֣5,c>wU>'/key#n-)sBSҭ5 <*A:A<Ҟ+*斞Hhei',8?ɻ ȭf:-'T{U"{]Lw<89}tFA?{5_GNW_ӌ!6P^hf:jʦ KȚ$Cq0Ma}y?|KgR(gn H!|9>ݑ(K+c߂(m${da:MMa'- }{:eaqE͝!}+uau}K@7d  ^=Bt:ML;( $}Lf'^qX8}z?F?{:ىc%36%H(p>SeNs۩|JRU%ECY_-} ө0`ISdrKcp''Nbŀ~+n[U5<mGѷC$2_\ HCP'(Sow(]և7m1exL+.>2yo[\Eñn}ޞ,wvК5#_/N*,-ԯ*XLΦ5ۆ!yi  干%=DkWH,'TodѽJjF=gG}̵; #&ԉT 6R( HalfcȐGIc(a+b_ġsD$n*&W9荚qZ>*5"BhnsJ`t)V1{b3H<Р'BL|g_PK~:+hs+3~ 4. "y9x=iL~lr|`K'ښ0:aqa7|Zw8\qc9Ǩ}w]VyqƤ偻Y64X;}9#濑)+0+i@-/GFL?{|g(\/Gcިkݦ@wMUa.)̫~0ː*gԎoPWPbצƕ*ߓr1( +d.ŧ;Ev sNJI36zP8|nC0?z\)j"\|zyuba=~(+^fJZTB`6I:W8~4R_K7V"'{ 1pvsڔ4"=goͺ[`ڿ^y46xGg*M{{g*9Tt:? Lmژ}%jKJLTG-]] VkV3Q;~+s_r|Uu5<{Zdfye= 1&w^%9q-emntR3 5Y:^5!f0DYE $`~X2LJ!]!hmD?-:eK_|yA vb.$)!_Iu%#ul*r"=5#%@ákB!`@S>PЀ `)@pSFQ]PnMgAĥcpY.TϘFQ&䚾뭺kpNZXO 1Sy06^s;2W/> ~C3<ѽN]|K6{Ɵ(۝kjj q!{f!rִ=Lj.Am#[*V}Sʣ3IoUmeSֺyJY}v Hz#7BwYt Ɣ&}R .ӂQFS6c}o1rÔO_`Z]ȆI.{^b/"A,q{§S=y(~=O|K|;`/kI9nMM/"!C&>xF*TkT=v7dNi}1LvnB*ͫ:VCCqjQ0ȊOkVrE q-f| 1AD*[tʔ3/e]oMx6@+{sBLԸ7< 燋p`k=`w?]WK--V+^gi|B+,NRmWQU~ԟlm7ý6`u$POggSZI C4&WK?>e.(ݲITs'azRL[2k׼,p\u?+wڵ)c)E4}hGFvm'ciDFFƧz tݯs]uɠ8ݡk=RTT0 3~뜵kا922Ik"jƮ]kP[_nFuGu͡vjG窨Y|z<͑kWѮ}z)VP sCW)#܎_˳麮K@h>>t<%E׮qd+ڎϕUpi=|ڵk׮ :Fa随ܮ^zqm}M[i|^A{(/Q!###c]%kHN}Mdw1c mnHTxwaTz_T!D}k~0kXA}$fF /&.eG;`uI]|ykMä(^ʐ+T y/Zv"AW7 Xڽ[ǠU^ẾjhWњ$;]-4<>:??ZDDŽְX)*P٭]3R_|5G-+o$_I͞F{؟nvul+Q{[`/cO`ї;[4COj !Gcbs`>:UW|a#jB{VS:7OBXow:j*k+qLCPweVTΜvI:CVtIs{y6Q|?3V%t`Wݺ+H==)&K=rpzlD@v,ޤ3V(bEġΪyH<9!N!T=s*IM;aS̴|GHa FNoP5id)!hL\hx.)H%SqSv) content-hub-0.1+16.04.20160309/tests/peers/CMakeLists.txt0000644000015600001650000000137712670026423023177 0ustar pbuserpbgroup00000000000000# Copyright © 2014 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine add_subdirectory(exporter) add_subdirectory(importer) add_subdirectory(sharer) add_subdirectory(data) content-hub-0.1+16.04.20160309/tests/peers/exporter/0000755000015600001650000000000012670026644022304 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/tests/peers/exporter/autoexporter.cpp0000644000015600001650000000675312670026423025557 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2014 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "autoexporter.h" AutoExporter::AutoExporter() { auto hub = cuc::Hub::Client::instance(); hub->register_import_export_handler(this); } void AutoExporter::setUrl(QString url) { qDebug() << Q_FUNC_INFO << url; m_url = url; } void AutoExporter::handle_import(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void AutoExporter::handle_export(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO; if (transfer == nullptr) { qDebug() << Q_FUNC_INFO << "Transfer null"; return; } qDebug() << Q_FUNC_INFO << transfer->contentType(); QVector items; if (m_url.isEmpty()) { if (transfer->contentType() == cuc::Type::Known::contacts().id()) { items << cuc::Item(QUrl("file:///usr/share/content-hub/testability/data/Joker.vcf")); if (transfer->selectionType() == cuc::Transfer::SelectionType::multiple) { items << cuc::Item(QUrl("file:///usr/share/content-hub/testability/data/Stark,_Tony.vcf")); } } else if (transfer->contentType() == cuc::Type::Known::music().id()) { items << cuc::Item(QUrl("file:///usr/share/content-hub/testability/data/Music Ringtone.ogg")); if (transfer->selectionType() == cuc::Transfer::SelectionType::multiple) { items << cuc::Item(QUrl("file:///usr/share/content-hub/testability/data/Stark,_Tony.vcf")); } } else { items << cuc::Item(QUrl("file:///usr/share/content-hub/testability/data/webbrowser-app.png")); if (transfer->selectionType() == cuc::Transfer::SelectionType::multiple) { items << cuc::Item(QUrl("file:///usr/share/content-hub/testability/data/clock.png")); } } } else { items << cuc::Item(QUrl(m_url)); } transfer->charge(items); connect(transfer, SIGNAL(stateChanged()), this, SLOT(stateChanged())); qDebug() << Q_FUNC_INFO << "Items:" << items.count(); Q_FOREACH(cuc::Item item, items) { qDebug() << Q_FUNC_INFO << "URL:" << item.url(); qDebug() << Q_FUNC_INFO << "Name:" << item.name(); qDebug() << Q_FUNC_INFO << "Text:" << item.text(); qDebug() << Q_FUNC_INFO << "StreamType:" << item.streamType(); } } void AutoExporter::handle_share(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void AutoExporter::stateChanged() { qDebug() << Q_FUNC_INFO; cuc::Transfer *transfer = static_cast(sender()); qDebug() << Q_FUNC_INFO << "STATE:" << transfer->state(); if (transfer->state() == cuc::Transfer::aborted) QCoreApplication::instance()->exit(1); if (transfer->state() == cuc::Transfer::collected) QCoreApplication::instance()->exit(0); } content-hub-0.1+16.04.20160309/tests/peers/exporter/content-hub-test-exporter.json0000644000015600001650000000012212670026423030236 0ustar pbuserpbgroup00000000000000{ "source": [ "pictures", "contacts", "music" ] } content-hub-0.1+16.04.20160309/tests/peers/exporter/autoexporter.h0000644000015600001650000000247612670026423025222 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2014 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef AUTOEXPORTER_H #define AUTOEXPORTER_H #include #include #include #include #include namespace cuc = com::ubuntu::content; class AutoExporter : public cuc::ImportExportHandler { Q_OBJECT public: AutoExporter(); public Q_SLOTS: Q_INVOKABLE void handle_import(cuc::Transfer*); Q_INVOKABLE void handle_export(cuc::Transfer*); Q_INVOKABLE void handle_share(cuc::Transfer*); Q_INVOKABLE void stateChanged(); void setUrl(QString); private: QString m_url; }; #endif // AUTOEXPORTER_H content-hub-0.1+16.04.20160309/tests/peers/exporter/content-hub-test-exporter.desktop0000644000015600001650000000026012670026423030741 0ustar pbuserpbgroup00000000000000[Desktop Entry] Name=Auto Exporter Comment=Test Auto Exporter Exec=content-hub-test-exporter Icon=content-hub-test-exporter Terminal=false Type=Application X-Ubuntu-Touch=true content-hub-0.1+16.04.20160309/tests/peers/exporter/content-hub-test-exporter.png0000644000015600001650000003311612670026423030062 0ustar pbuserpbgroup00000000000000PNG  IHDRxbKGDHu pHYs  tIME 6tEXtCommentCreated with GIMPW IDATxwT/ma 6WcDwhF`bK'*+(;Ξٝ~{=sۊ}*        @@@@@@@@         @ќTAf]K%lS *({H߁#4BkMYB69K~NGPA @W=pķ5`^?d!/"x~I     #X ìܧ۶U9;0 `/m>Ar\vo@vdw( u(jWnbkZʅ 5OVs]FUt~]DK}ڵTZ@莎T')*m۵"!w5>~Sa*4T;Ne6->WQˮ**-+/F֘8*O*:4Dt_hYU)א<[$ȪEƏ)g4p'3$ Գe&)b33۹NrZיSҠ+˻w#'n7C_~V6J&w| x{kʎϙS_k$ \ͮl^yJ7VH9$w á첇5/ U0zfo}.k_uQ836= t:E%奇O# 0[2ow~ zyG;r+\p=@TB1@Kf]|063aGA}n }rfpwmN~{8ct`=}syFMLqx|?L |v> _jp{Sj~Ѵ9.WaJ/}Pŗ:B}ۚSZ~Ww۫s"MQ΁'IVoj{/Z{Uzk1{1PowKcm˖>;umjuYSξ? jUW )\>+G`x8Jnۇ=T˳&Y+0tuK=%jiTfWVnjS ^[%g>0aۼ~@O Xh/۫k&S_! sڜ>1v&' e:*rz9]/6aݗdWYbt?'-go+ZV)h=sC;7 ]AO|2+WUWIU1\%rdbvAKUǗ/PlJ鹙*>톔2FoyA/?VۛWۿ_02epr yFm-rG9s Z_yDy!Wqm7z[FoSWx|EV|Y"IV{V%ٽ~|}Y{gY>D~r"WJtSavjbW ׯ+{,KUQpRw8NW;=@\e*q^w^ThG_xSl.v YO =x<{5UЙ[èzJι#囲$_p˖SDKQ?nw8yS.˲ZE[ƯYxS:ڔ%+.9zFn+=lS'HluU ͎&@EBxj~iV ]|Ж'wu[|ᱨ>NѺw⣎ cw?Q^8еz=%wB&.=0U켞 8'6i%ښӦ-$$_-o7͟`EB7WmsQJ&nmg6 -YȪ /Lᥟ)KVgx$m5)XW7WxoÔ5OQ;.T(=:K=Ka[]1ZArdEyy|yrb* 4O@Op{,/gq?9QȞ+{VYyy|9]ܒlJDJAYm͊լz"k(<%:Z\u&d{yFN\**=#/ 7 lBJeu)VV ٰJ_(dffrWU^!g JɑW${v9ښۻ9]9ݒW"RQVsbuYj)n"f>|Srr\=p\Y:PΜ$ْ?ؖk˲]L/?V77c;5?[NΜ_喲$I߭HH)8ozVugFaCdwr\n99RY4r(v"Tx~e,.;bDdZeCT+/ZANYkHZjo;#K3Iޱܕcey'݌h ;+g埼noJaY‹?T9O]%MYqSnONQo?{/ksdæҀoU:XmHNNNߐgh#E6Һ3~%73{ɿ䛸9\Wgdzh䟼<_Q[w붣5=j} )NpU?i'!S`SB>׆w'gv*ce~x*%[xM=$3w|6\"K?Ѷ"WW)b]Ttm][ϼT^z@@oc⪹evceLRQ)+!{+2R^Q5LM>ylNs==.މo;bB֛L7=E{E|EE֯PW-3׈:+ΐdWs1*/RQWU٬WztwE\4% ^$7kޟmbY2}']{x{cc˜o&9w=\%<]^?J7' \WnHJ.X^T_ImUzCswT| ٝsnTh@@2BA5wm̜;o{HX57"EBvwqkmU1Jv 8*݃@ 3Q-e/( y7̺NU8?#w(ۯ?+#/J._}ۚݰ/z9*zQ_gnl퟼nNP;F9vӮ|pԙ# HeeC@Us4YsӠCNU2>9rl3XٝYϿ;e&臭ɸzor>o{VLB:N_*+Tt,e ~oEW/ѿ?B3qZpMS Otpڍ[o^9O+ЧKh L] ;)ݥX;3IyGglߛ^x@OLmzEׯP~U4jkR"R"#P~C>A;n{7  9wr JZk /Jt(HϖBa埴|얒l}K7MU 5O5KݰR]s%m:IDATހl^,9r_͟rRFޅŀ2Dw-Va/,Ӏ?mt΅V{2AW.sbѴn[ɞC{ar:E9Uo=]s6sՠYmsUc7*^]~P{gzCOJξXuSR9i|4K%g7vm;c gcMNg5Vs*A9;v/ G.vhiP7;zLSzCG:Z^Fhe+k=`ce7O Q[A@fj{I͝U?RūVs2]0\nK*`|۴m R@@|E6L'sj3eT8{yYQs{;hzEW~z^hZs6r"dD[jo?Seuv#U_nlWd圓=`baU̍ F[+4mpmϊTs4%mTud I ; .cSm-6Xoi 5̺Vs| >7בgJu~ն$)l0l8KVX ( ,: bQysoΝo΢W՚k6V:@ڊYiT][TsiFרdVYm/4lsҍsNXZh ohǟR}4[]4ձ yܶl  6IXSrCK#ethk6w^_h@{7m >%c󎘠Nr;ung.sm* N7 T]>xمӮw'v{`soܔ4\K%=$GYwH8ϘL>Pfp[p2_*g#S gNʮzB_gl0ug F@@MW[)A,Gvk@N՛on[V{ d.נ*״X $3{O5Vw35^tw&@Cɖ+hOfwNOb VsWn}`` dͮKߐivϔl0'Gx*ǚ uULc&>+7ry͒QxoSJn&\A"kv3_[=t_m0C8"ʲ|el&+3ң2FEgI|<J@Usw=,( U9wsUxҕF v!t||@TL (F5.?xޕ % \TpFl xF;IPe~d}OV}m6v&J@q}K7"eIڻ3_J.y ױ]~=!)SU<>1.ˊW'ݮK{]yf?}NEh@] Ux4ȼ7}7:L#)b!oRܗPY)![=V<ڙW#~4.3<_U} RT̏R5㕳 }ҠkWYxF 2"aθPuw%x:m0Śk wG GΒdS#+2QSvOc -_`̂/[v~:hݴ0/H{9,r6\Zg?E#UtR?g/W.JQzIoҞPc5}bklmJ~Y*8>q#WꆓUuVM3}\~Whڞ3 WjY)s.) X𥳐WH2Md یZ@-^_1{o8GÆQgnŪq֞:yW<5μTX%lS3jIdKW2NCuw=H[ddֵ3/-Y|HH-wh}U2X+V`f7y',gN~lXow=\{-ϘI)YnZ|J-/R)cf{I)*g;jn٦ c\}Fᅳqoz֋rB6y{k9K˒͗%/ %BJe5)aW(fB Wf]Fֽdv9TwgVrx|]㊬Z+l> ^ 9KYO|<^ܛȲEFdjkRV굊n\/^6_ @!@@ưػ(A5        @@@@@@@@@         @@@@@@@@@/~IENDB`content-hub-0.1+16.04.20160309/tests/peers/exporter/CMakeLists.txt0000644000015600001650000000300212670026423025032 0ustar pbuserpbgroup00000000000000# Copyright © 2014 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine include_directories(${CMAKE_CURRENT_BINARY_DIR}) add_executable( content-hub-test-exporter exporter.cpp autoexporter.cpp ) qt5_use_modules(content-hub-test-exporter Core Gui DBus) pkg_check_modules(APPARMOR REQUIRED libapparmor) set_target_properties( content-hub-test-exporter PROPERTIES AUTOMOC TRUE ) target_link_libraries( content-hub-test-exporter content-hub ${APPARMOR_LDFLAGS} ) install( TARGETS content-hub-test-exporter RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) install( FILES content-hub-test-exporter.json DESTINATION ${CMAKE_INSTALL_DATADIR}/content-hub/peers RENAME content-hub-test-exporter ) install( FILES content-hub-test-exporter.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications ) install( FILES content-hub-test-exporter.png DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/512x512/apps/ ) content-hub-0.1+16.04.20160309/tests/peers/exporter/exporter.cpp0000644000015600001650000000352412670026423024657 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2014 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include #include #include "autoexporter.h" namespace cuc = com::ubuntu::content; int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); if (qgetenv("APP_ID").isEmpty()) { qputenv("APP_ID", "content-hub-test-exporter"); } QString peerName, url, profile; if (a.arguments().size() > 1) peerName = a.arguments().at(1); if (a.arguments().size() > 2) url = a.arguments().at(2); if (a.arguments().size() > 3) profile = a.arguments().at(3); if (not profile.isEmpty()) { int ret = 2; ret = aa_change_profile(profile.toStdString().c_str()); if (ret != 0) return 1; } AutoExporter exporter; if (not url.isEmpty()) exporter.setUrl(url); if (!peerName.isEmpty()) { qDebug() << peerName; auto hub = cuc::Hub::Client::instance(); auto peer = cuc::Peer{peerName}; qDebug() << Q_FUNC_INFO << "PEER: " << peer.id(); auto transfer = hub->create_export_to_peer(peer); exporter.handle_export(transfer); } return a.exec(); } content-hub-0.1+16.04.20160309/tests/acceptance-tests/0000755000015600001650000000000012670026644022544 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/tests/acceptance-tests/good.json0000644000015600001650000000007612670026423024365 0ustar pbuserpbgroup00000000000000{ "source": [ "pictures", "music" ] } content-hub-0.1+16.04.20160309/tests/acceptance-tests/source_all.json0000644000015600001650000000005012670026423025555 0ustar pbuserpbgroup00000000000000{ "source": [ "all" ] } content-hub-0.1+16.04.20160309/tests/acceptance-tests/test_types.cpp0000644000015600001650000000306212670026423025447 0ustar pbuserpbgroup00000000000000/* * Copyright © 2015 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include namespace cuc = com::ubuntu::content; TEST(Types, id_documents) { EXPECT_EQ(cuc::Type::Known::documents().id(), "documents"); } TEST(Types, id_pictures) { EXPECT_EQ(cuc::Type::Known::pictures().id(), "pictures"); } TEST(Types, id_music) { EXPECT_EQ(cuc::Type::Known::music().id(), "music"); } TEST(Types, id_contacts) { EXPECT_EQ(cuc::Type::Known::contacts().id(), "contacts"); } TEST(Types, id_videos) { EXPECT_EQ(cuc::Type::Known::videos().id(), "videos"); } TEST(Types, id_links) { EXPECT_EQ(cuc::Type::Known::links().id(), "links"); } TEST(Types, id_ebooks) { EXPECT_EQ(cuc::Type::Known::ebooks().id(), "ebooks"); } TEST(Types, id_text) { EXPECT_EQ(cuc::Type::Known::text().id(), "text"); } TEST(Types, id_events) { EXPECT_EQ(cuc::Type::Known::events().id(), "events"); } content-hub-0.1+16.04.20160309/tests/acceptance-tests/bad.json0000644000015600001650000000007712670026423024164 0ustar pbuserpbgroup00000000000000{ "source": [ "pictures", "music", ] } content-hub-0.1+16.04.20160309/tests/acceptance-tests/app_hub_communication_transfer.cpp0000644000015600001650000002304612670026423031517 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include "app_manager_mock.h" #include "test_harness.h" #include "../cross_process_sync.h" #include "../fork_and_run.h" #include #include #include #include #include #include #include #include "com/ubuntu/content/detail/peer_registry.h" #include "com/ubuntu/content/detail/service.h" #include "com/ubuntu/content/serviceadaptor.h" #include #include #include #include #include #include #include #include namespace cua = com::ubuntu::ApplicationManager; namespace cuc = com::ubuntu::content; namespace cucd = com::ubuntu::content::detail; void PrintTo(const QString& s, ::std::ostream* os) { *os << std::string(qPrintable(s)); } namespace { QString service_name{"com.ubuntu.content.dbus.Service"}; struct MockedPeerRegistry : public cucd::PeerRegistry { MockedPeerRegistry() : cucd::PeerRegistry() { using namespace ::testing; ON_CALL(*this, default_source_for_type(_)).WillByDefault(Return(cuc::Peer::unknown())); ON_CALL(*this, install_default_source_for_type(_,_)).WillByDefault(Return(false)); ON_CALL(*this, install_source_for_type(_,_)).WillByDefault(Return(false)); } MOCK_METHOD1(default_source_for_type, cuc::Peer(cuc::Type t)); MOCK_METHOD1(enumerate_known_peers, void(const std::function&)); MOCK_METHOD2(enumerate_known_sources_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_destinations_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_shares_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(install_default_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_destination_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_share_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD1(remove_peer, bool(cuc::Peer)); MOCK_METHOD1(peer_is_legacy, bool(QString)); }; } TEST(Hub, transfer_creation_and_states_work) { using namespace ::testing; test::CrossProcessSync sync; auto parent = [&sync]() { int argc = 0; QCoreApplication app{argc, nullptr}; QString default_peer_id{"com.does.not.exist.anywhere.application"}; QDBusConnection connection = QDBusConnection::sessionBus(); auto mock = new ::testing::NiceMock{}; EXPECT_CALL(*mock, default_source_for_type(_)). Times(AtLeast(1)). WillRepeatedly(Return(cuc::Peer{default_peer_id})); QSharedPointer registry{mock}; auto app_manager = QSharedPointer(new MockedAppManager()); cucd::Service implementation(connection, registry, app_manager, &app); new ServiceAdaptor(std::addressof(implementation)); ASSERT_TRUE(connection.registerService(service_name)); ASSERT_TRUE(connection.registerObject("/", std::addressof(implementation))); sync.signal_ready(); app.exec(); connection.unregisterObject("/"); connection.unregisterService(service_name); }; auto child = [&sync]() { int argc = 0; QCoreApplication app(argc, nullptr); app.setApplicationName("com.some.test.app"); sync.wait_for_signal_ready(); test::TestHarness harness; harness.add_test_case([]() { QTemporaryDir store_dir; QVector source_items; source_items << cuc::Item(QUrl::fromLocalFile(QFileInfo("file1").absoluteFilePath())); source_items[0].setName("name1"); source_items << cuc::Item(QUrl::fromLocalFile(QFileInfo("file2").absoluteFilePath())); source_items[1].setName("name2"); source_items << cuc::Item(); source_items[2].setName("name3"); source_items[2].setText("data3"); QVector expected_items; expected_items << cuc::Item(QUrl("file://" + store_dir.path() + "/file1")); expected_items[0].setName("name1"); expected_items << cuc::Item(QUrl("file://" + store_dir.path() + "/file2")); expected_items[1].setName("name2"); expected_items << cuc::Item(); expected_items[2].setName("name3"); expected_items[2].setText("data3"); /** [Importing pictures] */ auto hub = cuc::Hub::Client::instance(); auto transfer = hub->create_import_from_peer( hub->default_source_for_type(cuc::Type::Known::pictures())); ASSERT_TRUE(transfer != nullptr); EXPECT_EQ(cuc::Transfer::created, transfer->state()); ASSERT_FALSE(hub->has_pending(transfer->destination())); EXPECT_TRUE(transfer->setSelectionType(cuc::Transfer::SelectionType::multiple)); ASSERT_EQ(cuc::Transfer::SelectionType::multiple, transfer->selectionType()); transfer->setStore(new cuc::Store{store_dir.path()}); EXPECT_TRUE(transfer->start()); EXPECT_EQ(cuc::Transfer::initiated, transfer->state()); ASSERT_TRUE(hub->has_pending(transfer->destination())); EXPECT_TRUE(transfer->setSelectionType(cuc::Transfer::SelectionType::single)); ASSERT_EQ(cuc::Transfer::SelectionType::multiple, transfer->selectionType()); EXPECT_TRUE(transfer->charge(source_items)); EXPECT_EQ(cuc::Transfer::charged, transfer->state()); EXPECT_EQ(expected_items, transfer->collect()); /** [Importing pictures] */ /** Test that the transfer aborts when destination file exists */ auto dupe_transfer = hub->create_import_from_peer( hub->default_source_for_type(cuc::Type::Known::pictures())); ASSERT_TRUE(dupe_transfer != nullptr); EXPECT_EQ(cuc::Transfer::created, dupe_transfer->state()); EXPECT_TRUE(dupe_transfer->setSelectionType(cuc::Transfer::SelectionType::multiple)); ASSERT_EQ(cuc::Transfer::SelectionType::multiple, dupe_transfer->selectionType()); dupe_transfer->setStore(new cuc::Store{store_dir.path()}); EXPECT_TRUE(dupe_transfer->start()); EXPECT_EQ(cuc::Transfer::initiated, dupe_transfer->state()); EXPECT_TRUE(dupe_transfer->charge(source_items)); EXPECT_EQ(cuc::Transfer::aborted, dupe_transfer->state()); /* end dest exists test */ /* Test that only a single transfer exists for the same peer */ auto single_transfer = hub->create_import_from_peer( hub->default_source_for_type(cuc::Type::Known::pictures())); ASSERT_TRUE(single_transfer != nullptr); EXPECT_EQ(cuc::Transfer::created, single_transfer->state()); EXPECT_TRUE(single_transfer->start()); EXPECT_EQ(cuc::Transfer::initiated, single_transfer->state()); auto second_transfer = hub->create_import_from_peer( hub->default_source_for_type(cuc::Type::Known::pictures())); ASSERT_TRUE(second_transfer != nullptr); EXPECT_EQ(cuc::Transfer::created, second_transfer->state()); /* Now that a second transfer was created, the previous * transfer should have been aborted */ EXPECT_EQ(cuc::Transfer::aborted, single_transfer->state()); /* end single transfer test */ /* Test create_import_from_peer_for_type */ auto type_transfer = hub->create_import_from_peer_for_type( hub->default_source_for_type(cuc::Type::Known::pictures()), cuc::Type::Known::pictures()); ASSERT_TRUE(type_transfer != nullptr); EXPECT_EQ(cuc::Transfer::created, type_transfer->state()); EXPECT_TRUE(transfer->setSelectionType(cuc::Transfer::SelectionType::multiple)); ASSERT_EQ(cuc::Transfer::SelectionType::multiple, transfer->selectionType()); EXPECT_TRUE(type_transfer->start()); EXPECT_EQ(cuc::Transfer::initiated, type_transfer->state()); ASSERT_EQ(cuc::Type::Known::pictures().id(), type_transfer->contentType()); EXPECT_TRUE(type_transfer->abort()); EXPECT_EQ(cuc::Transfer::aborted, type_transfer->state()); /* end create_import_from_peer_for_type test */ hub->quit(); }); EXPECT_EQ(0, QTest::qExec(std::addressof(harness))); }; EXPECT_EQ(EXIT_SUCCESS, test::fork_and_run(child, parent)); } content-hub-0.1+16.04.20160309/tests/acceptance-tests/app_manager_mock.h0000644000015600001650000000262012670026423026173 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "com/ubuntu/applicationmanager/application_manager.h" #include #include namespace cua = com::ubuntu::ApplicationManager; namespace { struct MockedAppManager : public cua::ApplicationManager { MockedAppManager() : cua::ApplicationManager() { using namespace ::testing; ON_CALL(*this, invoke_application(_,_)).WillByDefault(Return(true)); ON_CALL(*this, stop_application(_)).WillByDefault(Return(true)); ON_CALL(*this, is_application_started(_)).WillByDefault(Return(true)); } MOCK_METHOD2(invoke_application, bool(const std::string &, gchar ** uris)); MOCK_METHOD1(stop_application, bool(const std::string &)); MOCK_METHOD1(is_application_started, bool(const std::string &)); }; } content-hub-0.1+16.04.20160309/tests/acceptance-tests/test_utils.cpp0000644000015600001650000000311512670026423025442 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "com/ubuntu/content/utils.cpp" #include void PrintTo(const QString& s, ::std::ostream* os) { *os << std::string(qPrintable(s)); } QString persistent_path{"/tmp/.local/share/testing/Pictures"}; QString temp_path{"/tmp/.cache/testing/HubIncoming/1"}; TEST(Utils, is_persistent) { using namespace ::testing; EXPECT_TRUE(is_persistent(persistent_path)); EXPECT_FALSE(is_persistent(temp_path)); } TEST(Utils, purge_store_cache) { using namespace ::testing; QDir persistent_store(persistent_path); persistent_store.mkpath(persistent_store.absolutePath()); QDir temp_store(temp_path); temp_store.mkpath(temp_store.absolutePath()); EXPECT_TRUE(purge_store_cache(temp_store.absolutePath())); EXPECT_FALSE(temp_store.exists()); EXPECT_FALSE(purge_store_cache(persistent_store.absolutePath())); EXPECT_TRUE(persistent_store.exists()); } content-hub-0.1+16.04.20160309/tests/acceptance-tests/app_hub_communication_stores.cpp0000644000015600001650000001462712670026423031217 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include "app_manager_mock.h" #include "test_harness.h" #include "../cross_process_sync.h" #include "../fork_and_run.h" #include #include #include #include #include #include "com/ubuntu/content/detail/peer_registry.h" #include "com/ubuntu/content/detail/service.h" #include "com/ubuntu/content/serviceadaptor.h" #include #include #include #include #include #include #include namespace cua = com::ubuntu::ApplicationManager; namespace cuc = com::ubuntu::content; namespace cucd = com::ubuntu::content::detail; void PrintTo(const QString& s, ::std::ostream* os) { *os << std::string(qPrintable(s)); } namespace { QString service_name{"com.ubuntu.content.dbus.Service"}; struct MockedPeerRegistry : public cucd::PeerRegistry { MockedPeerRegistry() : cucd::PeerRegistry() { using namespace ::testing; ON_CALL(*this, default_source_for_type(_)).WillByDefault(Return(cuc::Peer::unknown())); ON_CALL(*this, install_default_source_for_type(_,_)).WillByDefault(Return(false)); ON_CALL(*this, install_source_for_type(_,_)).WillByDefault(Return(false)); } MOCK_METHOD1(default_source_for_type, cuc::Peer(cuc::Type t)); MOCK_METHOD1(enumerate_known_peers, void(const std::function&)); MOCK_METHOD2(enumerate_known_sources_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_destinations_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_shares_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(install_default_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_destination_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_share_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD1(remove_peer, bool(cuc::Peer)); MOCK_METHOD1(peer_is_legacy, bool(QString)); }; } TEST(Hub, stores_are_reported_correctly_to_clients) { test::CrossProcessSync sync; auto parent = [&sync]() { int argc = 0; QCoreApplication app{argc, nullptr}; QDBusConnection connection = QDBusConnection::sessionBus(); QSharedPointer registry{new MockedPeerRegistry{}}; auto app_manager = QSharedPointer(new MockedAppManager()); auto implementation = new cucd::Service(connection, registry, app_manager, &app); new ServiceAdaptor(implementation); ASSERT_TRUE(connection.registerService(service_name)); ASSERT_TRUE(connection.registerObject("/", implementation)); sync.signal_ready(); app.exec(); connection.unregisterObject("/"); connection.unregisterService(service_name); delete implementation; }; auto child = [&sync]() { sync.wait_for_signal_ready(); test::TestHarness harness; harness.add_test_case([]() { auto hub = cuc::Hub::Client::instance(); auto system_wide_pictures_store = hub->store_for_scope_and_type(cuc::Scope::system, cuc::Type::Known::pictures()); auto system_wide_music_store = hub->store_for_scope_and_type(cuc::Scope::system, cuc::Type::Known::music()); auto system_wide_documents_store = hub->store_for_scope_and_type(cuc::Scope::system, cuc::Type::Known::documents()); auto users_pictures_store = hub->store_for_scope_and_type(cuc::Scope::user, cuc::Type::Known::pictures()); auto users_music_store = hub->store_for_scope_and_type(cuc::Scope::user, cuc::Type::Known::music()); auto users_documents_store = hub->store_for_scope_and_type(cuc::Scope::user, cuc::Type::Known::documents()); auto apps_pictures_store = hub->store_for_scope_and_type(cuc::Scope::app, cuc::Type::Known::pictures()); auto apps_music_store = hub->store_for_scope_and_type(cuc::Scope::app, cuc::Type::Known::music()); auto apps_documents_store = hub->store_for_scope_and_type(cuc::Scope::app, cuc::Type::Known::documents()); EXPECT_EQ(system_wide_pictures_store->uri(), "/content/Pictures"); EXPECT_EQ(system_wide_music_store->uri(), "/content/Music"); EXPECT_EQ(system_wide_documents_store->uri(), "/content/Documents"); auto ups = QStandardPaths::writableLocation(QStandardPaths::PicturesLocation); auto ums = QStandardPaths::writableLocation(QStandardPaths::MusicLocation); auto uds = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation); EXPECT_EQ(users_pictures_store->uri(), ups); EXPECT_EQ(users_music_store->uri(), ums); EXPECT_EQ(users_documents_store->uri(), uds); auto aps = QStandardPaths::writableLocation(QStandardPaths::DataLocation) + "/Pictures"; auto ams = QStandardPaths::writableLocation(QStandardPaths::DataLocation) + "/Music"; auto ads = QStandardPaths::writableLocation(QStandardPaths::DataLocation) + "/Documents"; EXPECT_EQ(apps_pictures_store->uri(), aps); EXPECT_EQ(apps_music_store->uri(), ams); EXPECT_EQ(apps_documents_store->uri(), ads); hub->quit(); }); EXPECT_EQ(0, QTest::qExec(std::addressof(harness))); }; EXPECT_EQ(EXIT_SUCCESS, test::fork_and_run(child, parent)); } content-hub-0.1+16.04.20160309/tests/acceptance-tests/app_hub_communication_default_source.cpp0000644000015600001650000001125412670026423032675 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include "app_manager_mock.h" #include "test_harness.h" #include "../cross_process_sync.h" #include "../fork_and_run.h" #include #include #include #include #include #include "com/ubuntu/content/serviceadaptor.h" #include "com/ubuntu/content/detail/peer_registry.h" #include "com/ubuntu/content/detail/service.h" #include #include #include #include #include #include #include namespace cua = com::ubuntu::ApplicationManager; namespace cuc = com::ubuntu::content; namespace cucd = com::ubuntu::content::detail; void PrintTo(const QString& s, ::std::ostream* os) { *os << std::string(qPrintable(s)); } namespace { QString service_name{"com.ubuntu.content.dbus.Service"}; struct MockedPeerRegistry : public cucd::PeerRegistry { MockedPeerRegistry() : cucd::PeerRegistry() { using namespace ::testing; ON_CALL(*this, default_source_for_type(_)).WillByDefault(Return(cuc::Peer::unknown())); ON_CALL(*this, install_default_source_for_type(_,_)).WillByDefault(Return(false)); ON_CALL(*this, install_source_for_type(_,_)).WillByDefault(Return(false)); } MOCK_METHOD1(default_source_for_type, cuc::Peer(cuc::Type t)); MOCK_METHOD1(enumerate_known_peers, void(const std::function&)); MOCK_METHOD2(enumerate_known_sources_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_destinations_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_shares_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(install_default_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_destination_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_share_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD1(remove_peer, bool(cuc::Peer)); MOCK_METHOD1(peer_is_legacy, bool(QString)); }; } TEST(Hub, querying_default_peer_returns_correct_value) { using namespace ::testing; test::CrossProcessSync sync; QString default_peer_id{"com.does.not.exist.anywhere.application"}; auto parent = [&sync, default_peer_id]() { int argc = 0; QCoreApplication app{argc, nullptr}; QDBusConnection connection = QDBusConnection::sessionBus(); auto mock = new MockedPeerRegistry{}; EXPECT_CALL(*mock, default_source_for_type(_)). Times(Exactly(1)). WillRepeatedly(Return(cuc::Peer{default_peer_id})); QSharedPointer registry{mock}; auto app_manager = QSharedPointer(new MockedAppManager()); auto implementation = new cucd::Service(connection, registry, app_manager, &app); new ServiceAdaptor(implementation); ASSERT_TRUE(connection.registerService(service_name)); ASSERT_TRUE(connection.registerObject("/", implementation)); sync.signal_ready(); app.exec(); connection.unregisterObject("/"); connection.unregisterService(service_name); }; auto child = [&sync, default_peer_id]() { sync.wait_for_signal_ready(); int argc = 0; QCoreApplication app(argc, nullptr); auto hub = cuc::Hub::Client::instance(); test::TestHarness harness; harness.add_test_case([hub, default_peer_id]() { EXPECT_EQ(default_peer_id, hub->default_source_for_type(cuc::Type::Known::documents()).id()); }); EXPECT_EQ(0, QTest::qExec(std::addressof(harness))); hub->quit(); }; EXPECT_TRUE(test::fork_and_run(child, parent) != EXIT_FAILURE); } content-hub-0.1+16.04.20160309/tests/acceptance-tests/test_hook.cpp0000644000015600001650000000562512670026423025252 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include "com/ubuntu/content/detail/peer_registry.h" #include "com/ubuntu/content/service/hook.h" #include #include #include namespace cuc = com::ubuntu::content; void PrintTo(const QString& s, ::std::ostream* os) { *os << std::string(qPrintable(s)); } namespace { struct MockedRegistry : public cuc::detail::PeerRegistry { MockedRegistry() : PeerRegistry() { using namespace ::testing; ON_CALL(*this, default_source_for_type(_)).WillByDefault(Return(cuc::Peer::unknown())); ON_CALL(*this, install_default_source_for_type(_,_)).WillByDefault(Return(false)); ON_CALL(*this, install_source_for_type(_,_)).WillByDefault(Return(false)); ON_CALL(*this, remove_peer(_)).WillByDefault(Return(false)); } MOCK_METHOD1(default_source_for_type, cuc::Peer(cuc::Type t)); MOCK_METHOD1(enumerate_known_peers, void(const std::function&)); MOCK_METHOD2(enumerate_known_sources_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_destinations_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_shares_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(install_default_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_destination_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_share_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD1(remove_peer, bool(cuc::Peer)); MOCK_METHOD1(peer_is_legacy, bool(QString)); }; } TEST(Hook, parse_json) { using namespace ::testing; auto mock = new MockedRegistry{}; EXPECT_CALL(*mock, install_source_for_type(_,_)). Times(Exactly(3)). WillRepeatedly(Return(true)); QFileInfo f("good.json"); cucd::Hook *hook = new cucd::Hook(mock); EXPECT_TRUE(hook->add_peer(f)); f.setFile("bad.json"); EXPECT_FALSE(hook->add_peer(f)); f.setFile("source_all.json"); EXPECT_TRUE(hook->add_peer(f)); delete mock; } content-hub-0.1+16.04.20160309/tests/acceptance-tests/app_hub_communication_known_sources.cpp0000644000015600001650000001264412670026423032574 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include "app_manager_mock.h" #include "test_harness.h" #include "../cross_process_sync.h" #include "../fork_and_run.h" #include #include #include #include #include #include "com/ubuntu/content/detail/peer_registry.h" #include "com/ubuntu/content/detail/service.h" #include "com/ubuntu/content/serviceadaptor.h" #include #include #include #include #include #include #include namespace cua = com::ubuntu::ApplicationManager; namespace cuc = com::ubuntu::content; namespace cucd = com::ubuntu::content::detail; void PrintTo(const QString& s, ::std::ostream* os) { *os << std::string(qPrintable(s)); } namespace { QString service_name{"com.ubuntu.content.dbus.Service"}; struct MockedPeerRegistry : public cucd::PeerRegistry { MockedPeerRegistry() : cucd::PeerRegistry() { using namespace ::testing; ON_CALL(*this, default_source_for_type(_)).WillByDefault(Return(cuc::Peer::unknown())); ON_CALL(*this, install_default_source_for_type(_,_)).WillByDefault(Return(false)); ON_CALL(*this, install_source_for_type(_,_)).WillByDefault(Return(false)); } MOCK_METHOD1(default_source_for_type, cuc::Peer(cuc::Type t)); MOCK_METHOD1(enumerate_known_peers, void(const std::function&)); MOCK_METHOD2(enumerate_known_sources_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_destinations_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_shares_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(install_default_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_destination_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_share_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD1(remove_peer, bool(cuc::Peer)); MOCK_METHOD1(peer_is_legacy, bool(QString)); }; } TEST(Hub, querying_known_peers_returns_correct_value) { using namespace ::testing; test::CrossProcessSync sync; QVector default_peers; default_peers << cuc::Peer("com.does.not.exist.anywhere.application1"); default_peers << cuc::Peer("com.does.not.exist.anywhere.application2"); default_peers << cuc::Peer("com.does.not.exist.anywhere.application3"); auto parent = [&sync, default_peers]() { int argc = 0; QCoreApplication app{argc, nullptr}; QDBusConnection connection = QDBusConnection::sessionBus(); auto enumerate = [default_peers](cuc::Type, const std::function& f) { Q_FOREACH(const cuc::Peer& peer, default_peers) { f(peer); } }; auto mock = new MockedPeerRegistry{}; EXPECT_CALL(*mock, enumerate_known_sources_for_type(_, _)). Times(Exactly(1)). WillRepeatedly(Invoke(enumerate)); EXPECT_CALL(*mock, install_source_for_type(_, _)). Times(Exactly(1)). WillRepeatedly(Return(true)); ASSERT_TRUE(mock->install_source_for_type(cuc::Type::Known::documents(), cuc::Peer("com.does.not.exist.anywhere.application4"))); QSharedPointer registry{mock}; auto app_manager = QSharedPointer(new MockedAppManager()); auto implementation = new cucd::Service(connection, registry, app_manager, &app); new ServiceAdaptor(implementation); ASSERT_TRUE(connection.registerService(service_name)); ASSERT_TRUE(connection.registerObject("/", implementation)); sync.signal_ready(); app.exec(); connection.unregisterObject("/"); connection.unregisterService(service_name); }; auto child = [&sync, default_peers]() { sync.wait_for_signal_ready(); int argc = 0; QCoreApplication app(argc, nullptr); auto hub = cuc::Hub::Client::instance(); test::TestHarness harness; harness.add_test_case([hub, default_peers]() { auto peers = hub->known_sources_for_type(cuc::Type::Known::documents()); ASSERT_EQ(default_peers, peers); }); EXPECT_EQ(0, QTest::qExec(std::addressof(harness))); hub->quit(); }; EXPECT_TRUE(test::fork_and_run(child, parent) != EXIT_FAILURE); } content-hub-0.1+16.04.20160309/tests/acceptance-tests/CMakeLists.txt0000644000015600001650000000655312670026423025310 0ustar pbuserpbgroup00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss qt5_wrap_cpp(MOCS test_harness.h) add_executable( app_hub_communication_default_source app_hub_communication_default_source.cpp ${MOCS} ) add_executable( app_hub_communication_known_sources app_hub_communication_known_sources.cpp ${MOCS} ) add_executable( app_hub_communication_stores app_hub_communication_stores.cpp ${MOCS} ) add_executable( app_hub_communication_transfer app_hub_communication_transfer.cpp ${MOCS} ) add_executable( app_hub_communication_handler app_hub_communication_handler.cpp ${MOCS} transfer_files ) add_executable( test_utils test_utils.cpp ) add_executable( test_types test_types.cpp ) add_executable( test_hook test_hook.cpp ${MOCS} ${CMAKE_SOURCE_DIR}/src/com/ubuntu/content/service/hook.cpp ${CMAKE_SOURCE_DIR}/src/com/ubuntu/content/service/registry.cpp good.json bad.json source_all.json ) qt5_use_modules(app_hub_communication_default_source Core Gui DBus Test) qt5_use_modules(app_hub_communication_known_sources Core Gui DBus Test) qt5_use_modules(app_hub_communication_stores Core Gui DBus Test) qt5_use_modules(app_hub_communication_transfer Core Gui DBus Test) qt5_use_modules(app_hub_communication_handler Core Gui DBus Test) qt5_use_modules(test_utils Core Test) qt5_use_modules(test_hook Core Gui DBus Test) target_link_libraries(app_hub_communication_stores content-hub gmock gtest gtest_main) target_link_libraries(app_hub_communication_default_source content-hub gmock gtest gtest_main) target_link_libraries(app_hub_communication_known_sources content-hub gmock gtest gtest_main) target_link_libraries(app_hub_communication_stores content-hub gmock gtest gtest_main) target_link_libraries(app_hub_communication_transfer content-hub gmock gtest gtest_main) target_link_libraries(app_hub_communication_handler content-hub gmock gtest gtest_main) target_link_libraries(test_utils content-hub gmock gtest gtest_main) target_link_libraries(test_types content-hub gmock gtest gtest_main) target_link_libraries(test_hook content-hub gmock gtest gtest_main ${GSETTINGS_LDFLAGS}) add_test(app_hub_communication_default_source app_hub_communication_default_source) add_test(app_hub_communication_known_sources app_hub_communication_known_sources) add_test(app_hub_communication_stores app_hub_communication_stores) add_test(app_hub_communication_transfer app_hub_communication_transfer) add_test(app_hub_communication_handler app_hub_communication_handler) add_test(test_utils test_utils) add_test(test_types test_types) add_test(test_hook test_hook) set_target_properties( test_hook PROPERTIES AUTOMOC TRUE ) file(COPY good.json bad.json source_all.json DESTINATION .) add_custom_command( OUTPUT transfer_files COMMAND cmake -E touch file1 file2 file3 ) content-hub-0.1+16.04.20160309/tests/acceptance-tests/test_harness.h0000644000015600001650000000255312670026423025417 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef TEST_HARNESS_H_ #define TEST_HARNESS_H_ #include #include #include #include namespace test { class TestHarness : public QObject { Q_OBJECT public: TestHarness(QObject* parent = nullptr) : QObject(parent) { } virtual ~TestHarness() { } void add_test_case(const std::function& test_case) { known_test_cases.push_back(test_case); } private: std::list> known_test_cases; private Q_SLOTS: void run() { for(auto test_case : known_test_cases) { test_case(); } } }; } #endif // TEST_HARNESS_H_ content-hub-0.1+16.04.20160309/tests/acceptance-tests/app_hub_communication_handler.cpp0000644000015600001650000001314412670026423031306 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "app_manager_mock.h" #include "test_harness.h" #include "../cross_process_sync.h" #include "../fork_and_run.h" #include #include #include #include #include #include #include #include "com/ubuntu/content/utils.cpp" #include "com/ubuntu/content/detail/peer_registry.h" #include "com/ubuntu/content/detail/service.h" #include "com/ubuntu/content/serviceadaptor.h" #include #include #include #include #include #include #include namespace cua = com::ubuntu::ApplicationManager; namespace cuc = com::ubuntu::content; namespace cucd = com::ubuntu::content::detail; void PrintTo(const QString& s, ::std::ostream* os) { *os << std::string(qPrintable(s)); } namespace { QString service_name{"com.ubuntu.content.dbus.Service"}; struct MockedPeerRegistry : public cucd::PeerRegistry { MockedPeerRegistry() : cucd::PeerRegistry() { using namespace ::testing; } MOCK_METHOD1(default_source_for_type, cuc::Peer(cuc::Type t)); MOCK_METHOD1(enumerate_known_peers, void(const std::function&)); MOCK_METHOD2(enumerate_known_sources_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_destinations_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(enumerate_known_shares_for_type, void(cuc::Type, const std::function&)); MOCK_METHOD2(install_default_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_source_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_destination_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD2(install_share_for_type, bool(cuc::Type, cuc::Peer)); MOCK_METHOD1(remove_peer, bool(cuc::Peer)); MOCK_METHOD1(peer_is_legacy, bool(QString)); }; struct MockedHandler : public cuc::ImportExportHandler { MockedHandler() : cuc::ImportExportHandler() { using namespace ::testing; ON_CALL(*this, handle_import(_)).WillByDefault(Return()); ON_CALL(*this, handle_export(_)).WillByDefault(Return()); ON_CALL(*this, handle_share(_)).WillByDefault(Return()); } MOCK_METHOD1(handle_import, void(cuc::Transfer*)); MOCK_METHOD1(handle_export, void(cuc::Transfer*)); MOCK_METHOD1(handle_share, void(cuc::Transfer*)); }; } TEST(Handler, handler_on_bus) { using namespace ::testing; QString default_peer_id{"com.does.not.exist.anywhere.application"}; QString default_dest_peer_id{"com.also.does.not.exist.anywhere.application"}; test::CrossProcessSync sync; auto parent = [&sync, default_peer_id]() { int argc = 0; QCoreApplication app{argc, nullptr}; QDBusConnection connection = QDBusConnection::sessionBus(); QSharedPointer registry{new MockedPeerRegistry{}}; auto app_manager = QSharedPointer(new MockedAppManager()); auto implementation = new cucd::Service(connection, registry, app_manager, &app); new ServiceAdaptor(implementation); ASSERT_TRUE(connection.registerService(service_name)); ASSERT_TRUE(connection.registerObject("/", implementation)); sync.signal_ready(); app.exec(); connection.unregisterObject("/"); connection.unregisterService(service_name); delete implementation; }; auto child = [&sync, default_peer_id, default_dest_peer_id]() { sync.wait_for_signal_ready(); int argc = 0; QCoreApplication app(argc, nullptr); test::TestHarness harness; harness.add_test_case([default_peer_id, default_dest_peer_id]() { /* register handler on the service */ auto mock_handler = new MockedHandler{}; EXPECT_CALL(*mock_handler, handle_export(_)).Times(Exactly(1)); qputenv("APP_ID", default_peer_id.toLatin1()); auto hub = cuc::Hub::Client::instance(); hub->register_import_export_handler(mock_handler); hub->quit(); qputenv("APP_ID", default_dest_peer_id.toLatin1()); hub = cuc::Hub::Client::instance(); auto transfer = hub->create_import_from_peer(cuc::Peer(default_peer_id)); ASSERT_TRUE(transfer != nullptr); EXPECT_TRUE(transfer->start()); EXPECT_EQ(cuc::Transfer::in_progress, transfer->state()); EXPECT_EQ(cuc::Transfer::charged, transfer->state()); hub->quit(); delete mock_handler; }); EXPECT_EQ(0, QTest::qExec(std::addressof(harness))); }; EXPECT_TRUE(test::fork_and_run(child, parent) != EXIT_FAILURE); } content-hub-0.1+16.04.20160309/tests/fork_and_run.h0000644000015600001650000000261312670026423022133 0ustar pbuserpbgroup00000000000000/* * Copyright © 2012-2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef FORK_AND_RUN_H_ #define FORK_AND_RUN_H_ #include #include #include #include #include #include namespace test { bool is_child(pid_t pid) { return pid == 0; } int fork_and_run(std::function child, std::function parent) { auto pid = fork(); if (pid < 0) { throw std::runtime_error(std::string("Could not fork child: ") + std::strerror(errno)); } if (is_child(pid)) { child(); return EXIT_SUCCESS; } else { parent(); kill(pid, SIGKILL); return EXIT_SUCCESS; } return EXIT_FAILURE; } } #endif // FORK_AND_RUN_H_ content-hub-0.1+16.04.20160309/tests/cross_process_sync.h0000644000015600001650000000310312670026423023402 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef CROSS_PROCESS_SYNC_H_ #define CROSS_PROCESS_SYNC_H_ #include #include #include namespace test { struct CrossProcessSync { static const int read_fd = 0; static const int write_fd = 1; CrossProcessSync() { if (pipe(fds) < 0) throw std::runtime_error(strerror(errno)); } ~CrossProcessSync() noexcept { ::close(fds[0]); ::close(fds[1]); } void signal_ready() { int value = 42; if (!write(fds[write_fd], std::addressof(value), sizeof(value))) throw std::runtime_error(::strerror(errno)); } void wait_for_signal_ready() const { int value; if (!read(fds[read_fd], std::addressof(value), sizeof(value))) throw std::runtime_error(::strerror(errno)); } int fds[2]; }; } #endif // CROSS_PROCESS_SYNC_H_ content-hub-0.1+16.04.20160309/tests/qml-tests/0000755000015600001650000000000012670026644021247 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/tests/qml-tests/tst_QmlTests.cpp0000644000015600001650000000130412670026423024412 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include QUICK_TEST_MAIN(QmlTests) content-hub-0.1+16.04.20160309/tests/qml-tests/CMakeLists.txt0000644000015600001650000000323312670026423024003 0ustar pbuserpbgroup00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . set(TEST tst_QmlTests) add_executable(${TEST} tst_QmlTests.cpp) qt5_use_modules(${TEST} Core Qml Quick Test QuickTest) add_test(${TEST} ${CMAKE_CURRENT_BINARY_DIR}/${TEST}) set_tests_properties(${TEST} PROPERTIES ENVIRONMENT "QT_QPA_PLATFORM=minimal;QML2_IMPORT_PATH=${CMAKE_BINARY_DIR}/import;APP_ID=com.some.app.for.testing") # copy qml files under test to build dir set(out_qml_files) if(NOT ${CMAKE_CURRENT_BINARY_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}) # copy qml test files to build dir file(GLOB qmlTestFiles RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.qml) foreach(qmlTestFile ${qmlTestFiles}) add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${qmlTestFile} DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${qmlTestFile} COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/${qmlTestFile} ${CMAKE_CURRENT_BINARY_DIR}/${qmlTestFile}) endforeach(qmlTestFile) add_custom_target(copy_qml_test_files_to_build_dir DEPENDS ${qmlTestFiles}) add_dependencies(${TEST} copy_qml_test_files_to_build_dir) endif() content-hub-0.1+16.04.20160309/tests/qml-tests/tst_ContentHub.qml0000644000015600001650000000616012670026423024723 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ import QtQuick 2.0 import QtTest 1.0 import Ubuntu.Content 0.1 TestCase { name: "ContentHub" function test_default_import() { var transfer = sourcePeer.request(); verify(transfer !== null, "No transer Object returned") } function test_select_for_import() { var transfer = sourcePeer.request(); verify(transfer !== null, "No transer Object returned") } function test_export_request_pictures() { var filePath = "file:///foo/bar.png"; var transfer = destPeer.request(); transfer.items = [ resultComponent.createObject(test, {"url": filePath, "name": "test"}) ]; transfer.state = ContentTransfer.Charged; // This shouldn't be necessary, but without it we compare the results to fast ContentHub.exportRequested(transfer); compare(test.exportTransfer, transfer, "Transfer object not correcty set"); compare(test.exportTransfer.items[0].url, filePath, "Transfer url incorrect"); compare(test.exportTransfer.items[0].name, "test", "Transfer name incorrect"); } function test_export_request_text() { var transfer = textPeer.request(); transfer.items = [ resultComponent.createObject(test, {"url": "", "name": "test", "text": "some text"}) ]; transfer.state = ContentTransfer.Charged; // This shouldn't be necessary, but without it we compare the results to fast ContentHub.exportRequested(transfer); compare(test.exportTransfer, transfer, "Transfer object not correcty set"); compare(test.exportTransfer.items[0].text, "some text", "Transfer text incorrect"); } Component { id: resultComponent ContentItem {} } ContentPeer { id: textPeer handler: ContentHandler.Destination contentType: ContentType.Text appId: "com.some.dest" } ContentPeer { id: sourcePeer handler: ContentHandler.Source contentType: ContentType.Pictures } ContentPeer { id: destPeer handler: ContentHandler.Destination contentType: ContentType.Pictures appId: "com.some.dest" } Item { id: test property variant exportTransfer property int numImports: 0 Connections { target: ContentHub onExportRequested: { test.exportTransfer = transfer; } onFinishedImportsChanged: { test.numImports++; } } } } content-hub-0.1+16.04.20160309/tests/CMakeLists.txt0000644000015600001650000000263312670026423022055 0ustar pbuserpbgroup00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss # Build with system gmock and embedded gtest set (GMOCK_INCLUDE_DIR "/usr/include/gmock/include" CACHE PATH "gmock source include directory") set (GMOCK_SOURCE_DIR "/usr/src/gmock" CACHE PATH "gmock source directory") set (GTEST_INCLUDE_DIR "${GMOCK_SOURCE_DIR}/gtest/include" CACHE PATH "gtest source include directory") add_definitions(-DQT_NO_KEYWORDS) add_subdirectory(${GMOCK_SOURCE_DIR} "${CMAKE_CURRENT_BINARY_DIR}/gmock") include_directories ( ${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR}/src/com/ubuntu/content ${GIO_INCLUDE_DIRS} ${LIBERTINE_INCLUDE_DIRS} ${UBUNTU_LAUNCH_INCLUDE_DIRS} ${CMAKE_BINARY_DIR}/src ${GMOCK_INCLUDE_DIR} ${GTEST_INCLUDE_DIR} ) add_subdirectory(acceptance-tests) add_subdirectory(qml-tests) add_subdirectory(peers) content-hub-0.1+16.04.20160309/include/0000755000015600001650000000000012670026644017577 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/include/com/0000755000015600001650000000000012670026644020355 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/include/com/ubuntu/0000755000015600001650000000000012670026644021677 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/include/com/ubuntu/content/0000755000015600001650000000000012670026644023351 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/include/com/ubuntu/content/transfer.h0000644000015600001650000000713312670026423025345 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_UBUNTU_CONTENT_TRANSFER_H_ #define COM_UBUNTU_CONTENT_TRANSFER_H_ #include #include #include #include #include #include namespace com { namespace ubuntu { namespace content { namespace detail { class Handler; } } } } namespace com { namespace ubuntu { namespace content { class Item; class Transfer : public QObject { Q_OBJECT Q_ENUMS(State) Q_ENUMS(SelectionType) Q_ENUMS(Direction) Q_PROPERTY(int id READ id) Q_PROPERTY(State state READ state NOTIFY stateChanged) Q_PROPERTY(QVector items READ collect WRITE charge) Q_PROPERTY(Store store READ store NOTIFY storeChanged) Q_PROPERTY(SelectionType selectionType READ selectionType WRITE setSelectionType NOTIFY selectionTypeChanged) Q_PROPERTY(Direction direction READ direction) Q_PROPERTY(QString downloadId READ downloadId WRITE setDownloadId NOTIFY downloadIdChanged) Q_PROPERTY(QString contentType READ contentType) Q_PROPERTY(QString source READ source) Q_PROPERTY(QString destination READ destination) public: enum State { created, initiated, in_progress, charged, collected, aborted, finalized, downloading, downloaded }; enum SelectionType { single, multiple }; enum Direction { Import, Export, Share }; Transfer(const Transfer&) = delete; virtual ~Transfer(); Transfer& operator=(const Transfer&) = delete; Q_INVOKABLE virtual int id() const; Q_INVOKABLE virtual State state() const; Q_INVOKABLE virtual SelectionType selectionType() const; Q_INVOKABLE virtual Direction direction() const; Q_INVOKABLE virtual bool start(); Q_INVOKABLE virtual bool abort(); Q_INVOKABLE virtual bool finalize(); Q_INVOKABLE virtual bool charge(const QVector& items); Q_INVOKABLE virtual QVector collect(); Q_INVOKABLE virtual Store store() const; Q_INVOKABLE virtual bool setStore(const Store*); Q_INVOKABLE virtual bool setSelectionType(const SelectionType&); Q_INVOKABLE virtual QString downloadId() const; Q_INVOKABLE virtual bool setDownloadId(const QString); Q_INVOKABLE virtual bool download(); Q_INVOKABLE virtual QString contentType() const; Q_INVOKABLE virtual QString source() const; Q_INVOKABLE virtual QString destination() const; Q_SIGNAL void stateChanged(); Q_SIGNAL void storeChanged(); Q_SIGNAL void selectionTypeChanged(); Q_SIGNAL void downloadIdChanged(); private: struct Private; friend struct Private; friend class Hub; friend class com::ubuntu::content::detail::Handler; QSharedPointer d; Transfer(const QSharedPointer&, QObject* parent = nullptr); }; } } } #endif // COM_UBUNTU_CONTENT_TRANSFER_H_ content-hub-0.1+16.04.20160309/include/com/ubuntu/content/type.h0000644000015600001650000000370212670026423024500 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_UBUNTU_CONTENT_TYPE_H_ #define COM_UBUNTU_CONTENT_TYPE_H_ #include #include namespace com { namespace ubuntu { namespace content { namespace detail { class Service; class Hook; } class Type : public QObject { Q_OBJECT Q_PROPERTY(QString id READ id()) public: static const Type& unknown(); static const Type& all(); struct Known { static const Type& documents(); static const Type& pictures(); static const Type& music(); static const Type& contacts(); static const Type& videos(); static const Type& links(); static const Type& ebooks(); static const Type& text(); static const Type& events(); }; virtual ~Type(); Type(const Type&); Type& operator=(const Type&); bool operator==(const Type&) const; bool operator!=(const Type&) const; bool operator<(const Type&) const; Q_INVOKABLE virtual const QString& id() const; protected: friend struct Known; friend class detail::Service; friend class detail::Hook; explicit Type(const QString&, QObject* = nullptr); private: struct Private; QSharedPointer d; }; } } } #endif // COM_UBUNTU_CONTENT_TYPE_H_ content-hub-0.1+16.04.20160309/include/com/ubuntu/content/peer.h0000644000015600001650000000462312670026423024455 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_UBUNTU_CONTENT_PEER_H_ #define COM_UBUNTU_CONTENT_PEER_H_ #include #include #include namespace com { namespace ubuntu { namespace content { class Peer : public QObject { Q_OBJECT Q_PROPERTY(QString id READ id) Q_PROPERTY(QString name READ name WRITE setName) Q_PROPERTY(QString iconName READ iconName WRITE setIconName) Q_PROPERTY(bool isDefaultPeer READ isDefaultPeer) Q_PROPERTY(bool legacy READ legacy) public: static const Peer& unknown(); Peer(const QString& id = QString(), bool isDefaultPeer = false, bool legacy = false, QObject* parent = nullptr); Peer(const QString&, const QString&, QByteArray&, const QString&, bool, bool, QObject* parent = nullptr); Peer(const Peer& rhs); virtual ~Peer(); Peer& operator=(const Peer& rhs); bool operator==(const Peer& rhs) const; Q_INVOKABLE virtual const QString& id() const; Q_INVOKABLE virtual QString name() const; Q_INVOKABLE void setName(const QString&); Q_INVOKABLE virtual QByteArray iconData() const; Q_INVOKABLE void setIconData(const QByteArray&); Q_INVOKABLE virtual QString iconName() const; Q_INVOKABLE void setIconName(const QString&); Q_INVOKABLE virtual bool isDefaultPeer() const; Q_INVOKABLE virtual bool legacy() const; private: struct Private; QSharedPointer d; }; } } } Q_DECL_EXPORT QDBusArgument &operator<<(QDBusArgument &argument, const com::ubuntu::content::Peer &peer); Q_DECL_EXPORT const QDBusArgument &operator>>(const QDBusArgument &argument, com::ubuntu::content::Peer &peer); Q_DECLARE_METATYPE(com::ubuntu::content::Peer) #endif // COM_UBUNTU_CONTENT_PEER_H_ content-hub-0.1+16.04.20160309/include/com/ubuntu/content/store.h0000644000015600001650000000241112670026423024647 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_UBUNTU_CONTENT_STORE_H_ #define COM_UBUNTU_CONTENT_STORE_H_ #include #include namespace com { namespace ubuntu { namespace content { class Store : public QObject { Q_OBJECT public: Q_PROPERTY(QString uri READ uri) Store(const QString& uri, QObject* parent = nullptr); Store(const Store&); virtual ~Store(); Store& operator=(const Store&); Q_INVOKABLE virtual const QString& uri() const; protected: struct Private; QSharedPointer d; }; } } } #endif // COM_UBUNTU_CONTENT_STORE_H_ content-hub-0.1+16.04.20160309/include/com/ubuntu/content/item.h0000644000015600001650000000447412670026423024464 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_UBUNTU_CONTENT_ITEM_H_ #define COM_UBUNTU_CONTENT_ITEM_H_ #include #include #include #include namespace com { namespace ubuntu { namespace content { class Item : public QObject { Q_OBJECT Q_PROPERTY(QUrl url READ url() WRITE setUrl) Q_PROPERTY(QString name READ name WRITE setName) Q_PROPERTY(QString text READ text WRITE setText) Q_PROPERTY(QByteArray stream READ stream WRITE setStream) Q_PROPERTY(QString streamType READ streamType WRITE setStreamType) public: Item(const QUrl& = QUrl(), QObject* = nullptr); Item(const Item&); virtual ~Item(); Item& operator=(const Item&); bool operator==(const Item&) const; Q_INVOKABLE const QUrl& url() const; Q_INVOKABLE void setUrl(const QUrl &url) const; Q_INVOKABLE const QString& name() const; Q_INVOKABLE void setName(const QString &name) const; Q_INVOKABLE const QString text() const; Q_INVOKABLE void setText(const QString &text) const; Q_INVOKABLE const QByteArray& stream() const; Q_INVOKABLE void setStream(const QByteArray &stream) const; Q_INVOKABLE const QString& streamType() const; Q_INVOKABLE void setStreamType(const QString &type) const; private: struct Private; QSharedPointer d; }; } } } Q_DECL_EXPORT QDBusArgument &operator<<(QDBusArgument &argument, const com::ubuntu::content::Item &item); Q_DECL_EXPORT const QDBusArgument &operator>>(const QDBusArgument &argument, com::ubuntu::content::Item &item); Q_DECLARE_METATYPE(com::ubuntu::content::Item) #endif // COM_UBUNTU_CONTENT_ITEM_H_ content-hub-0.1+16.04.20160309/include/com/ubuntu/content/scope.h0000644000015600001650000000166212670026423024633 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_UBUNTU_CONTENT_SCOPE_H_ #define COM_UBUNTU_CONTENT_SCOPE_H_ #include namespace com { namespace ubuntu { namespace content { enum Scope { system, user, app }; } } } #endif // COM_UBUNTU_CONTENT_SCOPE_H_ content-hub-0.1+16.04.20160309/include/com/ubuntu/content/hub.h0000644000015600001650000000477712670026423024312 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_UBUNTU_CONTENT_HUB_H_ #define COM_UBUNTU_CONTENT_HUB_H_ #include #include #include #include #include namespace com { namespace ubuntu { namespace content { class ImportExportHandler; class Store; class Transfer; class Hub : public QObject { Q_OBJECT public: struct Client { static Hub* instance(); }; Hub(const Hub&) = delete; virtual ~Hub(); Hub& operator=(const Hub&) = delete; Q_INVOKABLE virtual void register_import_export_handler(ImportExportHandler* handler); Q_INVOKABLE virtual const Store* store_for_scope_and_type(Scope scope, Type type); Q_INVOKABLE virtual Peer default_source_for_type(Type type); Q_INVOKABLE virtual QVector known_sources_for_type(Type type); Q_INVOKABLE virtual QVector known_destinations_for_type(Type type); Q_INVOKABLE virtual QVector known_shares_for_type(Type type); Q_INVOKABLE virtual Transfer* create_import_from_peer(Peer peer); Q_INVOKABLE virtual Transfer* create_export_to_peer(Peer peer); Q_INVOKABLE virtual Transfer* create_share_to_peer(Peer peer); Q_INVOKABLE virtual void quit(); Q_INVOKABLE virtual Transfer* create_import_from_peer_for_type(Peer peer, Type type); Q_INVOKABLE virtual Transfer* create_export_to_peer_for_type(Peer peer, Type type); Q_INVOKABLE virtual Transfer* create_share_to_peer_for_type(Peer peer, Type type); Q_INVOKABLE virtual bool has_pending(QString peer_id); Q_INVOKABLE virtual Peer peer_for_app_id(QString app_id); protected: Hub(QObject* = nullptr); private: struct Private; QScopedPointer d; bool eventFilter(QObject *obj, QEvent *event); }; } } } #endif // COM_UBUNTU_CONTENT_HUB_H_ content-hub-0.1+16.04.20160309/include/com/ubuntu/content/import_export_handler.h0000644000015600001650000000266512670026423030136 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_UBUNTU_CONTENT_IMPORT_EXPORT_HANDLER_H_ #define COM_UBUNTU_CONTENT_IMPORT_EXPORT_HANDLER_H_ #include namespace com { namespace ubuntu { namespace content { class Transfer; class ImportExportHandler : public QObject { Q_OBJECT public: ImportExportHandler(const ImportExportHandler&) = delete; virtual ~ImportExportHandler() = default; ImportExportHandler& operator=(const ImportExportHandler&) = delete; Q_INVOKABLE virtual void handle_import(Transfer*) = 0; Q_INVOKABLE virtual void handle_export(Transfer*) = 0; Q_INVOKABLE virtual void handle_share(Transfer*) = 0; protected: ImportExportHandler(QObject* parent = nullptr); }; } } } #endif // COM_UBUNTU_CONTENT_IMPORT_EXPORT_HANDLER_H_ content-hub-0.1+16.04.20160309/src/0000755000015600001650000000000012670026644016743 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/src/CMakeLists.txt0000644000015600001650000000125612670026423021502 0ustar pbuserpbgroup00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss add_subdirectory(com)content-hub-0.1+16.04.20160309/src/com/0000755000015600001650000000000012670026644017521 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/src/com/ubuntu/0000755000015600001650000000000012670026644021043 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/src/com/ubuntu/content/0000755000015600001650000000000012670026644022515 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/src/com/ubuntu/content/service/0000755000015600001650000000000012670026644024155 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/src/com/ubuntu/content/service/main.cpp0000644000015600001650000000552712670026423025611 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include #include #include "detail/app_manager.h" #include "debug.h" #include "common.h" #include "registry.h" #include "detail/i18n.h" #include "detail/service.h" #include "detail/peer_registry.h" #include "serviceadaptor.h" namespace cuca = com::ubuntu::ApplicationManager; namespace cucd = com::ubuntu::content::detail; namespace cuc = com::ubuntu::content; namespace { void shutdown(int sig) { TRACE() << Q_FUNC_INFO << sig; QCoreApplication::instance()->quit(); } } int main(int argc, char** argv) { int ret = 0; QCoreApplication *app = new QCoreApplication(argc, argv); cucd::initTr(I18N_DOMAIN, NULL); /* read environment variables */ QProcessEnvironment environment = QProcessEnvironment::systemEnvironment(); if (environment.contains(QLatin1String("CONTENT_HUB_LOGGING_LEVEL"))) { bool isOk; int value = environment.value( QLatin1String("CONTENT_HUB_LOGGING_LEVEL")).toInt(&isOk); if (isOk) setLoggingLevel(value); } auto connection = QDBusConnection::sessionBus(); auto registry = QSharedPointer(new Registry()); auto app_manager = QSharedPointer(new cucd::AppManager()); auto server = new cucd::Service(connection, registry, app_manager, app->parent()); new ServiceAdaptor(server); if (not connection.registerService(HUB_SERVICE_NAME)) { qWarning() << "Failed to register" << HUB_SERVICE_NAME; ret = 1; } if (not connection.registerObject(HUB_SERVICE_PATH, server, QDBusConnection::ExportAdaptors)) { qWarning() << "Failed to register object on" << HUB_SERVICE_PATH; ret = 1; } std::signal(SIGTERM, shutdown); std::signal(SIGHUP, shutdown); std::signal(SIGKILL, shutdown); std::signal(SIGINT, shutdown); if (ret == 1) app->exit(ret); else ret = app->exec(); TRACE() << "Server exiting, cleaning up"; delete server; return ret; } content-hub-0.1+16.04.20160309/src/com/ubuntu/content/service/registry.h0000644000015600001650000000406312670026423026174 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef REGISTRY_H #define REGISTRY_H #include #include #include #include "detail/peer_registry.h" namespace cucd = com::ubuntu::content::detail; namespace cuc = com::ubuntu::content; class Registry : public cucd::PeerRegistry { public: Registry(); ~Registry(); cuc::Peer default_source_for_type(cuc::Type type); void enumerate_known_peers(const std::function& for_each); void enumerate_known_sources_for_type(cuc::Type type, const std::function& for_each); void enumerate_known_destinations_for_type(cuc::Type type, const std::function& for_each); void enumerate_known_shares_for_type(cuc::Type type, const std::function& for_each); bool install_default_source_for_type(cuc::Type type, cuc::Peer peer); bool install_source_for_type(cuc::Type type, cuc::Peer peer); bool install_destination_for_type(cuc::Type type, cuc::Peer peer); bool install_share_for_type(cuc::Type type, cuc::Peer peer); bool remove_peer(cuc::Peer peer); bool peer_is_legacy(QString type); private: QScopedPointer m_defaultSources; QScopedPointer m_sources; QScopedPointer m_dests; QScopedPointer m_shares; }; #endif // REGISTRY_H content-hub-0.1+16.04.20160309/src/com/ubuntu/content/service/com.ubuntu.content.hub.gschema.xml0000644000015600001650000000646212670026423032635 0ustar pbuserpbgroup00000000000000 ["com.ubuntu.gallery", "gallery", "current-user-version"] [] [] ["address-book-app", "", ""] ["com.ubuntu.gallery", "gallery", "current-user-version"] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] content-hub-0.1+16.04.20160309/src/com/ubuntu/content/service/content-hub-peer-hook-wrapper.in0000755000015600001650000000064412670026423032302 0ustar pbuserpbgroup00000000000000#!/bin/sh # PackageKit clears all environment variables, so we get the UID and then read # in $DBUS_SESSION_BUS_ADDRESS from /run/user/$UID/dbus-session USERID=`id -u` if test -z "$DBUS_SESSION_BUS_ADDRESS" ; then [ -e /run/user/$USERID/dbus-session ] && . /run/user/$USERID/dbus-session [ -n "$DBUS_SESSION_BUS_ADDRESS" ] && export DBUS_SESSION_BUS_ADDRESS fi @pkglibexecdir@/content-hub/content-hub-peer-hook content-hub-0.1+16.04.20160309/src/com/ubuntu/content/service/content-hub.hook.in0000644000015600001650000000022712670026423027666 0ustar pbuserpbgroup00000000000000Pattern: ${home}/.local/share/content-hub/${id} Exec: @pkglibexecdir@/content-hub/content-hub-peer-hook-wrapper User-Level: yes Hook-Name: content-hub content-hub-0.1+16.04.20160309/src/com/ubuntu/content/service/helper.cpp0000644000015600001650000000344212670026423026136 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include #include "hook.h" #include "debug.h" namespace cuc = com::ubuntu::content; int main(int argc, char** argv) { QCoreApplication app(argc, argv); TRACE() << Q_FUNC_INFO; if (app.arguments().count() > 1) { qWarning() << "Shouldn't have arguments"; return 1; } /* read environment variables */ QProcessEnvironment environment = QProcessEnvironment::systemEnvironment(); if (environment.contains(QLatin1String("CONTENT_HUB_LOGGING_LEVEL"))) { bool isOk; int value = environment.value( QLatin1String("CONTENT_HUB_LOGGING_LEVEL")).toInt(&isOk); if (isOk) setLoggingLevel(value); } QDir contentDir( QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + QString("/") + QString("content-hub")); if (!contentDir.exists()) { if (!contentDir.mkpath(contentDir.absolutePath())) return 0; } new cuc::detail::Hook(); app.exec(); /* We always want to return 0 */ return 0; } ././@LongLink0000000000000000000000000000014600000000000011216 Lustar 00000000000000content-hub-0.1+16.04.20160309/src/com/ubuntu/content/service/com.ubuntu.content.dbus.Service.servicecontent-hub-0.1+16.04.20160309/src/com/ubuntu/content/service/com.ubuntu.content.dbus.Service.servic0000644000015600001650000000012712670026423033470 0ustar pbuserpbgroup00000000000000[D-BUS Service] Name=com.ubuntu.content.dbus.Service Exec=/usr/bin/content-hub-service content-hub-0.1+16.04.20160309/src/com/ubuntu/content/service/xorg.png0000644000015600001650000001405212670026423025637 0ustar pbuserpbgroup00000000000000PNG  IHDR\rfbKGD pHYs B(xtIME bIDATxmhTiJ*Κ5(I NpHO A wuvq زf7q֎-a"NڍHӣ$~tbJ}g ˔缧 sʕ$D?hii9zfk`; }FD/755i@!Qw? ?.w}'n[+}nM?junoj`ݔK@_Y~˲'?fwFg=c|fOOq]~ohh2$aӟ{`Kh\reeY=Z$ׯ_/x陰4{f&ֆ>ĻKo.K4s sֈ>-/]JjjV^%|ͯ.Ք~!5֊>> hoo/үL3{5׌>^oFFF|v{<v$֥_VOOO5sy@G@wuuu]!K\G埘EiJ &֒>oeYH3M)} ~J޽G@] .hf9NX_'?k%ZPu MH%KheɉkM@.eY;hکM@ष%@ g2d';}}ʟx.g}69dFFF]D]###.hJX z6!֯_CvW=+"jfҏ>> /v/˥nafs=cʌGZOz_~K.LU}} Ä۰afV~|g1/K͌4p(I(.\Д~n~̙3G+^e^Y~ifb[%}yYoӦMYm)}yLHj \{J@0Ws =&D+q(~999ZPݥ\`0eBXBsϷsw"?Ų+&_ee^pw?݄;t>7HD.1_e `w>> rK,]ȼy4:֛>> r-귻^WVZ;YkoLӬ4}}@DD9_`"?666ڿgodÇo/}}@[5aw}>^Zsv˟+"&o۶Msΰ˟""&1}jɺD~v횤j֔>> r… &`=+J@%"bOx~)))ܗ&}}@HW۷k9.֒>>`󭩩܇YGol̷YҴ`RV>> Șooo,ZHSm`"Șui~V>> rEdīΝ;53J?76{i͵`+G@0u޼yS222x@F@`dٳgdlb"Șo Ruf"Șݻ52dV>>`=sZa.1VZ1+X%olw``@ 4_%+D@`d7 5C@F|EDݫf ~olܹsr֪>`{dggk۬ }}76;88(K.\*ք>> MI 6hփ>> r߿_sMY ol>`w̙3GkVSؘi6ր>>`,K6mڤye }@`jWDZHe }>˗%99Y~{,d }>o[[hݧ@ N&|dŊ1'S`jײ,ԼƛD8o6":yooB(**q{ohhД~1ք>`֭[m+ww̛7OSc }KxJN3„>>ȑ#5 Ɨ8466ֺg0>>u+pzzjkͨm۶i^F8;vLZd2>>ڵkuM KB@# .Ժ$pRRRy-{EBP}vk8sGAA777KZZy,e}#%%E+-Ҕ~9B`8q ߺu4ϻQ#;v;wj3J?B`Xf|>}Za}cѣ߼yS222; "իW3Ydy-)B`8~xXjQ"-[P޽[$3J>rJx+aommLX MWLJ~VP($ׯ6oBw^6PGqqLLLܹsr `#B sΕ߽{W6A IIIR__VAYt湫 B`8| ߆ 4{q  ,+~6p3 >|r +5F,NN޽{2g?sŋa"!!v +eYi& 6nƍ զʶl2+˗%99>hٳg˝;w&999#A@]Zs\rٰ򏍍Ɋ+2@@72RPUVV:m,>$$GJU^^.`0p!'~(>$ UXX(CCCaohh0)y[&4%n +ww̛7M@@➹kI{<YjU|5}[kg߾}/ZXnB*NYY o~XzrwT/_=ϗ766( qr#EȐ?x@b'H̓]$N +իWo~ gϞJm۶ӯV1JKK%رcq$V٨%/^,}}}av횤> k!==]nܸVYpa> E'O +x.?} \>*]^(oߞ V׮]+a審IR  ȓ'O,iii FSRR)@@ Qd'NT&>8Bi|ǎ[&C>cV׬Y#>/`||Ο 9eZo#.oߖYfbիWe E+ǏW>>sJ+[lׁ>>G++W# }}ѡ@@#)3}}YЧV-2! =zT4 3In޼Y4 .pĄhC@@^&5B9w\ /O4˜$b'dh ÇoߖT?}!9Š ,K єLO·|r1Un{~O#t999nc"Rs>"<Ғ~/^4U~KD*_p^BV<(y?}o H+d7n4)Ή+ʽfV-[&æ*"yK@ٳΝ;LD ^b\r\rYSH+}It^c]HBpT+D M\gV ehhؘ-oNVVܺu c3};%2;S! @VX1ߙ>> n82}uy*Xϗ~'$4h###CZZZ>K@h ũSbe̗>> !E@ٳ'|ZA(--@ c F-xb1_gaOOO7n/}}@2[3'O1_S ߵkW6zڵ299ocqC9/X@> f(Ӓ~ϗG%/}}Я%^c%@?~cֆmٲcff\R^c~51_P I1_&>q1_=zc֦l޼̯xX718K@`;6X</}}m0 sΕN/}}-,Dc񓒒c%@>|c֢WTTeY&c3O{2>>n{8Qi,rNN &|̗>>`F/8K@`wUkq<1_֢nܸш l̗>>آ˖-3"&''$/}}KGc!gϞ-mmm? '/}}Щ.K?0AD Qk}8ZV^^nD>> :Јx<78K@Lh,TVV(/|3x~~1_$Z_&>'̈5;I@ ƂؘcY`Dc!222޽{&1_hZO?{qLO]Zw}ħBnw1"FFF~Dg[xLLL^5,0qF&os̗>> :57Ĥ | ?7a~-v>> :nlݺu l}i;E@rAZ`vuuD@BC7"8K@,n?===O9K@0=W8|Dgօ>cgS%x x<߼y}N>~-m{[[[/'Тu8K@0=Ni]{g{{{{=]]]o٣uq?m~)В~^1+W+@@7i\Ǐʕ+IpCB?^o9K@0=pR"m/{{׳B:cۥ`O>y'}Z']xLNN};xqdS9R4i쫯.]je }@t#%+?wuÇko;ϝWRn5iIENDB`content-hub-0.1+16.04.20160309/src/com/ubuntu/content/service/hook.h0000644000015600001650000000241312670026423025261 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef HOOK_H #define HOOK_H #include #include #include #include "registry.h" namespace com { namespace ubuntu { namespace content { namespace detail { class Hook : public QObject { Q_OBJECT public: explicit Hook(QObject *parent = 0); Hook(com::ubuntu::content::detail::PeerRegistry *registry, QObject *parent = 0); ~Hook(); public Q_SLOTS: bool return_error(QString err = ""); void run(); bool add_peer(QFileInfo); private: com::ubuntu::content::detail::PeerRegistry* registry; }; } } } } #endif // HOOK_H content-hub-0.1+16.04.20160309/src/com/ubuntu/content/service/registry.cpp0000644000015600001650000003270612670026423026534 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "debug.h" #include "registry.h" #include "utils.cpp" #include #include #include #include #include #include // Begin anonymous namespace namespace { cuc::Type mime_to_wellknown_type (const char * type) { TRACE() << Q_FUNC_INFO << "TYPE:" << type; if (QString(type).contains("document")) return cuc::Type::Known::documents(); else if (g_str_has_prefix (type, "x-scheme-handler/http")) return cuc::Type::Known::links(); else if (g_str_has_prefix (type, "audio")) return cuc::Type::Known::music(); else if (g_str_has_prefix (type, "image")) return cuc::Type::Known::pictures(); else if (g_str_has_prefix (type, "video")) return cuc::Type::Known::videos(); return cuc::Type::unknown(); } QMap> libertine_apps() { TRACE() << Q_FUNC_INFO; QStringList containers; QStringList appIds; char * dir = nullptr; char * file = nullptr; bool ret; gchar ** raw_containers = libertine_list_containers(); for (int i = 0; raw_containers[i]; i++) { containers << raw_containers[i]; } g_strfreev(raw_containers); gchar ** app_ids = NULL; Q_FOREACH(QString container, containers) { gchar ** app_ids = libertine_list_apps_for_container(container.toStdString().c_str()); for (int i = 0; app_ids[i]; i++) { appIds << app_ids[i]; } } g_strfreev(app_ids); QMap> appMap; Q_FOREACH(QString app, appIds) { ret = ubuntu_app_launch_application_info(app.toStdString().c_str(), &dir, &file); if (ret) { GKeyFile *key_file = g_key_file_new(); GError *error = NULL; if (!g_key_file_load_from_file(key_file, g_strjoin("/", dir, file, NULL), G_KEY_FILE_NONE, &error)) { qWarning() << "ERROR:" <message; } else { /* FIXME: we should hide NoDisplay and honor ShownIn if (g_desktop_app_info_get_nodisplay (appInfo)) continue; if (not g_app_info_should_show (G_APP_INFO(appInfo))) continue; */ gchar ** types = g_key_file_get_locale_string_list(key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_MIME_TYPE, NULL, NULL, &error); if (types == NULL) continue; cuc::Type type = cuc::Type::unknown(); for (int i = 0; types[i]; i++) { type = mime_to_wellknown_type(types[i]); if (type != cuc::Type::unknown()) { QVector t; t << type.id(); if (not appMap.keys().contains(app)) { appMap.insert(app, t); } else if (not appMap.value(app).contains(type.id())){ t << appMap.value(app); appMap.insert(app, t); } } } } } } g_free(dir); g_free(file); return appMap; } QStringList libertine_app_ids(QString type) { TRACE() << Q_FUNC_INFO << "TYPE:" << type; QStringList results; auto appMap = libertine_apps(); Q_FOREACH (QString a, appMap.keys()) { if (appMap.value(a).contains(type) || type == "all") results << a; } return results; } } // End anonymous namespace Registry::Registry() : m_defaultSources(new QGSettings("com.ubuntu.content.hub.default", "/com/ubuntu/content/hub/peers/")), m_sources(new QGSettings("com.ubuntu.content.hub.source", "/com/ubuntu/content/hub/source/")), m_dests(new QGSettings("com.ubuntu.content.hub.destination", "/com/ubuntu/content/hub/destination/")), m_shares(new QGSettings("com.ubuntu.content.hub.share", "/com/ubuntu/content/hub/share/")) { /* ensure all default sources are registered as available sources */ QList types = known_types(); Q_FOREACH (cuc::Type type, types) { if (m_defaultSources->keys().contains(type.id())) { QVariant peer_v = m_defaultSources->get(type.id()); // If default isn't a StringList, attempt to reset if (peer_v.type() != QVariant::StringList) { TRACE() << Q_FUNC_INFO << "Default type for" << type.id() << "is incorrect, resetting"; m_defaultSources->reset(type.id()); // After reset, lets get a new QVariant peer_v = m_defaultSources->get(type.id()); } /* Only assume the default is correct if the type is a StringList * The reset above should have ensured it was reset, lets double * check anyway to prevent crashes */ if (peer_v.type() == QVariant::StringList) { QStringList as(peer_v.toStringList()); if (!as.isEmpty()) { std::string pkg = as[0].toStdString(); std::string app = as[1].toStdString(); std::string ver = as[2].toStdString(); cuc::Peer peer; if (app.empty() || ver.empty()) peer = QString::fromStdString(pkg); else peer = QString::fromLocal8Bit(ubuntu_app_launch_triplet_to_app_id(pkg.c_str(), app.c_str(), ver.c_str())); install_source_for_type(type, cuc::Peer{peer.id(), true}); } } } } } Registry::~Registry() { TRACE() << Q_FUNC_INFO; } cuc::Peer Registry::default_source_for_type(cuc::Type type) { TRACE() << Q_FUNC_INFO << type.id(); if (m_defaultSources->keys().contains(type.id())) { QVariant peer_v = m_defaultSources->get(type.id()); if (peer_v.type() != QVariant::StringList) return cuc::Peer(peer_v.toString()); QStringList as(peer_v.toStringList()); if (!as.isEmpty()) { std::string pkg = as[0].toStdString(); std::string app = as[1].toStdString(); std::string ver = as[2].toStdString(); if (app.empty() || ver.empty()) return cuc::Peer(QString::fromStdString(pkg)); return cuc::Peer(QString::fromLocal8Bit(ubuntu_app_launch_triplet_to_app_id(pkg.c_str(), app.c_str(), ver.c_str())), true); } } return cuc::Peer(); } void Registry::enumerate_known_peers(const std::function&for_each) { TRACE() << Q_FUNC_INFO; Q_FOREACH (QString type_id, m_sources->keys()) { TRACE() << Q_FUNC_INFO << type_id; Q_FOREACH (QString k, m_sources->get(type_id).toStringList()) { TRACE() << Q_FUNC_INFO << k; for_each(cuc::Peer{k}); } } Q_FOREACH (QString type_id, m_dests->keys()) { TRACE() << Q_FUNC_INFO << type_id; Q_FOREACH (QString k, m_dests->get(type_id).toStringList()) { TRACE() << Q_FUNC_INFO << k; for_each(cuc::Peer{k}); } } Q_FOREACH (QString type_id, m_shares->keys()) { TRACE() << Q_FUNC_INFO << type_id; Q_FOREACH (QString k, m_shares->get(type_id).toStringList()) { TRACE() << Q_FUNC_INFO << k; for_each(cuc::Peer{k}); } } } void Registry::enumerate_known_sources_for_type(cuc::Type type, const std::function&for_each) { TRACE() << Q_FUNC_INFO << type.id(); QStringList peers; peers << m_sources->get("all").toStringList(); if (type != cuc::Type::unknown() && valid_type(type)) peers << m_sources->get(type.id()).toStringList(); Q_FOREACH (QString k, peers) { TRACE() << Q_FUNC_INFO << k; bool defaultPeer = false; QVariant peer_v; if (type != cuc::Type::unknown()) peer_v = m_defaultSources->get(type.id()); if (peer_v.type() == QVariant::StringList) { QStringList as(peer_v.toStringList()); if (!as.isEmpty()) { std::string pkg = as[0].toStdString(); std::string app = as[1].toStdString(); std::string ver = as[2].toStdString(); if (app.empty() || ver.empty()) defaultPeer = QString::fromStdString(pkg) == k; else defaultPeer = QString::fromLocal8Bit(ubuntu_app_launch_triplet_to_app_id(pkg.c_str(), app.c_str(), ver.c_str())) == k; } } for_each(cuc::Peer{k, defaultPeer}); } } void Registry::enumerate_known_destinations_for_type(cuc::Type type, const std::function&for_each) { TRACE() << Q_FUNC_INFO << type.id(); QStringList peers; peers << m_dests->get("all").toStringList(); if (type != cuc::Type::unknown() && valid_type(type)) peers << m_dests->get(type.id()).toStringList(); peers << libertine_app_ids(type.id()); Q_FOREACH (QString k, peers) { TRACE() << Q_FUNC_INFO << k; for_each(cuc::Peer{k}); } } void Registry::enumerate_known_shares_for_type(cuc::Type type, const std::function&for_each) { TRACE() << Q_FUNC_INFO << type.id(); if (type == cuc::Type::unknown() || !valid_type(type)) return; QStringList peers; peers << m_shares->get(type.id()).toStringList(); peers << libertine_app_ids(type.id()); Q_FOREACH (QString k, peers) { TRACE() << Q_FUNC_INFO << k; for_each(cuc::Peer{k}); } } bool Registry::install_default_source_for_type(cuc::Type type, cuc::Peer peer) { TRACE() << Q_FUNC_INFO << "type:" << type.id() << "peer:" << peer.id(); if (m_defaultSources->keys().contains(type.id())) { TRACE() << Q_FUNC_INFO << "Default peer for" << type.id() << "already installed."; return false; } this->install_source_for_type(type, peer); return m_defaultSources->trySet(type.id(), QVariant(peer.id())); } bool Registry::install_source_for_type(cuc::Type type, cuc::Peer peer) { TRACE() << Q_FUNC_INFO << "type:" << type.id() << "peer:" << peer.id(); QStringList l = m_sources->get(type.id()).toStringList(); if (not l.contains(peer.id())) { l.append(peer.id()); return m_sources->trySet(type.id(), QVariant(l)); } return false; } bool Registry::install_destination_for_type(cuc::Type type, cuc::Peer peer) { TRACE() << Q_FUNC_INFO << "type:" << type.id() << "peer:" << peer.id(); QStringList l = m_dests->get(type.id()).toStringList(); if (not l.contains(peer.id())) { l.append(peer.id()); return m_dests->trySet(type.id(), QVariant(l)); } return false; } bool Registry::install_share_for_type(cuc::Type type, cuc::Peer peer) { TRACE() << Q_FUNC_INFO << "type:" << type.id() << "peer:" << peer.id(); QStringList l = m_shares->get(type.id()).toStringList(); if (not l.contains(peer.id())) { l.append(peer.id()); return m_shares->trySet(type.id(), QVariant(l)); } return false; } bool Registry::remove_peer(cuc::Peer peer) { TRACE() << Q_FUNC_INFO << "peer:" << peer.id(); bool ret = false; Q_FOREACH (QString type_id, m_sources->keys()) { QStringList l = m_sources->get(type_id).toStringList(); if (l.contains(peer.id())) { l.removeAll(peer.id()); ret = m_sources->trySet(type_id, QVariant(l)); } } Q_FOREACH (QString type_id, m_dests->keys()) { QStringList l = m_dests->get(type_id).toStringList(); if (l.contains(peer.id())) { l.removeAll(peer.id()); ret = m_dests->trySet(type_id, QVariant(l)); } } Q_FOREACH (QString type_id, m_shares->keys()) { QStringList l = m_shares->get(type_id).toStringList(); if (l.contains(peer.id())) { l.removeAll(peer.id()); ret = m_shares->trySet(type_id, QVariant(l)); } } return ret; } bool Registry::peer_is_legacy(QString peer_id) { return libertine_app_ids("all").contains(peer_id); } content-hub-0.1+16.04.20160309/src/com/ubuntu/content/service/CMakeLists.txt0000644000015600001650000000532512670026423026715 0ustar pbuserpbgroup00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss add_definitions(-DQT_NO_KEYWORDS) include_directories(${CMAKE_CURRENT_BINARY_DIR}) qt5_add_dbus_adaptor( CONTENT_SERVICE_SKELETON ${CMAKE_SOURCE_DIR}/src/com/ubuntu/content/detail/com.ubuntu.content.Service.xml detail/service.h com::ubuntu::content::detail::Service) include_directories( ${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR}/src/com/ubuntu/content ${GIO_INCLUDE_DIRS} ${GSETTINGS_INCLUDE_DIRS} ${UBUNTU_LAUNCH_INCLUDE_DIRS} ${LIBERTINE_INCLUDE_DIRS} ) add_executable( content-hub-service main.cpp registry.cpp ../debug.cpp ../utils.cpp ${CONTENT_SERVICE_SKELETON} ) qt5_use_modules(content-hub-service Core DBus Gui) target_link_libraries( content-hub-service content-hub ${GIO_LDFLAGS} ${GSETTINGS_LDFLAGS} ${UBUNTU_LAUNCH_LDFLAGS} ${LIBERTINE_LDFLAGS} ) install( TARGETS content-hub-service RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) install( FILES com.ubuntu.content.dbus.Service.service DESTINATION ${CMAKE_INSTALL_DATADIR}/dbus-1/services ) ########################### # GSettings ########################### add_schema ("com.ubuntu.content.hub.gschema.xml") add_executable( content-hub-peer-hook helper.cpp registry.cpp hook.cpp ) qt5_use_modules(content-hub-peer-hook Core Gui DBus) target_link_libraries( content-hub-peer-hook content-hub ${GSETTINGS_LDFLAGS} ${UBUNTU_LAUNCH_LDFLAGS} ) configure_file("content-hub-peer-hook-wrapper.in" "content-hub-peer-hook-wrapper" @ONLY ) install( PROGRAMS "${CMAKE_CURRENT_BINARY_DIR}/content-hub-peer-hook-wrapper" DESTINATION "${CMAKE_INSTALL_FULL_LIBEXECDIR}/content-hub" ) install( TARGETS content-hub-peer-hook RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_LIBEXECDIR}/content-hub" ) set_target_properties( content-hub-peer-hook PROPERTIES AUTOMOC TRUE ) set(CLICK_HOOK "${CMAKE_CURRENT_BINARY_DIR}/content-hub.hook" ) configure_file("content-hub.hook.in" "${CLICK_HOOK}" @ONLY ) install( FILES "${CLICK_HOOK}" DESTINATION "/usr/share/click/hooks" ) install( FILES xorg.png DESTINATION ${CMAKE_INSTALL_DATADIR}/content-hub/icons/ ) content-hub-0.1+16.04.20160309/src/com/ubuntu/content/service/hook.cpp0000644000015600001650000001266112670026423025622 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include #include #include #include #include #include #include #include "debug.h" #include "hook.h" namespace cucd = com::ubuntu::content::detail; cucd::Hook::Hook(QObject *parent) : QObject(parent), registry(new Registry()) { QTimer::singleShot(200, this, SLOT(run())); } cucd::Hook::Hook(com::ubuntu::content::detail::PeerRegistry *registry, QObject *parent) : QObject(parent), registry(registry) { } cucd::Hook::~Hook() { TRACE() << Q_FUNC_INFO; delete registry; } void cucd::Hook::run() { TRACE() << Q_FUNC_INFO; /* Looks for files in ${HOME}/.local/share/content-hub/${id} installed * by click packages. These files are JSON, for example: * * { * "source": [ * "pictures", * "music" * ] * } * * The hook also iterates known peers and removes them if there is * no JSON file installed in this path. */ QVector contentDirs; contentDirs.append(QDir( QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + QString("/") + QString("content-hub"))); contentDirs.append(QDir("/usr/share/content-hub/peers/")); contentDirs.append(QDir("/usr/share/local/content-hub/peers/")); QStringList all_peers; registry->enumerate_known_peers([&all_peers](const com::ubuntu::content::Peer& peer) { all_peers.append(peer.id()); }); Q_FOREACH(QString p, all_peers) { TRACE() << Q_FUNC_INFO << "Looking for" << p; bool foundPeer = false; Q_FOREACH(QDir contentDir, contentDirs) { QStringList pp = contentDir.entryList(QStringList("*"+ p)); if (!pp.isEmpty()) { foundPeer = true; } } if(!foundPeer) { registry->remove_peer(com::ubuntu::content::Peer{p}); } } bool peerDirsExist = false; Q_FOREACH(QDir contentDir, contentDirs) { if (contentDir.exists()) { peerDirsExist = true; Q_FOREACH(QFileInfo f, contentDir.entryInfoList(QDir::Files)) add_peer(f); } } if(!peerDirsExist) return_error("No peer setting directories exist."); deleteLater(); QCoreApplication::instance()->quit(); } bool cucd::Hook::add_peer(QFileInfo result) { TRACE() << Q_FUNC_INFO << "Hook:" << result.filePath(); QStringList knownTypes; knownTypes << "all" << "pictures" << "music" << "contacts" << "documents" << "videos" << "links" << "ebooks" << "text" << "events"; QString app_id = result.fileName(); auto peer = cuc::Peer(app_id); QFile contentJson(result.absoluteFilePath()); if (!contentJson.open(QIODevice::ReadOnly | QIODevice::Text)) return_error("couldn't open " + result.absoluteFilePath()); QJsonParseError *e = new QJsonParseError(); QJsonDocument contentDoc = QJsonDocument::fromJson(contentJson.readAll(), e); if (e->error != 0) return return_error(e->errorString()); if (not contentDoc.isObject()) return return_error("invalid JSON object"); QJsonObject contentObj = contentDoc.object(); QVariant sources = contentObj.toVariantMap()["source"]; Q_FOREACH(QString k, sources.toStringList()) { if (knownTypes.contains(k)) { if (registry->install_source_for_type(cuc::Type{k}, peer)) TRACE() << "Installed source:" << peer.id() << "for type:" << k; } else qWarning() << "Failed to install" << peer.id() << "unknown type:" << k; } QVariant dests = contentObj.toVariantMap()["destination"]; Q_FOREACH(QString k, dests.toStringList()) { if (knownTypes.contains(k)) { if (registry->install_destination_for_type(cuc::Type{k}, peer)) TRACE() << "Installed destination:" << peer.id() << "for type:" << k; } else qWarning() << "Failed to install" << peer.id() << "unknown type:" << k; } QVariant shares = contentObj.toVariantMap()["share"]; Q_FOREACH(QString k, shares.toStringList()) { if (knownTypes.contains(k)) { if (registry->install_share_for_type(cuc::Type{k}, peer)) TRACE() << "Installed share:" << peer.id() << "for type:" << k; } else qWarning() << "Failed to install" << peer.id() << "unknown type:" << k; } return true; } bool cucd::Hook::return_error(QString err) { qWarning() << "Failed to install peer" << err; return false; } content-hub-0.1+16.04.20160309/src/com/ubuntu/content/utils.cpp0000644000015600001650000001707012670026423024361 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include #include #include #include #include #include #include #include #include #include "common.h" #include "debug.h" #include "com/ubuntu/content/type.h" #include #include #include /* need to be exposed in libapparmor but for now ... */ #define AA_CLASS_FILE 2 #define AA_MAY_READ (1 << 2) namespace cuc = com::ubuntu::content; namespace { QList known_types() { QList types; types << cuc::Type::Known::pictures(); types << cuc::Type::Known::music(); types << cuc::Type::Known::documents(); types << cuc::Type::Known::contacts(); types << cuc::Type::Known::videos(); types << cuc::Type::Known::links(); types << cuc::Type::Known::ebooks(); types << cuc::Type::Known::text(); types << cuc::Type::Known::events(); return types; } bool valid_type(cuc::Type type) { Q_FOREACH (cuc::Type t, known_types()) { TRACE() << Q_FUNC_INFO << t.id(); if (t.id() == type.id()) return true; } return false; } /* sanitize the dbus names */ QString sanitize_id(const QString& appId) { TRACE() << Q_FUNC_INFO; return QString(nih_dbus_path(NULL, "", appId.toLocal8Bit().data(), NULL)).remove(0, 1); } /* define a bus_name based on our namespace and the app_id */ QString handler_address(QString app_id) { return QString(HANDLER_NAME_TEMPLATE).arg(sanitize_id(app_id)); } QString handler_path(QString app_id) { return nih_dbus_path(NULL, HANDLER_BASE_PATH.data(), app_id.toLocal8Bit().data(), NULL); } QString app_id() { /* FIXME: rely on APP_ID from env for now, * but we'll use this function as a place to * later use the application manager */ return QString(qgetenv("APP_ID")); } QString aa_profile(QString uniqueConnectionId) { TRACE() << Q_FUNC_INFO << uniqueConnectionId; QDBusMessage msg = QDBusMessage::createMethodCall("org.freedesktop.DBus", "/org/freedesktop/DBus", "org.freedesktop.DBus", "GetConnectionAppArmorSecurityContext"); QString aaProfile; QVariantList args; args << uniqueConnectionId; msg.setArguments(args); QDBusMessage reply = QDBusConnection::sessionBus().call(msg, QDBus::Block); if (reply.type() == QDBusMessage::ReplyMessage) { aaProfile = reply.arguments().value(0, QString()).toString(); TRACE() << "AppArmor Profile:" << aaProfile; } else { qWarning() << "Error getting app ID:" << reply.errorName() << reply.errorMessage(); } return aaProfile; } bool is_persistent(QString store) { TRACE() << Q_FUNC_INFO << store; QRegExp rx("*.cache/*/HubIncoming/*"); rx.setPatternSyntax(QRegExp::Wildcard); rx.setCaseSensitivity(Qt::CaseSensitive); return not rx.exactMatch(store); } QString copy_to_store(const QString& src, const QString& store) { TRACE() << Q_FUNC_INFO; QUrl srcUrl(src); if (not srcUrl.isLocalFile()) return srcUrl.url(); QFileInfo fi(srcUrl.toLocalFile()); QDir st(store); if (not st.exists()) st.mkpath(st.absolutePath()); QString suffix = fi.completeSuffix(); QString filename = fi.fileName(); QString filenameWithoutSuffix = filename.left(filename.size() - suffix.size()); QString destFilePath = store + QDir::separator() + filenameWithoutSuffix + suffix; // Avoid filename collision by automatically inserting an incremented // number into the filename if the original name already exists. if (QFile::exists(destFilePath)) { qWarning() << "Destination file already exists, attempt to resolve:" << destFilePath; int append = 1; do { destFilePath = QString("%1%2.%3").arg(store + QDir::separator() + filenameWithoutSuffix, QString::number(append), suffix); append++; } while (QFile::exists(destFilePath)); } TRACE() << Q_FUNC_INFO << destFilePath; bool copy_failed = true; if (not is_persistent(store)) { if (link( fi.absoluteFilePath().toStdString().c_str(), destFilePath.toStdString().c_str() ) < 0) { qWarning() << "Can't create hard link to Store:" << store; } else copy_failed = false; } if (copy_failed) { if (not QFile::copy(fi.filePath(), destFilePath)) qWarning() << "Failed to copy to Store:" << store; } return QUrl::fromLocalFile(destFilePath).toString(); } bool purge_store_cache(QString store) { TRACE() << Q_FUNC_INFO << "Store:" << store; if (is_persistent(store)) { TRACE() << Q_FUNC_INFO << store << "is persistent"; return false; } QDir st(store); if (st.exists()) { TRACE() << Q_FUNC_INFO << store << "isn't persistent, purging"; return st.removeRecursively(); } return false; } int query_file(const char *label, const char *path, int *allowed) { int rc, audited; char *query; /* + 1 for null separator and then + 1 AA_CLASS_FILE */ int label_size = strlen(label); int size = label_size + 1 + strlen(path) + AA_QUERY_CMD_LABEL_SIZE + 1; /* +1 for null terminator used by strcpy, yes we could drop this * using memcpy */ query = (char*)malloc(size + 1); if (!query) return -1; /* we want the null terminator here */ strcpy(query + AA_QUERY_CMD_LABEL_SIZE, label); query[AA_QUERY_CMD_LABEL_SIZE + label_size + 1] = AA_CLASS_FILE; strcpy(query + AA_QUERY_CMD_LABEL_SIZE + label_size + 2, path); rc = aa_query_label(AA_MAY_READ, query, size , allowed, &audited); free(query); return rc; } bool check_profile_read(QString profile, QString path) { TRACE() << Q_FUNC_INFO << "PROFILE:" << profile; int allowed; if (query_file(profile.toStdString().c_str(), path.toStdString().c_str(), &allowed) == -1) { qWarning() << "error:" << strerror(errno) << path; return false; } if (allowed) { TRACE() << "ALLOWED:" << QString::number(allowed); return true; } TRACE() << "NOT ALLOWED:" << QString::number(allowed); return false; } QString shared_dir_for_peer(QString peer) { TRACE() << Q_FUNC_INFO << "PEER:" << peer; QString container = peer.split("_")[0]; if (container.isEmpty()) return QString(); QString home_path = libertine_container_home_path(container.toStdString().c_str()); if (home_path.isEmpty()) return QString(); QString path = home_path + "/shared"; return path; } } content-hub-0.1+16.04.20160309/src/com/ubuntu/content/item.cpp0000644000015600001650000000655112670026423024161 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include #include #include "debug.h" namespace cuc = com::ubuntu::content; struct cuc::Item::Private { QUrl url; QString name; QByteArray stream; QString streamType; bool operator==(const Private& rhs) const { return url == rhs.url && name == rhs.name && stream == rhs.stream && streamType == rhs.streamType; } }; cuc::Item::Item(const QUrl& url, QObject* parent) : QObject(parent), d{new cuc::Item::Private{url, QString(), QByteArray(), QString()}} { } cuc::Item::Item(const cuc::Item& rhs) : QObject(rhs.parent()), d(rhs.d) { } cuc::Item& cuc::Item::operator=(const cuc::Item& rhs) { d = rhs.d; return *this; } bool cuc::Item::operator==(const cuc::Item& rhs) const { if (d == rhs.d) return true; return *d == *rhs.d; } cuc::Item::~Item() { } const QUrl& cuc::Item::url() const { return d->url; } void cuc::Item::setUrl(const QUrl& newUrl) const { if (newUrl == d->url) return; d->url = newUrl; } const QString& cuc::Item::name() const { return d->name; } void cuc::Item::setName(const QString& newName) const { if (newName != d->name) d->name = newName; } const QString cuc::Item::text() const { if (d->streamType == "plain/text") return QString(d->stream); return QString(); } void cuc::Item::setText(const QString& text) const { if (text == QString(d->stream)) return; setStream(QByteArray::fromStdString(text.toStdString())); d->streamType = QString("plain/text"); } const QByteArray& cuc::Item::stream() const { return d->stream; } void cuc::Item::setStream(const QByteArray& newStream) const { if (newStream != d->stream) d->stream = newStream; } const QString& cuc::Item::streamType() const { return d->streamType; } void cuc::Item::setStreamType(const QString& newStreamType) const { if (newStreamType != d->streamType) d->streamType = newStreamType; } QDBusArgument &operator<<(QDBusArgument &argument, const cuc::Item& item) { argument.beginStructure(); argument << item.streamType() << item.stream() << item.name() << item.url().toDisplayString(); argument.endStructure(); return argument; } const QDBusArgument &operator>>(const QDBusArgument &argument, cuc::Item &item) { TRACE() << Q_FUNC_INFO; QString name; QString urlString; QByteArray stream; QString streamType; argument.beginStructure(); argument >> streamType >> stream >> name >> urlString; argument.endStructure(); item = cuc::Item{QUrl(urlString)}; item.setName(name); item.setStream(stream); item.setStreamType(streamType); return argument; } content-hub-0.1+16.04.20160309/src/com/ubuntu/content/type.cpp0000644000015600001650000000523712670026423024204 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include #include namespace cuc = com::ubuntu::content; struct cuc::Type::Private { QString id; }; cuc::Type::Type(const QString& id, QObject* parent) : QObject(parent), d(new Private{id}) { } cuc::Type::Type(const cuc::Type& rhs) : QObject(rhs.parent()), d(rhs.d) { } cuc::Type::~Type() { } cuc::Type& cuc::Type::operator=(const cuc::Type& rhs) { d = rhs.d; return *this; } bool cuc::Type::operator==(const cuc::Type& rhs) const { if (d == rhs.d) return true; return d->id == rhs.d->id; } bool cuc::Type::operator!=(const cuc::Type& rhs) const { if (d == rhs.d) return false; return d->id != rhs.d->id; } bool cuc::Type::operator<(const cuc::Type& rhs) const { return d->id < rhs.d->id; } const QString& cuc::Type::id() const { return d->id; } const cuc::Type& cuc::Type::unknown() { static cuc::Type t("unknown", nullptr); return t; } const cuc::Type& cuc::Type::all() { static cuc::Type t("all", nullptr); return t; } const cuc::Type& cuc::Type::Known::documents() { static cuc::Type t("documents", nullptr); return t; } const cuc::Type& cuc::Type::Known::pictures() { static cuc::Type t("pictures", nullptr); return t; } const cuc::Type& cuc::Type::Known::music() { static cuc::Type t("music", nullptr); return t; } const cuc::Type& cuc::Type::Known::contacts() { static cuc::Type t("contacts", nullptr); return t; } const cuc::Type& cuc::Type::Known::videos() { static cuc::Type t("videos", nullptr); return t; } const cuc::Type& cuc::Type::Known::links() { static cuc::Type t("links", nullptr); return t; } const cuc::Type& cuc::Type::Known::ebooks() { static cuc::Type t("ebooks", nullptr); return t; } const cuc::Type& cuc::Type::Known::text() { static cuc::Type t("text", nullptr); return t; } const cuc::Type& cuc::Type::Known::events() { static cuc::Type t("events", nullptr); return t; } content-hub-0.1+16.04.20160309/src/com/ubuntu/content/common.h0000644000015600001650000000213312670026423024150 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef COMMON_H #define COMMON_H #include const QLatin1String HUB_SERVICE_NAME = QLatin1String("com.ubuntu.content.dbus.Service"); const QLatin1String HUB_SERVICE_PATH = QLatin1String("/"); const QLatin1String HANDLER_NAME_TEMPLATE = QLatin1String("com.ubuntu.content.handler.%1"); const QLatin1String HANDLER_BASE_PATH = QLatin1String("/com/ubuntu/content/handler"); #endif // COMMON_H content-hub-0.1+16.04.20160309/src/com/ubuntu/content/debug.h0000644000015600001650000000252212670026423023750 0ustar pbuserpbgroup00000000000000/* * Copyright © 2014 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef DEBUG_H #define DEBUG_H #include /* 0 - fatal, 1 - critical(default), 2 - info/debug */ extern int appLoggingLevel; static inline bool debugEnabled() { return appLoggingLevel >= 2; } static inline bool criticalsEnabled() { return appLoggingLevel >= 1; } static inline int loggingLevel() { return appLoggingLevel; } void setLoggingLevel(int level); #ifdef DEBUG_ENABLED #define TRACE() \ if (debugEnabled()) qDebug() << __FILE__ << __LINE__ << __func__ #define BLAME() \ if (criticalsEnabled()) qCritical() << __FILE__ << __LINE__ << __func__ #else #define TRACE() while (0) qDebug() #define BLAME() while (0) qDebug() #endif #endif // DEBUG_H content-hub-0.1+16.04.20160309/src/com/ubuntu/content/hub.cpp0000644000015600001650000002376012670026423024002 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include "common.h" #include "debug.h" #include "ContentServiceInterface.h" #include "ContentHandlerInterface.h" #include "handleradaptor.h" #include "transfer_p.h" #include "utils.cpp" #include #include #include #include #include #include #include #include #include #include #include #include namespace cuc = com::ubuntu::content; struct cuc::Hub::Private { Private(QObject* parent) : service( new com::ubuntu::content::dbus::Service( HUB_SERVICE_NAME, HUB_SERVICE_PATH, QDBusConnection::sessionBus(), parent)) { } com::ubuntu::content::dbus::Service* service; }; cuc::Hub::Hub(QObject* parent) : QObject(parent), d{new cuc::Hub::Private{this}} { /* read environment variables */ QProcessEnvironment environment = QProcessEnvironment::systemEnvironment(); if (environment.contains(QLatin1String("CONTENT_HUB_LOGGING_LEVEL"))) { bool isOk; int value = environment.value( QLatin1String("CONTENT_HUB_LOGGING_LEVEL")).toInt(&isOk); if (isOk) setLoggingLevel(value); } qDBusRegisterMetaType(); if (qApp) qApp->installEventFilter(this); /* Append icon paths from the libertine containers */ QStringList iconPaths = QIcon::themeSearchPaths(); gchar ** containers = libertine_list_containers(); for (int i = 0; containers[i]; i++) { QString path = libertine_container_path(containers[i]); iconPaths << QString(path + "/usr/share/icons/"); } QIcon::setThemeSearchPaths(iconPaths); } cuc::Hub::~Hub() { } cuc::Hub* cuc::Hub::Client::instance() { static cuc::Hub* hub = new cuc::Hub(nullptr); return hub; } bool cuc::Hub::eventFilter(QObject *obj, QEvent *event) { if (event->type() == QEvent::ApplicationActivate) { QString id = app_id(); if (!id.isEmpty()) { TRACE() << Q_FUNC_INFO << id << "Activated"; d->service->HandlerActive(id); } else { qWarning() << "APP_ID isn't set, the handler ignored"; } } return QObject::eventFilter(obj, event); } void cuc::Hub::register_import_export_handler(cuc::ImportExportHandler* handler) { TRACE() << Q_FUNC_INFO; QString id = app_id(); if (id.isEmpty()) { qWarning() << "APP_ID isn't set, the handler can not be registered"; return; } auto c = QDBusConnection::sessionBus(); auto h = new cuc::detail::Handler(c, id, handler); new HandlerAdaptor(h); if (not c.registerObject(handler_path(id), h)) { qWarning() << Q_FUNC_INFO << "Failed to register object for:" << id; return; } d->service->RegisterImportExportHandler( id, QDBusObjectPath{handler_path(id)}); } const cuc::Store* cuc::Hub::store_for_scope_and_type(cuc::Scope scope, cuc::Type type) { static const std::map, cuc::Store*> lut = { {{cuc::system, cuc::Type::Known::pictures()}, new cuc::Store{"/content/Pictures", this}}, {{cuc::system, cuc::Type::Known::music()}, new cuc::Store{"/content/Music", this}}, {{cuc::system, cuc::Type::Known::documents()}, new cuc::Store{"/content/Documents", this}}, {{cuc::user, cuc::Type::Known::pictures()}, new cuc::Store{QStandardPaths::writableLocation(QStandardPaths::PicturesLocation), this}}, {{cuc::user, cuc::Type::Known::music()}, new cuc::Store{QStandardPaths::writableLocation(QStandardPaths::MusicLocation), this}}, {{cuc::user, cuc::Type::Known::documents()}, new cuc::Store{QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation), this}}, {{cuc::app, cuc::Type::Known::pictures()}, new cuc::Store{QStandardPaths::writableLocation(QStandardPaths::DataLocation) + "/Pictures", this}}, {{cuc::app, cuc::Type::Known::music()}, new cuc::Store{QStandardPaths::writableLocation(QStandardPaths::DataLocation) + "/Music", this}}, {{cuc::app, cuc::Type::Known::documents()}, new cuc::Store{QStandardPaths::writableLocation(QStandardPaths::DataLocation) + "/Documents", this}}, }; auto it = lut.find(std::make_pair(scope, type)); if (it == lut.end()) return nullptr; return it->second; } cuc::Peer cuc::Hub::default_source_for_type(cuc::Type t) { TRACE() << Q_FUNC_INFO; auto reply = d->service->DefaultSourceForType(t.id()); reply.waitForFinished(); if (reply.isError()) return cuc::Peer::unknown(); auto peer = reply.value(); return qdbus_cast(peer.variant()); } QVector cuc::Hub::known_sources_for_type(cuc::Type t) { QVector result; auto reply = d->service->KnownSourcesForType(t.id()); reply.waitForFinished(); if (reply.isError()) return result; auto peers = reply.value(); Q_FOREACH(const QVariant& p, peers) { result << qdbus_cast(p); } return result; } QVector cuc::Hub::known_destinations_for_type(cuc::Type t) { QVector result; auto reply = d->service->KnownDestinationsForType(t.id()); reply.waitForFinished(); if (reply.isError()) return result; auto peers = reply.value(); Q_FOREACH(const QVariant& p, peers) { result << qdbus_cast(p); } return result; } QVector cuc::Hub::known_shares_for_type(cuc::Type t) { QVector result; auto reply = d->service->KnownSharesForType(t.id()); reply.waitForFinished(); if (reply.isError()) return result; auto peers = reply.value(); Q_FOREACH(const QVariant& p, peers) { result << qdbus_cast(p); } return result; } cuc::Transfer* cuc::Hub::create_import_from_peer(cuc::Peer peer) { return this->create_import_from_peer_for_type(peer, cuc::Type::unknown()); } cuc::Transfer* cuc::Hub::create_import_from_peer_for_type(cuc::Peer peer, cuc::Type type) { /* This needs to be replaced with a better way to get the APP_ID */ QString id = app_id(); auto reply = d->service->CreateImportFromPeer(peer.id(), id, type.id()); reply.waitForFinished(); if (reply.isError()) return nullptr; cuc::Transfer *transfer = cuc::Transfer::Private::make_transfer(reply.value(), this); const cuc::Store *store = new cuc::Store{QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/HubIncoming/" + QString::number(transfer->id()), this}; transfer->setStore(store); return transfer; } cuc::Transfer* cuc::Hub::create_export_to_peer(cuc::Peer peer) { return this->create_export_to_peer_for_type(peer, cuc::Type::unknown()); } cuc::Transfer* cuc::Hub::create_export_to_peer_for_type(cuc::Peer peer, cuc::Type type) { /* This needs to be replaced with a better way to get the APP_ID */ QString id = app_id(); auto reply = d->service->CreateExportToPeer(peer.id(), id, type.id()); reply.waitForFinished(); if (reply.isError()) return nullptr; cuc::Transfer *transfer = cuc::Transfer::Private::make_transfer(reply.value(), this); QString peerName = peer.id().split("_")[0]; TRACE() << Q_FUNC_INFO << "peerName: " << peerName; const cuc::Store *store = new cuc::Store{QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/" + peerName + "/HubIncoming/" + QString::number(transfer->id()), this}; TRACE() << Q_FUNC_INFO << "STORE:" << store->uri(); transfer->setStore(store); transfer->start(); return transfer; } cuc::Transfer* cuc::Hub::create_share_to_peer(cuc::Peer peer) { return this->create_share_to_peer_for_type(peer, cuc::Type::unknown()); } cuc::Transfer* cuc::Hub::create_share_to_peer_for_type(cuc::Peer peer, cuc::Type type) { /* This needs to be replaced with a better way to get the APP_ID */ QString id = app_id(); auto reply = d->service->CreateShareToPeer(peer.id(), id, type.id()); reply.waitForFinished(); if (reply.isError()) return nullptr; cuc::Transfer *transfer = cuc::Transfer::Private::make_transfer(reply.value(), this); QString peerName = peer.id().split("_")[0]; TRACE() << Q_FUNC_INFO << "peerName: " << peerName; const cuc::Store *store = new cuc::Store{QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/" + peerName + "/HubIncoming/" + QString::number(transfer->id()), this}; TRACE() << Q_FUNC_INFO << "STORE:" << store->uri(); transfer->setStore(store); transfer->start(); return transfer; } void cuc::Hub::quit() { d->service->Quit(); } bool cuc::Hub::has_pending(QString peer_id) { auto reply = d->service->HasPending(peer_id); reply.waitForFinished(); if (reply.isError()) return false; return reply.value(); } cuc::Peer cuc::Hub::peer_for_app_id(QString app_id) { auto reply = d->service->PeerForId(app_id); reply.waitForFinished(); if (reply.isError()) return cuc::Peer::unknown(); auto peer = reply.value(); return qdbus_cast(peer.variant()); } content-hub-0.1+16.04.20160309/src/com/ubuntu/content/transfer_p.h0000644000015600001650000001350612670026423025031 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef COM_UBUNTU_CONTENT_TRANSFER_P_H_ #define COM_UBUNTU_CONTENT_TRANSFER_P_H_ #include "common.h" #include "ContentTransferInterface.h" #include #include #include #include namespace com { namespace ubuntu { namespace content { class Transfer::Private : public QObject { Q_OBJECT public: static Transfer* make_transfer(const QDBusObjectPath& transfer, QObject* parent) { QSharedPointer d{new Private{transfer, parent}}; return new Transfer{d, parent}; } Private(const QDBusObjectPath& transfer, QObject* parent) : QObject(parent), remote_transfer( new com::ubuntu::content::dbus::Transfer( HUB_SERVICE_NAME, transfer.path(), QDBusConnection::sessionBus(), this)) { } int id() { auto reply = remote_transfer->Id(); reply.waitForFinished(); return reply.value(); } State state() { auto reply = remote_transfer->State(); reply.waitForFinished(); if (reply.isError()) return Transfer::aborted; return static_cast(reply.value()); } bool start() { auto reply = remote_transfer->Start(); reply.waitForFinished(); return not reply.isError(); } bool handled() { auto reply = remote_transfer->Handled(); reply.waitForFinished(); return not reply.isError(); } bool abort() { auto reply = remote_transfer->Abort(); reply.waitForFinished(); return not reply.isError(); } bool finalize() { auto reply = remote_transfer->Finalize(); reply.waitForFinished(); return not reply.isError(); } bool charge(const QVector& items) { QVariantList itemVariants; Q_FOREACH(const Item& item, items) { itemVariants << QVariant::fromValue(item); } auto reply = remote_transfer->Charge(itemVariants); reply.waitForFinished(); return not reply.isError(); } QVector collect() { QVector result; auto reply = remote_transfer->Collect(); reply.waitForFinished(); if (reply.isError()) return result; auto items = reply.value(); Q_FOREACH(const QVariant& itemVariant, items) { result << qdbus_cast(itemVariant); } return result; } Store store() { auto reply = remote_transfer->Store(); reply.waitForFinished(); /* FIXME: Return something if it fails */ /* if (reply.isError()) return new cuc::Store{""}; */ //return new Store{reply.value()}; return static_cast(reply.value()); } bool setStore(const Store* store) { auto reply = remote_transfer->SetStore(store->uri()); reply.waitForFinished(); return not reply.isError(); } SelectionType selection_type() { auto reply = remote_transfer->SelectionType(); reply.waitForFinished(); /* if SelectionType fails, default to single */ if (reply.isError()) return Transfer::SelectionType::single; return static_cast(reply.value()); } bool setSelectionType(int type) { auto reply = remote_transfer->SetSelectionType(type); reply.waitForFinished(); return not reply.isError(); } Direction direction() { auto reply = remote_transfer->Direction(); reply.waitForFinished(); /* if Direction fails, default to import */ if (reply.isError()) return Transfer::Direction::Import; return static_cast(reply.value()); } QString downloadId() { auto reply = remote_transfer->DownloadId(); reply.waitForFinished(); if (reply.isError()) return QString(); return static_cast(reply.value()); } bool setDownloadId(QString downloadId) { auto reply = remote_transfer->SetDownloadId(downloadId); reply.waitForFinished(); return not reply.isError(); } bool download() { auto reply = remote_transfer->Download(); reply.waitForFinished(); return not reply.isError(); } QString contentType() { auto reply = remote_transfer->ContentType(); reply.waitForFinished(); return static_cast(reply.value()); } QString source() { auto reply = remote_transfer->source(); reply.waitForFinished(); return static_cast(reply.value()); } QString destination() { auto reply = remote_transfer->destination(); reply.waitForFinished(); return static_cast(reply.value()); } com::ubuntu::content::dbus::Transfer* remote_transfer; }; } } } #endif // COM_UBUNTU_CONTENT_TRANSFER_P_H_ content-hub-0.1+16.04.20160309/src/com/ubuntu/content/import_export_handler.cpp0000644000015600001650000000147412670026423027632 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include namespace cuc = com::ubuntu::content; cuc::ImportExportHandler::ImportExportHandler(QObject* parent) : QObject(parent) { } content-hub-0.1+16.04.20160309/src/com/ubuntu/content/debug.cpp0000644000015600001650000000140712670026423024304 0ustar pbuserpbgroup00000000000000/* * Copyright © 2014 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "debug.h" int appLoggingLevel = 1; // criticals void setLoggingLevel(int level) { appLoggingLevel = level; } content-hub-0.1+16.04.20160309/src/com/ubuntu/content/store.cpp0000644000015600001650000000227312670026423024354 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include namespace cuc = com::ubuntu::content; struct cuc::Store::Private { QString uri; }; cuc::Store::Store(const QString& uri, QObject* parent) : QObject(parent), d(new cuc::Store::Private{uri}) { } cuc::Store::Store(const cuc::Store& rhs) : QObject(rhs.parent()), d(rhs.d) { } cuc::Store& cuc::Store::operator=(const cuc::Store& rhs) { d = rhs.d; return *this; } cuc::Store::~Store() { } const QString& cuc::Store::uri() const { return d->uri; } content-hub-0.1+16.04.20160309/src/com/ubuntu/content/transfer.cpp0000644000015600001650000000560212670026423025043 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include #include "transfer_p.h" #include "utils.cpp" namespace cuc = com::ubuntu::content; cuc::Transfer::Transfer(const QSharedPointer& d, QObject* parent) : QObject(parent), d(d) { QObject::connect(d->remote_transfer, SIGNAL (StateChanged(int)), this, SIGNAL (stateChanged())); QObject::connect(d->remote_transfer, SIGNAL (StoreChanged(QString)), this, SIGNAL (storeChanged())); QObject::connect(d->remote_transfer, SIGNAL (SelectionTypeChanged(int)), this, SIGNAL (selectionTypeChanged())); } cuc::Transfer::~Transfer() { TRACE() << Q_FUNC_INFO; purge_store_cache(d->store().uri()); } int cuc::Transfer::id() const { return d->id(); } cuc::Transfer::State cuc::Transfer::state() const { return d->state(); } bool cuc::Transfer::start() { return d->start(); } bool cuc::Transfer::abort() { return d->abort(); } bool cuc::Transfer::charge(const QVector& items) { return d->charge(items); } QVector cuc::Transfer::collect() { return d->collect(); } bool cuc::Transfer::finalize() { return d->finalize(); } cuc::Store cuc::Transfer::store() const { return d->store(); } bool cuc::Transfer::setStore(const cuc::Store* store) { return d->setStore(store); } cuc::Transfer::SelectionType cuc::Transfer::selectionType() const { return d->selection_type(); } bool cuc::Transfer::setSelectionType(const cuc::Transfer::SelectionType& type) { return d->setSelectionType(type); } cuc::Transfer::Direction cuc::Transfer::direction() const { return d->direction(); } QString cuc::Transfer::downloadId() const { return d->downloadId(); } bool cuc::Transfer::setDownloadId(QString downloadId) { return d->setDownloadId(downloadId); } bool cuc::Transfer::download() { return d->download(); } QString cuc::Transfer::contentType() const { return d->contentType(); } QString cuc::Transfer::source() const { return d->source(); } QString cuc::Transfer::destination() const { return d->destination(); } content-hub-0.1+16.04.20160309/src/com/ubuntu/content/CMakeLists.txt0000644000015600001650000000722012670026423025251 0ustar pbuserpbgroup00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss add_subdirectory(service) include_directories( ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/include ${GLIB_INCLUDE_DIRS} ${GIO_INCLUDE_DIRS} ${NIH_INCLUDE_DIRS} ${NIH_DBUS_INCLUDE_DIRS} ${UBUNTU_LAUNCH_INCLUDE_DIRS} ${LIBERTINE_INCLUDE_DIRS} ${UBUNTU_DOWNLOAD_MANAGER_INCLUDE_DIRS} ${NOTIFY_INCLUDE_DIRS} ${APPARMOR_INCLUDE_DIRS} ) qt5_add_dbus_interface( CONTENT_SERVICE_STUB ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.ubuntu.content.Service.xml ContentServiceInterface) qt5_add_dbus_adaptor( CONTENT_SERVICE_SKELETON ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.ubuntu.content.Service.xml detail/service.h com::ubuntu::content::detail::Service) qt5_add_dbus_interface( CONTENT_TRANSFER_STUB ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.ubuntu.content.Transfer.xml ContentTransferInterface) qt5_add_dbus_adaptor( CONTENT_TRANSFER_SKELETON ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.ubuntu.content.Transfer.xml detail/transfer.h com::ubuntu::content::detail::Transfer) qt5_add_dbus_interface( CONTENT_HANDLER_STUB ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.ubuntu.content.Handler.xml ContentHandlerInterface) qt5_add_dbus_adaptor( CONTENT_HANDLER_SKELETON ${CMAKE_CURRENT_SOURCE_DIR}/detail/com.ubuntu.content.Handler.xml detail/handler.h com::ubuntu::content::detail::Handler) qt5_wrap_cpp(CONTENT_HUB_MOCS ${CMAKE_SOURCE_DIR}/include/com/ubuntu/content/hub.h) qt5_wrap_cpp(CONTENT_HUB_MOCS ${CMAKE_SOURCE_DIR}/include/com/ubuntu/content/import_export_handler.h) qt5_wrap_cpp(CONTENT_HUB_MOCS ${CMAKE_SOURCE_DIR}/include/com/ubuntu/content/item.h) qt5_wrap_cpp(CONTENT_HUB_MOCS ${CMAKE_SOURCE_DIR}/include/com/ubuntu/content/peer.h) qt5_wrap_cpp(CONTENT_HUB_MOCS ${CMAKE_SOURCE_DIR}/include/com/ubuntu/content/store.h) qt5_wrap_cpp(CONTENT_HUB_MOCS ${CMAKE_SOURCE_DIR}/include/com/ubuntu/content/transfer.h) qt5_wrap_cpp(CONTENT_HUB_MOCS ${CMAKE_SOURCE_DIR}/include/com/ubuntu/content/type.h) add_library( content-hub SHARED hub.cpp import_export_handler.cpp item.cpp peer.cpp store.cpp transfer.cpp type.cpp utils.cpp debug.cpp detail/app_manager.cpp detail/service.cpp detail/transfer.cpp detail/handler.cpp detail/i18n.cpp ${CONTENT_HUB_MOCS} ${CONTENT_SERVICE_STUB} ${CONTENT_SERVICE_SKELETON} ${CONTENT_TRANSFER_STUB} ${CONTENT_TRANSFER_SKELETON} ${CONTENT_HANDLER_STUB} ${CONTENT_HANDLER_SKELETON} ) set_target_properties( content-hub PROPERTIES VERSION ${CONTENT_HUB_VERSION_MAJOR}.${CONTENT_HUB_VERSION_MINOR}.${CONTENT_HUB_VERSION_PATCH} SOVERSION ${CONTENT_HUB_VERSION_MAJOR} AUTOMOC TRUE ) qt5_use_modules(content-hub Core DBus Gui) target_link_libraries(content-hub ${UBUNTU_LAUNCH_LDFLAGS} ${LIBERTINE_LDFLAGS} ${NIH_LIBRARIES} ${NIH_DBUS_LIBRARIES} ${GIO_LIBRARIES} ${UBUNTU_DOWNLOAD_MANAGER_LIBRARIES} ${NOTIFY_LIBRARIES} ${APPARMOR_LDFLAGS} ) install( TARGETS content-hub LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} ) content-hub-0.1+16.04.20160309/src/com/ubuntu/content/detail/0000755000015600001650000000000012670026644023757 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/src/com/ubuntu/content/detail/app_manager.h0000644000015600001650000000254212670026423026400 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_UBUNTU_APP_MANAGER_H_ #define COM_UBUNTU_APP_MANAGER_H_ #include namespace com { namespace ubuntu { namespace content { namespace detail { class AppManager: public com::ubuntu::ApplicationManager::ApplicationManager { public: AppManager() = default; AppManager(const AppManager&) = default; virtual ~AppManager() = default; AppManager& operator=(const AppManager&) = default; virtual bool invoke_application(const std::string &app_id, gchar ** uris); virtual bool stop_application(const std::string &app_id); virtual bool is_application_started(const std::string &app_id); }; } } } } #endif // COM_UBUNTU_APPLICATION_MANAGER_H_ content-hub-0.1+16.04.20160309/src/com/ubuntu/content/detail/transfer.h0000644000015600001650000000600412670026423025747 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef TRANSFER_H_ #define TRANSFER_H_ #include #include #include #include #include #include namespace com { namespace ubuntu { namespace content { namespace detail { class Transfer : public QObject, protected QDBusContext { Q_OBJECT Q_PROPERTY(int State READ State NOTIFY StateChanged) Q_PROPERTY(QString Store READ Store WRITE SetStore NOTIFY StoreChanged) Q_PROPERTY(int SelectionType READ SelectionType WRITE SetSelectionType NOTIFY SelectionTypeChanged) Q_PROPERTY(QString DownloadId READ DownloadId WRITE SetDownloadId NOTIFY DownloadIdChanged) Q_PROPERTY(int id READ Id) Q_PROPERTY(QString source READ source) Q_PROPERTY(QString destination READ destination) Q_PROPERTY(int direction READ Direction) Q_PROPERTY(QString ContentType READ ContentType) public: Transfer(const int, const QString&, const QString&, const int, const QString&, QObject* parent = nullptr); Transfer(const Transfer&) = delete; virtual ~Transfer(); Transfer& operator=(const Transfer&) = delete; void SetSourceStartedByContentHub(bool started); bool WasSourceStartedByContentHub() const; void SetShouldBeStartedByContentHub(bool start); bool ShouldBeStartedByContentHub() const; Q_SIGNALS: void StateChanged(int State); void StoreChanged(QString Store); void SelectionTypeChanged(int SelectionType); void DownloadIdChanged(QString DownloadId); void DownloadManagerError(QString ErrorMessage); public Q_SLOTS: int State(); void Start(); void Handled(); void Charge(const QVariantList&); QVariantList Collect(); void Abort(); void Finalize(); QString Store(); void SetStore(QString); int SelectionType(); void SetSelectionType(int); int Id(); int Direction(); QString source(); QString destination(); QString export_path(); QString import_path(); QString DownloadId(); void SetDownloadId(QString DownloadId); void DownloadComplete(QString destFilePath); void Download(); void DownloadError(Ubuntu::DownloadManager::Error* error); QString ContentType(); void AddItemsFromDir(QDir dir); private: struct Private; QScopedPointer d; }; } } } } #endif // TRANSFER_H_ content-hub-0.1+16.04.20160309/src/com/ubuntu/content/detail/peer_registry.h0000644000015600001650000000373312670026423027014 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef PEER_REGISTRY_H_ #define PEER_REGISTRY_H_ #include #include #include namespace com { namespace ubuntu { namespace content { namespace detail { class PeerRegistry { public: PeerRegistry() = default; PeerRegistry(const PeerRegistry& registry) = delete; virtual ~PeerRegistry() = default; PeerRegistry& operator=(const PeerRegistry&) = delete; virtual Peer default_source_for_type(Type) = 0; virtual void enumerate_known_peers(const std::function& for_each) = 0; virtual void enumerate_known_sources_for_type(Type, const std::function& for_each) = 0; virtual void enumerate_known_destinations_for_type(Type, const std::function& for_each) = 0; virtual void enumerate_known_shares_for_type(Type, const std::function& for_each) = 0; virtual bool install_default_source_for_type(Type, Peer) = 0; virtual bool install_source_for_type(Type, Peer) = 0; virtual bool install_destination_for_type(Type, Peer) = 0; virtual bool install_share_for_type(Type, Peer) = 0; virtual bool remove_peer(Peer peer) = 0; virtual bool peer_is_legacy(QString type) = 0; }; } } } } #endif // PEER_REGISTRY_H_ content-hub-0.1+16.04.20160309/src/com/ubuntu/content/detail/handler.h0000644000015600001650000000312012670026423025534 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef HANDLER_H_ #define HANDLER_H_ #include #include #include #include namespace com { namespace ubuntu { namespace content { namespace detail { class Handler : public QObject { Q_OBJECT public: Handler(QDBusConnection connection, const QString& peer_id, com::ubuntu::content::ImportExportHandler *handler = nullptr); Handler(const Handler&) = delete; ~Handler(); Handler& operator=(const Handler&) = delete; public Q_SLOTS: void HandleImport(const QDBusObjectPath &transfer); void HandleExport(const QDBusObjectPath &transfer); void HandleShare(const QDBusObjectPath &transfer); private: struct Private; QScopedPointer d; com::ubuntu::content::ImportExportHandler *m_handler; }; } } } } #endif // HANDLER_H_ content-hub-0.1+16.04.20160309/src/com/ubuntu/content/detail/app_manager.cpp0000644000015600001650000000274712670026423026742 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "app_manager.h" #include "debug.h" #include namespace cucd = com::ubuntu::content::detail; /*! * \reimp */ bool cucd::AppManager::invoke_application(const std::string &app_id, gchar ** uris) { TRACE() << Q_FUNC_INFO << "APP_ID:" << app_id.c_str(); gboolean ok = ubuntu_app_launch_start_application(app_id.c_str(), (const gchar * const *)uris); return static_cast(ok); } /*! * \reimp */ bool cucd::AppManager::stop_application(const std::string &app_id) { TRACE() << Q_FUNC_INFO << "APP_ID:" << app_id.c_str(); gboolean ok = ubuntu_app_launch_stop_application(app_id.c_str()); return static_cast(ok); } /*! * \reimp */ bool cucd::AppManager::is_application_started(const std::string &app_id) { GPid pid = ubuntu_app_launch_get_primary_pid(app_id.c_str()); return pid != 0; } content-hub-0.1+16.04.20160309/src/com/ubuntu/content/detail/i18n.h0000644000015600001650000000171412670026423024705 0ustar pbuserpbgroup00000000000000/* * Copyright © 2014 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef I18N_H #define I18N_H #include namespace com { namespace ubuntu { namespace content { namespace detail { void initTr(const char *domain, const char *localeDir); QString __(const char *text, const char *domain = 0); } } } } #endif // I18N_H content-hub-0.1+16.04.20160309/src/com/ubuntu/content/detail/handler.cpp0000644000015600001650000000500612670026423026074 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "transfer_p.h" #include "handler.h" #include "utils.cpp" #include "debug.h" #include namespace cucd = com::ubuntu::content::detail; namespace cuc = com::ubuntu::content; struct cucd::Handler::Private : public QObject { Private(QDBusConnection connection, const QString& peer_id, QObject* parent) : QObject(parent), connection(connection), peer_id(peer_id) { TRACE() << Q_FUNC_INFO; } QDBusConnection connection; const QString peer_id; }; cucd::Handler::Handler(QDBusConnection connection, const QString& peer_id, cuc::ImportExportHandler* handler) : d(new Private{connection, peer_id, this}) { TRACE() << Q_FUNC_INFO; m_handler = handler; } cucd::Handler::~Handler() { delete m_handler; } void cucd::Handler::HandleImport(const QDBusObjectPath& transfer) { TRACE() << Q_FUNC_INFO << transfer.path(); cuc::Transfer* t = cuc::Transfer::Private::make_transfer(transfer, this); TRACE() << Q_FUNC_INFO << "State:" << t->state(); if (t->state() == cuc::Transfer::charged) m_handler->handle_import(t); } void cucd::Handler::HandleExport(const QDBusObjectPath& transfer) { TRACE() << Q_FUNC_INFO << transfer.path(); cuc::Transfer* t = cuc::Transfer::Private::make_transfer(transfer, this); TRACE() << Q_FUNC_INFO << "State:" << t->state(); if (t->state() == cuc::Transfer::initiated) { t->d->handled(); m_handler->handle_export(t); } } void cucd::Handler::HandleShare(const QDBusObjectPath& transfer) { TRACE() << Q_FUNC_INFO; cuc::Transfer* t = cuc::Transfer::Private::make_transfer(transfer, this); TRACE() << Q_FUNC_INFO << "State:" << t->state(); if (t->state() == cuc::Transfer::charged) { m_handler->handle_share(t); } } content-hub-0.1+16.04.20160309/src/com/ubuntu/content/detail/com.ubuntu.content.Service.xml0000644000015600001650000000415712670026423031652 0ustar pbuserpbgroup00000000000000 content-hub-0.1+16.04.20160309/src/com/ubuntu/content/detail/transfer.cpp0000644000015600001650000002612412670026423026307 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include "debug.h" #include "transfer.h" #include "utils.cpp" #include #include #include #include #include #include namespace cuc = com::ubuntu::content; namespace cucd = com::ubuntu::content::detail; struct cucd::Transfer::Private { Private(const int id, const QString& source, const QString& destination, const int direction, const QString& content_type): state(cuc::Transfer::created), id(id), source(source), destination(destination), direction(direction), selection_type(cuc::Transfer::single), source_started_by_content_hub(false), should_be_started_by_content_hub(true), content_type(content_type) { } cuc::Transfer::State state; const int id; const QString source; const QString destination; int direction; QString store; int selection_type; QVariantList items; bool source_started_by_content_hub; bool should_be_started_by_content_hub; QString download_id; const QString content_type; }; cucd::Transfer::Transfer(const int id, const QString& source, const QString& destination, const int direction, const QString& content_type, QObject* parent) : QObject(parent), d(new Private(id, source, destination, direction, content_type)) { TRACE() << __PRETTY_FUNCTION__; } cucd::Transfer::~Transfer() { TRACE() << __PRETTY_FUNCTION__; purge_store_cache(d->store); } /* unique id of the transfer */ int cucd::Transfer::Id() { TRACE() << __PRETTY_FUNCTION__; return d->id; } /* returns the peer_id of the requested export handler */ QString cucd::Transfer::source() { TRACE() << __PRETTY_FUNCTION__; return d->source; } /* returns the peer_id of the application requesting the import */ QString cucd::Transfer::destination() { TRACE() << __PRETTY_FUNCTION__; return d->destination; } int cucd::Transfer::Direction() { TRACE() << __PRETTY_FUNCTION__; return d->direction; } int cucd::Transfer::State() { TRACE() << __PRETTY_FUNCTION__; return d->state; } void cucd::Transfer::Abort() { TRACE() << __PRETTY_FUNCTION__; if (d->state == cuc::Transfer::aborted) return; purge_store_cache(d->store); d->items.clear(); d->state = cuc::Transfer::aborted; Q_EMIT(StateChanged(d->state)); } void cucd::Transfer::Start() { TRACE() << __PRETTY_FUNCTION__; if (d->state == cuc::Transfer::initiated) return; d->state = cuc::Transfer::initiated; Q_EMIT(StateChanged(d->state)); } void cucd::Transfer::Handled() { TRACE() << __PRETTY_FUNCTION__; if (d->state == cuc::Transfer::in_progress) return; d->state = cuc::Transfer::in_progress; Q_EMIT(StateChanged(d->state)); } void cucd::Transfer::Charge(const QVariantList& items) { TRACE() << __PRETTY_FUNCTION__; if (d->state == cuc::Transfer::charged) return; if (d->state == cuc::Transfer::downloading) { qWarning() << "Unable to charge, download still in progress."; return; } if (d->state == cuc::Transfer::downloaded) { d->state = cuc::Transfer::charged; Q_EMIT(StateChanged(d->state)); return; } QString profile = aa_profile(message().service()); TRACE() << Q_FUNC_INFO << "PROFILE:" << profile; QVariantList ret; Q_FOREACH(QVariant iv, items) { cuc::Item item = qdbus_cast(iv); if (item.url().isEmpty()) { ret.append(QVariant::fromValue(item)); } else { TRACE() << Q_FUNC_INFO; if (profile.toStdString() != QString("unconfined").toStdString() && item.url().isLocalFile()) { TRACE() << Q_FUNC_INFO << "IS LOCAL FILE"; QString file(item.url().toLocalFile()); TRACE() << Q_FUNC_INFO << "FILE:" << file; // Verify app has read access to local file before transfer if (not check_profile_read(profile, file)) { // If failed to access file, abort ret.clear(); goto abort; } } QString newUrl = copy_to_store(item.url().toString(), d->store); if (!newUrl.isEmpty()) { item.setUrl(QUrl(newUrl)); TRACE() << Q_FUNC_INFO << "Item:" << item.url(); ret.append(QVariant::fromValue(item)); } else { ret.clear(); goto abort; } } } abort: if (ret.count() <= 0) { qWarning() << "Failed to charge items, aborting"; d->state = cuc::Transfer::aborted; } else { d->items = ret; d->state = cuc::Transfer::charged; } Q_EMIT(StateChanged(d->state)); } void cucd::Transfer::Download() { TRACE() << __PRETTY_FUNCTION__; if(d->download_id.isEmpty()) { return; } Manager *downloadManager = Manager::createSessionManager(); auto download = downloadManager->getDownloadForId(d->download_id); if (download == nullptr) { TRACE() << downloadManager->lastError(); } else { QDir dir; dir.mkpath(d->store); download->setDestinationDir(d->store); connect(download, SIGNAL(finished(QString)), this, SLOT(DownloadComplete(QString))); connect(download, SIGNAL(error(Ubuntu::DownloadManager::Error*)), this, SLOT(DownloadError(Ubuntu::DownloadManager::Error*))); QVariantMap metadata = download->metadata(); metadata["app-id"] = d->destination; download->setMetadata(metadata); download->start(); d->state = cuc::Transfer::downloading; Q_EMIT(StateChanged(d->state)); } } void cucd::Transfer::AddItemsFromDir(QDir dir) { QFileInfoList files = dir.entryInfoList(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files); Q_FOREACH(const QFileInfo &fileInfo, files) { QString path = fileInfo.absoluteFilePath(); if(fileInfo.isDir()) { AddItemsFromDir(QDir(path)); } else { cuc::Item item = cuc::Item{QUrl::fromLocalFile(path).toString()}; d->items.append(QVariant::fromValue(item)); } } } void cucd::Transfer::DownloadComplete(QString destFilePath) { TRACE() << __PRETTY_FUNCTION__; QFileInfo fileInfo(destFilePath); if(fileInfo.isDir()) { // When downloading and deflating zip files, download manager may // send us the path of the directory that multiple files have been // unpacked into. AddItemsFromDir(QDir(destFilePath)); } else { cuc::Item item = cuc::Item{QUrl::fromLocalFile(destFilePath).toString()}; d->items.append(QVariant::fromValue(item)); } d->state = cuc::Transfer::downloaded; Q_EMIT(StateChanged(d->state)); } void cucd::Transfer::DownloadError(Ubuntu::DownloadManager::Error* error) { TRACE() << __PRETTY_FUNCTION__; qWarning() << "Download manager error: " << error->errorString(); d->state = cuc::Transfer::aborted; Q_EMIT(DownloadManagerError(error->errorString())); Q_EMIT(StateChanged(d->state)); } QVariantList cucd::Transfer::Collect() { TRACE() << __PRETTY_FUNCTION__; if (d->state != cuc::Transfer::collected) { d->state = cuc::Transfer::collected; Q_EMIT(StateChanged(d->state)); } return d->items; } void cucd::Transfer::Finalize() { TRACE() << __PRETTY_FUNCTION__; if (d->state == cuc::Transfer::finalized) return; purge_store_cache(d->store); d->items.clear(); d->state = cuc::Transfer::finalized; Q_EMIT(StateChanged(d->state)); } QString cucd::Transfer::Store() { TRACE() << __PRETTY_FUNCTION__; return d->store; } void cucd::Transfer::SetStore(QString uri) { TRACE() << Q_FUNC_INFO; if (d->store == uri) return; d->store = uri; Q_EMIT(StoreChanged(d->store)); } int cucd::Transfer::SelectionType() { TRACE() << __PRETTY_FUNCTION__; return d->selection_type; } void cucd::Transfer::SetSelectionType(int type) { TRACE() << Q_FUNC_INFO; if (d->state != cuc::Transfer::created) return; if (d->selection_type == type) return; d->selection_type = type; Q_EMIT(SelectionTypeChanged(d->selection_type)); } QString cucd::Transfer::DownloadId() { TRACE() << Q_FUNC_INFO; return d->download_id; } void cucd::Transfer::SetDownloadId(QString DownloadId) { TRACE() << Q_FUNC_INFO; if (d->download_id == DownloadId) return; d->download_id = DownloadId; Q_EMIT(DownloadIdChanged(d->download_id)); } /* returns the object path for the export */ QString cucd::Transfer::export_path() { TRACE() << Q_FUNC_INFO << "source:" << d->source; static const QString exporter_path_pattern{"/transfers/%1/export/%2"}; QString source = exporter_path_pattern .arg(sanitize_id(d->source)) .arg(d->id); return source; } /* returns the object path for the import */ QString cucd::Transfer::import_path() { TRACE() << Q_FUNC_INFO << "destination:" << d->destination; static const QString importer_path_pattern{"/transfers/%1/import/%2"}; QString destination = importer_path_pattern .arg(sanitize_id(d->destination)) .arg(d->id); return destination; } /* sets, if the source app is freshly started by the content hub */ void cucd::Transfer::SetSourceStartedByContentHub(bool started) { d->source_started_by_content_hub = started; } /* returns if the source app was started by the content hub */ bool com::ubuntu::content::detail::Transfer::WasSourceStartedByContentHub() const { return d->source_started_by_content_hub; } /* sets, if the dest app should be invoked by the content hub */ void cucd::Transfer::SetShouldBeStartedByContentHub(bool start) { d->should_be_started_by_content_hub = start; } /* returns if the dest app should be invoked by the content hub */ bool com::ubuntu::content::detail::Transfer::ShouldBeStartedByContentHub() const { return d->should_be_started_by_content_hub; } QString cucd::Transfer::ContentType() { TRACE() << __PRETTY_FUNCTION__; return d->content_type; } content-hub-0.1+16.04.20160309/src/com/ubuntu/content/detail/com.ubuntu.content.Handler.xml0000644000015600001650000000057612670026423031630 0ustar pbuserpbgroup00000000000000 content-hub-0.1+16.04.20160309/src/com/ubuntu/content/detail/service.h0000644000015600001650000000544512670026423025573 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #ifndef SERVICE_H_ #define SERVICE_H_ #include #include #include #include #include #include #include #include #include "handler.h" #include "transfer.h" namespace com { namespace ubuntu { namespace content { namespace detail { class PeerRegistry; class Service : public QObject, protected QDBusContext { Q_OBJECT public: Service(QDBusConnection connection, const QSharedPointer& registry, QSharedPointer& application_manager, QObject* parent = nullptr); Service(const Service&) = delete; ~Service(); Service& operator=(const Service&) = delete; public Q_SLOTS: QDBusVariant DefaultSourceForType(const QString &type_id); QVariantList KnownSourcesForType(const QString &type_id); QVariantList KnownDestinationsForType(const QString &type_id); QVariantList KnownSharesForType(const QString &type_id); QDBusObjectPath CreateImportFromPeer(const QString&, const QString&, const QString&); QDBusObjectPath CreateExportToPeer(const QString&, const QString&, const QString&); QDBusObjectPath CreateShareToPeer(const QString&, const QString&, const QString&); void RegisterImportExportHandler(const QString&, const QDBusObjectPath& handler); void HandlerActive(const QString&); void Quit(); void DownloadManagerError(QString); bool HasPending(const QString&); QDBusVariant PeerForId(const QString&); private: bool should_cancel(int); struct Private; struct RegHandler; QDBusServiceWatcher* m_watcher; QScopedPointer d; private Q_SLOTS: void handle_imports(int); void handle_exports(int); void handler_unregistered(const QString&); QDBusObjectPath CreateTransfer(const QString&, const QString&, int, const QString&); void download_notify(com::ubuntu::content::detail::Transfer*); }; } } } } #endif // SERVICE_H_ content-hub-0.1+16.04.20160309/src/com/ubuntu/content/detail/i18n.cpp0000644000015600001650000000207612670026423025242 0ustar pbuserpbgroup00000000000000/* * Copyright © 2014 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #define NO_TR_OVERRIDE #include "i18n.h" #include namespace com { namespace ubuntu { namespace content { namespace detail { void initTr(const char *domain, const char *localeDir) { bindtextdomain(domain, localeDir); textdomain(domain); } QString __(const char *text, const char *domain) { return QString::fromUtf8(dgettext(domain, text)); } } } } } content-hub-0.1+16.04.20160309/src/com/ubuntu/content/detail/com.ubuntu.content.Transfer.xml0000644000015600001650000000375012670026423032034 0ustar pbuserpbgroup00000000000000 content-hub-0.1+16.04.20160309/src/com/ubuntu/content/detail/service.cpp0000644000015600001650000005465312670026423026133 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ // NEEDED for libnotify include #define QT_NO_KEYWORDS #include "debug.h" #include "service.h" #include "peer_registry.h" #include "i18n.h" #include "transfer.h" #include "transferadaptor.h" #include "utils.cpp" #include "ContentHandlerInterface.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace cua = com::ubuntu::ApplicationManager; namespace cucd = com::ubuntu::content::detail; namespace cuc = com::ubuntu::content; struct cucd::Service::RegHandler { RegHandler(QString id, QString service, cuc::dbus::Handler* handler) : id(id), service(service), handler(handler) { } QString id; QString service; cuc::dbus::Handler* handler; }; struct cucd::Service::Private : public QObject { Private(QDBusConnection connection, const QSharedPointer& registry, QSharedPointer& application_manager, QObject* parent) : QObject(parent), connection(connection), registry(registry), app_manager(application_manager) { } QDBusConnection connection; QSharedPointer registry; QSet active_transfers; QSet handlers; QSharedPointer app_manager; }; cucd::Service::Service(QDBusConnection connection, const QSharedPointer& peer_registry, QSharedPointer& application_manager, QObject* parent) : QObject(parent), m_watcher(new QDBusServiceWatcher()), d(new Private{connection, peer_registry, application_manager, this}) { assert(!peer_registry.isNull()); qDBusRegisterMetaType(); qDBusRegisterMetaType(); m_watcher->setWatchMode(QDBusServiceWatcher::WatchForUnregistration); m_watcher->setConnection(d->connection); QObject::connect(m_watcher, SIGNAL(serviceUnregistered(const QString&)), this, SLOT(handler_unregistered(const QString&))); } cucd::Service::~Service() { TRACE() << Q_FUNC_INFO; Q_FOREACH (cucd::Transfer *t, d->active_transfers) { TRACE() << Q_FUNC_INFO << "Destroying transfer:" << t->Id(); delete t; } } void cucd::Service::Quit() { QCoreApplication::instance()->quit(); } QVariantList cucd::Service::KnownSourcesForType(const QString& type_id) { QVariantList result; d->registry->enumerate_known_sources_for_type( Type(type_id), [&result](const Peer& peer) { result.append(QVariant::fromValue(peer)); }); return result; } QVariantList cucd::Service::KnownDestinationsForType(const QString& type_id) { QVariantList result; d->registry->enumerate_known_destinations_for_type( Type(type_id), [&result](const Peer& peer) { result.append(QVariant::fromValue(peer)); }); return result; } QVariantList cucd::Service::KnownSharesForType(const QString& type_id) { QVariantList result; d->registry->enumerate_known_shares_for_type( Type(type_id), [&result](const Peer& peer) { result.append(QVariant::fromValue(peer)); }); return result; } QDBusVariant cucd::Service::DefaultSourceForType(const QString& type_id) { cuc::Peer peer = d->registry->default_source_for_type(Type(type_id)); return QDBusVariant(QVariant::fromValue(peer)); } QDBusVariant cucd::Service::PeerForId(const QString& app_id) { cuc::Peer peer = cuc::Peer{app_id}; return QDBusVariant(QVariant::fromValue(peer)); } QDBusObjectPath cucd::Service::CreateImportFromPeer(const QString& peer_id, const QString& app_id, const QString& type_id) { TRACE() << Q_FUNC_INFO; QString dest_id = app_id; if (dest_id.isEmpty()) { TRACE() << Q_FUNC_INFO << "APP_ID isnt' set, attempting to get it from AppArmor"; dest_id = aa_profile(this->message().service()); } return CreateTransfer(dest_id, peer_id, cuc::Transfer::Import, type_id); } bool cucd::Service::should_cancel (int st) { TRACE() << Q_FUNC_INFO << "State:" << st; return (st != cuc::Transfer::finalized && st != cuc::Transfer::collected && st != cuc::Transfer::downloaded && st != cuc::Transfer::downloading && st != cuc::Transfer::aborted); } void action_dismiss(NotifyNotification *notification, char *action, gpointer data) { TRACE() << Q_FUNC_INFO; Q_UNUSED(notification); Q_UNUSED(action); cucd::Transfer* t = (cucd::Transfer*)data; t->SetShouldBeStartedByContentHub(false); t->Charge(QVariantList()); } void action_accept(NotifyNotification *notification, char *action, gpointer data) { TRACE() << Q_FUNC_INFO; Q_UNUSED(notification); Q_UNUSED(action); cucd::Transfer* t = (cucd::Transfer*)data; t->Charge(QVariantList()); } void cucd::Service::download_notify (cucd::Transfer* t) { TRACE() << Q_FUNC_INFO; notify_init(t->source().toStdString().c_str()); NotifyNotification* notification; notification = notify_notification_new (__("Download Complete").toStdString().c_str(), "", "save"); notify_notification_set_hint_string(notification, "x-canonical-snap-decisions", "true"); notify_notification_set_hint_string(notification, "x-canonical-non-shaped-icon", "true"); notify_notification_set_hint_string(notification, "x-canonical-private-button-tint", "true"); notify_notification_add_action (notification, "action_accept", __("Open").toStdString().c_str(), action_accept, t, NULL); notify_notification_add_action (notification, "action_dismiss", __("Dismiss").toStdString().c_str(), action_dismiss, t, NULL); GError *error = NULL; if (!notify_notification_show(notification, &error)) { qWarning() << "Failed to show snap decision:" << error->message; g_error_free (error); } } void cucd::Service::DownloadManagerError(QString errorMessage) { notify_init("Download Manager"); NotifyNotification* notification; notification = notify_notification_new (__("Download Failed").toStdString().c_str(), errorMessage.toStdString().c_str(), "save"); GError *error = NULL; if (!notify_notification_show(notification, &error)) { qWarning() << "Failed to show download manager error:" << error->message; g_error_free (error); } } QDBusObjectPath cucd::Service::CreateExportToPeer(const QString& peer_id, const QString& app_id, const QString& type_id) { TRACE() << Q_FUNC_INFO; QString src_id = app_id; if (src_id.isEmpty()) { TRACE() << Q_FUNC_INFO << "APP_ID isnt' set, attempting to get it from AppArmor"; src_id = aa_profile(this->message().service()); } return CreateTransfer(peer_id, src_id, cuc::Transfer::Export, type_id); } QDBusObjectPath cucd::Service::CreateShareToPeer(const QString& peer_id, const QString& app_id, const QString& type_id) { TRACE() << Q_FUNC_INFO; QString src_id = app_id; if (src_id.isEmpty()) { TRACE() << Q_FUNC_INFO << "APP_ID isnt' set, attempting to get it from AppArmor"; src_id = aa_profile(this->message().service()); } return CreateTransfer(peer_id, src_id, cuc::Transfer::Share, type_id); } QDBusObjectPath cucd::Service::CreateTransfer(const QString& dest_id, const QString& src_id, int dir, const QString& type_id) { TRACE() << Q_FUNC_INFO << "DEST:" << dest_id << "SRC:" << src_id << "DIRECTION:" << dir; static size_t import_counter{0}; import_counter++; QUuid uuid{QUuid::createUuid()}; Q_FOREACH (cucd::Transfer *t, d->active_transfers) { if (t->destination() == dest_id || t->source() == src_id) { TRACE() << Q_FUNC_INFO << "Found transfer for peer_id:" << src_id; if (should_cancel(t->State())) { TRACE() << Q_FUNC_INFO << "Aborting active transfer:" << t->Id(); t->Abort(); } } } auto transfer = new cucd::Transfer(import_counter, src_id, dest_id, dir, type_id, this); new TransferAdaptor(transfer); d->active_transfers.insert(transfer); auto destination = transfer->import_path(); auto source = transfer->export_path(); if (not d->connection.registerObject(source, transfer)) TRACE() << "Problem registering object for path: " << source; d->connection.registerObject(destination, transfer); TRACE() << "Created transfer " << source << " -> " << destination; connect(transfer, SIGNAL(DownloadManagerError(QString)), this, SLOT(DownloadManagerError(QString))); // Content flow is different for import if (dir == cuc::Transfer::Import) { connect(transfer, SIGNAL(StateChanged(int)), this, SLOT(handle_imports(int))); return QDBusObjectPath{destination}; } connect(transfer, SIGNAL(StateChanged(int)), this, SLOT(handle_exports(int))); return QDBusObjectPath{source}; } void cucd::Service::handle_imports(int state) { TRACE() << Q_FUNC_INFO << state; cucd::Transfer *transfer = static_cast(sender()); TRACE() << Q_FUNC_INFO << "State: " << transfer->State() << "Id:" << transfer->Id(); if (state == cuc::Transfer::initiated) { TRACE() << Q_FUNC_INFO << "initiated"; if (d->app_manager->is_application_started(transfer->source().toStdString())) transfer->SetSourceStartedByContentHub(false); else transfer->SetSourceStartedByContentHub(true); Q_FOREACH (RegHandler *r, d->handlers) { TRACE() << Q_FUNC_INFO << "ID:" << r->id << "Handler: " << r->service << "Transfer: " << transfer->source(); if (r->id == transfer->source()) { TRACE() << Q_FUNC_INFO << "Found handler for initiated transfer" << r->id; if (r->handler->isValid()) r->handler->HandleExport(QDBusObjectPath{transfer->export_path()}); else TRACE() << Q_FUNC_INFO << "Handler invalid"; } } gchar ** uris = NULL; d->app_manager->invoke_application(transfer->source().toStdString(), uris); } if (state == cuc::Transfer::charged) { TRACE() << Q_FUNC_INFO << "Charged"; if (transfer->WasSourceStartedByContentHub()) d->app_manager->stop_application(transfer->source().toStdString()); gchar ** uris = NULL; if (d->registry->peer_is_legacy(transfer->destination())) { TRACE() << Q_FUNC_INFO << "Destination is a legacy app, collecting"; transfer->SetStore(shared_dir_for_peer(transfer->destination())); auto items = transfer->Collect(); gchar* urls[2] = {0}; gint i = 0; Q_FOREACH (QVariant item, items) { QString s = copy_to_store(item.value().url().toString(), transfer->Store()).split("/shared")[1]; QUrl u = QUrl::fromLocalFile(QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + "/shared" + s); urls[i] = g_str_to_ascii(u.toString().toStdString().c_str(), NULL); i++; } uris = (gchar **)urls; } if (transfer->ShouldBeStartedByContentHub()) d->app_manager->invoke_application(transfer->destination().toStdString(), uris); Q_FOREACH (RegHandler *r, d->handlers) { TRACE() << Q_FUNC_INFO << "ID:" << r->id << "Handler: " << r->service << "Transfer: " << transfer->destination(); if (r->id == transfer->destination()) { TRACE() << Q_FUNC_INFO << "Found handler for charged transfer" << r->id; if (r->handler->isValid()) r->handler->HandleImport(QDBusObjectPath{transfer->import_path()}); } } } if (state == cuc::Transfer::aborted) { if (transfer->WasSourceStartedByContentHub()) { bool shouldStop = true; Q_FOREACH (cucd::Transfer *t, d->active_transfers) { if (t->Id() != transfer->Id()) { if ((t->source() == transfer->source()) && (t->State() == cuc::Transfer::in_progress)) { TRACE() << Q_FUNC_INFO << "Source has pending transfers:" << t->Id(); shouldStop = false; } if (t->destination() == transfer->destination()) { TRACE() << Q_FUNC_INFO << "Destination has pending transfers:" << t->Id(); if (should_cancel(t->State())) shouldStop = false; } } } if (shouldStop) d->app_manager->stop_application(transfer->source().toStdString()); } gchar ** uris = NULL; d->app_manager->invoke_application(transfer->destination().toStdString(), uris); } } void cucd::Service::handle_exports(int state) { TRACE() << Q_FUNC_INFO; cucd::Transfer *transfer = static_cast(sender()); TRACE() << Q_FUNC_INFO << "STATE:" << transfer->State(); if (state == cuc::Transfer::initiated) { TRACE() << Q_FUNC_INFO << "Initiated"; transfer->Handled(); } if (state == cuc::Transfer::downloaded) { TRACE() << Q_FUNC_INFO << "Downloaded"; download_notify(transfer); } if (state == cuc::Transfer::charged) { TRACE() << Q_FUNC_INFO << "Charged"; if (d->app_manager->is_application_started(transfer->destination().toStdString())) transfer->SetSourceStartedByContentHub(false); else transfer->SetSourceStartedByContentHub(true); gchar ** uris = NULL; if (d->registry->peer_is_legacy(transfer->destination())) { TRACE() << Q_FUNC_INFO << "Destination is a legacy app, collecting"; transfer->SetStore(shared_dir_for_peer(transfer->destination())); auto items = transfer->Collect(); gchar* urls[2] = {0}; gint i = 0; Q_FOREACH (QVariant item, items) { QString s = copy_to_store(item.value().url().toString(), transfer->Store()).split("/shared")[1]; QUrl u = QUrl::fromLocalFile(QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + "/shared" + s); urls[i] = g_str_to_ascii(u.toString().toStdString().c_str(), NULL); i++; } uris = (gchar **)urls; } if (transfer->ShouldBeStartedByContentHub()) d->app_manager->invoke_application(transfer->destination().toStdString(), uris); Q_FOREACH (RegHandler *r, d->handlers) { TRACE() << "Handler: " << r->service << "Transfer: " << transfer->destination(); if (r->id == transfer->destination()) { TRACE() << "Found handler for charged transfer" << r->id; if (transfer->Direction() == cuc::Transfer::Share && r->handler->isValid()) r->handler->HandleShare(QDBusObjectPath{transfer->import_path()}); else if (r->handler->isValid()) r->handler->HandleImport(QDBusObjectPath{transfer->import_path()}); } } } if (state == cuc::Transfer::aborted) { TRACE() << Q_FUNC_INFO << "Aborted"; if (transfer->WasSourceStartedByContentHub()) { bool shouldStop = true; Q_FOREACH (cucd::Transfer *t, d->active_transfers) { if (t->Id() != transfer->Id()) { if ((t->source() == transfer->source()) && (t->State() == cuc::Transfer::in_progress)) { TRACE() << Q_FUNC_INFO << "Source has pending transfers:" << t->Id(); shouldStop = false; } if (t->destination() == transfer->destination()) { TRACE() << Q_FUNC_INFO << "Destination has pending transfers:" << t->Id(); if (should_cancel(t->State())) shouldStop = false; } } } if (shouldStop) d->app_manager->stop_application(transfer->destination().toStdString()); } gchar ** uris = NULL; d->app_manager->invoke_application(transfer->source().toStdString(), uris); } } void cucd::Service::handler_unregistered(const QString& s) { TRACE() << Q_FUNC_INFO << s; if (d->handlers.isEmpty()) return; Q_FOREACH (RegHandler *r, d->handlers) { TRACE() << "Handler: " << r->id; if (r->service == s) { TRACE() << "Found match for " << r->id; d->handlers.remove(r); m_watcher->removeWatchedService(s); delete r; } } } void cucd::Service::RegisterImportExportHandler(const QString& peer_id, const QDBusObjectPath& handler) { TRACE() << Q_FUNC_INFO << peer_id; bool exists = false; RegHandler* r; Q_FOREACH (RegHandler *rh, d->handlers) { TRACE() << "Handler: " << rh->id; if (rh->id == peer_id) { TRACE() << "Found existing handler for " << rh->id; exists = true; r = rh; } } if (!exists) { r = new RegHandler{peer_id, this->message().service(), new cuc::dbus::Handler( this->message().service(), handler.path(), QDBusConnection::sessionBus(), 0)}; d->handlers.insert(r); m_watcher->addWatchedService(r->service); } TRACE() << Q_FUNC_INFO << r->id; Q_FOREACH (cucd::Transfer *t, d->active_transfers) { TRACE() << Q_FUNC_INFO << "SOURCE: " << t->source() << "DEST:" << t->destination() << "STATE:" << t->State(); if ((t->source() == peer_id) && (t->State() == cuc::Transfer::initiated)) { TRACE() << Q_FUNC_INFO << "Found source:" << peer_id << "Direction:" << t->Direction(); if (t->Direction() == cuc::Transfer::Import) { if (r->handler->isValid()) r->handler->HandleExport(QDBusObjectPath{t->export_path()}); } } else if ((t->destination() == peer_id) && (t->State() == cuc::Transfer::charged)) { TRACE() << Q_FUNC_INFO << "Found destination:" << peer_id << "Direction:" << t->Direction(); if (t->Direction() == cuc::Transfer::Export) { TRACE() << Q_FUNC_INFO << "Found import, calling HandleImport"; if (r->handler->isValid()) r->handler->HandleImport(QDBusObjectPath{t->import_path()}); } else if (t->Direction() == cuc::Transfer::Share) { TRACE() << Q_FUNC_INFO << "Found share, calling HandleShare"; if (r->handler->isValid()) r->handler->HandleShare(QDBusObjectPath{t->import_path()}); } } else if ((t->destination() == peer_id) && (t->State() == cuc::Transfer::downloaded)) { TRACE() << Q_FUNC_INFO << "Found destination:" << peer_id << "Direction:" << t->Direction(); if (t->Direction() == cuc::Transfer::Export) { TRACE() << Q_FUNC_INFO << "Found downloaded import, charging"; if (r->handler->isValid()) t->Charge(QVariantList()); } } } } void cucd::Service::HandlerActive(const QString& peer_id) { TRACE() << Q_FUNC_INFO << peer_id; Q_FOREACH (cucd::Transfer *t, d->active_transfers) { if ((t->destination() == peer_id) && (t->State() == cuc::Transfer::downloaded)) { TRACE() << Q_FUNC_INFO << "Found destination:" << peer_id << "Direction:" << t->Direction(); if (t->Direction() == cuc::Transfer::Export) { TRACE() << Q_FUNC_INFO << "Found downloaded import, charging"; t->Charge(QVariantList()); } } } } bool cucd::Service::HasPending(const QString& peer_id) { TRACE() << Q_FUNC_INFO << peer_id; Q_FOREACH (cucd::Transfer *t, d->active_transfers) { TRACE() << Q_FUNC_INFO << "SOURCE: " << t->source() << "DEST:" << t->destination() << "STATE:" << t->State(); if (((t->source() == peer_id) || (t->destination() == peer_id)) && (t->State() == cuc::Transfer::initiated)) { TRACE() << Q_FUNC_INFO << "Has pending:" << peer_id; return true; } } return false; } content-hub-0.1+16.04.20160309/src/com/ubuntu/content/peer.cpp0000644000015600001650000001522212670026423024151 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . * * Authored by: Thomas Voß */ #include #include #include #include #include "debug.h" namespace cuc = com::ubuntu::content; struct cuc::Peer::Private { Private (QString id, bool isDefaultPeer, bool legacy) : id(id), isDefaultPeer(isDefaultPeer), legacy(legacy) { TRACE() << Q_FUNC_INFO << id; if (not id.isEmpty()) { TRACE() << Q_FUNC_INFO << "Getting appinfo for" << id; char * dir = nullptr; char * file = nullptr; GDesktopAppInfo* app; if (ubuntu_app_launch_application_info(id.toStdString().c_str(), &dir, &file)) { app = g_desktop_app_info_new_from_filename (g_strjoin("/", dir, file, NULL)); if (QString::fromUtf8(dir).contains("libertine-container")) { TRACE() << Q_FUNC_INFO << "Legacy app detected"; legacy = true; } Q_UNUSED(app); GKeyFile *key_file = g_key_file_new(); GError *error = NULL; if (!g_key_file_load_from_file(key_file, g_strjoin("/", dir, file, NULL), G_KEY_FILE_NONE, &error)) { qWarning() << "ERROR:" <message; } else { QString iconPath; name = QString::fromUtf8 (g_key_file_get_locale_string(key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_NAME, NULL, &error)); TRACE() << Q_FUNC_INFO << "name:" << name; if (!legacy) { iconName = QString::fromUtf8 (g_key_file_get_locale_string(key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_ICON, NULL, &error)); if (iconName.startsWith("/")) iconPath = iconName; else iconPath = QString::fromUtf8 (dir) + "/" + iconName; } else { iconPath = "/usr/share/content-hub/icons/xorg.png"; } TRACE() << Q_FUNC_INFO << "iconName:" << iconName; if (QFile::exists(iconPath)) { QFile iconFile(iconPath); if(iconFile.open(QIODevice::ReadOnly)) { iconData = iconFile.readAll(); iconFile.close(); } } } } g_free(dir); g_free(file); } } Private (QString id, QString name, QByteArray iconData, QString iconName, bool isDefaultPeer, bool legacy) : id(id), name(name), iconData(iconData), iconName(iconName), isDefaultPeer(isDefaultPeer), legacy(legacy) { TRACE() << Q_FUNC_INFO << id; } QString id; QString name; QByteArray iconData; QString iconName; bool isDefaultPeer; bool legacy; }; const cuc::Peer& cuc::Peer::unknown() { static cuc::Peer peer; return peer; } cuc::Peer::Peer(const QString& id, bool isDefaultPeer, bool legacy, QObject* parent) : QObject(parent), d(new cuc::Peer::Private{id, isDefaultPeer, legacy}) { TRACE() << Q_FUNC_INFO; } cuc::Peer::Peer(const QString& id, const QString& name, QByteArray& iconData, const QString& iconName, bool isDefaultPeer, bool legacy, QObject* parent) : QObject(parent), d(new cuc::Peer::Private{id, name, iconData, iconName, isDefaultPeer, legacy}) { TRACE() << Q_FUNC_INFO; } cuc::Peer::Peer(const cuc::Peer& rhs) : QObject(rhs.parent()), d(rhs.d) { } cuc::Peer::~Peer() { } cuc::Peer& cuc::Peer::operator=(const cuc::Peer& rhs) { d = rhs.d; return *this; } bool cuc::Peer::operator==(const cuc::Peer& rhs) const { if (d == rhs.d) return true; return d->id == rhs.d->id; } const QString& cuc::Peer::id() const { return d->id; } QString cuc::Peer::name() const { return d->name; } void cuc::Peer::setName(const QString& name) { if (name != d->name) d->name = name; } QByteArray cuc::Peer::iconData() const { return d->iconData; } void cuc::Peer::setIconData(const QByteArray& iconData) { if (iconData != d->iconData) d->iconData = iconData; } QString cuc::Peer::iconName() const { return d->iconName; } void cuc::Peer::setIconName(const QString& iconName) { if (iconName != d->iconName) d->iconName = iconName; } bool cuc::Peer::isDefaultPeer() const { return d->isDefaultPeer; } bool cuc::Peer::legacy() const { return d->legacy; } QDBusArgument &operator<<(QDBusArgument &argument, const cuc::Peer& peer) { argument.beginStructure(); argument << peer.id() << peer.name() << peer.iconData() << peer.iconName() << peer.isDefaultPeer() << peer.legacy(); argument.endStructure(); return argument; } const QDBusArgument &operator>>(const QDBusArgument &argument, cuc::Peer &peer) { TRACE() << Q_FUNC_INFO; QString id; QString name; QByteArray ic; QString iconName; bool isDefaultPeer; bool legacy; argument.beginStructure(); argument >> id >> name >> ic >> iconName >> isDefaultPeer >> legacy; argument.endStructure(); peer = cuc::Peer{id, name, ic, iconName, isDefaultPeer, legacy}; return argument; } content-hub-0.1+16.04.20160309/src/com/ubuntu/applicationmanager/0000755000015600001650000000000012670026644024701 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/src/com/ubuntu/applicationmanager/application_manager.h0000644000015600001650000000363612670026423031052 0ustar pbuserpbgroup00000000000000/* * Copyright © 2013 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_UBUNTU_APPLICATION_MANAGER_H_ #define COM_UBUNTU_APPLICATION_MANAGER_H_ #include #include namespace com { namespace ubuntu { namespace ApplicationManager { class ApplicationManager { public: ApplicationManager() = default; ApplicationManager(const ApplicationManager&) = default; virtual ~ApplicationManager() = default; ApplicationManager& operator=(const ApplicationManager&) = default; /*! * \brief invoke_application starts an application, and brings it to foreground * \param app_id ID for the application (for example "gallery-app" - used for the desktop) */ virtual bool invoke_application(const std::string &app_id, gchar ** uris) = 0; /*! * \brief stop_application stops an application started by ubuntu * \param app_id ID for the application (for example "gallery-app" - used for the desktop) */ virtual bool stop_application(const std::string &app_id) = 0; /*! * \brief is_application_started returns true, if the application s already started by ubuntu * \param app_id ID for the application (for example "gallery-app" - used for the desktop) */ virtual bool is_application_started(const std::string &app_id) = 0; }; } } } #endif // COM_UBUNTU_APPLICATION_MANAGER_H_ content-hub-0.1+16.04.20160309/src/com/ubuntu/CMakeLists.txt0000644000015600001650000000126212670026423023577 0ustar pbuserpbgroup00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss add_subdirectory(content)content-hub-0.1+16.04.20160309/src/com/CMakeLists.txt0000644000015600001650000000126112670026423022254 0ustar pbuserpbgroup00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss add_subdirectory(ubuntu)content-hub-0.1+16.04.20160309/README0000644000015600001650000000213412670026423017027 0ustar pbuserpbgroup00000000000000What is content-hub? -------------------- content-hub is a mediation service to let applications share content between them even if they are not running at the same time. For a more detailed description, please have a look at: doc/Mainpage.md How do I get all building dependencies? --------------------------------------- Build dependencies are already listed in the debian/control file. To get them use the following command: sudo apt-get build-dep content-hub How do I compile the code? -------------------------- To compile the code run the following command from the branch directory: mkdir build cd build cmake .. make How do I run the test cases? ---------------------------- To run the test cases use the following command: cd build/tests dbus-test-runner -t make -p test How do I build the packages? ---------------------------- To build the pacakges run the following command: bzr builddeb How do I install the code? -------------------------- One way to do it one the code is compiled is: make install However, the recommended way to do it is by installing the packages built manually. content-hub-0.1+16.04.20160309/po/0000755000015600001650000000000012670026644016572 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/po/pl.po0000644000015600001650000000523512670026423017545 0ustar pbuserpbgroup00000000000000# Polish translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-02-20 15:20+0000\n" "Last-Translator: GTriderXC \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Wybierz z" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Otwórz za pomocą" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Udostępnij dla" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Programy" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Niestety nie zainstalowano żadnego programu, który oferowałby treści tego " "typu." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Niestety nie zainstalowano żadnego programu, który obsługiwałby treści tego " "typu." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Urządzenia" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Anuluj" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Przesyłanie w toku" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Zakończono pobieranie" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Otwórz" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Odrzuć" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Pobieranie nieudane" content-hub-0.1+16.04.20160309/po/bs.po0000644000015600001650000000527412670026423017541 0ustar pbuserpbgroup00000000000000# Bosnian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-17 20:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Izaberi iz" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Otvori pomoću" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Dijeli sa" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Aplikacije" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Žao nam je, ne postoje bilo kakve trenutno instalirane aplikacije koje " "mogu da pruže ovu vrstu sadržaja." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Žao nam je, ne postoje bilo kakve trenutno instalirane aplikacije koje " "mogu da obrade ovu vrstu sadržaja." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Uređaji" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Otkaži" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Prijenos u toku" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Preuzimanje gotovo" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Otvori" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Odbaci" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Preuzimanje nije uspjelo" content-hub-0.1+16.04.20160309/po/pa.po0000644000015600001650000000607412670026423017534 0ustar pbuserpbgroup00000000000000# Punjabi translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-02-15 05:46+0000\n" "Last-Translator: Gursharnjit_Singh \n" "Language-Team: Punjabi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "ਇਸ ਤੋਂ ਚੁਣੋ" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "ਇਸ ਨਾਲ ਖੋਲ੍ਹੋ" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "ਸਾਂਝਾ ਕਰੋ" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "ਐਪਸ" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "ਮੁਆਫ਼ੀ, ਇੱਥੇ ਮੌਜੂਦਾ ਤੌਰ ਤੇ ਕੋਈ ਐਪਸ ਇੰਸਟਾਲ ਨਹੀਂ ਹਨ ਜੋ ਇਸ ਕਿਸਮ ਦੀ ਸਮੱਗਰੀ ਮੁਹੱਈਆ " "ਕਰਵਾਉਣ।" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "ਮੁਆਫ਼ੀ, ਇੱਥੇ ਮੌਜੂਦਾ ਤੌਰ ਤੇ ਕੋਈ ਐਪਸ ਇੰਸਟਾਲ ਨਹੀਂ ਹਨ ਜੋ ਇਸ ਕਿਸਮ ਦੀ ਸਮੱਗਰੀ ਸੰਭਾਲਣ।" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "ਯੰਤਰ" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "ਰੱਦ ਕਰੋ" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "ਟਰਾਂਸਫਰ ਜਾਰੀ ਹੈ" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "ਡਾਊਨਲੋਡ ਮੁਕੰਮਲ" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "ਖੋਲ੍ਹੋ" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "ਅਣਡਿੱਠਾ" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "ਡਾਊਨਲੋਡ ਫੇਲ੍ਹ ਹੋਇਆ" content-hub-0.1+16.04.20160309/po/az.po0000644000015600001650000000464212670026423017545 0ustar pbuserpbgroup00000000000000# Azerbaijani translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-02-05 11:30+0000\n" "Last-Translator: Nicat Məmmədov \n" "Language-Team: Azerbaijani \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Tətbiqetmələr" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Cihazlar" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "İmtina" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Endirilmə Tamamlandı" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Aç" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "" content-hub-0.1+16.04.20160309/po/gl.po0000644000015600001650000000524212670026423017532 0ustar pbuserpbgroup00000000000000# Galician translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-09-23 20:22+0000\n" "Last-Translator: Marcos Lans \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Escoller de" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Abrir con" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Compartir con" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Aplicativos" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Sentímolo, non hai ningún aplicativo instalado que proporcione este tipo de " "contido." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Sentímolo, non hai ningún aplicativo instalado que manexe este tipo de " "contido." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Dispositivos" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cancelar" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferencia en proceso" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Completouse a descarga" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Abrir" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Rexeitar" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Produciuse un fallo na descarga" content-hub-0.1+16.04.20160309/po/nl.po0000644000015600001650000000517612670026423017547 0ustar pbuserpbgroup00000000000000# Dutch translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-09 09:19+0000\n" "Last-Translator: rob \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Selecteer" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Openen met" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Delen op" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Apps" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Sorry, er is momenteel geen app geïnstalleerd die dit type bestand kan " "aanmaken." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Sorry, er is momenteel geen app geïnstalleerd die met dit type bestand kan " "omgaan." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Apparaten" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Annuleren" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Overdracht is bezig" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Downloaden is voltooid" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Openen" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Negeren" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Downloaden is mislukt" content-hub-0.1+16.04.20160309/po/ca.po0000644000015600001650000000522412670026423017513 0ustar pbuserpbgroup00000000000000# Catalan translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-07 12:37+0000\n" "Last-Translator: David Planella \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Trieu entre" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Obre amb" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Comparteix a" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Aplicacions" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "No hi ha cap aplicació instal·lada que proporcioni aquest tipus de contingut." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "No hi ha cap aplicació instal·lada que gestioni aquest tipus de contingut." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Dispositius" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cancel·la" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferència en curs" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "S'ha acabat la baixada" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Obre" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Descarta" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Ha fallat la baixada" content-hub-0.1+16.04.20160309/po/ia.po0000644000015600001650000000530112670026423017515 0ustar pbuserpbgroup00000000000000# Interlingua translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-05-17 11:07+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Interlingua \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Seliger ex" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Aperir con" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Compartir con" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Applicationes" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Displacente, il non ha actualmente alcun applicationes installate que pote " "suppler iste typo de contento." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Displacente, il non ha actualmente alcun applicationes installate que pote " "tractar iste typo de contento." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Dispositivos" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Deler" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferentia in curso" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Discarga complete" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Aperir" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Dimitter" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Discarga fallite" content-hub-0.1+16.04.20160309/po/zh_TW.po0000644000015600001650000000512012670026423020156 0ustar pbuserpbgroup00000000000000# Chinese (Traditional) translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-11-19 14:48+0000\n" "Last-Translator: Walter Cheuk \n" "Language-Team: Chinese (Traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "選取自:" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "以此開啟:" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "分享給:" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "程式" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "抱歉,目前未有能提供此類內容的程式。" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "抱歉,目前未有能處理此類內容的程式。" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "裝置" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "取消" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "傳送中" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "下載完畢" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "開啟" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "解除" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "下載失敗" content-hub-0.1+16.04.20160309/po/ca@valencia.po0000644000015600001650000000522012670026423021312 0ustar pbuserpbgroup00000000000000# Catalan translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-11-01 15:33+0000\n" "Last-Translator: David Planella \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Trieu entre" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Obri amb" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Comparteix a" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Aplicacions" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "No hi ha cap aplicació instal·lada que proporcioni este tipus de contingut." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "No hi ha cap aplicació instal·lada que gestione este tipus de contingut." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Dispositius" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cancel·la" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferència en curs" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "S'ha acabat la baixada" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Obri" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Descarta" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Ha fallat la baixada" content-hub-0.1+16.04.20160309/po/nb.po0000644000015600001650000000513512670026423017530 0ustar pbuserpbgroup00000000000000# Norwegian Bokmal translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-09 13:53+0000\n" "Last-Translator: Åka Sikrom \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Velg mellom" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Åpne med" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Del via" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Programmer" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "Du har ingen installerte programmer som tilbyr slikt innhold." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "Du har ingen installerte programmer som kan håndtere slikt innhold." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Enheter" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Avbryt" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Overføring pågår" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Nedlasting fullført" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Åpne" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Avvis" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Nedlasting mislyktes" content-hub-0.1+16.04.20160309/po/et.po0000644000015600001650000000453112670026423017540 0ustar pbuserpbgroup00000000000000# Estonian translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-09-21 18:50+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "" content-hub-0.1+16.04.20160309/po/cs.po0000644000015600001650000000533012670026423017533 0ustar pbuserpbgroup00000000000000# Czech translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-05-06 19:23+0000\n" "Last-Translator: Vojtěch Daněk \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Vybrat z" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Otevřít s" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Sdílet" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Aplikace" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Omlouváme se, ale v současné době nejsou nainstalovány žádné aplikace, které " "mohou poskytovat tento typ obsahu." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Omlouváme se, ale v současné době nejsou nainstalovány žádné aplikace, které " "mohou zvládnout tento typ obsahu." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Zařízení" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Zrušit" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Probíhá přenos" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Stahování dokončeno" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Otevřít" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Zrušit" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Stahování selhalo" content-hub-0.1+16.04.20160309/po/fa.po0000644000015600001650000000556312670026423017524 0ustar pbuserpbgroup00000000000000# Persian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-12 13:41+0000\n" "Last-Translator: Danial Behzadi \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "گزیدن از" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "گشودن با" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "اشتراک گذاری به" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "اپ‌ها" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "متأسّفیم، در حال حاضر هیچ اپی که بتواند این نوع محتوا را فراهم کند نصب نشده " "است." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "متأسّفیم، در حال حاضر هیچ اپی که بتواند این نوع محتوا را مدیریت کند نصب نشده " "است." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "‌دستگاه‌ها" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "لغو" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "جابه‌جایی در حال انجام" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "بارگیری پایان یافت" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "گشودن" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "رد کردن" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "بارگیری شکست خورد" content-hub-0.1+16.04.20160309/po/pt.po0000644000015600001650000000526012670026423017553 0ustar pbuserpbgroup00000000000000# Portuguese translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-09-21 16:47+0000\n" "Last-Translator: Ivo Xavier \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Escolha de" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Abrir com" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Partilhar para" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Apps" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Atualmente não estão instaladas apps que consigam fornecer este tipo de " "conteúdo." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Atualmente não estão instaladas apps que consigam lidar com este tipo de " "conteúdo." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Dispositivos" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cancelar" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferência em progresso" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Transferência concluída" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Abrir" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Descartar" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "A transferência falhou" content-hub-0.1+16.04.20160309/po/en_GB.po0000644000015600001650000000523712670026423020106 0ustar pbuserpbgroup00000000000000# English (United Kingdom) translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-09 12:28+0000\n" "Last-Translator: Andi Chandler \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Choose from" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Open with" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Share to" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Apps" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Devices" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cancel" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transfer in progress" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Download Complete" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Open" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Dismiss" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Download Failed" content-hub-0.1+16.04.20160309/po/sq.po0000644000015600001650000000525512670026423017557 0ustar pbuserpbgroup00000000000000# Albanian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-08 12:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Zgjidh nga" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Hap me" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Shpërndaje tek" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Programet" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Më vjen keq, për momentin nuk ka asnjë program të instaluar që mund të japë " "këtë lloj përmbajtjeje." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Më vjan keq, nuk ka asnjë program të instaluar që mund ta hapë këtë lloj " "përmbajtjeje." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Pajisjet" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Anulo" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferimi në progres" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Sharkimi Përfundoi" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Hape" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Anulloje" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Shkarkimi Dështoi" content-hub-0.1+16.04.20160309/po/pt_BR.po0000644000015600001650000000537112670026423020141 0ustar pbuserpbgroup00000000000000# Brazilian Portuguese translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-13 14:56+0000\n" "Last-Translator: Tiago Hillebrandt \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Escolher de" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Abrir com" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Compartilhar para" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Apps" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Desculpe, não existem atualmente quaisquer aplicativos instalados que possam " "fornecer este tipo de conteúdo." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Desculpe, não existem atualmente quaisquer aplicativos instalados que podem " "lidar com este tipo de conteúdo." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Dispositivos" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cancelar" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferência em andamento" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Download concluído" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Abrir" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Descartar" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Falha ao baixar" content-hub-0.1+16.04.20160309/po/ta.po0000644000015600001650000000452312670026423017535 0ustar pbuserpbgroup00000000000000# Tamil translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-06-30 10:48+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Tamil \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "" content-hub-0.1+16.04.20160309/po/sk.po0000644000015600001650000000527412670026423017552 0ustar pbuserpbgroup00000000000000# Slovak translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2016-02-29 10:23+0000\n" "Last-Translator: P_E_T_O \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-03-01 05:51+0000\n" "X-Generator: Launchpad (build 17925)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Vybrať z" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Otvoriť s" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Zdieľať" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Aplikácie" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Prepáčte, aktuálne nie sú nainštalované žiadne aplikácie, ktoré dokážu " "poskytovať tento typ obsahu." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Prepáčte, aktuálne nie sú nainštalované žiadne aplikácie, ktoré dokážu " "spracovať tento typ obsahu." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Zariadenia" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Zrušiť" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Prenos prebieha" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Sťahovanie dokončené" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Otvoriť" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Zrušiť" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Sťahovanie neúspešné" content-hub-0.1+16.04.20160309/po/oc.po0000644000015600001650000000534012670026423017530 0ustar pbuserpbgroup00000000000000# Occitan (post 1500) translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-11-11 12:19+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Causir demest" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Dobrir amb" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Partejar amb" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Aplicacions" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "O planhèm, actualament i a pas cap d'aplicacion d'installada que pòsca " "provesir aqueste tipe de contengut." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "O planhèm, actualament i a pas cap d'aplicacion d'installada que pòsca " "tractar aqueste tipe de contengut." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Periferics" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Abandonar" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferiment en cors" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Telecargament acabat" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Dobrir" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Ignorar" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Telecargament fracassat" content-hub-0.1+16.04.20160309/po/sv.po0000644000015600001650000000522312670026423017557 0ustar pbuserpbgroup00000000000000# Swedish translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-12 10:38+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Välj bland" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Öppna med" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Dela på" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Program" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Det finns tyvärr inga installerade program som kan tillhandahålla den här " "sortens innehåll." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Det finns tyvärr inga installerade program som kan hantera den här sortens " "innehåll." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Enheter" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Avbryt" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Överföring pågår" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Hämtning färdig" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Öppna" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Avfärda" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Hämtning misslyckades" content-hub-0.1+16.04.20160309/po/lv.po0000644000015600001650000000522312670026423017550 0ustar pbuserpbgroup00000000000000# Latvian translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-02-28 19:17+0000\n" "Last-Translator: Rūdolfs Mazurs \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Izvēlieties formu" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Atvērt ar" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Koplietot uz" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Lietotnes" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Diemžēl nav uzinstalētas tādas lietotnes, kas var sniegt šāda veida saturu." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Diemžēl nav uzinstalētas tādas lietotnes, kas var apstādāt šāda veida saturu." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Ierīces" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Atcelt" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Notiek pārsūtīšana" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Lejupielāde pabeigta" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Atvērt" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Atmest" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Neizdevās lejupielādēt" content-hub-0.1+16.04.20160309/po/id.po0000644000015600001650000000522312670026423017523 0ustar pbuserpbgroup00000000000000# Indonesian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-12 02:57+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Pilih dari" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Buka dengan" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Bagikan ke" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Aplikasi" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Maaf, saat ini tak ada aplikasi terpasang yang dapat menyediakan isi dengan " "tipe ini." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Maaf, saat ini tak ada aplikasi terpasang yang dapat menangani isi dengan " "tipe ini." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Perangkat" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Batal" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transfer tengah berlangsung" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Pengunduhan Selesai" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Buka" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Singkirkan" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Pengunduhan Gagal" content-hub-0.1+16.04.20160309/po/ar.po0000644000015600001650000000545012670026423017533 0ustar pbuserpbgroup00000000000000# Arabic translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-11-02 22:04+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Arabic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "اختيار من" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "فتح باستخدام" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "مشاركة إلى" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "التطبيقات" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "عذراً، لا يوجد حالياً أي تطبيقات مثبتة تستطيع تقديم هذا النوع من المحتوى." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "عذراً، لا يوجد حالياً أي تطبيقات مثبتة تستطيع معالجة هذا النوع من المحتوى." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "الأجهزة" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "إلغاء" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "النقل قيد التقدم" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "اكتمل التنزيل" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "فتح" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "تجاهل" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "فشل التنزيل" content-hub-0.1+16.04.20160309/po/th.po0000644000015600001650000000452112670026423017542 0ustar pbuserpbgroup00000000000000# Thai translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-08-15 10:48+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "" content-hub-0.1+16.04.20160309/po/ko.po0000644000015600001650000000526212670026423017543 0ustar pbuserpbgroup00000000000000# Korean translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-08 04:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "다음에서 선택" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "다음으로 열기" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "다음으로 공유" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "프로그램" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "죄송합니다. 이 형식의 내용을 열 수 있는 프로그램을 설치하지 않았습니다." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "죄송합니다. 이 형식의 내용을 다룰 수 있는 프로그램을 설치하지 않았습니다." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "장치" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "취소" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "전송 중" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "다운로드 완료" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "열기" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "없애기" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "다운로드 실패" content-hub-0.1+16.04.20160309/po/hu.po0000644000015600001650000000535012670026423017544 0ustar pbuserpbgroup00000000000000# Hungarian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-09 06:08+0000\n" "Last-Translator: Richard Somlói \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Kiválasztás" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Megnyitás" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Megosztás" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Alkalmazások" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Sajnáljuk, de jelenleg nincs egyetlen olyan alkalmazás se telepítve, ami a " "megadott tartalomtípust biztosítaná." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Sajnáljuk, de jelenleg nincs egyetlen olyan alkalmazás se telepítve, ami a " "megadott tartalomtípust kezelné." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Eszközök" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Mégse" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Átvitel folyamatban" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Letöltés befejezve" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Megnyitás" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Bezárás" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Sikertelen letöltés" content-hub-0.1+16.04.20160309/po/br.po0000644000015600001650000000533012670026423017531 0ustar pbuserpbgroup00000000000000# Breton translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-09-24 09:24+0000\n" "Last-Translator: Fohanno Thierry \n" "Language-Team: Breton \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Dibab e-touez" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Digeriñ gant" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Rannañ gant" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Arloadoù" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Digarezit ac'hanomp, evit bremañ n'eus ket arloadoù staliet hag a c'hall " "pourchas ar seurt endalc'h-se." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Digarezit ac'hanomp, evit bremañ n'eus ket arloadoù staliet hag a c'hall " "ober gant ar seurt endalc'h-se." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Trobarzhelloù" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Nullañ" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "O treuzkas" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Echu eo ar pellgargañ" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Digeriñ" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Disteurel" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "C'hwitet eo ar pellgargañ" content-hub-0.1+16.04.20160309/po/ne.po0000644000015600001650000000642412670026423017535 0ustar pbuserpbgroup00000000000000# Nepali translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-11-05 09:15+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Nepali \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "निम्नबाट छान्नुहोस्" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "निम्नबाट खोल्नुहोस्" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "निम्नसंग बाँड्नुहोस्" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "अनुप्रयोगहरू" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "माफ गर्नुहोस् , यस प्रकारको सामग्री प्रदान गर्न सक्ने कुनै पनि अनुप्रयोगहरू " "हाल स्थापित भएका छैनन् ।" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "माफ गर्नुहोस् , यस प्रकारको सामग्रीलाई ह्यान्डल गर्न सक्ने कुनै पनि " "अनुप्रयोगहरू हाल स्थापित भएका छैनन् ।" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "यन्त्रहरू" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "रद्द" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "सार्ने कार्य हुँदैछ" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "डाउनलोड सम्पन्न" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "खुला" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "खारेज" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "डाउनलोड असफल" content-hub-0.1+16.04.20160309/po/my.po0000644000015600001650000000477412670026423017566 0ustar pbuserpbgroup00000000000000# Burmese translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-07-25 07:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Burmese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Apps" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "ကိရိယာများ" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "ပယ်ဖျက်သည်" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "ကြန္ယက္မွ ဆြဲယူျခင္း ၿပီးဆုံးပါၿပီ။" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "" content-hub-0.1+16.04.20160309/po/sl.po0000644000015600001650000000514112670026423017544 0ustar pbuserpbgroup00000000000000# Slovenian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-09 11:56+0000\n" "Last-Translator: Damir Jerovšek \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Izberi med" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Odpri z" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Souporaba z" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Programi" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Trenutno ni nameščenih namenskih programov za ponudbo te vrste vsebine." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Trenutno ni nameščenih namenskih programov za obravnavo te vrste vsebine." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Naprave" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Prekliči" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Poteka prenos" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Prejem je končan" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Odpri" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Opusti" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Prejem ni uspel" content-hub-0.1+16.04.20160309/po/cy.po0000644000015600001650000000520312670026423017540 0ustar pbuserpbgroup00000000000000# Welsh translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-07-31 12:01+0000\n" "Last-Translator: Owen Llywelyn \n" "Language-Team: Welsh \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Dewis o" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Agor gyda" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Rhannu i" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Apiau" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Ymddiheuriadau, does dim apiau wedi'u gosod all ddarparu cynnwys o'r math " "hwn." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Ymddiheuriadau, does dim apiau wedi'u gosod all drin cynnwys o'r math hwn." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Dyfeisiau" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Diddymu" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Trosglwyddo yn digwydd" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Llwytho i lawr wedi cwblhau" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Agor" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Gwrthod" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Methodd y llwytho i lawr" content-hub-0.1+16.04.20160309/po/ga.po0000644000015600001650000000532312670026423017517 0ustar pbuserpbgroup00000000000000# Irish translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-12-16 16:07+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Irish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Roghnaigh idir" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Oscail le" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Roinn go" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Feidhmchláir" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Tá brón orm, níl aon feidhmchlár suiteáilte faoi láthar ar féidir leis an " "cineál ábhar seo a chur ar fáil" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Tá brón orm, níl aon feidhmchlár suiteáilte faoi láthar ar féidir leis an " "cineál ábhar seo a chur ar fáil" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Gléasanna" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cealaigh" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Seachadadh i bhfeidhm" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Íosluchtú Críochnaithe" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Oscail" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Ruaig" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Theip ar an Íosluchtú" content-hub-0.1+16.04.20160309/po/it.po0000644000015600001650000000516012670026423017543 0ustar pbuserpbgroup00000000000000# Italian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-09 18:38+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Scegli da" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Apri con" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Condividi con" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "App" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Non ci sono app installate che possano fornire questo tipo di contenuto." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Non ci sono app installate che possano gestire questo tipo di contenuto." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Dispositivi" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Annulla" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Trasferimento in corso" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Scaricamento completato" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Apri" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Chiudi" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Scaricamento non riuscito" content-hub-0.1+16.04.20160309/po/gd.po0000644000015600001650000000535012670026423017522 0ustar pbuserpbgroup00000000000000# Gaelic; Scottish translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # GunChleoc , 2014. msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-09 18:09+0000\n" "Last-Translator: GunChleoc \n" "Language-Team: Fòram na Gàidhlig\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" "Language: gd\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Tagh o" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Fosgail le" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Co-roinn air" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Aplacaidean" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Duilich ach chan eil aplacaid stàlaichte agad gus an t-susbaint seo a thoirt " "dhut." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Duilich ach chan eil aplacaid stàlaichte agad gus an t-susbaint seo a " "làimhseachadh." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Uidheaman" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Sguir dheth" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "'Ga thar-chur" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Tha an luchdadh a-nuas coileanta" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Fosgail" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Cuir air falbh" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Dh'fhàillig an luchdadh a-nuas" content-hub-0.1+16.04.20160309/po/bg.po0000644000015600001650000000453312670026423017522 0ustar pbuserpbgroup00000000000000# Bulgarian translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-02-23 11:32+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "" content-hub-0.1+16.04.20160309/po/km.po0000644000015600001650000000630212670026423017535 0ustar pbuserpbgroup00000000000000# Khmer translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-08 07:40+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Khmer \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "ជ្រើស​ពី" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "បើកជាមួយ" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "ចែករំលែកទៅ" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "កម្មវិធី" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "សូមទោស " "មិនមានកម្មវិធីណាមួយដែលបានដំឡើងនៅពេលបច្ចុប្បន្ននេះដែលអាចផ្តល់នូវប្រភេទមាតិកានេ" "ះបាន ។" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "សូមទោស " "មិនមានកម្មវិធីណាមួយដែលបានដំឡើងនៅពេលបច្ចុប្បន្ននេះដែលអាចគ្រប់គ្រងប្រភេទមាតិកាន" "េះបាន ។" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "ឧបករណ៍​" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "បោះបង់" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "កំពុងផ្ទេរប្រាក់" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "ទំនាញយក បានជោគជ័យ" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "បើក" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "បណ្ដេញ​ចេញ" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "ទំនាញយក បានបរាជ័យ" content-hub-0.1+16.04.20160309/po/el.po0000644000015600001650000000603412670026423017530 0ustar pbuserpbgroup00000000000000# Greek translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-11-18 23:07+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Επιλογή από" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Άνοιγμα με" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Διαμοιρασμός στο" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Εφαρμογές" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Λυπούμαστε, αυτή τη στιγμή δεν υπάρχουν εγκαταστημένες εφαρμογές που να " "μπορούν να παρέχουν αυτόν τον τύπο περιεχομένου." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Λυπούμαστε, αυτή τη στιγμή δεν υπάρχουν εγκαταστημένες εφαρμογές που να " "μπορούν να διαχειριστούν αυτόν τον τύπο περιεχομένου." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Συσκευές" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Ακύρωση" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Μεταφορά σε εξέλιξη" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Η λήψη ολοκληρώθηκε" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Άνοιγμα" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Απόρριψη" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Η λήψη απέτυχε" content-hub-0.1+16.04.20160309/po/sr.po0000644000015600001650000000561212670026423017555 0ustar pbuserpbgroup00000000000000# Serbian translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-09-06 09:38+0000\n" "Last-Translator: Bojan Bogdanović \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Одаберите између" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Отвори са" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Поделите са" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Програми" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Жао нам је, тренутно нема инсталираних програма који могу пружити овај тип " "садржаја." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Жао нам је, тренутно нема инсталираних програма који могу руковати овим " "типом садржаја." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Уређаји" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Откажи" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Пренос у току" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Преузимање завршено" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Отвори" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Одбаци" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Преузимање неуспешно" content-hub-0.1+16.04.20160309/po/ms.po0000644000015600001650000000517412670026423017553 0ustar pbuserpbgroup00000000000000# Malay translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-10 02:34+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Malay \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Pilih dari" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Buka dengan" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Kongsi dengan" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Apl" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Maaf, buat masa ini tiada aplikasi terpasang yang dapat sediakan jenis " "kandungan ini." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Maaf, buat masa ini tiada aplikasi terpasang yang dapat kendalikan jenis " "kandungan ini." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Peranti" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Batal" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Pemindahan berjalan" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Muat Turun Selesai" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Buka" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Singkir" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Muat Turun Gagal" content-hub-0.1+16.04.20160309/po/da.po0000644000015600001650000000524512670026423017517 0ustar pbuserpbgroup00000000000000# Danish translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-11 11:22+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Vælg blandt" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Åbn med" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Del til" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Applikationer" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Beklager, der er i øjeblikket ikke installeret programmer, der kan tilbyde " "denne indholdstype." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Beklager, der er i øjeblikket ikke installeret programmer, der kan håndtere " "denne indholdstype." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Enheder" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Annullér" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Overførslen er undervejs" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Overførsel fuldført" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Åben" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Afvis" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Download mislykkedes" content-hub-0.1+16.04.20160309/po/eu.po0000644000015600001650000000522112670026423017536 0ustar pbuserpbgroup00000000000000# Basque translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-09 18:21+0000\n" "Last-Translator: Ibai Oihanguren Sala \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Aukeratu hemendik" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Ireki honekin" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Partekatu hemen" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Aplikazioak" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Sentitzen dugu, une honetan ez dago eduki mota hau horni dezakeen " "aplikaziorik." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Sentitzen dugu, une honetan ez dago eduki mota hau maneia dezakeen " "aplikaziorik." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Gailuak" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Utzi" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferentzia lanean" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Deskarga burututa" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Ireki" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Baztertu" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Deskargak huts egin du" content-hub-0.1+16.04.20160309/po/tr.po0000644000015600001650000000520012670026423017547 0ustar pbuserpbgroup00000000000000# Turkish translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-10 19:58+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Buradan seç" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Birlikte aç" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Burada paylaş" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Uygulamalar" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "Üzgünüz, bu tip bir içeriği sağlayacak yüklenmiş bir uygulama yok." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Üzgünüz, şu anda bu içeriği oynatabilecek herhangi bir uygulama yüklü değil." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Aygıtlar" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "İptal" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Aktarım devam ediyor" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "İndirme Tamamlandı" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Aç" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Reddet" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "İndirme Başarısız" content-hub-0.1+16.04.20160309/po/hr.po0000644000015600001650000000523112670026423017537 0ustar pbuserpbgroup00000000000000# Croatian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-12-07 23:29+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Odaberi s(a)" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Otvori s(a)" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Podijeli s(a)" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Aplikacije" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Isprika, trenutno nema instaliranih aplikacija koje pružaju ovakvu vrstu " "sadržaja." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Isprika, trenutno nema instaliranih aplikacija koje mogu rukovati ovakvom " "vrstom sadržaja." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Uređaji" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Odustani" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Prijenos u tijeku" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Preuzimanje završeno" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Otvori" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Odbaci" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Preuzimanje neuspjelo" content-hub-0.1+16.04.20160309/po/is.po0000644000015600001650000000472312670026423017546 0ustar pbuserpbgroup00000000000000# Icelandic translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-09 10:45+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Velja úr" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Opna með" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Deila í" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Forrit" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Tæki" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Hætta við" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Flutningur í gangi" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Niðurhali lokið" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Opna" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Hafna" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Niðurhal mistókst" content-hub-0.1+16.04.20160309/po/content-hub.pot0000644000015600001650000000432012670026423021536 0ustar pbuserpbgroup00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Canonical Ltd. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "" content-hub-0.1+16.04.20160309/po/en_AU.po0000644000015600001650000000524312670026423020120 0ustar pbuserpbgroup00000000000000# English (Australia) translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-12 09:39+0000\n" "Last-Translator: Jared Norris \n" "Language-Team: English (Australia) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Choose from" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Open with" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Share to" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Apps" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Devices" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cancel" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transfer in progress" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Download Complete" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Open" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Dismiss" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Download Failed" content-hub-0.1+16.04.20160309/po/eo.po0000644000015600001650000000463112670026423017534 0ustar pbuserpbgroup00000000000000# Esperanto translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-12-31 12:59+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Esperanto \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Elekti el" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Malfermi per" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Konigi al" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Aplikaĵoj" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Aparatoj" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Nuligi" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Malfermi" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "" content-hub-0.1+16.04.20160309/po/uk.po0000644000015600001650000000571112670026423017550 0ustar pbuserpbgroup00000000000000# Ukrainian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-09 11:49+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Виберіть з" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Відкрити за допомогою" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Поділитися на" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Програми" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Вибачте, надання цього типу даних не передбачено у жодній зі встановлених " "програм." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Вибачте, обробку цього типу даних не передбачено у жодній зі встановлених " "програм." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Пристрої" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Скасувати" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Передавання даних" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Отримання завершено" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Відкрити" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Відхилити" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Помилка під час спроби отримання" content-hub-0.1+16.04.20160309/po/si.po0000644000015600001650000000476012670026423017547 0ustar pbuserpbgroup00000000000000# Sinhalese translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-02-21 05:49+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Sinhalese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "සමග විවෘත කරන්න" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "උපාංග" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "අවලංගු කරන්න" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "බාගත කිරීම සම්පූර්ණයි" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "" content-hub-0.1+16.04.20160309/po/fi.po0000644000015600001650000000533012670026423017524 0ustar pbuserpbgroup00000000000000# Finnish translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-09 15:49+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Valitse" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Avaa sovelluksella" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Jaa" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Sovellukset" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Valitettavasti tällä hetkellä ei ole asennettuna yhtäkään sovellusta, joka " "pystyy tarjota tämän tyyppistä sisältöä." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Valitettavasti tällä hetkellä ei ole asennettuna yhtäkään sovellusta, joka " "pystyy käsitellä tämän tyyppistä sisältöä." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Laitteet" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Peru" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Siirto meneillään" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Lataus valmistui" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Avaa" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Piilota" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Lataus epäonnistui" content-hub-0.1+16.04.20160309/po/ru.po0000644000015600001650000000560412670026423017560 0ustar pbuserpbgroup00000000000000# Russian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-08 05:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Выбрать из" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Открыть с помощью" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Поделиться с" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Приложения" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Извините, но приложения предоставляющие данный тип содержимого не " "установлены." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Извините, но приложения работающие с данным типом содержимого не установлены." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Устройства" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Отмена" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Выполняется передача" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Загрузка завершена" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Открыть" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Отменить" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Ошибка загрузки" content-hub-0.1+16.04.20160309/po/ro.po0000644000015600001650000000525412670026423017553 0ustar pbuserpbgroup00000000000000# Romanian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-10 09:06+0000\n" "Last-Translator: Marian Vasile \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Alegeți din" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Deschide cu" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Partajați către" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Aplicații" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Încă nu există aplicații instalate care să asigure acest tip de conținut." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Încă nu există aplicații instalate care să gestioneze acest tip de conținut." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Dispozitive" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Anulează" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transfer în desfășurare" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Descărcare completă" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Deschide" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Renunță" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Descărcarea a eșuat" content-hub-0.1+16.04.20160309/po/fr_CA.po0000644000015600001650000000530212670026423020077 0ustar pbuserpbgroup00000000000000# French (Canada) translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-11-11 13:59+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French (Canada) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Choisir parmi" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Ouvrir avec" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Partager vers" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Applis" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Désolé, il n'y a présentement aucune appli installée pouvant fournir ce type " "de contenu." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Désolé, il n'y a présentement aucune appli installée pouvant traiter ce type " "de contenu." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Dispositifs" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Annuler" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transfert en cours" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Téléchargement terminé" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Ouvrir" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Rejeter" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Échec lors du téléchargement" content-hub-0.1+16.04.20160309/po/he.po0000644000015600001650000000537312670026423017531 0ustar pbuserpbgroup00000000000000# Hebrew translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-17 06:39+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hebrew \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "לבחור מתוך" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "פתיחה באמצעות" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "שיתוף אל" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "יישומים" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "נכון לעכשיו אין אף יישום מותקן שמספק סוג כזה של תוכן, עמך הסליחה." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "נכון לעכשיו אין אף יישום מותקן שמטפל בסוג כזה של תוכן, עמך הסליחה." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "התקנים" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "ביטול" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "מתבצעת העברה" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "הורדה הושלמה" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "פתיחה" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "התעלמות" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "ההורדה נכשלה" content-hub-0.1+16.04.20160309/po/am.po0000644000015600001650000000540212670026423017523 0ustar pbuserpbgroup00000000000000# Amharic translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-11 21:30+0000\n" "Last-Translator: samson \n" "Language-Team: Amharic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "ይምረጡ ከ" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "መክፈቻ በ" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "ማካፈያ ለ" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "መተግበሪያዎች" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "አዝናለሁ ይህን አይነት ይዞታ የሚያቀርብ መተግበሪያ አልተገጠመም" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "አዝናለሁ ይህን አይነት ይዞታ የሚያቀርብ መተግበሪያ አልተገጠመም" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "አካላቶች" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "መሰረዣ" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "ማስተላለፍ በሂደት ላይ" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "ማውረድ ጨርሷል" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "መክፈቻ" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "መደምሰሻ" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "ማውረድ አልተሳካም" content-hub-0.1+16.04.20160309/po/es.po0000644000015600001650000000530412670026423017536 0ustar pbuserpbgroup00000000000000# Spanish translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-10 18:19+0000\n" "Last-Translator: Leo Arias \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Seleccionar desde" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Abrir con" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Compartir con" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Aplicaciones" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Lo sentimos, en este momento no hay aplicaciones instaladas que brinden este " "tipo de contenido." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Lo sentimos, en este momento no hay aplicaciones instaladas que puedan " "manejar este tipo de contenido." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Dispositivos" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Cancelar" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transferencia en curso" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Descarga completada" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Abrir" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Descartar" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Error en la descarga" content-hub-0.1+16.04.20160309/po/ug.po0000644000015600001650000000570612670026423017550 0ustar pbuserpbgroup00000000000000# Uyghur translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-14 02:30+0000\n" "Last-Translator: Gheyret T.Kenji \n" "Language-Team: Uyghur \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "بۇ يەردىن تاللاش" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "ئاچىدىغان پروگرامما" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "بۇنىڭ بىلەن ھەمبەھىرلەش" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "ئەپلەر" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "كەچۈرۈڭ، ھازىر بۇ خىلدىكى مەزمۇننى تەمىنلەيدىغان ھېچقانداق ئەپ تېخى " "ئورنىتىلماپتۇ." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "كەچۈرۈڭ، ھازىر بۇ خىلدىكى مەزمۇننى بىر تەرەپ قىلالايدىغان ھېچقانداق ئەپ تېخى " "ئورنىتىلماپتۇ." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "ئۈسكۈنىلەر" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "ئەمەلدىن قالدۇر" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "يوللاۋاتىدۇ" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "چۈشۈرۈش تاماملاندى" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "ئاچ" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "تاشلىۋەت" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "چۈشۈرۈش مەغلۇپ بولدى" content-hub-0.1+16.04.20160309/po/CMakeLists.txt0000644000015600001650000000272512670026423021333 0ustar pbuserpbgroup00000000000000project(contenthub-translations) include(FindGettext) find_program(GETTEXT_XGETTEXT_EXECUTABLE xgettext) set(DOMAIN ${GETTEXT_PACKAGE}) set(POT_FILE ${DOMAIN}.pot) file(GLOB PO_FILES *.po) add_custom_target(${POT_FILE} COMMAND ${GETTEXT_XGETTEXT_EXECUTABLE} -o ${POT_FILE} -D ${CMAKE_SOURCE_DIR} --from-code=UTF-8 --c++ --qt --add-comments=TRANSLATORS --keyword=tr --keyword=tr:1,2 --package-name=content-hub --copyright-holder='Canonical Ltd.' ${I18N_QML_SRC_FILES} COMMAND ${GETTEXT_XGETTEXT_EXECUTABLE} -o ${POT_FILE} -D ${CMAKE_SOURCE_DIR} --from-code=UTF-8 --c++ --qt --add-comments=TRANSLATORS --keyword=__ -j --package-name=content-hub --copyright-holder='Canonical Ltd.' ${I18N_CPP_SRC_FILES}) foreach(PO_FILE ${PO_FILES}) get_filename_component(LANG ${PO_FILE} NAME_WE) gettext_process_po_files(${LANG} ALL PO_FILES ${PO_FILE}) set(INSTALL_DIR ${CMAKE_INSTALL_LOCALEDIR}/${LANG}/LC_MESSAGES) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${LANG}.gmo DESTINATION ${INSTALL_DIR} RENAME ${DOMAIN}.mo) endforeach(PO_FILE) content-hub-0.1+16.04.20160309/po/fr.po0000644000015600001650000000531212670026423017535 0ustar pbuserpbgroup00000000000000# French translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-09 18:57+0000\n" "Last-Translator: londumas \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Choisir parmi" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Ouvrir avec" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Partager avec" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Applications" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Désolé, il n'y a actuellement aucune application installée qui peut fournir " "ce type de contenu." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Désolé, il n'y a actuellement aucune application installée qui peut traiter " "ce type de contenu." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Périphériques" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Annuler" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Transfert en cours" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Téléchargement terminé" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Ouvrir" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Ignorer" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Le téléchargement a échoué" content-hub-0.1+16.04.20160309/po/vi.po0000644000015600001650000000453512670026423017552 0ustar pbuserpbgroup00000000000000# Vietnamese translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-01-26 03:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "" content-hub-0.1+16.04.20160309/po/POTFILES.in0000644000015600001650000000032312670026423020340 0ustar pbuserpbgroup00000000000000examples/picker-qml/picker.qml import/Ubuntu/Content/ContentPeerPicker10.qml import/Ubuntu/Content/ContentPeerPicker11.qml import/Ubuntu/Content/ContentTransferHint.qml src/com/ubuntu/content/detail/service.cpp content-hub-0.1+16.04.20160309/po/ja.po0000644000015600001650000000541712670026423017526 0ustar pbuserpbgroup00000000000000# Japanese translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-10 12:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "選択する" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "開く" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "共有する" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "アプリ" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "現在このタイプのコンテンツを提供できるインストール済みのアプリケーションはありません。" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "現在このタイプのコンテンツを取り扱うことができるインストール済みのアプリケーションはありません。" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "デバイス" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "キャンセル" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "転送中" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "ダウンロードが完了しました" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "開く" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "無視" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "ダウンロードに失敗しました" content-hub-0.1+16.04.20160309/po/zh_HK.po0000644000015600001650000000513112670026423020130 0ustar pbuserpbgroup00000000000000# Chinese (Hong Kong) translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-06-03 18:48+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Hong Kong) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "選取自:" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "以此開啟:" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "分享至" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "應用程式" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "抱歉,目前未安裝能提供此類內容的應用程式。" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "抱歉,目前未安裝能處理此類內容的應用程式。" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "裝置" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "取消" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "傳送中" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "下載完成" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "開啟" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "放棄" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "下載失敗" content-hub-0.1+16.04.20160309/po/de.po0000644000015600001650000000525312670026423017522 0ustar pbuserpbgroup00000000000000# German translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-05-16 19:58+0000\n" "Last-Translator: Ettore Atalan \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Auswählen aus" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Öffnen mit" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Teilen mit" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Apps" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Im Moment sind keine Apps installiert, die Inhalte dieses Typs bereitstellen " "können." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Im Moment sind keine Apps installiert, die Inhalte dieses Typs verarbeiten " "können." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Geräte" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Abbrechen" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Übertragung läuft" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Herunterladen abgeschlossen" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Öffnen" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Verwerfen" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Herunterladen fehlgeschlagen" content-hub-0.1+16.04.20160309/po/be.po0000644000015600001650000000573512670026423017525 0ustar pbuserpbgroup00000000000000# Belarusian translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-05-11 08:35+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Belarusian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Выберыце з" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Адкрыць з дапамогай" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Падзяліцца" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Прыкладанні" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Прабачце, прадастаўленне гэтага тыпу дадзеных не прадугледжана ні ў адной з " "усталяваных праграм." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Прабачце, апрацоўка гэтага тыпу дадзеных не прадугледжана ні ў адной з " "усталяваных праграм." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Прылады" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Скасаваць" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Перадача дадзеных" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Запампоўка скончана" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Адкрыць" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Адкінуць" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Памылка пры спробе атрымання" content-hub-0.1+16.04.20160309/po/zh_CN.po0000644000015600001650000000515212670026423020131 0ustar pbuserpbgroup00000000000000# Chinese (Simplified) translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-06-26 05:33+0000\n" "Last-Translator: Ian Li \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "选择自" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "打开以" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "分享到" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "应用" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "对不起,当前还没有安装任何可以提供此类内容的应用程序。" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "对不起,当前还没有安装任何可以处理此类内容的应用程序。" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "设备" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "取消" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "正在传输" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "下载完成" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "打开" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "忽略" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "下载失败" content-hub-0.1+16.04.20160309/po/aa.po0000644000015600001650000000515112670026423017510 0ustar pbuserpbgroup00000000000000# Afar translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-04-19 05:06+0000\n" "Last-Translator: Charif AYFARAH \n" "Language-Team: Afar \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Akak doorit" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Edde fak" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Edd esgel" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Abnisso" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Awayih ibak daabimte abnissoy a qaynatih addattino tace matan. Wohuk " "qafuuta." #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Awayih ibak daabimte abnissoy a qaynatih addattino quukta matan. Wohuk " "qafuuta." #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Aaloota" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Bayis" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Tabsi gitat yan" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Qulo gaba kalteh" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Fak" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Eleyyiy" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Qulo makkinna" content-hub-0.1+16.04.20160309/po/ast.po0000644000015600001650000000516412670026423017722 0ustar pbuserpbgroup00000000000000# Asturian translation for content-hub # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2014-10-09 09:48+0000\n" "Last-Translator: ivarela \n" "Language-Team: Asturian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "Escoyer de" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "Abrir con" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "Compartir con" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "Apps" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" "Sentímoslo, nun hai nengún app instalada qu'apurra esta mena de conteníu" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" "Sentímoslo, nun hai nengún app instalada que remane esta mena de conteníu" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "Preseos" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "Encaboxar" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "Tresferencia en procesu" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "Baxada completa" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "Abrir" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "Descartar" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "Falló la descarga" content-hub-0.1+16.04.20160309/po/om.po0000644000015600001650000000452312670026423017544 0ustar pbuserpbgroup00000000000000# Oromo translation for content-hub # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 # This file is distributed under the same license as the content-hub package. # FIRST AUTHOR , 2015. # msgid "" msgstr "" "Project-Id-Version: content-hub\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-08-14 12:39+0100\n" "PO-Revision-Date: 2015-07-22 21:24+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Oromo \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-02-06 06:08+0000\n" "X-Generator: Launchpad (build 17908)\n" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Choose from" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Open with" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:48 #: import/Ubuntu/Content/ContentPeerPicker11.qml:49 msgid "Share to" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:158 #: import/Ubuntu/Content/ContentPeerPicker11.qml:175 msgid "Apps" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can provide this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:194 #: import/Ubuntu/Content/ContentPeerPicker11.qml:211 msgid "" "Sorry, there aren't currently any apps installed that can handle this type " "of content." msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:210 #: import/Ubuntu/Content/ContentPeerPicker11.qml:227 msgid "Devices" msgstr "" #: import/Ubuntu/Content/ContentPeerPicker10.qml:247 #: import/Ubuntu/Content/ContentPeerPicker11.qml:56 #: import/Ubuntu/Content/ContentTransferHint.qml:65 msgid "Cancel" msgstr "" #: import/Ubuntu/Content/ContentTransferHint.qml:52 msgid "Transfer in progress" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:216 msgid "Download Complete" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:234 msgid "Open" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:241 msgid "Dismiss" msgstr "" #: src/com/ubuntu/content/detail/service.cpp:259 msgid "Download Failed" msgstr "" content-hub-0.1+16.04.20160309/contenthub.qmlproject0000644000015600001650000000052512670026423022424 0ustar pbuserpbgroup00000000000000/* File generated by Qt Creator, version 2.5.2 */ import QmlProject 1.1 Project { mainFile: "examples/export-qml/export.qml" /* Include .qml, .js, and image files from current directory and subdirectories */ QmlFiles { directory: ["examples/export-qml", "examples/import-qml", "import/Ubuntu/Content"] } } content-hub-0.1+16.04.20160309/tools/0000755000015600001650000000000012670026644017314 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/tools/send/0000755000015600001650000000000012670026644020245 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/tools/send/autoexporter.cpp0000644000015600001650000000421512670026423023507 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2015 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "autoexporter.h" #include "debug.h" AutoExporter::AutoExporter() { auto hub = cuc::Hub::Client::instance(); hub->register_import_export_handler(this); } void AutoExporter::setUrl(const QString& newUrl) { url = newUrl; } void AutoExporter::setText(const QString& newText) { text = newText; } void AutoExporter::handle_import(cuc::Transfer *transfer) { TRACE() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void AutoExporter::handle_export(cuc::Transfer *transfer) { TRACE() << Q_FUNC_INFO; if (transfer == nullptr) { TRACE() << Q_FUNC_INFO << "Transfer null"; return; } cuc::Item item; if (!url.isEmpty()) item.setUrl(QUrl(url)); if (!text.isEmpty()) item.setText(text); QVector items; items << item; transfer->charge(items); connect(transfer, SIGNAL(stateChanged()), this, SLOT(stateChanged())); TRACE() << Q_FUNC_INFO << "Items:" << items.count(); } void AutoExporter::handle_share(cuc::Transfer *transfer) { TRACE() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void AutoExporter::stateChanged() { cuc::Transfer *transfer = static_cast(sender()); TRACE() << Q_FUNC_INFO << "STATE:" << transfer->state(); if (transfer->state() == cuc::Transfer::aborted) QCoreApplication::instance()->exit(1); if (transfer->state() == cuc::Transfer::collected) QCoreApplication::instance()->exit(0); } content-hub-0.1+16.04.20160309/tools/send/content-hub-send.desktop0000644000015600001650000000024112670026423025005 0ustar pbuserpbgroup00000000000000[Desktop Entry] Name=Content Hub Send Comment=Content Hub Send Exec=content-hub-send %U Icon= Terminal=false Type=Application OnlyShowIn=Old X-Ubuntu-Touch=true content-hub-0.1+16.04.20160309/tools/send/content-hub-send.url-dispatcher0000644000015600001650000000005312670026423026263 0ustar pbuserpbgroup00000000000000[ { "protocol": "content" } ] content-hub-0.1+16.04.20160309/tools/send/autoexporter.h0000644000015600001650000000256612670026423023163 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2015 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef AUTOEXPORTER_H #define AUTOEXPORTER_H #include #include #include #include #include namespace cuc = com::ubuntu::content; class AutoExporter : public cuc::ImportExportHandler { Q_OBJECT public: AutoExporter(); public slots: Q_INVOKABLE void handle_import(cuc::Transfer*); Q_INVOKABLE void handle_export(cuc::Transfer*); Q_INVOKABLE void handle_share(cuc::Transfer*); Q_INVOKABLE void stateChanged(); void setUrl(const QString&); void setText(const QString&); private: QString url; QString text; }; #endif // AUTOEXPORTER_H content-hub-0.1+16.04.20160309/tools/send/CMakeLists.txt0000644000015600001650000000260412670026423023002 0ustar pbuserpbgroup00000000000000# Copyright © 2015 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine include_directories( ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/src/com/ubuntu/content ${UBUNTU_LAUNCH_INCLUDE_DIRS} ) add_executable( content-hub-send exporter.cpp autoexporter.cpp ${CMAKE_SOURCE_DIR}/src/com/ubuntu/content/debug.cpp ) qt5_use_modules(content-hub-send Core Gui DBus) set_target_properties( content-hub-send PROPERTIES AUTOMOC TRUE ) target_link_libraries( content-hub-send content-hub ${UBUNTU_LAUNCH_LDFLAGS} ) install( TARGETS content-hub-send RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) install( FILES content-hub-send.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications ) install( FILES content-hub-send.url-dispatcher DESTINATION share/url-dispatcher/urls ) content-hub-0.1+16.04.20160309/tools/send/exporter.cpp0000644000015600001650000000707412670026423022624 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2015 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include #include #include "autoexporter.h" #include "debug.h" namespace cuc = com::ubuntu::content; int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); if (qgetenv("APP_ID").isEmpty()) { qputenv("APP_ID", "content-hub-send-file"); } /* read environment variables */ QProcessEnvironment environment = QProcessEnvironment::systemEnvironment(); if (environment.contains(QLatin1String("CONTENT_HUB_LOGGING_LEVEL"))) { bool isOk; int value = environment.value( QLatin1String("CONTENT_HUB_LOGGING_LEVEL")).toInt(&isOk); if (isOk) setLoggingLevel(value); } std::string handler = "export"; QString url, text, appId; gchar* pkg = NULL; gchar* app = NULL; gchar* ver = NULL; /* URL handled looks like: * content:?pkg=foo&app=bar&ver=0.1&url=path&text=text * Only pkg is required. */ QUrlQuery* query = new QUrlQuery(a.arguments().at(1).split("?").at(1)); TRACE() << "Handling URL:" << query->query(); if (query->hasQueryItem("pkg")) pkg = g_strdup(query->queryItemValue("pkg").toStdString().c_str()); else { qWarning() << "PKG is required"; return 1; } if (query->hasQueryItem("app")) app = g_strdup(query->queryItemValue("app").toStdString().c_str()); if (query->hasQueryItem("ver")) ver = g_strdup(query->queryItemValue("ver").toStdString().c_str()); if (query->hasQueryItem("handler")) handler = query->queryItemValue("handler").toStdString(); url = query->queryItemValue("url"); /* Don't support file transfers via url-dispatcher * it would allow unconfined access to any file simply * by constructing an evil file url */ if (url.startsWith("file")) { qWarning() << "File transfers are not supported"; return 1; } text = query->queryItemValue("text"); TRACE() << "URL:" << url; TRACE() << "PKG:" << pkg; TRACE() << "APP:" << app; TRACE() << "VER:" << ver; TRACE() << "HANDLER:" << handler.c_str(); appId = QString::fromLocal8Bit(ubuntu_app_launch_triplet_to_app_id(pkg, app, ver)); if (appId.isNull()) appId = QString(pkg); if (appId.isEmpty()) { qWarning() << "Unable to determine peer"; return 1; } AutoExporter exporter; if (!url.isEmpty()) exporter.setUrl(url); if (!text.isEmpty()) exporter.setText(text); TRACE() << "APP_ID:" << appId; auto hub = cuc::Hub::Client::instance(); auto peer = cuc::Peer{appId}; if (handler == "share") { auto transfer = hub->create_share_to_peer(peer); exporter.handle_export(transfer); } else { auto transfer = hub->create_export_to_peer(peer); exporter.handle_export(transfer); } return a.exec(); } content-hub-0.1+16.04.20160309/tools/CMakeLists.txt0000644000015600001650000000126012670026423022046 0ustar pbuserpbgroup00000000000000# Copyright © 2015 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine add_subdirectory(send) content-hub-0.1+16.04.20160309/COPYING.GPL0000644000015600001650000010437412670026423017634 0ustar pbuserpbgroup00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . content-hub-0.1+16.04.20160309/COPYING.LGPL0000644000015600001650000001674312670026423017752 0ustar pbuserpbgroup00000000000000 GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License. "The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version". The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. 1. Exception to Section 3 of the GNU GPL. You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions. If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. 3. Object Code Incorporating Material from Library Header Files. The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the object code with a copy of the GNU GPL and this license document. 4. Combined Works. You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the Combined Work with a copy of the GNU GPL and this license document. c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. d) Do one of the following: 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) 5. Combined Libraries. You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 6. Revised Versions of the GNU Lesser General Public License. The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. content-hub-0.1+16.04.20160309/CMakeLists.txt0000644000015600001650000001151312670026423020710 0ustar pbuserpbgroup00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss cmake_minimum_required(VERSION 2.8) project(content-hub) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake) include (GNUInstallDirs) include (EnableCoverageReport) include (GSettings) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror -Wall -pedantic -Wextra -fPIC -pthread") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Werror -Wall -fno-strict-aliasing -pedantic -Wextra -fPIC -pthread -Wno-unused-function") set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined") # Workaround for libexecdir on debian if (EXISTS "/etc/debian_version") set(CMAKE_INSTALL_LIBEXECDIR ${CMAKE_INSTALL_LIBDIR}) set(CMAKE_INSTALL_FULL_LIBEXECDIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBEXECDIR}") endif() set(pkglibexecdir "${CMAKE_INSTALL_FULL_LIBEXECDIR}") ##################################################################### # Enable code coverage calculation with gcov/gcovr/lcov # Usage: # * Switch build type to coverage (use ccmake or cmake-gui) # * Invoke make, make test, make coverage # * Find html report in subdir coveragereport # * Find xml report feasible for jenkins in coverage.xml ##################################################################### IF(CMAKE_BUILD_TYPE MATCHES [cC][oO][vV][eE][rR][aA][gG][eE]) SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ftest-coverage -fprofile-arcs" ) SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -ftest-coverage -fprofile-arcs" ) SET(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -ftest-coverage -fprofile-arcs" ) SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -ftest-coverage -fprofile-arcs" ) ENDIF(CMAKE_BUILD_TYPE MATCHES [cC][oO][vV][eE][rR][aA][gG][eE]) enable_testing() set(CMAKE_INCLUDE_CURRENT_DIR ON) find_package(Qt5Core) find_package(Qt5DBus) find_package(PkgConfig REQUIRED) pkg_check_modules(GLIB REQUIRED glib-2.0) pkg_check_modules(GIO REQUIRED gio-unix-2.0) pkg_check_modules(UBUNTU_LAUNCH REQUIRED ubuntu-app-launch-2) pkg_check_modules(LIBERTINE REQUIRED libertine) pkg_check_modules(GSETTINGS REQUIRED gsettings-qt) pkg_check_modules(NIH REQUIRED libnih) pkg_check_modules(NIH_DBUS REQUIRED libnih-dbus) pkg_check_modules(DBUS REQUIRED dbus-1) pkg_check_modules(UBUNTU_DOWNLOAD_MANAGER REQUIRED ubuntu-download-manager-client) pkg_check_modules(NOTIFY REQUIRED libnotify) pkg_check_modules(APPARMOR REQUIRED libapparmor) add_definitions(-DDEBUG_ENABLED) set(GETTEXT_PACKAGE "content-hub") add_definitions(-DI18N_DOMAIN="${GETTEXT_PACKAGE}") set(CONTENT_HUB_VERSION_MAJOR 0) set(CONTENT_HUB_VERSION_MINOR 0) set(CONTENT_HUB_VERSION_PATCH 1) set(CONTENT_HUB_VERSION "${CONTENT_HUB_VERSION_MAJOR}.${CONTENT_HUB_VERSION_MINOR}.${CONTENT_HUB_VERSION_PATCH}") set(QML_API_VERSION_MAJOR 1) include_directories(include) file(GLOB_RECURSE I18N_QML_SRC_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} import/Ubuntu/Content/**.qml) list(SORT I18N_QML_SRC_FILES) file(GLOB_RECURSE I18N_CPP_SRC_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} src/com/ubuntu/content/detail/**.cpp) list(SORT I18N_CPP_SRC_FILES) # for dh_translations to extract the domain # (regarding syntax consistency, see http://pad.lv/1181187) set (GETTEXT_PACKAGE "content-hub") add_subdirectory(doc) add_subdirectory(po) add_subdirectory(src) add_subdirectory(import) add_subdirectory(examples) add_subdirectory(tests) add_subdirectory(tools) install(DIRECTORY include DESTINATION ${CMAKE_INSTALL_PREFIX}) # Build and install a pkg-config file set(prefix ${CMAKE_INSTALL_PREFIX}) set(exec_prefix ${prefix}/bin) set(libdir ${prefix}/${CMAKE_INSTALL_LIBDIR}) set(pkg-name "libcontent-hub") configure_file(libcontent-hub.pc.in libcontent-hub.pc @ONLY) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libcontent-hub.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) # There's no nice way to format this. Thanks CMake. add_test(LGPL-required /bin/sh -c "! grep -rl 'GNU General' ${PROJECT_SOURCE_DIR}/src/client ${PROJECT_SOURCE_DIR}/include/client ${PROJECT_SOURCE_DIR}/src/shared ${PROJECT_SOURCE_DIR}/include/shared" ) add_test(GPL-required /bin/sh -c "! grep -rl 'GNU Lesser' ${PROJECT_SOURCE_DIR}/src/server ${PROJECT_SOURCE_DIR}/include/server ${PROJECT_SOURCE_DIR}/include/test ${PROJECT_SOURCE_DIR}/tests ${PROJECT_SOURCE_DIR}/examples" ) content-hub-0.1+16.04.20160309/examples/0000755000015600001650000000000012670026644017772 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/examples/picker-qml/0000755000015600001650000000000012670026644022036 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/examples/picker-qml/picker.qml0000644000015600001650000000734112670026423024026 0ustar pbuserpbgroup00000000000000import QtQuick 2.0 import Ubuntu.Components 0.1 import Ubuntu.Components.ListItems 0.1 as ListItem import Ubuntu.Components.Popups 0.1 import Ubuntu.Content 0.1 MainView { id: mainView applicationName: "picker-qml" width: units.gu(100) height: units.gu(75) PageStack { id: pageStack Component.onCompleted: pageStack.push(root) Page { id: root title: i18n.tr("Peer Picker Example") visible: false property list importItems property var activeTransfer property list peers Column { anchors.fill: parent ListItem.Standard { id: peerListHeader anchors { left: parent.left right: parent.right } text: i18n.tr("Sources") control: Button { text: i18n.tr("Select source") onClicked: { pageStack.push(picker); } } } ListItem.Header { id: titleItem anchors { left: parent.left right: parent.right } text: i18n.tr("Results") } GridView { id: resultList anchors { left: parent.left right: parent.right } height: childrenRect.height cellWidth: units.gu(20) cellHeight: cellWidth model: root.importItems delegate: Item { id: result height: units.gu(19) width: height UbuntuShape { width: parent.width height: width image: Image { id: image source: url sourceSize.width: width sourceSize.height: height height: parent.height width: height fillMode: Image.PreserveAspectFit smooth: true } } } } } ContentTransferHint { anchors.fill: root activeTransfer: root.activeTransfer } Connections { target: root.activeTransfer onStateChanged: { console.log("StateChanged: " + root.activeTransfer.state); if (root.activeTransfer.state === ContentTransfer.Charged) root.importItems = root.activeTransfer.items; } } } Page { id: picker visible: false ContentPeerPicker { visible: parent.visible // Type of handler: Source, Destination, or Share handler: ContentHandler.Source // well know content type contentType: ContentType.Pictures onPeerSelected: { root.activeTransfer = peer.request(); pageStack.pop(); } onCancelPressed: { pageStack.pop(); } } } } } content-hub-0.1+16.04.20160309/examples/importer/0000755000015600001650000000000012670026644021633 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/examples/importer/importer.cpp0000644000015600001650000000262612670026423024201 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include "example.h" namespace cuc = com::ubuntu::content; int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); Example *e = new Example(); QString peerName; if (a.arguments().size() > 1) peerName = a.arguments().at(1); if (!peerName.isEmpty()) { qDebug() << peerName; auto hub = cuc::Hub::Client::instance(); auto peer = cuc::Peer{peerName}; qDebug() << Q_FUNC_INFO << "PEER: " << peer.id(); auto transfer = hub->create_import_from_peer(peer); transfer->setSelectionType(cuc::Transfer::SelectionType::multiple); transfer->start(); } Q_UNUSED(e); return a.exec(); } content-hub-0.1+16.04.20160309/examples/importer/exampleimporter.h0000644000015600001650000000233412670026423025216 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef EXAMPLEIMPORTER_H #define EXAMPLEIMPORTER_H #include #include #include #include #include namespace cuc = com::ubuntu::content; class ExampleImporter : public cuc::ImportExportHandler { Q_OBJECT public: ExampleImporter(); Q_INVOKABLE void handle_import(cuc::Transfer*); Q_INVOKABLE void handle_export(cuc::Transfer*); Q_INVOKABLE void handle_share(cuc::Transfer*); }; #endif // EXAMPLEIMPORTER_H content-hub-0.1+16.04.20160309/examples/importer/example.cpp0000644000015600001650000000265712670026423023777 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "example.h" #include Example::Example(QObject *parent) : QObject(parent), m_importer(new ExampleImporter()) { } void Example::create_import() { auto hub = cuc::Hub::Client::instance(); auto peer = hub->default_source_for_type(cuc::Type::Known::pictures()); qDebug() << Q_FUNC_INFO << "PEER: " << peer.name(); m_transfer = hub->create_import_from_peer(peer); /* Uncommit this for persistent storage auto store = hub->store_for_scope_and_type(cuc::Scope::app, cuc::Type::Known::pictures()); qDebug() << Q_FUNC_INFO << "STORE:" << store->uri(); m_transfer->setStore(store); */ m_transfer->setSelectionType(cuc::Transfer::SelectionType::multiple); m_transfer->start(); } content-hub-0.1+16.04.20160309/examples/importer/exampleimporter.cpp0000644000015600001650000000314712670026423025554 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "exampleimporter.h" ExampleImporter::ExampleImporter() { auto hub = cuc::Hub::Client::instance(); hub->register_import_export_handler(this); } void ExampleImporter::handle_import(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO; auto items = transfer->collect(); qDebug() << Q_FUNC_INFO << "Items:" << items.count(); Q_FOREACH(cuc::Item item, items) { qDebug() << Q_FUNC_INFO << "URL:" << item.url(); qDebug() << Q_FUNC_INFO << "Name:" << item.name(); qDebug() << Q_FUNC_INFO << "Text:" << item.text(); qDebug() << Q_FUNC_INFO << "StreamType:" << item.streamType(); } transfer->finalize(); } void ExampleImporter::handle_export(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void ExampleImporter::handle_share(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } content-hub-0.1+16.04.20160309/examples/importer/CMakeLists.txt0000644000015600001650000000167412670026423024376 0ustar pbuserpbgroup00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine include_directories(${CMAKE_CURRENT_BINARY_DIR}) add_executable( importer importer.cpp exampleimporter.cpp example.cpp ) qt5_use_modules(importer Core Gui DBus) set_target_properties( importer PROPERTIES AUTOMOC TRUE ) target_link_libraries( importer content-hub ) content-hub-0.1+16.04.20160309/examples/importer/example.h0000644000015600001650000000174512670026423023441 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef EXAMPLE_H #define EXAMPLE_H #include #include "exampleimporter.h" class Example : public QObject { Q_OBJECT public: explicit Example(QObject *parent = 0); void create_import(); private: ExampleImporter *m_importer; cuc::Transfer *m_transfer; }; #endif // EXAMPLE_H content-hub-0.1+16.04.20160309/examples/export-qml/0000755000015600001650000000000012670026644022102 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/examples/export-qml/export.qml0000644000015600001650000000314612670026423024135 0ustar pbuserpbgroup00000000000000import QtQuick 2.0 import Ubuntu.Components 0.1 import Ubuntu.Content 0.1 MainView { id: root width: 300 height: 200 property bool pickMode: activeTransfer.state === ContentTransfer.InProgress property list selectedItems property var activeTransfer Button { id: button1 anchors.top: parent.top anchors.left: parent.left enabled: pickMode text: "Return URL1" onClicked: { selectedItems = [ resultComponent.createObject(root, {"url": "file:///picture_1.jpg"}) ]; activeTransfer.items = selectedItems; } } Button { id: button2 anchors.top: parent.top anchors.right: parent.right enabled: pickMode text: "Return Url2" onClicked: { selectedItems.push(resultComponent.createObject(root, {"url": "file:///picture_1.jpg"})); selectedItems.push(resultComponent.createObject(root, {"url": "file:///picture_2.jpg"})); console.log(selectedItems[0].url + "/" + selectedItems[1].url) activeTransfer.items = selectedItems; } } Button { id: buttonAbort anchors.bottom: parent.bottom anchors.horizontalCenter: parent.horizontalCenter enabled: pickMode text: "Cancel" onClicked: { activeTransfer.state = ContentTransfer.Aborted; } } Component { id: resultComponent ContentItem {} } Connections { target: ContentHub onExportRequested: { activeTransfer = transfer } } } content-hub-0.1+16.04.20160309/examples/export-qml/app-exporter.qml0000644000015600001650000001471712670026423025250 0ustar pbuserpbgroup00000000000000import QtQuick 2.0 import Ubuntu.Components 0.1 import Ubuntu.Components.Popups 0.1 import Ubuntu.Components.ListItems 0.1 as ListItem import Ubuntu.Content 0.1 MainView { id: root applicationName: "app-exporter" width: units.gu(50) height: units.gu(60) property bool pickMode: activeTransfer.state === ContentTransfer.InProgress property var selectedItems: [] property var activeTransfer ListModel { id: images ListElement { src: "file:///usr/share/icons/hicolor/128x128/apps/ubuntuone-music.png" } ListElement { src: "file:///usr/share/icons/hicolor/128x128/apps/ubuntuone-music.png" } ListElement { src: "file:///usr/share/icons/hicolor/128x128/apps/ubuntuone-music.png" } ListElement { src: "file:///usr/share/icons/hicolor/128x128/apps/ubuntuone-music.png" } } GridView { anchors.fill: parent model: images cellWidth: 128 cellHeight: 128 delegate: itemDelegate } Component { id: resultComponent ContentItem {} } Component { id: itemDelegate Item { width: 128 height: 128 property bool isSelected: false UbuntuShape { width: parent.width height: width image: Image { id: image source: src height: parent.width width: height fillMode: Image.PreserveAspectFit smooth: true } MouseArea { anchors.fill: parent enabled: pickMode onClicked: { var shouldAdd = true; for (var i = 0; i < selectedItems.length; i++) { console.log("item: ", selectedItems[i]); if (selectedItems[i] === src) { selectedItems.pop(i); shouldAdd = false; isSelected = false; } } if (shouldAdd) { selectedItems.push(src); isSelected = true; } } } Image { id: selectionTick anchors.right: parent.right anchors.top: parent.top width: units.gu(5) height: units.gu(5) visible: isSelected source: "photo-preview-selected-overlay.png" } MouseArea { anchors.fill: parent enabled: !pickMode onClicked: { actPop.show(); } } ActionSelectionPopover { id: actPop delegate: ListItem.Standard { text: action.text } contentWidth: childrenRect.width actions: ActionList { Action { text: "Open with..." onTriggered: { print(text + ": " + src); activeTransfer = picDest.request(); activeTransfer.items = [ resultComponent.createObject(root, {"url": src}) ]; activeTransfer.state = ContentTransfer.Charged; actPop.hide(); } } Action { text: "Share" onTriggered: { print(text + ": " + src); activeTransfer = picShare.request(); activeTransfer.items = [ resultComponent.createObject(root, {"url": src}) ]; activeTransfer.state = ContentTransfer.Charged; actPop.hide(); } } } } } } } ContentPeer { id: picDest // well know content type contentType: ContentType.Pictures // Type of handler: Source, Destination, or Share handler: ContentHandler.Destination // Optional appId, if this isn't specified the hub will use the default //appId: "" } ContentPeer { id: picShare // well know content type contentType: ContentType.Pictures // Type of handler: Source, Destination, or Share handler: ContentHandler.Share // Optional appId, if this isn't specified the hub will use the default appId: "pkg_app_version" } // Provides overlay showing another app is being used to complete the request // formerly named ContentImportHint ContentTransferHint { anchors.fill: parent activeTransfer: activeTransfer } Connections { target: ContentHub onExportRequested: { activeTransfer = transfer } } ListItem.Empty { id: pickerButtons anchors { left: parent.left right: parent.right bottom: parent.bottom margins: units.gu(2) } visible: pickMode Button { anchors { left: parent.left bottom: parent.bottom margins: units.gu(2) } text: "Cancel" onClicked: activeTransfer.state = ContentTransfer.Aborted; } Button { anchors { right: parent.right bottom: parent.bottom margins: units.gu(2) } text: "Select" onClicked: { var results = []; for (var i = 0; i < selectedItems.length; i++) results.push(resultComponent.createObject(root, {"url": selectedItems[i]})); if (results.length > 0) activeTransfer.items = results; } } } } content-hub-0.1+16.04.20160309/examples/export-qml/photo-preview-selected-overlay.png0000644000015600001650000001133712670026423030665 0ustar pbuserpbgroup00000000000000PNG  IHDRZë́ztEXtSoftwareAdobe ImageReadyqe<$iTXtXML:com.adobe.xmp QIDATxpgǟw~kIrVRQi[ TTLqN;tX/ lLE() ?\~@ٽ.y].}{y}(A?Eγg!DruI{1[1sU~.)8.Ḁ88cF #d|]__s` Ұ Ћ{8q(h/5hMV_%8p\:?H-9@= y.?7qdJhbݭVkkC!4[2&j/ui)<6¾:|]e>lcg@Ax/h-Q̠@Ю+[A:A_FNj89\NuҠ5`66وYVϮHؠg,D`6}|~Bz*Y +cF x͛y Y Km6Ce"jûWx hKp',EvD>M=۔`tجLL.UOɐzt(o5rS 4n:rmv2,R8F6(Eгld6ɫڀ]H9vy[-^*C^㿨[u+$c&Hs8&.ܳ7 8wuX`g2gN/Y$飳oqpKW6U*Zg$yYuhtT[Mh,;tV*[s!oW + &/RYs;i>y)So;e ͣ kH6< ]/?5w/χ䓯gj#_A;CTh Hnj#@$O: M@聁W )s7€FTƓZ 諣!F7H(5lf. mJG2؜дy/OuVⷩD2̕ќsBӖ! Y`3{ٜf=dNF;A7ߥFB; V9V2wʕ+r(jQɭpuZzCК{{{;ʥ){K v=>rKڶ`@E{ 2o#]MGnJ:֑H$y|$7N |qV"hۑ# 1Ńr%дq$N_lNJh%}rSt] Hnك,G׳JJo"(ŕX 1MuO^mN>B21lATvlm!}[I@V @l +ݹ֡sKxAIbK!ECZSḍғB=8qVBS/'u>lţu(ȁb. lD{vLNIR.Ç.c@Ƹ;Aςnf#93ul?e={ *8GyHvP i)^am*?z_#\z6*A`= h/ ׏L$bO{ T& L.ZjW7p=f#i+ $8Zͼ$PYHA#7o;vl@if^9my=mDlP,gMJ{22wkW.\^:ihCc5;M .oXhP1Fpݺu˖-{ LPwmZ rT & &.eN7n\̝;wQCCô`0X}3`4eGoc ]|%K>mڴSNWgHMLhEt:ŌٻYehhii6F/o5kI&EmpIXhtZf9j̙3뮛o曧džeB|}zCLAvhհ .dyKj̙?9}Ĕ)SJT{ 1uD` r63Eh M㹀){O h%d8qbt\.W;y:ԄpG`V - wJ@qu?ko øo.Q_gT}K5?f!hҠ .p̭jbT'/^CBYuM7$1wB 4hڬh" 2 Z"@'-mnZA˦!Qy;i-RV\@X_纤1L D@͓*,hQ^t 7(kNe&ZbBd&(AQ<Ȭ8@\T, cA,D_Тo sxiu˛%zqOAtuHF#IENDB`content-hub-0.1+16.04.20160309/examples/import-qml/0000755000015600001650000000000012670026644022073 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/examples/import-qml/import.qml0000644000015600001650000000722612670026423024122 0ustar pbuserpbgroup00000000000000import QtQuick 2.0 import Ubuntu.Components 0.1 import Ubuntu.Components.ListItems 0.1 as ListItem import Ubuntu.Content 0.1 MainView { id: root applicationName: "import-qml" width: 300 height: 200 property list importItems property var activeTransfer ContentPeer { id: picSource // well know content type contentType: ContentType.Pictures // Type of handler: Source, Destination, or Share handler: ContentHandler.Source // Optional appId, if this isn't specified the hub will use the default //appId: "" } // Optional store to use for persistent storage of content ContentStore { id: appStore scope: ContentScope.App } // Provides a list suitable for use as a model ContentPeerModel { id: picSources // Type of handler: Source, Destination, or Share handler: ContentHandler.Source // well know content type contentType: ContentType.Pictures } ListView { id: peerList anchors { left: parent.left right: parent.right top: importButtons.bottom } height: childrenRect.height model: picSources.peers delegate: ListItem.Standard { text: modelData.name control: Button { text: "Import" onClicked: { // Request the transfer, it needs to be created and dispatched from the hub activeTransfer = modelData.request(); } } } } ListItem.Empty { id: importButtons Button { anchors { left: parent.left margins: units.gu(2) } text: "Import from default" onClicked: { // Request the transfer, it needs to be created and dispatched from the hub // Specify a location to use for permanent storage activeTransfer = picSource.request(appStore); } } Button { anchors { right: parent.right margins: units.gu(2) } text: "Finalize import" enabled: activeTransfer.state === ContentTransfer.Collected onClicked: activeTransfer.finalize() } } ListView { id: resultList anchors { left: parent.left right: parent.right top: peerList.bottom } height: childrenRect.height model: importItems delegate: ListItem.Empty { id: result height: 128 UbuntuShape { anchors.horizontalCenter: parent.horizontalCenter width: image.width height: image.height image: Image { id: image source: url height: result.height fillMode: Image.PreserveAspectFit smooth: true } } } } // Provides overlay showing another app is being used to complete the request // formerly named ContentImportHint ContentTransferHint { anchors.fill: parent activeTransfer: activeTransfer } Connections { target: activeTransfer onStateChanged: { console.log("StateChanged: " + activeTransfer.state); if (activeTransfer.state === ContentTransfer.Charged) importItems = activeTransfer.items; } } } content-hub-0.1+16.04.20160309/examples/CMakeLists.txt0000644000015600001650000000131712670026423022527 0ustar pbuserpbgroup00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine add_subdirectory(importer) add_subdirectory(exporter) content-hub-0.1+16.04.20160309/examples/exporter/0000755000015600001650000000000012670026644021642 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/examples/exporter/exampleexporter.h0000644000015600001650000000236112670026423025234 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #ifndef EXAMPLEEXPORTER_H #define EXAMPLEEXPORTER_H #include #include #include #include #include namespace cuc = com::ubuntu::content; class ExampleExporter : public cuc::ImportExportHandler { Q_OBJECT public: ExampleExporter(); public Q_SLOTS: Q_INVOKABLE void handle_import(cuc::Transfer*); Q_INVOKABLE void handle_export(cuc::Transfer*); Q_INVOKABLE void handle_share(cuc::Transfer*); }; #endif // EXAMPLEEXPORTER_H content-hub-0.1+16.04.20160309/examples/exporter/exampleexporter.cpp0000644000015600001650000000352512670026423025572 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include "exampleexporter.h" ExampleExporter::ExampleExporter() { auto hub = cuc::Hub::Client::instance(); hub->register_import_export_handler(this); } void ExampleExporter::handle_import(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } void ExampleExporter::handle_export(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO; if (transfer == nullptr) { qDebug() << Q_FUNC_INFO << "Transfer null"; return; } if (transfer->selectionType() == cuc::Transfer::SelectionType::single) qDebug() << Q_FUNC_INFO << "selectionType: single"; else if (transfer->selectionType() == cuc::Transfer::SelectionType::multiple) qDebug() << Q_FUNC_INFO << "selectionType: multiple"; QVector items; items << cuc::Item(QUrl("file:///tmp/test1")); auto i = cuc::Item(); i.setName("Test2"); i.setText("Test Two"); items << i; transfer->charge(items); qDebug() << Q_FUNC_INFO << "Items:" << items.count(); } void ExampleExporter::handle_share(cuc::Transfer *transfer) { qDebug() << Q_FUNC_INFO << "not implemented"; Q_UNUSED(transfer); } content-hub-0.1+16.04.20160309/examples/exporter/CMakeLists.txt0000644000015600001650000000165612670026423024405 0ustar pbuserpbgroup00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Ken VanDine include_directories(${CMAKE_CURRENT_BINARY_DIR}) add_executable( exporter exporter.cpp exampleexporter.cpp ) qt5_use_modules(exporter Core Gui DBus) set_target_properties( exporter PROPERTIES AUTOMOC TRUE ) target_link_libraries( exporter content-hub ) content-hub-0.1+16.04.20160309/examples/exporter/exporter.cpp0000644000015600001650000000264412670026423024217 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Ken VanDine */ #include #include #include "exampleexporter.h" namespace cuc = com::ubuntu::content; int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); if (qgetenv("APP_ID").isEmpty()) { qputenv("APP_ID", "gallery-app"); } ExampleExporter exporter; QString peerName; if (a.arguments().size() > 1) peerName = a.arguments().at(1); if (!peerName.isEmpty()) { qDebug() << peerName; auto hub = cuc::Hub::Client::instance(); auto peer = cuc::Peer{peerName}; qDebug() << Q_FUNC_INFO << "PEER: " << peer.id(); auto transfer = hub->create_export_to_peer(peer); exporter.handle_export(transfer); } return a.exec(); } content-hub-0.1+16.04.20160309/import/0000755000015600001650000000000012670026644017466 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/import/Ubuntu/0000755000015600001650000000000012670026644020750 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/import/Ubuntu/Content/0000755000015600001650000000000012670026644022362 5ustar pbuserpbgroup00000000000000content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contentpeer.h0000644000015600001650000000540712670026423025062 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_UBUNTU_CONTENTPEER_H_ #define COM_UBUNTU_CONTENTPEER_H_ #include "contenthandler.h" #include "contenttransfer.h" #include "contenttype.h" #include #include #include #include #include class ContentPeer : public QObject { Q_OBJECT Q_PROPERTY(QString name READ name NOTIFY nameChanged) Q_PROPERTY(QString appId READ appId WRITE setAppId NOTIFY appIdChanged) Q_PROPERTY(ContentHandler::Handler handler READ handler WRITE setHandler NOTIFY handlerChanged) Q_PROPERTY(ContentType::Type contentType READ contentType WRITE setContentType NOTIFY contentTypeChanged) Q_PROPERTY(ContentTransfer::SelectionType selectionType READ selectionType WRITE setSelectionType NOTIFY selectionTypeChanged) Q_PROPERTY(QImage icon READ icon) Q_PROPERTY(bool isDefaultPeer READ isDefaultPeer) public: ContentPeer(QObject *parent = nullptr); ContentPeer(ContentType::Type type, QObject *parent); Q_INVOKABLE ContentTransfer* request(); Q_INVOKABLE ContentTransfer* request(ContentStore *store); QString name(); const QString &appId() const; void setAppId(const QString&); QImage &icon(); const com::ubuntu::content::Peer &peer() const; void setPeer(const com::ubuntu::content::Peer &peer, bool explicitPeer = true); ContentHandler::Handler handler(); void setHandler(ContentHandler::Handler handler); ContentType::Type contentType(); void setContentType(ContentType::Type contentType); ContentTransfer::SelectionType selectionType(); void setSelectionType(ContentTransfer::SelectionType selectionType); bool isDefaultPeer(); Q_SIGNALS: void nameChanged(); void appIdChanged(); void handlerChanged(); void contentTypeChanged(); void selectionTypeChanged(); private: void init(); com::ubuntu::content::Hub *m_hub; com::ubuntu::content::Peer m_peer; ContentHandler::Handler m_handler; ContentType::Type m_contentType; ContentTransfer::SelectionType m_selectionType; bool m_explicit_peer; QImage m_icon; }; #endif // COM_UBUNTU_CONTENTPEER_H_ content-hub-0.1+16.04.20160309/import/Ubuntu/Content/ContentPeerPicker13.qml0000644000015600001650000002002012670026423026612 0ustar pbuserpbgroup00000000000000/* * Copyright 2013-2015 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ import QtQuick 2.4 import Ubuntu.Components 1.3 import Ubuntu.Components.Popups 1.3 import Ubuntu.Components.ListItems 1.3 as ListItem import Ubuntu.Content 1.3 /*! \internal Documentation is in ContentPeerPicker.qdoc */ Item { id: root anchors.fill: parent property var handler property var contentType property alias showTitle: header.visible property var peer property var customPeerModelLoader property string headerText property var completed: false signal peerSelected signal cancelPressed Rectangle { id: background anchors.fill: parent color: Theme.palette.normal.background } ContentPageHeader { id: header title: headerText ? headerText : (handler === ContentHandler.Source) ? i18n.dtr("content-hub", "Choose from") : (handler === ContentHandler.Destination ? i18n.dtr("content-hub", "Open with") : i18n.dtr("content-hub", "Share to")) onCancel: { if(root.activeTransfer) { root.activeTransfer.state = ContentTransfer.Aborted; } cancelPressed() } } Loader { id: peerModelLoader active: false asynchronous: true sourceComponent: ContentPeerModel { } onLoaded: { item.handler = root.handler; item.contentType = root.contentType; } } Component.onCompleted: { if (root.visible) { if (customPeerModelLoader) { customPeerModelLoader.active = true; } else { peerModelLoader.active = true; } } completed = true; } onVisibleChanged: { if (completed) { if (customPeerModelLoader) { customPeerModelLoader.active = true; } else { peerModelLoader.active = true; } } } onHandlerChanged: { if (!customPeerModelLoader && peerModelLoader.item) { appPeers.model = undefined; // Clear grid view peerModelLoader.item.handler = root.handler; appPeers.model = peerModelLoader.item.peers; } } onContentTypeChanged: { if (!customPeerModelLoader && peerModelLoader.item) { appPeers.model = undefined; // Clear grid view peerModelLoader.item.contentType = root.contentType; appPeers.model = peerModelLoader.item.peers; } } Component { id: peerDelegate Item { width: units.gu(13.5) height: units.gu(16) AbstractButton { width: parent.width height: icon.height + label.height UbuntuShape { id: icon anchors { top: parent.top horizontalCenter: parent.horizontalCenter } radius: "medium" width: units.gu(8) height: units.gu(7.5) sourceHorizontalAlignment: Image.AlignHCenter sourceVerticalAlignment: Image.AlignVCenter source: Image { id: image objectName: "image" sourceSize { width: icon.width; height: icon.height } asynchronous: true cache: false source: "image://content-hub/" + modelData.appId } } Label { id: label objectName: "label" anchors { baseline: icon.bottom baselineOffset: units.gu(2) left: parent.left right: parent.right leftMargin: units.gu(1) rightMargin: units.gu(1) } opacity: 0.9 fontSize: "small" horizontalAlignment: Text.AlignHCenter text: modelData.name || modelData.appId wrapMode: Text.Wrap maximumLineCount: 2 } onClicked: { peer = modelData peerSelected() } } } } ListItem.Header { id: appTitle anchors.top: header.visible ? header.bottom : parent.top text: i18n.dtr("content-hub", "Apps") } Rectangle { id: apps color: ColorUtils.luminance(background.color) >= 0.85 ? "#FFFFFF" : Qt.darker(background.color) clip: true anchors { left: parent.left right: parent.right top: appTitle.bottom bottom: devTitle.visible ? devTitle.top : parent.bottom bottomMargin: units.gu(1) } Flickable { anchors.fill: parent ResponsiveGridView { id: appPeers anchors.fill: parent minimumHorizontalSpacing: units.gu(0.5) maximumNumberOfColumns: 6 delegateWidth: units.gu(11) delegateHeight: units.gu(11) verticalSpacing: units.gu(2) model: customPeerModelLoader ? customPeerModelLoader.item.peers : peerModelLoader.item.peers delegate: peerDelegate Label { anchors.top: parent.top anchors.topMargin: units.gu(2.5) anchors.horizontalCenter: parent.horizontalCenter width: parent.width - units.gu(5) wrapMode: Text.WordWrap horizontalAlignment: Text.AlignHCenter text: root.handler === ContentHandler.Source ? i18n.dtr("content-hub", "Sorry, there aren't currently any apps installed that can provide this type of content.") : i18n.dtr("content-hub", "Sorry, there aren't currently any apps installed that can handle this type of content.") visible: appPeers.model ? appPeers.model.length == 0 : false } } } } ListItem.Header { id: devTitle // TODO: make this visible when we have a way to populate devices visible: false anchors { left: parent.left right: parent.right top: apps.bottom } text: i18n.dtr("content-hub", "Devices") } Rectangle { id: devices // TODO: make this visible when we have a way to populate devices visible: false color: ColorUtils.luminance(background.color) >= 0.85 ? "#FFFFFF" : Qt.darker(background.color) width: parent.width radius: 0 anchors { left: parent.left right: parent.right top: devTitle.bottom bottom: parent.bottom bottomMargin: units.gu(1) } Flickable { anchors.fill: parent ResponsiveGridView { id: devPeers anchors.fill: parent minimumHorizontalSpacing: units.gu(0.5) maximumNumberOfColumns: 6 delegateWidth: units.gu(11) delegateHeight: units.gu(9.5) verticalSpacing: units.gu(2) delegate: peerDelegate } } } } content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contenttransfer.cpp0000644000015600001650000002367212670026423026312 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "contenttransfer.h" #include "contentitem.h" #include "../../../src/com/ubuntu/content/debug.h" #include /*! * \qmltype ContentTransfer * \instantiates ContentTransfer * \inqmlmodule Ubuntu.Content * \brief Represents a transfer of content between two ContentPeers * * See documentation for ContentHub */ namespace cuc = com::ubuntu::content; ContentTransfer::ContentTransfer(QObject *parent) : QObject(parent), m_transfer(0), m_state(Aborted), m_direction(Import), m_selectionType(Single), m_store(0) { TRACE() << Q_FUNC_INFO; } /*! \qmlproperty ContentTransfer.State ContentTransfer::state \table \header \li {2, 1} \e {ContentTransfer.State} is an enumeration: \header \li State \li Description \row \li ContentTransfer.Created \li Transfer created, waiting to be initiated. \row \li ContentTransfer.Initiated \li Transfer has been initiated. \row \li ContentTransfer.InProgress \li Transfer is in progress. \row \li ContentTransfer.Downloading \li Transfer is downloading item specified by downloadId. \row \li ContentTransfer.Downloaded \li Download specified by downloadId has completed. \row \li ContentTransfer.Charged \li Transfer is charged with items and ready to be collected. \row \li ContentTransfer.Collected \li Items in the transfer have been collected. \row \li ContentTransfer.Aborted \li Transfer has been aborted. \row \li ContentTransfer.Finalized \li Transfer has been finished and cleaned up. \endtable */ ContentTransfer::State ContentTransfer::state() const { TRACE() << Q_FUNC_INFO; return m_state; } void ContentTransfer::setState(ContentTransfer::State state) { TRACE() << Q_FUNC_INFO << state; if (!m_transfer) return; if (state == Charged && (m_state == InProgress || m_state == Downloaded)) { TRACE() << Q_FUNC_INFO << "Charged"; QVector hubItems; hubItems.reserve(m_items.size()); Q_FOREACH (const ContentItem *citem, m_items) { hubItems.append(citem->item()); } m_transfer->charge(hubItems); return; } else if (state == Downloading) { m_transfer->download(); } else if (state == Aborted) { TRACE() << Q_FUNC_INFO << "Aborted"; m_transfer->abort(); } else updateState(); } /*! \qmlproperty ContentTransfer.Direction ContentTransfer::direction \brief ContentTransfer::direction indicates if this transferobject is used for import or export transaction \table \header \li {2, 1} \e {ContentTransfer.Direction} is an enumeration: \header \li Direction \li Description \row \li ContentTransfer.Import \li Transfer is a request to import content. \row \li ContentTransfer.Export \li Transfer is a request to export content. \row \li ContentTransfer.Share \li Transfer is a request to share content. \endtable */ ContentTransfer::Direction ContentTransfer::direction() const { return m_direction; } /*! \qmlproperty ContentTransfer.SelectionType ContentTransfer::selectionType \brief ContentTransfer::selectionType indicates if this transfer object allows single or multiple selection of items \table \header \li {2, 1} \e {ContentTransfer.SelectionType} is an enumeration: \header \li Type \li Description \row \li ContentTransfer.Single \li Transfer should contain a single item. \row \li ContentTransfer.Multiple \li Transfer can contain multiple items. \endtable */ ContentTransfer::SelectionType ContentTransfer::selectionType() const { return m_selectionType; } void ContentTransfer::setSelectionType(ContentTransfer::SelectionType type) { TRACE() << Q_FUNC_INFO << type; if (!m_transfer) return; if (m_state == Created && (m_selectionType != type)) { m_transfer->setSelectionType(static_cast(type)); } } /*! * \qmlproperty list ContentTransfer::items * * List of items included in the ContentTransfer */ QQmlListProperty ContentTransfer::items() { TRACE() << Q_FUNC_INFO; if (m_state == Charged) { collectItems(); } return QQmlListProperty(this, m_items); } /*! * \qmlmethod ContentTransfer::start() * * Start the transfer, this sets the State to ContentTransfer.Initiated */ bool ContentTransfer::start() { TRACE() << Q_FUNC_INFO << m_transfer->id() << ":" << m_state; if (m_state == Created) { return m_transfer->start(); } else { qWarning() << Q_FUNC_INFO << "Transfer can't be started"; return false; } } /*! * \qmlmethod ContentTransfer::finalize() * * Sets State to ContentTransfer.Finalized and cleans up temporary files */ bool ContentTransfer::finalize() { TRACE() << Q_FUNC_INFO; return m_transfer->finalize(); } /*! * \qmlproperty string ContentTransfer::store * ContentStore where the ContentTransfer will add items */ const QString ContentTransfer::store() const { TRACE() << Q_FUNC_INFO; return m_transfer->store().uri(); } void ContentTransfer::setStore(ContentStore* contentStore) { TRACE() << Q_FUNC_INFO; if (!m_transfer) { qWarning() << Q_FUNC_INFO << "invalid transfer"; return; } if(contentStore->store() != nullptr) { m_transfer->setStore(contentStore->store()); } } /*! * \brief ContentTransfer::transfer * \internal */ com::ubuntu::content::Transfer *ContentTransfer::transfer() const { TRACE() << Q_FUNC_INFO; return m_transfer; } /*! * \brief ContentTransfer::setTransfer * \internal */ void ContentTransfer::setTransfer(com::ubuntu::content::Transfer *transfer) { if (m_transfer) { qWarning() << Q_FUNC_INFO << "the transfer object was already set"; return; } if (!transfer) { qWarning() << Q_FUNC_INFO << "No valid transfer object passed:" << transfer; return; } m_transfer = transfer; m_direction = static_cast(transfer->direction()); TRACE() << Q_FUNC_INFO << "Direction:" << m_direction; connect(m_transfer, SIGNAL(selectionTypeChanged()), this, SLOT(updateSelectionType())); connect(m_transfer, SIGNAL(storeChanged()), this, SLOT(updateStore())); connect(m_transfer, SIGNAL(stateChanged()), this, SLOT(updateState())); updateSelectionType(); updateStore(); updateState(); } /*! * \qmlproperty string ContentTransfer::downloadId * The Download Manager ID of a SingleDownload, which will then be * transfered to the selected peer. */ QString ContentTransfer::downloadId() { TRACE() << Q_FUNC_INFO; return m_transfer->downloadId(); } void ContentTransfer::setDownloadId(QString downloadId) { TRACE() << Q_FUNC_INFO; m_transfer->setDownloadId(downloadId); Q_EMIT downloadIdChanged(); } /*! * \brief ContentTransfer::collectItems gets the items out of the transfer object * \internal */ void ContentTransfer::collectItems() { TRACE() << Q_FUNC_INFO; if (m_state != Charged) return; qDeleteAll(m_items); m_items.clear(); QVector transfereditems = m_transfer->collect(); Q_FOREACH (const cuc::Item &hubItem, transfereditems) { ContentItem *qmlItem = new ContentItem(this); qmlItem->setItem(hubItem); m_items.append(qmlItem); } Q_EMIT itemsChanged(); } /*! * \qmlproperty ContentType ContentTransfer::contentType * Specifies the ContentType requested. */ ContentType::Type ContentTransfer::contentType() const { TRACE() << Q_FUNC_INFO; return ContentType::hubType2contentType(m_transfer->contentType()); } /*! * \qmlproperty QString ContentTransfer::source * Provides the app id of the source application for this transfer */ QString ContentTransfer::source() { TRACE() << Q_FUNC_INFO; return m_transfer->source(); } /*! * \qmlproperty QString ContentTransfer::destination * Provides the app id of the destination application for this transfer */ QString ContentTransfer::destination() { TRACE() << Q_FUNC_INFO; return m_transfer->destination(); } /*! * \brief ContentTransfer::updateState update the state from the hub transfer object * \internal */ void ContentTransfer::updateState() { TRACE() << Q_FUNC_INFO << m_transfer->state(); if (!m_transfer) { TRACE() << Q_FUNC_INFO << "Invalid transfer"; return; } m_state = static_cast(m_transfer->state()); Q_EMIT stateChanged(); } /*! * \brief ContentTransfer::updateSelectionType update the selectionType from the hub transfer object * \internal */ void ContentTransfer::updateSelectionType() { TRACE() << Q_FUNC_INFO; if (!m_transfer) { TRACE() << Q_FUNC_INFO << "Invalid transfer"; return; } m_selectionType = static_cast(m_transfer->selectionType()); Q_EMIT selectionTypeChanged(); } /*! * \brief ContentTransfer::updateStore update the store from the hub transfer object * \internal */ void ContentTransfer::updateStore() { TRACE() << Q_FUNC_INFO; if (!m_transfer) { TRACE() << Q_FUNC_INFO << "Invalid transfer"; return; } m_store = m_transfer->store(); Q_EMIT storeChanged(); } content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contentitem.h0000644000015600001650000000333312670026423025061 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_UBUNTU_CONTENTITEM_H_ #define COM_UBUNTU_CONTENTITEM_H_ #include #include #include #include class ContentItem : public QObject { Q_OBJECT Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged) Q_PROPERTY(QUrl url READ url WRITE setUrl NOTIFY urlChanged) Q_PROPERTY(QString text READ text WRITE setText NOTIFY textChanged) public: ContentItem(QObject *parent = nullptr); const QString &name() const; void setName(const QString &name); const QUrl &url() const; void setUrl(const QUrl &url); QString text(); void setText(const QString &text); const com::ubuntu::content::Item &item() const; void setItem(const com::ubuntu::content::Item &item); Q_INVOKABLE QUrl toDataURI(); Q_INVOKABLE bool move(const QString &dir); Q_INVOKABLE bool move(const QString &dir, const QString &fileName); Q_SIGNALS: void nameChanged(); void urlChanged(); void textChanged(); private: com::ubuntu::content::Item m_item; }; #endif // COM_UBUNTU_CONTENTITEM_H_ content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contentpeer.cpp0000644000015600001650000001430012670026423025405 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "../../../src/com/ubuntu/content/debug.h" #include "contenthandler.h" #include "contenthub.h" #include "contenticonprovider.h" #include "contentpeer.h" #include "contenttype.h" #include #include /*! * \qmltype ContentPeer * \instantiates ContentPeer * \inqmlmodule Ubuntu.Content * \brief An application that can export or import a ContentType * * A ContentPeer is an application that is registered in the ContentHub as * a source or destination of a ContentType * * See documentation for ContentHub */ namespace cuc = com::ubuntu::content; ContentPeer::ContentPeer(QObject *parent) : QObject(parent), m_peer(0), m_handler(ContentHandler::Source), m_contentType(ContentType::Unknown), m_selectionType(ContentTransfer::Single), m_explicit_peer(false) { TRACE() << Q_FUNC_INFO; m_hub = cuc::Hub::Client::instance(); } /*! * \qmlproperty string ContentPeer::name * * Returns user friendly name of the peer. */ QString ContentPeer::name() { TRACE() << Q_FUNC_INFO; return m_peer.name(); } /*! * \qmlproperty string ContentPeer::appId * When set, this property allows for a specific application to be used as a peer. */ const QString &ContentPeer::appId() const { TRACE() << Q_FUNC_INFO; return m_peer.id(); } /*! * \brief ContentPeer::setAppId * \internal * Sets the Application id */ void ContentPeer::setAppId(const QString& appId) { TRACE() << Q_FUNC_INFO << appId; this->setPeer(m_hub->peer_for_app_id(appId)); } QImage &ContentPeer::icon() { TRACE() << Q_FUNC_INFO; return m_icon; } /*! * \brief ContentPeer::peer * \internal */ const com::ubuntu::content::Peer &ContentPeer::peer() const { return m_peer; } /*! * \brief ContentPeer::setPeer * \internal */ void ContentPeer::setPeer(const cuc::Peer &peer, bool explicitPeer) { TRACE() << Q_FUNC_INFO; m_peer = peer; m_explicit_peer = explicitPeer; if (peer.iconData().isEmpty()) { if (QIcon::hasThemeIcon(peer.iconName().toUtf8())) m_icon = QIcon::fromTheme(peer.iconName().toUtf8()).pixmap(256).toImage(); } else m_icon.loadFromData(peer.iconData()); ContentIconProvider *iconProvider = ContentIconProvider::instance(); iconProvider->addImage(appId(), m_icon); Q_EMIT nameChanged(); Q_EMIT appIdChanged(); } /*! * \qmlproperty ContentHandler ContentPeer::handler * Specifies which ContentHandler this peer should support (e.g. Source, Destination, Share). */ ContentHandler::Handler ContentPeer::handler() { TRACE() << Q_FUNC_INFO; return m_handler; } /*! * \brief ContentPeer::setHandler * \internal */ void ContentPeer::setHandler(ContentHandler::Handler handler) { TRACE() << Q_FUNC_INFO; m_handler = handler; Q_EMIT handlerChanged(); } /*! * \qmlproperty ContentType ContentPeer::contentType * Specifies the ContentType this peer should support. */ ContentType::Type ContentPeer::contentType() { TRACE() << Q_FUNC_INFO; return m_contentType; } /*! * \brief ContentPeer::setContentType * \internal */ void ContentPeer::setContentType(ContentType::Type contentType) { TRACE() << Q_FUNC_INFO; m_contentType = contentType; if(!m_explicit_peer) { const cuc::Type &hubType = ContentType::contentType2HubType(m_contentType); setPeer(m_hub->default_source_for_type(hubType), false); } Q_EMIT contentTypeChanged(); } /*! * \qmlproperty ContentTransfer.SelectionType ContentPeer::selectionType * Specifies whether this peer is allowed to return multiple items. */ ContentTransfer::SelectionType ContentPeer::selectionType() { TRACE() << Q_FUNC_INFO; return m_selectionType; } /*! * \brief ContentPeer::setSelectionType * \internal */ void ContentPeer::setSelectionType(ContentTransfer::SelectionType selectionType) { TRACE() << Q_FUNC_INFO; m_selectionType = selectionType; Q_EMIT selectionTypeChanged(); } /*! * \brief ContentPeer::isDefaultPeer * \internal */ bool ContentPeer::isDefaultPeer() { TRACE() << Q_FUNC_INFO; return m_peer.isDefaultPeer(); } /*! * \qmlmethod ContentPeer::request() * * \brief Request an active transfer from this ContentPeer. */ ContentTransfer *ContentPeer::request() { TRACE() << Q_FUNC_INFO; return request(nullptr); } /*! * \qmlmethod ContentPeer::request(ContentStore) * * \brief Request to an active transfer from this ContentPeer and use * a ContentStore for permanent storage. */ ContentTransfer *ContentPeer::request(ContentStore *store) { TRACE() << Q_FUNC_INFO; ContentHub *contentHub = ContentHub::instance(); ContentTransfer *qmlTransfer = NULL; if(m_handler == ContentHandler::Source) { qmlTransfer = contentHub->importContent(m_peer, m_contentType); } else if (m_handler == ContentHandler::Destination) { qmlTransfer = contentHub->exportContent(m_peer, m_contentType); } else if (m_handler == ContentHandler::Share) { qmlTransfer = contentHub->shareContent(m_peer, m_contentType); } qmlTransfer->setSelectionType(m_selectionType); if(store) { store->updateStore(m_contentType); qmlTransfer->setStore(store); } /* We only need to start it for import requests */ if (m_handler == ContentHandler::Source) { // If there peer isn't known, don't request content if (m_peer == cuc::Peer::unknown()) { qWarning() << "Unknown source for type:" << m_contentType; qmlTransfer->transfer()->abort(); } else { qmlTransfer->start(); } } return qmlTransfer; } content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contenttransfer.h0000644000015600001650000000753512670026423025757 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_UBUNTU_CONTENTTRANSFER_H_ #define COM_UBUNTU_CONTENTTRANSFER_H_ #include "contentstore.h" #include "contenttype.h" #include #include #include #include #include class ContentItem; class ContentTransfer : public QObject { Q_OBJECT Q_ENUMS(State) Q_ENUMS(Direction) Q_ENUMS(SelectionType) Q_PROPERTY(State state READ state WRITE setState NOTIFY stateChanged) Q_PROPERTY(Direction direction READ direction CONSTANT) Q_PROPERTY(SelectionType selectionType READ selectionType WRITE setSelectionType NOTIFY selectionTypeChanged) Q_PROPERTY(QString store READ store NOTIFY storeChanged) Q_PROPERTY(QQmlListProperty items READ items NOTIFY itemsChanged) Q_PROPERTY(QString downloadId READ downloadId WRITE setDownloadId NOTIFY downloadIdChanged) Q_PROPERTY(ContentType::Type contentType READ contentType CONSTANT) Q_PROPERTY(QString source READ source) Q_PROPERTY(QString destination READ destination) public: enum State { Created = com::ubuntu::content::Transfer::created, Initiated = com::ubuntu::content::Transfer::initiated, InProgress = com::ubuntu::content::Transfer::in_progress, Charged = com::ubuntu::content::Transfer::charged, Collected = com::ubuntu::content::Transfer::collected, Aborted = com::ubuntu::content::Transfer::aborted, Finalized = com::ubuntu::content::Transfer::finalized, Downloading = com::ubuntu::content::Transfer::downloading, Downloaded = com::ubuntu::content::Transfer::downloaded }; enum Direction { Import = com::ubuntu::content::Transfer::Import, Export = com::ubuntu::content::Transfer::Export, Share = com::ubuntu::content::Transfer::Share }; enum SelectionType { Single = com::ubuntu::content::Transfer::SelectionType::single, Multiple = com::ubuntu::content::Transfer::SelectionType::multiple }; ContentTransfer(QObject *parent = nullptr); State state() const; void setState(State state); Direction direction() const; SelectionType selectionType() const; void setSelectionType(SelectionType); QQmlListProperty items(); Q_INVOKABLE bool start(); Q_INVOKABLE bool finalize(); const QString store() const; Q_INVOKABLE void setStore(ContentStore *contentStore); com::ubuntu::content::Transfer *transfer() const; void setTransfer(com::ubuntu::content::Transfer *transfer); QString downloadId(); void setDownloadId(QString downloadId); void collectItems(); ContentType::Type contentType() const; QString source(); QString destination(); Q_SIGNALS: void stateChanged(); void itemsChanged(); void selectionTypeChanged(); void storeChanged(); void downloadIdChanged(); private Q_SLOTS: void updateState(); void updateStore(); void updateSelectionType(); private: com::ubuntu::content::Transfer *m_transfer; QList m_items; State m_state; Direction m_direction; SelectionType m_selectionType; com::ubuntu::content::Store m_store; }; #endif // COM_UBUNTU_CONTENTTRANSFER_H_ content-hub-0.1+16.04.20160309/import/Ubuntu/Content/ContentPeerPicker11.qml0000644000015600001650000002057212670026423026624 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ import QtQuick 2.0 import Ubuntu.Components 1.1 import Ubuntu.Components.Popups 0.1 import Ubuntu.Components.ListItems 0.1 as ListItem import Ubuntu.Content 1.1 /*! \internal Documentation is in ContentPeerPicker.qdoc */ Item { id: root anchors.fill: parent property var handler property var contentType property alias showTitle: header.visible property var peer property var customPeerModelLoader property string headerText property var completed: false signal peerSelected signal cancelPressed Rectangle { id: background anchors.fill: parent color: Theme.palette.normal.background } Header { id: header title: headerText ? headerText : (handler === ContentHandler.Source) ? i18n.dtr("content-hub", "Choose from") : (handler === ContentHandler.Destination ? i18n.dtr("content-hub", "Open with") : i18n.dtr("content-hub", "Share to")) useDeprecatedToolbar: false dividerColor: Qt.darker(Theme.palette.normal.background, 1.1) config: PageHeadConfiguration { backAction: Action { objectName: "cancel" iconName: "close" text: i18n.dtr("content-hub", "Cancel") onTriggered: { if(root.activeTransfer) { root.activeTransfer.state = ContentTransfer.Aborted; } cancelPressed() } } } } Loader { id: peerModelLoader active: false asynchronous: true sourceComponent: ContentPeerModel { } onLoaded: { item.handler = root.handler; item.contentType = root.contentType; } } Component.onCompleted: { if (root.visible) { if (customPeerModelLoader) { customPeerModelLoader.active = true; } else { peerModelLoader.active = true; } } completed = true; } onVisibleChanged: { if (completed) { if (customPeerModelLoader) { customPeerModelLoader.active = true; } else { peerModelLoader.active = true; } } } onHandlerChanged: { if (!customPeerModelLoader && peerModelLoader.item) { appPeers.model = undefined; // Clear grid view peerModelLoader.item.handler = root.handler; appPeers.model = peerModelLoader.item.peers; } } onContentTypeChanged: { if (!customPeerModelLoader && peerModelLoader.item) { appPeers.model = undefined; // Clear grid view peerModelLoader.item.contentType = root.contentType; appPeers.model = peerModelLoader.item.peers; } } Component { id: peerDelegate Item { width: units.gu(13.5) height: units.gu(16) AbstractButton { width: parent.width height: icon.height + label.height UbuntuShape { id: icon anchors { top: parent.top horizontalCenter: parent.horizontalCenter } radius: "medium" width: units.gu(8) height: units.gu(7.5) image: Image { id: image objectName: "image" sourceSize { width: icon.width; height: icon.height } asynchronous: true cache: false source: "image://content-hub/" + modelData.appId horizontalAlignment: Image.AlignHCenter verticalAlignment: Image.AlignVCenter } } Label { id: label objectName: "label" anchors { baseline: icon.bottom baselineOffset: units.gu(2) left: parent.left right: parent.right leftMargin: units.gu(1) rightMargin: units.gu(1) } opacity: 0.9 fontSize: "small" horizontalAlignment: Text.AlignHCenter text: modelData.name || modelData.appId wrapMode: Text.Wrap maximumLineCount: 2 } onClicked: { peer = modelData peerSelected() } } } } ListItem.Header { id: appTitle anchors.top: header.visible ? header.bottom : parent.top text: i18n.dtr("content-hub", "Apps") } Rectangle { id: apps color: ColorUtils.luminance(background.color) >= 0.85 ? "#FFFFFF" : Qt.darker(background.color) clip: true anchors { left: parent.left right: parent.right top: appTitle.bottom bottom: devTitle.visible ? devTitle.top : parent.bottom bottomMargin: units.gu(1) } Flickable { anchors.fill: parent ResponsiveGridView { id: appPeers anchors.fill: parent minimumHorizontalSpacing: units.gu(0.5) maximumNumberOfColumns: 6 delegateWidth: units.gu(11) delegateHeight: units.gu(11) verticalSpacing: units.gu(2) model: customPeerModelLoader ? customPeerModelLoader.item.peers : peerModelLoader.item.peers delegate: peerDelegate Label { anchors.top: parent.top anchors.topMargin: units.gu(2.5) anchors.horizontalCenter: parent.horizontalCenter width: parent.width - units.gu(5) wrapMode: Text.WordWrap horizontalAlignment: Text.AlignHCenter text: root.handler === ContentHandler.Source ? i18n.dtr("content-hub", "Sorry, there aren't currently any apps installed that can provide this type of content.") : i18n.dtr("content-hub", "Sorry, there aren't currently any apps installed that can handle this type of content.") visible: appPeers.model ? appPeers.model.length == 0 : false } } } } ListItem.Header { id: devTitle // TODO: make this visible when we have a way to populate devices visible: false anchors { left: parent.left right: parent.right top: apps.bottom } text: i18n.dtr("content-hub", "Devices") } Rectangle { id: devices // TODO: make this visible when we have a way to populate devices visible: false color: ColorUtils.luminance(background.color) >= 0.85 ? "#FFFFFF" : Qt.darker(background.color) width: parent.width radius: 0 anchors { left: parent.left right: parent.right top: devTitle.bottom bottom: parent.bottom bottomMargin: units.gu(1) } Flickable { anchors.fill: parent ResponsiveGridView { id: devPeers anchors.fill: parent minimumHorizontalSpacing: units.gu(0.5) maximumNumberOfColumns: 6 delegateWidth: units.gu(11) delegateHeight: units.gu(9.5) verticalSpacing: units.gu(2) delegate: peerDelegate } } } } content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contenttype.cpp0000644000015600001650000000722712670026423025445 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "contenttype.h" #include "../../../src/com/ubuntu/content/debug.h" /*! \qmltype ContentType \instantiates ContentType \inqmlmodule Ubuntu.Content \brief Describes the type of content to transfer \sa ContentHub \e {ContentType} is an enumeration of well known content types: \table \header \li Type \li Description \row \li ContentType.Unknown \li Unknown type \row \li ContentType.Documents \li Documents \row \li ContentType.Pictures \li Pictures \row \li ContentType.Music \li Music \row \li ContentType.Contacts \li Contacts \row \li ContentType.Videos \li Videos \row \li ContentType.Links \li Links \row \li ContentType.EBooks \li EBooks \row \li ContentType.Text \li Text \row \li ContentType.All \li Any of the above content types \endtable */ namespace cuc = com::ubuntu::content; ContentType::ContentType(QObject *parent) : QObject(parent) { TRACE() << Q_FUNC_INFO; } /*! * \brief ContentType::contentType2HubType converts a ContentType::Type to a * com::ubuntu::content::Type * \internal */ const com::ubuntu::content::Type &ContentType::contentType2HubType(int type) { Type ctype = static_cast(type); TRACE() << Q_FUNC_INFO << ctype; return contentType2HubType(ctype); } /*! * \brief ContentType::contentType2HubType converts a ContentType::Type to a * com::ubuntu::content::Type * \internal */ const com::ubuntu::content::Type &ContentType::contentType2HubType(Type type) { switch(type) { case Documents: return cuc::Type::Known::documents(); case Pictures: return cuc::Type::Known::pictures(); case Music: return cuc::Type::Known::music(); case Contacts: return cuc::Type::Known::contacts(); case Videos: return cuc::Type::Known::videos(); case Links: return cuc::Type::Known::links(); case EBooks: return cuc::Type::Known::ebooks(); case Text: return cuc::Type::Known::text(); case Events: return cuc::Type::Known::events(); default: return cuc::Type::unknown(); } } /*! * \brief ContentType::hubType2contentType converts a * com::ubuntu::content::Type to a ContentType::Type * \internal */ ContentType::Type ContentType::hubType2contentType(const QString& type) { if (type == cuc::Type::Known::documents().id()) return Documents; else if (type == cuc::Type::Known::pictures().id()) return Pictures; else if (type == cuc::Type::Known::music().id()) return Music; else if (type == cuc::Type::Known::contacts().id()) return Contacts; else if (type == cuc::Type::Known::videos().id()) return Videos; else if (type == cuc::Type::Known::links().id()) return Links; else if (type == cuc::Type::Known::ebooks().id()) return EBooks; else if (type == cuc::Type::Known::text().id()) return Text; else if (type == cuc::Type::Known::events().id()) return Events; else return Unknown; } content-hub-0.1+16.04.20160309/import/Ubuntu/Content/ContentTransferHint.qml0000644000015600001650000000547112670026423027041 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ import QtQuick 2.0 import Ubuntu.Components 0.1 import Ubuntu.Components.Popups 0.1 import Ubuntu.Content 0.1 /*! \qmltype ContentTransferHint \inqmlmodule Ubuntu.Content \brief Component that indicates that a transfer is active This component shows that the transfer is currently running, and the source application is active. It blocks all input during that time. Place this component on top of your view. See documentation for ContentHub to see an example */ Item { id: root /*! \qmlproperty ContentTransfer ContentTransferHint::activeTransfer \brief The ContentTransfer to monitor the status of. This should be set to the currently active ContentTransfer, which will then cause the ContentTransferHint to become visible while the transfer is in progress. */ property var activeTransfer opacity: internal.isTransferRunning ? 1.0 : 0.0 Component { id: dialog Dialog { id: dialogue title: i18n.dtr("content-hub", "Transfer in progress") ActivityIndicator { id: indicator anchors.top: parent.top anchors.topMargin: units.gu(6) running: internal.isTransferRunning } Button { id: cancelTransfer anchors.top: indicator.bottom anchors.topMargin: units.gu(4) text: i18n.dtr("content-hub", "Cancel") onClicked: { root.activeTransfer.state = ContentTransfer.Aborted } } } } QtObject { id: internal property bool isTransferRunning: root.activeTransfer ? root.activeTransfer.state === ContentTransfer.InProgress || root.activeTransfer.state === ContentTransfer.Initiated : false property var dialogue onIsTransferRunningChanged: { if (isTransferRunning) { dialogue = PopupUtils.open(dialog, root); } else { PopupUtils.close(dialogue); } } } } content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contenthandler.cpp0000644000015600001650000000233112670026423026070 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "../../../src/com/ubuntu/content/debug.h" #include "contenthandler.h" /*! \qmltype ContentHandler \instantiates ContentHandler \inqmlmodule Ubuntu.Content \brief Describes the type of transfer operation to perform \sa ContentHub \e {ContentHandler} is an enumeration of handler types: \table \header \li Handler \row \li ContentHandler.Source \row \li ContentHandler.Destination \row \li ContentHandler.Share \endtable */ ContentHandler::ContentHandler(QObject *parent) : QObject(parent) { TRACE() << Q_FUNC_INFO; } content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contenthubplugin.h0000644000015600001650000000215412670026423026120 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_UBUNTU_CONTENT_PLUGIN_H_ #define COM_UBUNTU_CONTENT_PLUGIN_H_ #include #include class ContentHub; class ContentHubPlugin : public QQmlExtensionPlugin { Q_OBJECT Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface") public: void initializeEngine(QQmlEngine * engine, const char * uri); void registerTypes(const char *uri); private: ContentHub *m_contentHub; }; #endif // COM_UBUNTU_CONTENT_PLUGIN_H_ content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contenthandler.h0000644000015600001650000000175512670026423025546 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_UBUNTU_CONTENTHANDLER_H_ #define COM_UBUNTU_CONTENTHANDLER_H_ #include class ContentHandler : public QObject { Q_OBJECT Q_ENUMS(Handler) public: enum Handler { Source = 0, Destination = 1, Share = 2 }; ContentHandler(QObject *parent = nullptr); }; #endif // COM_UBUNTU_CONTENTHANDLER_H_ content-hub-0.1+16.04.20160309/import/Ubuntu/Content/ContentPageHeader.qml0000644000015600001650000000461712670026423026420 0ustar pbuserpbgroup00000000000000 /* * Copyright 2015 Canonical Ltd. * * This file is part of content-hub. * * webbrowser-app is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * webbrowser-app is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ import QtQuick 2.4 import Ubuntu.Components 1.3 import Ubuntu.Components.ListItems 1.3 as ListItem /* * Component to use as page header in the ContentPeerPicker * * It has a cancel() signal fired when cancel button is pressed and a title * property to set the page title */ Column { id: root signal cancel() property string title height: childrenRect.height anchors { left: parent.left right: parent.right } Rectangle { id: title height: units.gu(7) - divider.height anchors { left: parent.left; right: parent.right } Rectangle { anchors.fill: parent color: Theme.palette.normal.background } AbstractButton { id: cancelButton objectName: "cancelButton" width: height onTriggered: root.cancel() anchors { top: parent.top bottom: parent.bottom left: parent.left } Rectangle { anchors.fill: parent anchors.leftMargin: units.gu(1) anchors.rightMargin: units.gu(1) color: "#E6E6E6" visible: parent.pressed } Icon { name: "close" anchors { fill: parent topMargin: units.gu(2) bottomMargin: units.gu(2) } } } Label { anchors { left: cancelButton.right verticalCenter: parent.verticalCenter } text: root.title fontSize: 'x-large' } } ListItem.Divider { id: divider } } content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contentstore.cpp0000644000015600001650000000541112670026423025611 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "../../../src/com/ubuntu/content/debug.h" #include "contentpeer.h" #include "contentstore.h" #include "contenttype.h" /*! * \qmltype ContentStore * \instantiates ContentStore * \inqmlmodule Ubuntu.Content * \brief Sets the type of location that content should be transferred to * * A ContentStore allows for the permanent storage of a transfered item. * * See documentation for ContentHub and ContentScope */ namespace cuc = com::ubuntu::content; ContentStore::ContentStore(QObject *parent) : QObject(parent), m_store(0), m_scope(ContentScope::System) { TRACE() << Q_FUNC_INFO; m_hub = cuc::Hub::Client::instance(); } /*! * \qmlproperty uri ContentStore::uri * * URI of the content store */ const QString &ContentStore::uri() const { static const QString __empty; TRACE() << Q_FUNC_INFO; if ( ! m_store) { qWarning() << "Accessing ContentStore uri with NULL internal store"; return __empty; } return m_store->uri(); } /*! * \brief ContentStore::store * \internal */ const com::ubuntu::content::Store *ContentStore::store() const { TRACE() << Q_FUNC_INFO; return m_store; } /*! * \brief ContentStore::setStore * \internal */ void ContentStore::setStore(const com::ubuntu::content::Store *store) { TRACE() << Q_FUNC_INFO; m_store = store; Q_EMIT uriChanged(); } /*! * \qmlproperty ContentScope ContentStore::scope * * Specifies the ContentScope for this store. */ ContentScope::Scope ContentStore::scope() { TRACE() << Q_FUNC_INFO; return m_scope; } /*! * \brief ContentStore::setScope * \internal */ void ContentStore::setScope(ContentScope::Scope scope) { TRACE() << Q_FUNC_INFO; m_scope = scope; Q_EMIT scopeChanged(); } /*! * \brief ContentStore::updateStore * \internal */ void ContentStore::updateStore(ContentType::Type contentType) { TRACE() << Q_FUNC_INFO; com::ubuntu::content::Scope hubScope = ContentScope::contentScope2HubScope(m_scope); const com::ubuntu::content::Type &hubType = ContentType::contentType2HubType(contentType); setStore(m_hub->store_for_scope_and_type(hubScope, hubType)); } content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contentscope.h0000644000015600001650000000222312670026423025231 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_UBUNTU_CONTENTSCOPE_H_ #define COM_UBUNTU_CONTENTSCOPE_H_ #include #include class ContentScope : public QObject { Q_OBJECT Q_ENUMS(Scope) public: enum Scope { System = 0, User = 1, App = 2 }; ContentScope(QObject *parent = nullptr); static com::ubuntu::content::Scope contentScope2HubScope(int scope); static com::ubuntu::content::Scope contentScope2HubScope(Scope scope); }; #endif // COM_UBUNTU_CONTENTSCOPE_H_ content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contentitem.cpp0000644000015600001650000001342012670026432025412 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "contentitem.h" #include "../../../src/com/ubuntu/content/debug.h" #include #include #include #include /*! * \qmltype ContentItem * \instantiates ContentItem * \inqmlmodule Ubuntu.Content * \brief Content that can be imported or exported from a ContentPeer * * A ContentItem is an item that can be imported or exported from a ContentPeer * * See documentation for ContentHub */ namespace cuc = com::ubuntu::content; ContentItem::ContentItem(QObject *parent) : QObject(parent) { TRACE() << Q_FUNC_INFO; } /*! * \qmlproperty string ContentItem::name * \internal */ const QString &ContentItem::name() const { TRACE() << Q_FUNC_INFO; return m_item.name(); } void ContentItem::setName(const QString &name) { TRACE() << Q_FUNC_INFO; if (name == m_item.name()) return; m_item.setName(name); Q_EMIT nameChanged(); } /*! * \qmlproperty url ContentItem::url * * URL of the content data */ const QUrl &ContentItem::url() const { TRACE() << Q_FUNC_INFO; return m_item.url(); } void ContentItem::setUrl(const QUrl &url) { TRACE() << Q_FUNC_INFO; if (url == this->url()) return; QString oldName = m_item.name(); m_item = cuc::Item(url); m_item.setName(oldName); Q_EMIT urlChanged(); } /*! * \qmlproperty string ContentItem::text * Content of the transfer */ QString ContentItem::text() { TRACE() << Q_FUNC_INFO; return QString(m_item.text()); } void ContentItem::setText(const QString &text) { TRACE() << Q_FUNC_INFO; if (text == QString(m_item.text())) return; m_item.setText(text); Q_EMIT textChanged(); } /*! * \brief ContentItem::item * \internal */ const com::ubuntu::content::Item &ContentItem::item() const { TRACE() << Q_FUNC_INFO; return m_item; } /*! * \brief ContentItem::setItem * \internal */ void ContentItem::setItem(const com::ubuntu::content::Item &item) { TRACE() << Q_FUNC_INFO; if (item == m_item) return; m_item = item; Q_EMIT urlChanged(); } /*! * \qmlmethod string ContentItem::toDataURI() * Returns the ContentItem base64 encoded with the mimetype as a * properly formated dataUri */ QUrl ContentItem::toDataURI() { TRACE() << Q_FUNC_INFO; QString path(m_item.url().toLocalFile()); /* Don't attempt to create the dataUri if the file isn't local */ if (!QFile::exists(path)) { qWarning() << "File not found:" << path; return QUrl(); } QMimeDatabase mdb; QMimeType mt = mdb.mimeTypeForFile(path); /* Don't attempt to create the dataUri if we can't detect the mimetype */ if (!mt.isValid()) { qWarning() << "Unknown MimeType for file:" << path; return QUrl(); } QString contentType(mt.name()); QByteArray data; QFile file(path); if(file.open(QIODevice::ReadOnly)) { data = file.readAll(); file.close(); } /* Don't attempt to create the dataUri with empty data */ if (data.isEmpty()) { qWarning() << "Failed to read contents of file:" << path; return QUrl(); } QString dataUri(QStringLiteral("data:")); dataUri.append(contentType); dataUri.append(QStringLiteral(";base64,")); dataUri.append(QString::fromLatin1(data.toBase64())); return QUrl(dataUri); } /*! * \qmlmethod bool ContentItem::move(dir) * \brief If the url is a local file, move the file to \a dir * * If the move is successful, the url property will be changed * and onUrlChanged will be emitted. * * Returns true if the file was moved successfully, false * on error or if the url wasn't a local file. */ bool ContentItem::move(const QString &dir) { TRACE() << Q_FUNC_INFO << "dir:" << dir; return (move(dir, nullptr)); } /*! * \qmlmethod bool ContentItem::move(dir, fileName) * \brief If the url is a local file, move the file to \a dir and * rename to \a fileName * * If the move is successful, the url property will be changed * and onUrlChanged will be emitted. * * Returns true if the file was moved successfully, false * on error or if the url wasn't a local file. */ bool ContentItem::move(const QString &dir, const QString &fileName) { TRACE() << Q_FUNC_INFO << "dir:" << dir << "fileName:" << fileName; QString path(m_item.url().toLocalFile()); if (!QFile::exists(path)) { qWarning() << "File not found:" << path; return false; } QFileInfo fi(path); QDir d(dir); if (not d.exists()) d.mkpath(d.absolutePath()); QString destFilePath = ""; if (fileName.isEmpty()) destFilePath = dir + QDir::separator() + fi.fileName(); else destFilePath = dir + QDir::separator() + fileName; TRACE() << Q_FUNC_INFO << "New path:" << destFilePath; if (not QFile::rename(fi.absoluteFilePath(), destFilePath)) { qWarning() << "Failed to move content to:" << destFilePath << "falling back to copy"; if (not QFile::copy(fi.absoluteFilePath(), destFilePath)) { qWarning() << "Failed to copy content to:" << destFilePath; return false; } } setUrl(QUrl::fromLocalFile(destFilePath)); return true; } content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contentscope.cpp0000644000015600001650000000347512670026423025576 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "../../../src/com/ubuntu/content/debug.h" #include "contentscope.h" /*! \qmltype ContentScope \instantiates ContentScope \inqmlmodule Ubuntu.Content \brief Used with a ContentStore to specify the destination location for a transfer \sa ContentStore \e {ContentScope} is an enumeration of scope types: \table \header \li Scope \row \li ContentScope.System \row \li ContentScope.User \row \li ContentScope.App \endtable */ ContentScope::ContentScope(QObject *parent) : QObject(parent) { TRACE() << Q_FUNC_INFO; } /*! * \brief ContentScope::contentScope2HubScope converts a ContentScope::Scope to a * com::ubuntu::content::Scope * \internal */ com::ubuntu::content::Scope ContentScope::contentScope2HubScope(int scope) { Scope cscope = static_cast(scope); TRACE() << Q_FUNC_INFO << cscope; return contentScope2HubScope(cscope); } /*! * \brief ContentScope::contentScope2HubScope converts a ContentScope::Scope to a * com::ubuntu::content::Scope * \internal */ com::ubuntu::content::Scope ContentScope::contentScope2HubScope(Scope scope) { return static_cast(scope); } content-hub-0.1+16.04.20160309/import/Ubuntu/Content/qmlimportexporthandler.h0000644000015600001650000000276712670026423027366 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_UBUNTU_QMLIMPORTEXPORTHANDLER_H_ #define COM_UBUNTU_QMLIMPORTEXPORTHANDLER_H_ #include namespace com { namespace ubuntu { namespace content { class Transfer; } } } class QmlImportExportHandler : public com::ubuntu::content::ImportExportHandler { Q_OBJECT public: QmlImportExportHandler(QObject *parent = nullptr); Q_INVOKABLE virtual void handle_import(com::ubuntu::content::Transfer *transfer); Q_INVOKABLE virtual void handle_export(com::ubuntu::content::Transfer *transfer); Q_INVOKABLE virtual void handle_share(com::ubuntu::content::Transfer *transfer); Q_SIGNALS: void importRequested(com::ubuntu::content::Transfer*); void exportRequested(com::ubuntu::content::Transfer*); void shareRequested(com::ubuntu::content::Transfer*); }; #endif // COM_UBUNTU_QMLIMPORTEXPORTHANDLER_H_ content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contentstore.h0000644000015600001650000000314512670026423025260 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_UBUNTU_CONTENTSTORE_H_ #define COM_UBUNTU_CONTENTSTORE_H_ #include "contentscope.h" #include "contenttype.h" #include #include #include #include class ContentStore : public QObject { Q_OBJECT Q_PROPERTY(QString uri READ uri NOTIFY uriChanged) Q_PROPERTY(ContentScope::Scope scope READ scope WRITE setScope NOTIFY scopeChanged) public: ContentStore(QObject *parent = nullptr); const QString &uri() const; const com::ubuntu::content::Store *store() const; void setStore(const com::ubuntu::content::Store *store); ContentScope::Scope scope(); void setScope(ContentScope::Scope scope); void updateStore(ContentType::Type type); Q_SIGNALS: void uriChanged(); void scopeChanged(); private: com::ubuntu::content::Hub *m_hub; const com::ubuntu::content::Store *m_store; ContentScope::Scope m_scope; }; #endif // COM_UBUNTU_CONTENTSTORE_H_ content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contenticonprovider.cpp0000644000015600001650000000326412670026423027164 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "../../../src/com/ubuntu/content/debug.h" #include "contenticonprovider.h" ContentIconProvider::ContentIconProvider() : QQuickImageProvider(QQuickImageProvider::Image) { TRACE() << Q_FUNC_INFO; appIdImageMap = new QMap(); } ContentIconProvider *ContentIconProvider::instance() { static ContentIconProvider *contentIconProvider = new ContentIconProvider(); return contentIconProvider; } /*! * \brief void ContentIconProvider::addImage * * Add an app's icon to the provider */ void ContentIconProvider::addImage(QString appId, QImage image) { TRACE() << Q_FUNC_INFO; appIdImageMap->insert(appId, image); } /*! * \brief QImage ContentIconProvider::requestImage * * Returns the QImage for a given appId at the requested size */ QImage ContentIconProvider::requestImage(const QString &id, QSize *size, const QSize &requestedSize) { Q_UNUSED(requestedSize) TRACE() << Q_FUNC_INFO; QImage image = appIdImageMap->value(id); if(size) { *size = image.size(); } return image; } content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contenttype.h0000644000015600001650000000263312670026423025106 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_UBUNTU_CONTENTTYPE_H_ #define COM_UBUNTU_CONTENTTYPE_H_ #include #include #include class ContentType : public QObject { Q_OBJECT Q_ENUMS(Type) public: enum Type { Undefined = -2, All = -1, Unknown = 0, Documents = 1, Pictures = 2, Music = 3, Contacts = 4, Videos = 5, Links = 6, EBooks = 7, Text = 8, Events = 9 }; ContentType(QObject *parent = nullptr); static const com::ubuntu::content::Type &contentType2HubType(int type); static const com::ubuntu::content::Type &contentType2HubType(Type type); static Type hubType2contentType(const QString& type); }; #endif // COM_UBUNTU_CONTENTTYPE_H_ content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contenthub.h0000644000015600001650000000475612670026423024713 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_UBUNTU_CONTENTHUB_H_ #define COM_UBUNTU_CONTENTHUB_H_ #include #include #include #include #include "contentpeer.h" #include "contenttransfer.h" class ContentStore; class QmlImportExportHandler; namespace com { namespace ubuntu { namespace content { class Hub; class Peer; class Store; class Type; class Transfer; } } } class ContentHub : public QObject { Q_OBJECT Q_PROPERTY(QQmlListProperty finishedImports READ finishedImports NOTIFY finishedImportsChanged) Q_PROPERTY(bool hasPending READ hasPending) public: ContentHub(const ContentHub&) = delete; static ContentHub *instance(); Q_INVOKABLE void restoreImports(); QQmlListProperty finishedImports(); bool hasPending(); Q_INVOKABLE ContentTransfer* importContent(com::ubuntu::content::Peer peer, ContentType::Type type); Q_INVOKABLE ContentTransfer* exportContent(com::ubuntu::content::Peer peer, ContentType::Type type); Q_INVOKABLE ContentTransfer* shareContent(com::ubuntu::content::Peer peer, ContentType::Type type); Q_SIGNALS: void importRequested(ContentTransfer *transfer); void exportRequested(ContentTransfer *transfer); void shareRequested(ContentTransfer *transfer); void finishedImportsChanged(); private Q_SLOTS: void handleImport(com::ubuntu::content::Transfer* transfer); void handleExport(com::ubuntu::content::Transfer* transfer); void handleShare(com::ubuntu::content::Transfer* transfer); void updateState(); private: QList m_finishedImports; QHash m_activeImports; com::ubuntu::content::Hub *m_hub; QmlImportExportHandler *m_handler; bool m_hasPending = false; protected: ContentHub(QObject* = nullptr); }; #endif // COM_UBUNTU_CONTENTHUB_H_ content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contentpeermodel.h0000644000015600001650000000413612670026423026101 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_UBUNTU_CONTENTPEERMODEL_H_ #define COM_UBUNTU_CONTENTPEERMODEL_H_ #include "contentpeer.h" #include "contenttype.h" #include "contenthandler.h" #include #include #include #include #include class ContentPeerModel : public QObject, public QQmlParserStatus { Q_OBJECT Q_INTERFACES(QQmlParserStatus) Q_PROPERTY(ContentType::Type contentType READ contentType WRITE setContentType NOTIFY contentTypeChanged) Q_PROPERTY(ContentHandler::Handler handler READ handler WRITE setHandler NOTIFY handlerChanged) Q_PROPERTY(QQmlListProperty peers READ peers NOTIFY peersChanged) public: ContentPeerModel(QObject *parent = nullptr); void classBegin(); void componentComplete(); ContentType::Type contentType(); void setContentType(ContentType::Type contentType); void appendPeersForContentType(ContentType::Type contentType); ContentHandler::Handler handler(); void setHandler(ContentHandler::Handler handler); QQmlListProperty peers(); Q_SIGNALS: void contentTypeChanged(); void handlerChanged(); void peersChanged(); void findPeersCompleted(); public Q_SLOTS: void findPeers(); private: com::ubuntu::content::Hub *m_hub; ContentType::Type m_contentType; ContentHandler::Handler m_handler; QList m_peers; bool m_complete; }; #endif // COM_UBUNTU_CONTENTPEERMODEL_H_ content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contenticonprovider.h0000644000015600001650000000224512670026423026627 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef COM_UBUNTU_CONTENTICONPROVIDER_H_ #define COM_UBUNTU_CONTENTICONPROVIDER_H_ #include #include #include #include class ContentIconProvider : public QQuickImageProvider { public: ContentIconProvider(); static ContentIconProvider *instance(); QImage requestImage(const QString &id, QSize *size, const QSize &requestedSize); void addImage(QString appId, QImage image); private: QMap *appIdImageMap; }; #endif // COM_UBUNTU_CONTENTICONPROVIDER_H_ content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contenthubplugin.cpp0000644000015600001650000000651012670026423026453 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "contenthubplugin.h" #include "../../../src/com/ubuntu/content/debug.h" #include "contenthandler.h" #include "contenthub.h" #include "contenticonprovider.h" #include "contentitem.h" #include "contentpeer.h" #include "contentpeermodel.h" #include "contentscope.h" #include "contentstore.h" #include "contenttransfer.h" #include "contenttype.h" #include #include #include #include #include /*! * \brief qml_content_hub function to unstatinate the ContentHub as a singleton in QML */ static QObject *qml_content_hub(QQmlEngine *engine, QJSEngine *scriptEngine) { Q_UNUSED(engine) Q_UNUSED(scriptEngine) TRACE() << Q_FUNC_INFO; return ContentHub::instance(); } /*! * \reimp */ void ContentHubPlugin::initializeEngine(QQmlEngine * engine, const char * uri) { Q_UNUSED(uri) TRACE() << Q_FUNC_INFO; QIcon::setThemeName("suru"); QIcon::setThemeSearchPaths(QStringList() << ("/usr/share/icons/")); ContentIconProvider *iconProvider = ContentIconProvider::instance(); engine->addImageProvider("content-hub", iconProvider); } /*! * \reimp */ void ContentHubPlugin::registerTypes(const char *uri) { TRACE() << Q_FUNC_INFO; Q_ASSERT(uri == QLatin1String("Ubuntu.Content")); QVector> versions; versions.append(QPair(0, 1)); versions.append(QPair(1, 0)); versions.append(QPair(1, 1)); versions.append(QPair(1, 3)); // Register common types for version 0.1, 1.0, 1.1 and 1.3 for(int i = 0; i < versions.length(); i++) { int versionMajor = versions[i].first; int versionMinor = versions[i].second; qmlRegisterUncreatableType(uri, versionMajor, versionMinor, "ContentHandler", "Not creatable as an object, use only to retrieve handler enums (e.g. ContentHandler.Source)"); qmlRegisterSingletonType(uri, versionMajor, versionMinor, "ContentHub", qml_content_hub); qmlRegisterType(uri, versionMajor, versionMinor, "ContentItem"); qmlRegisterType(uri, versionMajor, versionMinor, "ContentPeer"); qmlRegisterType(uri, versionMajor, versionMinor, "ContentPeerModel"); qmlRegisterType(uri, versionMajor, versionMinor, "ContentScope"); qmlRegisterType(uri, versionMajor, versionMinor, "ContentStore"); qmlRegisterUncreatableType(uri, versionMajor, versionMinor, "ContentTransfer", "Not creatable as an object, please use ContentPeer::request()"); qmlRegisterUncreatableType(uri, versionMajor, versionMinor, "ContentType", "Use only the type"); } } content-hub-0.1+16.04.20160309/import/Ubuntu/Content/qmldir0000644000015600001650000000054712670026423023576 0ustar pbuserpbgroup00000000000000module Ubuntu.Content plugin ubuntu-content-hub-plugin #0.1 ContentTransferHint 0.1 ContentTransferHint.qml ContentPeerPicker 0.1 ContentPeerPicker10.qml #1.0 ContentTransferHint 1.0 ContentTransferHint.qml ContentPeerPicker 1.0 ContentPeerPicker10.qml #1.1 ContentPeerPicker 1.1 ContentPeerPicker11.qml #1.3 ContentPeerPicker 1.3 ContentPeerPicker13.qml content-hub-0.1+16.04.20160309/import/Ubuntu/Content/ContentPeerPicker.qdoc0000644000015600001650000000474012670026423026616 0ustar pbuserpbgroup00000000000000/* * Copyright 2014 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ /*! \qmltype ContentPeerPicker \inqmlmodule Ubuntu.Content \brief Component that allows users to select a source/destination for content transfer This component displays a list of applications, devices and services which are appropriate for transferring a given content type with. */ /*! \qmlproperty ContentHandler ContentPeerPicker::handler \brief The ContentHandler to use when finding peers. */ /*! \qmlproperty ContentType ContentPeerPicker::contentType \brief The ContentType to use when finding peers. */ /*! \qmlproperty bool ContentPeerPicker::showTitle \brief Determines whether the header should be displayed. This makes it possible to hide the header, which can be useful if embedding the picker within another page or popup. */ /*! \qmlproperty ContentPeer ContentPeerPicker::peer \brief The peer selected by the user. Once the peerSelected signal has been sent, this provides the ContentPeer which the user has selected. */ /*! \qmlproperty Loader ContentPeerPicker::customerPeerModelLoader \brief A Loader containing a ContentPeerModel. This can optionally be used to provide a pre-populated ContentPeerModel to this ContentPeerPicker. */ /*! \qmlproperty string ContentPeerPicker::headerText \brief Text to display in the header. */ /*! \qmlsignal ContentPeerPicker::peerSelected() \brief Emitted when a user selects a peer. Once this signal has been emitted the selected peer can be accessed via the peer property. \c onPeerSelected */ /*! \qmlsignal ContentPeerPicker::cancelPressed() \brief Emitted when the user clicks the cancel button. The ContentPeerPicker will be hidden automatically when the user cancels the operations and the active ContentTransfer will be set to Aborted. \c onCancelPressed */ content-hub-0.1+16.04.20160309/import/Ubuntu/Content/qmlimportexporthandler.cpp0000644000015600001650000000277312670026423027716 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "qmlimportexporthandler.h" #include "../../../src/com/ubuntu/content/debug.h" #include namespace cuc = com::ubuntu::content; /*! * QmlImportExportHandler is for internal use only */ QmlImportExportHandler::QmlImportExportHandler(QObject *parent) : cuc::ImportExportHandler(parent) { TRACE() << Q_FUNC_INFO; } /*! * \reimp */ void QmlImportExportHandler::handle_import(com::ubuntu::content::Transfer *transfer) { TRACE() << Q_FUNC_INFO; Q_EMIT importRequested(transfer); } /*! * \reimp */ void QmlImportExportHandler::handle_export(com::ubuntu::content::Transfer *transfer) { TRACE() << Q_FUNC_INFO; Q_EMIT exportRequested(transfer); } /*! * \reimp */ void QmlImportExportHandler::handle_share(com::ubuntu::content::Transfer *transfer) { TRACE() << Q_FUNC_INFO; Q_EMIT shareRequested(transfer); } content-hub-0.1+16.04.20160309/import/Ubuntu/Content/CMakeLists.txt0000644000015600001650000000664612670026423025131 0ustar pbuserpbgroup00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . project(content-hub-plugin) find_package(Qt5Quick REQUIRED) set(CMAKE_AUTOMOC TRUE) execute_process( COMMAND qmake -query QT_INSTALL_QML OUTPUT_VARIABLE QT_INSTALL_QML OUTPUT_STRIP_TRAILING_WHITESPACE ) execute_process( COMMAND qmake -query QT_INSTALL_BINS OUTPUT_VARIABLE QT_INSTALL_BINS OUTPUT_STRIP_TRAILING_WHITESPACE ) set(CONTENT_HUB_IMPORTS_DIR "${QT_INSTALL_QML}/Ubuntu/Content") set(PLUGIN ubuntu-content-hub-plugin) add_definitions(-DQT_NO_KEYWORDS) include_directories( ${CMAKE_SOURCE_DIR} ${NIH_INCLUDE_DIRS} ${NIH_DBUS_INCLUDE_DIRS} ${DBUS_INCLUDE_DIRS} ${GLIB_INCLUDE_DIRS} ) set(PLUGIN_HDRS contenthandler.h contenthub.h contenthubplugin.h contenticonprovider.h contentitem.h contentpeer.h contentpeermodel.h contentscope.h contentstore.h contenttransfer.h contenttype.h qmlimportexporthandler.h ) set(PLUGIN_SRC contenthandler.cpp contenthub.cpp contenthubplugin.cpp contenticonprovider.cpp contentitem.cpp contentpeer.cpp contentpeermodel.cpp contentscope.cpp contentstore.cpp contenttransfer.cpp contenttype.cpp qmlimportexporthandler.cpp ../../../src/com/ubuntu/content/debug.cpp ) add_library(${PLUGIN} MODULE ${PLUGIN_SRC} ${PLUGIN_HDRS}) qt5_use_modules(${PLUGIN} Core Qml Quick DBus) target_link_libraries( ${PLUGIN} content-hub ${NIH_LIBRARIES} ${NIH_DBUS_LIBRARIES} ${GLIB_LIBRARIES} ) install(TARGETS ${PLUGIN} DESTINATION ${CONTENT_HUB_IMPORTS_DIR}) install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/qmldir DESTINATION ${CONTENT_HUB_IMPORTS_DIR}) file(GLOB QML_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.qml qmldir) install(FILES ${QML_FILES} DESTINATION ${CONTENT_HUB_IMPORTS_DIR}) if(NOT ${CMAKE_CURRENT_BINARY_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}) # copy qml files and assets over to build dir to be able to import them uninstalled foreach(_file ${QML_FILES}) add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_file} DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${_file} COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/${_file} ${CMAKE_CURRENT_BINARY_DIR}/${_file}) endforeach(_file) add_custom_target(copy_files_to_build_dir DEPENDS ${QML_FILES}) add_dependencies(${PLUGIN} copy_files_to_build_dir) endif() add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/plugins.qmltypes COMMAND ${QT_INSTALL_BINS}/qmlplugindump -notrelocatable Ubuntu.Content 1.1 ../../ > ${CMAKE_CURRENT_BINARY_DIR}/plugins.qmltypes DEPENDS ${PLUGIN} WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" ) add_custom_target(Content_generated_files ALL SOURCES ${CMAKE_CURRENT_BINARY_DIR}/plugins.qmltypes) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/plugins.qmltypes DESTINATION ${CONTENT_HUB_IMPORTS_DIR}) content-hub-0.1+16.04.20160309/import/Ubuntu/Content/ContentPeerPicker10.qml0000644000015600001650000002033012670026423026613 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ import QtQuick 2.0 import Ubuntu.Components 0.1 import Ubuntu.Components.Popups 0.1 import Ubuntu.Components.ListItems 0.1 as ListItem import Ubuntu.Content 0.1 /*! \internal Documentation is in ContentPeerPicker.qdoc */ Item { id: root anchors.fill: parent property var handler property var contentType property alias showTitle: header.visible property var peer property var customPeerModelLoader property var completed: false signal peerSelected signal cancelPressed Rectangle { id: background anchors.fill: parent color: Theme.palette.normal.background } Header { id: header title: (handler === ContentHandler.Source) ? i18n.dtr("content-hub", "Choose from") : (handler === ContentHandler.Destination ? i18n.dtr("content-hub", "Open with") : i18n.dtr("content-hub", "Share to")) } Loader { id: peerModelLoader active: false asynchronous: true sourceComponent: ContentPeerModel { } onLoaded: { item.handler = root.handler; item.contentType = root.contentType; } } Component.onCompleted: { if (root.visible) { if (customPeerModelLoader) { customPeerModelLoader.active = true; } else { peerModelLoader.active = true; } } completed = true; } onVisibleChanged: { if (completed) { if (customPeerModelLoader) { customPeerModelLoader.active = true; } else { peerModelLoader.active = true; } } } onHandlerChanged: { if (!customPeerModelLoader && peerModelLoader.item) { appPeers.model = undefined; // Clear grid view peerModelLoader.item.handler = root.handler; appPeers.model = peerModelLoader.item.peers; } } onContentTypeChanged: { if (!customPeerModelLoader && peerModelLoader.item) { appPeers.model = undefined; // Clear grid view peerModelLoader.item.contentType = root.contentType; appPeers.model = peerModelLoader.item.peers; } } Component { id: peerDelegate Item { width: units.gu(13.5) height: units.gu(16) AbstractButton { width: parent.width height: icon.height + label.height UbuntuShape { id: icon anchors { top: parent.top horizontalCenter: parent.horizontalCenter } radius: "medium" width: units.gu(8) height: units.gu(7.5) image: Image { id: image objectName: "image" sourceSize { width: icon.width; height: icon.height } asynchronous: true cache: false source: "image://content-hub/" + modelData.appId horizontalAlignment: Image.AlignHCenter verticalAlignment: Image.AlignVCenter } } Label { id: label objectName: "label" anchors { baseline: icon.bottom baselineOffset: units.gu(2) left: parent.left right: parent.right leftMargin: units.gu(1) rightMargin: units.gu(1) } opacity: 0.9 fontSize: "small" horizontalAlignment: Text.AlignHCenter text: modelData.name || modelData.appId wrapMode: Text.Wrap maximumLineCount: 2 } onClicked: { peer = modelData peerSelected() } } } } ListItem.Header { id: appTitle anchors.top: header.visible ? header.bottom : parent.top text: i18n.dtr("content-hub", "Apps") } Rectangle { id: apps color: ColorUtils.luminance(background.color) >= 0.85 ? "#FFFFFF" : Qt.darker(background.color) clip: true anchors { left: parent.left right: parent.right top: appTitle.bottom bottom: devTitle.visible ? devTitle.top : cancelButton.top bottomMargin: units.gu(1) } Flickable { anchors.fill: parent ResponsiveGridView { id: appPeers anchors.fill: parent minimumHorizontalSpacing: units.gu(0.5) maximumNumberOfColumns: 6 delegateWidth: units.gu(11) delegateHeight: units.gu(11) verticalSpacing: units.gu(2) model: customPeerModelLoader ? customPeerModelLoader.item.peers : peerModelLoader.item.peers delegate: peerDelegate Label { anchors.top: parent.top anchors.topMargin: units.gu(2.5) anchors.horizontalCenter: parent.horizontalCenter width: parent.width - units.gu(5) wrapMode: Text.WordWrap horizontalAlignment: Text.AlignHCenter text: root.handler === ContentHandler.Source ? i18n.dtr("content-hub", "Sorry, there aren't currently any apps installed that can provide this type of content.") : i18n.dtr("content-hub", "Sorry, there aren't currently any apps installed that can handle this type of content.") visible: appPeers.model ? appPeers.model.length == 0 : false } } } } ListItem.Header { id: devTitle // TODO: make this visible when we have a way to populate devices visible: false anchors { left: parent.left right: parent.right top: apps.bottom } text: i18n.dtr("content-hub", "Devices") } Rectangle { id: devices // TODO: make this visible when we have a way to populate devices visible: false color: ColorUtils.luminance(background.color) >= 0.85 ? "#FFFFFF" : Qt.darker(background.color) width: parent.width radius: 0 anchors { left: parent.left right: parent.right top: devTitle.bottom bottom: cancelButton.top bottomMargin: units.gu(1) } Flickable { anchors.fill: parent ResponsiveGridView { id: devPeers anchors.fill: parent minimumHorizontalSpacing: units.gu(0.5) maximumNumberOfColumns: 6 delegateWidth: units.gu(11) delegateHeight: units.gu(9.5) verticalSpacing: units.gu(2) delegate: peerDelegate } } } Button { id: cancelButton objectName: "contentPeerPickerCancelButton" text: i18n.dtr("content-hub", "Cancel") anchors { left: parent.left bottom: parent.bottom margins: units.gu(1) } onClicked: { if(root.activeTransfer) { root.activeTransfer.state = ContentTransfer.Aborted; } cancelPressed(); } } } content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contentpeermodel.cpp0000644000015600001650000001266012670026423026435 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "../../../src/com/ubuntu/content/debug.h" #include "contentpeermodel.h" #include namespace cuc = com::ubuntu::content; /*! * \qmltype ContentPeerModel * \instantiates ContentPeerModel * \inqmlmodule Ubuntu.Content * \brief A list of applications that can export or import a ContentType * * A ContentPeerModel provides a list of all applications that are registered * in the ContentHub as a source or destination of a ContentType * * See documentation for ContentPeer */ ContentPeerModel::ContentPeerModel(QObject *parent) : QObject(parent), m_contentType(ContentType::Undefined), m_handler(ContentHandler::Source), m_complete(false) { TRACE() << Q_FUNC_INFO; m_hub = cuc::Hub::Client::instance(); } /*! * \brief \reimp * \internal */ void ContentPeerModel::classBegin() { } /*! * \brief \reimp * \internal */ void ContentPeerModel::componentComplete() { m_complete = true; findPeers(); } /*! * \qmlproperty ContentType ContentPeerModel::contentType * * Specifies which ContentType discovered peers should support. */ ContentType::Type ContentPeerModel::contentType() { TRACE() << Q_FUNC_INFO; return m_contentType; } /*! * \brief ContentPeerModel::setContentType * \internal */ void ContentPeerModel::setContentType(ContentType::Type contentType) { TRACE() << Q_FUNC_INFO; if (m_contentType != contentType) { m_contentType = contentType; if (m_complete) { findPeers(); } Q_EMIT contentTypeChanged(); } } /*! * \brief ContentPeerModel::findPeers * \internal */ void ContentPeerModel::findPeers() { TRACE() << Q_FUNC_INFO; m_peers.clear(); if(m_contentType == ContentType::All) { appendPeersForContentType(ContentType::Documents); appendPeersForContentType(ContentType::Pictures); appendPeersForContentType(ContentType::Music); appendPeersForContentType(ContentType::Contacts); appendPeersForContentType(ContentType::Videos); appendPeersForContentType(ContentType::Links); appendPeersForContentType(ContentType::EBooks); appendPeersForContentType(ContentType::Text); appendPeersForContentType(ContentType::Events); appendPeersForContentType(ContentType::Unknown); } else if (m_contentType != ContentType::Undefined) { appendPeersForContentType(m_contentType); } Q_EMIT findPeersCompleted(); } /*! * \brief ContentPeerModel::appendPeersForContentType * \internal */ void ContentPeerModel::appendPeersForContentType(ContentType::Type contentType) { TRACE() << Q_FUNC_INFO; const cuc::Type &hubType = ContentType::contentType2HubType(contentType); QVector hubPeers; if (m_handler == ContentHandler::Destination) { hubPeers = m_hub->known_destinations_for_type(hubType); } else if (m_handler == ContentHandler::Share) { hubPeers = m_hub->known_shares_for_type(hubType); } else { hubPeers = m_hub->known_sources_for_type(hubType); } Q_FOREACH (const cuc::Peer &hubPeer, hubPeers) { if(!hubPeer.id().isEmpty()) { bool isDefault = false; bool isDupe = false; Q_FOREACH (ContentPeer *p, m_peers) { if (p->peer().id() == hubPeer.id()) isDupe = true; } if (isDupe) continue; ContentPeer *qmlPeer = new ContentPeer(); qmlPeer->setPeer(hubPeer); qmlPeer->setHandler(m_handler); if(m_contentType != ContentType::All) { qmlPeer->setContentType(contentType); isDefault = qmlPeer->isDefaultPeer(); } else { qmlPeer->setContentType(m_contentType); } if(isDefault) m_peers.prepend(qmlPeer); else m_peers.append(qmlPeer); Q_EMIT peersChanged(); } } } /*! * \qmlproperty ContentHandler ContentPeerModel::handler * * Specifies which ContentHandler discovered peers should support. */ ContentHandler::Handler ContentPeerModel::handler() { TRACE() << Q_FUNC_INFO; return m_handler; } /*! * \brief ContentPeerModel::setHandler * \internal */ void ContentPeerModel::setHandler(ContentHandler::Handler handler) { TRACE() << Q_FUNC_INFO; if (m_handler != handler) { m_handler = handler; if (m_complete) { findPeers(); } Q_EMIT handlerChanged(); } } /*! * \qmlproperty list ContentPeerModel::peers * * Provides a list of discovered peers matching the requested ContentType and ContentHandler. */ QQmlListProperty ContentPeerModel::peers() { TRACE() << Q_FUNC_INFO; return QQmlListProperty(this, m_peers); } content-hub-0.1+16.04.20160309/import/Ubuntu/Content/contenthub.cpp0000644000015600001650000002307412670026423025240 0ustar pbuserpbgroup00000000000000/* * Copyright 2013 Canonical Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #include "../../../src/com/ubuntu/content/debug.h" #include "../../../src/com/ubuntu/content/utils.cpp" #include "contenthub.h" #include "contentpeer.h" #include "contentstore.h" #include "contenttransfer.h" #include "contenttype.h" #include "qmlimportexporthandler.h" #include #include #include #include /*! * \qmltype ContentHub * \instantiates ContentHub * \inqmlmodule Ubuntu.Content * \brief The central manager for all content operations * * Example usage for importing content: * \qml * import QtQuick 2.0 * import Ubuntu.Components 0.1 * import Ubuntu.Content 0.1 * * MainView { * id: root * width: units.gu(60) * height: units.gu(90) * property list importItems * property var activeTransfer * * ContentPeer { * id: picSourceSingle * contentType: ContentType.Pictures * handler: ContentHandler.Source * selectionType: ContentTransfer.Single * } * * ContentPeer { * id: picSourceMulti * contentType: ContentType.Pictures * handler: ContentHandler.Source * selectionType: ContentTransfer.Multiple * } * * Row { * Button { * text: "Import single item" * onClicked: { * activeTransfer = picSourceSingle.request() * } * } * * Button { * text: "Import multiple items" * onClicked: { * activeTransfer = picSourceMulti.request() * } * } * } * * ContentTransferHint { * id: importHint * anchors.fill: parent * activeTransfer: root.activeTransfer * } * * Connections { * target: root.activeTransfer * onStateChanged: { * if (root.activeTransfer.state === ContentTransfer.Charged) * importItems = root.activeTransfer.items; * } * } * } * \endqml * * Example usage for providing a content export: * \qml * import QtQuick 2.0 * import Ubuntu.Content 0.1 * * Rectangle { * property list selectedItems * Connections { * target: ContentHub * onExportRequested: { * // show content picker * transfer.items = selectedItems; * transfer.state = ContentTransfer.Charged; * } * } * } * \endqml */ namespace cuc = com::ubuntu::content; ContentHub::ContentHub(QObject *parent) : QObject(parent), m_hub(0) { TRACE() << Q_FUNC_INFO; m_hub = cuc::Hub::Client::instance(); m_handler = new QmlImportExportHandler(this); m_hub->register_import_export_handler(m_handler); QString id = app_id(); if (!id.isEmpty()) m_hasPending = m_hub->has_pending(id); connect(m_handler, SIGNAL(importRequested(com::ubuntu::content::Transfer*)), this, SLOT(handleImport(com::ubuntu::content::Transfer*))); connect(m_handler, SIGNAL(exportRequested(com::ubuntu::content::Transfer*)), this, SLOT(handleExport(com::ubuntu::content::Transfer*))); connect(m_handler, SIGNAL(shareRequested(com::ubuntu::content::Transfer*)), this, SLOT(handleShare(com::ubuntu::content::Transfer*))); } ContentHub *ContentHub::instance() { TRACE() << Q_FUNC_INFO; static ContentHub *contentHub = new ContentHub(nullptr); return contentHub; } /*! * \brief ContentHub::importContent creates a ContentTransfer object * \a peer * \a type * \internal */ ContentTransfer* ContentHub::importContent(cuc::Peer peer, ContentType::Type contentType) { TRACE() << Q_FUNC_INFO; const cuc::Type &hubType = ContentType::contentType2HubType(contentType); cuc::Transfer *hubTransfer = m_hub->create_import_from_peer_for_type(peer, hubType); ContentTransfer *qmlTransfer = new ContentTransfer(this); qmlTransfer->setTransfer(hubTransfer); m_activeImports.insert(hubTransfer, qmlTransfer); return qmlTransfer; } /*! * \brief ContentHub::exportContent creates a ContentTransfer object * \a peer * \a type * \internal */ ContentTransfer* ContentHub::exportContent(cuc::Peer peer, ContentType::Type contentType) { TRACE() << Q_FUNC_INFO; const cuc::Type &hubType = ContentType::contentType2HubType(contentType); cuc::Transfer *hubTransfer = m_hub->create_export_to_peer_for_type(peer, hubType); ContentTransfer *qmlTransfer = new ContentTransfer(this); qmlTransfer->setTransfer(hubTransfer); m_activeImports.insert(hubTransfer, qmlTransfer); return qmlTransfer; } /*! * \brief ContentHub::shareContent creates a ContentTransfer object * \a peer * \a type * \internal */ ContentTransfer* ContentHub::shareContent(cuc::Peer peer, ContentType::Type contentType) { TRACE() << Q_FUNC_INFO; const cuc::Type &hubType = ContentType::contentType2HubType(contentType); cuc::Transfer *hubTransfer = m_hub->create_share_to_peer_for_type(peer, hubType); ContentTransfer *qmlTransfer = new ContentTransfer(this); qmlTransfer->setTransfer(hubTransfer); m_activeImports.insert(hubTransfer, qmlTransfer); return qmlTransfer; } /*! * \qmlmethod ContentHub::restoreImports() * \internal */ void ContentHub::restoreImports() { TRACE() << Q_FUNC_INFO; } /*! * \qmlproperty list ContentHub::finishedImports * \internal */ QQmlListProperty ContentHub::finishedImports() { TRACE() << Q_FUNC_INFO; return QQmlListProperty(this, m_finishedImports); } /*! * \brief ContentHub::handleImport handles an incoming request for importing content * \internal */ void ContentHub::handleImport(com::ubuntu::content::Transfer *transfer) { TRACE() << Q_FUNC_INFO; ContentTransfer *qmlTransfer = nullptr; if (m_activeImports.contains(transfer)) { qmlTransfer = m_activeImports.take(transfer); qmlTransfer->collectItems(); } else { // If we don't have a reference to the transfer, it was created // by another handler so this would be an Import qmlTransfer = new ContentTransfer(this); qmlTransfer->setTransfer(transfer); connect(qmlTransfer, SIGNAL(stateChanged()), this, SLOT(updateState())); qmlTransfer->collectItems(); Q_EMIT importRequested(qmlTransfer); } // FIXME: maybe we need to emit something else here // if (qmlTransfer->state() == ContentTransfer::Charged) // Q_EMIT importRequested(qmlTransfer); m_finishedImports.append(qmlTransfer); Q_EMIT finishedImportsChanged(); } /*! * \brief ContentHub::handleExport handles an incoming request for exporting content * \internal */ void ContentHub::handleExport(com::ubuntu::content::Transfer *transfer) { TRACE() << Q_FUNC_INFO; ContentTransfer *qmlTransfer = nullptr; if (m_activeImports.contains(transfer)) qmlTransfer = m_activeImports.take(transfer); else { // If we don't have a reference to the transfer, it was created // by another handler so this would be an Import qmlTransfer = new ContentTransfer(this); qmlTransfer->setTransfer(transfer); m_activeImports.insert(transfer, qmlTransfer); connect(qmlTransfer, SIGNAL(stateChanged()), this, SLOT(updateState())); Q_EMIT exportRequested(qmlTransfer); } m_finishedImports.append(qmlTransfer); Q_EMIT finishedImportsChanged(); } /*! * \brief ContentHub::handleExport handles an incoming request for sharing content * \internal */ void ContentHub::handleShare(com::ubuntu::content::Transfer *transfer) { TRACE() << Q_FUNC_INFO; ContentTransfer *qmlTransfer = nullptr; if (m_activeImports.contains(transfer)) { qmlTransfer = m_activeImports.take(transfer); qmlTransfer->collectItems(); } else { // If we don't have a reference to the transfer, it was created // by another handler so this would be an Import qmlTransfer = new ContentTransfer(this); qmlTransfer->setTransfer(transfer); connect(qmlTransfer, SIGNAL(stateChanged()), this, SLOT(updateState())); qmlTransfer->collectItems(); Q_EMIT shareRequested(qmlTransfer); } m_finishedImports.append(qmlTransfer); Q_EMIT finishedImportsChanged(); } void ContentHub::updateState() { TRACE() << Q_FUNC_INFO; } /*! * \qmlproperty bool ContentHub::hasPending * True if there is a pending transfer for the handler * \internal */ bool ContentHub::hasPending() { TRACE() << Q_FUNC_INFO; return m_hasPending; } /*! * \qmlsignal ContentHub::importRequested(ContentTransfer transfer) * * The signal is triggered when an import is requested. */ /*! * \qmlsignal ContentHub::exportRequested(ContentTransfer transfer) * * The signal is triggered when an export is requested. */ /*! * \qmlsignal ContentHub::shareRequested(ContentTransfer transfer) * * The signal is triggered when a share is requested. */ content-hub-0.1+16.04.20160309/import/Ubuntu/Content/ResponsiveGridView.qml0000644000015600001650000000662712670026423026701 0ustar pbuserpbgroup00000000000000/* * Copyright (C) 2013 Canonical, Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ import QtQuick 2.0 import Ubuntu.Components 0.1 /* Essentially a GridView where you can specify the maximum number of columns it can have. */ Item { property int minimumHorizontalSpacing: units.gu(0.5) // property int minimumNumberOfColumns: 2 // FIXME: not implemented property int maximumNumberOfColumns: 6 readonly property int columns: gridView.columns property alias verticalSpacing: gridView.verticalSpacing readonly property alias margins: gridView.margin property int delegateWidth property int delegateHeight property alias model: gridView.model property alias delegate: gridView.delegate readonly property int cellWidth: gridView.cellWidth readonly property int cellHeight: gridView.cellHeight property alias interactive: gridView.interactive readonly property alias flicking: gridView.flicking readonly property alias moving: gridView.moving readonly property alias pressDelay: gridView.pressDelay property alias highlightIndex: gridView.highlightIndex readonly property alias currentItem: gridView.currentItem function contentHeightForRows(rows) { return rows * cellHeight + verticalSpacing } GridView { id: gridView objectName: "responsiveGridViewGrid" anchors { fill: parent leftMargin: margin/2 rightMargin: margin/2 topMargin: verticalSpacing } onModelChanged: { clip = parent.height != contentHeightForRows(Math.ceil(model.count / columns)) } function pixelToGU(value) { return Math.floor(value / units.gu(1)); } function spacingForColumns(columns) { // spacing between columns as an integer number of GU, the remainder goes in the margins var spacingGU = pixelToGU(allocatableHorizontalSpace / columns); return units.gu(spacingGU); } function columnsForSpacing(spacing) { // minimum margin is half of the spacing return Math.max(1, Math.floor(parent.width / (delegateWidth + spacing))); } property real allocatableHorizontalSpace: parent.width - columns * delegateWidth property int columns: Math.min(columnsForSpacing(minimumHorizontalSpacing), maximumNumberOfColumns) property real horizontalSpacing: spacingForColumns(columns) property real verticalSpacing: horizontalSpacing property int margin: allocatableHorizontalSpace - columns * horizontalSpacing property int highlightIndex: -1 cellWidth: delegateWidth + horizontalSpacing cellHeight: delegateHeight + verticalSpacing onHighlightIndexChanged: { if (highlightIndex != -1) { currentIndex = highlightIndex } } } } content-hub-0.1+16.04.20160309/import/Ubuntu/CMakeLists.txt0000644000015600001650000000117212670026423023504 0ustar pbuserpbgroup00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . add_subdirectory(Content) content-hub-0.1+16.04.20160309/import/CMakeLists.txt0000644000015600001650000000117112670026423022221 0ustar pbuserpbgroup00000000000000# Copyright © 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . add_subdirectory(Ubuntu)