camera-app-2.9.1+14.04.20140331/0000755000015201777760000000000012316315300016115 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/constants.js0000644000015201777760000000123712316315040020473 0ustar pbusernogroup00000000000000/* * Copyright 2012 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 . */ .pragma library var iconFadeDuration = 300; camera-app-2.9.1+14.04.20140331/ViewFinderGeometry.qml0000644000015201777760000000260612316315040022413 0ustar pbusernogroup00000000000000/* * 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 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 Item { property size cameraResolution; property int viewFinderHeight; property int viewFinderWidth; property int viewFinderOrientation; property int __cameraWidth: Math.abs(viewFinderOrientation) == 90 ? cameraResolution.height : cameraResolution.width property int __cameraHeight: Math.abs(viewFinderOrientation) == 90 ? cameraResolution.width : cameraResolution.height property real widthScale: viewFinderWidth / __cameraWidth property real heightScale: viewFinderHeight / __cameraHeight width: (widthScale <= heightScale) ? viewFinderWidth : __cameraWidth * heightScale height: (widthScale <= heightScale) ? __cameraHeight * widthScale : viewFinderHeight } camera-app-2.9.1+14.04.20140331/ShootButton.qml0000644000015201777760000000447212316315040021130 0ustar pbusernogroup00000000000000/* * Copyright (C) 2012 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 CameraToolbarButton { id: button states: [ State { name: "camera" PropertyChanges { target: button; iconSource: "assets/shoot.png" } PropertyChanges { target: recordOn; opacity: 0.0 } PropertyChanges { target: pulseAnimation; running: false } }, State { name: "record_off" PropertyChanges { target: button; iconSource: "assets/record_off.png" } PropertyChanges { target: recordOn; opacity: 0.0 } PropertyChanges { target: pulseAnimation; running: false } }, State { name: "record_on" PropertyChanges { target: button; iconSource: "assets/record_off.png" } PropertyChanges { target: recordOn; opacity: 1.0 } PropertyChanges { target: pulseAnimation; running: true } } ] property int pulsePeriod: 750 Image { id: recordOn anchors.fill: parent source: "assets/record_on.png" Behavior on opacity { NumberAnimation { duration: pulsePeriod } } } Image { id: pulse anchors.fill: parent source: "assets/record_on_pulse.png" opacity: 1.0 visible: button.state != "camera" SequentialAnimation on opacity { id: pulseAnimation loops: Animation.Infinite alwaysRunToEnd: true running: false PropertyAnimation { from: 1.0 to: 0.0 duration: pulsePeriod } PropertyAnimation { from: 0.0 to: 1.0 duration: pulsePeriod } } } } camera-app-2.9.1+14.04.20140331/ThinSliderStyle.qml0000644000015201777760000000476312316315040021731 0ustar pbusernogroup00000000000000/* * Copyright 2012 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 /* This delegate is styled using the following properties: - backgroundImage: image source for the bar - backgroundImageHeight: specifies the height of the image to be used; if not specified, the images source height will be used - thumbImage: image source for the thumb - thumbWidth, thumbHeight: width and height of the thumb; source measurements will be used if not specified - thumbSpacing: spacing between the thumb and the bar; 0 if not specified */ Item { id: main anchors.fill: parent property Item bar: backgroundShape property Item thumb: thumbShape property real normalizedValue: SliderUtils.normalizedValue(styledItem) property real thumbSpacing: 0.0 property real thumbSpace: backgroundShape.width - (2.0 * thumbSpacing + thumbWidth) property real thumbWidth: units.gu(1.5) property real thumbHeight: units.gu(1.5) property string backgroundImage: "assets/zoom_bar@18.png" property string thumbImage: "assets/zoom_point@18.png" Image { id: backgroundShape anchors { left: parent.left right: parent.right verticalCenter: parent.verticalCenter } source: backgroundImage height: sourceSize.height } Image { id: thumbShape objectName: "sliderThumb" x: backgroundShape.x + thumbSpacing + normalizedValue * thumbSpace y: backgroundShape.y + thumbSpacing width: thumbWidth height: thumbHeight anchors.verticalCenter: backgroundShape.verticalCenter source: thumbImage } // set styledItem's implicitHeight to the thumbShape's height // this can also control the default sensing area Binding { target: styledItem property: "implicitHeight" value: thumbShape.height + 2.0 * thumbSpacing } } camera-app-2.9.1+14.04.20140331/tests/0000755000015201777760000000000012316315300017257 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/tests/autopilot/0000755000015201777760000000000012316315300021277 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/tests/autopilot/CMakeLists.txt0000644000015201777760000000051212316315040024036 0ustar pbusernogroup00000000000000set(AUTOPILOT_DIR camera_app) execute_process(COMMAND python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()" OUTPUT_VARIABLE PYTHON_PACKAGE_DIR OUTPUT_STRIP_TRAILING_WHITESPACE) if(INSTALL_TESTS) install(DIRECTORY ${AUTOPILOT_DIR} DESTINATION ${PYTHON_PACKAGE_DIR} ) endif(INSTALL_TESTS) camera-app-2.9.1+14.04.20140331/tests/autopilot/camera_app/0000755000015201777760000000000012316315300023367 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/tests/autopilot/camera_app/__init__.py0000644000015201777760000000056012316315040025502 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Copyright 2012 Canonical # # 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. """proof of concept Qt5 autopilot tests and emulators - top level package.""" camera-app-2.9.1+14.04.20140331/tests/autopilot/camera_app/tests/0000755000015201777760000000000012316315300024531 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/tests/autopilot/camera_app/tests/__init__.py0000644000015201777760000000434012316315040026644 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Copyright 2012 Canonical # # 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. """Camera-app autopilot tests.""" from os import remove import os.path from autopilot.input import Mouse, Touch, Pointer from autopilot.matchers import Eventually from autopilot.platform import model from autopilot.testcase import AutopilotTestCase from testtools.matchers import Equals from camera_app.emulators.main_window import MainWindow class CameraAppTestCase(AutopilotTestCase): """A common test case class that provides several useful methods for camera-app tests. """ if model() == 'Desktop': scenarios = [ ('with mouse', dict(input_device_class=Mouse))] else: scenarios = [ ('with touch', dict(input_device_class=Touch))] local_location = "../../camera-app" deb_location = '/usr/bin/camera-app' def setUp(self): self.pointing_device = Pointer(self.input_device_class.create()) super(CameraAppTestCase, self).setUp() if os.path.exists(self.local_location): self.launch_test_local() elif os.path.exists(self.deb_location): self.launch_test_installed() else: self.launch_click_installed() def launch_test_local(self): self.app = self.launch_test_application( self.local_location) def launch_test_installed(self): if model() == 'Desktop': self.app = self.launch_test_application( "camera-app") else: self.app = self.launch_test_application( "camera-app", "--fullscreen", "--desktop_file_hint=/usr/share/applications/camera-app.desktop", app_type='qt') def launch_click_installed(self): self.app = self.launch_click_package( "com.ubuntu.camera") def get_center(self, object_proxy): x, y, w, h = object_proxy.globalRect return [x + (w / 2), y + (h / 2)] @property def main_window(self): return MainWindow(self.app) camera-app-2.9.1+14.04.20140331/tests/autopilot/camera_app/tests/test_capture.py0000644000015201777760000001506412316315040027614 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Copyright 2012 Canonical # # 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. """Tests for the Camera App""" from autopilot.matchers import Eventually from autopilot.platform import model from testtools.matchers import Equals, NotEquals, GreaterThan from camera_app.tests import CameraAppTestCase import unittest import time import os from os import path class TestCapture(CameraAppTestCase): """Tests the main camera features""" """ This is needed to wait for the application to start. In the testfarm, the application may take some time to show up.""" def setUp(self): super(TestCapture, self).setUp() self.assertThat( self.main_window.get_qml_view().visible, Eventually(Equals(True))) def tearDown(self): super(TestCapture, self).tearDown() """Test taking a picture""" @unittest.skipIf(model() == 'Galaxy Nexus', 'Unusable with Mir enabled on maguro') def test_take_picture(self): toolbar = self.main_window.get_toolbar() exposure_button = self.main_window.get_exposure_button() pictures_dir = path.expanduser("~/Pictures") # Remove all pictures from ~/Pictures that match our pattern files = [f for f in os.listdir(pictures_dir) if f[0:5] == "image" and path.isfile(path.join(pictures_dir, f))] for f in files: os.remove(path.join(pictures_dir, f)) # Wait for the camera to have finished focusing # (the exposure button gets enabled when ready) self.assertThat(exposure_button.enabled, Eventually(Equals(True))) # Now take the picture! (Give it a little time to animate) self.pointing_device.move_to_object(exposure_button) self.pointing_device.click() # Check that only one picture with the right name pattern # is actually there one_picture_on_disk = False for i in range(0, 10): files = [f for f in os.listdir(pictures_dir) if f[0:5] == "image" and path.isfile(path.join(pictures_dir, f))] if len(files) == 1: one_picture_on_disk = True break time.sleep(1) self.assertEquals(one_picture_on_disk, True) # check that the camera is able to capture another photo self.assertThat(exposure_button.enabled, Eventually(Equals(True))) """Tests clicking on the record control and checks if the flash changes to torch off mode and the recording time appears""" @unittest.skip('Video recording not working for V1.0') def test_record_video(self): # Get all the elements camera_window = self.main_window.get_camera() toolbar = self.main_window.get_toolbar() record_control = self.main_window.get_record_control() flash_button = self.main_window.get_flash_button() stop_watch = self.main_window.get_stop_watch() exposure_button = self.main_window.get_exposure_button() # Store the torch mode and the flash state flashlight_old_state = flash_button.flashState torchmode_old_state = flash_button.torchMode # Click the record button to toggle photo/video mode self.pointing_device.move_to_object(record_control) self.pointing_device.click() # Has the flash changed to be a torch ? self.assertThat(flash_button.flashState, Eventually(Equals("off"))) self.assertThat(flash_button.torchMode, Eventually(Equals(True))) # Before recording the stop watch should read zero recording time # and not be visible anyway. self.assertThat(stop_watch.opacity, Equals(0.0)) self.assertEquals(stop_watch.elapsed, "00:00") # Click the exposure button to start recording self.pointing_device.move_to_object(exposure_button) self.pointing_device.click() # Record video for 2 seconds and check if the stop watch actually # runs and is visible. # Since the timer is not precise we don't check the actual time, # just that it is not counting zero anymore. self.assertThat(stop_watch.opacity, Eventually(Equals(1.0))) self.assertThat(stop_watch.elapsed, Eventually(NotEquals("00:00"))) # Now stop the video and check if everything resets itself to # previous states. self.pointing_device.click() self.assertThat(stop_watch.opacity, Eventually(Equals(0.0))) # Now start recording a second video and check if everything # still works self.pointing_device.click() # Has the flash changed to be a torch, is the stop watch visible # and set to 00:00? self.assertThat(flash_button.flashState, Eventually(Equals("off"))) self.assertThat(flash_button.torchMode, Eventually(Equals(True))) self.assertThat(stop_watch.opacity, Eventually(Equals(1.0))) self.assertEquals(stop_watch.elapsed, "00:00") # Record video for 2 seconds and check if the stop watch actually works self.assertThat(stop_watch.elapsed, Eventually(NotEquals("00:00"))) # Now stop the video and go back to picture mode and check if # everything resets itself to previous states self.pointing_device.click() self.pointing_device.move_to_object(record_control) self.pointing_device.click() self.assertThat(stop_watch.opacity, Eventually(Equals(0.0))) self.assertThat( flash_button.flashState, Eventually(Equals(flashlight_old_state))) self.assertThat( flash_button.torchMode, Eventually(Equals(torchmode_old_state))) """Test that the shoot button gets disabled for a while then re-enabled after shooting""" @unittest.skip("Disabled this test due race condition see bug 1227373") def test_shoot_button_disable(self): exposure_button = self.main_window.get_exposure_button() # The focus ring should be invisible in the beginning self.assertThat(exposure_button.enabled, Eventually(Equals(True))) # Now take the picture! (Give it a little time to animate) self.pointing_device.move_to_object(exposure_button) self.pointing_device.click() # autopilot might check this too late, so the exposure_button.enabled # is True again already before the first check self.assertThat(exposure_button.enabled, Eventually(Equals(False))) self.assertThat(exposure_button.enabled, Eventually(Equals(True))) camera-app-2.9.1+14.04.20140331/tests/autopilot/camera_app/tests/test_focus.py0000644000015201777760000001632012316315040027264 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Copyright 2012 Canonical # # 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. """Tests for the Camera App""" from autopilot.matchers import Eventually from autopilot.platform import model from testtools.matchers import Equals, NotEquals, GreaterThan from camera_app.tests import CameraAppTestCase import unittest import time class TestFocus(CameraAppTestCase): """Tests the focus""" """ This is needed to wait for the application to start. In the testfarm, the application may take some time to show up.""" def setUp(self): super(TestFocus, self).setUp() self.assertThat( self.main_window.get_qml_view().visible, Eventually(Equals(True))) def tearDown(self): super(TestFocus, self).tearDown() """Test focusing in an area where we know the picture is""" @unittest.skipIf(model() == 'Galaxy Nexus', 'Unusable with Mir enabled on maguro') def test_focus_valid_and_disappear(self): focus_ring = self.main_window.get_focus_ring() toolbar = self.main_window.get_toolbar() feed = self.main_window.get_viewfinder_geometry() switch_cameras = self.main_window.get_swap_camera_button() exposure_button = self.main_window.get_exposure_button() # The focus ring should be invisible in the beginning self.assertThat(focus_ring.opacity, Eventually(Equals(0.0))) self.pointing_device.move_to_object(feed) self.pointing_device.click() click_coords = list(self.pointing_device.position()) # The focus ring sould be visible and centered to the mouse click # coords now focus_ring_center = self.get_center(focus_ring) self.assertThat(focus_ring.opacity, Eventually(Equals(1.0))) self.assertEquals(focus_ring_center, click_coords) # After some seconds the focus ring should fade out self.assertThat(focus_ring.opacity, Eventually(Equals(0.0))) # Switch cameras, wait for camera to settle, and try again self.pointing_device.move_to_object(switch_cameras) self.pointing_device.click() self.assertThat(exposure_button.enabled, Eventually(Equals(True))) # Click in the center of the viewfinder area click_coords =[feed.globalRect[2] // 2 + feed.globalRect[0], feed.globalRect[3] // 2 + feed.globalRect[1]] self.pointing_device.move(click_coords[0], click_coords[1]) self.pointing_device.click() # The focus ring sould be visible and centered to the mouse # click coords now focus_ring_center = self.get_center(focus_ring) self.assertThat(focus_ring.opacity, Eventually(Equals(1.0))) self.assertEquals(focus_ring_center, click_coords) # After some seconds the focus ring should fade out self.assertThat(focus_ring.opacity, Eventually(Equals(0.0))) @unittest.skipIf(model() == 'Galaxy Nexus', 'Unusable with Mir enabled on maguro') def test_focus_invalid(self): """Tests clicking outside of the viewfinder image area, where it should not focus.""" toolbar = self.main_window.get_toolbar() zoom = self.main_window.get_zoom_control() feed = self.main_window.get_viewfinder_geometry() focus_ring = self.main_window.get_focus_ring() switch_cameras = self.main_window.get_swap_camera_button() exposure_button = self.main_window.get_exposure_button() # The focus ring should be invisible in the beginning self.assertThat(focus_ring.opacity, Eventually(Equals(0.0))) x, y, h, w = toolbar.globalRect tx = x + (h / 2) ty = y + (w + 2) # Click at the bottom of the window below the toolbar. It should never # focus there. self.pointing_device.move(tx, ty) self.pointing_device.click() self.assertThat(focus_ring.opacity, Eventually(Equals(0.0))) # Check if there's a gap between the viewfinder feed and the zoom # control. If there is, test that focusing there won't show the focus #ring. if zoom.y > feed.height: # Feed is aligned to the top of the window x, y, h, w = zoom.globalRect click_coords = [x + (h / 2), y - 2] self.pointing_device.move(click_coords[0], click_coords[1]) self.pointing_device.click() self.assertThat(focus_ring.opacity, Eventually(Equals(0.0))) # Switch cameras, wait for camera to settle, and try again self.pointing_device.move_to_object(switch_cameras) self.pointing_device.click() self.assertThat(exposure_button.enabled, Eventually(Equals(True))) # Maybe we will have the gap when we switch the camera, test it again if zoom.y > feed.height: x, y, h, w = zoom.globalRect click_coords = [x + (h / 2), y - 2] self.pointing_device.move(click_coords[0], click_coords[1]) self.pointing_device.click() self.assertThat(focus_ring.opacity, Eventually(Equals(0.0))) """Tests dragging the focus ring""" @unittest.skipIf(model() == 'Galaxy Nexus', 'Unusable with Mir enabled on maguro') def test_move_focus_ring(self): focus_ring = self.main_window.get_focus_ring() feed = self.main_window.get_viewfinder_geometry() switch_cameras = self.main_window.get_swap_camera_button() exposure_button = self.main_window.get_exposure_button() # The focus ring should be invisible in the beginning self.assertThat(focus_ring.opacity, Eventually(Equals(0.0))) # Focus to the center of the viewfinder feed self.pointing_device.move_to_object(feed) self.pointing_device.click() center_click_coords = list(self.pointing_device.position()) focus_ring_center = self.get_center(focus_ring) self.assertThat(focus_ring.opacity, Eventually(Equals(1.0))) self.assertEquals(focus_ring_center, center_click_coords) # Now drag it halfway across the feed, verify that it has moved there tx = focus_ring_center[0] ty = focus_ring_center[1] self.pointing_device.drag(tx, ty, tx / 2, ty / 2) focus_ring_center = self.get_center(focus_ring) self.assertThat(focus_ring_center[1], GreaterThan(ty / 2 - 2)) # Switch cameras, wait for camera to settle, and try again self.pointing_device.move_to_object(switch_cameras) self.pointing_device.click() self.assertThat(exposure_button.enabled, Eventually(Equals(True))) self.pointing_device.move_to_object(feed) self.pointing_device.click() center_click_coords = list(self.pointing_device.position()) focus_ring_center = self.get_center(focus_ring) self.assertThat(focus_ring.opacity, Eventually(Equals(1.0))) self.assertEquals(focus_ring_center, center_click_coords) tx = focus_ring_center[0] ty = focus_ring_center[1] self.pointing_device.drag(tx, ty, tx / 2, ty / 2) focus_ring_center = self.get_center(focus_ring) self.assertThat(focus_ring_center[1], GreaterThan(ty / 2 - 2)) camera-app-2.9.1+14.04.20140331/tests/autopilot/camera_app/tests/test_zoom.py0000644000015201777760000001107412316315040027132 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Copyright 2012 Canonical # # 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. """Tests for the Camera App zoom""" from testtools.matchers import Equals, NotEquals, GreaterThan, LessThan from autopilot.matchers import Eventually from camera_app.tests import CameraAppTestCase import time import unittest class TestCameraZoom(CameraAppTestCase): """Tests the main camera features""" """ This is needed to wait for the application to start. In the testfarm, the application may take some time to show up.""" def setUp(self): super(TestCameraZoom, self).setUp() self.assertThat( self.main_window.get_qml_view().visible, Eventually(Equals(True))) def tearDown(self): super(TestCameraZoom, self).tearDown() """Tests the zoom slider""" def test_slider(self): zoom_control = self.main_window.get_zoom_control() zoom_button = self.main_window.get_zoom_slider_button() x, y, w, h = zoom_button.globalRect tx = x + (w / 2) ty = y + (h / 2) if self.main_window.get_orientation() == "portrait": self.pointing_device.drag(tx, ty, (tx + zoom_control.width), ty) else: self.pointing_device.drag(tx, ty, tx, (ty - zoom_control.width)) self.assertThat( zoom_control.value, Eventually(Equals(zoom_control.maximumValue))) tx = x + (w / 2) ty = y + (h / 2) if self.main_window.get_orientation() == "portrait": self.pointing_device.drag(tx, ty, (tx - zoom_control.width), ty) else: self.pointing_device.drag(tx, ty, tx, (ty + zoom_control.width)) self.assertThat(zoom_control.value, Eventually(Equals(1.0))) @unittest.skip("Disabled this failing test due to bug 1179592") def test_plus_minus(self): """Tests the plus and minus buttons""" zoom_control = self.main_window.get_zoom_control() plus = self.main_window.get_zoom_plus() minus = self.main_window.get_zoom_minus() # Test that minus when at minimum zoom does nothing self.assertThat(zoom_control.value, Eventually(Equals(1.0))) self.pointing_device.move_to_object(minus) self.pointing_device.click() self.assertThat(zoom_control.value, Eventually(Equals(1.0))) # Test that plus moves to some non-minimum value # and that minus goes back to the minimum self.assertEqual(zoom_control.value, 1.0) self.pointing_device.move_to_object(plus) self.pointing_device.click() self.assertThat(zoom_control.value, Eventually(GreaterThan(1.0))) value_before_minus = zoom_control.value self.pointing_device.move_to_object(minus) self.pointing_device.click() self.assertThat( zoom_control.value, Eventually(LessThan(value_before_minus))) # Test that keeping the plus button pressed eventually reaches max zoom self.pointing_device.move_to_object(plus) self.pointing_device.press() self.assertThat( zoom_control.value, Eventually(Equals(zoom_control.maximumValue))) self.pointing_device.release() # Test that plus when at maximum zoom does nothing self.assertThat( zoom_control.value, Eventually(Equals(zoom_control.maximumValue))) self.pointing_device.move_to_object(plus) self.pointing_device.click() self.assertThat( zoom_control.value, Eventually(Equals(zoom_control.maximumValue))) # Test that minus moves to some non-maximum value # and that plus goes back up self.assertThat( zoom_control.value, Eventually(Equals(zoom_control.maximumValue))) self.pointing_device.move_to_object(minus) self.pointing_device.click() self.assertThat( zoom_control.value, Eventually(NotEquals(zoom_control.maximumValue))) value_before_plus = zoom_control.value self.pointing_device.move_to_object(plus) self.pointing_device.click() self.assertThat( zoom_control.value, Eventually(GreaterThan(value_before_plus))) # Test that keeping the minus button pressed eventually reaches min zoom self.pointing_device.move_to_object(minus) self.pointing_device.press() self.assertThat(zoom_control.value, Eventually(Equals(1.0))) self.pointing_device.release() camera-app-2.9.1+14.04.20140331/tests/autopilot/camera_app/tests/test_gallery_integration.py0000644000015201777760000000324712316315040032213 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Copyright 2013 Canonical # # 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. from __future__ import absolute_import from autopilot.introspection import get_proxy_object_for_existing_process from autopilot.matchers import Eventually from testtools import skip from testtools.matchers import Equals from camera_app.tests import CameraAppTestCase from unity8 import process_helpers as helpers from unittest import skip import os @skip("Waiting on transition to click") class TestGalleryIntegration(CameraAppTestCase): def setUp(self): super(TestGalleryIntegration, self).setUp() self.assertThat( self.main_window.get_qml_view().visible, Eventually(Equals(True))) def tearDown(self): os.system("pkill gallery-app") super(TestGalleryIntegration, self).tearDown() def get_unity8_proxy_object(self): pid = helpers._get_unity_pid() return get_proxy_object_for_existing_process(pid) def get_current_focused_appid(self, unity8): return unity8.select_single("Shell").currentFocusedAppId @skip("Temporarily skip as test is unreliable") def test_gallery_button_opens_gallery(self): gallery_button = self.main_window.get_gallery_button() unity8 = self.get_unity8_proxy_object() current_focused_app = self.get_current_focused_appid(unity8) self.pointing_device.click_object(gallery_button) self.assertThat(current_focused_app, Eventually(Equals("gallery-app"))) camera-app-2.9.1+14.04.20140331/tests/autopilot/camera_app/tests/test_flash.py0000644000015201777760000001156212316315040027245 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Copyright 2012 Canonical # # 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. """Tests for the Camera App flash""" from testtools.matchers import Equals, NotEquals from autopilot.matchers import Eventually from camera_app.tests import CameraAppTestCase import time import unittest class TestCameraFlash(CameraAppTestCase): """Tests the flash""" """ This is needed to wait for the application to start. In the testfarm, the application may take some time to show up.""" def setUp(self): super(TestCameraFlash, self).setUp() self.assertThat( self.main_window.get_qml_view().visible, Eventually(Equals(True))) def tearDown(self): super(TestCameraFlash, self).tearDown() """Test that flash modes cycle properly""" def test_cycle_flash(self): flash_button = self.main_window.get_flash_button() #ensure initial state self.assertThat(flash_button.flashState, Equals("off")) self.assertThat(flash_button.torchMode, Equals(False)) self.pointing_device.move_to_object(flash_button) self.pointing_device.click() self.assertThat(flash_button.flashState, Eventually(Equals("on"))) self.assertThat(flash_button.torchMode, Equals(False)) self.pointing_device.click() self.assertThat(flash_button.flashState, Eventually(Equals("auto"))) self.assertThat(flash_button.torchMode, Equals(False)) self.pointing_device.click() self.assertThat(flash_button.flashState, Eventually(Equals("off"))) self.assertThat(flash_button.torchMode, Equals(False)) """Test that torch modes cycles properly""" @unittest.skip('Video recording not working for V1.0') def test_cycle_torch(self): flash_button = self.main_window.get_flash_button() record_button = self.main_window.get_record_control() self.pointing_device.click_object(record_button) #ensure initial state self.assertThat(flash_button.flashState, Equals("off")) self.assertThat(flash_button.torchMode, Equals(True)) self.pointing_device.move_to_object(flash_button) self.pointing_device.click() self.assertThat(flash_button.flashState, Eventually(Equals("on"))) self.assertThat(flash_button.torchMode, Equals(True)) self.pointing_device.click() self.assertThat(flash_button.flashState, Eventually(Equals("off"))) self.assertThat(flash_button.torchMode, Equals(True)) """When switching between video and picture the previous flash state should be preserved""" @unittest.skip('Video recording not working for V1.0') def test_remember_state(self): flash_button = self.main_window.get_flash_button() record_button = self.main_window.get_record_control() initial_flash_state = flash_button.flashState # Change flash mode, then switch to camera, then back to flash # and verify that previous state is preserved self.pointing_device.move_to_object(flash_button) self.pointing_device.click() self.assertThat( flash_button.flashState, Eventually(NotEquals(initial_flash_state))) second_flash_state = flash_button.flashState self.pointing_device.click() self.assertThat( flash_button.flashState, Eventually(NotEquals(second_flash_state))) old_flash_state = flash_button.flashState self.pointing_device.move_to_object(record_button) self.pointing_device.click() self.assertThat(flash_button.flashState, Eventually(Equals("off"))) self.assertThat(flash_button.torchMode, Equals(True)) self.pointing_device.click() self.assertThat( flash_button.flashState, Eventually(Equals(old_flash_state))) self.assertThat(flash_button.torchMode, Equals(False)) # Now test the same thing in the opposite way, seeing if torch state # is preserved self.pointing_device.click() self.assertThat(flash_button.flashState, Eventually(Equals("off"))) self.assertThat(flash_button.torchMode, Equals(True)) self.pointing_device.move_to_object(flash_button) self.pointing_device.click() old_torch_state = flash_button.flashState self.pointing_device.move_to_object(record_button) self.pointing_device.click() self.assertThat( flash_button.flashState, Eventually(Equals(old_flash_state))) self.assertThat(flash_button.torchMode, Equals(False)) self.pointing_device.click() self.assertThat( flash_button.flashState, Eventually(Equals(old_torch_state))) self.assertThat(flash_button.torchMode, Equals(True)) camera-app-2.9.1+14.04.20140331/tests/autopilot/camera_app/emulators/0000755000015201777760000000000012316315300025402 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/tests/autopilot/camera_app/emulators/__init__.py0000644000015201777760000000044112316315040027513 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Copyright 2012 Canonical # # 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. camera-app-2.9.1+14.04.20140331/tests/autopilot/camera_app/emulators/main_window.py0000644000015201777760000000563512316315040030301 0ustar pbusernogroup00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Copyright 2013 Canonical # # 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. import math class MainWindow(object): """An emulator class that makes it easy to interact with the camera-app.""" def __init__(self, app): self.app = app def get_qml_view(self): """Get the main QML view""" return self.app.wait_select_single("QQuickView") def get_focus_ring(self): """Returns the focus ring of the camera""" return self.app.wait_select_single("FocusRing") def get_exposure_button(self): """Returns the button that takes pictures""" return self.app.wait_select_single("ShootButton") def get_record_control(self): """Returns the button that switches between photo and video recording""" return self.app.wait_select_single("FadingButton", objectName="recordModeButton") def get_flash_button(self): """Returns the flash control button of the camera""" return self.app.wait_select_single("FlashButton") def get_stop_watch(self): """Returns the stop watch when using the record button of the camera""" return self.app.wait_select_single("StopWatch") def get_toolbar(self): """Returns the toolbar that holds the flash and record button""" return self.app.wait_select_single("Toolbar") def get_zoom_control(self): """Returns the whole left control""" return self.app.wait_select_single("ZoomControl") def get_zoom_slider_button(self): """Returns the zoom slider button""" return self.app.wait_select_single("QQuickImage", objectName="sliderThumb") def get_zoom_plus(self): """Returns the zoom plus button""" return self.app.wait_select_single("AbstractButton", objectName="zoomPlus") def get_zoom_minus(self): """Returns the zoom minus button""" return self.app.wait_select_single("AbstractButton", objectName="zoomMinus") def get_viewfinder_geometry(self): """Returns the viewfinder geometry tracker""" return self.app.wait_select_single("ViewFinderGeometry") def get_swap_camera_button(self): """Returns the button that switches between front and back cameras""" return self.app.wait_select_single("CameraToolbarButton", objectName="swapButton") def get_orientation(self): orientation = self.app.wait_select_single("DeviceOrientation") if orientation.isLandscape == True: return 'landscape' else: return 'portrait' def get_gallery_button(self): """Returns the gallery button on the camera toolbar.""" return self.app.select_single( "CameraToolbarButton", objectName="galleryButton") camera-app-2.9.1+14.04.20140331/tests/CMakeLists.txt0000644000015201777760000000007012316315040022015 0ustar pbusernogroup00000000000000add_subdirectory(autopilot) add_subdirectory(unittests) camera-app-2.9.1+14.04.20140331/tests/unittests/0000755000015201777760000000000012316315300021321 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/tests/unittests/tst_ViewFinderGeometry.qml0000644000015201777760000000623112316315040026507 0ustar pbusernogroup00000000000000/* * 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 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 QtTest 1.0 import "../../" import "../../.." //Needed for out of source build TestCase { name: "ViewFinderGeometry" function test_16_9_camera_portrait_in_16_9_screen_portrait() { geometry.cameraResolution = Qt.size(720, 1280) geometry.viewFinderOrientation = 0 geometry.viewFinderWidth = 720 geometry.viewFinderHeight = 1280 compare(geometry.width, 720, "Width not calculated correctly") compare(geometry.height, 1280, "Height not calculated correctly") } function test_16_9_camera_landscape_in_16_9_screen_landscape() { geometry.cameraResolution = Qt.size(1280, 720) geometry.viewFinderOrientation = 0 geometry.viewFinderWidth = 1280 geometry.viewFinderHeight = 720 compare(geometry.width, 1280, "Width not calculated correctly") compare(geometry.height, 720, "Height not calculated correctly") } function test_16_9_camera_landscape_in_16_9_screen_portrait() { geometry.cameraResolution = Qt.size(1280, 720) geometry.viewFinderOrientation = 0 geometry.viewFinderWidth = 720 geometry.viewFinderHeight = 1280 compare(geometry.width, 720, "Width not calculated correctly") compare(geometry.height, 405, "Height not calculated correctly") } function test_16_9_camera_portrait_in_16_9_screen_landscape() { geometry.cameraResolution = Qt.size(720, 1280) geometry.viewFinderOrientation = 0 geometry.viewFinderWidth = 1280 geometry.viewFinderHeight = 720 compare(geometry.width, 405, "Width not calculated correctly") compare(geometry.height, 720, "Height not calculated correctly") } function test_4_3_camera_landscape_in_16_9_screen_portrait() { geometry.cameraResolution = Qt.size(640, 480) geometry.viewFinderOrientation = 0 geometry.viewFinderWidth = 720 geometry.viewFinderHeight = 1280 compare(geometry.width, 720, "Width not calculated correctly") compare(geometry.height, 540, "Height not calculated correctly") } function test_16_9_camera_landscape_rotated_in_16_9_screen_landscape() { geometry.cameraResolution = Qt.size(1280, 720) geometry.viewFinderOrientation = 90 geometry.viewFinderWidth = 1280 geometry.viewFinderHeight = 720 compare(geometry.width, 405, "Width not calculated correctly") compare(geometry.height, 720, "Height not calculated correctly") } ViewFinderGeometry { id: geometry } } camera-app-2.9.1+14.04.20140331/tests/unittests/tst_QmlTests.cpp0000644000015201777760000000126512316315040024500 0ustar pbusernogroup00000000000000/* * Copyright (C) 2012 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 . */ #include QUICK_TEST_MAIN(QmlTests) camera-app-2.9.1+14.04.20140331/tests/unittests/CMakeLists.txt0000644000015201777760000000111412316315040024057 0ustar pbusernogroup00000000000000add_executable(tst_QmlTests tst_QmlTests.cpp) qt5_use_modules(tst_QmlTests Core Qml Quick Test QuickTest) target_link_libraries(tst_QmlTests ${TPL_QT5_LIBRARIES}) add_test(tst_QmlTests ${CMAKE_CURRENT_BINARY_DIR}/tst_QmlTests -import ${CMAKE_SOURCE_DIR}) set_tests_properties(tst_QmlTests PROPERTIES ENVIRONMENT "QT_QPA_PLATFORM=minimal") # copy qml test files to build dir file(GLOB qmlTestFiles RELATIVE ${CMAKE_SOURCE_DIR}/tests/unittests/ *qml) foreach(qmlTestFile ${qmlTestFiles}) file(COPY ${qmlTestFile} DESTINATION ${CMAKE_BINARY_DIR}/tests/unittests/) endforeach(qmlTestFile) camera-app-2.9.1+14.04.20140331/tests/unittests/tst_StopWatch.qml0000644000015201777760000000236412316315040024650 0ustar pbusernogroup00000000000000/* * 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 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 QtTest 1.0 import "../../" import "../../.." //Needed for out of source build TestCase { name: "StopWatch" function test_time_format_calc() { stopWatch.time = 1234 compare(stopWatch.elapsed, "20:34", "Time not calculated correctly") } function test_time_format_pad() { stopWatch.time = 5 compare(stopWatch.elapsed, "00:05", "Time not calculated correctly") } function test_time_negative() { stopWatch.time = -1234 compare(stopWatch.elapsed, "-20:34", "Time not calculated correctly") } StopWatch { id: stopWatch } } camera-app-2.9.1+14.04.20140331/desktop/0000755000015201777760000000000012316315300017566 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/desktop/CMakeLists.txt0000644000015201777760000000017512316315040022332 0ustar pbusernogroup00000000000000install(DIRECTORY icons/hicolor DESTINATION DESTINATION ${CMAKE_INSTALL_DATADIR}/icons FILES_MATCHING PATTERN *.png) camera-app-2.9.1+14.04.20140331/desktop/icons/0000755000015201777760000000000012316315300020701 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/desktop/icons/hicolor/0000755000015201777760000000000012316315300022340 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/desktop/icons/hicolor/128x128/0000755000015201777760000000000012316315300023275 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/desktop/icons/hicolor/128x128/apps/0000755000015201777760000000000012316315300024240 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/desktop/icons/hicolor/128x128/apps/camera-app.png0000644000015201777760000005167512316315040026773 0ustar pbusernogroup00000000000000‰PNG  IHDR‡v÷GÌsBITÛáOà pHYsíí˜Á7tEXtSoftwarewww.inkscape.org›î<S;IDATxÚµ½i$Çq&š‘•uô9Ý=}Ít÷Ü'038 @.H H‘â’ZQ»\ɤ…Ö`¶¤­žé‡MÒ³5I?tØê‡~P&{ï™~ˆ4J2KiA‚ÄAÊA$`Ì}÷=}_uWæ~žáéY3¤lß«‹ÕUYYááîŸá®ÞÅX¢øæ1–ˆ‡ß9JF™‡3rw¼v ‘ýáÛÝ0òÚß*4c¼(ÊÞ]"Ôï­VËL˜V3 y¹èJùöîQKµâ²K™¾®_ø¼¦øÓPÃ\ÊñÐÍwiùðI…J’TéácÝÍ Ãä…ˆɯÐûf¤˜QL]AZº›¥aúŸžY$ï) ©2{©K_¡utH.ßÔ3÷QŠÆïòØíæy9?E*Úañ] ½<3þ@ù¾¼ý¦/vµg)”ÕÊnçxi( ô³Þçš1TûÍ¥âïâ÷}b\g}M}%™/þuO²™`4æ!,Gzi¾Ž·‹Š‡¡4JovÉi~‹˜Ô^Ì—Š'¥Ò#LäRD»]ÅR+Ù:I±\ô{Q+äû;I¦ÉVd©ø«zÂñ€qgŸVÞhÅÂ-^_¾§òìý”òS+˜¬§•¢r_ÓTõÞÏJ$ðèªx£¥×3á%6£—HN+$ÛÉa•ð(Ë›4u­7´Om û¸€X¶0Ï IG¢K@ÑXR)»,³e¾%nÐj6ãQ+1Õˆ4Aê…V‰Ú`ÎRÉŠÓ‚ŠøùD$òºÐ¬”+²ãõRžz »¤ç&˜ J}=þéXbDrYyÓ¸,$µ¬Ež×~Ý-3©¶„Á;aÆ’Ö^,ŸåŸòëDˆXàÇ’Àˆ¥(æ0ålvóc<— ŸÏ[RFR4ê{™´Tƒ„Ñ—‡V$) =båi v Õ§½Ï’3Æ)v‹w“æ¡Hµ‡$*µCSôÉs¿®÷MFiÇÒ2ŒbH ń֎wcJYFí†g5e«òâÑ}b‡Q,ñŒt—b€1~ÍrvÇE x¾‰\¡éGû€` ˜oÔH¼¤†(~šÈDüxõŦMöH”â†(æg‹Ê\/d—áß ùDZzB¸ùi LÂæÀ¯í¯·¢–gÑl"^¬ä‰K°Ã\.GäÑ8‡v(OÇ ¶ÓkbØ+lOdžåXü[Ve*ó/ùVšñ³ðHAYÒgw˜ÔªUý®¯”˜d¢c”PõV|3ÏFB‹1féÓ?ßr¢J«7{½’’;Ãaðº‡f‰; à$ÃS‘JÁŠÉH6¦™€*<GÄ_‰úhG©“ýÎì¬Íe†úÍ·È“`5–UHÓÒÿ~ïÿúݾ¾¾Ý»w õôôtuuuvvâ™èGPkÛ¶mwØVD¡šy`—€üËË˳³³ÿîßýnåzž¤ù*WÑ‹Ú ûÄv Ó‹¥¤†ðs¾X»È‘½YZ.=_ÃKŸ òŒ‰–8V2ž¿óïüÉŸü !oà–¥ÙlbþôOÿô#þˆR~Jn›ÂðÔ©7Þä©“ (¢=h¤ Þ¸páüsÏ=wìØ±ÁÁAÈO–¿ÙÇèèh±X̪¶&&¼¹¹933ƒq?òo>±DðëXRH YK;µ—Ù–¦VÊÐ6ØÊ1•²ži69\åH°ÛYoR;Jîÿð¿ýíowwwc.Å:€fØÁårùÉ'ŸüÍßü?¤Ù/= ´‰c!]±q—ˆ0i.È-FFF ¾úûû;̓˜ ?y;ó¾­à®‰¨Ú/--5 M¾(J ½“ž. sCFøFcíÙ~®…›Òþ…ªÒþz“„³Õ^Š€Lx#äs¾Ôí¶ŸRª­X)×¢eÝúÊ+¯>ûì³C$ovìØ-[( ·ð»_ûÚ×>õ©_8rä›Ežü¾Ñ t¤Ð0 „\¼‹ƒ\ŽšVV_læ†~&ÐV\>0üž±wð>‘‡ö­V­e¬Ø°­*• n•/Ø[Jœ¦|Åh0 #ÆK‰WWÑ;f…B² yð¯ÕĨ°(]]% ø6€ù’&ljiò3Dî@|@¬à°ÝüRiZ&_ýýßÿ}ìrܤ:zôè'?ùI¬V„g늛OLL@cÑLðŒYáÓ;Iž!†R·Òa¤ÆÀgšBƒGXþH­ˆ]VíƒÖß­—»ÙÂ7 …ü¶¾^lUŒ{ ÷_[[Ã3~:¨í8‰«0AÌ£ÚÚÚÂ1Z’(˜/‘ÿ§Î—U£Äú ÐÙUx÷ß»wïôô4}´ÿ~¼ÆW°ž`8c®Ž" FÂÈ5“$Æ‘ð’ë$Å``ô¸r?Ft‹‚x«h¤í@›ºaD°†}ÐkÜ7„§ìLÑ.z‘ˆcoì ›_àsÛFG©cxb 1;55…Ñ'‘$OK¤šUciZ3&áöíÛ1<à:¬8憉“¤q8ì6œKôýèUBvooïùóç¡_è+‹‹‹Øø ÜïœyçÌý'ïOáŽ(ööi¹M=rÉ'ôŒ­ÔØóíÃAí$L0†¶D0Ö¥Mó ,Y祠X*¸ìd,¥Äð4á´ÔR¤¿^«Öð)8¾¯oî€ c‰É¹çЃ}¬’„Ryi_¶„æ4 èzM¨<ÊAòƒr$]ÒN•–¾” 33Ó¼2x1ߺu‹&HŒ‹Ò>À•÷Þw¯Œ³Ä±¡&¹V<³:Ìâ0­4µ0¸!ó`y(ëg1™ÕH*’HÄ*ㆢæ0ÁŠík³p¾JE p ¾@0±ks?ÁŽÁ=™N¼âÒàËD7\¼Ç«Lc°%–.ô&þ„< ÷aá`:,äûû°D „"¦8 <òÈ¿ùë¿þk’i¸>à à>¤ ñšØ <òáGlÈ$fQ?¯_bE)Ï¡—Š&k¯Lbe± stà™FÎ>˜ µOÁÌ–xˆ¹•< ã^]]Ån•X Šb÷D%Éɰ¥ÅZ¥Rrù‘Ña\ƒ=YÊKLtŠÍÂã%©%Å“Sе,Û±,%0Ì÷‡*Â3è„Í:??] ÍDdK<ýÊw¶È‰÷áJH?HE¢MÓÁ <ã}ˆJvo²Ÿ^Y¿B cW’TL9štçÎd@ÃóÏ¢~å.&ÄžÀ3¨iƒ}@Ê/Þ1 1ÆÚ±s®©ð]iŸÒ²’Ï…vm)‡Ã¤2“¶HvïV¼ñ ˆKdƒùÐv$$ÙsnXøâ‹/b²+¤&ñ-Ü/°°´,¿þë¿.WÒ©­ßnÇîWó²a/å€ 2€þMŠvÞ&ºêŒÔí„$dz‹5uXÉóR¾PcôV¥\îëïëƾ¦¹ÑÂÑxéMzƒ”«&i&5\Ö¹,Yù‰‹. «›ƒÞ!²AMà#@sh °ˆ‘r‰×„M©?þã?>uêØ t¬Iü@5’RÀ­Åû·HŠãœ®'£5®©”^&·hÌÿÏÿûïÞ½ûÀ~©ÃKŒ0虢M´+q9²²ÁÓ =_À ‡7A'0î@’/K' Ü<~³¬2DI¦€…&’ã$į?õÔSóóóŸúÔ§XÙÐΣ¡bî˜ F÷i!É1H,NÚ ŠÈ†tRðmQ]®xgiÝ›OEÄ¿ÀÊ-$mTÌ×ßø‡o }ãß8{öìW¿úU›ÿ¥Z÷ßòëOý=øŠZ&§µpóÝ»w“ ãx ÉwÉx}ùå/øØÁ â¹sçÀÍÑǃ"„tÜ“]±N‡ãü”3‚!4Â~ªÑRL%¶¢¾ôÒKó7#ïÉR #¾Ks\ΜššÂàǦÃî†"Ø‚¾ù/ÎÃÀ õÆ?±9²¾{+sê}úØq eÿ@ÿ… éú]»vA¯NLì‚Ñz€x÷æÍ£#£ÅRÑOÁhV][[Ÿ¿õàƒ¸àÈYcŽ7 ê bЉo‘8¬àÈŽŒñ³kʪwåäIÊ@%o éë¢X¢<ôÀüG>É.óyÒx ]ðÅ/~‘´µTi<Ž:áæÐµ€lÖ’X]·KbRq¢n¨Þ~ûíTf¹8èÙófʱ‘§Ç°á– vIqkoóѼx9°Ö็zHÚüÒ«Äq}|ôw÷w¯¿þº+„T¡=ÈpœäÑ›ÉF˜Eú¥wXÉ9“±DöBI²á¶Ä1ýýýzË †Ã;O<ñ,6iç´gQIÄ3¹bÑÎ;ygHë»­M‡UŸ|òIŽrr ²aý97›úg”ªV*&„Sê(á’bQ'ýttv˜½ãU3"N«“­­M\íŒ{,¿ázÕjåêÕkÐm,ÍÜ2æÚüÑý§Âã}ð+ø’$_FÛ\Ò,K*2Waºá™rñä3I<â No¥ü;¼ÙmlcHœ"©%Ç@À× øIñô _ø‚݇î@·‚PÅÀ@lÍdaʽhO‘›QÖ[ïe,JqZ*EÁÉåñÑà(u-¤gL§ð lÇvcRÉœTz%û½ßû=è<¦ÀÎùóçAcÊø` Å륓PMPCïÐ1bH$:| }TlqJ+¥MB†ƒÆx¦Ô.ˆ)|‘ò…£'9§Ì4³Ô[” ˆ™Jüùè£~úÓŸfn–ŸaçÜÜì¾}ûµ §Ý¹2sÌ ë}œÒ°®-ÅÞ_yÐÕsk?ðŸ9ç`/½¿µU/—+Gްq´-ÄŸýÙŸIjaò—/_¦(¾t08&'qÇrƒÌà,Y__ô%¹?d,X.¹ÛÙfu·oßN)ß+++¸ž‡††x[Фð'ïçÙˆ“*¾bórýË¿ü ¸çž{”´WH5šäím ´±äV_œ>U6]#fKRÝìf>“ÖLê#y„B²ÆTéB‡½4`MËš pNC;4c½‹%½±CÇÇÇeé„õ?õÈZ¼A€U^ÀŠ`ð$W d””–4£×ä3Ä Fή<ë[ߺûî»Y½Pd|׸~nnºÃØ[ÉÉœ(®P‘X“AÉÁ‹øT»âSÂöŒ°â¬X•:híE‚|™h“I€‚tÆ´>,S?%´#fúþ÷¿/©Lˆ}JÛMæ'9©glÃÑ+ V \®·ƒ‹?õ¯ã×qOŠñƒlÀ¬Û˜fL-I? ]’Wž`-àÚ§Ÿ~úóŸÿ|â02dc¿>Å_æfçÇ'ƃ\xœÒ%Tô®*W*²‡JI¿¤\ƒ­ò&ä¡—e0w("ñËP£ü°—s.ÁÁ‡_ûÚ× ®™ Ð@Àt¶‡‚¼zw¼YôPD‚ª‡ ¤ã\ÿ;¤rÈ‚ü hf8  É4cÉLÔb_Ák\£“wìHpY5ä6“CÅø•™™YXÃÀF,ìØ÷Ä' |ë­¿C 2&YHV]“þ³)ò&¬¥Svõ r¼ñ3ë@^Øžß·KÇ$dñÚk¯Iÿ,x:zˉŽ'—·-.†ÖÙ½{7x‹ägøÿéƒS 1 [âféÕe©(C9xA¾7Ê&bpûÌ3ϰÚf‹”"Q®§§{yi +j}»‘‰û,é_Ї!<в7­­Ê'¦ÑQg*–:¶j¹ÏKÊ×y‰?’r66±ë¥œ”62=¾ò•¯°§ìJã¢,r~<ÓÌá3lÈÛóÀ‚2æþÿéáÞ°E ±‰xœ5%s¹h¨K °êºxñ"Hˆ5áïÊDf:3=5=8ˆ DLL‰Í‘Ña‚¾Jj߈~ÊVðQJ¥L9Y÷L¬j4š‹‹ GÞÅtâ)1‚À¢Ÿ>}Z50r>1¾»˜QHe\—£tŠÑ×OMg‚p\gëŽnF I°úXb0™q–ŽK”+©Åy8F˜ k™gŸ}ö‰'žŒÝldùaE=ŠEBL>s{p‚Z½nE¤f&®i$3çTê„x·d}š(‰mÓ÷ªÕ%ŸH·‚tÒàͯ~õ«Ò3‹ÍK™L2Á4cjAáAÏa@-:…pjѯÓ)<| kQoÔ”uÿàw ÅRgG'~ƒP½3ñ(RL{ËdzÉT¦_ŒÍ‡½E\Hƒ¿ví¦ÉƵôÏÑ} á—–—º{ºS6;±±nðÒÙ÷^¦T a Ÿ¤cÛ´ºÈ“çs²a,ËІŒBá1??=ÌÔ¢c©Œ8Œ$³ IW3|J‹ÜNw .†øš›Ÿ«7ª~àåsªk[~¤·££Ó+ä¢VÓ¯•½­ÖæÖÊÕ+‹/œëìê HéÞŽløÛLèHÙÌ.l’ ˆÉ€qO^‡ú§zòÉ'¥{“7%åÄaoA>é£Ìɹôø¬þ,w$öïY%QlWeJl%ôälßf³qëÖüý÷Ÿtrß%ÀûÇüG 'ö"¬ÁæÓŒ­(,ÖëÎÜ@÷z¼~ãZè7 ]¹ÑñŽm£ÑÈP0±s;€)§enIyˆ°ê—æ–''«×¦Â3•+—ÏONÞÜ·o?6ÄœÈ:]¥^ǘa´°žvR’éOÐŒ°Øs &#£Eš•¥Ccµjµ«³Ó³Di…Æo@…M‚Àñýä,:'nPvH’8E–8éw<²î”)Iü†/±’=‚7S‹ò“°¹¤XgoÓúÛôÖí$!¥mŸ=w¶VKÛÕÀ⎻»wŒt«îÆúÖüüòÅ÷¯´ª Ø·ßë.úÃ}Ýã£Û?¶¯+ˆÓ3˧ß_ÿñ{Õ³ï¿ÛÓÛS—ýaYÙ:aš`2:ÆŽ]-"³ ¤Åe,9ŒüqI`y¼6;,Ü6r± ذ‹“³-É ‘ÎP±wÄzÖDòU¦*¥,FÄóyÆ{’fP'Ьó‰äáe?ÍgBÎ\È"ò 8Þ^Þã¸ó…KrÞðÑ®Ç:wíÝÑ*«+§nn­mät½Îf!Èå!h0Yõñ*›Ë³3k ß@OþèÁÑ_||߉} /ŸZ}ûâú›§NÝu÷ÝÄ m1ȶmÛ°9@ è$ü‚š˜Œq?1Ç`9ˆÃÀ"djr 3MÊ ‰¢gT3©"2!Çxžc/Sä;6™a–APŒŽî¸C™³ï~÷»œ´kü[”¤%]«ÒANGá +(¼Ô–·ðþ$3“ÅþüØ}NŽ…˧®‚ÌÐWý½ýÛº;‹…BÎÛZYiV*Ø œqò..Wô“ëýÝ¥Ç~åûGo=ûÚâ;ï¼}øð¦-Ͱ øˆ jòy¦JXZuNÎL–jq™:3N¦‰ÌÒsÉé;ä)c…—ØŒ!‚ØM¦¬]s”¶Ý¨L8xÁVp¤ŒÐmFÑææKvƇrΗ.]’®9ˆDJù“!(™þGg¢¡á™)³ÔÂÂMÎNvvìùàèž#ck3ëç®]l4ÊÃÃccÃ/j*ÄÎ/úac+Á ‘àNV£ZoÖšõZseµúê©+Æ>¶³·è?ýÊÂùsçŽ?ޖψ ŸÁdœ÷à8š M˜ —-Œß~ûí“'OJ½.}oØ—•JŤøÉÙK* Q7°>±“¸ÒS"åL*9"Ot‰ëµÇ?ÛËÖe¬C 8ƒ½¬¡ ݸqƒi vŒ3în_§ KFª++ Ioݘ¼Ñ1Ô¹ÿ#{w퟽<;sóf±3¸ïäº{J¾.]ÜY•­z H{cke ÔêðsA¾#_èé.ùª^m”7k•rýâå­Íæá‰ÿñÃùxe4»ûر¶úŒ€>ö nÊÞ^™IG«ŠÙÑiZN¿B~衇䆓7䙟›ïǦ–‡‘,ŽÊE´¼två3í”MèŽÿ?.äm,‘&:è3‘‡’]^zé%éÝÀZ“Ðàé9…<ép4dº”¢’Z¸àÒåKAW~ÏÃÆvïºqnr~nvppèäN ÷ù¹ÖÒÒüúÚFµ¼Ö«ªQ×ZI/‡š«ZÕJ%ô:ò¥.üÛÖ½¡* ÛôüzTŽ|âxÿÿüñÂÅ‹9ÒVS'¨ap[[q‡wÓž£h­Ls–y’TÄeskS[uÆ€‹d"©t™*‘–9ß§ Sµ{•Ù•J™‡ÞŽ÷Þ{’óÀ‘t’žéêD¿¨¦» ³{“rÞØ½{Çî]¸¾´¼°66¶ëç>öÈðhäÕ76—óÅbØÊÜ:5¦¢ÆæXQ©_©aæZuu«ÚUêîíì,xÁFX™]Ø€Ò?:6úØÝÑwÞ†]€U›¹övœtyV“Âܘ{ Y1lNI’…ðm–˜®Ì¤]\"IVáa¼µ•h‘&X·vëá%@¡år…P“Ãa¼}®_¿ÎÔª˜X;²‡ˆ`ä]l+ uÀp}µ÷èØñC•¥ÆÂÜrwO߇?úèÄîñF³¼¶±¾U®Xä ³Âf«ÙhÔê~ӜȀîÔa÷(0M/åCÈT67ëªÖÓÕ§:;ךÞä@ÁøV#’+J¯…ÀÝœS·¶ò’^©Ú”ÓkÊ@“'BÚåy·ìhVVV¤‚×–`”X˜Í祈3ÔŽº»{ç.]lÛ½{®l9áÜå+Ö×7——VJÅ\«Y‰Z^)è*æ½ÎœWŒšà³‚Âs!*…µ°Q [ÈÒ¬V¯á»´^©uä‹U¯ºY‹FT8XŠÎÞZm+iHL0Ç"–ñf°c›õvAM¶HCg‡1¢3CZAÓÒÀò65àð°& 5#¯zÍ àûÃÃÛzz ÅB©Xš™Ÿ_X\ÖA¾–‚T Z|3“"Γ’@â{™;ųÁ`ºIÞrÚPÞ×åŒEeŒªEÙ§6(RŒB÷WPBÓp±3£±ÓøŸ)Ë#K­Û‰Dò‘·-\ë?½UJõj½ÕPo½õ^_½ÞØò. ZÉ׫ß+€žVoa¥æ¡Î#? ? ú»ÊË‹a}Ão†AqxÇpOWG>§òÆ–ØÙ3ѹw.®¯¬G`Ä–6¼¹ˆ C0ÂîÙªeRÊ#¶T #[n‰óþõ³É_äp±f¸¶EFí/Õ•‘Óî„s8blÁ‘br"·­6C9 Ùrá·{Av~[‚Qf ,åÚV½/*Ý@Ï×ò°™ƒµÙ„®Ù¦ÔR>RSÞbkÞòBll÷®¡Ë›o¯¯Õº;{·u{MÀEÍ‘ÊajPH’Ëíßs`êê  LVªÊçH¹:ã¡bŽÉìˆy ×; Œ¯Ä ヺDbrÎüÔ8œfêP…r¼‰\©‡2MÍIJ‚¼VY5{;9.ËVÊÉ©nnu nó´Þ€Óýš@0}î§•3'ttŲfË£À¤¸â)§Ûi)°×ÎŹÅå[•®‘Þμ–€õZ‰T>„~SzTªt C}^mm£Ú*7Zª ¨ª»C0>{»Ñ@Y¸0c¶´1RƒJÌsЙú8;l›-\•iÙ’d“’3ÄDÂHî…qÍJá”9¿”&&1½ôßd+ðÊpÎäõÆØ,‡}€N~«®M)è4Ým¿åôD 84€Õé}΢†~#jœzí½|«º½{¨£ë,:ójsm±Ù,ëäàL;Àô´Ám¬±z5·^ilÕ….¯-‡QšT[“Ñgž Å4ÚvŠ#D¦{Á˜ÔAŸ9•Û»å÷UÒ|+ úsÖ»¥ú<'Ée\~AŒ.–åá=—WtÚ ëãé0¬­-7GüVÓƒH¬W›]¥Hc+•ƒ½Hž‹Pû ëV±KQé~Ãú…W(¡°:J&5s~§Šš¨°+5ËšÓu¹z­Ûº©Jk[åzcÀ,Ëê0î &‰ÄYo”]ÊñÑ §` »x J)kC2`…ÔñªqÒ}Av6R,ÆBJ¶íqÁgi–§È qΪÎÏßêïï‹HJíÅ–5µœ ©ë12™½¦èHÕ‰¯ mQ¯X*Pk:R/»pð¯ƒf”ƃ¡Â¥&çú34è£Gž:uJ´’3ÄMŒMM]\ ú‡Gî.íÜZŸ«mm©ZØSêìï«lTe_ã> J&¿ÒPMÕµÓzL½ùüÛ3ïO–×6Zårk3¼|öÚV®umcá|eiÌåŽ9ja¾ò¬©Ì 1€ÙQj3GÂ>ðdíQžÑÜÜìÈȨOþëH¤ Ñ m”Y¦r&6 Å­N3™n†ÁB>‘¼´°° K¼sd‹n¾ÿþwÞyGúc(V+Kè騲aÂóY&Ãw5x[Y<•‹ŠC÷å»v•A³J-ª®t—ºzº;¢b©Q©×Ê*(£×9ô *i3ÚƒñÜÕ]³ÍO.ûa«¾\¹qõZŝߨZ¸X¾5²g…ØËIW¡b*ÇŽsØK¢'jâD‡øh5ÿ0-Û•Žž±›ÇvŽÅ[<íw ÚÚnÙ†ìæðÙÁá’3¦"î60°}zzšŽX9½8èþÇþùçÜ›ZoúA•g8)š8ãõ¡C‡^ýu.¦æ «¹wïÞFãâÒÒÂZu¸ïþmcµõåzmm«¾ÑÌ×J…Rgw±·»&˜ŠZOÝÅŽR¾«£X*W&ìä¹µ……Ù­`}rcòbùfÇh?—*Ç:ìEx âÝ)cOÃæ54ÕÕ|‚Í´b÷Ýw_Vò Ì¥P(æabÇ.u“wA¦dŒ=A+KM%µ£DÑ¢H'5šT·t /Õ,Š%'—`vãâ}€ZªžÂ®a:æÆ Ì4mx ›tqq‘+ð9|ý®»îº~ýúüÜõ•Ñžû{ò;ZõþZ}£ÞØlÁ–ÎUò¹ øÜ9 «Í¨úµz=Œ͆_hÕµúæúZ=·¶ìßšYº\½:¶ôµ²Â†Õçø8YM§þ‘¥äæ½÷ÞKI³0:H044X(äM}7*’hû;æg›XfáF\w#´…Öqa²³±`€2“Y*Rb‹rÏž=t†… 2LŒ Ïœ65YižiŸ»²²‚Ëd5"9l°,”?´ÅåËçëõÅàèPñ®þ`´ýÕXW͆— awÖü-s /¨¬Ô:ò…À ‹`GNÂÕ`áÖÖÔtùæBtëȉ#` Êþ̺6¨†Ä§¸¸%º¡m„‹™`x>räÈèè(µ3Êö}Ä‹k×®íÞ½‡º¼rÂhâ\eHÚªòh[Zz²—‹H/Èpù³gwïÙÍÔ"6âø)´.ÔvgØÓnêw!qËüyÿý÷}€`Tê¡-ͨºúÅ‹gV~´Ñ¼Þ—;Ô›î(ö½ÕÒ˜@1ç…yOåM;'/¨Wüj´±º¹²X›n\ß¾càÁ½Ò!ŒÛQ ¶?~ÚH:£¹‚ý‰;€0TöˆuÇÇ?þq:1Ô4èŠrfOOOìu-ò@2ÚÔ64жZžôH¶IN3¡Õ–h³&K‡r;#“^xAÖfÆô¨¢O›sWhÃbÐï¾û.îO–JV6RI5Ü|mmíÂ… S›?(5û;Ôön5Ü‘ßÖ•ë)”Š˜aK…[Q¹Ù(7jåæòz¸¸Ö\êÙÞ}òðý1Ø:Ì„Á+L-®UO‘ B³Ô’›âX ‡¦†@oÑ Ü¸qcbׄ.ÛdOq6‡ÇÞúl½Ûe*yd]”óp€>ž‹¦øÓòò2£$’<%ðÀœ9sfrr’ëíau¨·7Õb‘ˆ?)Á—CCAnàOÙ¹ÐQ0T¡ëƒü Dž™™¹¹~!h•òªèÿòÆ"«ÕÃJK5ú¶A$˜ R¢?½Ï½ÛêHª©‚8q‚/%z¤0 sÀ°¥åÅ€u©Idö#•6¦Ž­Vœ·aœŸº¹¬Ÿ£n_^Àimó–¼l«©to3“…©M³G]þŒ—°ßZÅ›Àu§OŸ»Ðw±û@*L•˜Œ¸Š ¥ÉCÀ,‰W¯^…ÀÁ¯Ü.6O¿HŽM>ö#Ë$R-Ré*ËF·i¨¸ 2w;yò$#5ÞIÒ»Aù²˜Å®]»¤ûû—ù—I:Î#^´sçÎOŒÃæËsQsSÑ!°mqT|ƹmq7CM\ÃOÜ“/iT¢´Czç… ç!¸¹¥3Jyøá‡é-Ë ÈFì5pÕLàBiNPÒ4;{ö,ÞÄFnÛm2›‰v‡‚9·û”¬cSºDu*%µxWqå\ŒñSAS––P½à0.â)+³þ^^^ÒGüŒ{[v‘‰—4°M‡%Jô³) ÒEÉ5c“_µJ1ŒkÖÆ€¤«³C¶®£E—yZø €øÁƒñiäÅ¡s´D¡ŒDøV¸¸ŠüCdÆÝ™lÿª1utØ[KèA²šÚ²ÍÈ&µð†¦LFzüñÇqG’I4Û¿^',Ø\v/ŠMñ±@‡½œ3Ò^º_“˜¦yRRYSÚ¿ÿÀåË—0z‰,³³³:ëoÏJ‘ÿЇ>455e´)UÕîiÚà!Î'gÑJÚŽÄ D:áÍ›7¡Ò¨æ?Õ?úß$Õ6 ¸ÕÑ£G9šL³ÀïbÀD-¦Âk,½¤&HzW×+]^îìë“N;Bó@Fãã>ľÙõwK+¢³Ã.iø´yR«Ãš^ö|Š é=®®‡\bÎìéîb4OsÊ0„t2 X'Ï?ÿ<ÿ(>‚-B‡Ã¨H³Œ‘×ï€ö0‰´›c~÷¤Â”²ÉÆÏò`ÍJî Zz*Ƙ͎Â5”oB¼EfuŠ£üÓ° ?ùÉORüÄ¥W_Å.ØsÿýÝÛ·wšÒÀZ{=·kbWA3hS–ïâ"ôì®Èý‡ÿl¤±Eú™#X¶SÓ]<9‹!Ù+ëÙ†iÜ[2Ÿ×9Ï×®]§š(Të‹"Lˆ;ƒf¸À·LŒ¥Pa9Yj…¨ÅÒ’ƒŸ¸ Vgeeú† àÙîàŽ%C,Eê_§bŒ°™øÀÑ3û;ÔK/¾ä0td8`‘cnNö¶³ ýsŒ„YZ^¢ªø&$ô—åç¾{ßùÎwd… 4c¥°´ñ‰ZdÒ‘Âç”SI¶;<²©j·³áHÔ“uÁ†<;¦©®ª©­5ÊESèëcccŸýìg‰/uÓ3g:z{óÅâÍ·Þ9p`âÞ{ÉÎyþùŽÝ}·Î¸ò}/]Ø&Ð @‡ýÊü•Vúq»F»2) fûà É7×ÃÇe,E[Óܯþê¯J–PJVB—ÅÚ¸t¢¾€Pˆ (9p9½Š”AêrÕÂoŠ…+—¯w‘Jèâ#Wêé‰ìqo<<ÔÕÕI¥rL£¼¸Ý¨é?êSUmÒ;dHç~í×~Íúcw")­tSj_º¥…&OÍZOâ=þ~ÍÅFÆ¢´rfbGŒïP©QH?(<ÈwŽþ$„¦ÍÈÏÄÀxHb“â@"g0Ð EÆÓXÀð ©=·4¥¤<È@(-üI){rca;~ìc#Œƒ]0õÖ[Íz ¯ÆÖV÷ÈHdÛx¾þúëGŽí(•âLÁxs·LuyÑC¹š?CÓC,RÏ?÷œ,¿g¡Gä¤3xIʺ¹­6%`!zGL]¾²Z«^8¡Þ¨“Û†Ä`,_¸ÇŽcñˆYA2Èô1J# DvžÎG34à“ìX‘¡Bç`•d’xܘ´—g»´z—‚È€´Ž1*Hx ÿÓHn¼üòø}÷-]¾\èîÞõàƒTB†nû£W~´ÿþ¡á!0—.7Gý—`1n6e®É=ñÄoÈÌH*g¯Û¤ÛÞ¼ô¦Ì²³Œ±‰û¥l¿QÎA•™ 1K) ÓÁ:„† €@ú(„1m;™5~üø¡C‡äþX¾tiäĉÞññ™·ÞŒ*iŸçNÑÐaÏ=ûœãæ& y$ævÕ¤¢Ì1@Ço"MÐì⥋à$†gÐd0ÎSU8Ž0áS¬ø ü'‹çpÿPò>Ê!šq|²m$¥m) : j‘…Žñ%OK¥µß<(‘Mâµµ_éíûñÇ|ðê‹/î~ì1|Ÿd/?33{âĉ.›Ü +yq›#~Ð&Z|ï»ß³ñe/]tÙ¥ÎyJ­tNô¥Í'‰%»û‘7„]*F}zf&øŒEÿÔÔÌ FHÈÉÉIn[ËF4È ²Qïm'α3å°èÜCQ˜Ž‰ÏLº¦È¡J‡6Èåí"sôäáÎûöí#•T ¬V4§_~y×'>QŸ™Yšêì¿ë.¢ˆzíêջw[ob³ ÿyŒDåC/SiO?}óéoz’`ß ³ÒIð¼„]å?—T‘¨aÓu"¾‚/Ãnžšš¾výñGM©RuóÌ&›`5¯_¿-H¥³§XÃQÔ_¦UÂäübÆ DHjFlš½'…ë°“¨ûjê´|N¾øâžO~²µ±±tîn4þpÈ`]àÞë"Ï*÷2yÉ¡ò(î5ÅYSò4.g…dSq"¤ 9ãˆP2Ëé!@¶"ˆŠ½æA M‰žô)ëfðÓ™3ð·`?‹K§Nõ=ZŸ9}z÷/üBÉø¨8¶¹¾¾µzôèQl©¶±¶«2ð,ýÄëˉ°{¾ñAiÇ©‹«l©òÑ'uT*þ)ìÓT­”(ãa¥ƒÄ ¨Áj)|f‰lO|:33}1ˆ $!˜+EI"ì£âç´/»½_†Í^nÑqÔ××;·oo./7Ö×ûî¹GRÆÒ»ïößw_¡Ñh -Ñöè´oßþÞžž|DÖ0âctqæZRªÁ†B¸Žr\p)Ý,Š‹ªo~ó›Nå¶Øž£É©—2-ÄD^ßö£eK+[K6a2,—xdÂh}c}zzzvffT÷|ϱåÄý¶A9ÝÇ„cð¸|ù2¨ 6¢ã„Ô²’Ë¢ÉÚŸmSÁ’ÒV¡aXìë§ûµZ÷ÈÈâåË#?¼|útß½÷ò‘¡ Vóººd¯Gmh¾ƒ‚`nz®-ØÚc¨QºÞ5ÛÎ-ªúâ‰c½QâìÐ +IбbTW× m%R³Ä¾8k‰{ÊèIRALÈ8i³Û¼H4•KŒ6þçˆ*Å´ßþ¡ÁÁK—.·ÂˆY{nAз ÍÈÂÅW@0°À7az`q`.ó ÷?e×0mV*ú¬”qùWoÜÈ‹‹…žžµéi숡‡ÒÀ‰,ê øcÇŠ]]:ئ‹f*ÎÝ#_(4_gG'¹Ù9ŠãÿÈFeÄt¥ÈîÆ÷ŒU$h%µ&ˆ¿‹Å’nêëâØ¿|àŒö&á"!68D"– ë…åƒlÄW@˜k`DJñŸŸŸß»w/Û^š3Z­úÜÜæ… ¹ŽŽpe¥¹ºÚ{Ï=Amr²ÿðá[gÎä»»k·n•††:;:vž<ÙJ»è€uoA?8røöF«Ì &[#>]î5öŸS?_?ndãç|êjÅqÊK·rösÖ•!„“ì.«|é±ìòr»¾(!L?àÇ]’|¶x8ô&5݉)n 3Þ4¨O÷š¼^\4Æ–ïS\YJD¢:%à°EX@°W]w1‰ëAEܬšÑ)l:•ËCCXxÜV@`çĈÙìì>r¤²¸8ñs?W©Õ`|¬›£˜4;ì@PˆßcÇŽax±4K“ˆ¸H  G‹$^£”yI¤—$'Ú.¾ØúO}ý)/í‡I崗דÍeœ8ø)“Ù’ÊÖ¼W’ù#Æ”,§UÄI'{Å:RriyùÆõëÍVìEA5y¾Š‹“¦© !A`²í`0PÂŒAKßÿþà‡>¤•лïvŸ<Í͵Êå¾£G[ÖpŒbesšoæp±T”‹Ù§ 6®Ô¤iç89žÛdÖ‰u9Žu½LD0¶¶£4§Èz¿*{å¥]•*éÉ¢Rµ•r̶¤o»1k;¡_NÙÏzÙ!²u­òÜÜì-Ó¶2SöT ˆÈå Eq=‘“’«Ä¡³mmçh†æä,öDï<è¿ååep¬ˆ¡Á¡ŽÎ˜Ã|J?Ue×ä}råøÈv<‘–_Ïu¼˜1·¤ó0L;zéO=õ”4›˜9ä©s@‹RWfNÒÊ®qÒZW‰ Yñ®Jn˜à©ÔÁ@% °ÔÐ&œ ›©ýD(?_Ðçh)'•‘!wÉV&l_‹$ îu*¼1à|]¼yxtdt‚!Û… ¤ãÎОì¼,zÖDm«ÑH‰8¥¾"C¯•IšË¼£cÉ”tQž µ†(tHÂÅõ>7LOI%Ø4Œ\µÀš¢òi¤âüüXXë-\¶D´þ]p(‰×h6*å eûVkU ¸ŽRH({eÜîd©Sì‚BÌ:Ä¥r}ý}{}Ûú ÅB!_ò©£1tÚÎÌND$ì˜C/d´.‘aèÒ,)'¬ÿ1@×wêºË4ÂIÈ éí¦Ñ©´§L –’µœãJ9ÂòPN³¸4¢¼ä¨’¹~‰’[ØÜJ¥*½Ê¥R±C•º»ºúúaM™YÝ*ommn‚óʦZ\¶7«sº²<!5/:ŒT p§|6±ÖŽRBÂˤJöõ$ê$K“Ê,±îñÛú–$6u>Á¡Èj7Âî6ÖͲhÁ e¢:÷J&Hµ;‚à9 Úå³XGO¢˜;O£$ÿÿçŠÑSe`íIEND®B`‚camera-app-2.9.1+14.04.20140331/desktop/icons/hicolor/256x256/0000755000015201777760000000000012316315300023301 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/desktop/icons/hicolor/256x256/apps/0000755000015201777760000000000012316315300024244 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/desktop/icons/hicolor/256x256/apps/camera-app.png0000644000015201777760000014002312316315040026761 0ustar pbusernogroup00000000000000‰PNG  IHDRðáöß8¬sBIT|dˆ pHYs‹‹!8ú·tEXtSoftwarewww.inkscape.org›î<¿IDATxÚݽ€Çu&üz6ïb±Xä 0ç,J$)+²•lɲœ~+[’mé|–î|–e¥³­³l+Y9‘bÎ9çFdX`6ïNÿõU÷7ûº¦ª»gAùä²1;3==Ý]õÕû^ŽzðÁªDQ$bþ7û§ûˆ2O"±ÿóXœýj¯£º7#ç8ª;\ðQÝ yö‹s¦7Ž ùË|àwcóŸûûÞqÈ;Nþ…ìËá_g\âû1ŸâR÷ `‡_Gœ¯‘3w.”¾öØŽy5zè¡«‘T"ž@\b´#ÏÁíDÌ,ö‚—³hÂêסÉ\äœP\½ F©Á*9Cöƒ4tâÚíîqk÷¦E„ç_°eV“?šýBüÝXÿ@H‰ñŽ °YÀY\?ðÀýÕdýÎ^yxÑÌ¿Qý E¯¤Æ ©“œQ¾tÍœÚÉÆŠÌcp°*é¹çÞxg`óÀV©T‚ß-„{Ü2@*ÆXžEQzlgò¹÷{6 lHŠÇîGqcÇQ÷ªÌwãjìý½Ð"ä»ÿî<Ê[”ê(wßÐõ§÷(N~È/ï¿?päw÷;Q<‘À8jÀA©ÚÀÍroxf!Ð<‡#m¼jA&I/%ªDåiiÅêÞD MþÜ ïv†-ü’ènp¼ó²ÐG%Dah_÷–zˆN×¾ZÄ,|¿—£žZ?XÔ2¬WŽBºT^D…76 J”R:oÑ{ ,.‡£KyœÃÐS_]¾ü1bµ06¢‹7Š FhpYfRþX¿,Õ¡¼jæ§Ö…n|€CŽ)\jrä,u’ö0À”žú»‡ (záŒE¥%°ipÑ=+3Ëéçù˾wžÀ–÷~y•!.aÙY?+ûTžN{¨rÎëØÇ”âš~ šâÙ¾_«Á3÷]H97-š‘¸yt8<1¢:º^z m'uÏÑ«bNQ0JIõ¢ÉÞ ,ŸoÅ.”±ÌÚð0¤”䟳‘ªQPÒ‡ÀX¯JÄY9ö˜jã’¶H/.)^ªU¯íczz:˰P|”‘9…™ù~5ºï¾ûª‘âœ3:a ö`zº…¿;ÈgGm¸e b¥tn‰[§ 騹–ÎP á(hóš4§ã3@Ê—®eö=œï8ÂÌOH£|I›]œ‰’°Ž7Ç7Þ^HÁ×+ÔøúÀA'nþÏ4 ˜:ƒ—_ GQI£Ñ,¥IC>·R.t—JéFq¡à ~ÞE.<÷¨Ü˜•“|ÅçQoí-KaãÒ4·—T®s<y>\4WB矎:üÀU+QåXššêÔV»0³‹_°{VzÉùn—Wf% ta‘† qyþp¿Jö¹‰\ ùŸe:lƒOuQŸý2αôõÇI ÃÕœ3愱¾\•-˜ðe¢¯2’:Ä,\:‡Ëd¥ÏÔü‰‘Ç¿œãnô¼ƒ³Q'_ åÒý@¨’Ô³†ÐªâÒcµy/ PظP⇮£‘ šØåÔµc×Û35,já«ß[­TMÖ¼Œã|·’Â|Ýòåè`³usès*ytã¢ÌïE÷”€ £Qê[FGŸÍâž夭kÔ)¢‡QÔ¸U7{½E”&€>’FÝR>=»hqñ.h±ÿ—C†Ô¸NóS#Ö ….§Ã#ËXX£2³Âk˜*KQTÑ”¿L”Íl)<«‘ïºA³Ñg»Ãb ‘o2tßRÑU³óµå¹¤f­G”>V\ð×QÀ—Ar\¯[ÏK ËëjÀìÑE¢tÕrÜÀ<ˆêy}c Wƒ×ΊB‡Îù0\B I^'à×ëNüÏÐgcŸnLš6ÊúÂÆµ_>|~ï8sAÀ?üpàœd‚²Ôõp‚ÐóÞÍ,E>}h¶%F”5:…Üfô5Öý¼º¶`‡DyL3÷÷ã:NWïK y\Og ¤‹C™°òVnÿ|Ž"™]Èjà lñÍþ:ÜH4bEÙ)X‹Ñ èQ½æøë¢™ð¸œ¥H·lÄ/zиT&ã(¸p•ˆ²©·­Ä‡Å òBãNd}ï‰óh>ƒKí³(ÈšÖg#͆FG·üÊáßµ¬+f<³a+Nâ–Œ®„òå »:*?2|dbbbFz”0¤ü*¸pþ2·{®LW§gçYZ6 ³æÝŸ¨8ؼ²×ƒ04i£BÅ.r"ûê%p,õñïE Ì£eç³Ó±C-j­ÒE§(Åvƒlv²‘ê7Ð%µ©©IÆÆÆäâ‹/–'žxBÆÇÇ- ð¾;Y±á3ýìþïwÞyPeèûL¸\œy¯¹˜¸ïëcLMMÙ…gΜ9òªW½JZ[[kû6¢W޽ OVeââ —Àžä³‡(*¯W†Y…߯Z³¥E . B±jddD~üãËÍ7ß"´s§££].\$o|㯛íÒÜÜRÚ’¶¾ùTKèŸ9Õ¬U1xaž{àᇾúÕ¯ÊsÏ='‹-’yóæY ´µµÙ­¥¥Ånÿææ‚œ|éÒ¥‡-Y^ħ xÖÞÃ699i ÊÐÐýÞ;Þñ©NWR¯8¾µãY ‹ºÄq9ÊH7`ìñq!ˆŠKžäÅ¢G…!Œ~Mùñâ~WPÔðÂÄÇ¡CCò…/|A®¿þ;o(|\áó¿ñò¡}ÈÎûÜë†gŠ76;·–Ð)Ý7#k=TÚ½]-­-òÔSOË?ÿó?ËâÅ‹eÉ’%²`Á™;w®tvvÚ“×[Ì>Ptww›U¬y––¼Ø‚—ÀÕÏúo VÏÑÑQ Þþþ~×¼æ×ìu`¿ŠS¸À Rw2V¢BІBì2‰%¹8††â üçåÐà¨é9;µ¤èËQ!³ùñdXæÿ®ÍyÌo€sœó•s‘Âsê$öûû¿ÿ¼œwîK²õÃz}ùÀ‘OŽ¢ f}¡…írÅ•WÈ“O>)k×®µ†äÄêD=˜ªŸ}Tšûk@ãf…¤°¦,¼yzÓTÏú=½u`PhxÏž=F—Y(/zÑ‹WãÜñnÈ—+eÀ؈!*ÌÃ+|œJù8½‡RÍ] ³çÕ&¬^lËX­uçÈ lÔ,¿Ì,h8çë®»^>÷¹ÏÙyjÌ9IðrþQiÀ`wøìßø†üñ‡})…¾/?¡ß ¤Ö6F*× cr͵×Ȇ äØc•U«VÉüùó3:°¦ÏšNçIèò Jãê½ú7yppPöîÝ+;wî´ôÙJàñ eQ}ÄY²"½4Ñš6Þ¹‹œ–.KÑtÓý޾þJeÆèˆ1LݦԠY©6k9Ú% ¾ÐäFBó¾ 6vÑEoµ÷ à+¤À8±ècþà3üyÝÕÕeŽïо‚ùÛÐW\!ÍMÍ Ù¼¾÷Þ{ª­Ö“US£Œ‘ ³Øœø¥—^*?ü°5:¼ Ð0.„.A­­õa®l‡k°¢ÔÅ ôm¬¼±ü}èÐ!«8p@Ö¬Yc-ápHWõ†P:Ô¹¦äu4겂NîêÉÕjš]h©‰óá8ð^“õÌ·šTƒ¨³ðÇæ˜U{¿f¶ä¾U«±¶fXÉß knnJA]aRz*á¢Ü9Q)©Ö;üA(nb‚ðÇ?þGòàƒÚy›™%{ÌsX›O8á;‡àGyĪ”¸ÿÀ…>Ãö›¿ù›òÉO~2wÎÍ%%ò­Œu75ƒŒÂ…]wýõ²qãFK¡¡³°>ÃT±nÕ=óïžž/•ö¹‘ÊJ*ýš.Ý»wÛë8›ZJ%óy5J‚4¡ÅùfiRy7(9ÀN§ƒ›¨««Ó¨2‰-µ-PàBÆEMKfŸæ1´*„ ‚VOp,¨"XGG‡ÓºÍÌ•¶ôïÖô»Y@»s$/°b6ô¹¾(@¾ jóæÍpï¶×ðbÑÃuÃÈ iú[¿õ[v^ê{„{ æAŒÅ6ÚgI.vE>øÿê¯þF®¾új;Ÿq=X|ÀØð8÷Üs­Êè-odÎRûÑG­Qn\?æØÊ'?ù +‰C ®F>€Î qTW«**6“êúÁ8Áëo¸A¶nÝjô•+WZ­õ…ÐææÎþ2u`í6rÝHZ†ôŵÀgy¦]9K{+ÕØH5L XH_ÐfJ¼ ZðâzV‚–›^Ô|ŒE¿v¥oˆ™KÎ…˜ßÃù‚vâ5γ¯¯OvíÚatvv¥º9Cëó¤òì‚>Š÷Âo¿ñMo¶çH{î=^C½Z¶l™µ÷øî6ÄDÀž‚ ‹+ç|òÉ'Ë7¾ñï £ŠŒˆS³&VЂ蛤4bDYÃJ·iÓ&9âˆ#ìÄ…¦™=^ŸuÚg…v¥¯O I`7pÕ¾”ÊX!1@Û·o·ƒsæ™g$Ô).cÔ ¥1†âйéóo%6“즭-‘²øŒNl g¸íu­ï¼W>U"Õ–·¯ŽÈÓ€u%<é7?08¹1±·nÝl?Ÿ3§Û€¹£Æâ(™Ë¨aÙ"v³w=á:^þòWØãa>À¸Üksóܽ—X8÷íÛg\@ áÞ“FÃÃqù嗆뢑›Œª”u鄵øòU ÛáFºâJK }‰ÅÞxm± ½ææ™ûPg Á+ZN~Ü.Ð5PðLS›8ï¼sìM–=ò”Ö)Ó«¤-¾_µç5³Ø@7Ľhq?qýxˆQcxfD>¸8iÐhcZHbúî—;‰òÔ,—âëïR-Ò>wžÇ@ÅÄžšš4LhÈ,¢Û,hh mkk­ßU§²çú’Ë Î묳^lœæHÌq.†šMj¡Àë†>ŒóÇksøæ›oÌØ4B*Š¿8b­¤N9Nj°†v˜•òÖ[o³´ó¨£Ž²Ô«ª¶4»z¯Ï/ÌA>Ü„ô< ì ¥¤` éù矷A)gœ~º½éeÜHÁ h›ÂH{¾Óéyš¿q¿°b÷ööÖ\”²m&°D¤ôj®¥ –Àz±sAªƒaB1ã¹–qgQvmôBñv?£á× 7Ƨ¯o¿“žž¹5]”€I€\ɵ07â÷Õçó;÷Ü—Ús¡@ÂyâþCòÒŽâ»÷\˜ðm۶ٱĵÀ0|]uÕ•3÷¤D¤h6˜È¦>pŽq%/ÃwÛm·Û=î¸ã,½À ó¢uÈ·Ãu5úpc¡õÍ׆å+&hÏš5«åôÀ± ุZcýHÆ‚LéOi jŒÅz-%-¨%AKãÏ[K1XCVd½o®í|'Cã<’ûp2êÉLv傚cÁó§wA³(,þxÀ† ÷cýúõF"¶¥aºI@üÏ¡ó*ïžòKà×¾öõöw©â7èb$ûáøa#x9ϱÿ®]»Rf‘X¢1žP5ðƒï›ïO5ìï®Qè{î¾Ç8¯ÔL•¦µñÎ;ï²øè£¶¾`Æ0k«¤K‹]Ý—û»ÙJ>½QG½¸ôOÓ4=™ñZë–.] ps±ÚoÙ²ÅZÔÏ8ãt ž:ÿ`®ÅÙÏ·I—¦«3ÒÇÃD\ºt™¥jx«46}3߉3.:F‘üŽžÔ.+Ñ€s^¤çÙÜßÕ÷;h}^ø צ¯—ïá;P'ðþ† ÏÙ}Àô´{§ÈåêhÀûØÇ塇ªéÀ˜£`i6íÔ,"#Rfž?Á‹óØ©CSH`ŽÁý‰Oü‘Z@ËǤÑp‰8JÅ‘C‘â&ArÓM7É3Ï~vHUœ#Èâiu`‡:ÄH@ªA7Üp½YºƒU>üµ³3Š™PÊYUá׺£Sn¸ñyúé§­ÔB(4/ÚqõBE^•¥Î:lÒÆbÀ9À‹å€Ï8ã  Ê¿’gÞ³‰3À˜É5¶áx枬4j®›:WrNtúhq_8i\ph)¦u1½º@tY‰¬®ÿ7¯ Á­·þíêˆü>Á©ÁLÝžézd¼/2m-ˆA˜œœ0ón~îrNå¥@Fñèfn¿öµ¯µŒÆqq.}Ù¼F^bèº4nÑ|â‰'Ê7¿ùÍÄ8*åÃ=µ¬z#Õ5H™ J(Q0n¤;ï¼ÓÒNêÀôóF®~™=iù·«ÓG‚8 k!<î”SNñº‘ŠÜFqÒ•*9þT²P`ÒÁ0†ûÂZ,؇JgNP :wèBÒÒ™ìEûs¹¹º¬KË5ÅöY‘õþu¡¶*ßÕkUZ:º¦ªúZµ»‰ïó¾p‘¶ò5 ^8î³Ï>cA7þŒ &ËçJeµ áÂîºë.kø€—/_nWÂçxŸ¾«Woßj^ìû‹ƒ.#7åЕÔVZ±˜qê)§Î8£èHk%O.h•.u&.(ÚGªÁI©äÒO(´^«÷Ñj„ RWÊú¨´ÏÒÏgwŒ|~`—Rës× åÐlCÛG4p "¼æ‚—äoOÙ¹aÒ—œµX—ÌŠ,“üèG?jç8…ÏÙK€k#%U¤ßÿýß—|ä#V-ËÚ<Œ N#ñ¢c‚,H_X ¡ÿâõ˜Õ>nºkò~‹61aVãðkXk |Е¨iªHÀiÊK0k:©Õ -eiØrY†>?M‘µ¾ª¿£Á®`|Rص4»º®v§¸û$Á)Yý\3 M³ù¾ nìÇ÷äÄcû€BC~ú駬¥?Ñ;3Á a ›Õ™ñùóÈýÑɵ×^›¡Ò¾V:<Jç|àýò‰O|Ò,(ûE·’㹈ýÙZq-ðÞjæã¨>ºLŽ«5™›sà 7XK4¢±`%„ÁÕƒuÒ‚~vCðÀnB(ˆƒ`½ÁÊ@ ÖË^ö2±nŸ ®”¦ÜAÏÅ* bŇ?—ÑR¼¼6N0e(Ey_´ÅU[)a´ÄÒVfWZi*Ë ¥Ã,}ôÙvˆBûXŒ·BE­_®´^Pt„§™†¶JÓ2¯Õ‚Û†œ*&C huâßßaç%Kb­.«ž‰ñ|›”ÿ/ÿò/vlu†;÷p¿±ÿg?ûYyÍk^c„5—W…3Ïpšø¾{«‘jÓûŠŠ¦+D[{›+ªrÀ„•+ ž„eÀWôœ§ûæ=Yª)…dP^d™à5'}ˆ2Û2Rwl<ÉøÁ÷0¨-6Ò<êH:äNÒG§5˜9Q99´›Iƒ˜”[K0×}äÆ(û\pzŸ²cæ£éÔ:EKsþ¦sˆ}ø€¬Õ-ÞC½RC <ùä:û7€ÅðÔ¢ù©ó‹±?è8ž?ÿùÏË7Þhžz±ÄÞä üã· s)£ÎdÚÿä'hø Xßy×Õ(àF*jæ~`oT‡¹)ÍM5ºT&Ìp¶=‹´{ Ž}çC«O}CšÚ*ÛÔ\ ¦°RÏ©m<³ÊÆ5ãö…¡ª] ÌTÖD⤣t ¡ƒtÚÀàRdúE]ß³¶8ë íô°@AE@¨(â½áóÆ{ÔÓXÏÛþ&%ž!Å ÍÀ8¼ƒ…*Tˆ>kàjý^°xž¤ÉîB§ÅůyOµ~Ìßà÷!©*AwwÏÉXª]Éç«G Ú‹cA/Ƹà £\¸~„ãÞ`>ä„ZF8çßF¨*%ºŠjã]ºÐV(ð+h% Èhª`Þ íH‹Ëꛓ×9*’¼"Š&+[x¥ý©i|2Àº|ù ;1\N&mXÑÑRÚ§©« XxOOLJ6WïÕtÛ¥À8D¡N7&&@ªi®vø ‚EìÆÕ¿qîl0bÂò~ê©§Z¯„hâ£Á®Då"Fk³V5\ S¡«IOßVqnxoݺ'ìâ“Í£Ž‚F%_1€lüw¥6w’±Šƒ™QÅ Tò£ÈlB?\D‰| +ª–蕾A}ºDïΪŒÅÎó¬ë5SâJ Þ·:]Ó™!YO<ñ$;x ¬ý¹umJßÄÓ““Ÿk r"»QIøMöþûï·EùXJKRUŸj1[ðæ=s±áu4³}ÉK^R«2J–@)ëc%”ʉkìã÷õ¦ ¹ q!!Áyäa«úa&¥U±ôÇ€×¶hÀÛ­øŸ£â,@U‘Ã1Z…ªÁç°.À£LÓ-/Õ µÜ(à \å¿|IÖ2~fæß¬¬ãŽ;¾F™I“I™;ªV™ÆÐz/%†ÎÒq V:¸ô+„±>þøãVÊâ¼H CñÍ¿lðçunèŠÚ˜¤u~.n|í2=•¯5Ûák&Hà8xKà6 Ë¢Z1ºzËrþœËóùJù”ÀŠÃÉ è¤³‘2«G¨2G0Äné¢Û±¸äxÑní¢P¯õ..Y%² ùZB™©5fuš®®9vâ1(ƒ `åÊÏè.N~Fpòµ¨ \J­ÿá=Ðàë®»ÎJ[èsnqñ¼ä„ÿ[à ÑoPWdæ \`"˜]©¬Z´¯pÁÔqÓd;ÌdÒɼŸ 0Âá÷ö‹…ùÇK–,³1ʨ2øáoãïù$RÚÅZ#=¡2:gÒÉ—T†v–¡¥qÉwõm."ï{e \¾…g6®©ÚD«&+;¬Ì Ô‹."J:M™øÁD mPÑ;¸šnji¢ã ¸’¤4a®i™L¢_EðºÏ¸7 Ùˆ=ùË_^cd4 ”ȤÒ£kOàk‚œîL†µjJTMm3Læ13¾K̹̫‚$´º(#=‹$oÔppà»ïºËŸN˜/’ò©tQÙ“‚^¼Yc”O'( Fb 3*ƒk…O‹ÂM‚"£VÖ€‘GÚ`eè˜\ 6“%(1µ”ÕŸÑÀÂ{ K@ë× ÈwÜq‡ý]Ýìíÿðº‚×}ùMoz“u÷¸–f¾Ö6]i¬ÝHZã}ŒÏ¿iU‡UùÑG²lÆ- œ±¨‡ÝKÅÒ³\,ÇU”#ù‘|Ï= WÜ.dÌÊÓ ÛiÆyî)¹ÊÍ"àç“G±×MÄV+Ç‚\ºZèÛ¥4 e¦4å>:~WÓ8NB}äú<ônÆÈ T¯”³/“8ТóŠÝc»]6¶øË’Èø èÊo{ÛÛ¬µXGhi™‹mZßÕ̆œ­Qx,üͱ á{øám—ÁÞÞyµE³>ŽºŒ*+=—â!a(+°v<{è±Û;(/¦º‘›0+©:ËZÔüÝĸ4UK/<õÔÓì Ó7¬¥+éW~­»Q×uÝ"Ú§Ëý5¸/¹äyì±Çj´¯l‚}Þ~8ø+± qâo—¡my)…d,¡Äè»J"ã>!¾þï|gÈ®Á´š÷R±¸(шEcƒ?°@r‚tzÞ¼^Ûœ,qYu, RèF›“‡unPè»ïÎX÷ÁõwUw/Àg=öUóÈö™Ùµs·üðG?²]Î=÷[®æŽ;î”n¸ÑN®#<ÂVân¨÷Óþâ¿°–ÃO|âµ÷Ñ£õæ›o¶ƒõÆ7¾AÎ>ûìúÕ­ŽÅÔ¯8—$×ó•¼gœq¦PPfJXL~JJÝ^Rª´KSøž/ØàÖ[oµÆ)N´Ã™ø8_DÄÁ8 K¶áVÖVP¦z¥ Âáz^‰Œï~÷»­ËG뺯¶V¼® ûè"ô ©¤.ÌcbPh ‘š˜DnuÔzC•uù„ivqrŽ»`d×Pà;ï¼£êŠß,Ž=ýT£\]UÌ»R7 ¡g(¿ßöÖ·Êë_ÿz”¿þë¿‘N8Þê §žzŠÍÁÔÄY_|ñ%¼ˆ‚ùò—¿dï©§ž²]ãðý$ÒèyùË¿ü¬ (sÓô Œ'U90ùO?ý »ò2Ÿ­i2¥+ß×F,mtÑOKoL$\Ï÷¾÷½ZÒx£a¢<6$,A˪EMÈÊ6% ×w¾×lçƒÙ\#Ï Çxõ«_-¯xÅ+2阩6 jzÍ 1XÌVJiö9r-ÔÄðÀÄxÏ—}T<ÏÊe?ñP•JTd0Fa÷2n¬Á’›ã䉿ÊôB­Üqùó?ÿïÖm€˜é·¾õ"yÝë^g?äCŒ)Ÿù̳«ßg>óéÌúùÏnA w@ðÅøÛUïßø–íGóå/Ñ‚àsŸû+sÜ×ÊÛßþö~:º«fjb!¼ðÌ3_dÁDzÌwã–)…)ié÷Õz-¥€»/& 2¸P“RûnË>ã| ðRåm._¨G(1Tð…Üg³`‘V#øÒôšú°–¡šjÿ&C"pi¯ÀkŒ _° [=ö¨¥ïøM]*j¶úl¹¹Éø3ÍÍÊýH9ë¯OòÖB£dïܱKþîógœH`ý; ‘?þñO¬á Ô+U2ù[ä+_ùŠÍú`¼ÿw÷y;‘ÿçÿüŸöõG>òQ[Œî}ï{_®_Xûä’ÂâöíÇi§n]yàu#®4¨¹?)³ÏýÜéŸüä'5«k#ÇB,/ ‡34Ò-’jGÓ(E>w\™ºÓ,ŠPZW/B$Â5ßñŽwdŠÐH¥ïýóÚMÀk·= Tmp,°†‡~¨Ö¼/T¬¢È5T>2«0t ý÷fúõ¯/)šŸxì-H¶p?C0=À‡i¤Yñ÷o¿ývùÙÏ~f«`¼ÿýïËè3e]+ò¿ÿ÷ÿ6zô.ùû¿ÿ{»Ïßþ¯¿µ7ýoþæojÆ1>ô¡æ®h”¼è1ãΞ=»åØc³©€:.™ƒKª¦CuUYCzæÒkœç׿þuüÞ(•Xá†n®3’BÀ--Ë:¬1¨.mÖ@,³PÙg1¸ÌotLÎß{ï{ßk‹*:>œàÖ ¦ŽLWŸ1îµöE3ÿñÓˆ}O\L­köIä’P9Ƶ0³¾ë®;²Î‹F e y:ºeAçûÂþA.ºè-6Çð¡‡,<í´Óä÷ÿ÷ÌÍi è ‘‘À_M%ðì;_ûÚ× ]oôà¯):$ú§Ÿ–W½ê•–^幑÷œ´Ê±±ÃË–­°þG›¬¥­)?×á‘”²Ú CCÞCÍ0Td ß¸¬ÄÅd¢àê’±¡Ö3îC‡ º¥xÜô¢àß"¡.],¯èœBe×ð¯~Æ=…^|ÁÔî¹6pÑWÏín+~v ìCó(uQ 9ïГxô2z­ŸfS0…Ú†¤xšÐ—C¡£ 03á®5ºJ–Ù+1y›¡½W3bád?ý™ÏXÔ[/ºHš[JyÎ9çÈ÷¿ÿ}«ó~èCH¥DdtݯغU‰Û ‡üà‡6ÿ:0^ÿñÜúnCƒO)ô°ÙktÐ9Vj€¼”¼ÈÚÄ}µ¦ãšñ|º°07¢ëâ˜=\YJ¨~˜OÂê’½nó²(dØ ¹®\ÝZç׺ín|”Ó-¤s“q,‚¤¼z1ñòø€•ÊÚ}DK³1?Ó™KTb~NÊŽyŠr=+V,· ÍLD” Ê|?h8§^×NkbÝs•Kô­rƒ:<îüÚÖ­Ûl24t`±†îù'ú'uÇùâÿÁê·  ËÔ¿üå/'þâk A…¤ÍáP¼ßþíß®·ä)C `µÅñÑ*Rë¬:Ÿ™4Kƒ[ç©j}—ÏœL˜8O0lÊýCâ‚hàºt9lÁ ¯Ëòhªë;VQ“- Ý!¥ĮީMU#DÓ]sh@YCEþ}À°þàþÀƬÓ&ÁÂù¤Î´TSºÒÕFk:ͯqŒ â⡳“†Û›é…²R}:Ï—+åCã@çú‚È(ßáÐè ¾ß––æÀÍ™ù.,ÙHÈ·>Â(ÿ1@ý²{÷K»8¸šzqqðÑfR0 ZZ49Ñ`†a +¶UÞ3¨:ìÒ° \]ìÎ-讫@ê,&_a÷"ú‹KåuA7M¥]0ëpÒ< ó8WHÕP§J¥†…òHÚª¬C/I¡éfâ}×1Ó´c`Ž`±gQ;T.EõE‹×ò‰ëçfœŒQÎJí–Ä­••uó]6âNÊœPÉïû@H©¯Ž(7Úª>e°>cÉ5¤L[°ïرS^ô¢³m6Š®ÍÌIéÆ+ër§¼ÚXEÀHk¹[#.cB@ðµYõMrJ· ¥®7æv`tNytܲsi¯ÛRÃt3]ÌÀ]Ptè¦ûûnEQÞgŸÉhþ>苌jF_/uk޽ĤÅt7‘‰±‹ Z U8`™žICŒ²Lëó®VõÜ ¾l>pb…öôOiÀµPʺ‹7º+¯­D=ud0åÕiö,(Xœá;]¹r•õIëò§nÙ-]5EädÔ–j¹¹0¬1šª¼Ðq‘i¤÷} Át0ˆNü×ßãyú«»?ú\;ùQA‘7„R/º½¾t•i•DÞ-jï¶Au;Mâ=PdHã"*ÍóC–Ó{ÞóžšdeO_ªC”ÄÔséæ5QrÓ’ÏËt³UÝ’RÊsS5Ïçí8l"í±<‘XÁÉON(ë#tC+Ë,ù¦yqÊãD¹ë c“¨155-/~ñ‹kÔ˜«±–ºH·ˆ÷*¾óïX}·Œ® Ióñõˆr%®¸y­W4µö}î–ŠõYš]«±~­-Ü¡~VºvµÛàŽá¦zqѹÒyUFy? ùÜ….¤#£àà?øÁiÈâ˜rìé3&…Ö›,‹ê Þƒ@Ø»^Œ¥Ö5XÏf¢¯ Uzî×g'¥±ÐóÍPåŒF@ÑÿøãOÈé§ŸfæÙgŸµQ+F¸ óÏ?ߺz6oÞdo$6DUá¢A‰Ì¹Ø0F†‡ÕyÁ‚^KqO:éDÛÚ4ûã&ŸuÖ™222f­€Èɽçž{ ¥iµe`}7k†¦NYŠ «3ú¾dZâÒR˜ƒ¡)4'” ^„‰þð‡?´ôª¼8oÜ#úˆCR— Õérœ¼œ\nyY_«NWv+U†ê@‡$šûwÈ…¤1Úb­ýèzÑÑÝ*\ZíJcÌ óBE±/ŒZ¨©suåP¾æ¹‘.ë2F4jÑ}ˆÏa·hnNº'B/žQÊ©žõØ‹ â©Që^$ôÇuý½õ fxp-NZú¿ÿ üã?~MþìÏ>%÷Ý÷€ìß·_Ž<êH[Ý4–gÐÄW¿ú|Û„ þÓŸ^l«^xáëåÒK/—·¼åM?¶À„? FaôÕ«WÉž={ è±úÆ–-[íï¡sàÝwßc#ŽXL÷Âb°±R&‹Âɶ+ Á¡ª3\´ÖŠûë ×Õ¿ÿû¿—’¼0TAò격n(í{ÔÔT뽚ŠÒØâ±\W’Ö]_ȇÛ2Åmyª%¯–ÌšuÈ:ÉÜûïÖøFô\™8ïã?ÞJb6—#ifòŠ©$­v 0S^·îqk•Æ‚¢Û¿æGVE^{C–v{]L°Bß•°H í„Ͻ”0jã ø*ú¾à½eK—É&#qQÁGy”,_¾ÌÆA£úAÿ€™È›åïx›|ó›ß¶zV±¦¦f9óÌ3¬õößþíòñç¨Ò€ƒ½1‘Ä£rÍ5×Zà\xáÞU޵¬zØÒÒnCïÜAÕx´.ìö%Ön&$_@ç-^¸¿M¥'®K™u÷=T¢«ßÓz¥î±«ëH—u½€v›–¹à¤áOšè" ZÐ1漟n‘~ ¬¯ÈJMÃWLã»4^iZíúˆ™ð ›˜Ñº÷¶nÝlçhâ.‘?ï-Ž«66R#àP¯Ñ(ÊŠø 6Ú AO¡sÎy‰<ôÐöN0.úˆµk­ž·Î÷õ¯\vÙe¶ßÌÂ… ûeíÚ5öûo{Û[íñn¹åV `¤âXÏ<ó¬½ÁHîÆw`€B,0òtñèêêïÿ‡ò®wý¦´4·d=ZéF|w ÎÌý$-uõ^Ÿv ]¼'h©ú·û·¥Òå°ÀAúênš2ë@­;Ò⪻3¸ÀÕÆ-W×ýUxèB~n­gJ9·'”6jQ:êPVM©y¿ð]ÐXWõ5ˆG:ë»Þõ®š[óB‡½rá£î뵩ÅóÆ{;vl·‚#¡Òm*¡8ï·¼=(ðwÞå8Ï0åú©è·Ñ3¯' —Üf$e—à˜G »{vï1y³¥»¸IÈûÅ Ù¼y‹ý.âX)¥` åET Ü+XÑðŒÚ~"œ çK2ÞG£“O>Ù‡;Žyüñ'ZŠãê½Úú¬ßs)¶;°üÉŸüI©°Hèïð ´nOdP×7æ~Zwt)µî›- þ«ùp ùéB> »}¤Oî2˜Ç8gû×Kcû oxCšÕ²´+Që¾®>¬©4Þ{ê©'­ð‚mgÆú^T[®‘¨­À÷Ü-©£}®õ~«¨”U¸œ‹)nü"œò;Ôw35„êV¡8¥Î}–Î ¿7D)quïm¡¦$àû0B¡M¤Ïíâv½x‘-¥{$»üt‰J]mÒù«¸B£ÒÖm=Ê&ç Z}ày³ 6±3›…CKZ-‘5e&¸™cMiÌæØ®MSuÔµ* ÃÄ1çw~ǨcgÕÎ.ôn@u䕯>{öì² ¦Uz6Õ'ëšeé6$ðY{â–gÞ/ê«.DN¡ò;*µ¯K÷g(n” Ø€ÔƒáêÅ/~‰•âEÔY¿§#‹\éüÉO~²F‡‹$¯ó€—ûЈB`2¬O×ir)5W¸œøì,¯m%þ‡,Ô:%½‡h±­oâU d‚–@öµ˜Ñu´5 ’X·/õ¸p¼?û³?³Yh>=˜ ÖÖhJlM¯¹/ÞK²Í:m1¬Òõtù‘3n£ ¥FUÊ» ËÊ– è7bŠrÃ.£`uÊ2~³|€'YFã6EpÁ‚…¶‹–ªx¤ÉÚR«Wb-yñú«_ýªí‡\é‚W ç± *]ÿŠz®¦H# 'Ê—Á÷0úé²:®MÓÜ _#4×€äöü˜™LP̺(‚>?J[·Æ¶ jmýÖ †æ6Žwç  Ï}îsµpI/¬Ù”–¾šJÓš * c&„T;6v%žÔµ*ß„ ‘ÀeµfŸ™»8#*UöÕ]iòcBŠÅ#› ‚@þé;Ðg6h¸"H}ÔYnh@ë˜_”x¥»¨È`…æÒô×jðºË5…椠®¥ ­éŽƒy. LÔÐR=šÏË>ÍK´¶:k’ë?ó™ÏäÆ8càaF½ŒÒWÓ0mÒàe´nÚ•G™q,H5ÐtZ­T€–M§I“}:í/û¡é6KÈX䨱žn+TÝ`JgÞbå¶ž¡ÕZ³óIb.(2 VF QitNDÁ ·4®N%¥ôåXêeÏI[u÷D½XhýØ•ÂÔ…Üáþn>;õ»V1E£;î¸Í+}m?‹¬ÉþÏã %:\®Çõ?û©…o¡ûö÷0+Þ õû–•¾nq6ýÙEW]uUn§Ä6#´SƒWŸ§ X-yu`xq.˜ìIe‘tH.ºkdRö_à–2$1tw $®ú:VòîƒÖƒ5ˆuζRá½ € 8¨W!*¨6ôa.ZÒ»€å“ð3Ja¸ñÆÆFS]¸­®Ü“Î×s0I%Œ}ö¥¤¤ŽÀºáwTΕ« P G‡#µê.Â)Chåöí;íꊰÌF¤¯ëóÅ{úЇrý½Ø…ÙI›µÞ«Á«i3ß'mÖúThÒBêRÂCÒ¸”º˜(¿ªÀõ:0S±9: =2kÄõBZ…U´¨–„à‚˜Q>U„–iº¿@Û±…\KØÍP\Q§ȺA¬£±øûdY6¬·¬ ¯¯XCɘ&ž£‘À·§8*ŽÁ 5³“F7;«9¦k•JØ­¡tOyjté„H(H_] CKÃ<@kÀàzVpÆk·“& ½—%KµÞK# Aêþíëz@³6@‹I‡IºLiÿ_¸>‰Œ{ ¼RCJcX‚}¥e} ¦ÔsMƒ—¦Ø1~‹½.Ïã«r‰]¥ƒ –Â:‘R˜Ò— FaC:x{[û̼ÌX!?±ð]w…ýÀ!É[oTªO?Œê0@åû¹Jé,ÎŽ"RhÌŒdŸôÕ1Í: ËçF Æ_üÅ_Xj2\Á¸+0Á«ýþ¦Ýnà"ðbr ÇÂyPb¸R÷¿òƒ !®•­\d0L|\/ØFĺٜ.*H@»ï“ã5udÄ „h4Î qÒĺܰ^¨¹˜èàðÏEïo2ó ìjއÏs#ùýÂ6ðö*¬Qaž~YÊŤ­`Q1—®ky’ùnÀõmLqƒfbžÏ±\»ƒÜâe:÷WK\ nÄÆœ!Ã+jèè&}œŽúrÛŒ†ü xÇÇ‚„ãàz^舔ÿÕÁëÒjö*ˆ4ƒ1ŤÛ€ßØ7/Ýþʺ†™66éÂ{¤ÒôY#R ÷6䯨Á­Ðé Z 3QwDÔ æÜÚaØTGG»,^²¸¦:•uÓe‰qM{ò±í§ÁeC$CAõ®oiZfà“Á@™`áÌ3Ϫ Òp#¬|•7tM,ôæEáy¶°ôI`€—ÖIGhêì3Ziß®¦[î#©±´×“ÆH!ªþ_®;Q1Ѓ¡ÄxÆ}Æ"ãVž‹I/Òz¡¦¤vë{ÄøR1”ô€ÏQ YKº?U!]ï‹–g]Ń:1ž±8õõí“5«×ØÅ8ª40–)nª6ðII`íîpùw‘a*œnXÆ=TÜîÓÝ×¥á¸VÈ?>ñDäû.« › Ú¼âõÃ}ÀpDx!™m¥c‰uÖ’î„§´õ™‰îׂh.’‡àÅ ¯+;þ¿ú ¤h5ˆj,fÄ!ë¼a—J»ÓHE*Å:wˆJãØˆ€ ‚’–àuWZ_ÖuÔH™áRB(_A>Ÿ{ØÛwLDIà€Å+/¼®ŒqN“¬ËLá¾3äþþA9çœs3Õt·;_Ô•+}ñüðÃÛÆk!Ý6`mu¦å‘+2Œ²"¨}ƒ‚I ¶/& ÀûËÒwËôΣs¿ŒªZ/†q+ß~ bª¾‡kÈ¢¿XÓj7-R'cÀ åÇs¥ðïþîïfÊÑj‹´ž{:ØCƒÏhË‚l%Dg±ß°_QÌ9X¡ïHHë«7NÕ—– 6ŸÊ¸vó£MЬÓ!Iïc`݃”:á„ Wn)U ð2º/~ P¯6\i/ÝDZ×a•õ>ìIkÃ9¼ÐËÞP*Úá‚–¬ ÑÏ ï`4´q?&´ƒöÎb£%\_Ï h “º0AŒñ†f»Q‹tXÏmÖ5ª `\#{ ûî¾÷—ù—µ¾Ñºy8iµ°Ú˜Å*¯DöÓÜîžll‰=‚ʇ9à[o½¥š`#=ÉJ”q åö=ŠÊ­Ø!·T2±£BWQ6Ñ!K¥1q0¸ Ïè°€Au鱸áK!äê À!݃ˆ+&Ù'5*§%.L½WO$×€ƒ &Ë¥Í/xõDL*Fì± Õƒ¤Šsв5¶#õ«J§±ÃŒˆó…~Jµl›–²Æ-Äx í*t]€o—Vk‰ÌLKa—ãïRiœ JC½óï¬;¾Ö‹ÝÄú3Î;¸'{{çÉ ¬âiTú‘¥·¦.™!‡Ésý7ßMT&ß7´ïÌäHÕ×·ßHQëlwQ!ã•®<©?ÿÿãØJ Z2ëgH_ºØ/Ö°áæëE$äçÅäT#x±Ê¿àÕ“Ì µ*NņäI¥ ÷-Ùð_©Dªí]u´˜“¸ lSf«b‹“ÏÐ|¡‡ †ÐWÝ.ˆ‡bH^‚˜ÕDØ ØG¥u0‡n¼îOKa–’E°E^ò?¤°>.Áª{s!w¥2 ÷àÄĘ­é¦i´p‚›8¤NÒˆÕX>p0ê#*á.*ù e\Ol ×èæqÇïu¹YH¡Š¼?üÃ? ¨ÃwCÒW¯ú®Ä-rÁç‰E«>Ýïáê¼Zj`€Ñmrj‚62첩%Ù ´µ‹tÍéE¾YÚÛ"imŠ¤Í Ù‚yÊL§ÉªŒ OËඪ9÷ªôˆŒ‹LL5À0îi(ef›kØè(ª3®Dv [¸_ û ‡ôÝ'ê¨n±~t AÌÜe­ û@ŒýИɺ»ƒÛrE»”Hµ p¼wÙ3Ï<Ðè42«Ð}ä¬kÑ­·ÜšPè(r¨S4S .öKàFú7¼@Dá“g€ ”mÛö¼œ}vBŸÝ¦]ÚXåJE2÷ùîw¿k;+è "ý ÊIÝ—yµ®Ï—¿«éº«»F+ÐvR†Žy¸ÖfJ¸¢æ919.$¬aœM¬Í†!¶Î‰¤gI“Ì_Ü"½=°­éh5àíꔹ]ÒÙf®ÓˆæVƒ^ÛíÇÜïÈ\Ãø¡‘ñÑ1©NÄ2:2%ûöOÉó»&eûnè!è‰D:Èóíâz\-¢êp¤1î!&>¤06èê¸g:=PX뽺0@¨…,AŒ±…r1FPµ´KÊ“v¥1Õ«$Áá9;îÐéCîÁÌýR¨…F(¥=/'ÉØçFª:ºhPöt&ŒÓxÍPèX#“•%:‘¸@g?¬ÏšÊ¸a’n*ŸñJg…ü¾ìÃ((}N.M¦ž¥ÓÝAݼy³ý›F«™ŽïѬ¥.u\œïÁþ5à´-s”]fôìmÒ=¿UættÊ#ñ™Å¯­bØÂø¤ŒŒÉ¸蔙̱A¡™–ÒlN§µÉ~é®v™×Ù!sÚðŠLŒÊP?Ü=ý208!›¶Ë³[¦dç¾ØJfbÑNÅlLà mÚ¨…Î\P]ëNƒ>½UëÂ8A ɨ©¥0¸” ókPj»‹¦Ë.}ækØ=Ð¥qßí‰Ä÷bÇc\¶¾å–›³ ý’µbd*ÎV¢ ³.âhÆ!ÍÞÀEÍÐH~ð¹p “vuuÛzÐ>ë³ÏxE­£³`Pøìg?ì¬ -n6[hø,Ï”òºÓÛÝA?¬ÉLB¬æÔ{]£X£àÅoA·Ú°qD¦TZ£DÚÎeÎ #m×à.ì’…óÈây‹ º"9¸ç€Ü×'“FÚbXÑS%KTlnE“ß6âdBµ4Û¿;[šdá¼nY±´×Hñ.#•‡e÷®ý²kïl~~LÖm˜{ 0&jÝi$;|õ¼Ï³1ÝK¤ÒC†CºLÄ5$é±çxi¿0AŒÅú|ȘuÒI'Ù&òz¼µþG£¹Ø'])7بgnOýØRñcæÓ ]¬\ÿåàòª;äÑloùÑÌ5’ÅiÕ äý¢¡ÔI'bƒÃµqŠ7ÙÕCÕ8¾ð…/XýÖ dá3$%˧°º…ž$.h]&às!ÖÇ¢_:°76¶$eÆ Ñž½»¥bDfS§ÑaçFÒµ´"½GšßYÒ%K-‘Þîùr`Ï€ìÙ¹WƆF­Ä2ºq÷EÌ=2· ÙÎ>GbAÜ‚ûU±&Ø×•jbäjŽ#£+·HwG«ôt·É¢ù]²jù"ó½ŠìرW¶mï— [†å‰Ó²o0¶:rdh9ü©ekc…ŒZ:Z Ì `ó¹–4H)…õ{ºMõllx•LCÆ,ã¯þê¯2‹„›¥äÎ'GÍìÑGµ½Àê‚:bÉ-)Wp"Uú c-rA¨Ez‘”uìóq5*‚Ù¨ ƒ½ô@Ð+›¯“‚KŸõßïÿûk@ó¹Ž@G©ûò·Üxg´niý€A‰‘E8<Ï–:ów\2thPšŒ.ÛÒm¤ä‚Šô‰»`íY´ÐHÜÞ%FÒöËŽ­»åPÿ Œ›ßãi ÄJd®Å ¶«£Ýè¾-Òj$+$ðØð!«ÿbkŠ“-qk¦Óg€×oν³ÝèÓs;dÙ¹²zÅb£3‹lÚ²K¶lë—Ç6ŒÉs; ð&K¶Nùœ ˆ1..©4ŽsôÑG×I1l£Áª¥°Ö…iÆøÀšIìR ÑŸøÄ'ì5FëÊ]#KëÁ|Ƹµµ¶É’¥Kjs« ~R }S-Ø×8Ò#£¨0¨#/¬²Œ_Øë‹rƶ'Aï0(áFŸ{îy^_o^Ú ¦Ï¸p…"¯žˆ•µëÈ­k,ó7 ûÜji$3m¼ÅÎïºuëdØÐצ¶Š‘ºéZÖ* Žë”EËæÉò¥+erxZžß¸Mö”±‘QpASÙf#b{çÍ5’«Û€×èõ•ÄX%UC£ASû΀@N\±À5ÓiÊHPäªÙâTBcÔ:[› µî”UKæ›ß_d@6$ÏmÚ-Om’Ç6NÉÀhB©bV mÄnÔØ|ñÒn$–³[˜Ÿ±ØŒsw3•td¤ýÿßÿWÇÀ|@%µŽç­F5ôjõ*;½óÀcHN|ßHèÏq ;ËK ,ï>ˆsÝInõº.\TKtir‘þË¿‹è3¨.¾hZ·õ6O÷M “µ:PÐgã2ây ÿòøÄ˜4µ7IkO“t¯l—EÇC[,‹zÉÎ-{d÷Î=2<8 SÕ) Üv#)—/_b¤¹?8Žyß,Œ$²y®@Çšž’¡ƒ)€S) Í¢Ïl5›çiµIJµ»;[Œ4+– ß"ÏmÜ)Ïn9(÷o˜”>C©±+¤Ül%1ÁÆxN€Œ«‚±kQO§¬^²@ ¹åù}òôÆ}rßú1Ù5ÛµF6kÄ´J3^RóÁ—ðP$…ui%M£q^`I>=lêoþæoìïñØ/Žb{|ÖÒ˜ññ÷ÝwŸ-x—›ÜP»jtÛ­7WãP˜­É%ƒÝC;ò÷ ub÷çP¸«ÊÆÂ™Î(Wÿu“õÝNø ÇA£çõVNl¯¦Ï>ª¬$¾‰ê SúÎÆpÅè"0ƒý˜‘¼í½­2wí\YqÒ£{®”ÑÁ1 ^H¦é*üŸ±ôi{ü ÇH{G«•¸PPñÓpÕH[K›§&¤Š’?SpäNIÿþ}ö¹9ž1fµVšÌ3¬ÑM潊4™¿AA£ä‰ñI™œ˜¶ÛÔT"¥A {»Z ¥^ «ÌDݱû <ñÜn¹{ý¨ì6 †P“bôV# ¦A‹u±ø}º°ÛuPWNÉÎn„¡È,ýüóÏ·Õ+]­õÞ<=ïÀhtÅ¢ì‚n|«u#E‘”èv© ÿ=úkfWœÊûÝöh™²Ÿœ¯|å+ën–K§Ýâux?ùÉOäÊ+¯ o€î²q43‚\úìÖ”Ñg 6jFã8,‰Ó¨ôåùC'ß¼e³Ñy!yÛdîÞS–Éê•«e¬ßHùõ›eð`¿T£)&yÔ1GÈG®¶ 52Ï#¶,yÚ€ujrÌú}'ÇGezb<уS m˜‘ÀMÊ ÕÖÜ*­Í-Òjèqs¥YЩáãSfòOÈÄØ”ùú”•Ȱjw›ó]³t¡¬Y¹B¶í< ÄÇdÿ¡ØZ§Ñx=¤zIaH_m‘öwèàWÿÕ4—>a,¶xºn(¨, %wô\pCz5€õû2Ú‘‚U2ÌžW_®%ôßxÃõ6)ñäÈï÷Õ®‹pa÷H5/«äºœ´”¤Ôé†×yrc'l¥ŠŠ™0l YÆÿë³BÃ÷‹ØàPð"eHŸ™fæЏ–ÇЄϋ¤ (ußÙi¬{rTšÎkÀÛ½r®,?u…¬]½J&†Æeãs›m`ElÀÚÒÚ$/zñÒ»ÅïÚ¥«Á.#†Yì5ÇBDÕˆ ƈ«“ió”¥Ñˆº†u]$K£¹FGÖ°%ÒÞÚ.m-mV×Å‚=m@;:—Ì”ŒMYz :>Ç‚x¬Y±B6nŸÝ%wošCã"s̽X˜2[)Œû ]øpi4Ž C#Nݧ„ÿôOÿ”©ùí‹÷͸/B]·Õ ý²1?SQìN2¾ù曲9<¼µ¬„ȸk$j N:DÑãºÏÙóèùç·a…¤c3ºG^ø¤›È€è3ûκàÅŠp¸°ÞpÁê†Ô¹“ßA§BìÒ7ä2ÈÓ{qlÜF [º —Ì‘eg¬’UkVI[Ü"ëŸZ/ýF ÅQmÍrîy/– {­ÎÛÖn$À´‘²S°°Ž˜Åd¿¹¾m¸Õ©IK¡ ê,ˆcóF¬ —“ XsïŒú—‘0ôa¨Ót)µ·¶Òf¤HÔl ‰ÇFc7ûÃê ²}˜%r …b̸”h³(¢Ñ|Ö.'Ì+cJöÇ<ùë¿þkMå³j»®,KÌßÄ1îºëN»è CÉÎg-½áÌÖˆukF»åÛËDKÕNÔcYªëÂ0=¾‚¸x  A§Ÿ~f&PÞµ*úü¿ZÅMCòB¨Þ3âˆa¡ô%ÍÖýru­»Ç§ñªQË3©3$ø–­[¤Ù豋æÈ¢“WʪcWÉÂîù²þÉõÒ·g¯o5`}Åù/“%KÉR”¨ ®·q›€´–á‘!CmG +Ønésl€W§là†5bOàN–qsŸšÓh,<·fÔÖÔlþŽl¨å´¡ÈÄ©$6ÌÜÈߊtvtIK³¹·qÅHàICmÇ-¥ž0ûã8 ŒN¼Ö,,s̹?ðÔV¹ó <·¿jÃ.A¥9Ù“€1GpŸaáÑhWâºÖhJu÷¡•!=ø5¯y¼ãïȧtÔ•¦ìš>S:c»óÎÛíù§…´ÎÎ+«ß’J`Ç›W¯v1!^äWöeÖ€"Áôò—¿¢¦/ø,À¾>GZÿ¸á†ä;ßùN¦€~F°ÝGüXõdYŸq¾X0XϹQ¿/-è ÎfjH[¯9ÎQKdÕ©GÊ*ÃD¶oØ&;¶šó5Àk1Òíe¯8O–p¬Z½Â|y:ï°ŒŒYé;99j€lhôþ=æï1£ŸÍxÂèÁЧIŒç©±Q²ô¹%NC*qp/«©ÜÒj<‰ †TK äööNC­ m—&K¥‡Ùgı·ñ½´§SŽ6Ô¿tZxf»Ü±ÉpLd¡™ÄÐË´#õù…1G0ÛôÝËË¥¹0Ž #›¯=)ˆDSŸ+Që½¾gùæ›o– æÛc• ê©xFÖé¢9˜Ÿ1ÉÁÇÙ‹*nø eléR/…q3ì—;wÙUákek`i°éK_²>ÔÏV^6 Óú¯K›‹ô_|Ž@ œ'¨X£QWÚpµÓèÑ-s:eÎò…²ò¬c u^)S†ænzrƒçˆå±§Ÿyšwâ1²bå2£WÊl;<2hu^Ò 0 5[*…SàZ=Øü]5úïð@¿¥Ð‰œÐg>Ó„­º/€lŸ“L$€¸ÍèÆí­F°6ËØ¨‘Ä£ãV"WÍXv‘¿ra¬^µFÖmÚ-lÜ'íšF—5ÖF¡2Æ<ÀB™tµ¾U°ß¾¾À U†]I8\]¡DŒç—¿ü匪§3ÓòL© K4\} âÖ³’'ðR6n“¢ÔÚ…|½±ÏÊ\T×*?اkäòwfH¼wï>»ÊÂ|¯)K€5ÆßŸþô§ÓÌþFeŒ–bw?×}äJ[·Î s(€ãÀ¯¨û>a„Ju,è•E'%«NàŠÂÂÃÖŸÐgVÿxæÙgdÒü¤ïâ““•'/KÌ=xúáG¤ÿ@¬FÒÔÒ$m­²hñByÃ/”ήv6÷lØHâqK™Ô1n^” ól-ÐF#€¯쓉‘aJC' òãUl\M(t5N"³ «Z3>Úºší³1ôâé$y!¶é„ÝæzP=–Cãıñ¼öЬ]ºPæö.–;¾së!Ùm¤ðRÄ7—Õ…5fQøÓN;Í;‡Cc§-Õ8üÊ0ö…eÛç Æø¾ç=ï‘×¾öµuîE÷¸Zè߆Ñôþûï·–hÌïL¹c8ÉF¢ì†RzRýØï($A‹Ú¤øtÚp3ã¸.Ãqz:¶)„Ï?¿MÖ¬9ÂÞLYÒˆRñÿøƒý~Ù¾“v«Zj ìVxt'ŠÄ³L,#¯Ê˜,bý†õÒlΣËPÍÕçžeVé#d`×nÙº~ƒ¡ÅFú6šÝÖlÜ.]s:äØã•9Ýæ7»¬$už¶ 5û ™pø0¬Ð}ûvË`Ÿâ”!¹i¿AaK àˆ-`«È•ÚFwR’Ì@) ඤ ŽSÇFúÎ;O*F_‡ÛgÔFnµ›ƒ¬œß%G¬Y+OlÛ'÷oÚ/í™–ÃVUÅ>Âei4Sƽ¹“t÷=†¿bÃ|ÐF1=îX`^üâË>ðº‚v®´÷̘sn±sô1Ö‚ÞÔÜŒ“¨e#Ý`9T(–c³ÒÄ£(òæû¬ÉnB¿¿Ï’6ßGŽq!J«Qj0Jè$.¤“N:ٚܵ3Üm ê˜64ÝvÛmò¯ÿú¯A 4öxÙÚZw2¸H¤"²ù6£¹ÊÒgl`__Ÿ´õtKïÑkeÕ§ÊsíO?ü˜4º/ò:öhVÙÜj¤p{›tðΙÓi©5$ñC©ñ³ƒƒ¬ :0èó¤‘ÊÏoÝlèî!„^ðÐF©ä·Zý×Ü·¸x¶þ`ûŒ¤‡ª¢ÐiFRœkyks›ŒŽ'T’ÙHàŽÎ9–"C %Ô}QW³¬Y²HªíÝrçSÛäÖ­£rȨãHœìeÌ„HOè­0 •°/ –:06X -(ð(v§%»KÓu¨¦û>Îùºë®“#Íâ Ö»ñu8 äÈZÎúëÃu7—~×@Pf¿LKm\$eãÆM6…ŽÝh VW·Ñõ¯p³B]Q§ŠÍ³i—6‰¼Ÿá8j‹M¸uÿ¤2ôú2(¸!Ò1¿W–ŸyЬ2Òµeª*ŸzFFF‡¥wÁ|yû;Þ.ãFo}~«lݶÕPä2ÙÖÞjh3ª3V­Ž¼zõr›‰d¥ñøˆ¹—ÏÊÔø¨4ásÃ}dà¶Fˆ{Ž“gI¤o“Y@›Ü)#I¦’YH)J2”Rð*IlƒªYI Ïéî‘æ–¶D Z÷W·ï+z»dùê#äŽ'·ÊÝ[eËPlÃ"1ÖeY êÀâ ©†ûnÈ­™“o<R‰Å¬/Tø¿óÅ/~±R€CÏŒ<»òÊ+¬á޾`oÅW-oºéFÀ rŽ´ÕÁ™@(K«]麆ÀÌ$¸w^õªó“¾2ÊŠ—WÀÎ0:/ä¹tAé«3\©Àì^ˆãÀˆÕˆþË®zÏ¢÷°9‡ÎÅ díyçÈG!ÛžÛ ûvì²çrÞËΓ“N=Åú‡a¸<4(<ò°lßñ¼ÍûmnÁ½˜H2 (-ì•…fÛ¶u£ŒŽ YàZÉÛ$ x+¨%¶e3ua,’1%°9ŽÑ[¡»Ä(³„…ȦRÇ3þàÔŪ\g¤pg׳{dÎwĆÇÍX–Ím7‹Ì*yv÷ <¸y¿Ü·gÊHëN›nX–FSà`ÜsŸ?8dÓpÇ’‘¸Ü”?íJBH¥ÛÅÃG™ÝgúН¸ür›Ø_p-N>bP£Ð6ÆÂÛþ3VI¾ä}ÿÄõ·c©7b¹-J‹²‘ØÿwÓ¦Íòº×½®&ÍÜ`_P‡R(°úùÀ‹›‰ØT€›v!éÁp'€˜H^€$Àbƒc•­6ÉŒ#Ð7k}F¥È5«eåY§Ë+WËÓF¯4 CÅìóž÷þ¶Õ}£¦Šìè8(Ÿ™¼Ã‡dã¦õÖ51ntßH¥š«4ϨÆQµÔàµ%d›ðBÿx[„à®ØJa,ŽH%œ˜”i>ÔÑJ@lÞ3ŸG¤Ói½hI¥ðöMAÜmtᦖVEz<¡ÑíYfª©Ön¹÷¹rëvC]§’L%6!k$* f1öØCcª]I0"ÿtÁ·Ú¿ýÛ¿ÕŽë†ØºA>_}õÕvëð†ÚºU)o¹ùÆ´ÁwägÃN ^}%Ê03F«8û½l½S ‹PBïu¯» V"´Œ É AEAóÑgv- vZÁ}À|â‰'ìyÀÔzÆ>X lá;³hµz¶èäeÅñÇËüî¹²~Ý:’e+VÊ›Þüæ$–Îx Ø‘a[ÿyjzÊf¡2åÆëͽëS žNh5Ú'àm©X ðvã¹:6ZoKª7Yð& †.\%ˆ'‘Ž8m¥0Ÿ –xF OL&6[GG—´wvê?-CÃ#6|sNsU–ötÉüåkäö'·ÈÝÛÉÞ1©p/M ɤ—<Õ%I±t6d8… Ýá÷¾õ­oÕI_ÎÝuÖº÷7Þ ­fQƒ>ÝÚÖZG¡3埑NxÓ‰®O¼¿Ô­+»SßðÛkI–PûаØ—Œt1ÐÛ_ÿõ7f¬´nŽ"ò“Ÿ´¾YŸf%J`Ä }¿®¿ÏÌGyľ»¥h‹ô_Pw0Q”v™×c¤ï™²ê¸ãe|hHvlÚbÀ0.çœ{®œ~Æi{…Ⱦ‰ÊÓ ºt8ø~Q‚w¿¡ô[dÈèǶòÀ ‰Ûœp·Ïf&¬XºÈ¸ÙH×1èÛ'“F’·T§k@&ˆà(•Æñ$$j+rÄ5ðJ|ý·©©Ùú~ñQÅü )Œ´xÂ\ggeÚ¸ÃèÁGÊÏl“‡vÉ&£Ã`É~Deõ`÷ψ­öµa)³(³g1æô\€Ë õ¶Ìáú‚ó(4æî­·ÞjǬVf¶’'€=â´0V9ŠBÁ0ªSæùëiQ5ɃݼYÞô¦7gâ’CåsBþøÇ?n¥¹Oc ð™°ë|÷5D÷ø¡‡²ç@7bÀÂo¯ß°Ab€¹·WV°®=æÙµq³ìݵÛZéßúö·Ë’eË$¦Ëôy ‘V €-£˜· û¨<¹ÿ^Ù°þY« #þ¹Å€¶­¹b¶È°Ö¬\fh´‘Ó†rDɘûÄ¡!Ü©Tž¶[¥àD È(K;môÜiÐi[ÑC7}nmm³t™Rxî¼^£´Z 5W'eyO»,3ºæãÛÈã;úå±Ó6* 1ä`Geõ`싱„d„ì†Tj†«ûê êÓØ°ˆ€ ø$0üÍo~Ó.¼¤úyÖ¿Ç9{ûí·Ù|÷•+WÌ´Ö $%¾é†´*¥ ðâ® ÅqÍ:SÉí¶ @=¸q‘0™]tÑE™ŽEyÀ®ø£ý¨Õ§}´ >Dƒ®«p¸úRž-xÀž ‚²Æyð6n”&3éÛ,5ç½LŽ<ê(Yohù@ßA1þ÷½ÿV†ô6ˆxÇPµšTÅ•Fçé*<)Ï>ó´4’ØJß ¤®¯Q€›Q±£»K–,ì5 E@³ð˜ ”Š9@ )œX¢§ROÕ@ Oé8O¦u¥«Õ´§RbФC契‰Éš€žcÔ–¶v1|ÄH9xQg³,^ºDv MÉÏ÷É]{'lž0ôÏF YÔ]`Dc±,NžìFMñ3vl8àþ—ùk¬ I`×äRè;ï¼Ãž·›Øïº‘Òß„|sšNZ™Ýn ºÐ{8:›àPŸü^%\ý4F:Ý[ÞòÖ†ùµF%\R¡<`|F ìX?-hPp à²hœ?~w“aÍm°@/‘•/>OŽX{„<ûØã2tð€t› ùÞßùÝ#f, ÿfL§Ý“ ?e_£‘Ö6`~ÚVǰҷ¥Ù‚ºðâ½2§­Åè²ã–>O;MÀ¸SVk'qÓÓ¶(ÞÄÂ5ÇS]˜~¤Ô=Yë.ÏèÁFn³zð”2i2‹Ì‚öÈHÜù2uÈc[öÈ{Ƥ¥£ÓÒh²,€I}`¸‘Ü:Yze”ùŒ¤Ÿ†@€.¯Ùøž{î¶c†ÍŽŽúŒµlê.*rÜxƒpéºW¡–£>#XT Âë¬Þù¬L0’ùßüæ·xK蔑ÀxD~HÚÆFËq€C÷ çƒÐ8«iY-ÐØ¶lÝ*ÍFêZ²\–yޱf¬_÷¸ è—eFOzý…JVjè–h9b&ž3¶ù¦SFBôË?f ÊǶ4U7EÀ­¨é<ÇÒç©‘a b}eKÌ‘‘ÈĈڊ¦’¤öMš4~ ͵ô ö—Yh:;:ke9Ýûö÷IÿÀ 9œT-€"-óª:¿wžL¶÷ÈÛv <*qK›uáe,Ñ0ËâHO>ç­0XìKhkƒ{. M¡ÝÜàÐ3îÍ=÷Üc=kÖ¬öëÀ¼¡"‡õÇ‘4ÒUÁž¾¼ƒPÁö@fS¾.•À …~ëa8Oc ð™p(Ì®È|ï½÷ÖJò4 `Û¯Ø,VÖ¼l•¬8ý%²jÅJÙøÔ“2htt€¶ÉF‚õÎ_ ÍhvÆÃÖÙÕiï]Ú¡˜ãÁ´eÓ&{_úÜd[¤@Fµ $ó7Kê÷5[«Ð}D <™HájòY <™Ôϲ=¦mù, çÏ—ÞžsÍf!‚?s[Ì z2’áäÝ´e«ôì·ŽÌqz[cün‘îòЦrï>Ã*š’–Ÿ›²Öõ!ÝzÑ:å/Ïä˜A!®»”˜=ªó’ÀwÝu—9çÑÀª¶^À)bPœÛåÃb-Ì¡`Œ"Úœg C(¥¥Ð[¶ ÕCÖDÿý‘|$¨3‚‡v­Ðzu|tÀ8—FŒ}k…^¾Z–žòbY½r•l|r2Ò4€ÍgpÅt½  âý(iðÛn>ƒU:Y/9V‰Ó¿IÀFêÚ9’d!ú àmI8ðÜj3¦¬O¸wN‡tʽoçv›j˜ÔÎJ*x@¢Ï3Ý arNŠJà¦J-0@ÝÇ5™ël6:þcO¬“ç·›cNOHOS5pÏ"#wÈû 6†^8ØØ-rç‚Ô—ÓMpáw™Ü¢u`׈õþÏÿ±ó¦¬ÚðwÜnÙRFÏ”jtýu×Vu„…›ÀetÜÈJ•É޼zíÌÇåÊÉ&Vè-¶?«nmRÔÌÌ äø£?ú#ëcõI` :u` ìê1®KÉw³`º„ â€ñ»[·m“¦6š%«dé©çÈj3°À‡ŒŽš[¤Éò8Ï9ÝÖzyÐL"¸ÍvÁ›œ¹«iÄþn±n–6PõHj8I^¨Ö6[‡ùpÅ¢ÒÛÕ!sn¶þ©u†ÆïKéó¤t›÷Οg‹Â£4ôa4DknN%°‹JSVÌPÆŒ$¾éæ›ej|Dz[b[bµ:g<ºe—ÜwÀè½æ:A0¤/T/pÊêÀÌnÂocNè&jšJC ¾cíJ]wž°–.úŽû“¸‘"à•IÜ|¥©.K;uà™H¬LîoìI&.eέ=[8yëoêÓtˆÄzó›ß\3ö„ÊÈæøSŸúT0™ŸM¤)é?t»;ø&€Ïˆ…G£¦Ô¶6ú_û¢²ìô—[=pó3O'6çC‡´žŽN9PKi3ߟŸ˜Yãd q–Œ¨ëÜn$pÒy!¶IûIª`´‰›d MÉꥋe‘®ó: hm’{n¿Uªˆ¡6ûÌï™#]m-Ö ÿ²¤›•ôM»%E RIìHàV~ø‚ÑâfëÆç¤§ÙPèy=2ÚÚ-ëžß#÷õIÅ\#ŒPèÀÀgœqF-†¹ …ÖãÉ@€‹Æ Ïäó»‘X!£¬î~ƒe—´©.˜ÙHu Q¯©¸QTº¸0£LÏ$×°¥C)`d† /|C’…ü¿>ó†ýùŸÿ¹ ’ðI`þLÿ­–À>_aÀp#áx¦PhúŽ·ý°b¾×6©ðù²Ò¬þ[ž~J™Õn$ÐÏöŽ. `d÷ôÛZPÉ1ÚÚ²¦®XÀVl¿ß6Úkݪiúà €!O9þX™×Õn¤o›¬ò Ù½}«M;\4o® ½D2,Õ´,5”ʼn¶ãÙìšJ f”ah6 ôøió›Ì¢tß·Êü–Hzz{eÜ"ÏìÞ/ NHûœ¤/€ÔH<4 p øƒDã3bùŒ€F–ŒT¡fg_ÿú×ëôÞ¼H,·.Öµ×^+sætY‹;ä\¥ðõ×U%ÜèÄK™gœÊ(Ý ƒÖìB?söÐ @Sóú×_hAáÏ. `43CËŸÆ÷ é `&3äIÞ€‘ ŒÁǹ–•Àdømä-#°©eî|YvæëdÕÚ#dÇÆ2pp?Ö_€V#i hÝõ—ņb¶5u2Ü(qœÄ56›}[àk6zt; fi‰œæZþo*}¸a€ºrñ"YÐÝ%}{vÊ@ß^+•É ð"ù¡£­Éx2­¯%æst;L¥’7чã(™C8­V0“¶Vs±Ms¼íºkd^›ð‚Ųåи<·¿_ž²ú+R¨7˜%ƒÏ=÷\¯—@w&tÇ“Pf6axi sÙ"æß?þã?fޝÿ.‰uùe—É"s¯QÙÃÆBç <­g•œœ§g°K³ƒ$9b¸——~—°/4 ¯xÅùIlOÑ0·‘NfàúÊW¾bÁåËF¾³å"vìV µ ±@ú6§Vزø],X#£cÒÜÕ#‹N}µ,[{¬ ˜s;h€÷P“уàήn$qhdÔæÞbÌš*¨Ë\MrGI¡S7Å‘íáÛfõ`#a­Žg’÷m¿Tki„°F7PÂ|áùs;­Á ÀíB!#5 ‚Ĉƒ}ûléJ¥šêÀ bHßÖ¶´õþ3cßC Z rljRîºÑH Hà%ËdÝž²áà!yz¢jCõ¦QãÞŸ}öÙÞ„=Oܬ!VaaH&6迺ݨƳÜ4h‹²‘\J}ñÅ?³ÖvèûdláÂ’F_ŸJà(¯a.PëEf^ŸL‰‘ ·ÏúW•…‹†¯mÆMv@@gt>°î´žWë7ìG?ú‘\ýõ‰ªŸJ ©I)ìž»›ñ¤õ)ý@aÇ£_·‘PJ, ˜€0L5·wËüãΓÅkO¶E×÷nßbóy››Û¬Ü5g®ð6›ísèÐH:è‘´4·XÛÛ~²ð\“-ôšô9‚NúE6××êÂ6y!N›¸’`?™7§Ãf-uàvµ7'©‡ƒ ª‚~R{l‰øš‘(‘辑 ×n³Òvª&Û»:­N<>™Ôåzð¶›­ûª{ÅJydëNyvhD¶M' Ùp¬‘Ò:žˆŒBYŸÎ ÞÐ¥e `TÑÅâ5•Æx¡S¡/Чkà2I㿸ÄV”ÇØÕüÀ¯«ÍFº1Õc†¥aC¶ª8®wAÕÑé@+ð颾äy±ÐÇw‚ øv{éŠnFˆ0ümÈ µÅïPeÞ±®Oòú¤0Tľ˜FŒ={÷)Õ!sVœ"ó:[æõôÈ®-ëelxÀ&4Ãݦ0ÇvÄ,ˆ­+il"•¼Q­ZFRÃ*²MÊj 6£X{M¶î£jàT÷t¶[ð¶·T¤§«ÍÆPCúÚb¸§ª²{çó¶}K3êt5%_ÒéÖÔEƒNˆh ÓÑn1&''djtDî¿ñÔd&ðº»å‰C£rМŒ:pí5’Ì€1†L/¤ÿúÜŽz,™–UI¾0JìEæOÿôOë:Vêy§«%0ÙÂ¥—^jÎõXk°Ëww™kbyž¡Ð¡Î ¹€u»,xÕg_©•Uð¹ûÀ„D¥:úècê2‚t[Q=€¸1(Œ‡BܤI¾`ìKó˜eWmýûX,X¶‘j”dè—Që¼Õ²à¸×ÈÒå+dç6àÁ>;&¨ÕÚfô``xtQvÈêÁÄh8†Þ½Q­‡Qd)tÅV–Œ,ˆ[SÛÍ‚Xjzpâ$á¿Ýq޵6We^w‡¥Î2ÀÛb$-¶±‘!é?¸75`Å €±ù»µµÅŠÿª-=`^·öJ#obLÆúÊcwß-]†¢I½~ÿ~ylt¨]–¶B6’NÈŽ¨¢á––-ëBb\€Íð2`caÄøìÌ3Ï”ßýÝßÍ0?]Äέv©Ï¡.ÝtÓ¶7ÛŒzœÅ À7ÑT¶RxãA×ÙÏ>\¦ñw&ó"¥ÛX a=F”Êi§žiTåk1êê7Ú˜…d! ª†‘¦>âJ^½hÐ’ès%ñ3½˜”q%þ¡Zá$ÊÖ´÷Êü.Å+–Cýûd`ÿóÖâÛÔdôà¶N[ñ±IóFâm¥pÙ:͓㼕x†FÄ0`µDF §n…{ KA5NJìàžš/ÌioµÒ·ÅdÑüé°ùüÍb%oOÊžÝÛ*ÝTµ Åí°h<Û–HtàŽ®³0™Iœß·e³lyö9é2sãРl’' ý·õ¡Ì9Ê6’ÐÏ -h] ´¯0¿ë&ÔQXØ0 ·> ŒÏÑZå×~í×2A®mÅ­J©‹Èoßþ¼<øàƒrŒYplUʦJ«Ñµ×\]õ÷"›Ñc+¼Ð’™HãBrö©‹#Ž‹=L¸x ‰øccãrÞyçÕÚ3jƒ„Û‡Õ•žüýÿößþ›5Š…\Il…¢]I®eÛgDsðojCV#%u˜»¿ï€TZ»¤{õ9Ò»úLé44sߎõ21ÜoÛr¶¢¡X{J£ ؇†l-æJ\±Æ­êÄt*}gÀËbìÍ5GÈ­¶pÅ>7§a–-‰´eµŽÅ {£@slõ×¾}»ÌNY0'Ò7É7^|ÔJY°r‰¡Ìs¾Ãràùm¶eKk{«•Å Ï2>*Ï>ð€aXCÒlüÔž=òœ¡Ô»ÍyÁ¨ÃÈF Xœp!¹†›7ŽØ‘yy>`¨JŸÿüç­îªAéúƒ9‡Ü–¹˜—hÖ¾uëkߪ±µXG9f’h@¡¯É&ô{ƒœc…±L>b~ÂCìcÐaz\WÊ6ò§ˆíÛ·WvïÞ#çŸÿêÚ éþ«¡~¬Z7Æ…¸Q³Ê'ñ pÀºµŠkѦt ²0‚Ê”p#IýL„€?82Òµ­÷Hé=æÕ²hÉ Ù·k‹ŒÜmƒ&š›Ú¬îêê¶mWÇFƵ92 FëÏ CG+5é¥'tÚ‚ú/¢´`üŠ’ †¿¸³%1VµT$µ>7KïÜN àɱa£g%:0%¯9hï²^9êœSdÉÑ«e΂y6'yȰ‰ÝÏ®—}ÏpÆèTççõ¸†¢rúqqÖL&ž¹7.„S®]{„]]YS—’Wgé8T½Bc_ Ìÿïÿ=hÈ" #€™ï£ÌEz0üÁ(ƉβF¬ÑZû ‰ï½G½Væ/=Zªæ\ö>ohì]±Ñ=ˆ:F„±áq³Y] m1À–©Øn3mQ¢Z‡A6,xmB[ÀÝc6¸ŒZš’<¸i=-Já&«Gò’wœ'g¾ùÙ<>,}F?F ¨ól¢¯ð¸|Ü`[òIbÚ[HŸqFƒ¹F,°þþïÿÞVâе®t8¥¶@k‰î‹„r:ð/˜ŸXÝò9u^ àëR ,żVTºÀ~_pœÌA†î“ü‘‹YãP÷ ýGFFí ‹Óú¯®0¥³Ö‰|ŽBñ> ŒÏuZ¡Öƒ¹ªò7ÊÐhèÛ˜ XíÐ@)Œømt3hjí–ž•¯4RøXkÀØ·S&FZ*Ý *mÀÛÙÖe@Õfhê´6Òºj¥mdÁ `¶Ê”Ñ«^ bIA,io[ 6²n%ÔÍšpS À-s#®"9ãõ§ÉÙoy‰õâúŽ€{7ƒ˜›áï«o$=‚÷ÚÒ:/}éËj€qÌÕïëÆÍ¸9Œ‘E8å7Þè•À<`JN~Ÿ«ªökƒ™kÆ@a"°GR£RÇÞ°a£ÑZ¤mâ\é¿ZÆÍd:¸ÇrÈ4Z+m¶'/@Ü\i•i–áÁ æ„2'Ò¸½¥ÍÖ®ªNN§ÒWÒl¥dk©$u³¬i›lM)uŽR ,vëêj“3ßpšœôê“åØsÏê¾›wÊ–ž4ºïƒ2¸wŸ¡ÎÓ²kÓvë6iîn–=ã}²cpŸ¬Ÿ<$“F•dIزMͨûÀ°>Ÿ|òÉuûh·£6jºLµÑ¨ÿ¢¦Öõ3"Ñ(ß§¤-ŠÀr X·Ýv«MÖº«3‰üó†+;”ð ×gúÝ*Þ`‹@ÖQ$žÞ¾n"r}üe¡vOïýûmÉÕ3Î8³VÁ>dÈbôŽ–x=ôéÿõ¿þWЕ„›‹•˜4ZûƒC€TÎ'…‘àÏØs¸)Œß€F]ì£ó6·ÊœgɼÅ'ÉÜž¥¶‚ä¡þýO&Eë¢K£;bó÷”ñøÈ¸‘Ôã‰Ô…^':pG[{­²¤•Ä’æC÷E`‡m’‚ØÚRI%odŸ;Ú[¬ñ É §¾ú$9öœcdÅ +¥{ÁÃêÍXíØ'»žÞ*ïB†÷´ÝìÚ/Ï=õ´4uVd0:$ÛûwËŽ‰AÙ^M Ðá>3y¿鋱ààûuë@s!yèÉ  }ƸÃ2ì/~ïï|§¼ò•¯´‹cÜJ.`é!°/½ô²bùrމæt!—j–BdžB3)vZŸä%0DQ®¾K`f}ÅQ))®ËÎα²æo”Ö²F¡%K–ZCš7Å-ò®:ð¹¶4‚þ„мã;lBc–Ö·\àòw)¡}Æ,Pvö\jD 3ÁN$)45wËÜ%çÊü…ÇH{›¡œý2:´ßHÔ±$®QZMíÒÑÚi-ÓñTlýÁ£Cô'ÒwÏ63 Œ²*QZ½#m»¹¦v„P)‰ØftzxA©A¡W·ÔèÁ«dÁŠ^iïl³U*îØ/Û×m´ ÃAÕ‡ûdÝ£ºj¤í„lÜ%{FÈÆéC²`ÑB+Ñ(ù•¾ _¾ä‚Çi§DÖa¸Ú}Ä $}Fø#ü¿œcZWÍÓuDæ×5×\mXÇñiS³&oÕS7EÑøª«®¬Ö §S—r¬Ê!ÔL[Q·ÛpÖ—[î1`_Oa¬ÎþFì(i²öÿb`0¨XUùŒýt n"\Iht¢Ñ4hÀ.Ö:³¦Ön\60f±p{#R˜á•¤Òq¡$Í"éYpŽ‘Â« Àº­$3úpurG‰.\+=ÛÜœJᦼ-M)®Xð‚Vw‰Ûfèt+’ûáЦm},R­ÈÀÞƒ²qýzóbZ¦;&e×àNÙ7²_6Mî—Q³/ÀKZÚˆáŠ} ÉpOÑ)ä:ƒsDß#Ћè3Çÿ oxƒm´‡sv{ûR}ú/t4®‡¤‡ŠTŸ™ç÷ Y_{íÕÕpö®_Íˎ”7Ž…êƒ¨cââè“õë7È)§œjã}µ‘BéÇz)W^‡ðŒDl¸“| f—@€ ÖµŽɃAÑRXÍ\„ú¿4Ž5êfß`œÜi»ví¶ îìµOÆ£¼¸dòԙ~_¶PAž¸ÛB%Z|÷‘Ô—ãÄò90ôqÏõÐÀ}„N ›9™‰vÝE¡€|ú/ÔÀ+–gªpä±(¯¼âŠ„BW"_<”7å¯öNþo¥¾©p½!,©²;±Ù7 Üv0á[Gذì¬+•5ØxÐhäí†h4¥7uauºs•Çû>0»T×Äï¹µ§1˜¾‹8ëƒû·¯–y]§ÈÜ9+¤½¹×ê»#Cæ:‡%ž³:«•šV"7ÛL%€ºÉ¬úœ'P6Nš”Y ÜÒ”>7Ûg¶®¥t³GXƒâ¤ŽÕ7Ëôè¤ìز̀kXªFß­ ËžáÝÒ?zP¶Nî–ÁꈥŽð¡4“ì*QFÉJPæë"Âט€Ñ†*q…1b%Io`Ã÷`ÉöE_ásf–¼Úˆ¥Y‚/:ß½öÚk¬Õú¯¦ñµŽ"µ¸š•*#±"×SÚ8P/£¶¯£é:¯Ý¶,yTƒ?’dèCÒ;wû»bBÆk¬`ªûLýW§‹é…$&ø]cŸ˜ev´n•æPçBœ;iyYƒ–v-ÄðïÙ³×Ú :Z–KO§‘ÄËdNëb‰'Œ6’m♸cG3ån Qù¡Iý-­F§m®U­¬¤ãbitkKâ ¶•EØV›´qÑ´YDI­-£—‹ù̓ûÈàƒfõ›–jÛ„ LöÉÞá=24>(Û¦vÊ!#y8F[ÑhU†:ëì4‚ u¯|L&ZÌ ×xÅãqAÐì4xqÌw¿ûÝ6#ç®é³ŽöU¡tý¿6¬Oü¿æ>$sÀJŒ¼%©°,¤‘XEåR Jê¨ 1ç MÈ3xÍd&í³`h Å™ƒC‰LÝ‘IÞ Ss©èP¨Ô,Ž9ºô kzF÷ƒ6”h]Û}`A@®0@HUYƒ–6jáûIÆÒ«[ÃÕÜÔ#½í'¯’¹Ämñ™™’ñ‰1™2RoZÆÌ& ˜«¶ô­–QIâ¥m)Xd·ï'Ÿu´#L³5-•Ó”¸ŽÒüa,èÿ[–‘£v”tõž”©¦Qéß+GûäÀøÙ6¹]¦Íß*,b³/©3-ܤ}W÷%u@ç n‚R±Ï¾l9FèaÁg ‰.(áZ›ÝÌ5M£‘Àª*¨÷Ý5§+[‹®–yDÒ ¯«æÃ­Fu7¹NKér<¾@ŽP(§û>:ð‚€FC‡`(›î– ]=®q‹ ÂùÞm·Ýf·æ¢Cƒ.v§ý¾3‚ÀͳHÓ E©ŽóhÄ”Ä1 ýÃ)7Em2·åXénZ#sšIwË"©L·ËäxÒjtÒ¹AîX 'ÆÏØ>7%5—,€)‰›lja¢ó¶¢Bôbàh:‰äš4t¹bØ/ªOþ,“Mc24y@Œì“C“ƒ²obìžÚ#mm¼¸_Zç- ^ݸŒ‘m°<‡ös™ç©.Çcç¯|àÅCªo0 ×µ>»á”.}&ƒ¼ì²Km‘f]eìÉ5ˆ_}õ•i{Ѩ ªªTèU&žYs÷(”sè;tAðbµçg®Ÿ#øC[ŸÝFe®õÙ¥ÏXhQì8p¬Ú•f§Õèª+¯Hóg,ËQлSÐì,÷‡ý–ë¼Ò´ô»@+ù Þoé# ”ª.Ö:‘¦U:ôŠ+®¨•›õ˜!€™èïJ{Ç3"È0ú|¡ÅH«FõamØÂ1¸@ºC·m|s³tFËene­t4Í7ÛŠ ]«±Ù,[?Kƒ˜Ÿq®0” ‚$Ú±tD‹eN´J:*ó î4@žc¶.#IÛípýÀš\±ÖÍj²˜"ç¾á4m0Âf$õT<*“Ó#26yHÆ„Ÿ5RwHú¦÷Hÿ4š‹-ƒ†`l÷I}·¬«H뽬é‹j“0^ú¸ÿ#ºyÿ¹€ºº/ÝF”¾šé1ÀùúÓŸ¶×„0\e¥cÜä·#!Î(:òH{¾ÞÑy6 ”1ÏPh)ƒc î»dêê„\ÊÞä£@¥ÊÈÐËèHRènphPŽ9&IAÃà^ã¯i%&)©éê¡ÛÛøC+½Bº0Vhæ »iíoÔ>dúzµDv¨¶ &A{6 ¦ÁŽÒ˜@ÆEçîݻӻi¨¯ÊJ]Y,-F·F­¶¨N3êb5·Úg©à"Û½¬ h§Ç­¤ÆßÓ2!S†~‰;8}Pú«ûeÌèÖømèv¨!Åâ¸7TOÊJ]×hEðâþ ß‘ï¡ÁÉ…™lM«6\Hµå9Ô¼Œãû_ûÚ×ì}tW:öÙuvc£±XÓúŒ¬+˸rü¿" €ÅÖÄŠ³òÛ€‰ÙõÿF¡ôÁÐëc–˜©Ä Ðü‰ $%-uØ1‹T „Åà?þã?êª ò™Æ­ ó=-Õ)ñ]Ä^7!«4ðébr€IÌÆ2íJcœŒca’¢( Êê&G07I»ðjdAáön‚ÙÍL«dè¦e26º«‘¶b$n<,#Õaûéåò4(Ÿ`ÂÆøôÙ‚—Åå õp-0Zù6mw [Ï´"&å%xq|¨a¼ß.x1¶È:‚ÔSóI__0‡4÷¹âòËl7,pX4t¯Ê˜¾UóÏ8M'ôTàˆ%ì ®úð±ß¼db+S_•(,â]¶«2¤ºÀðèbw4‚ŠRW÷Ä¡¥Œã…V?€K‡W²ø;6þ' %€¶ˆrAñ=žxâ kÝ$ˆIË•Ä> Ìx@|,|Ðå…æŽnEØýŒ²A8@±ñÞ²&ÕáWƒlŠçøâ¿ØkÑç¾ôïRÇ¥áJ‡·ò^Ò’ º4掳 ]ˆßøÆ7ìâGd¨û‚Ž}Ö€ÆkñÜtãṟG× ¸{ÇÖãNÍf ›• ›\FºFýØW†'ŒQ­¯êG”ßôŒ{UfŒY ¿íÚµÇFöÐ`ÄHóo½ŸÏÊÊEJw@І©Ã.¿« Vx óAHõà˜j—v¾Oï†+<ÃȦ[è¸î#|ïŸþéŸ,[Ñó*¯ò¤6^QZãÐÿzö²eKµª¡^cÀW]yy5n$õÀpÆýT¢eh e©äuù«Ã?퀤>aLú#<ªfÌⳬ®Ìá3:a€²!דRÔçи°?AÌ46M¥µÌÉVÄЉQ}+5¶FêiÙ}ÖQk¾úÖ.ˆuÎëá‚6ä*‚Î ©ƒUHåà}æx’ehºL ´¦Î0Æ7ƒí&í£ø!;Òê”n¡€¼J”Pà1Áïõ"uó±Û¬kcÕÒ ¯LúÅIL˜I¦w]L.u®åÃ*¿mT”É0‹Å,jçµ3”¢þ¤DúÈ#5׬Y›‰¶Ñic!Pë•“’誫®²!Ÿ Eë´¦ÒZ¦~F×ÙŽEky轋 Æ÷j­'È!kkYãäá̸֥ÿL¦‡äÅ}A˜l([‹†*P¯Ù •|_÷ûe¾¯[zÇ]¤ahB-,¤>˳nàV€ÑŸáúy´dÉb{L–D.£ûº÷9ý}Hà+Óæf.8¢zoT\f©~¸H— Ûµ=u´Å܃ÅÕ$–uËÖ­¶¾ÐªU«KKa;\]ÏÿüÏÿl¿šè Ò ˆu/%MÑ1ˆ”ø˜HÌ‚!Õ =àÇE¯a{¼zñ¯ÊƒRŒÆ*êâ µ¨=L‚”~zêã ºÑz/+`:ãø`QnÌ»®   Üoœ›î±åVÝð•åþx²À>ø€•¾h±íC},ÇÛ\Á§_~Ù¥™XèX꺢ˆxÀåè¯þ2³Q~ÛÑ—œ I¢ÿÞ}æfm²4ZW̓³¯õhÏ5×\“ímì¬ÒkgÄü=­ki@÷¥2%qØ•ChÜ¢›‰”ú¿")u©ï‚2ã=HE–± j0|”)ˆŒ°Òº.ÿæØ±Q\dp‘uÁ‹ï Ló½ï}¯]@uŠ ëÖ¼òI_ùòË/·WX4lN¹”¬Rû,€/¹äâ$IÑVmPöºzQVÞÚÏèÝãf½FÙ`Ü–-Þõ#Yý°‚oݶÕþ½r媠æj‰ šŠE=&·X^ÿà?°¾æÊÏXi·~õa¡øûŒ"ˆ©›åéÄx †¾bþ ä…¢¼~U¥.Yˆ¦Ì¸&€×rªu^^/%,™ ­Ïd5ü›ß#xñÛˆ¸ÒÔ}f¹XÊó®\˳îÉ¥…¤ïý÷ßo=$ Ì÷ç—êñ+YøŠ+.˦Æ9W•¨1½ÇSË6Š¢\ K¸“8î1ãT/BnìÖ-[díGÖ&µ®Á` ô,B›êYÐsÐ"Ò©Fõ…ï|ç;u«µþ›R˜}}uS4m°âïÓÚóŹá3Ñ+1~@v ÏkŸñ¯šDÖÙ9 «$ ð&7ü¢y™Ê ŸZ ¡õ™÷Z[´é&Ózo¨Úä‡>ô!9á„jõ®Üˆ«Í|‰ÒÓ•´Z2s¾\~ùeVúB t§ì,$yÝZl9÷³ýâ—T³Â3Üî³âRŒË™>H=øeyr"±ê"T¾&…·lĉBªºá•’0ñ1H7Üpƒ¼üå/¯Õ"Fz—<Øuë­·æZs‰K%~ƒ ¦Q ƒ†ãsâœè‡%ÔÖi6BË{@ƒ=àX@ q0q•€¬›}t¸N–­Á3¢¶Ü¶%¾c ŒŠhI›)mi ä½ÓF+n¬=å3LR²"³í£ý¨KݰÛúè/¹D¹újy­ù|Õ©§Ên³vöôHgÚ”Ûµ<ƒ¹Ýu×¶!ý¢E ª¾4& £_~™7¡?Ê—Þ>c°è®¢A=9o`G¦8@¢Ê傽íŠk>;´Ž0RXv§¯EÝQ ãoØÍ­¤løÎÅ_lC6C+76Dô ÔŽ— ÒR„¿ÍþG¤”ZJ3}1ïïàœUEéϲµÔ½}áÿÒ–T“™e_ \ÿ\_I÷úp  Õ.|¤Ê¤ºÌ2¢aŒF+D!wÜ]œõ3Î5ÒH¢c™É FÌø^õ¥/I‹ǹæ˜Çœwž¬HÛ˜j}˜–gÌ%¸¡¬mÄ)Z—_D#Ïk`|Ù¥©ËãŽs N^*[ÆøXÜÜà€£b2¥ðóÛž—Q@6‰Ö¹Â ËHãc8 Bô°À‡Ï™ÃUT—§E˜%öËó§bÀ`ÑQK:ã“ æ±9!iÌbJ!©!]NE!¸›°a_Rx6Tcä—–Ê/$ 5hu^—åbA“aa.Z˜¨·2»Š÷‚a”æ6?ÓÅõ)é±aL0t:÷sW,Ѥ¾¡¾>™À³lYMºo2óç ö×}ìcrÜ+^Q'}Qúwݺ'ä¨£ŽžÑ}¥ÑË!ajü‹j>¢zºÊí-j1*RÜøÛÏ¡s)³ÂõÀÔ^#•ÐÉ©† ­ã Öu’t#y8€:º¯!Ù/14*d!Ù]À1÷ÕQY”*¤W´Œs’c_†3=pMHXÀ"Di=™¨{눫F|Á¾Å8h\k5ã\H¡2ÀÕÖdê™+ÚUT¼øMdþ俇~JozÓ›jnCxÛãËmßø†´™q5 óŸø„,>ê¨DG/&«ÒXG]]|ñÏmÄü¾l™Rsµ6H£3÷<]³£_¤Vh¯$t^„E}äUg%à†Š<é…^ós®¹ÍÕ"ýœ¶‡FtÖó¶j#¨´Nªæ`»Åï° ³´b_YØŒFünê°*æM~J>‚“Ïb¯8II}q>œ¤4Úð\Ë–¡ÅD„DFü.]-ø>õdY‡Ræù–5Xu%©,;PøœÙI¨Zv²Ò6@Ë2-õú5|­ [.xy^õ¹Œ ú@ïeQyÒpÜ›ë¾ò9ûï…F4‹ãÏþò/åU↓=óÌ:·çÖÜo *yäöØ™ºXü¥Òucì0[_~Ù/Ò|à¨PÚù“u^âµdá(Ÿðý¾îáF¯` àÃÛ¼9ɳ…]ç 36šÒÆ-:`üºúê«å%/y‰6ºy0Pðëa€Bñ³:R ß#ˆ„­ÎZºâü()I©y¿ÆF(0®a¦0Ì€Þ3€…%³ by¤K%.»F@·p}õ™óLô§åžÆ)²Z® VJi·6‹gÜ_X·µË'duFƒnþï½µ˜kÛöÐC²î¦›ä¢Ï~ÖÎÇ)süï)ü{_ÿº7vsîÊ+¯4óhµÍpÊóï—C?¦“l¤8žŠqnô“j™8ͨà‡Åî2F³X2 q8¬ÐŽã`pvïÚe»mSÓb®´l¤…À €ƒ“DW½dêI³¯RHsðh)%ˆI%]ƒ g¤âüœ‘[ô7ãºèOž.‹cÈÌ>b/^ï\W£X•îaI[f%5 Xm¤¢ñŽmi¨B"sü Y^s,™¹Ä ÷º, …!ðbQûð‡?l)¾.üŽû¼ëVyúÆå•ï{Ÿ<üóŸËúûî“WèC²ÔÐçÀ¿û‹_”Š*UÌP\€·R‰j}•röc—Çuºé ú~5ºôÒK €ãÈ ¦¢Q ÕC”KC§ü29ÞbôÙ$f‡Ýg#>Ü –t2BêlÛö¼LNM[=Œ+»î©tË-·È«^õ*»/¤ð+^ñŠºr,ÚÂÈUúG?ú‘µr†¨4uYìÏöÜ(m(å(áIó©ëžµìL#ý”³Mþ/’Šx„RÇàEÿ7kx‘c,¨6Pʲ=.ŒSyž¼¸?¼y´ÏXÀ.ºè"ë6¢¥Y³CùÜï}ä#òÞ¯}MZÌ1÷®_/÷˜ñسG^úž÷ȱ/yá %Œ}ôKaõ•Ë)%m£‚÷,…¾üÒ€ëÁ™6éVÆ+€¹.¬+'+/Ö9kôŠÕ¯æ|T"ÆZ_·]Á'ƒÜ-‹/±æ|Z¥I¥1˜èSƒ¿A›1È †4Ö¥Iiñ¥~PB‡²–øLË2›†ëM§ïQzPúâ5}ž ü` Ì”Úeuäÿ¡“Ôi¹Piÿ0Éýè>Ò”Zwˆä¢F+7í ˆ7¦±#,ºð<ÀpÅñ$xiÀ{w}ó›r¼YØ—iîZòu™XRñK.¹X–.]bç ÎÅî/QXò:ÅŸóíQ™} GùÙ¶ ˜qØJ\÷Väï1\ßÅ0ùÝ™‹Œü‹¢™§@;—ª¬³»wí¶Znu\7âeQmÂm®k ü°LéZÔ᪂”¡Æ3³šH™"ÈEƒº2%-Z”ð:põFëLÿ²|¤À(¥+«wа¦£´YF0ãY‡FRkðÂàˆ-Oò¼0P¼Ô)áq5cùì­·Êœ ¬•¹jÎiñÑGK»Qä  ÉšÈ„ðmRpîp“Í›×c;]0‚1Ô°Àí¼0“ v5%ža$VØŽ¢ÖµÈëªó%;®¨¼Ä‰bÅ>l×”#¡ÒÛlo]¸–t¿$‚G×RÂkHa¬¤ÐóôÊKË5­¸pÛ ,m(õc_èÔØ‹ALWK©)Gͺ^””LÔM)=.4¬ÄñŸÌAwuCJ[ÁX½ƒÆA‚ˆt™º/@hÑ'eÖíD©¿CßÄ}-ïXpÁÔÎ…,)­Ý‹¨¹Yla…¾à“Ÿ”!Ãâæ# Ã,è,ÙCuJSg–Ê«ušÏeýÃ¥ì\X­®ù£¸¢Bìù¾Q\V6¤Wûø]Fp©lÙ¼Eæ/XXKÈpÇÌAeç: ¨5h5À†ÐEHeÒ@m„²>°\‡J³èg,ìL ALý`§OU[¢1Iä@éKpBQú’âQ êö2|>P»9¨GòžèÀ‚KãÈ$hmÖt™]'t±—Þ‡±Êm*’¼»×¾öµ™Z£N÷Ôa®×ÿÝßÉùû˜t¥î ×͵èŠ+.—•†6C0tuu&÷µR¢y{£Mí::ÝqÆÿn|ÉÅ?Ëf#¥´;Õá5’¨ h4À¶båÊLño&Ú“² n”jV¡±“H€ACâÃe—]Ì1Õ Æ1À b¶Iád¦Ô'­&`¬SëXÒP]"H»‡\w›Ûê+§£ýÀ:È×­C6y|ª"ÔÍ)m \ºŸt•HíNÒÖ ¡ká˜Ô«‹À‹è:´ ¥tçïZï,ÿ°ô§e^i÷ÀóÓ×^+s-’#Ï9'Ó¦–ÇG‘vLXH祕6¢lZ_¦–[Í–ã ©tqäU'tBWGõÓäØõ˜ê(*íת«ÔÓ€Ÿ, ¤/†|× ¨ñàÀ ¬47]WîÐô˜Rš~OLd1“(ÁO©×@œ­Å¿ñ]ÕàŽÂw5¦¤Òaš,Ž®“Ø+ˆ€ÒÉ Ú_K©ÎóÔÇÕ.#_Æܾ?zaÓ upMéIë™BéÒg›F+­ëâš5x±/(3|δ”ç6 d ¡®­ÖÌbÂ9>{ýõ²ûñÇ­KhÄŒÝ+>úQéI—öÚÌïu™ßšR ÜùÝûï¿Ïöh^»v,˜¿ ±:»™{ª0]+ÕU+(BÁ©qøbos3·é˜72T':ÊwVGu'éoÿ:}9òœk Ó3×U+¿ct¶΢+sp‚qR!£:€F©×V[~GÓiNôŸþô§¹Õ<øŒýq,V£Ðææ&$P¿%ÕÓT™T•ŸéšW4¯Ó±»iPkp“6ëŽ:ª‹–]‚š’K[ΙÃK=Ù5è¸z£‹ˆ Bxq,Œ3(3¬Â”ü4Xáþìß°Av=ð€œýû¿Ÿxvî”›þñå‚Ï}έ8tyYJoäù>lØØ^Ïjá)X:$8+Õ5±.¹äçÕ,KŽrƒ"¢¼˜èºT¦8,|CiO‘G .P¨#§üO¡ôO‰É`Û“Ï›×[Ó‡u×v& sé]ïzW-FHaE£Þ¬ [8ªyÀ`•gÖ1Ô@,]ªŒcëè+Û¬i´ÁÌE‚Ѩ®(©Ÿ5ÀÝ”Ü8—Õ)t-jþŽ^|\] פ‹ýA—A›ÉŽŠÀ &ôë¿þëµê/uXüæ¶[n‘y†…-<ñÄZ$Öö»î’ØgíË_žYpÈÂð¤:b–/_jfeT¿¨1c•8%sømøâŸÿ´*N;†Èá^‰9§ëk¹ç…L¦ü, ÎüžXë`fâZB[äÔ>¿}»YA—Ö*v°@9éëwÜa %Xeµž¬ËÅêkNFL ®ikH*Ðñ;Ч \ºZ¸i÷'¡ub]¼žŸk`r±q}Çu½z§KËêÈ-½è…€:/©5}Àú¸.ÁËgÄÃr¬íyàå~ÒÐL@Û!³x÷,]*{{Lö)|Ö{ÞS»wûž|Rwí’ã.¸ f´bà™Ù-·Ü,ó ­†Þ;·gn¦jfÆþû Ô®7Àø²KuB$n; ¢¬’å¯ 1W‰ÆV›¨¶hD’[Q¸I"ƒ²< OP¶ÙÕÁµ aAd䕦Äx ý,Äù2éÅæ@Å!PxœÀá䤮‡} ÉC­;ÜgL$ç‡Õ^KaZléNÒÇÑLÓJgs Y®ÞªèZ†r­1F7⯘ÁÔƒøþ7Þhi^£bB0)IuwDì Ú ãC"‹(5“ýÁ bLNÀzs¿K*MéÌPPZ})…>¸)mnJ¡ÎJ¢^ÌÅE»’Ühf0À|ƵÁHE Ñ‚Çô]À¢YÓw²#ûlÔ¡»ÿéŸäEï{ŸôfõÜUWɶG‘9 ÊYï|§t§¹Ãº„/Žƒ0Û¡¡A{~ .’v¨•È_ 2.¤”¨Šý‘YÉ{À?ûÙOª~ƒµ/ž"§Ös°Ï¯ûد¤çÿ¨è¸w)Ê ó¬Ee©ú”(èKHx3ƒ¾lÙòL‹NºF èÀ°f£Ž[˜„($µîÌE’éŠèP§-ÌE“”)‘]SפÚ·ÒëfÔÚ¸”a@ãâÒ^êܺú‡°-7—®0ü ÆìúåËÜRf\3ªªMpÖÔ^ûÖ÷=þ¸4jÍàž=òâXºÌxé|kJkE‡Î;wî°çE‹›…µ}æžÅùLÓÇl|’,¯;¡óeÄÊ©MEG!EaàÆNùKÏÉ»‡]KÜl ±_FÂĸ™@hÏc,[¾¼6Ù L]ª¾`èÅtÕ ›‰Iä(Ý¢}‰Ú ‰ à_wÝuKn=Ô†.V¡®­Á릆ºhëtž ©NÍI7 Tß÷Ü´CshãûúÇFëzÙEVæS ýEaBötÒ:«ÕaÆ”Û(±Ùzà rê{ß+#fž0¬èô?üCiOóµÉšxø;)°¿Ý‚wij/©¹ß¢rÒ´4@e&CÇJWãX úguee]ô¸mÂñ™9¡ùLÖ+öC¡ß–s¯ûoàØØ¨ôõ°àBwjÖO¢5•+=>ú¨µ>2ö–Ò‡†k Ù·ÏNLêºâþ†4Gé½Ú—Ñ‘iìb ^º ¡ `íÿõ­÷á&økw•Φ…–a¸ï¸åÅ‘ûÞÃ5ã>^xá…µE•Ñi,Ng3Î̘=óýïËq†·¤=¦¬['CFòõú×Ëš«ÿøÇrÆüt¦ö mÇÀoÀ~±eË&Yµr•ïZ’BåG&åš)’Ô%hv5úéO~äMèÏZuÓWQ¹R7QÑRqà‚s Çç%FÇ~ÅÃ]t*žÊš”>c†ºíßßg+y4·´ZÉJI¬Aœ8ñï·ŸCB¦VeT À$ [üÊW¾²^JJ¥ EÐÆ… Eàõ¹Ÿ0©XÄ ¿­WÄzÓU8´[ÈG¥Ýh4àï‚WÓs‚Ã× ÕàÕÉel|ƽC ªˆÂ}•BdÁ:ZÞ­w`÷nyæškä #e#¨æüÛ¿Iá©fÏúß‘ŠYH¨*¼x) *­X±ÜÒ{]´¿0<ò…;ÏJñDŽcÝṲ̈‘㈎<Žgoê`AA<_üu}Ù‚ðKOûÜ®:Ë×Lå è_ûûöËÎ;ì#‘®‚˜!€:pBë…7Ýt“œþù5°P"h ­K brÃÕ„ï騧F&7 lL|ÇdÆÇ溌ܮ„nDV¨¹™[#Ä`¸.VÉda‚F'í«ÆÂ„pH¤âšHÉi_ÐÁ8›/¿\V¿öµRI£Ù~XúúdÑ“m„+¸ý̽"­çq(y‘½¶mÛV \°1€·føk‘g†—LþùK üÓ{óóV“P ”¼® ÒhxdŽ©ªDâ£ÿ¢ü÷µºžD÷YŸb Z§i¼Ñ9®x `<ÒÕ0µîKš¨ ëQRQ‡…‡dðÁk + ^÷=ƒèž¸ºr“¼(¬2ÇHY`ž7JYŸï³,xmëX\°X˜évÒåexÃýmoh£m¼õV9îÝïNB"at4Ty¡Ñ• %F¨äҳΪ¬¨33‚ µÄv¯\¹BÚÎájc?ð€L5d¡梓O–=·Ü"M==2ߌ…±‘Ú÷|õ«ræoÿ¶ôžxb¦æ´nMºk×NÙ³gwÍÆÑ=§;Û 4vƒPÇq¦Ï˜«ÇF)Û ±s­ÞVG €–I',SbÔµû©nÖªâá¾Ö7jn'+ɽàjçXУR†s_"ÄLv â¦ûÌŠ¼ÓþÍþIì ­žØ)H7èÆH]cÙ<#¢ “Aø2ë#kI¨‹“cƒ¾—R™õ4[PüWøM¶?Aòõzê¹´k¯ÀžG±÷Ä·½Í&à?a$í"sŸºýè¿þ«ûŽwÈ´ÙoóWÈiïz—4=\—êaô[¶l‘C‡†Rð.ÎÐæ²Æ'oG…xŽq<óF5®ÖMÆ8΂×´dÓ üãe*rD%š SéYHm­ÍñåÄ¢©Œçª#ÒÅñú†¬¡Šåxtá9æìê.uü ߇5ó,#P[n ¸t†bȤs2¾*!H…ÔáŠÿÕÁ‹{Åh3,pº0è±<­ \mñþškäè×¼Fªf‘œdº¥ù"­Nùà¥ÙÜßÇò9ñ÷~Oº@ëSWM8nxlذޞ òz,\Pom.Ó˜ `° …0Ź´;Ê= àDK$9¥;ŠÚ¢„%\Ž© L,ÏDjê–»^”  Ñ~Ò7Pc¤ŽÁj¼ÄÐéÎÔBÍ$têeÔñiÄôüHpxõ«_m'¤2ŠЗëÖ &M§ÒŸ£Õ((¶®-ý_ ¼¸&€ׂ̮SO=Õ.R¸Çt=Ñò¯ ïóžðþ¬ûÆ7ä˜÷¾·¶ÐQç~þòËe…¹Ç´a…¾œæ^³hƒrHŸ¤ÑÚÚlÃi˜qbów˸RËt¬3´–6Þ|!„Rþä'?ò77ó„qQ·ô§jºP¯XêÊeÚ¦”aµØÑ¨Øˆ0S¯ j(ŒMŸ;~ÖÏ={÷Z÷¼žy2Á‚:Cÿf`uXD`ÑuÐÂõ è"Ã0µáJWÏÐ)yôéÌìˆÇu§oTGý*—E×qß¡^ Å'|Á8oÆ-ëÆÝÔ­kê…Ùg§¹OË̽«BW5jEŸYÏüèG¥ ̸esü'¿ým9ö·~Kš”¤Åàå˜`ߤÌÒVëÞB…y=½f|Ú²uÍCs<4Ÿp«VãYÒˆuÚv…þaiWÒ’9ai›ƒv±HŠmfWTÖ}ëÚšÖ‰oO™ àŠÉ\â)+9àfˆQJ«¶v éÚZLŽ`ï`üì$LÞGŒîöæ7¿Ù¾`õ„½5Ç×=tш¦óTñ,Ñš i‚`MÁÿo€—Á¸f´àšXµ‚µ¬¸Ÿf”Žn¿¹–}÷ß/ Ž?^z—.•ÇúSi5’õ”‹.’ÝÀm昆Ùàû}ë×Ë®{çœ#]ÇScOTS¨ïâ1~°oÀP…óëé™[K\(ãÅYUX˜Î'©ë…€êÕ¹žbG6þÙO’i­ROÊtnÌ”]mrêÃÆ’)ERÞW‹qŽJDb5ê‚rn¹­Çl&¤'&Á¡C\V+Ï Ò9­¿1ô¡˜ÌnB«T÷À¾7ß|³­OɆ÷áóÔÕé&¡™TS'3°<¤3r‘f, xM+´ŽÆ:\ðjk|Áˆuªk7ë¢ú¨ÉŸ'Þ`æ^¹÷·Íõ¥ jöm)ô~ôƒ¬®÷Ñ”ù!£– }¨§’¼9°†– «€¯iÜ¢^ pìݻ߮àÈ+æg¬2©î :†=b_Âcb¨@©Qíû¢ú*‚à7yIÁß'˜éÿäFÎ×U=ØZ`‚:úŠ¥jt …o²ºe ·²71¤+Ëà°è¼ÛÝ^÷ï¥Û‰jƪ’6ikÏùÖ©=a¯YÜæ˜{йf}ÿÙŸý '$=F²Ï5÷ŒEïi±æï¸åŽ€óeÆâ’‰kn ¶t³{_Tbà8—¶ÆÚ eüÃ,€óKJ{Â&+=Þå>]ors™¸Ò\‡xÁñ'Déá>)n;P#˯oŸì6 ÃäY½zM-d’Xû/­{ú ¼ÌÈ~ýë_/Ï>û¬Šè]{íµ6ó û14‘ÒŒú²®|ACšÎãÕ¾^f4éÂt At Ý1ÌRëãÌ;f=Â,'] DƒVG‚Ùl°eàé§¿2zà€c$-ÕªS|ω|‚ùÌž“Ùöj úܱre-ȃµ²yž,¡&22rÈRæÅ‹[·µ% 'Ÿ§–/{™äŒ¯ØW7=ʵ°«‹„Ìßqa& opuÐ@Z”÷`õô:­X‘Ó9/Ôã©Àe\]!–P+Ê66.ýý†R'TAXÝ) \Òj¹2vh@r&¾‹l'€ö-oy‹•°XÈ îø(*Êï`Òâo·ƒ,xŽ:FÙ-—Óhxä<–g­Ç]6fXÀ¤Yˆº ÅÔwÞ²EŸ~º škÛk³U^X£Ö:v|ÓÅKï™gJDzeµH3ºúô}Õ!–`ºHÿCZ¸p¬JØ‹¿ N#žÈ`Ó{gž¸:®}„r~³[]T#±BÿøG^ Ü5¨õNªõ0Êê¡.¥-ìKX`…ËËœ*{ /(K¸Ç|‹WLN"L–¾ýI“pø%,6áÒ“JW½¤Ñ‹†.JfÐilˆÿÅ>7 ´ñs«°X0Øm4 (û«Ëßø,«¾²±¡Jyz°kpãÂ@ÉkuyózÇ 7H3¤¤‘€{ŸyFÖ¼éMÒ¾`ÝïÐsÏIªS{lMÕàBdø˜‘Ð='œP+·ëÚH¥ñ7’RÀZ+u{z¤ƒ.¢(*lŸŒoY‡e Ú]õß__ôU}9©LN1tà œö˜¯›æëÄyAùQ™(Œ8äGÊ·lg/Ç%ÝZ2“³i‹ „™0Ð3÷îÛ/}}ûŽ8×Ò6†L’JS:Ó¥¡%2Xð7êA­_¿Þî‡Ân¬Œš$vïöÛo·z4öC>3”`íÖz¦–Ò!ðæEài©íÎ-qŠzÈœËØîÝÒi¤å£4›s:øä“È”ùiIÞ6„—^u•÷ž÷$E殾Z–¿ô¥ÒœÖg¦*@Š®;8ÒOÌ öbü4î_·YÜ`7˜×›$Uè ùÆJŸ•"=Îïëõ»7rUÀpu™Z¤V5úþ÷¿p8 1Ê€" r”)Ë ¸þ—±9ŸØë5ŠË¸¹ ôWbÇiœ›M0ÔðÀƒ²oß^#™Í¤¿À&EPrPÈZ"³$ÌÝwßmÁÉHé‹cÃú #h6Œ_pI¡hù Fº½ñoÌD‘Q¯Åw©Sc!˜“Zj™HÁýòBk1Ópý¨B|¶Jï®]+-ÝݲëºëdáGÈ|s~}O=%}[·Êò .£³ö˜}ºÌg|<óíoËê·¿]Ú À6ýøÇrÂïýž ìØ!SF‚všû¥ ~Ú® m t áÚ°€µ´45fQbažÓ=S䯖>[ʰšCᢠ^ëDä{Óc3oÍèÀQN>p¹ÀŠHYÈòtÍ,\å¡Ô-ŒsBÒtj [53nhLŠ" î %$†è­}F"£/@ Šv-i s‚R¢¡0š“ë¦e´°Ð•Ùh D@È †^bâ2à„5Ç…5î*¸®àƒF@öAdã¶AÛµÿ8ã²3 ÈN#5W¾õ­2Ö×'FÚu¬Y#C÷Ý'ð½šs|àYlK+øöË.“%¯x…LíÙ#ãfј{ÚiµDŽ-F¯=ÒÐèCf‘ÚnÔ„&4 7ªÇ2³ Eimf¸šÉ°ÿ2€‹,²EæÚq¿p]6u°¥9è w©à¢œª§!É['Å.…NÕZ‡Íšî;sjô½ïþGÆì;±"ý1r’㣀!!IíHó¸äïº2G :ç—rgå-: Å3£5™4 Ùî혞Ž-áv%0ÍJÚUÄ PD z/"¼`¦ua›Ð‘~‡à|’ùÆ-Ž ‰ ‹7£Ç0ù± `âT¤¨¡‰»ïÊ+eá¯ÿºzøa6 Ãâ7¼A&NÞ¾b…¥ÊýëÖÉ¢óϯIí¡G•fƳx<óÝïÊq¿ýÛ¶BÆ!èùf1Yû¿!Êóšû0×,Dci;¦cÒXEªL‰ ‚sŸšœ°4 sgúG³ÁreÜâÐqiyTW•2 £µ1úá¿_MT‹°D…iD‘”NÈO¥*Kcâ|{xTOsC… |×[lóXè T¦•w¿‘”½/{™ì5zø³xl‡;†(#õÚ åßf¤êªßüMiJÝ@ï½Wæ)ÝŠ~TƒƒVï4g3@;Ê,qz\Faé¾N:Ä’çV³ÏHl!ì5€é6÷ÅtMl×›âÉ ô‘JDê6Š23=®£”õ‹O-¡ÿ‡?ø~68*!ñ<Á>g B¼ÆÈ€U¨åâ¦ò˜@™…+XO+ ùr,oµZÌSÓ5 ÷j 0cÒBr Ú!7ºhõbJ$‚™åjñ>üœÉÄkdõ ÀB‡cÀ-%0óli5Æ÷@Íñ72‚xmX\tòµi>‰’5fé2 È ÑÕ'Ì÷ç™ ÝõÐCɈY檘H¦Ùc «2ŒmMÍ3ט¸È¼TÓ‘`ƒiQ§ñ—2¥—CZhÀ’iõ›ÆÔb-² (pÉH ݑ҅¿òò‰¦ù(`Ã¥_D¥ VRèØÏÓÅ‹®7º·fb›'&ÆÓ8åa0RyÀ’´Óèvl¦;² £ÄgÐA£{új°~°v3ˆt17pƒ dv½(éàã¬Û°´º )%è¨u½õYõQwÐkc_:ô[ÝèÜUƒâ Ÿ?.;éB¡^¯¨Q}çÐbg!¼¹z29â¶øenŠmqMéÚ*ÊÜʬÖ—Ùåèú é;Q)̇ŠÑ3”FÛwÄèÊH8@G†´„jgg—2($uCÝ`u'ŠN”wƒ3Üïär„ Àû*]êýݾÁô;3±bxø}ëškÛ=·;­hÙ6ÓyQ¥µ†Sór¦bÜ(Ý-c•õ6.°âã±GÕ*Ÿ­ÈXûã†lÀéjWKùOKYv=-*|5œ‹~'dh‹ ŒLù¶Œ(wšÔ •efGvßX‡›Š¯i\=½ÆýE-®D2ZššM‡†Y ,$RW×;ékýiE2qÏ¡Øç¢°Ê< ìûêݺðÁB3l¥‘Ñ$'¸ÙPá9æ eçtwÕ2XöÆ•¶å#¢œP…òa^ 쎟H>Ï4Œó ÂùêÆÕ5úË6MK¬Ð™ù^3HE9Vç|0ºiwHm–/ÉVð ÜhO»¨°„é¶GuÉ52øhx°R¿›ˆá¡ïV();•f¦€±. ~C§<¿ ¹˜ ¡A¦Ûmº;oqõIb­oëçÈÉØ¢¥Œ¹¸ðyB%€^‹Íæ/·wØÌ ]hÐÖºÛkIǹ«mŠé‹ÊÓßLìTÄÕ/\E±yùôÙñ®xâ)bÇ•¤å‚0%p¾Ü) ©¬PÍÈ©|QGJ9âÄéSÒy‡Wîz£]‰z^u×]/ý’¹ÇXÄ´4‚9¶íQmäñ¤N2%€ €Ã¢M uss‹ /ÔÏEmkÊÞÇ«ø„e °®c¡™žÆßUk%n7e¡+aÓÒ¶-i' €‰n_Lqg†:öΟ8; ÞtÕ¸Hñqãó£â>aù¹óÅ=§\Ã[{ݼ÷Õè?þã;Ns³ðŠQ*£§È¢ÛH¨f^oßàÂåÕ(pÅÞ¹ ÿºÀ@Û òŸC.·X-tqZ%¤Ö‡h‚`š°MÛlYHíèÈ¿ª¹pØn´Ùf %,È/i£(©í”, Ó©½Z‹³QœÏ‚³5Ó˜R•1ךR‡‘@h”Ÿ-—™ôq}έ·gµ·Q!$J€2Ã]&߸àðµŠõ¸Ì—ãÂU9ΠPŸØe¬K®Î[÷ûQNPzÁï…Ò%‘ªqqŽU]”ž÷:µ„µ‘*õtíÒ’ Otdö0š¶t:7@ š›ö¡MθYwF¥–ók@_I¦¥zn ‰[«s“•òv_æGY«]?QTò®Eeì Qަ¨n ÃeÜ žp)|'Ž‹  N>C9ø{ßû„þ¢•—,Eë£ÙžÏKQ}«xÈJ\J×­gq±á­Œ©³äâ3ã.aétÐú¢áqfê*qú[üùHñœJP¾ÇïÖÙTRðÍÀf:4  È£Ú¸Ìü#ak~Ù8ß@¥Â!ÃÌÎãóK Ï¢Y030ÎakqFÕ ·Ïe‡ O”B»Š[ž›ÌèÇ[Ô±!S†'*wá¥,˹FáÈSÍÏG¢üqO{ÓP'Š(*dÊQTàç(5yü+´o¡r'‰KÇíÂùÄúÈîêÕù’uä[r¼¨PšyVÈ|Iç gè•(ã¢ó¶î,á» Í™JqŽgÆáA,òHY?;‰g$ðw-€CåXÇÀ1;«ˆon¸Y@q¶Ä… ÅÌÍ,19CQ[¶´®ÒîúsTU—+uYf%ª“ÔS×8hÓ¼$…U' VÁ|qv8ÒÌ,_À{CÔŠÆ’ J5~}…Vé™IYqCíYìJD˜ZƒzòÕè—±ã5ÕKËÏÖ+½F!aŸÇè ¦Há—wÿ>‰¬%pj‘4ÔY<uŒrµý¼•ZJÞœR…êœ6©+]dNª§’îꇤ^Q¯Fìš³ðxV«} \Õ-²ÐÇ ]`˜&Ç…ô$g4EEó&ò.ø «ÍqhþÆa@Â)ç}÷»ßq"±]Öò,«žU®®¬l5×2è5ˆå#"ñÆùõùÈ·gcQ+th5/ªî—‚è=¯Í¶â„ºû¢c+|€.i\*3o³þwX|R£ðÂçëÚqâc¿Rœ±RrﳌP¬täYÕÊEXš•h0î©êŒziÈ{õ­¨°Øt}ݰàujÅ9 aC9Õq(´®êøV hqìÉ šý#ªw­Õ¤ÒýºfaÚ)Ôârb~‚‘”%N( 6'8 î)o*¡£ÕŸk %1Ï ì~T–·4”Û¯üEVðFŽÌ¥4•è°¦záE–7´5âò’ Q+n ç¨XQP×®;å¨,éžMpÂá.JΑãÜcV£o}ë6°6‘œð1o^n B*õ+îÿäK=Xë@P"¹!õã;“¸Á»^l¬«¯º©k… 4*°BK~ðCapJ€u€&ÆõUãÑä9ÎÆHؼ³)¯]nö€B†·ïOæzK¹«ò%1¬ÐßN\”sÛ•ž‰ÄÒÙ³“®‘(wâ5ÒD¼dXfZæûÝZ+É"\TlÐóÝß"ÃÔLw<ÇøâŽu¬xRoê: H\RfÉ" µ.qì™üõÍìêD@©ZnyË»Ù4êc%â .œ_ ÄÿÝTF]h›ÐÐQã3Z¡¤ÞrRØå°öi. È—Í Yô…XùPg¥O]KžÓ:`=ͧ´åb°K؆K}®vä àqæ9êTMůDÅ4¿p¥ñ†bÿÜ›©òKçTó(XLãgÜ‹ŠZ(¥‰•GB Š_ki”­'íkQZxø¨ÿ…ŒWQ¦kEÕ÷Ë›T<÷T5ΊƒþÞ²­ ³E}%‰ò e™”Ȃ¡ãYä¯ýn^JVø¢âš«%\àÝUÉ]9ö2·€„Œ«êã8_–zU”>f~ŸFQÀÞŒ¢€NR˜v•X°rCâü;‡Ú>†¥p1ÈóóâÒT:ô?.w¹],ÒÕí%›õmF ,¦Qƒž9ô·.Ë,.ÿ€ï¸°@C–ôqNQöØ]‚ʤ™e¯¯ÊêÕ£ýÅâ@´\ä6>)nüío³ê³­ûs ËorŒ® ªLEƒÈO ]×—/œ_nÖÆ©<ê6¹/!.cU’Àw< §Øïš×€ÎŸÝ7,‘¿Øy«¸”ìég+Ö\ÉŽ™…ºxÙqÍ©v ÿÿ3jïòK‰IEND®B`‚camera-app-2.9.1+14.04.20140331/desktop/icons/hicolor/64x64/0000755000015201777760000000000012316315300023133 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/desktop/icons/hicolor/64x64/apps/0000755000015201777760000000000012316315300024076 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/desktop/icons/hicolor/64x64/apps/camera-app.png0000644000015201777760000005167512316315040026631 0ustar pbusernogroup00000000000000‰PNG  IHDR‡v÷GÌsBITÛáOà pHYsíí˜Á7tEXtSoftwarewww.inkscape.org›î<S;IDATxÚµ½i$Çq&š‘•uô9Ý=}Ít÷Ü'038 @.H H‘â’ZQ»\ɤ…Ö`¶¤­žé‡MÒ³5I?tØê‡~P&{ï™~ˆ4J2KiA‚ÄAÊA$`Ì}÷=}_uWæ~žáéY3¤lß«‹ÕUYYááîŸá®ÞÅX¢øæ1–ˆ‡ß9JF™‡3rw¼v ‘ýáÛÝ0òÚß*4c¼(ÊÞ]"Ôï­VËL˜V3 y¹èJùöîQKµâ²K™¾®_ø¼¦øÓPÃ\ÊñÐÍwiùðI…J’TéácÝÍ Ãä…ˆɯÐûf¤˜QL]AZº›¥aúŸžY$ï) ©2{©K_¡utH.ßÔ3÷QŠÆïòØíæy9?E*Úañ] ½<3þ@ù¾¼ý¦/vµg)”ÕÊnçxi( ô³Þçš1TûÍ¥âïâ÷}b\g}M}%™/þuO²™`4æ!,Gzi¾Ž·‹Š‡¡4JovÉi~‹˜Ô^Ì—Š'¥Ò#LäRD»]ÅR+Ù:I±\ô{Q+äû;I¦ÉVd©ø«zÂñ€qgŸVÞhÅÂ-^_¾§òìý”òS+˜¬§•¢r_ÓTõÞÏJ$ðèªx£¥×3á%6£—HN+$ÛÉa•ð(Ë›4u­7´Om û¸€X¶0Ï IG¢K@ÑXR)»,³e¾%nÐj6ãQ+1Õˆ4Aê…V‰Ú`ÎRÉŠÓ‚ŠøùD$òºÐ¬”+²ãõRžz »¤ç&˜ J}=þéXbDrYyÓ¸,$µ¬Ež×~Ý-3©¶„Á;aÆ’Ö^,ŸåŸòëDˆXàÇ’Àˆ¥(æ0ålvóc<— ŸÏ[RFR4ê{™´Tƒ„Ñ—‡V$) =båi v Õ§½Ï’3Æ)v‹w“æ¡Hµ‡$*µCSôÉs¿®÷MFiÇÒ2ŒbH ń֎wcJYFí†g5e«òâÑ}b‡Q,ñŒt—b€1~ÍrvÇE x¾‰\¡éGû€` ˜oÔH¼¤†(~šÈDüxõŦMöH”â†(æg‹Ê\/d—áß ùDZzB¸ùi LÂæÀ¯í¯·¢–gÑl"^¬ä‰K°Ã\.GäÑ8‡v(OÇ ¶ÓkbØ+lOdžåXü[Ve*ó/ùVšñ³ðHAYÒgw˜ÔªUý®¯”˜d¢c”PõV|3ÏFB‹1féÓ?ßr¢J«7{½’’;Ãaðº‡f‰; à$ÃS‘JÁŠÉH6¦™€*<GÄ_‰úhG©“ýÎì¬Íe†úÍ·È“`5–UHÓÒÿ~ïÿúݾ¾¾Ý»w õôôtuuuvvâ™èGPkÛ¶mwØVD¡šy`—€üËË˳³³ÿîßýnåzž¤ù*WÑ‹Ú ûÄv Ó‹¥¤†ðs¾X»È‘½YZ.=_ÃKŸ òŒ‰–8V2ž¿óïüÉŸü !oà–¥ÙlbþôOÿô#þˆR~Jn›ÂðÔ©7Þä©“ (¢=h¤ Þ¸páüsÏ=wìØ±ÁÁAÈO–¿ÙÇèèh±X̪¶&&¼¹¹933ƒq?òo>±DðëXRH YK;µ—Ù–¦VÊÐ6ØÊ1•²ži69\åH°ÛYoR;Jîÿð¿ýíowwwc.Å:€fØÁårùÉ'ŸüÍßü?¤Ù/= ´‰c!]±q—ˆ0i.È-FFF ¾úûû;̓˜ ?y;ó¾­à®‰¨Ú/--5 M¾(J ½“ž. sCFøFcíÙ~®…›Òþ…ªÒþz“„³Õ^Š€Lx#äs¾Ôí¶ŸRª­X)×¢eÝúÊ+¯>ûì³C$ovìØ-[( ·ð»_ûÚ×>õ©_8rä›Ežü¾Ñ t¤Ð0 „\¼‹ƒ\ŽšVV_læ†~&ÐV\>0üž±wð>‘‡ö­V­e¬Ø°­*• n•/Ø[Jœ¦|Åh0 #ÆK‰WWÑ;f…B² yð¯ÕĨ°(]]% ø6€ù’&ljiò3Dî@|@¬à°ÝüRiZ&_ýýßÿ}ìrܤ:zôè'?ùI¬V„g늛OLL@cÑLðŒYáÓ;Iž!†R·Òa¤ÆÀgšBƒGXþH­ˆ]VíƒÖß­—»ÙÂ7 …ü¶¾^lUŒ{ ÷_[[Ã3~:¨í8‰«0AÌ£ÚÚÚÂ1Z’(˜/‘ÿ§Î—U£Äú ÐÙUx÷ß»wïôô4}´ÿ~¼ÆW°ž`8c®Ž" FÂÈ5“$Æ‘ð’ë$Å``ô¸r?Ft‹‚x«h¤í@›ºaD°†}ÐkÜ7„§ìLÑ.z‘ˆcoì ›_àsÛFG©cxb 1;55…Ñ'‘$OK¤šUciZ3&áöíÛ1<à:¬8憉“¤q8ì6œKôýèUBvooïùóç¡_è+‹‹‹Øø ÜïœyçÌý'ïOáŽ(ööi¹M=rÉ'ôŒ­ÔØóíÃAí$L0†¶D0Ö¥Mó ,Y祠X*¸ìd,¥Äð4á´ÔR¤¿^«Öð)8¾¯oî€ c‰É¹çЃ}¬’„Ryi_¶„æ4 èzM¨<ÊAòƒr$]ÒN•–¾” 33Ó¼2x1ߺu‹&HŒ‹Ò>À•÷Þw¯Œ³Ä±¡&¹V<³:Ìâ0­4µ0¸!ó`y(ëg1™ÕH*’HÄ*ㆢæ0ÁŠík³p¾JE p ¾@0±ks?ÁŽÁ=™N¼âÒàËD7\¼Ç«Lc°%–.ô&þ„< ÷aá`:,äûû°D „"¦8 <òÈ¿ùë¿þk’i¸>à à>¤ ñšØ <òáGlÈ$fQ?¯_bE)Ï¡—Š&k¯Lbe± stà™FÎ>˜ µOÁÌ–xˆ¹•< ã^]]Ån•X Šb÷D%Éɰ¥ÅZ¥Rrù‘Ña\ƒ=YÊKLtŠÍÂã%©%Å“Sе,Û±,%0Ì÷‡*Â3è„Í:??] ÍDdK<ýÊw¶È‰÷áJH?HE¢MÓÁ <ã}ˆJvo²Ÿ^Y¿B cW’TL9štçÎd@ÃóÏ¢~å.&ÄžÀ3¨iƒ}@Ê/Þ1 1ÆÚ±s®©ð]iŸÒ²’Ï…vm)‡Ã¤2“¶HvïV¼ñ ˆKdƒùÐv$$ÙsnXøâ‹/b²+¤&ñ-Ü/°°´,¿þë¿.WÒ©­ßnÇîWó²a/å€ 2€þMŠvÞ&ºêŒÔí„$dz‹5uXÉóR¾PcôV¥\îëïëƾ¦¹ÑÂÑxéMzƒ”«&i&5\Ö¹,Yù‰‹. «›ƒÞ!²AMà#@sh °ˆ‘r‰×„M©?þã?>uêØ t¬Iü@5’RÀ­Åû·HŠãœ®'£5®©”^&·hÌÿÏÿûïÞ½ûÀ~©ÃKŒ0虢M´+q9²²ÁÓ =_À ‡7A'0î@’/K' Ü<~³¬2DI¦€…&’ã$į?õÔSóóóŸúÔ§XÙÐΣ¡bî˜ F÷i!É1H,NÚ ŠÈ†tRðmQ]®xgiÝ›OEÄ¿ÀÊ-$mTÌ×ßø‡o }ãß8{öìW¿úU›ÿ¥Z÷ßòëOý=øŠZ&§µpóÝ»w“ ãx ÉwÉx}ùå/øØÁ â¹sçÀÍÑǃ"„tÜ“]±N‡ãü”3‚!4Â~ªÑRL%¶¢¾ôÒKó7#ïÉR #¾Ks\ΜššÂàǦÃî†"Ø‚¾ù/ÎÃÀ õÆ?±9²¾{+sê}úØq eÿ@ÿ… éú]»vA¯NLì‚Ñz€x÷æÍ£#£ÅRÑOÁhV][[Ÿ¿õàƒ¸àÈYcŽ7 ê bЉo‘8¬àÈŽŒñ³kʪwåäIÊ@%o éë¢X¢<ôÀüG>É.óyÒx ]ðÅ/~‘´µTi<Ž:áæÐµ€lÖ’X]·KbRq¢n¨Þ~ûíTf¹8èÙófʱ‘§Ç°á– vIqkoóѼx9°Ö็zHÚüÒ«Äq}|ôw÷w¯¿þº+„T¡=ÈpœäÑ›ÉF˜Eú¥wXÉ9“±DöBI²á¶Ä1ýýýzË †Ã;O<ñ,6iç´gQIÄ3¹bÑÎ;ygHë»­M‡UŸ|òIŽrr ²aý97›úg”ªV*&„Sê(á’bQ'ýttv˜½ãU3"N«“­­M\íŒ{,¿ázÕjåêÕkÐm,ÍÜ2æÚüÑý§Âã}ð+ø’$_FÛ\Ò,K*2Waºá™rñä3I<â No¥ü;¼ÙmlcHœ"©%Ç@À× øIñô _ø‚݇î@·‚PÅÀ@lÍdaʽhO‘›QÖ[ïe,JqZ*EÁÉåñÑà(u-¤gL§ð lÇvcRÉœTz%û½ßû=è<¦ÀÎùóçAcÊø` Å륓PMPCïÐ1bH$:| }TlqJ+¥MB†ƒÆx¦Ô.ˆ)|‘ò…£'9§Ì4³Ô[” ˆ™Jüùè£~úÓŸfn–ŸaçÜÜì¾}ûµ §Ý¹2sÌ ë}œÒ°®-ÅÞ_yÐÕsk?ðŸ9ç`/½¿µU/—+Gްq´-ÄŸýÙŸIjaò—/_¦(¾t08&'qÇrƒÌà,Y__ô%¹?d,X.¹ÛÙfu·oßN)ß+++¸ž‡††x[Фð'ïçÙˆ“*¾bórýË¿ü ¸çž{”´WH5šäím ´±äV_œ>U6]#fKRÝìf>“ÖLê#y„B²ÆTéB‡½4`MËš pNC;4c½‹%½±CÇÇÇeé„õ?õÈZ¼A€U^ÀŠ`ð$W d””–4£×ä3Ä Fή<ë[ߺûî»Y½Pd|׸~nnºÃØ[ÉÉœ(®P‘X“AÉÁ‹øT»âSÂöŒ°â¬X•:híE‚|™h“I€‚tÆ´>,S?%´#fúþ÷¿/©Lˆ}JÛMæ'9©glÃÑ+ V \®·ƒ‹?õ¯ã×qOŠñƒlÀ¬Û˜fL-I? ]’Wž`-àÚ§Ÿ~úóŸÿ|â02dc¿>Å_æfçÇ'ƃ\xœÒ%Tô®*W*²‡JI¿¤\ƒ­ò&ä¡—e0w("ñËP£ü°—s.ÁÁ‡_ûÚ× ®™ Ð@Àt¶‡‚¼zw¼YôPD‚ª‡ ¤ã\ÿ;¤rÈ‚ü hf8  É4cÉLÔb_Ák\£“wìHpY5ä6“CÅø•™™YXÃÀF,ìØ÷Ä' |ë­¿C 2&YHV]“þ³)ò&¬¥Svõ r¼ñ3ë@^Øžß·KÇ$dñÚk¯Iÿ,x:zˉŽ'—·-.†ÖÙ½{7x‹ägøÿéƒS 1 [âféÕe©(C9xA¾7Ê&bpûÌ3ϰÚf‹”"Q®§§{yi +j}»‘‰û,é_Ї!<в7­­Ê'¦ÑQg*–:¶j¹ÏKÊ×y‰?’r66±ë¥œ”62=¾ò•¯°§ìJã¢,r~<ÓÌá3lÈÛóÀ‚2æþÿéáÞ°E ±‰xœ5%s¹h¨K °êºxñ"Hˆ5áïÊDf:3=5=8ˆ DLL‰Í‘Ña‚¾Jj߈~ÊVðQJ¥L9Y÷L¬j4š‹‹ GÞÅtâ)1‚À¢Ÿ>}Z50r>1¾»˜QHe\—£tŠÑ×OMg‚p\gëŽnF I°úXb0™q–ŽK”+©Åy8F˜ k™gŸ}ö‰'žŒÝldùaE=ŠEBL>s{p‚Z½nE¤f&®i$3çTê„x·d}š(‰mÓ÷ªÕ%ŸH·‚tÒàͯ~õ«Ò3‹ÍK™L2Á4cjAáAÏa@-:…pjѯÓ)<| kQoÔ”uÿàw ÅRgG'~ƒP½3ñ(RL{ËdzÉT¦_ŒÍ‡½E\Hƒ¿ví¦ÉƵôÏÑ} á—–—º{ºS6;±±nðÒÙ÷^¦T a Ÿ¤cÛ´ºÈ“çs²a,ËІŒBá1??=ÌÔ¢c©Œ8Œ$³ IW3|J‹ÜNw .†øš›Ÿ«7ª~àåsªk[~¤·££Ó+ä¢VÓ¯•½­ÖæÖÊÕ+‹/œëìê HéÞŽløÛLèHÙÌ.l’ ˆÉ€qO^‡ú§zòÉ'¥{“7%åÄaoA>é£Ìɹôø¬þ,w$öïY%QlWeJl%ôälßf³qëÖüý÷Ÿtrß%ÀûÇüG 'ö"¬ÁæÓŒ­(,ÖëÎÜ@÷z¼~ãZè7 ]¹ÑñŽm£ÑÈP0±s;€)§enIyˆ°ê—æ–''«×¦Â3•+—ÏONÞÜ·o?6ÄœÈ:]¥^ǘa´°žvR’éOÐŒ°Øs &#£Eš•¥Ccµjµ«³Ó³Di…Æo@…M‚Àñýä,:'nPvH’8E–8éw<²î”)Iü†/±’=‚7S‹ò“°¹¤XgoÓúÛôÖí$!¥mŸ=w¶VKÛÕÀ⎻»wŒt«îÆúÖüüòÅ÷¯´ª Ø·ßë.úÃ}Ýã£Û?¶¯+ˆÓ3˧ß_ÿñ{Õ³ï¿ÛÓÛS—ýaYÙ:aš`2:ÆŽ]-"³ ¤Åe,9ŒüqI`y¼6;,Ü6r± ذ‹“³-É ‘ÎP±wÄzÖDòU¦*¥,FÄóyÆ{’fP'Ьó‰äáe?ÍgBÎ\È"ò 8Þ^Þã¸ó…KrÞðÑ®Ç:wíÝÑ*«+§nn­mät½Îf!Èå!h0Yõñ*›Ë³3k ß@OþèÁÑ_||߉} /ŸZ}ûâú›§NÝu÷ÝÄ m1ȶmÛ°9@ è$ü‚š˜Œq?1Ç`9ˆÃÀ"djr 3MÊ ‰¢gT3©"2!Çxžc/Sä;6™a–APŒŽî¸C™³ï~÷»œ´kü[”¤%]«ÒANGá +(¼Ô–·ðþ$3“ÅþüØ}NŽ…˧®‚ÌÐWý½ýÛº;‹…BÎÛZYiV*Ø œqò..Wô“ëýÝ¥Ç~åûGo=ûÚâ;ï¼}øð¦-Ͱ øˆ jòy¦JXZuNÎL–jq™:3N¦‰ÌÒsÉé;ä)c…—ØŒ!‚ØM¦¬]s”¶Ý¨L8xÁVp¤ŒÐmFÑææKvƇrΗ.]’®9ˆDJù“!(™þGg¢¡á™)³ÔÂÂMÎNvvìùàèž#ck3ëç®]l4ÊÃÃccÃ/j*ÄÎ/úac+Á ‘àNV£ZoÖšõZseµúê©+Æ>¶³·è?ýÊÂùsçŽ?ޖψ ŸÁdœ÷à8š M˜ —-Œß~ûí“'OJ½.}oØ—•JŤøÉÙK* Q7°>±“¸ÒS"åL*9"Ot‰ëµÇ?ÛËÖe¬C 8ƒ½¬¡ ݸqƒi vŒ3în_§ KFª++ Ioݘ¼Ñ1Ô¹ÿ#{w퟽<;sóf±3¸ïäº{J¾.]ÜY•­z H{cke ÔêðsA¾#_èé.ùª^m”7k•rýâå­Íæá‰ÿñÃùxe4»ûر¶úŒ€>ö nÊÞ^™IG«ŠÙÑiZN¿B~衇䆓7䙟›ïǦ–‡‘,ŽÊE´¼två3í”MèŽÿ?.äm,‘&:è3‘‡’]^zé%éÝÀZ“Ðàé9…<ép4dº”¢’Z¸àÒåKAW~ÏÃÆvïºqnr~nvppèäN ÷ù¹ÖÒÒüúÚFµ¼Ö«ªQ×ZI/‡š«ZÕJ%ô:ò¥.üÛÖ½¡* ÛôüzTŽ|âxÿÿüñÂÅ‹9ÒVS'¨ap[[q‡wÓž£h­Ls–y’TÄeskS[uÆ€‹d"©t™*‘–9ß§ Sµ{•Ù•J™‡ÞŽ÷Þ{’óÀ‘t’žéêD¿¨¦» ³{“rÞØ½{Çî]¸¾´¼°66¶ëç>öÈðhäÕ76—óÅbØÊÜ:5¦¢ÆæXQ©_©aæZuu«ÚUêîíì,xÁFX™]Ø€Ò?:6úØÝÑwÞ†]€U›¹övœtyV“Âܘ{ Y1lNI’…ðm–˜®Ì¤]\"IVáa¼µ•h‘&X·vëá%@¡år…P“Ãa¼}®_¿ÎÔª˜X;²‡ˆ`ä]l+ uÀp}µ÷èØñC•¥ÆÂÜrwO߇?úèÄîñF³¼¶±¾U®Xä ³Âf«ÙhÔê~ӜȀîÔa÷(0M/åCÈT67ëªÖÓÕ§:;ךÞä@ÁøV#’+J¯…ÀÝœS·¶ò’^©Ú”ÓkÊ@“'BÚåy·ìhVVV¤‚×–`”X˜Í祈3ÔŽº»{ç.]lÛ½{®l9áÜå+Ö×7——VJÅ\«Y‰Z^)è*æ½ÎœWŒšà³‚Âs!*…µ°Q [ÈÒ¬V¯á»´^©uä‹U¯ºY‹FT8XŠÎÞZm+iHL0Ç"–ñf°c›õvAM¶HCg‡1¢3CZAÓÒÀò65àð°& 5#¯zÍ àûÃÃÛzz ÅB©Xš™Ÿ_X\ÖA¾–‚T Z|3“"Γ’@â{™;ųÁ`ºIÞrÚPÞ×åŒEeŒªEÙ§6(RŒB÷WPBÓp±3£±ÓøŸ)Ë#K­Û‰Dò‘·-\ë?½UJõj½ÕPo½õ^_½ÞØò. ZÉ׫ß+€žVoa¥æ¡Î#? ? ú»ÊË‹a}Ão†AqxÇpOWG>§òÆ–ØÙ3ѹw.®¯¬G`Ä–6¼¹ˆ C0ÂîÙªeRÊ#¶T #[n‰óþõ³É_äp±f¸¶EFí/Õ•‘Óî„s8blÁ‘br"·­6C9 Ùrá·{Av~[‚Qf ,åÚV½/*Ý@Ï×ò°™ƒµÙ„®Ù¦ÔR>RSÞbkÞòBll÷®¡Ë›o¯¯Õº;{·u{MÀEÍ‘ÊajPH’Ëíßs`êê  LVªÊçH¹:ã¡bŽÉìˆy ×; Œ¯Ä ヺDbrÎüÔ8œfêP…r¼‰\©‡2MÍIJ‚¼VY5{;9.ËVÊÉ©nnu nó´Þ€Óýš@0}î§•3'ttŲfË£À¤¸â)§Ûi)°×ÎŹÅå[•®‘Þμ–€õZ‰T>„~SzTªt C}^mm£Ú*7Zª ¨ª»C0>{»Ñ@Y¸0c¶´1RƒJÌsЙú8;l›-\•iÙ’d“’3ÄDÂHî…qÍJá”9¿”&&1½ôßd+ðÊpÎäõÆØ,‡}€N~«®M)è4Ým¿åôD 84€Õé}΢†~#jœzí½|«º½{¨£ë,:ójsm±Ù,ëäàL;Àô´Ám¬±z5·^ilÕ….¯-‡QšT[“Ñgž Å4ÚvŠ#D¦{Á˜ÔAŸ9•Û»å÷UÒ|+ úsÖ»¥ú<'Ée\~AŒ.–åá=—WtÚ ëãé0¬­-7GüVÓƒH¬W›]¥Hc+•ƒ½Hž‹Pû ëV±KQé~Ãú…W(¡°:J&5s~§Šš¨°+5ËšÓu¹z­Ûº©Jk[åzcÀ,Ëê0î &‰ÄYo”]ÊñÑ §` »x J)kC2`…ÔñªqÒ}Av6R,ÆBJ¶íqÁgi–§È qΪÎÏßêïï‹HJíÅ–5µœ ©ë12™½¦èHÕ‰¯ mQ¯X*Pk:R/»pð¯ƒf”ƃ¡Â¥&çú34è£Gž:uJ´’3ÄMŒMM]\ ú‡Gî.íÜZŸ«mm©ZØSêìï«lTe_ã> J&¿ÒPMÕµÓzL½ùüÛ3ïO–×6Zårk3¼|öÚV®umcá|eiÌåŽ9ja¾ò¬©Ì 1€ÙQj3GÂ>ðdíQžÑÜÜìÈȨOþëH¤ Ñ m”Y¦r&6 Å­N3™n†ÁB>‘¼´°° K¼sd‹n¾ÿþwÞyGúc(V+Kè騲aÂóY&Ãw5x[Y<•‹ŠC÷å»v•A³J-ª®t—ºzº;¢b©Q©×Ê*(£×9ô *i3ÚƒñÜÕ]³ÍO.ûa«¾\¹qõZŝߨZ¸X¾5²g…ØËIW¡b*ÇŽsØK¢'jâD‡øh5ÿ0-Û•Žž±›ÇvŽÅ[<íw ÚÚnÙ†ìæðÙÁá’3¦"î60°}zzšŽX9½8èþÇþùçÜ›ZoúA•g8)š8ãõ¡C‡^ýu.¦æ «¹wïÞFãâÒÒÂZu¸ïþmcµõåzmm«¾ÑÌ×J…Rgw±·»&˜ŠZOÝÅŽR¾«£X*W&ìä¹µ……Ù­`}rcòbùfÇh?—*Ç:ìEx âÝ)cOÃæ54ÕÕ|‚Í´b÷Ýw_Vò Ì¥P(æabÇ.u“wA¦dŒ=A+KM%µ£DÑ¢H'5šT·t /Õ,Š%'—`vãâ}€ZªžÂ®a:æÆ Ì4mx ›tqq‘+ð9|ý®»îº~ýúüÜõ•Ñžû{ò;ZõþZ}£ÞØlÁ–ÎUò¹ øÜ9 «Í¨úµz=Œ͆_hÕµúæúZ=·¶ìßšYº\½:¶ôµ²Â†Õçø8YM§þ‘¥äæ½÷ÞKI³0:H044X(äM}7*’hû;æg›XfáF\w#´…Öqa²³±`€2“Y*Rb‹rÏž=t†… 2LŒ Ïœ65YižiŸ»²²‚Ëd5"9l°,”?´ÅåËçëõÅàèPñ®þ`´ýÕXW͆— awÖü-s /¨¬Ô:ò…À ‹`GNÂÕ`áÖÖÔtùæBtëȉ#` Êþ̺6¨†Ä§¸¸%º¡m„‹™`x>räÈèè(µ3Êö}Ä‹k×®íÞ½‡º¼rÂhâ\eHÚªòh[Zz²—‹H/Èpù³gwïÙÍÔ"6âø)´.ÔvgØÓnêw!qËüyÿý÷}€`Tê¡-ͨºúÅ‹gV~´Ñ¼Þ—;Ô›î(ö½ÕÒ˜@1ç…yOåM;'/¨Wüj´±º¹²X›n\ß¾càÁ½Ò!ŒÛQ ¶?~ÚH:£¹‚ý‰;€0TöˆuÇÇ?þq:1Ô4èŠrfOOOìu-ò@2ÚÔ64жZžôH¶IN3¡Õ–h³&K‡r;#“^xAÖfÆô¨¢O›sWhÃbÐï¾û.îO–JV6RI5Ü|mmíÂ… S›?(5û;Ôön5Ü‘ßÖ•ë)”Š˜aK…[Q¹Ù(7jåæòz¸¸Ö\êÙÞ}òðý1Ø:Ì„Á+L-®UO‘ B³Ô’›âX ‡¦†@oÑ Ü¸qcbׄ.ÛdOq6‡ÇÞúl½Ûe*yd]”óp€>ž‹¦øÓòò2£$’<%ðÀœ9sfrr’ëíau¨·7Õb‘ˆ?)Á—CCAnàOÙ¹ÐQ0T¡ëƒü Dž™™¹¹~!h•òªèÿòÆ"«ÕÃJK5ú¶A$˜ R¢?½Ï½ÛêHª©‚8q‚/%z¤0 sÀ°¥åÅ€u©Idö#•6¦Ž­Vœ·aœŸº¹¬Ÿ£n_^Àimó–¼l«©to3“…©M³G]þŒ—°ßZÅ›Àu§OŸ»Ðw±û@*L•˜Œ¸Š ¥ÉCÀ,‰W¯^…ÀÁ¯Ü.6O¿HŽM>ö#Ë$R-Ré*ËF·i¨¸ 2w;yò$#5ÞIÒ»Aù²˜Å®]»¤ûû—ù—I:Î#^´sçÎOŒÃæËsQsSÑ!°mqT|ƹmq7CM\ÃOÜ“/iT¢´Czç… ç!¸¹¥3Jyøá‡é-Ë ÈFì5pÕLàBiNPÒ4;{ö,ÞÄFnÛm2›‰v‡‚9·û”¬cSºDu*%µxWqå\ŒñSAS––P½à0.â)+³þ^^^ÒGüŒ{[v‘‰—4°M‡%Jô³) ÒEÉ5c“_µJ1ŒkÖÆ€¤«³C¶®£E—yZø €øÁƒñiäÅ¡s´D¡ŒDøV¸¸ŠüCdÆÝ™lÿª1utØ[KèA²šÚ²ÍÈ&µð†¦LFzüñÇqG’I4Û¿^',Ø\v/ŠMñ±@‡½œ3Ò^º_“˜¦yRRYSÚ¿ÿÀåË—0z‰,³³³:ëoÏJ‘ÿЇ>455e´)UÕîiÚà!Î'gÑJÚŽÄ D:áÍ›7¡Ò¨æ?Õ?úß$Õ6 ¸ÕÑ£G9šL³ÀïbÀD-¦Âk,½¤&HzW×+]^îìë“N;Bó@Fãã>ľÙõwK+¢³Ã.iø´yR«Ãš^ö|Š é=®®‡\bÎìéîb4OsÊ0„t2 X'Ï?ÿ<ÿ(>‚-B‡Ã¨H³Œ‘×ï€ö0‰´›c~÷¤Â”²ÉÆÏò`ÍJî Zz*Ƙ͎Â5”oB¼EfuŠ£üÓ° ?ùÉORüÄ¥W_Å.ØsÿýÝÛ·wšÒÀZ{=·kbWA3hS–ïâ"ôì®Èý‡ÿl¤±Eú™#X¶SÓ]<9‹!Ù+ëÙ†iÜ[2Ÿ×9Ï×®]§š(Të‹"Lˆ;ƒf¸À·LŒ¥Pa9Yj…¨ÅÒ’ƒŸ¸ Vgeeú† àÙîàŽ%C,Eê_§bŒ°™øÀÑ3û;ÔK/¾ä0td8`‘cnNö¶³ ýsŒ„YZ^¢ªø&$ô—åç¾{ßùÎwd… 4c¥°´ñ‰ZdÒ‘Âç”SI¶;<²©j·³áHÔ“uÁ†<;¦©®ª©­5ÊESèëcccŸýìg‰/uÓ3g:z{óÅâÍ·Þ9p`âÞ{ÉÎyþùŽÝ}·Î¸ò}/]Ø&Ð @‡ýÊü•Vúq»F»2) fûà É7×ÃÇe,E[Óܯþê¯J–PJVB—ÅÚ¸t¢¾€Pˆ (9p9½Š”AêrÕÂoŠ…+—¯w‘Jèâ#Wêé‰ìqo<<ÔÕÕI¥rL£¼¸Ý¨é?êSUmÒ;dHç~í×~Íúcw")­tSj_º¥…&OÍZOâ=þ~ÍÅFÆ¢´rfbGŒïP©QH?(<ÈwŽþ$„¦ÍÈÏÄÀxHb“â@"g0Ð EÆÓXÀð ©=·4¥¤<È@(-üI){rca;~ìc#Œƒ]0õÖ[Íz ¯ÆÖV÷ÈHdÛx¾þúëGŽí(•âLÁxs·LuyÑC¹š?CÓC,RÏ?÷œ,¿g¡Gä¤3xIʺ¹­6%`!zGL]¾²Z«^8¡Þ¨“Û†Ä`,_¸ÇŽcñˆYA2Èô1J# DvžÎG34à“ìX‘¡Bç`•d’xܘ´—g»´z—‚È€´Ž1*Hx ÿÓHn¼üòø}÷-]¾\èîÞõàƒTB†nû£W~´ÿþ¡á!0—.7Gý—`1n6e®É=ñÄoÈÌH*g¯Û¤ÛÞ¼ô¦Ì²³Œ±‰û¥l¿QÎA•™ 1K) ÓÁ:„† €@ú(„1m;™5~üø¡C‡äþX¾tiäĉÞññ™·ÞŒ*iŸçNÑÐaÏ=ûœãæ& y$ævÕ¤¢Ì1@Ço"MÐì⥋à$†gÐd0ÎSU8Ž0áS¬ø ü'‹çpÿPò>Ê!šq|²m$¥m) : j‘…Žñ%OK¥µß<(‘Mâµµ_éíûñÇ|ðê‹/î~ì1|Ÿd/?33{âĉ.›Ü +yq›#~Ð&Z|ï»ß³ñe/]tÙ¥ÎyJ­tNô¥Í'‰%»û‘7„]*F}zf&øŒEÿÔÔÌ FHÈÉÉIn[ËF4È ²Qïm'α3å°èÜCQ˜Ž‰ÏLº¦È¡J‡6Èåí"sôäáÎûöí#•T ¬V4§_~y×'>QŸ™Yšêì¿ë.¢ˆzíêջw[ob³ ÿyŒDåC/SiO?}óéoz’`ß ³ÒIð¼„]å?—T‘¨aÓu"¾‚/Ãnžšš¾výñGM©RuóÌ&›`5¯_¿-H¥³§XÃQÔ_¦UÂäübÆ DHjFlš½'…ë°“¨ûjê´|N¾øâžO~²µ±±tîn4þpÈ`]àÞë"Ï*÷2yÉ¡ò(î5ÅYSò4.g…dSq"¤ 9ãˆP2Ëé!@¶"ˆŠ½æA M‰žô)ëfðÓ™3ð·`?‹K§Nõ=ZŸ9}z÷/üBÉø¨8¶¹¾¾µzôèQl©¶±¶«2ð,ýÄëˉ°{¾ñAiÇ©‹«l©òÑ'uT*þ)ìÓT­”(ãa¥ƒÄ ¨Áj)|f‰lO|:33}1ˆ $!˜+EI"ì£âç´/»½_†Í^nÑqÔ××;·oo./7Ö×ûî¹GRÆÒ»ïößw_¡Ñh -Ñöè´oßþÞžž|DÖ0âctqæZRªÁ†B¸Žr\p)Ý,Š‹ªo~ó›Nå¶Øž£É©—2-ÄD^ßö£eK+[K6a2,—xdÂh}c}zzzvffT÷|ϱåÄý¶A9ÝÇ„cð¸|ù2¨ 6¢ã„Ô²’Ë¢ÉÚŸmSÁ’ÒV¡aXìë§ûµZ÷ÈÈâåË#?¼|útß½÷ò‘¡ Vóººd¯Gmh¾ƒ‚`nz®-ØÚc¨QºÞ5ÛÎ-ªúâ‰c½QâìÐ +IбbTW× m%R³Ä¾8k‰{ÊèIRALÈ8i³Û¼H4•KŒ6þçˆ*Å´ßþ¡ÁÁK—.·ÂˆY{nAз ÍÈÂÅW@0°À7az`q`.ó ÷?e×0mV*ú¬”qùWoÜÈ‹‹…žžµéi숡‡ÒÀ‰,ê øcÇŠ]]:ئ‹f*ÎÝ#_(4_gG'¹Ù9ŠãÿÈFeÄt¥ÈîÆ÷ŒU$h%µ&ˆ¿‹Å’nêëâØ¿|àŒö&á"!68D"– ë…åƒlÄW@˜k`DJñŸŸŸß»w/Û^š3Z­úÜÜæ… ¹ŽŽpe¥¹ºÚ{Ï=Amr²ÿðá[gÎä»»k·n•††:;:vž<ÙJ»è€uoA?8røöF«Ì &[#>]î5öŸS?_?ndãç|êjÅqÊK·rösÖ•!„“ì.«|é±ìòr»¾(!L?àÇ]’|¶x8ô&5݉)n 3Þ4¨O÷š¼^\4Æ–ïS\YJD¢:%à°EX@°W]w1‰ëAEܬšÑ)l:•ËCCXxÜV@`çĈÙìì>r¤²¸8ñs?W©Õ`|¬›£˜4;ì@PˆßcÇŽax±4K“ˆ¸H  G‹$^£”yI¤—$'Ú.¾ØúO}ý)/í‡I崗דÍeœ8ø)“Ù’ÊÖ¼W’ù#Æ”,§UÄI'{Å:RriyùÆõëÍVìEA5y¾Š‹“¦© !A`²í`0PÂŒAKßÿþà‡>¤•лïvŸ<Í͵Êå¾£G[ÖpŒbesšoæp±T”‹Ù§ 6®Ô¤iç89žÛdÖ‰u9Žu½LD0¶¶£4§Èz¿*{å¥]•*éÉ¢Rµ•r̶¤o»1k;¡_NÙÏzÙ!²u­òÜÜì-Ó¶2SöT ˆÈå Eq=‘“’«Ä¡³mmçh†æä,öDï<è¿ååep¬ˆ¡Á¡ŽÎ˜Ã|J?Ue×ä}råøÈv<‘–_Ïu¼˜1·¤ó0L;zéO=õ”4›˜9ä©s@‹RWfNÒÊ®qÒZW‰ Yñ®Jn˜à©ÔÁ@% °ÔÐ&œ ›©ýD(?_Ðçh)'•‘!wÉV&l_‹$ îu*¼1à|]¼yxtdt‚!Û… ¤ãÎОì¼,zÖDm«ÑH‰8¥¾"C¯•IšË¼£cÉ”tQž µ†(tHÂÅõ>7LOI%Ø4Œ\µÀš¢òi¤âüüXXë-\¶D´þ]p(‰×h6*å eûVkU ¸ŽRH({eÜîd©Sì‚BÌ:Ä¥r}ý}{}Ûú ÅB!_ò©£1tÚÎÌND$ì˜C/d´.‘aèÒ,)'¬ÿ1@×wêºË4ÂIÈ éí¦Ñ©´§L –’µœãJ9ÂòPN³¸4¢¼ä¨’¹~‰’[ØÜJ¥*½Ê¥R±C•º»ºúúaM™YÝ*ommn‚óʦZ\¶7«sº²<!5/:ŒT p§|6±ÖŽRBÂˤJöõ$ê$K“Ê,±îñÛú–$6u>Á¡Èj7Âî6ÖͲhÁ e¢:÷J&Hµ;‚à9 Úå³XGO¢˜;O£$ÿÿçŠÑSe`íIEND®B`‚camera-app-2.9.1+14.04.20140331/FadingButton.qml0000644000015201777760000000356512316315040021226 0ustar pbusernogroup00000000000000/* * Copyright (C) 2012 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 import "constants.js" as Const AbstractButton { id: button property string iconSource property Image __active: icon1 property Image __inactive: icon2 onIconSourceChanged: { if (__active && __inactive) { __inactive.source = iconSource __active.opacity = 0.0 } else icon1.source = iconSource } Image { id: icon1 anchors.fill: parent Behavior on opacity { NumberAnimation { duration: Const.iconFadeDuration; easing.type: Easing.InOutQuad } } } Image { id: icon2 anchors.fill: parent opacity: 0.0 Behavior on opacity { NumberAnimation { duration: Const.iconFadeDuration; easing.type: Easing.InOutQuad } } } Connections { target: __active onOpacityChanged: if (__active.opacity == 0.0) __inactive.opacity = 1.0 } Connections { target: __inactive onOpacityChanged: { if (__inactive.opacity == 1.0) { var swap = __active __active = __inactive __inactive = swap } } } } camera-app-2.9.1+14.04.20140331/cameraapplication.cpp0000644000015201777760000000705312316315050022304 0ustar pbusernogroup00000000000000/* * Copyright (C) 2012 Canonical, Ltd. * * Authors: * Ugo Riboni * * 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 . */ #include "cameraapplication.h" #include #include #include #include #include #include #include #include #include #include #include "config.h" static void printUsage(const QStringList& arguments) { qDebug() << "usage:" << arguments.at(0).toUtf8().constData() << "[-testability]"; } CameraApplication::CameraApplication(int &argc, char **argv) : QGuiApplication(argc, argv) { // The testability driver is only loaded by QApplication but not by QGuiApplication. // However, QApplication depends on QWidget which would add some unneeded overhead => Let's load the testability driver on our own. if (arguments().contains(QLatin1String("-testability")) || qgetenv("QT_LOAD_TESTABILITY") == "1") { QLibrary testLib(QLatin1String("qttestability")); if (testLib.load()) { typedef void (*TasInitialize)(void); TasInitialize initFunction = (TasInitialize)testLib.resolve("qt_testability_init"); if (initFunction) { initFunction(); } else { qCritical("Library qttestability resolve failed!"); } } else { qCritical("Library qttestability load failed!"); } } } CameraApplication::~CameraApplication() { } bool CameraApplication::isDesktopMode() const { // Assume that platformName (QtUbuntu) with ubuntu // in name means it's running on device // TODO: replace this check with SDK call for formfactor QString platform = QGuiApplication::platformName(); return !((platform == "ubuntu") || (platform == "ubuntumirclient")); } bool CameraApplication::setup() { QGuiApplication::primaryScreen()->setOrientationUpdateMask(Qt::PortraitOrientation | Qt::LandscapeOrientation | Qt::InvertedPortraitOrientation | Qt::InvertedLandscapeOrientation); m_view.reset(new QQuickView()); m_view->setResizeMode(QQuickView::SizeRootObjectToView); m_view->setTitle("Camera"); m_view->rootContext()->setContextProperty("application", this); m_view->engine()->setBaseUrl(QUrl::fromLocalFile(cameraAppDirectory())); if (isClick()) { m_view->engine()->addImportPath(cameraAppImportDirectory()); qDebug() << "Import path added" << cameraAppImportDirectory(); } qDebug() << "Camera app directory" << cameraAppDirectory(); QObject::connect(m_view->engine(), SIGNAL(quit()), this, SLOT(quit())); m_view->setSource(QUrl::fromLocalFile(sourceQml())); //run fullscreen if specified at command line or not in DESKTOP_MODE (i.e. on a device) if (arguments().contains(QLatin1String("--fullscreen")) || !isDesktopMode()) m_view->showFullScreen(); else m_view->show(); return true; } camera-app-2.9.1+14.04.20140331/camera-app.svg0000644000015201777760000076075712316315040020673 0ustar pbusernogroup00000000000000 image/svg+xml 10X OPTICAL ZOOM - 5.0-50.0mm 1:3.2--5.9 10X OPTICAL ZOOM - 5.0-50.0mm 1:3.2--5.9 12.10MEGAPIXELS camera-app-2.9.1+14.04.20140331/CMakeLists.txt0000644000015201777760000000623512316315050020665 0ustar pbusernogroup00000000000000project(camera-app) cmake_minimum_required(VERSION 2.8.9) set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules) # Find includes in corresponding build directories set(CMAKE_INCLUDE_CURRENT_DIR ON) # Instruct CMake to run moc automatically when needed. set(CMAKE_AUTOMOC ON) find_package(Qt5Qml) find_package(Qt5Quick) find_package(Qt5Multimedia) find_package(Qt5Gui) # Standard install paths include(GNUInstallDirs) option(INSTALL_TESTS "Install the tests on make install" on) option(CLICK_MODE "Installs to a contained location" off) set(CAMERA_APP camera-app) if(CLICK_MODE) if(NOT DEFINED BZR_SOURCE) set(BZR_SOURCE "lp:camera-app") endif(NOT DEFINED BZR_SOURCE) set(CMAKE_INSTALL_PREFIX /) set(CAMERA_APP_DIR /) set(CMAKE_INSTALL_BINDIR /) set(PLUGIN_BASE lib/${CMAKE_LIBRARY_ARCHITECTURE}) set(PLUGIN_DIR ${PLUGIN_BASE}/CameraApp) set(DESKTOP_EXEC "./${CAMERA_APP}") set(CAMERA_ICON "${CMAKE_INSTALL_DATADIR}/icons/camera-app.svg") install(FILES camera-app.svg DESTINATION ${CMAKE_INSTALL_DATADIR}/icons) add_definitions("-DCLICK_MODE=1") else(CLICK_MODE) set(CAMERA_ICON "camera-app") set(CAMERA_APP_DIR ${CMAKE_INSTALL_DATADIR}/${CAMERA_APP}) set(DESKTOP_EXEC ${CAMERA_APP}) endif(CLICK_MODE) configure_file(config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h @ONLY) include_directories( ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR} ${Qt5Core_INCLUDE_DIRS} ${Qt5Quick_INCLUDE_DIRS} ${Qt5Multimedia_INCLUDE_DIRS} ${Qt5Gui_INCLUDE_DIRS} ) set(camera_app_HDRS cameraapplication.h) set(camera_app_SRCS cameraapplication.cpp main.cpp) add_executable(${CAMERA_APP} ${cameraapplication_MOC_SRCS} ${camera_app_SRCS} ) target_link_libraries(${CAMERA_APP} ${Qt5Core_LIBRARIES} ${Qt5Quick_LIBRARIES} ${Qt5Multimedia_LIBRARIES} ${Qt5Gui_LIBRARIES} ) install(TARGETS ${CAMERA_APP} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC") file(GLOB QML_JS_FILES *.qml *.js) install(FILES ${QML_JS_FILES} DESTINATION ${CAMERA_APP_DIR} ) set(ASSETS_DIR assets) install(DIRECTORY ${ASSETS_DIR} DESTINATION ${CAMERA_APP_DIR} ) install(DIRECTORY ${THEME_DIR} DESTINATION ${CAMERA_APP_DIR} ) set(DESKTOP_FILE camera-app.desktop) file(REMOVE ${CMAKE_CURRENT_BINARY_DIR}/${DESKTOP_FILE}) file(STRINGS ${DESKTOP_FILE}.in DESKTOP_FILE_CONTENTS) foreach(LINE ${DESKTOP_FILE_CONTENTS}) string(REGEX REPLACE "tr\\\(\"(.*)\"\\\)" "\\1" LINE "${LINE}") string(CONFIGURE "${LINE}" LINE) file(APPEND ${CMAKE_CURRENT_BINARY_DIR}/${DESKTOP_FILE} "${LINE}\n") endforeach(LINE) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${DESKTOP_FILE} DESTINATION ${CMAKE_INSTALL_DATADIR}/applications ) add_subdirectory(CameraApp) add_subdirectory(click) add_subdirectory(desktop) file(GLOB_RECURSE I18N_SRC_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} **.qml **.desktop.in) list(SORT I18N_SRC_FILES) # for dh_translations to extract the domain # (regarding syntax consistency, see http://pad.lv/1181187) set (GETTEXT_PACKAGE "camera-app") add_subdirectory(po) enable_testing() add_subdirectory(tests) camera-app-2.9.1+14.04.20140331/run_tests.sh0000755000015201777760000000032712316315040020505 0ustar pbusernogroup00000000000000#!/bin/bash export PATH=/opt/qt5/bin:$PATH cd tests/autopilot echo running with arg: $1 if [ "$1" == "" ]; then autopilot run camera_app else autopilot run -o ../../$1 -f xml -r -rd ../../ camera_app fi exit 0 camera-app-2.9.1+14.04.20140331/CameraToolbarButton.qml0000644000015201777760000000162712316315040022546 0ustar pbusernogroup00000000000000/* * Copyright 2012 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 AbstractButton { property alias iconWidth: icon.width property alias iconHeight: icon.height property alias iconSource: icon.source width: icon.paintedWidth height: icon.paintedHeight Image { id: icon } } camera-app-2.9.1+14.04.20140331/StopWatch.qml0000644000015201777760000000402612316315040020547 0ustar pbusernogroup00000000000000/* * Copyright 2012 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 Item { property int time: 0 property alias elapsed: count.text property alias fontSize: count.fontSize property alias labelRotation: count.rotation height: labelRotation % 180 === 0 ? intern.totalLabelHeight : intern.totalLabelWidth width: labelRotation % 180 === 0 ? intern.totalLabelWidth : intern.totalLabelHeight // FIXME: define all properties in one block Label { id: count anchors.centerIn: parent color: "white" fontSize: "medium" text: intern.formattedTime() } QtObject { id: intern property int totalLabelHeight: count.paintedHeight + 8 * 2 property int totalLabelWidth: count.paintedWidth + 22 * 2 function pad(text, length) { while (text.length < length) text = '0' + text; return text; } function formattedTime() { var prefix = "" if (time < 0) { prefix = "-"; time = -time; } var divisor_for_minutes = time % (60 * 60); var minutes = String(Math.floor(divisor_for_minutes / 60)); var divisor_for_seconds = divisor_for_minutes % 60; var seconds = String(Math.ceil(divisor_for_seconds)); return "%1%2:%3".arg(prefix).arg(intern.pad(minutes, 2)).arg(intern.pad(seconds, 2)); } } } camera-app-2.9.1+14.04.20140331/click-build.sh0000755000015201777760000000046712316315040020646 0ustar pbusernogroup00000000000000#!/bin/sh export LC_ALL=C BZR_SOURCE=${1:-lp:camera-app} CLICKARCH=armhf rm -rf $CLICKARCH-build mkdir $CLICKARCH-build cd $CLICKARCH-build cmake .. -DINSTALL_TESTS=off -DCLICK_MODE=on \ -DBZR_REVNO=$(cd ..; bzr revno) \ -DBZR_SOURCE="$BZR_SOURCE" make DESTDIR=../package install cd .. click build package camera-app-2.9.1+14.04.20140331/click/0000755000015201777760000000000012316315300017202 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/click/camera-apparmor.json0000644000015201777760000000030212316315040023140 0ustar pbusernogroup00000000000000{ "policy_groups": ["picture_files", "camera", "audio", "usermetrics" ], "policy_version": 1.1 } camera-app-2.9.1+14.04.20140331/click/manifest.json.in0000644000015201777760000000121612316315040022311 0ustar pbusernogroup00000000000000{ "description": "An application to take pictures and videos with the device cameras", "framework": "ubuntu-sdk-14.04-dev1", "architecture": "armhf", "hooks": { "camera": { "apparmor": "camera-apparmor.json", "desktop": "@CMAKE_INSTALL_DATADIR@/applications/@DESKTOP_FILE@" } }, "icon": "@CAMERA_ICON@", "maintainer": "Ubuntu Developers ", "name": "com.ubuntu.camera", "title": "Camera", "version": "2.9.1.@BZR_REVNO@", "x-source": { "vcs-bzr": "@BZR_SOURCE@", "vcs-bzr-revno": "@BZR_REVNO@" } } camera-app-2.9.1+14.04.20140331/click/CMakeLists.txt0000644000015201777760000000060412316315040021743 0ustar pbusernogroup00000000000000if(CLICK_MODE) if(NOT BZR_REVNO) set(BZR_REVNO "latest") endif(NOT BZR_REVNO) configure_file(manifest.json.in ${CMAKE_CURRENT_BINARY_DIR}/manifest.json) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/manifest.json DESTINATION ${CMAKE_INSTALL_PREFIX}) install(FILES camera-apparmor.json DESTINATION ${CMAKE_INSTALL_PREFIX}) endif(CLICK_MODE) camera-app-2.9.1+14.04.20140331/DeviceOrientation.qml0000644000015201777760000000306412316315040022247 0ustar pbusernogroup00000000000000/* * 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 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 QtQuick.Window 2.0 // We must use Item element because Screen component does not works with QtObject Item { property string naturalOrientation: Screen.primaryOrientation == Qt.LandscapeOrientation ? "landscape" : "portrait" /* Is the device currently rotated to be in lanscape orientation ? */ property bool isLandscape: Screen.orientation == Qt.LandscapeOrientation || Screen.orientation == Qt.InvertedLandscapeOrientation /* Is the device currently rotated upside down ? */ property bool isInverted: Screen.orientation == Qt.InvertedLandscapeOrientation || Screen.orientation == Qt.InvertedPortraitOrientation /* The rotation angle in 90 degrees increments with respect to the device being in its default position */ property int rotationAngle: Screen.angleBetween(Screen.primaryOrientation, Screen.orientation) visible: false } camera-app-2.9.1+14.04.20140331/camera-app.desktop.in0000644000015201777760000000037112316315040022125 0ustar pbusernogroup00000000000000[Desktop Entry] Type=Application Name=tr("Camera") GenericName=camera-app Comment=tr("Camera application") Exec=@DESKTOP_EXEC@ %u Terminal=false Icon=@CAMERA_ICON@ X-Ubuntu-Touch=true X-Ubuntu-Gettext-Domain=camera-app X-Ubuntu-Single-Instance=true camera-app-2.9.1+14.04.20140331/config.h.in0000644000015201777760000000315212316315040020142 0ustar pbusernogroup00000000000000/* * Copyright (C) 2012 Canonical, Ltd. * * Authors: * Ugo Riboni * * 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 . */ // Qt #include #include inline bool isClick() { #ifdef CLICK_MODE return true; #else return false; #endif } inline bool isRunningInstalled() { static bool installed = (QCoreApplication::applicationDirPath() == QDir(("@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_BINDIR@")).canonicalPath()); return installed; } inline QString cameraAppDirectory() { if (isClick()) { return QDir::currentPath(); } else if (isRunningInstalled()) { return QString("@CMAKE_INSTALL_PREFIX@/@CAMERA_APP_DIR@/"); } else { return QString("@CMAKE_SOURCE_DIR@/"); } } inline QString cameraAppImportDirectory() { return QDir::currentPath() + "/@PLUGIN_BASE@"; } inline QString sourceQml() { static QString qmlFile("camera-app.qml"); if (isClick()) { return QDir::currentPath() + "/" + qmlFile; } else { return qmlFile; } } camera-app-2.9.1+14.04.20140331/Snapshot.qml0000644000015201777760000000462412316315040020436 0ustar pbusernogroup00000000000000/* * Copyright (C) 2012 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 Item { id: snapshotRoot property alias source: snapshot.source property alias sliding: shoot.running property int orientation property ViewFinderGeometry geometry property bool deviceDefaultIsPortrait: true Item { id: container anchors.left: parent.left anchors.right: parent.right height:parent.height y: 0 Image { id: snapshot anchors.centerIn: parent rotation: snapshotRoot.orientation * -1 asynchronous: true opacity: 0.0 fillMode: Image.PreserveAspectFit smooth: false width: deviceDefaultIsPortrait ? geometry.height : geometry.width height: deviceDefaultIsPortrait ? geometry.width : geometry.height sourceSize.width: width sourceSize.height: height onStatusChanged: if (status == Image.Ready) shoot.restart() } } SequentialAnimation { id: shoot PropertyAction { target: snapshot; property: "opacity"; value: 1.0 } ParallelAnimation { NumberAnimation { target: container; property: "y"; to: container.parent.height; duration: 500; easing.type: Easing.InCubic } SequentialAnimation { PauseAnimation { duration: 0 } NumberAnimation { target: snapshot; property: "opacity"; to: 0.0; duration: 500; easing.type: Easing.InCubic } } } PropertyAction { target: snapshot; property: "opacity"; value: 0.0 } PropertyAction { target: snapshot; property: "source"; value: ""} PropertyAction { target: container; property: "y"; value: 0 } } } camera-app-2.9.1+14.04.20140331/camera-app.qml0000644000015201777760000003300512316315060020642 0ustar pbusernogroup00000000000000/* * Copyright 2012 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 import Ubuntu.Unity.Action 1.1 as UnityActions import QtMultimedia 5.0 import CameraApp 0.1 import QtQuick.Window 2.0 import UserMetrics 0.1 Rectangle { id: main objectName: "main" width: application.desktopMode ? units.gu(120) : (device.naturalOrientation == "portrait" ? units.gu(40) : units.gu(80)) height: application.desktopMode ? units.gu(60) : (device.naturalOrientation == "portrait" ? units.gu(80) : units.gu(40)) color: "#252423" UnityActions.ActionManager { actions: [ UnityActions.Action { text: i18n.tr("Flash") keywords: i18n.tr("Light;Dark") onTriggered: toolbar.switchFlashMode() }, UnityActions.Action { text: i18n.tr("Flip Camera") keywords: i18n.tr("Front Facing;Back Facing") onTriggered: toolbar.switchCamera() }, UnityActions.Action { text: i18n.tr("Shutter") keywords: i18n.tr("Take a Photo;Snap;Record") onTriggered: toolbar.shoot() }, UnityActions.Action { text: i18n.tr("Mode") keywords: i18n.tr("Stills;Video") onTriggered: toolbar.changeRecordMode() enabled: false }, UnityActions.Action { text: i18n.tr("White Balance") keywords: i18n.tr("Lighting Condition;Day;Cloudy;Inside") } ] onQuit: { Qt.quit() } } Component.onCompleted: { i18n.domain = "camera-app"; camera.start(); } DeviceOrientation { id: device } Camera { id: camera flash.mode: Camera.FlashOff captureMode: Camera.CaptureStillImage focus.focusMode: Camera.FocusAuto //TODO: Not sure if Continuous focus is better here focus.focusPointMode: application.desktopMode ? Camera.FocusPointAuto : (focusRing.opacity > 0 ? Camera.FocusPointCustom : Camera.FocusPointAuto) property AdvancedCameraSettings advanced: AdvancedCameraSettings { camera: camera } /* Use only digital zoom for now as it's what phone cameras mostly use. TODO: if optical zoom is available, maximumZoom should be the combined range of optical and digital zoom and currentZoom should adjust the two transparently based on the value. */ property alias currentZoom: camera.digitalZoom property alias maximumZoom: camera.maximumDigitalZoom imageCapture { onCaptureFailed: { console.log("Capture failed for request " + requestId + ": " + message); focusRing.opacity = 0.0; } onImageCaptured: { focusRing.opacity = 0.0; snapshot.source = preview; } onImageSaved: { metricPhotos.increment() console.log("Picture saved as " + path) } } videoRecorder { onRecorderStateChanged: { if (videoRecorder.recorderState === CameraRecorder.StoppedState) metricVideos.increment() } } } Connections { target: Qt.application onActiveChanged: { if (Qt.application.active) camera.start() else if (!application.desktopMode) camera.stop() } } VideoOutput { id: viewFinder property bool shouldBeCentered: device.isLandscape || ((viewFinder.width > viewFinderGeometry.width) && device.naturalOrientation === "portrait") property real anchoredY: viewFinderGeometry.y * (device.isInverted ? +1 : -1) property real anchoredX: viewFinderGeometry.x * (device.isInverted ? +1 : -1) x: viewFinder.shouldBeCentered ? 0 : viewFinder.anchoredX y: viewFinder.shouldBeCentered || device.naturalOrientation === "landscape" ? 0 : viewFinder.anchoredY width: parent.width height: parent.height source: camera /* This rotation need to be applied since the camera hardware in the Galaxy Nexus phone is mounted at an angle inside the device, so the video feed is rotated too. FIXME: This should come from a system configuration option so that we don't have to have a different codebase for each different device we want to run on */ orientation: device.naturalOrientation === "portrait" ? -90 : 0 /* Convenience item tracking the real position and size of the real video feed. Having this helps since these values depend on a lot of rules: - the feed is automatically scaled to fit the viewfinder - the viewfinder might apply a rotation to the feed, depending on device orientation - the resolution and aspect ratio of the feed changes depending on the active camera The item is also separated in a component so it can be unit tested. */ ViewFinderGeometry { id: viewFinderGeometry anchors.centerIn: parent cameraResolution: camera.advanced.resolution viewFinderHeight: viewFinder.height viewFinderWidth: viewFinder.width viewFinderOrientation: viewFinder.orientation Item { id: itemScale visible: false } PinchArea { id: area state: device.isLandscape ? "split" : "joined" anchors.left: viewFinderGeometry.left anchors.right: viewFinderGeometry.right pinch.minimumScale: 0.0 pinch.maximumScale: camera.maximumZoom pinch.target: itemScale states: [ State { name: "joined" PropertyChanges { target: area height: zoomControl.y } AnchorChanges { target: area; anchors.top: viewFinderGeometry.top } }, State { name: "split" PropertyChanges { target: area y: device.isInverted ? zoomControl.height : toolbar.height height: viewFinderGeometry.height - zoomControl.height - toolbar.height } AnchorChanges { target: area; anchors.top: undefined } } ] onPinchStarted: { if (!application.desktopMode) focusRing.center = main.mapFromItem(area, pinch.center.x, pinch.center.y); } onPinchFinished: { if (!application.desktopMode) { focusRing.restartTimeout() var center = pinch.center var focusPoint = viewFinder.mapPointToSourceNormalized(pinch.center); camera.focus.customFocusPoint = focusPoint; } } onPinchUpdated: { if (!application.desktopMode) { focusRing.center = main.mapFromItem(area, pinch.center.x, pinch.center.y); camera.currentZoom = itemScale.scale } } MouseArea { id: mouseArea anchors.fill: parent onPressed: { if (!application.desktopMode && !area.pinch.active) focusRing.center = main.mapFromItem(area, mouse.x, mouse.y); } onReleased: { if (!application.desktopMode && !area.pinch.active) { var focusPoint = viewFinder.mapPointToSourceNormalized(Qt.point(mouse.x, mouse.y)) focusRing.restartTimeout() camera.focus.customFocusPoint = focusPoint; } } drag { target: application.desktopMode ? "" : focusRing minimumY: area.y - focusRing.height / 2 maximumY: area.y + area.height - focusRing.height / 2 minimumX: area.x - focusRing.width / 2 maximumX: area.x + area.width - focusRing.width / 2 } } } Snapshot { id: snapshot anchors.left: parent.left anchors.right: parent.right height: parent.height y: 0 orientation: viewFinder.orientation geometry: viewFinderGeometry deviceDefaultIsPortrait: device.naturalOrientation === "portrait" } } } FocusRing { id: focusRing height: units.gu(13) width: units.gu(13) opacity: 0.0 } Item { id: controlsArea anchors.centerIn: parent height: (device.naturalOrientation == "portrait") ? parent.height : parent.width width: (device.naturalOrientation == "portrait") ? parent.width : parent.height rotation: device.naturalOrientation == "landscape" ? ((device.isInverted) ? 90 : -90) : (!device.isLandscape ? (device.isInverted ? 180 : 0) : (device.isInverted ? 0 : 180)) state: device.isLandscape ? "split" : "joined" states: [ State { name: "joined" AnchorChanges { target: zoomControl; anchors.bottom: toolbar.top } AnchorChanges { target: stopWatch anchors.top: parent.top anchors.horizontalCenter: parent.horizontalCenter } }, State { name: "split" AnchorChanges { target: zoomControl; anchors.top: parent.top } AnchorChanges { target: stopWatch anchors.right: parent.right anchors.verticalCenter: parent.verticalCenter } } ] ZoomControl { id: zoomControl maximumValue: camera.maximumZoom height: units.gu(4.5) anchors.left: parent.left anchors.right: parent.right anchors.leftMargin: units.gu(0.75) anchors.rightMargin: units.gu(0.75) anchors.bottomMargin: controlsArea.state == "split" ? units.gu(3.25) : units.gu(0.5) anchors.topMargin: controlsArea.state == "split" ? units.gu(3.25) : units.gu(0.5) visible: camera.maximumZoom > 1 // Create a two way binding between the zoom control value and the actual camera zoom, // so that they can stay in sync when the zoom is changed from the UI or from the hardware Binding { target: zoomControl; property: "value"; value: camera.currentZoom } Binding { target: camera; property: "currentZoom"; value: zoomControl.value } iconsRotation: device.rotationAngle - controlsArea.rotation } Toolbar { id: toolbar anchors.bottom: parent.bottom anchors.left: parent.left anchors.right: parent.right anchors.bottomMargin: units.gu(1) anchors.leftMargin: units.gu(1) anchors.rightMargin: units.gu(1) camera: camera canCapture: camera.imageCapture.ready && !snapshot.sliding iconsRotation: device.rotationAngle - controlsArea.rotation } StopWatch { id: stopWatch opacity: camera.videoRecorder.recorderState == CameraRecorder.StoppedState ? 0.0 : 1.0 time: camera.videoRecorder.duration / 1000 labelRotation: device.rotationAngle - controlsArea.rotation anchors.topMargin: units.gu(2) anchors.rightMargin: units.gu(2) } } Metric { id: metricPhotos name: "camera-photos" format: "%1 photos taken today" emptyFormat: "No photos taken today" domain: "camera-app" minimum: 0.0 } Metric { id: metricVideos name: "camera-videos" format: "%1 videos recorded today" emptyFormat: "No videos recorded today" domain: "camera-app" minimum: 0.0 } } camera-app-2.9.1+14.04.20140331/main.cpp0000644000015201777760000000200612316315040017544 0ustar pbusernogroup00000000000000/* * Copyright (C) 2012 Canonical, Ltd. * * Authors: * Ugo Riboni * * 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 . */ // Qt #include // local #include "cameraapplication.h" #include "config.h" #include int main(int argc, char** argv) { QGuiApplication::setApplicationName("Camera App"); CameraApplication application(argc, argv); if (!application.setup()) { return 0; } return application.exec(); } camera-app-2.9.1+14.04.20140331/ZoomControl.qml0000644000015201777760000000554312316315040021125 0ustar pbusernogroup00000000000000/* * Copyright 2012 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// as SDK Item { id: zoom property alias maximumValue: slider.maximumValue property alias value: slider.value property real zoomStep: (slider.maximumValue - slider.minimumValue) / 20 property int iconsRotation AbstractButton { id: minus objectName: "zoomMinus" anchors.left: parent.left anchors.verticalCenter: parent.verticalCenter width: minusIcon.width height: minusIcon.height onClicked: slider.value = Math.max(value - zoom.zoomStep, slider.minimumValue) onPressedChanged: if (pressed) minusTimer.restart(); else minusTimer.stop(); rotation: iconsRotation Image { id: minusIcon anchors.centerIn: parent source: "assets/zoom_minus.png" sourceSize.height: units.gu(2) smooth: true } Timer { id: minusTimer interval: 40 repeat: true onTriggered: slider.value = Math.max(value - zoom.zoomStep, slider.minimumValue) } } Slider { id: slider style: ThinSliderStyle {} anchors.left: minus.right anchors.right: plus.left anchors.verticalCenter: parent.verticalCenter live: true minimumValue: 1.0 // No zoom => 1.0 zoom factor value: minimumValue height: slider.implicitHeight + units.gu(4) } AbstractButton { id: plus objectName: "zoomPlus" anchors.right: parent.right anchors.verticalCenter: parent.verticalCenter width: plusIcon.width height: plusIcon.height onClicked: slider.value = Math.min(value + zoom.zoomStep, slider.maximumValue) onPressedChanged: if (pressed) plusTimer.restart(); else plusTimer.stop(); rotation: iconsRotation Image { id: plusIcon anchors.centerIn: parent source: "assets/zoom_plus.png" sourceSize.height: units.gu(2) smooth: true } Timer { id: plusTimer interval: 40 repeat: true onTriggered: slider.value = Math.min(value + zoom.zoomStep, slider.maximumValue) } } } camera-app-2.9.1+14.04.20140331/camera-app.qmlproject0000644000015201777760000000054112316315040022226 0ustar pbusernogroup00000000000000/* File generated by Qt Creator, version 2.5.2 */ import QmlProject 1.1 Project { mainFile: "camera-app.qml" /* Include .qml, .js, and image files from current directory and subdirectories */ QmlFiles { directory: "." } JavaScriptFiles { directory: "." } ImageFiles { directory: ["assets"] } } camera-app-2.9.1+14.04.20140331/po/0000755000015201777760000000000012316315300016533 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/po/ar.po0000644000015201777760000000326012316315040017477 0ustar pbusernogroup00000000000000# Arabic translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-06-20 09:17+0000\n" "Last-Translator: Ibrahim Saed \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "الكاميرا" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "تطبيق الكاميرا" #: camera-app.qml:38 msgid "Flash" msgstr "الوميض" #: camera-app.qml:39 msgid "Light;Dark" msgstr "الإضاءة;الظلمة" #: camera-app.qml:42 msgid "Flip Camera" msgstr "قلب الكاميرا" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "الكاميرا الأمامية;الكاميرا الخلÙية" #: camera-app.qml:46 msgid "Shutter" msgstr "إلتقاط" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "إلتقط صورة;سجل Ùيديو" #: camera-app.qml:50 msgid "Mode" msgstr "الوضع" #: camera-app.qml:51 msgid "Stills;Video" msgstr "صور ثابتة;Ùيديو" #: camera-app.qml:54 msgid "White Balance" msgstr "موازنة اللون الأبيض" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "حالة الإضاءة;نهار;قاتم" camera-app-2.9.1+14.04.20140331/po/camera-app.pot0000644000015201777760000000227012316315040021267 0ustar pbusernogroup00000000000000# Ubuntu camera app translation. # Copyright 2013 Canonical Ltd. # This file is distributed under the same license as the camera-app package. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-07-11 11:18+0200\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" #: camera-app.desktop.in:3 msgid "Camera" msgstr "" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "" #: camera-app.qml:38 msgid "Flash" msgstr "" #: camera-app.qml:39 msgid "Light;Dark" msgstr "" #: camera-app.qml:42 msgid "Flip Camera" msgstr "" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "" #: camera-app.qml:46 msgid "Shutter" msgstr "" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "" #: camera-app.qml:50 msgid "Mode" msgstr "" #: camera-app.qml:51 msgid "Stills;Video" msgstr "" #: camera-app.qml:54 msgid "White Balance" msgstr "" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "" camera-app-2.9.1+14.04.20140331/po/gl.po0000644000015201777760000000306712316315040017504 0ustar pbusernogroup00000000000000# Galician translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-10-01 15:17+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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Cámara" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Aplicativo para cámaras" #: camera-app.qml:38 msgid "Flash" msgstr "Flash" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Claro;Escuro" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Inverter cámara" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Orientación frontal;Orientación traseira" #: camera-app.qml:46 msgid "Shutter" msgstr "Obturador" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Facer unha foto;Tomar;Gravar" #: camera-app.qml:50 msgid "Mode" msgstr "Modo" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Instantáneas;Vídeo" #: camera-app.qml:54 msgid "White Balance" msgstr "Balance de brancos" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Condicións de luz;Día;Nubrado;Interior" camera-app-2.9.1+14.04.20140331/po/br.po0000644000015201777760000000311612316315040017500 0ustar pbusernogroup00000000000000# Breton translation for camera-app # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2014-03-10 12:49+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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Kamera" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Arload kamera" #: camera-app.qml:38 msgid "Flash" msgstr "Luc'heder" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Sklaer;Teñval" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Treiñ ar c'hamera" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Ferenn diaraok;Ferenn diadreñv" #: camera-app.qml:46 msgid "Shutter" msgstr "Stanker" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Tapout ul luc'hskeudenn;Dleizhennañ;Enrollañ" #: camera-app.qml:50 msgid "Mode" msgstr "Mod" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Skeudennoù difiñv;Video" #: camera-app.qml:54 msgid "White Balance" msgstr "Mentel ar gwenn" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Doare ar gouloù;Deiz;Koumoulek;Diabarzh" camera-app-2.9.1+14.04.20140331/po/km.po0000644000015201777760000000344612316315040017512 0ustar pbusernogroup00000000000000# Khmer translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-10-11 04:10+0000\n" "Last-Translator: Khoem Sokhem \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "ម៉ាស៊ីន​ážâ€‹áž" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "កម្មវិធី​ម៉ាស៊ីន​ážáž" #: camera-app.qml:38 msgid "Flash" msgstr "បាញ់​ពន្លឺ" #: camera-app.qml:39 msgid "Light;Dark" msgstr "ភ្លឺ;ងងឹáž" #: camera-app.qml:42 msgid "Flip Camera" msgstr "ážáŸ’រឡប់​ម៉ាស៊ីន​ážáž" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "មុáž;ក្រោយ" #: camera-app.qml:46 msgid "Shutter" msgstr "គម្រប" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "ážážâ€‹ážšáž¼áž”;ážáž;ážáž" #: camera-app.qml:50 msgid "Mode" msgstr "របៀប" #: camera-app.qml:51 msgid "Stills;Video" msgstr "រូប​ážáŸážš;វីដáŸáž¢áž¼" #: camera-app.qml:54 msgid "White Balance" msgstr "ážáž»áž›áŸ’យភាព​ពណ៌ស" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "លក្ážážážŽáŸ’ឌ​ពន្លឺ;ážáŸ’ងៃ;ពពក;ážáž¶áž„​ក្នុង" camera-app-2.9.1+14.04.20140331/po/sl.po0000644000015201777760000000274512316315040017522 0ustar pbusernogroup00000000000000# Slovenian translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-09-28 10:01+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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Fotoaparat" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Program za fotoaparat" #: camera-app.qml:38 msgid "Flash" msgstr "Bliskavica" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Svetlo;Temno" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Obrni fotoaparat" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "" #: camera-app.qml:46 msgid "Shutter" msgstr "Zaslonka" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "" #: camera-app.qml:50 msgid "Mode" msgstr "NaÄin" #: camera-app.qml:51 msgid "Stills;Video" msgstr "" #: camera-app.qml:54 msgid "White Balance" msgstr "Ravnovesje beline" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Svetlobni pogoji;Dan;OblaÄno;Znotraj" camera-app-2.9.1+14.04.20140331/po/tr.po0000644000015201777760000000307212316315040017523 0ustar pbusernogroup00000000000000# Turkish translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2014-01-14 21:44+0000\n" "Last-Translator: Muhammed Yüce \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "FotoÄŸraf Makinesi" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Kamera uygulaması" #: camera-app.qml:38 msgid "Flash" msgstr "FlaÅŸ" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Aydınlık;Karanlık" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Kamerayı Ters Çevir" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Ön Kamera:Arka Kamera" #: camera-app.qml:46 msgid "Shutter" msgstr "Deklanşör" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "FotoÄŸraf Çek;Yakala;Kaydet" #: camera-app.qml:50 msgid "Mode" msgstr "Kip" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Sabitler;Video" #: camera-app.qml:54 msgid "White Balance" msgstr "Beyaz Dengesi" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Işık KoÅŸulu;Gün;Bulutlu;İçeride" camera-app-2.9.1+14.04.20140331/po/id.po0000644000015201777760000000253612316315040017476 0ustar pbusernogroup00000000000000# Indonesian translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-09-21 04:23+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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "" #: camera-app.qml:38 msgid "Flash" msgstr "" #: camera-app.qml:39 msgid "Light;Dark" msgstr "" #: camera-app.qml:42 msgid "Flip Camera" msgstr "" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "" #: camera-app.qml:46 msgid "Shutter" msgstr "" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "" #: camera-app.qml:50 msgid "Mode" msgstr "" #: camera-app.qml:51 msgid "Stills;Video" msgstr "" #: camera-app.qml:54 msgid "White Balance" msgstr "" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "" camera-app-2.9.1+14.04.20140331/po/zh_TW.po0000644000015201777760000000303712316315040020132 0ustar pbusernogroup00000000000000# Chinese (Traditional) translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-07-13 15:46+0000\n" "Last-Translator: Cheng-Chia Tseng \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "相機" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "相機應用程å¼" #: camera-app.qml:38 msgid "Flash" msgstr "閃光" #: camera-app.qml:39 msgid "Light;Dark" msgstr "亮;æš—" #: camera-app.qml:42 msgid "Flip Camera" msgstr "翻轉相機" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "å‰é¢;背é¢" #: camera-app.qml:46 msgid "Shutter" msgstr "å¿«é–€" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "照相;å¿«ç…§;錄影" #: camera-app.qml:50 msgid "Mode" msgstr "模å¼" #: camera-app.qml:51 msgid "Stills;Video" msgstr "éœæ­¢åœ–åƒ;影片" #: camera-app.qml:54 msgid "White Balance" msgstr "白平衡" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "光照情æ³;日光;陰天;室內" camera-app-2.9.1+14.04.20140331/po/az.po0000644000015201777760000000302612316315040017507 0ustar pbusernogroup00000000000000# Azerbaijani translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-11-20 10:58+0000\n" "Last-Translator: Emin Mastizada \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Kamera" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Kamera proqramı" #: camera-app.qml:38 msgid "Flash" msgstr "İşıq" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Açıq;Tünd" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Kameranı Çevir" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Ön Üz;Arxa Üz" #: camera-app.qml:46 msgid "Shutter" msgstr "Çəkim" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Şəkil Şək;Qap;Yaz" #: camera-app.qml:50 msgid "Mode" msgstr "Mod" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Kadrlar" #: camera-app.qml:54 msgid "White Balance" msgstr "AÄŸ Balansı" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "İşıqlandırma ÅŸÉ™rti;Gündüz;Buludlu;Qapalı yer" camera-app-2.9.1+14.04.20140331/po/my.po0000644000015201777760000000330312316315040017520 0ustar pbusernogroup00000000000000# Burmese translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-10-09 11:12+0000\n" "Last-Translator: Pyae Sone \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "ကင်မရာ" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "ကင်မရာ application" #: camera-app.qml:38 msgid "Flash" msgstr "Flash" #: camera-app.qml:39 msgid "Light;Dark" msgstr "အလင်း;အမှောင်" #: camera-app.qml:42 msgid "Flip Camera" msgstr "" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "အရှေ့သို့မျက်နှာမှုလျက်;အနောက်သို့မျက်နှာမှုလျက်" #: camera-app.qml:46 msgid "Shutter" msgstr "" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "ဓာá€á€ºá€•ုံá€á€…်ပုံရိုက်မည်;ဖျက်á€á€”ဲ;မှá€á€ºá€á€™á€ºá€¸á€šá€°á€™á€Šá€º" #: camera-app.qml:50 msgid "Mode" msgstr "စနစ်" #: camera-app.qml:51 msgid "Stills;Video" msgstr "" #: camera-app.qml:54 msgid "White Balance" msgstr "" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "" camera-app-2.9.1+14.04.20140331/po/hu.po0000644000015201777760000000305512316315040017513 0ustar pbusernogroup00000000000000# Hungarian translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-06-16 23:00+0000\n" "Last-Translator: Bence Lukács \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Kamera" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Kamera alkalmazás" #: camera-app.qml:38 msgid "Flash" msgstr "Vaku" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Világos;Sötét" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Kamera váltása" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "ElÅ‘re nézÅ‘;Hátra nézÅ‘" #: camera-app.qml:46 msgid "Shutter" msgstr "Rekesz" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Fotó készítése;Kattintás;Felvétel" #: camera-app.qml:50 msgid "Mode" msgstr "Mód" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Ãllóképek;Videó" #: camera-app.qml:54 msgid "White Balance" msgstr "Fehéregyensúly" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Fényviszonyok;Napos;FelhÅ‘s;BelsÅ‘ tér" camera-app-2.9.1+14.04.20140331/po/cs.po0000644000015201777760000000307112316315040017502 0ustar pbusernogroup00000000000000# Czech translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2014-01-08 09:31+0000\n" "Last-Translator: Tadeáš Paří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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Fotoaparát" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Aplikace kamera" #: camera-app.qml:38 msgid "Flash" msgstr "Blesk" #: camera-app.qml:39 msgid "Light;Dark" msgstr "SvÄ›tlost;Tmavost" #: camera-app.qml:42 msgid "Flip Camera" msgstr "PÅ™epnout kameru" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "PÅ™ední kompozice;Zadní kompozice" #: camera-app.qml:46 msgid "Shutter" msgstr "Clona" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Vyfotit;Vyfotografovat;Nahrát" #: camera-app.qml:50 msgid "Mode" msgstr "Režim" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Obrázek;Video" #: camera-app.qml:54 msgid "White Balance" msgstr "Vyvážení bílé" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "SvÄ›telné podmínky;Den;OblaÄno;UvnitÅ™" camera-app-2.9.1+14.04.20140331/po/zh_CN.po0000644000015201777760000000306512316315040020101 0ustar pbusernogroup00000000000000# Chinese (Simplified) translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-06-14 17:19+0000\n" "Last-Translator: Anthony Wong \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "相机" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "相机应用程åº" #: camera-app.qml:38 msgid "Flash" msgstr "闪光ç¯" #: camera-app.qml:39 msgid "Light;Dark" msgstr "亮;æš—" #: camera-app.qml:42 msgid "Flip Camera" msgstr "åˆ‡æ¢æ‘„åƒå¤´" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "å‰ç½®é•œå¤´;åŽç½®é•œå¤´" #: camera-app.qml:46 msgid "Shutter" msgstr "å¿«é—¨" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "æ‹ä¸€å¼ ç…§ç‰‡;æ‹ç…§;记录" #: camera-app.qml:50 msgid "Mode" msgstr "模å¼" #: camera-app.qml:51 msgid "Stills;Video" msgstr "陿­¢;视频" #: camera-app.qml:54 msgid "White Balance" msgstr "白平衡" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "照明æ¡ä»¶;白天;多云;室内" camera-app-2.9.1+14.04.20140331/po/nl.po0000644000015201777760000000252412316315040017510 0ustar pbusernogroup00000000000000# Dutch translation for camera-app # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2014-01-14 21:36+0000\n" "Last-Translator: FULL NAME \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "" #: camera-app.qml:38 msgid "Flash" msgstr "" #: camera-app.qml:39 msgid "Light;Dark" msgstr "" #: camera-app.qml:42 msgid "Flip Camera" msgstr "" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "" #: camera-app.qml:46 msgid "Shutter" msgstr "" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "" #: camera-app.qml:50 msgid "Mode" msgstr "" #: camera-app.qml:51 msgid "Stills;Video" msgstr "" #: camera-app.qml:54 msgid "White Balance" msgstr "" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "" camera-app-2.9.1+14.04.20140331/po/en_AU.po0000644000015201777760000000305112316315040020062 0ustar pbusernogroup00000000000000# English (Australia) translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-06-14 11:37+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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Camera" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Camera application" #: camera-app.qml:38 msgid "Flash" msgstr "Flash" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Light;Dark" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Flip Camera" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Front Facing;Back Facing" #: camera-app.qml:46 msgid "Shutter" msgstr "Shutter" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Take a Photo;Snap;Record" #: camera-app.qml:50 msgid "Mode" msgstr "Mode" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Stills;Video" #: camera-app.qml:54 msgid "White Balance" msgstr "White Balance" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Lighting Condition;Day;Cloudy;Inside" camera-app-2.9.1+14.04.20140331/po/lv.po0000644000015201777760000000312312316315040017514 0ustar pbusernogroup00000000000000# Latvian translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2014-01-18 16:43+0000\n" "Last-Translator: JÄnis-Marks Gailis \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Fotokamera" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "ApplikÄcija Fotokamera" #: camera-app.qml:38 msgid "Flash" msgstr "Zibspuldze" #: camera-app.qml:39 msgid "Light;Dark" msgstr "GaiÅ¡s;TumÅ¡s" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Spiest pogu" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Uz priekÅ¡u vÄ“rsta;Atpakaļ vÄ“rsta" #: camera-app.qml:46 msgid "Shutter" msgstr "SlÄ“dzis" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "FotogrÄfÄ“t;KnipsÄ“t;IerakstÄ«t" #: camera-app.qml:50 msgid "Mode" msgstr "Režīms" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Kadri;Video" #: camera-app.qml:54 msgid "White Balance" msgstr "BaltÄs krÄsas balanss" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Gaismas apstÄkļi;Diena;MÄkoņains;IekÅ¡Ä" camera-app-2.9.1+14.04.20140331/po/ta.po0000644000015201777760000000376712316315040017515 0ustar pbusernogroup00000000000000# Tamil translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-10-25 06:43+0000\n" "Last-Translator: Thangamani Arun - தஙà¯à®•மணி à®…à®°à¯à®£à¯ \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "பà¯à®•ைபà¯à®ªà®Ÿ கரà¯à®µà®¿" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "பà¯à®•ைபà¯à®ªà®Ÿ கரà¯à®µà®¿ பயனà¯à®ªà®¾à®Ÿà¯" #: camera-app.qml:38 msgid "Flash" msgstr "மினà¯à®’ளி" #: camera-app.qml:39 msgid "Light;Dark" msgstr "லேசானா; இரà¯à®£à¯à®Ÿ" #: camera-app.qml:42 msgid "Flip Camera" msgstr "பà¯à®•ைபà¯à®ªà®Ÿ கரà¯à®µà®¿à®¯à¯ˆ திரà¯à®ªà¯à®ªà¯" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "à®®à¯à®©à¯ நாேகà¯à®•ிய; பின௠நாேகà¯à®•ிய" #: camera-app.qml:46 msgid "Shutter" msgstr "திரை" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "படம௠பிடி;படம௠எடà¯; பட பதிவà¯à®šà¯†à®¯à¯" #: camera-app.qml:50 msgid "Mode" msgstr "பாஙà¯à®•à¯" #: camera-app.qml:51 msgid "Stills;Video" msgstr "பà¯à®•ைபà¯à®ªà®Ÿà®™à¯à®•ளà¯; வீடியோ" #: camera-app.qml:54 msgid "White Balance" msgstr "வெளà¯à®³à¯ˆ சமனà¯" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "வெளிசà¯à®š நிலை; பகல௠நேர; மேகமூடà¯à®Ÿ; உளà¯à®³à¯‡" camera-app-2.9.1+14.04.20140331/po/zh_HK.po0000644000015201777760000000302312316315040020075 0ustar pbusernogroup00000000000000# Chinese (Hong Kong) translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-10-20 05:01+0000\n" "Last-Translator: Walter Cheuk \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "相機" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "相機程å¼" #: camera-app.qml:38 msgid "Flash" msgstr "閃光燈" #: camera-app.qml:39 msgid "Light;Dark" msgstr "亮;æš—" #: camera-app.qml:42 msgid "Flip Camera" msgstr "翻轉相機" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "å‰é¢;背é¢" #: camera-app.qml:46 msgid "Shutter" msgstr "å¿«é–€" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "照相;å¿«ç…§;錄影" #: camera-app.qml:50 msgid "Mode" msgstr "模å¼" #: camera-app.qml:51 msgid "Stills;Video" msgstr "éœæ­¢åœ–åƒ;影片" #: camera-app.qml:54 msgid "White Balance" msgstr "白平衡" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "光照情æ³;日光;陰天;室內" camera-app-2.9.1+14.04.20140331/po/ast.po0000644000015201777760000000302512316315040017663 0ustar pbusernogroup00000000000000# Asturian translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-10-03 08:56+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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Cámara" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Aplicación Cámara" #: camera-app.qml:38 msgid "Flash" msgstr "Flash" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Claro;Escuro" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Voltiar cámara" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Frontal;Trasera" #: camera-app.qml:46 msgid "Shutter" msgstr "Disparador" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Tomar una semeya;Capturar;Grabar" #: camera-app.qml:50 msgid "Mode" msgstr "Mou" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Semeya;Videu" #: camera-app.qml:54 msgid "White Balance" msgstr "Balance del Blancu" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Illuminación;Día;Nubláu;Interior" camera-app-2.9.1+14.04.20140331/po/fi.po0000644000015201777760000000314312316315040017473 0ustar pbusernogroup00000000000000# Finnish translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-06-13 08:50+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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Kamera" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Kamerasovellus" #: camera-app.qml:38 msgid "Flash" msgstr "Salama" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Light;Dark;Vaalea;Tumma" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Vaihda kameraa" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Front Facing;Back Facing;Etukamera;Takakamera" #: camera-app.qml:46 msgid "Shutter" msgstr "Suljin" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Take a Photo;Snap;Record;Ota kuva;Nauhoita" #: camera-app.qml:50 msgid "Mode" msgstr "Tila" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Stills;Video;Valokuva;Video" #: camera-app.qml:54 msgid "White Balance" msgstr "Valkotasapaino" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Lighting Condition;Day;Cloudy;Inside;Valaisu;Päivä;Pilvinen;Sisä" camera-app-2.9.1+14.04.20140331/po/CMakeLists.txt0000644000015201777760000000200412316315040021270 0ustar pbusernogroup00000000000000project(camera-app-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=camera-app --copyright-holder='Canonical Ltd.' ${I18N_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) camera-app-2.9.1+14.04.20140331/po/de.po0000644000015201777760000000302112316315040017460 0ustar pbusernogroup00000000000000# German translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-06-13 17:02+0000\n" "Last-Translator: Hendrik Knackstedt \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Kamera" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Kamera-Anwendung" #: camera-app.qml:38 msgid "Flash" msgstr "Blitz" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Hell;Dunkel" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Kamera kippen" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Vorderseite;Rückseite" #: camera-app.qml:46 msgid "Shutter" msgstr "Verschluss" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Ein Foto machen;Schnappschuss;Aufnehmen" #: camera-app.qml:50 msgid "Mode" msgstr "Modus" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Standbild;Video" #: camera-app.qml:54 msgid "White Balance" msgstr "Weißabgleich" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Belichtung;Tag,Wolkig;Drinnen" camera-app-2.9.1+14.04.20140331/po/pl.po0000644000015201777760000000304612316315040017512 0ustar pbusernogroup00000000000000# Polish translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-10-03 06:15+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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Aparat" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Aplikacja aparatu" #: camera-app.qml:38 msgid "Flash" msgstr "Lampa bÅ‚yskowa" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Jasno;Ciemno" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Odwróć aparat" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Na przodzie;Z tyÅ‚u" #: camera-app.qml:46 msgid "Shutter" msgstr "Migawka" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Zrób zdjÄ™cie;Pstryknij;Nagraj" #: camera-app.qml:50 msgid "Mode" msgstr "Tryb" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Wstrzymanie;Wideo" #: camera-app.qml:54 msgid "White Balance" msgstr "Balans bieli" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Warunki oÅ›wietlenia;DzieÅ„;Pochmurno;WewnÄ…trz" camera-app-2.9.1+14.04.20140331/po/ja.po0000644000015201777760000000270112316315040017466 0ustar pbusernogroup00000000000000# Japanese translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2014-01-18 06:37+0000\n" "Last-Translator: Akira Nakagawa \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "カメラ" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "カメラアプリ" #: camera-app.qml:38 msgid "Flash" msgstr "フラッシュ" #: camera-app.qml:39 msgid "Light;Dark" msgstr "" #: camera-app.qml:42 msgid "Flip Camera" msgstr "" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "" #: camera-app.qml:46 msgid "Shutter" msgstr "シャッター" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "" #: camera-app.qml:50 msgid "Mode" msgstr "モード" #: camera-app.qml:51 msgid "Stills;Video" msgstr "" #: camera-app.qml:54 msgid "White Balance" msgstr "ホワイトãƒãƒ©ãƒ³ã‚¹" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "" camera-app-2.9.1+14.04.20140331/po/pt_BR.po0000644000015201777760000000310312316315040020077 0ustar pbusernogroup00000000000000# Brazilian Portuguese translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-06-14 14:45+0000\n" "Last-Translator: Rafael Neri \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Câmera" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Aplicativo da câmera" #: camera-app.qml:38 msgid "Flash" msgstr "Flash" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Claro;Escuro" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Flip da câmera" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "De frente;De costa" #: camera-app.qml:46 msgid "Shutter" msgstr "Obturador" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Tirar uma foto;Tirar;Gravar" #: camera-app.qml:50 msgid "Mode" msgstr "Modo" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Fotografias;Vídeos" #: camera-app.qml:54 msgid "White Balance" msgstr "Balanceamento de branco" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Condição de luz;Dia; Nublado;No interior de algo" camera-app-2.9.1+14.04.20140331/po/ru.po0000644000015201777760000000333112316315040017522 0ustar pbusernogroup00000000000000# Russian translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-07-16 19:00+0000\n" "Last-Translator: Denis Kustov <06deku@gmail.com>\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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Камера" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Фотокамера" #: camera-app.qml:38 msgid "Flash" msgstr "Ð’Ñпышка" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Светло;Темно" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Перевернуть камеру" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "ПереднÑÑ ÐºÐ°Ð¼ÐµÑ€Ð°;ЗаднÑÑ ÐºÐ°Ð¼ÐµÑ€Ð°" #: camera-app.qml:46 msgid "Shutter" msgstr "Затвор" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Сделать фото;Мометальный Ñнимок;ЗапиÑать" #: camera-app.qml:50 msgid "Mode" msgstr "Режим" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Фото;Видео" #: camera-app.qml:54 msgid "White Balance" msgstr "Ð‘Ð°Ð»Ð°Ð½Ñ Ð±ÐµÐ»Ð¾Ð³Ð¾" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "УÑÐ»Ð¾Ð²Ð¸Ñ Ð¾ÑвещениÑ;ЯÑно;ПаÑмурно;Помещение" camera-app-2.9.1+14.04.20140331/po/lo.po0000644000015201777760000000331012316315040017503 0ustar pbusernogroup00000000000000# Lao translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-10-03 07:55+0000\n" "Last-Translator: Anousak \n" "Language-Team: Lao \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "àºà»‰àº­àº‡" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "ໂປຣເເàºàº£àº¡àºà»‰àº­àº‡" #: camera-app.qml:38 msgid "Flash" msgstr "ເເຟລດຊ໌" #: camera-app.qml:39 msgid "Light;Dark" msgstr "ເເສງ;ມຶດ" #: camera-app.qml:42 msgid "Flip Camera" msgstr "ປີ້ນàºà»‰àº­àº‡" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "ທາງຫນ້າ;ທາງຫຼັງ" #: camera-app.qml:46 msgid "Shutter" msgstr "" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "ທ່າàºàº®àº¹àºš;ສະເເນບ;ອັດ" #: camera-app.qml:50 msgid "Mode" msgstr "ຮູບà»àºšàºš" #: camera-app.qml:51 msgid "Stills;Video" msgstr "ຈື້ງ;ວີດິໂອ" #: camera-app.qml:54 msgid "White Balance" msgstr "ດຸນດ່ຽງສີຂາວ" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "ເງື່ອນໄຂໄຟ;ມື້;ຄຸ້ນເມàº;ຂ້າງໃນ" camera-app-2.9.1+14.04.20140331/po/hi.po0000644000015201777760000000354612316315040017504 0ustar pbusernogroup00000000000000# Hindi translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-06-13 18:22+0000\n" "Last-Translator: Sandeep Kumar Pilakhnawal \n" "Language-Team: Hindi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "कैमरा" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "कैमरा à¤à¤ªà¥à¤²à¤¿à¤•ेशन" #: camera-app.qml:38 msgid "Flash" msgstr "फ़à¥à¤²à¥ˆà¤¶" #: camera-app.qml:39 msgid "Light;Dark" msgstr "हलà¥à¤•ा;गहरा" #: camera-app.qml:42 msgid "Flip Camera" msgstr "कैमरा फà¥à¤²à¤¿à¤ª करें" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "सामने की ओर;पीछे की ओर" #: camera-app.qml:46 msgid "Shutter" msgstr "शटर" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "à¤à¤• फोटो;सà¥à¤¨à¥ˆà¤ª;रिकॉरà¥à¤¡ लें" #: camera-app.qml:50 msgid "Mode" msgstr "पà¥à¤°à¤£à¤¾à¤²à¥€" #: camera-app.qml:51 msgid "Stills;Video" msgstr "सà¥à¤¥à¤¿à¤° तसà¥à¤µà¥€à¤°à¥‡à¤‚;वीडियो" #: camera-app.qml:54 msgid "White Balance" msgstr "सफेद रंग का संतà¥à¤²à¤¨" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "पà¥à¤°à¤•ाश वà¥à¤¯à¤µà¤¸à¥à¤¥à¤¾ की सà¥à¤¥à¤¿à¤¤à¤¿;दिन;बादलमय;भीतर" camera-app-2.9.1+14.04.20140331/po/he.po0000644000015201777760000000312612316315040017472 0ustar pbusernogroup00000000000000# Hebrew translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-06-13 09:08+0000\n" "Last-Translator: Yaron \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "מצלמה" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "×™×™×©×•× ×ž×¦×œ×ž×”" #: camera-app.qml:38 msgid "Flash" msgstr "מבזק" #: camera-app.qml:39 msgid "Light;Dark" msgstr "בהיר;×›×”×”" #: camera-app.qml:42 msgid "Flip Camera" msgstr "היפוך המצלמה" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "קדמית;×חורית" #: camera-app.qml:46 msgid "Shutter" msgstr "צמצ×" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "×¦×™×œ×•× ×ª×ž×•× ×”;×¦×™×œ×•× ×ž×¡×š;הקלטה" #: camera-app.qml:50 msgid "Mode" msgstr "מצב" #: camera-app.qml:51 msgid "Stills;Video" msgstr "תמונה;ויד×ו" #: camera-app.qml:54 msgid "White Balance" msgstr "×יזון צבע לבן" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "תנ××™ ת×ורה;יו×;מעונן;בחוץ" camera-app-2.9.1+14.04.20140331/po/ms.po0000644000015201777760000000277312316315040017524 0ustar pbusernogroup00000000000000# Malay translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-12-14 05:36+0000\n" "Last-Translator: abuyop \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Kamera" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Aplikasi kamera" #: camera-app.qml:38 msgid "Flash" msgstr "Denyar" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Cerah;Gelap" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Kalih Kamera" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Muka Hadapan;Muka Belakang" #: camera-app.qml:46 msgid "Shutter" msgstr "Pengatup" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Tangkap Foto;Petik;Rakam" #: camera-app.qml:50 msgid "Mode" msgstr "Mod" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Kaku;Video" #: camera-app.qml:54 msgid "White Balance" msgstr "Imbangan Putih" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Keadaan Pencahayaan;Siang;Mendung;Didalam" camera-app-2.9.1+14.04.20140331/po/ml.po0000644000015201777760000000310012316315040017476 0ustar pbusernogroup00000000000000# Malayalam translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-11-22 04:27+0000\n" "Last-Translator: STyM Alfazz \n" "Language-Team: Malayalam \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "à´•àµà´¯à´¾à´®à´±" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "à´•àµà´¯à´¾à´®à´± à´ªàµà´°à´¯àµ‹à´—à´‚" #: camera-app.qml:38 msgid "Flash" msgstr "à´«àµà´²à´¾à´·àµ" #: camera-app.qml:39 msgid "Light;Dark" msgstr "തെളിഞàµà´žà´¤àµ;ഇരàµà´£àµà´Ÿà´¤àµ" #: camera-app.qml:42 msgid "Flip Camera" msgstr "" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "" #: camera-app.qml:46 msgid "Shutter" msgstr "à´·à´Ÿàµà´Ÿà´°àµâ€" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "" #: camera-app.qml:50 msgid "Mode" msgstr "" #: camera-app.qml:51 msgid "Stills;Video" msgstr "നിശàµà´šà´² à´šà´¿à´¤àµà´°à´™àµà´™à´³àµâ€;ചലചàµà´šà´¿à´¤àµà´°à´‚" #: camera-app.qml:54 msgid "White Balance" msgstr "" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "" camera-app-2.9.1+14.04.20140331/po/bg.po0000644000015201777760000000334012316315040017464 0ustar pbusernogroup00000000000000# Bulgarian translation for camera-app # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2014-01-25 16:09+0000\n" "Last-Translator: Gangov \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Камера" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Приложение за камерата" #: camera-app.qml:38 msgid "Flash" msgstr "Светкавица" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Светло;Тъмно" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Завърти камерата" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Преден изглед; Заден изглед" #: camera-app.qml:46 msgid "Shutter" msgstr "Капак" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Ðаправи Снимка;Моментна Ñнимка; ЗапиÑ" #: camera-app.qml:50 msgid "Mode" msgstr "Режим" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Снимки;Видео" #: camera-app.qml:54 msgid "White Balance" msgstr "Ð‘Ð°Ð»Ð°Ð½Ñ Ð½Ð° бÑлото" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "СъÑтоÑние на оÑветÑване;Ден;Облачно;Вътре" camera-app-2.9.1+14.04.20140331/po/ug.po0000644000015201777760000000331012316315040017504 0ustar pbusernogroup00000000000000# Uyghur translation for camera-app # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2014-02-09 06:09+0000\n" "Last-Translator: omarjan \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "ÙƒØ§Ù…ÛØ±Ø§" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "ÙƒØ§Ù…ÛØ±Ø§ پروگراممىسى" #: camera-app.qml:38 msgid "Flash" msgstr "Ùىلەش(Flash)" #: camera-app.qml:39 msgid "Light;Dark" msgstr "يورۇق؛قاراڭغۇ" #: camera-app.qml:42 msgid "Flip Camera" msgstr "كامىرا ئايلاندۇر" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "ئالدى ؛ئارقا" #: camera-app.qml:46 msgid "Shutter" msgstr "زاتۇر" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "بىر پارچە سۇرەت تارت؛سۈرەت تارت؛خاتىرلە" #: camera-app.qml:50 msgid "Mode" msgstr "ھالىتى" #: camera-app.qml:51 msgid "Stills;Video" msgstr "جىم؛سىن" #: camera-app.qml:54 msgid "White Balance" msgstr "ئاق تەڭپۇڭلۇق" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "يورۇتۇش شارائىتى؛ كۈندۈز؛ بۇلۇتلۇق؛ ئۆي ئىچى" camera-app-2.9.1+14.04.20140331/po/fa.po0000644000015201777760000000253012316315040017462 0ustar pbusernogroup00000000000000# Persian translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-11-01 11:29+0000\n" "Last-Translator: FULL NAME \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "" #: camera-app.qml:38 msgid "Flash" msgstr "" #: camera-app.qml:39 msgid "Light;Dark" msgstr "" #: camera-app.qml:42 msgid "Flip Camera" msgstr "" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "" #: camera-app.qml:46 msgid "Shutter" msgstr "" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "" #: camera-app.qml:50 msgid "Mode" msgstr "" #: camera-app.qml:51 msgid "Stills;Video" msgstr "" #: camera-app.qml:54 msgid "White Balance" msgstr "" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "" camera-app-2.9.1+14.04.20140331/po/ko.po0000644000015201777760000000260412316315040017507 0ustar pbusernogroup00000000000000# Korean translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-06-17 18:18+0000\n" "Last-Translator: Jinkyu Yi \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "ì¹´ë©”ë¼" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "ì¹´ë©”ë¼ ì• í”Œë¦¬ì¼€ì´ì…˜" #: camera-app.qml:38 msgid "Flash" msgstr "플래시" #: camera-app.qml:39 msgid "Light;Dark" msgstr "" #: camera-app.qml:42 msgid "Flip Camera" msgstr "" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "" #: camera-app.qml:46 msgid "Shutter" msgstr "셔터" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "" #: camera-app.qml:50 msgid "Mode" msgstr "" #: camera-app.qml:51 msgid "Stills;Video" msgstr "" #: camera-app.qml:54 msgid "White Balance" msgstr "" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "" camera-app-2.9.1+14.04.20140331/po/it.po0000644000015201777760000000303612316315040017512 0ustar pbusernogroup00000000000000# Italian translations for camera-app package. # Copyright (C) 2013 THE camera-app'S COPYRIGHT HOLDER # This file is distributed under the same license as the camera-app package. # Ugo , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-06-13 10:40+0000\n" "Last-Translator: Milo Casagrande \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" "Language: it\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Fotocamera" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Applicazione per foto e video" #: camera-app.qml:38 msgid "Flash" msgstr "Flash" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Luminoso;Buio" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Ruota fotocamera" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Fronte;Retro" #: camera-app.qml:46 msgid "Shutter" msgstr "Scatta" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Scatta una foto;Registra" #: camera-app.qml:50 msgid "Mode" msgstr "Modalità" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Foto;Video" #: camera-app.qml:54 msgid "White Balance" msgstr "Bilanciamento bianco" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Illuminazione;Luce naturale;Nuvoloso;Interno" camera-app-2.9.1+14.04.20140331/po/en_GB.po0000644000015201777760000000304512316315040020050 0ustar pbusernogroup00000000000000# English (United Kingdom) translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-06-24 16:31+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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Camera" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Camera application" #: camera-app.qml:38 msgid "Flash" msgstr "Flash" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Light;Dark" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Flip Camera" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Front Facing;Back Facing" #: camera-app.qml:46 msgid "Shutter" msgstr "Shutter" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Take a Photo;Snap;Record" #: camera-app.qml:50 msgid "Mode" msgstr "Mode" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Stills;Video" #: camera-app.qml:54 msgid "White Balance" msgstr "White Balance" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Lighting Condition;Day;Cloudy;Inside" camera-app-2.9.1+14.04.20140331/po/gd.po0000644000015201777760000000326512316315040017474 0ustar pbusernogroup00000000000000# Gaelic; Scottish translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-09-29 21:29+0000\n" "Last-Translator: Akerbeltz \n" "Language-Team: Gaelic; Scottish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Camara" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Aplacaid a' chamara" #: camera-app.qml:38 msgid "Flash" msgstr "Solas-boillsgidh" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Light;Dark;sorcha;dorcha" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Thoir flip dhen chamara" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Front Facing;Back Facing;an comhair a bheòil;an comhair a chùil" #: camera-app.qml:46 msgid "Shutter" msgstr "Siutair" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Take a Photo;Snap;Record;tog dealbh;greimich;clàraich" #: camera-app.qml:50 msgid "Mode" msgstr "Modh" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Stills;Video" #: camera-app.qml:54 msgid "White Balance" msgstr "Am balans geal" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "" "Lighting Condition;Day;Cloudy;Inside;dè solas;latha;neulach;sgòthach;a-staigh" camera-app-2.9.1+14.04.20140331/po/hy.po0000644000015201777760000000314012316315040017512 0ustar pbusernogroup00000000000000# Armenian translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-07-21 06:46+0000\n" "Last-Translator: iAbaS \n" "Language-Team: Armenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Ô¿Õ¡Õ´Õ¥Ö€Õ¡" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Ô¿Õ¡Õ´Õ¥Ö€Õ¡ Õ®Ö€Õ¡Õ£Õ«Ö€" #: camera-app.qml:38 msgid "Flash" msgstr "Flash" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Ô¼Õ¸Ö‚ÕµÕ½;Õ„Õ¸Ö‚Õ©" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Flip Camera" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Front Facing;Back Facing" #: camera-app.qml:46 msgid "Shutter" msgstr "Ô½Õ¸Ö‚Öƒ" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Õ†Õ¯Õ¡Ö€Õ¥Õ¬;Snap;ÕÕ¡ÕµÕ¶Õ¡Õ£Ö€Õ¥Õ¬" #: camera-app.qml:50 msgid "Mode" msgstr "Ռեժիմ" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Stills;ÕŽÕ«Õ¤Õ¥Õ¸" #: camera-app.qml:54 msgid "White Balance" msgstr "ÕÕºÕ«Õ¿Õ¡Õ¯Õ« Õ¢Õ¡Õ¬Õ¡Õ¶Õ½" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Ô¼Õ¸Ö‚Õ½Õ¡Õ¾Õ¸Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶;Õ•Ö€;Ô±Õ´ÕºÕ¡Õ´Õ¡Õ®;Õ†Õ¥Ö€Õ½Õ¸Ö‚Õ´" camera-app-2.9.1+14.04.20140331/po/shn.po0000644000015201777760000000252312316315040017666 0ustar pbusernogroup00000000000000# Shan translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-10-07 11:32+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Shan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "" #: camera-app.qml:38 msgid "Flash" msgstr "" #: camera-app.qml:39 msgid "Light;Dark" msgstr "" #: camera-app.qml:42 msgid "Flip Camera" msgstr "" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "" #: camera-app.qml:46 msgid "Shutter" msgstr "" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "" #: camera-app.qml:50 msgid "Mode" msgstr "" #: camera-app.qml:51 msgid "Stills;Video" msgstr "" #: camera-app.qml:54 msgid "White Balance" msgstr "" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "" camera-app-2.9.1+14.04.20140331/po/te.po0000644000015201777760000000252612316315040017511 0ustar pbusernogroup00000000000000# Telugu translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-11-29 15:20+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Telugu \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "" #: camera-app.qml:38 msgid "Flash" msgstr "" #: camera-app.qml:39 msgid "Light;Dark" msgstr "" #: camera-app.qml:42 msgid "Flip Camera" msgstr "" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "" #: camera-app.qml:46 msgid "Shutter" msgstr "" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "" #: camera-app.qml:50 msgid "Mode" msgstr "" #: camera-app.qml:51 msgid "Stills;Video" msgstr "" #: camera-app.qml:54 msgid "White Balance" msgstr "" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "" camera-app-2.9.1+14.04.20140331/po/es.po0000644000015201777760000000302212316315040017500 0ustar pbusernogroup00000000000000# Spanish translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-09-28 09:44+0000\n" "Last-Translator: Paco Molinero \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "CaÌmara" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Aplicación Cámara" #: camera-app.qml:38 msgid "Flash" msgstr "Flash" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Claro;Oscuro" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Voltear cámara" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Frontal;Trasera" #: camera-app.qml:46 msgid "Shutter" msgstr "Disparador" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Tomar una foto;Capturar;Grabar" #: camera-app.qml:50 msgid "Mode" msgstr "Modo" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Foto;Vídeo" #: camera-app.qml:54 msgid "White Balance" msgstr "Balance de blancos" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Iluminación;Día;Nublado;Interior" camera-app-2.9.1+14.04.20140331/po/hr.po0000644000015201777760000000306512316315040017511 0ustar pbusernogroup00000000000000# Croatian translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-08-26 14:44+0000\n" "Last-Translator: Paolo Pelesk \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Fotoaparat" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Aplikacija fotoaparat" #: camera-app.qml:38 msgid "Flash" msgstr "Blic" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Svijetlo;MraÄno" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Zamijeni kameru" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Prednja;Stražnja" #: camera-app.qml:46 msgid "Shutter" msgstr "OkidaÄ" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Snimi fotografiju;Okini;Snimi" #: camera-app.qml:50 msgid "Mode" msgstr "NaÄin" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Stilovi;Video" #: camera-app.qml:54 msgid "White Balance" msgstr "Balans bijele boje" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Stanje osvjetljenja;Dan;OblaÄno;Unutarnji prostor" camera-app-2.9.1+14.04.20140331/po/sv.po0000644000015201777760000000301212316315040017520 0ustar pbusernogroup00000000000000# Swedish translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-11-27 07:26+0000\n" "Last-Translator: Joachim Johansson \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Kamera" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Kameraprogram" #: camera-app.qml:38 msgid "Flash" msgstr "Blixt" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Ljust;Mörkt" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Vänd kameran" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "FramÃ¥tvänd;BakÃ¥tvänd" #: camera-app.qml:46 msgid "Shutter" msgstr "Slutare" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Ta en bild;Knäpp;Spela in" #: camera-app.qml:50 msgid "Mode" msgstr "Läge" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Stillbild;Film" #: camera-app.qml:54 msgid "White Balance" msgstr "Vitbalans" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "LjusförhÃ¥llande;Dagsljus;Molnigt;Inomhus" camera-app-2.9.1+14.04.20140331/po/uk.po0000644000015201777760000000330412316315040017513 0ustar pbusernogroup00000000000000# Ukrainian translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-06-13 09:32+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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Камера" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Програма Ð´Ð»Ñ Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸ з камерою" #: camera-app.qml:38 msgid "Flash" msgstr "Спалах" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Світло;Темно" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Перемкнути камеру" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "ПереднÑ;ЗаднÑ" #: camera-app.qml:46 msgid "Shutter" msgstr "Затвор" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Зробити фото;ЗнÑти;ЗапиÑати" #: camera-app.qml:50 msgid "Mode" msgstr "Режим" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Фото;Відео" #: camera-app.qml:54 msgid "White Balance" msgstr "Ð‘Ð°Ð»Ð°Ð½Ñ Ð±Ñ–Ð»Ð¾Ð³Ð¾" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Умови оÑвітленнÑ;День;Хмарно;ПриміщеннÑ" camera-app-2.9.1+14.04.20140331/po/fr.po0000644000015201777760000000311112316315040017477 0ustar pbusernogroup00000000000000# French translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2013-08-28 10:19+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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Appareil photo" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Application photo" #: camera-app.qml:38 msgid "Flash" msgstr "Flash" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Clair;Sombre" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Changer d'objectif" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "Optique avant;Optique arrière" #: camera-app.qml:46 msgid "Shutter" msgstr "Obturateur" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Prendre une photo;Enclencher;Enregistrer" #: camera-app.qml:50 msgid "Mode" msgstr "Mode" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Images fixes;Vidéo" #: camera-app.qml:54 msgid "White Balance" msgstr "Balance des blancs" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Condition de luminosité;Jour;Nuageux;Intérieur" camera-app-2.9.1+14.04.20140331/po/pt.po0000644000015201777760000000253612316315040017525 0ustar pbusernogroup00000000000000# Portuguese translation for camera-app # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2014-01-15 12:09+0000\n" "Last-Translator: FULL NAME \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "" #: camera-app.qml:38 msgid "Flash" msgstr "" #: camera-app.qml:39 msgid "Light;Dark" msgstr "" #: camera-app.qml:42 msgid "Flip Camera" msgstr "" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "" #: camera-app.qml:46 msgid "Shutter" msgstr "" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "" #: camera-app.qml:50 msgid "Mode" msgstr "" #: camera-app.qml:51 msgid "Stills;Video" msgstr "" #: camera-app.qml:54 msgid "White Balance" msgstr "" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "" camera-app-2.9.1+14.04.20140331/po/ca.po0000644000015201777760000000304312316315040017457 0ustar pbusernogroup00000000000000# Catalan translation for camera-app # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the camera-app package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: camera-app\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-07-11 11:18+0200\n" "PO-Revision-Date: 2014-01-14 11:59+0000\n" "Last-Translator: Walter Garcia-Fontes \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: 2014-03-22 07:05+0000\n" "X-Generator: Launchpad (build 16967)\n" #: camera-app.desktop.in:3 msgid "Camera" msgstr "Càmera" #: camera-app.desktop.in:5 msgid "Camera application" msgstr "Aplicació de càmera" #: camera-app.qml:38 msgid "Flash" msgstr "Flaix" #: camera-app.qml:39 msgid "Light;Dark" msgstr "Clar;Fosc" #: camera-app.qml:42 msgid "Flip Camera" msgstr "Gira la càmera" #: camera-app.qml:43 msgid "Front Facing;Back Facing" msgstr "" #: camera-app.qml:46 msgid "Shutter" msgstr "Disparador" #: camera-app.qml:47 msgid "Take a Photo;Snap;Record" msgstr "Fés una foto;Captura;Grava" #: camera-app.qml:50 msgid "Mode" msgstr "Mode" #: camera-app.qml:51 msgid "Stills;Video" msgstr "Imatge estàtica;Vídeo" #: camera-app.qml:54 msgid "White Balance" msgstr "Balanç de blancs" #: camera-app.qml:55 msgid "Lighting Condition;Day;Cloudy;Inside" msgstr "Condició d'il·luminació;Dia;Núvol;Interior" camera-app-2.9.1+14.04.20140331/FlashButton.qml0000644000015201777760000000530712316315040021067 0ustar pbusernogroup00000000000000/* * Copyright (C) 2012 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 "constants.js" as Const Item { id: button property bool flashAllowed: true property bool torchMode: false property string flashState: "off" signal clicked() CrossFadingButton { id: flash anchors.fill: parent iconSource: (flashState == "off") ? "assets/flash_off.png" : ((flashState == "on") ? "assets/flash_on.png" : "assets/flash_auto.png") onClicked: button.clicked() enabled: !torchMode } CrossFadingButton { id: torch anchors.fill: parent iconSource: (flashState == "on") ? "assets/torch_on.png" : "assets/torch_off.png" enabled: torchMode onClicked: button.clicked() } states: [ State { name: "flash"; when: !torchMode PropertyChanges { target: flash; opacity: 1.0 } PropertyChanges { target: torch; opacity: 0.0 } }, State { name: "torch"; when: torchMode PropertyChanges { target: flash; opacity: 0.0 } PropertyChanges { target: torch; opacity: 1.0 } } ] transitions: [ Transition { from: "flash"; to: "torch"; SequentialAnimation { NumberAnimation { target: flash; property: "opacity"; duration: Const.iconFadeDuration; easing.type: Easing.InOutQuad } NumberAnimation { target: torch; property: "opacity"; duration: Const.iconFadeDuration; easing.type: Easing.InOutQuad } } }, Transition { from: "torch"; to: "flash"; SequentialAnimation { NumberAnimation { target: torch; property: "opacity"; duration: Const.iconFadeDuration; easing.type: Easing.InOutQuad } NumberAnimation { target: flash; property: "opacity"; duration: Const.iconFadeDuration; easing.type: Easing.InOutQuad } } } ] } camera-app-2.9.1+14.04.20140331/assets/0000755000015201777760000000000012316315300017417 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/assets/toolbar-left@18.sci0000644000015201777760000000022312316315040022760 0ustar pbusernogroup00000000000000source: toolbar-left@18.png border.left: 80 border.right: 0 border.top: 30 border.bottom: 30 horizontalTileMode: Stretch verticalTileMode: Stretch camera-app-2.9.1+14.04.20140331/assets/toolbar-middle@18.png0000644000015201777760000001442512316315040023303 0ustar pbusernogroup00000000000000‰PNG  IHDRޤAÊXtEXtSoftwareAdobe ImageReadyqÉe<hiTXtXML:com.adobe.xmp ]å8CIDATxÚìœ tTUšÇß­-! I M ¸°¦!4K"ûê3rØ"‚£x<4i¤‰2JÏhÇ9#z BpÀa;íÐ:0±±a°! $¥RÛ›ïVî#÷½zïÕ«PIª’ï¸Ü·T¥Þ{÷Wßr—"¢( (T " ÁA!8('$ôÚk¯Y=ú„Óé| Jûêêê$¨ÜnwK—ËÃJ4{&&8Ißg6›í„lŠ‹¥J9-püÕj-‰ˆˆ(‚ú&”ƒ úyÍš5N'L5{öìÈcÇŽõª¬¬ìi·Û;UUU= ¥½Çã1³—(o:Ї@ÔöM&“»E‹7¡\ŒŒü)**êLZZÚ©õë×ÛœTfffä×_ýÔýû÷VTTô€ÒA"*ÀÅš–•cü{W{ ¿¯8&{…)::ú”³±±±ÇÇŒóÃG}dGpéº'NœØº°°p$Àò4”àZl|ÃÃ}yض¶Ý¬öpµtî!0ÐöÞ"Ô ý"Õl›ÅĶimâj³âÜCðÀÅ9 Ñw)))ßìÝ»÷n,‚ȵ¾üòË-Á.--^VVö‹pVÃÃAâ¦5·í¡ß| †:º'¿n‹‚E-ƒ…Öf‘TKpIðyâââÎÄÇÇ—v`Ó¦M¢pÇÔ¿ÿÞÅÅÅJJJq–E² …Ö.“‰$&Qù «Ü¾h$®!Äç´jÜ—0‰ +Þm“I²LÔ%$$m×®Ý_¾ÿþûSôþœ:hùòå‘6l{ëÖ­)åååO*,‹‹Aâ„o¸ `1y|^98´nT4n„ˆ^€\KQ…É» ×k‚ë¶ÀõRˆ¬ " o‰bbb®·mÛvϬY³¾zóÍ7íŽÍŸ??vß¾}Soß¾ý,¤Ìñ\âE‘¿…[Õ,Ì£Þ¼ "D ©=Oˆˆ¬ "oü©~ibbâcǎݵvíÚû¡äÆBœE‹ÅìÚµ+½¨¨h²Ãሑ\‘ µ2`Òݰø€¢‘p y*¿V‡ƒÅ$5ˆÀKîÌ&A$¹2›ÍVž””´{Ê”)9Ë–-+Gp@GޱeddL¾qãÆt°0±R€+ÁßJ|#],°Õ‚…EÔD $¦ ¨/‡Èù Ú.LöBˆX€M­ƒÈÌ,ÐýöíÛoÏÎÎÞ9dÈGsÇ<`À€´Ë—/g@ ó8ŒZ›Í&7½D†QXÔ iè›$~`ò¡½n·7C³qy‚è]ºtÉÊÏÏ?FUs‡LŸ>½=XšßÿòË/ýx ÀT×ãuGÀÛ5ùžR>b(&žë’$æÆ(@¼‚,ìİaÃV}þùç7úËÑ à\ºtÉ:iÒ¤)W¯^}ÉétFr.©šB£Œ†,¢HTÝTp&QeǨۢï'Ü1U€<²Z­Õ;vܼgÏž]]»vu65pHzzú“`eÞ.--íÆ¬Œ×Â@±Ëc90lGÖ'£8¦™ZkÜZ}Ý01’D>îŒpdÉâb HÉQë~èСäää\oëÓàXúõë7þüùósÀÊD0+ã…1`4­K}¾õ“ŸZ#îш¦òu_‘Ìy­O·nÝÖ8qbí¾[p>üðÃØÕ«W/,..ÌY™*Î-y¸¨%`ÄÚxD 5X B¤i‰ Tû¢Ö'J Éú´k×.oöìÙ+Þyç²p‡º¦.¹¹¹‹õŽyðàÁ#O:µÀápP×ä¢n‰BSkex·¤¦©L$"$sYܶ‰Ï-˜û²Øl¶êÞ½{¯ÌËËû&Øi{°Á±¦¦¦¾pîܹ—h¯/ˆº¦J8^͆dV†sQ:iv“¦®ñîËÇúÐa ¨©ëŠ‚âí}†¸gËÉ“'·ÂqgÈ îiÁõë×DzHÉ59¤Œ©¹[RÉ’š0uHÕ}=œLÆæÙ8×eéСÃ~p[+ûôé”ASS0þÈÖ­[c&L˜ð@3F €ÁlVÀ…;jâ‘›<¥Œk|ÒíšÔB#6#hd÷Ë=ÙÌDöý“FþE¶ÍfˆúÌé³§m@Û‚¶Éµkׯ@ýǶmÛbBÂâ@Öÿþûï¿wçÎÏTÒ˜Æb1»¤›b ðhX™F&i ¤Ýë,˶$CEØ.q¹ÜRŸOµ<‰‰‰…‹-zwîܹ¥Ί+ZCy¿¤¤¤ ³4•PÛé“]×ÔœÝR0Ü—ªëâk6æ%ÁcMHH¸¼páÂ?¼ñÆwëœ-Y²¤NoÌÊÊŠ_h:ShÀ,VÂEÚ¥ X=ž‘„V&ˆÖ‡øÌú©µQcŠn 4X®ªªúĤý"""ò `o0‹³sçΖ™™™ÿyëÖ­î š ¸ j©FUׄV&(ÖGÕuiÍ´¿'Âl6GSËÓ¶mÛs+W®ü÷)S¦Ü¯wpòóó£¦M›ö^QQQo=hô{ƒeð‹ª³õñ7Î¥ORRÒ©íÛ·¿ –§²>Á±õêÕ+óÂ… cš¦OrròÓ§Oÿ ΞH:nMKKû94B€ÐˆMðSwëGUK@|Ú†¶m;Ú†´-/^¼8š¶-mã`ƒc?~üè‚‚‚RÊ ÇªÙȶÇ84ÏÔ0\ú‡Ð„*!’'áÄç…YF\ ARžX‡ÏU¢‚ƒBpP ÁA¡‚ƒBpP ÁA¡‚ƒBpP ÁA¡‚ƒBpP ÁA¡‚ƒBpP ÁA¡‚ƒBpP ÁA¡‚ƒBpP ÁA¡‚ƒBpP ÁApP ÁA!8(…BpP ÁA!8(…BpP ÁA!8(…BpP ÁA!8(…BpP ÁA!8(…BpP ÁA5 p²t΋øˆš=ê'@Yj¬ˆ"‚„ P@ÔOQpÖûDT !j‚°Ô€B EH¶ž} B€š0Ä‹’Γɔ­c]D-ˆ! ¼Õƒð„54¦qãÆ»¶oß¾ßf³ãÿ€â4ôá€CeƒÒ©²²rDzúÔa4Qx¤ ÙÕÌKÀ ¹^‚`A;Í–[ö2Ó¨Q£<99;GEEåÒXŠÃðEŽ”iu…4}ÄÔ©Såå}KX†åñ è4¢V<#ëõõ7¾4h°¸k×®£vSh.ù †ƒU (É%%%#¦M{.-//Ooº®ßˬp]+£åšTÓly"C¡$îØ‘su²2N*nŠ·0Òþ³ÏNpoÞ¼ù;ˆiŽ0÷TU×çû(àðn«‹Ûí~:3sÁ¬¬,›†›Òˆ{´¬O³ÈÀL=­JYŸ¬ÎÈÈp¬Xñ§<«Õz^s¹.î)ØàHs(–/_>lñâÅ-].—G==7<=£¹dtj§ÞtŸ´Ûb±˜–.]ú`áÂ…Ô5åC¹h \ŸàH©úcPúíܹsø¼ysÛÜ»wO#Þñ™žñ0öi†s› ¬œ!hæV­Z‘?þäÎsÏ=w^tÊ@Rî†Gê$L„ÒûôéÓC^yå•Î?þxJÐr]:©z …#DZkštçk§Ü¾®©W¯ÞÂÆ¯ôìÙó[xÍ)(·vî58Ttx¢”îeeei ,Hݶm«Ùc#ëz…DFÀƒãN‚Ú´º=}ú ÷ªU« âââè{º'Fhlp¤ŒÒ‰º.ˆä¾ýö[ñÌuéÌB€qû!¹LYoy­Þz& `xåkm¨kúàƒK!ÃÍg®‰Žr—×Çs¨/pø 9 J¯‹/˜;wn—Ç ÖGxD€ÇĆþáû~—ÖŒ<¦‘à:t˜°fÍšËÉÉÉš¡#n,p¨,Ìu%{<ž¾ëÖ­ë»té’˜ÒÒR­˜G/h6²HPM‚÷0 .Ø×€EoåÚœ`oOþøÇÅåsæÌù»Édú;ë ¦®ÉU¯÷ÚàH"Še]¿¹víÚSo½õ¯]öîÝKjÃCé¤í†zun–{³¨„~OúéýU¦Ù~ñœ8q’¸lÙ²+:uúöO³¬©²!\tC£´>]¨ûúòË/S/^œpòdhpUEs£_?1¿e+º«úôI%K—.-7nÜI–1ÑXæn}[™ÆGzP´·¹-u_n·»ç§Ÿ~ÚsåÊ¢ŠŠŠ ¤ju º­ Ð¾F`ü“””D,Ȭ|õÕWÏØl6jaèXÓ-ᆠ>maî«{yyyµk×výä“#oß¾­Ÿ×“ëñBAtMʵLµÛmÚ´!óçÿÞÀ\Љ‰9ËRì,cr7Fã5&8|§a”Ç©‚ 9%++«óúõY‘?ÿü³ÈÇ@rhx ¸^PP‰_Ä XOE¤½P_-)‘ày¸ýÄOÙ³3ìW >Ç, ¥WÌμpG²ˆg¨kuuuòÖ­[;¯[÷_1Z«KmKT‹‰ŸåÈ¢qŽ EÉZ õ},‹2“’VM¦¦¦’ßýnNù /¼p%""‚fI—˜…)‚4dДÀ‘¦dڱĮß~{¤ÓgŸ}Ö:'g§¹¼üåQs_ÚÀp“ëçÑùaEß= €ÔÜ’·Ž‰iIÒÓ§º_|ñÅ»C† ý‰ÁBëb΄Lc…8Ê ¬%”6Ìu,++똓“óØž={¢rss‰ÓéЃH ò_ãf¦¥tBD$kÁbµÚȈ#ÄI“&U¦§§ßˆ‹‹» ǯ2wD—à>hÈL©©€#ÉIJ0šÆ'2ˆž„úñÝ»w'îß¿¿…ˆY"5¦“ên¾ŠèD”ñŽä†¨e¡°Œ;¶jòäÉ·)$×,·YçÍ’<¡Ü(áß0–‰ÑXèWPÚÓ˜Èn··;t(·ÍÁƒßÄäç·ž8ñƒàpT‹*Ð(’ÁâïQ(œ‘"¥còþo³E~ýž è5jdùðá#îDFF³˜å&”_XìRάKX4H8£ EC‰e µaqQbEEEÂñãÇZýío'¢ ÏZÏž-4ò0 P¿âkv($)))B)žîÝSœýûÿSÅÀi÷¢££K˜5)f.ˆ‚BôW„ZìÒÔÁQëjÁ¬‘um ¬Žs:q.\ˆ¹zõj (6Hõ-·n›ïÝ»gº{÷žPRRBîÞ½ë}Ñ ••5s¸£¢¢Èl¼Û­[·& bëÖ­„V­ZyÚ¶m熔ÙÕ±cG{rrò›ÍVÆ‚YêrJX-ARÎÜ;ÜxSG ¤H“Tó`I5=Á+‹©¤"°XC*Ô:Ts¥Š‚ƒ;W»›ÚnªàhÙVVl¬XX1³ÚÄÜáÜÈ‹Cܬv±~ƒÊêA-‚ƒBpPá§ÿ`^ÈÉö°ˆIEND®B`‚camera-app-2.9.1+14.04.20140331/assets/camera@18.png0000644000015201777760000000172512316315040021634 0ustar pbusernogroup00000000000000‰PNG  IHDR22?ˆ±bKGDÿÿÿ ½§“ pHYs  šœtIMEÜ  ¦Û™bIDAThÞ혿kâ`ÇŸÖ‹¡ 6Y;„¢Ô²Ô!"¼A\]ÏŽJD²HI:Ô¡íq“øj‡vhq“R(­ …V'`‚D¬·ø¡œWÏ‹½ ùLï›ç!ïûÍó¼ïûä011111Yžµpkkk+,‹åwöÑh4º¼¼¼”eY6ìW³Ùl¶N§Ó™¾ÃÕÕÕ•¡Ã¿»»»;]€~¿ßÿÛwúÐ<^[û•ʃÁ`P­V«¨a‰D"º¯‚ ˆÓÓÓÓ½„llllx½^/ÀÃÃÃEQ²9ŠÄëëëëÝÝÝ€(Šb<÷z½ÞRƒ&‰Ät…4†v<»ÝnŸç›H$ïÍw}žÁáp8V™fÚ´eY®Õjµeç²Ðù>C/Ãápøøøøøöy0 REa†}™¡ëboµZ­ÛÛÛÛUoãñx|‡Ãÿ}ײZ­Öýýý}´Qˆ¢(Öjµšªªêª>‚®B,‹%™L&Óétš$IRkëv»Ý££££ããããÉd2Ñ[ȺžQ(—Ëå\.—{+€$I2—ËåÊårÙjµZ +$ŸÏçC¡Põ%I’¾Í$IBÏC¡PèäääÄBhš¦c±X õ³ÙlÖív»¿Îp»Ýîl6›Eöƒƒƒš¦ià ‰F£QT~”J¥Ïó¼vL&“ Ïó|©T*¡R%F 'Äçóù´gΟÎ#ÔÞÛÛÛ3œÍÍÍMÔ~yyy™ç§µANH§Óé ¶ÇãñÌóÓÚÚívÛpB®¯¯¯Q›ã8Çqü­Žã8ÇqêßÜÜÜNH¡P( ‡Ã!Ã0L¥R©8N'²;Ng¥R©0 àZ«P( ™Z©T*¥-þ$I’~Ì$I ƒAmÔ´éh¨åìììŒ âðððpm†Ëåri}¦Óé4“ÉdÎÏÏÏ {²‚ °,Ë^\\\h DUUÕjµZeY–A0|ÑP¯×ëáp8l³ÙlÛÛÛÛÏÏÏÏŠ¢(«üXÙ僢(J³Ùl~ÔÅÆBBü~¿_»u~~¿ß¯»Ï3Œ|g6w±?===e’‹ÌenDŠÅbÇq\Ï{­eEQ,‹E0111111111ùW~¦c“_aÅIEND®B`‚camera-app-2.9.1+14.04.20140331/assets/zoom_plus@18.png0000644000015201777760000000353112316315040022430 0ustar pbusernogroup00000000000000‰PNG  IHDR//s'“¬tEXtSoftwareAdobe ImageReadyqÉe<$iTXtXML:com.adobe.xmp ­ÌÜdËIDATxÚìYKnÛ0%JvœÉÆ»]ݽ@NÒk´·è5zƒö¾@·YñÎ@‹ ‰cëÇrìa0Ô7vƒZÀ@¢~|=¾GRB)¼Ö- ^ñvÿ¿—]BXO;Ž•ãx¢£âÉ’ È^°²" ½h]i—V³¬ BAûQ²$¡p_i@CfÀFøN‰Ç&ó…Ž£°|…£ÐF0à ÆHGLÀg:¶:R kö‘y^"è3<Ž0Ó[ò%(}úe¸Ö6p=Öq©ã­Ž÷···ßÙ  çñú%Þ/©"uÁ1”ΛÌe&išÆô"–'x]å/²ƒ–»8oÀ³,«¼Ëc^P)uÕåS!Ù4×ö6 (ŠˆÞˆe Dõ1JŸ+ P}ÕÆçœ”.•(˲ËÒEy;±lI [>QGð#Œ1ê~€¦UzBùh%¨wNI¸ðotœƒÎ;8†×S<Ç-‰çì|Ù6ó”&qÍqQÚ»Ð1Íó¼ò^,OIÆ4. ָ±" PmiC%ÐdnBd/fÎ /à/HÆÏ ø nt¬±NÕĉ­£J±×'J ¨lªò+è6PTø e quuõn6›°Ájµº»¹¹ù%¥Ì!¢(*Â0,!ô1DÇqž$I6ŸÏ?ëGîuížò­0=Á¹öÙ9àïøT=«|:_7< &a*°m¨sž‡+ò±/?aư!›†c› +mN'Í|TiœsgíÐ+’¶/ÛßÈ=£ÊÎjS·Ò%˜ÔV>¹|î—¢ôÏž ö‰ÍÚLòÇhcú -öZE¾ycÍtÓêY™œOÇU“ ·žÃÖ=H¥,’ºá÷cyc‘À^Ë}C-}PðktÊç Ëk¾ÿ ®çB+_ê;󬘭Q.ÍH± ô9ÖB+FcÛ8Ö*ó&~ð|—’†øV‰Y«j‰›Y^³>¯ŽÆyφ&FÔ?†Î +ÇÆ¤IDATxÚì] pTe–î{ûv’HÞ!ÐI á5A\ØQ¦ÄAt­QVgÆY¬2În¹îà(DØ*«´d ƒa–€ ÌÀX…, Šˆ°Â¨£H@ÞòêôcÏé9ÏÉá¿îtÇnÕ_¾}ÿóŸÿ»ç?ÿyÝ# :®ñ;Ì«\üoú°ºC†ahOGèr™NìÎjÒJ ˆêjó©:Ø™ñâ}s¬n ´™7pým褽£<Æ x+A`G’TyÉšÁ€Å`-ÍxÈo<@§7: —ƒ©F ÔL8‚ì×€ÔÐ7ÄJèÈÍþæX)é6l$V'½†àÏ$Áp-^¼¸Ï‘#Gfâ'~§óüFèn–ÝX—Ýô(U`ǰéŠe$—`K`ƒBEð~N6 ?—šš:¶©©éÝn÷íp®ššZPܬöÆ JIïjµbÅQè$ÍA=ð>¼ešf6þàr¹ŠéF°òfI‰æ:ßÑÝÿÜ`êAêc?ýíg HµàTÒGŸN:r½¯ÆR¿ù©ù¢±lº³§©Ûü¬7V444¬¨««û ©‹$’Xg‰55çtͪ(éðáÀ:zcÓ¦MC47ÜhDZŠíÒë¦ '™-Zv}}ýÊ ëׯ¿ Îõ‚–-Z*» nh™Ðò¡y@wÄ>^¯÷(~§ó×ÐuÉÔR‰Òë…ôÕXçÏŸ_ã)ÄW›Ùxð•„ãæ¨kíéò¯¾új§:1nܸ§SRR’"XaÝ ´ƒâ\P¨ƒ©Òúÿ©~¤qÍH݉9u½J‰–‰#F¬iÝ‹ƒÕ1d×®]w[[nª¡ކ"öûO‹ÍÏ!ú…h!] _‰?âx#GެV¸â®R®@gË2™–2.õ¢ššš©@/€KÝçóž6mÚµ¤"zÒuiÐzJÁ>…Ë–-wìØ±ÅÕÕÕãñ;´\R)=èútêŸ?uêÔAH—´IÇÃq‰V:ñcity»:=*uÀ;âh8I'§ ¨ƒÏœ9³Zé×£G.$sÄLú̦QDz»/}Ñùlq}èæ€úX¨hã8Ô§€ÆO#~œWèˆE ¸y¥ËªÒˆÀ¸ƒÙÛè°´>ÿüóÏ(5K¿@ga0 Æbj'¬§5×…@ýïø‹j˜7oÞ³jLfz:"ŠÑUéyšð Í=‡°׺uë†UVVÞð /¬Z²dÉ׬t|L±çØ ”úÜxðÁ³gÏžýƒ>úhÛ­·Þú!Ü'@wØD"]á‘F ¸¡Q¦p¥e4»ì–°¿åR6ï¾ûîlhà ú¤¥¥åZ–•º¹¥µµµÔÆç`[ïñÅ¿VKPÜ´’p7kh<_L8à¦ZnÖI)TΉKª ΂‡~øŽÞ½{ÿ¨šíñÕÜÜ|èÈ‘#/^¼zÑ¢EÇ…GÙªQ'AMÒjÏ'VC &1—(ƒm†!œŒ1à\TïÛ·ïøÞ›6¶ÚØ2É:èÁ¬‰<º®ZÙ=÷Üs#lž5 w[ƒ8°¿ é½RhÅD?Y?jüLâ ù+‚ÛÔÏýÈ?xÂcéw7Û\X8H•pC³Hw½Úív/Wúý5kÖ<}×]wícKšÇ0ÚlzÛ¶mûþèÑ£ét:ÓÃJ:h9{öìvñ½?ýå8cø@µXåååyeee¥纬¬¬1¦i¦¨~`§×ïܹóÙn¸a E½Œ>~ˆ‡+VTÞvÛmOïß&Þ7Â3X$Ò/ÕJ"$œÛ×(5Y_~ùåle[+¡;uêÔªG}t8™|yd;ç‘;ß/;;»]Á%\÷Ó{öìyöÆoDÊIZBÀÚ@:_ÞdÕ|0ûq:@÷7HÇ¡ñøø…=öØpäOòŒóÀùм’cˆÆ7„}6p~mmídÂ=|â qA‚ï¤I÷¢e^ ` :yòäz1ÙåUUU#QÅ@ëO`¡ ݇úñæ¡ßñºRð`‡:tè×@¤Ï@ï­xxçw~ˆ|q>‘oà ‹Ñ¤ •âH4à&©…6#°ûíÞ½ûa°$N¨É|ýõ×+™ãÒÙ\²aò o½õÖÏH¢ûÓuE´2€Iú•§Ë7L«»®Óån’Œ,’À|š„rËÌR´"Œ ° þ•ÀèG×+«&ƒþݳ¾¾~IMMÍ0¢ ý–.¬ŽB:8U?ÁÅCR|^X/±‚r‰n ÷ZvÑÅ.¼Ô™“žÊ‚N=Ib ˜ù‡›ä lÐÙÕ¤FØY ›š¢•uæÌ™Î;÷ '“~WצÓyzù_|±”©–ßÒX%ÄOñדÑJe`;#…sã×1w”Ë]XTTô}üRwzÆŒ Y2Økã~‡6è–––æÌÌÌ÷Þ{o–&}`ã*ZÞ©S§¾„ãààHÝ~ÿý÷ç‹”›Oð+ÝþHóí:³ÐÆ¥· $)IO#ÉÉ%‰ðÉ'Ÿ¼¬$L¹_Ñ÷Ð52ãΡÔ~öÙgs°Hí\¢Ç­‰‘ñÉ%˦MF5&Øò‹È¬ìM×dR%Ùº€™. ×Õ—X­·„gÖ&æÒ§OŸ$§¦yÖ¬YkmVCPW—›œ—$õG½zõJB^ äãí¡‡Zã5a_p”&ÙÄm Á¿%"”†]ô°«3>:°]L²]6áTc$àB£•à@rëÖ­XÜCª6`#}ÐáÍT&QÞá!‰¦èÛ·o¿ãí 0ð@P+y6+TµdFÛ¥©üŠKŠÍ°séY7™–¶6Ž îs…"Ø»šÀ–]PH½€WèS >üGLH}.ëGÝ¥úN›6­ÒF&3šÉB€b’é7;ÙGƵ£œÙËô l–%ŠèòOúbLCs3C´?¾)éééƒ_yå•Qì†XBÃ/töÕÅæåx‚vÜ%\êpçªU«455­mnnÞ Ÿ›¨ý¾ÿÜäß ù¦˹§"tðàÁS"~Íõ6—ºÚÐÜ ¥mvï)S¦ÜͤÐÒ¸àáÂÇ|RìÑ£G•òæ›o޾×#ßÈ¿š |ßóXùÜsÏåŪŽÅê¤ Úíà_gw!‚õ ÔõN§Ó¥~[¼QÝF]›?bèСÓÁtaóz½.˲Ò9}ÔïÀ¾P¼dÉ’?Á×PkÖo K™iZ¼1cÆÜóf3AÓ§OŸôÄO,MT©[¤;vÔNš4i"™+#¿ßfóæÍµ"¤¬w„ +³ººúèĉïpÜÂÅX wàO‹-(-Šœœ¾õò•õþûﯺ馛†ÀXé2 q]mmíæX•ÄY[}úÁ©ø>'‰å,Ójj)À¬ /kŒgÃÇŸm¶&X! Ï<óÌš¾}ûΈÄPÿþý¿7nܸ—Þ~ûí†åoÆ AƒòTŸÆÆÆs|áÁ |‚¦ÆÏ²Eú‹Ë¦¹B/-gÞ´^ã‰'êàev…:^~ùåߨx}áVWêÂ… oo' o––––©>ÇŽûBã«y4‹¹´j’qÛ4erÖÇÀmÌJgÆ_SS³W¤Ê¡º!¬¶æÏŸÀy§=¦ÊÊʦ=3‚'Œ×(uýÚµk÷kòž\pø\ì²>þ ]{YMÅMÂTDâ§k(tŠî{),çÏ(þÝxýõפ@R!‹Ôe+®w9è瑹˓'O„¶¡ÏŸ?¿TÕ®M›6MaQF9ÄØvÉøñã«`¼&ì‹ã³pB«Ü’¼§23W[Ù¯ha{±”äH±Œe°XÊ\1yµS?Œy PpÀo¹åŒ¦à®¥¤B> ÛfÑwÅR~¥úb,§XJ²MñQBb)‡þ± Ù ÍfúmÁ‚XÞò+**f2$M„x¹Bh©ƒ5TÍ0`Òl¢Ö,êMøêsGšã<@ù@߯v\^q«{B.Ò<ã-´‹‡»D<<ƒÅÃóE<ü·Jâ>ÿüó×)F]L* —epB«"77w8!ÇUŸyóæ¡ÃSÁ$5e†r)± ãí¬~ñ Ïgñð wuçx¸îɹ4×̙3ç¿A§bàÊQRRòÏëÖ­»YQñêÖÓ§O7~úé§+˜ ïZ@q9ÌJL^£=}þñÇ_ÄV‚¡Q…I€¾,ÅÏ2 ]z-Mæ4Áq)¯««{ñܹskžzê©*ž@Æ#Ïi¾úê«wŠœf¢ƒç&Ož<ÍxýÖ­[*JrxéÒAzp}³ìôYD?”H~òÉ'¿ |­Æœ&ò©Éi¦EJ³%²LB›µ‡êQžµÇòaJxè‡^ÎAß¶mÛ/è UVÑïøñã¯ãµû÷ïÿ7–"Ë•`¿ûî»ÿ¡¬ªOYÁÀ•\€zYÀ³öÈo„¬}ÂË$ M]J¨îlÜ[5u)6lØ0…&–Ú¬¬,¬KÙÀëR.]ºô÷ÝwßhV&Q J!Àä:ôK:§J&¦gæÌ™×ÁØ„ ¹ƹVÜÄBäGW—‚ü;ôuä1)u‹iåHñÉr¿S§N­œ5kÖ0Ç_ŸXàËA ’¾RÖfdd R’dåMq.;Úáú²&è®BúlCVêû"_ÈŸ¬¼gknw«¼ÒÞÒÒò¡â$u×òåË'ÓÖ=ÙCŒ Á[¶lùwÌ«ú5jˆã¯Oª…kQöîÝ; ìò…ô]UxÀüÂo8BX‡2˜èÙŒZÈ'ò«úã<º+àmJÝÞ{ï½ï]¸p¡@y€ô5,DmDnáyH¿V‚ç¸CMš•N¨ê[U‡’qâĉ ÐP‚©¾õõõ!=¢ëŸ?ÎÒù¯u΃%§“uVKgïì“È<†Î!VUUmè­&âæc± :5ÉiÁÉÕ²j€¼¼¼$Xî^…œ={öÿÈ@^¯.€Mð¢M¹†|™Ç…Œ¡C‡"ÝÕ¬/²"z§Çý“ÈAj¤èa«Ý/jBB¿ñ‚˜|º&sZUË–-k)2«²²²“¾V}ÍØ­6‘ÎV! 1{<ÜŠà\ìžñÑ=Ä*ŸŽðó_=xޤ_Ñæ+„?Aa§³ÄAPS °qÙÝŽ<ã“PÀåÒÔ½( a9$è  êÕEEE¨cO2µás´}ñA›paaaS)õ°åM—/70"ÄŒ±ýŠTŠÆù Ú•%ØLT'aaÀaÃýR;vì`ŸQzX6…PCqº>tö¤;ØA¾/;šwªÄâõÁNþæúß·gÏží¥¥¥à&L˜ÖÆ?xuøÄæ!¹ÊIN§3Éår¥ îVª~C:š:Ö¼w},¥ƒ_Iõ– ¨7FôËd]0Šû“9™Otm‹êã…WT~wø±å8¡M\”““Sº{÷î§Á¹Ù‹RÝñ:¼ûa²«³™ãâŒ6Ú«×wtÉ;¯"”5ØÅctéºT°­{TTTdåç秨øF U ªÓ4 Rüà]Ø¿ÿYìK”ŒhbùHnŽÆäÁÖD›…±Ðÿf–µÉ´Ï™3ç['NÄ “N‘‰MõÀC øÞêêê7æÎ{VT Ä,ÓS¡‹÷Žðø8¯' Õö555mIII)i&l¬;333ï™öVGŒÛŽ»YØEPØ[mhhø°#DðÐ>;°ÿÞ%\Z-¼æ<Éív'?òÈ#½Áôs{½^§Ïç ½Ù Õ‰eY¤¤$ÿE8æÏŸLEtË)áF"·yï ßDùF*_š _…ª PÉ S·;a›fÈWŽÏUÀ¯Wÿ›:þ_€N“Ô—njVÜIEND®B`‚camera-app-2.9.1+14.04.20140331/assets/torch_off@18.png0000644000015201777760000000721512316315040022355 0ustar pbusernogroup00000000000000‰PNG  IHDR\Là9ÐÃtEXtSoftwareAdobe ImageReadyqÉe<hiTXtXML:com.adobe.xmp ò@— »IDATxÚì\[lÙÏØŽcç²1¹8 I6aãD,4tÓMå!¼TT]¤J]¡*-J‹"AUU¥}h7Bâ‚ÔP[mJ»õ!Òò‰P)¡]Jiˆ¤(lB.ߦÿoýÇ=>ž¶öLÌé×897ûó?ßùoc‡ªª’Ýr×dpp»Ù€Û€ÛÍÜÜn6à6à6àv³··› ¸U›Ó¬GÚ!¯°¬aèÓ ‘Q§ÅÀvh¼vèô«i€Vµö5t§Å€æ¯Z¢ª–èÏÞƒYÀ;M[`™ÄÁ]Î$Æ]c:à«VÐvG.6ÍlYE¸Ê€Ç8‰’ÄQõh&× ;M›×f¬“^³«à8-°#Ü5Æ}ª4Ýi"ؼ6;9qñ€www—ïß¿ÿ@ PçóùÊE)ˆF£k¡PhùéÓ§ÿ¾råÊcÇŽ=ÓüíÅk½¹ ãFÙ°™&€xAJAÊAªAêAšz{{wŸ^YY¹¯fÐVWW'püáÇ¿ŽóijZ·”ö) }e­8›8$ab"Ø>7@*AjA8°czzú|, «¯ÐpÞ“'OþŒëàz´níã³èY945¨DäkFnÁ}ãÆ÷;::~”QÌ&€kÏŸ?¿>55ukllì_÷îÝ›­x½^gkkke ´ºººN¿ß¿S–e›”³pëÖ­¾;vüþ ¬Ñ5Ìq|LËŒÌ:µä@»Ø ìå4»¾¼¼¼åñãÇçxM~þÏíÛ·½{÷îwaL H3È&¢ &›èÿ-]]]###}8_Öý#®cêh¿7h7½Ÿû~]RŠ• F§â‡¯C0æææ.ò¬099ùQggg;ô Ø 5 Njèÿ 4.ØÞÞþ΃þ€ë°q}ô Ú¿Þœo€ó¼·|1dÈ­›xÍX¾|ùòáÿ­¤½ìàC6€”‘†–ÒµŒþ_Aãêh^ë¥K—z"‘È[(©Ÿújiÿb=>ÏÀy*)#p³ÌApΞ=û¢7I{+h|1x…$îµúËh| Íâz<è°ß:H«i¼H-ëpQ»K”z´"ŒEÆààà8°«IsK8sÎÍÙçNC×Kãý4i&800ð¼yèKýöÝNwN÷ˆZž€»8íF lÓíc6pv?ÑA+"0\ ²N¼…ï¡y t\¯ubbâ÷Ü!zŽø¾†ÓrW>®3íF§†ÙÙ`UÌíܹókį5¤ÙE¿*ÑB‡`1ûžÿrÛÚÚ¾Šû0;½§§g'§åŒË•õ8O'Ì2AË¢ñþýû¿a¦Ü‡dÔÜæéúÂuƒ£££}lOØÿ$qy€³Xû­wÀøÉBx Üðq²JVÉÎn2—xeêoÑ<—p@7á]û­à¾.À÷AïÇ/ÒJ¶ÏfNSäZùСCǃVšŸŸZ$Ï/Ây€*dÒuÒt9L¬;<<üö» ›.bêÒÒÒëlii©U‘‚Ò•Vhõ‹4‘81~Îiø\ƒ~Ô|Ðð$^ž™™yÈ:€.!Á›™æFÓÕ¹$U¡±Îééé’q-˺<~x]¸páo¥th”Eèb"¸:Y%IJ®gIì÷800ð™Æa½~“ÈFž&K £çGq”¬{š]]]ï¢gK çñ|õ4y g% Qp@ÉR(Û#‘ÈKgÂ!v2> 6-Ë ŽD«Î¥Œæã—×rñâÅ–P‡ÃóÝÝÝïåsÆÇ0§9<<|„Ïiž9sæŠ#èUiJÄÒ VTTÅÒk¸”_°=†††zó=§©¥…|Öþ-pï?âA¿~ýúO ôz*¥Ð+iÐ+½ÀyÁ›7oþ‚Y%”µ?G–ÉÆ|ÏÚ‚³aÆÖÙÙÙK|] x£ÿÊé¤/…¥ÜÜÖ Óî"W‹ó–——ÿÉáú¸O_b^®UyçZ¿ßÿöÇÿ$Ö–––6E”jp-6`ŽkaÝq}âô€*¯r¼R…5ËÆ`)4??ÿECCÇ׮]ûžmäE:7oÞì“RëÃ%I»ßÙÜÜìÅyÌü»zõêO`Ý_âúl/)µ®PÊ¥ .IY|"MA'_Ú(ðyöìÙoáößNó‘V1Ö‚ …9G…÷*=¤µ^ø,÷pîâââg ñߥy«$lˆdV!g6c):)0^Ë£@¢¢«eÙàÊÊÊÁkT4$ÑãÝl.˜€/¤äâü°†g™s°s× >ÙåïŠmÛ¶‰^£8i</,®-¥>aJËê#'ñôdjatâòà*MDÓísîö—u(%^רØXÂÑ™*ÄK ®Ê›g|t@5=:PÁ묭­Eëc–»]€'j @ G) `Kf3J1Hô&‡Ý$´k×®·…ƒÕG67VQ¯A¤ñ𓙍ÌxN3gÆêh:ëGFGG‡ƒÁ ºàRWW×Ñ………ox@c—1ÉS¬çPÅír¹|%%%õ ‰Œ®#p·éÏgæÌÐOãòóÞ':9oÎÍÍ ¨_¢á|rtªŒ¼Ê\~î\;>iSo¼ Ï‘‘‘‘_vÿ=ÇLÃq8çá|)õá©Ü§Òríø¼D†?ü xglkLø«ªªŠRx¯2R R‹,Ë1 ”èÌÌÌâ;wæA³—8G¯kð¦ówN9<›<%ñ{ôèÑ-{öìù€í-–QØ<<:€êïï?ß××7/ýïñ@=7^z­4Ü@Ëùô˜›´Ü³ººú‰ÇãiJ·&¬WþN³Ù3™štbæo¦ÈÐp-w?þ0ëòòòíLÀG¤Ô‡_-ÅÝVÑpI+òÇ4ÝëõôöönÓÏ …”H$¢ÄOz §Ós»ÝÑÐNœ81ÍQ‰VÜÄ&¡€§‰$:„À”^&_ õ†¥äÂ~Ý_Žx­~‚)MŒ…µ¨†c–’Ë&´¨(š.Öm…s˜z{kºÞÏ0iñºŸ_²ØV0 õR‰ÓÖ—ù‘1Éj‡¤¥4<Í!šîµšÁkKi·U5\2ÐЗý¿­á¯{³{ÖÜÜnÿÇö_;¨Ð­nmIEND®B`‚camera-app-2.9.1+14.04.20140331/assets/gallery@18.png0000644000015201777760000001145612316315040022045 0ustar pbusernogroup00000000000000‰PNG  IHDR\Là9ÐÃtEXtSoftwareAdobe ImageReadyqÉe<hiTXtXML:com.adobe.xmp ¾æŠ\IDATxÚì] P×Þ½¸O¸ /â T‰¨EÛŒH¬š&ÎX3;$㌉ʼnf2ƒfÒXGM4éøèÀhIÊÈÄ&L£fBc¢´‰$"lJÔhˆò(\îå>·ÿÙî¹9ö¾÷>p<3ÿÜÝ{wÙ³ßþçû¿ÿœ³–ã8&²,¡‰ qAŸÈw*€³QÛèÜÝ8ëçg$Àöõ9ág @eÄ>máðxŽÚöe¢ÀO$ÀI@eŒ £g#sy01ð'à4ØrÁĶð¡x:çp`'˜CøÄæ=XÀ N¤·Ê •Ô'.Já(Ç`#³ Æ ût6eIÀYÊÃeÈÈâÅÇÇ+«ªªŒsçÎ5êõzMBB‚^ E©TÆùëUÞZ Óét˜¡ŒŽŽÚÀ¬ÝÝ݃mmm}G½Mn'8þc1Z ZOb!Ð9L fK›¥¥¥eóàààY‡Ãaâ¢PÐuûúúÎ?þ•ììì"¨W6ذI`:¡Î ‚æÆÍ_˜'éCI€–ºmÛ¶y‹å2CeddäÛêêê¥èF°$0PÿgÐô Ý4ž½:==½G`×6 f#ù<ÖT ©±É©À|M™’øT(á cdß¼yó´Û·o/]¶lÙó~*:áôéÓ›~øáFØ4  [~Ç€…¸,Âj/˜/°}%D¡<7ø_ýõð£>ú1€¼PTTTNIUI®-µ‡ûš³j×®]ÅÅÅ…ƒ!ö  BtÐâÕÐÜãƒmªb(È dʲ õß¾}»·¹¹ùÛ7Þx£¾s:›w¾9sæh/_¾Ü÷(‡Øò½F£ù…àá#­íáRMäx!Øð2//oÆwß}÷{›ÍÖíÀâÄ·§L™²ê6l.X1Ø|š×Ñ1G}̛Ԙ^¸'9vÔh©1m­"¤_j~~þôááá³\Œ•þþþ–Ù³g/À¾¬}‡/++[$¨•t°)WHÄטãä"jD9yòdÝñãÇ÷@²±¼Ka·ÛТ‘á *"Jmpœ«§§ÇìK‘ šƒkh à¡zph’&eJJŠ:)) %PZØNƒí)`yZ­6 ÛÅõõõ•ÀׇðŸ‚hÂwÒ¤IqRgºRdšbJDIÊ¿¦¦&ìñ»ÜKI(žúH\Äo²ÚÚÚ…•••o¢ëÕ­àë7³àVüÇ233Õ"9HÙüùóõȳIâƒñA™£4²ó›o¾±ø¡@ðùýªªª¬X±¢955µ¶á¥—^Êߺuk;NÿCí  à$PHRîÅ?õÔSëׯ//ù 4á ”`€ ÑiTÉå(5fC}%}ƒƒƒ7®^½Ú¶wïÞOû(ðÙëׯ_@€£/A1åÂÇź‡Ùhz8¦ìÉñÉÉÉš/¿üò…¬¬¬_°ë„©E†¨.âê"¨ÃÊ¥K—þ¶££ãXiiéA†Ø{¹k×®}_RRÂï¿O’Ît£Íᴠ䩤µµu;xõ¯¼ÈPä…#,G…}òÊZ„ÐRä<)Ëd* )-ìÇ 02Y\AAÁÓ_}õ•.''g7îfM>Œ\@CÐZX‡öò·rß¾}Ø(Œ;;;ÏAó½ Ç÷§Nê-náØ@z=PL›6Mùàƒ–,Y2uæÌ™3fÍšõS£ÑX†Žý5¾ÿ¬ AÒÇU‘j‰Šù›ì”’Cz¼ ÔÞÞ~<ë€Ðÿ`#FR\"ŠÂ_ê¢Gˆð÷| ¼qㆈ¬ö[ÀN¶µµm¸ï¾ûžAçñÇ_€ïGÛpìAG &B3d!RÊÐA·áwïÞýèQ¡óÇLt™©}O6JÙ[Çו8(âÇ®]»Nà:·ÏÃç€ü‹äTŒ§ÞÓ XMG_BòÐ+x™MèeàÑÛþÙ:8"£2ZѦ €w;v¬êƒFtPKÓ°£\ù.wƒ¾`Á .ƒÐiÔE YÑæðòù»“OäŽN༠Tǻ怆ñtvvv‚ –ä¤&·X,]<B`ÍÍÍUÓ€G²H•Ú³p³jü%4×aæÇQorÜåçØ Ø¤ >0¯[·.óàÁƒÒh4SñÁ‰‰‰9‹-ʹpáÂÏxàg·„ëò Ûívwº²=+8;Q<Ü­„4'!£D³ö4¹Æ[–ȉԓO®öìÙSC‚MÐÞ ÏÙ-ßúP->RyÙ©ta€sàáæ@{ˆ¢zÿÕW_Í…ìp‘·?òoåÂ… É ¡>|ÑétJ&ŠE&ÀlçÒ2Ï['–[ wÏñc€DQQQ‘ã©^Ð T‘”R÷Ž^è€â<-6\&F?,M5 —ýª$2!O؉uJ Ä£ÌøqÍ8Šwe"¼î¼téÒ¿ü¸žëý÷ßÿ7¤]þÐà„œèô¡“#<75kd5‚©…ïâ˜ñƒÉîd¦ººº ¤`«·kwuu>uêÔmA^:cÍÓeònl.êÕÓïܹ³ ªª %K:xœÄ(‰ì‘a~œûgƒÌq+hï;b½}mãÆ5Bb…õ¼ (Ž „' ‡{o»³ÃÍ›7goÙ²å(ˆ¡þþþgNžÞ`0ä766¾½`Á£@/Z‚bè¾\gžblº#ÌJð7=žé³ ip•ÃéN&MYYÙ{V«5ŠèãÙ|ðÁrssñ=>6õâÅ‹“˜'Vr"}6ª³ëî—…B?9ëJõÐCeœ8qâ­„„„ižÎKKK+úì³ÏvC¶ˆ@GQ‰Â'2ýçŸ^ùÉ'Ÿ4ÿÏ¢’¢ŽòhOY.{WN{xIIIò{ï½·Àžîë$„EMMM;S €£HCCCÃjðîóÓ@Ýüñ‰'žÈ"h‡œ ÕDPÆOu3îNtž|òÉàé\ÏŸ:uêý_|ñÅöäädºáèÑ£¿|ì±Ç^Ä¿«ÕêɇzÅL5”œ{1+èÛaŒš,ä©Íÿô䬬¬ûÏ;÷$1ÿ\·nÝs,%5P8räȾçΜ9s“º®ËW œ¯¼k<œ–†h:[0 //¯dÓ¦MYºN¯×gÖ×׿U^^ž)’±z¥h=ñ¼™l©t-ÇTj¶’˜˜8@ß’2¢w@%õ´mÍÑšýÊ•+CŒÿƒ&ܨ\8š&z6d˜o–––¦Pš]À=Žóâîîn 3þ%ÙØðpCV¼L“Ëå.&ÌÍŠ…äé­ÂÂB=Ñ«Ý ¸¾±¢¢bþòåË×’'X,­œ Á¹„'ºyT°äbR8OÑnZ¿jÕªõÈàa8ÁkzAj Ûl63€o¶ÛíV?ðýh üxxY´À÷Ñ€ ŠG“ê…÷çõ:. ÿF—;wî dÆ Ç::¹½eË–Vl±©yL´=|œ‡þðÃ_tB7Ÿ`DÆD¹Üºu‹ð`¸ óZ0 ãy©d`Kåá|ÀÝjc&@æGô5}ddäÓGyäM"@:D䟤ÝÁ¼kùz7‘1=œä‹TAès”Øü ÅÉòòrîæÍ›ÿþ6Sœí—"‰ÆšWãÖŠ2›ÍÝZ­vj¬Žê‡ƒ#$6xÁ;áÙ’É¿pÈBp[{,Ó‰P?+¥F$×ÚR.¶ª¸õâÅ‹gbðÖÖÖÓà¤g»Â v°Î‰¹z„äXBWWW½^¯ÏÁ`Ù‘‘‘–UBÙ¯™?% ,‡‡šiŽñp¸ÓË/¿üDÿÎXÕgÛ¶mÏ¢ú@;Â%ý|>© ×KÁ©µRHÝÑ”Ôi5mæÌ™hI:H2š£¹4\ÿ|ssó+999P/ÌSE¥fÆÏi +nR¬êF¾Å&§ú3âˆmEeeezaaajZZZ¢Z­V¡ÕÕ€v¤z׆º0Ak…´}@®î­««»EF›H tC%¡RJ¨k^‰ÍW0c×E{­DÊE|½-mꤲGÉI4—Ñc=ïmÅäPiçüPOb‹ø’JÄ*oG{ÝBÖ ø¾¼š•À»}y»_k‚O$À½u—2ÌYõ~"îÍkcþÿ:LdÀy‘;,r:"€ß+Níï•{€ßü^¹xÌ”ÿ 0)£g*a›¹$IEND®B`‚camera-app-2.9.1+14.04.20140331/assets/flash_auto@18.png0000644000015201777760000000645512316315040022536 0ustar pbusernogroup00000000000000‰PNG  IHDR\Là9ÐÃtEXtSoftwareAdobe ImageReadyqÉe<hiTXtXML:com.adobe.xmp ËB/ [IDATxÚì\{LG¿Ý{Áw<äáI…ú øâêûQÛŠ­ R^9©ii}¥MÓ&­ÿkcÒÄÄDSLÔÔˆüFª‰–øO+©ÁÆ'M…Ô’˜bD‹àààž»ýf3C‡qW¡·{¸“|¹Ùݹ™å·¿ýÍ÷}3'Š¢A/±+¼¸¸^tÀuÀõ¢®Ébšè9Ž›ì{~ÞÿÛÇ•{lŠ3‚pc=*àuÀGƒÍÉÔYE|M“ óqÆlrÏ|yy¹eãÆ¨É9…¡èXcww·ñÔ©Sø-5QÀsZž›èÉb’&M ‘¶`0xÉb±”A]‹P&`ó«I3ÞNXŽ7Æ‚æææÕP7cÓ<Ëù8›Ž$Ä,‚Ïívu‹躆OŽK D"ƒ‡£xÿþý³1èDÏ5Ër>N@–“ø0¿ººz;Ü"3ê øO%ûÑ —ËUUXX˜FI‹fY€‹  C¡8LžI5550€k’åñ˜¼‘•@ 0HNΟ?¿:%%ŦÀrð‰˜<ð9aµZ]õõõP•a¹¦d%žg#?}bíÚµaÀ5;yÆÃGé¹ }$¥àСCKŸ:§>vïä™lá¶±Çã©Ö2Ëyü"“Úù|¾aöËÙÙÙëvìØ‘Ëøåšqy ³™D”JÆàg:à8~×®]›e&O^—wßIÞ„1é|P®£üüü÷—-[–ªE…×(³ ÈHÀ)KÀféêê’Üd2Ù`ò¬d´œ×˵ÈpÂll;Xeè8ññãǥ΀ᛜNg¢Ö!­Î3€°`N°dü)ÞÙÙ©¸j`³Ù²Nž<ù®ŒÇ¢ª¬haŇ]X˜Ý××w@[)ºGÉ$GבA1ÚíöT¥Ž{zzþLOOßÕ~°0äF¢‰6l`V„b¶‹ 4‘³MXB‹§_¿~ýKqÊ>ƒþ‚ÍCE–˜Qò2Ñ8(â£QÀ]Ó¦M›ä£hïèèh‚þPô9,Ë“•’—˜® eò$H„»wïž¶ó™3g¾½}ûö\jòTwÝS 7PÞ‰30 lîÊ•+ß …B¾hYÞÖÖ†œìU°t<[hYy™βlyß¼y³¿½½ýR´¢@^²’YjξÖD^"Ø“ÕÔÔ43„hAÐÑ£GË©àG5ÀÕr •2€´k˜ˆýíd˜ø¾ÏÉÉYÍ}Îììì"˜‹ˆ’^~Ú=cäò*2šÍ™Ð¯:ayaÕÐÐp&Ú­VëŒÆÆÆ"¥Izª2œ›g¢?97MpÎîîî:p(u<00Ðc‹´áû‘ê<Ï‹CCC·RRR>ÅìþÛ3†›T`7v51!7Í>ƒXljjjðx<ß)už››ûUoo¯ËE"o >öãc+¦Œçc6Ë^:9eÃL¶ãc² ™HK|韡ÿ( ——‡>|8„÷R6€ÏcÐÃ4³§²—Â&§Ïxûöíj¯×{¾¿¿ÿ°sà ~Hå±y L$cøÎ;ç•:Ÿ;w®ƒŠò%ƒèA l?¸8Õçv[³²²;Çr§Ó)™ÛíþÎ'Q€0HÁ;w^‡ÃCrÏš5ËŠ¥ÃOÙ0vH&q%N5À9¥\÷éÓ§K-ËtÆ›pÕÕÕc–“9FÒò–––^„~’Äår%ßè>2-%ÂTg8-'d%Ç Ñß'r׬Yó±aôJHXÐY¹@<˜D Lzc>»Q_fÇ pÖ Y£|¸Ðd2ÙǕ΄ö C… ¹ò`}}}-:ÆýFÔÌ“¨•§ýn3f9ò ’ ¸9ž‘‘ñ6iÛÖÖöãðð°åªÉ9Aø´´4ל9sÖ“sOŸ>½š™™ù9ND0¨<ïõz†/°X,oP¡}ˆy/dx¼J a¶|é쪪*´‹*H¤€~ ¬|®!¹X¶ l:^´hÑ{ ÍÒ}Ïãñ¬Â2’‰½Üwzssóhÿ;ñ¸³÷D ’ À83 ¸ù†Öæööö:8Âw´+jX>þ\„\Á'Ož\¡ÛÃ÷¿Å._:Öh6TOwò ¶çÙŸÙ]5•5œ«¥$¢„¾î`#–ˆA9»ÿ~#ãÍ”P?b#ÙA•Zx3&#øRiø¨pþâÅ‹nð8¬`ÒCÞ¶m[ÈJ˜YÑþ¥K—ÚöìÙƒ<ƒÙlŽ€>ËÊÊþÉiK .))1B;ñÂ… a&qeÐ’†OÖ"²\†^™eÒ¨"()—N -—j•KV+ ;þɽ©‡€F»v" x„z`´4 2ßQ[µœ·š€³`r ଑4,'3áÑý cT“~¸iÁ¦ÿ³š “¹“{íEª Ó^.¿Wÿ{²ÎÖ9Äç<4Ã8¾óRþ"0Çú ¸xxÒ½½¨›žÕ‹¸¸¸^tÀuÀõ¢®®pÕË¿ 'x^t}‡üIEND®B`‚camera-app-2.9.1+14.04.20140331/assets/toolbar-middle@18.sci0000644000015201777760000000022412316315040023265 0ustar pbusernogroup00000000000000source: toolbar-middle@18.png border.left: 0 border.right: 0 border.top: 41 border.bottom: 41 horizontalTileMode: Stretch verticalTileMode: Stretch camera-app-2.9.1+14.04.20140331/assets/record_on@18.png0000644000015201777760000001144612316315040022357 0ustar pbusernogroup00000000000000‰PNG  IHDR~†â>ütEXtSoftwareAdobe ImageReadyqÉe<hiTXtXML:com.adobe.xmp »¡çTIDATxÚì] ŒÕ¾ËBUÞhвXA0¨ÑÅBƒø²‚Dc[Á® EÛR[(  $”‡m¢”6P°€€FQÞj!BAðÖÆGeQd) =ŸsÐusgî<þמ/9™dæŸæ~ß½wιϢ“'OEíC¥@…W¨ð ^¡Â+Tx… ¯Pá*¼B…Wä êý ¨¨(¯¸·G—æt(!kMÖ‚¬)Ùé>?ý„ìc²ýdâÖ’M;*ó9í¶æø¢ ¶ú|žF&¾€ì²ndç“KÖ$Æß"{ì5²md›É¶R†8®ÂgWìNt¸†íR²Fxìa²d+a” v©ð™»”ב]OV𝴛ì)²…” v«ðÉŠ]ŸCÉn!ë™Ãµë:²¹d‹(Uᣠތ·“ÝÉÎY¾Îá ²Ù”¨ðá‡×=šlLLç¬:Ž}ÄVEvŒ¿×ð ê‘5&kÉÖ0¡gâ9ÓȦSøD…·{æ£È&!WXçk3{áðÆá|í#âÿëð­èÐŽ¬GÝ8ZˆêÄÏ#»—Èø £Ž]Lv{å¥ì¥ŸâÞ÷¯EQÁ«d/s8èšÞ6t˜LvSˆŸ¿IÖŸÒ»§ „'à/ Q‚€‘DÀ ŽèJ6k’î›'Äü[¸d" ÛÓÞ‹}“  g ¥}}AO ïC‡§C4Œ œK ÿ<ä_ŸÉÕ0“Ùv{Ô È%{/$ è0•ìŽ MåÄÁ³y-<%¸œ (ø¶ÝD‰}:äß"|º‹Kxqý¹\Lãð2 ý9 mPà !>–å¥ð”È+è°"@tT›?¦D¾â/Ñõz?Y¯tê×’ýÂx]¶A¼œC‡%ìØÄï§ägExþ¦¯ ¨Þ‘)†Râü] —ªA&÷±„k£½ü ùwÄ ¨öûFýæÛ´MeÌ%ª=W Z¯ÊD¯Ë¥hWžˆnø=wñ{‹CÛ8Ýå̃-:YÊ|&ŠÄKªùnæGÂ5ÌonUõ”c{²g+e¦åÜ8!5‰¢ õ¯dW™ÂÅ*²k×<ìÇ!2þßQ²…ûQÚ{‡ër¢ª§þžñš7Ï~‚A=-Ž\3®Êº›ÂÇ.½,Þ>„í&ÜÿÂ@âòÓ\¨ê´ˆŽÆ™ÁÑ[pMQD7œÎµœnÉÛ̼ùálæ;»U=åÐrB$À!Y.\à ŒÕµHôš%ÿJ²ƒ¯ýÙQ–€*ÿŬ”xŽ4Ûò“ÑërFmýTÉGúë %9;ºf3ÿ‘·ª¿ÕÈcä»Þc¹w&çøÚŒ+ÙÛ—p¥  3óŸÙªžG›¼ÅŽ™.·xŸ?3^Ï–Âzÿh‰–¤áYp JJ«ªm}žEô.Ü8£ø³˜¿*<γDC£3VÕW›ðà„ã…k˜ µ€Šð¼Œg^} gËÈ7¾‚=r?üÞ2ÜùWÆÞY›q>óãWêÁç$Kdt‡ëÜ¿ñ<~sÙ0>îzÑ#‚3²Í$;$ªÐpŒnvúÔ²è©Ã˜…6>÷a®ÞÙ5'j&ý¿Þȧ¢«è¨Ç<ù•zð:E¸¯5ë’jU?B8Ïr¾pí* ÝœB<©¿b>óì¢K|áyŠ2áòaì;¾TO'LdÞj–zðûáž2Ö'•ƒpþ¤å…Ð!q‰jé„îFîÞžÃ|»è[øk…óÏRnÜ'\£:FÂá[žŸuÔ'ºðTÀ۔Ʈ?.œ?¬j }˜?¾KY§DK¼4×ídË’p8¡ù[Ƽ»è”¸ðk„yÞM2Lµ‹…aÆgÂó½&uá¹ñ@šü/u»ö6Þz2ŠèhÉ<ºð~ë•H‰¿ØÈ/«„óƒT·D0È‘÷z¬W"ÂK±û{–©OýT³DÐOðîÁû{Žz9 p^êz-aSćËuŽz9 ßU8ÿ²ôQ½ÅeŽüw-<9 ß¡Cá²´@@Õ*Qôpä¿ë«Ä·3òôEÍq 'tu俘u‹-¼Ž’ƒñáZÕ*}á™ÿ£Žº…¾­p~Ÿp³jš«V‰¢óê¢C۸·B¹(TDF[GZÄ^I+í×ÒF5JmuhWxiPå(TĪî]t8-®ð „óÒØºFªQ*hä¨Cƒ¸Â)ç…Ýp0P”iáO*ç9“™^Z^Têó=¬¥‚ÃŽ:|Wøƒ y™Šxp¢Æ^z Ô:÷j” >pÔá@\á÷ çÏο«¥‚wuØWxéí„óŸjuŸJ5ÿ©£ïÆ~Ÿp¾þÞ]¾/\Û®Z% _>™ÿúŽº9 /-Jxž Ÿ=á-üŸˆ-|ɦ¸ÿ†pY °IµJ›ùƒu‹Uâm9NÆ»AµJù¬qà ¿U8/mé½×,Ô¯ ðø¶#ÿ[“^Ú!áLÞfÃ+T³D°Bpìα„rë“Ãx פÕ–¨f‰`‰#ïÇŒ<ìÚMx^Eún÷ο`¼½ÚÑñóèÂûË:DÎ%æjõå¡ýBŠª],,𠥙ホ:E~¥p÷Ë…kóU»Xø+gÞ]tŠ&áÍ4“»^`ü]&`&{ï1ò0iäû?룼HFK|µ’—ÅhP[ÁïQÆï8Y”Ò ±_1ö®ið5„ùK©Uõ5‹ØuY@µ*äÓ÷yÈ¿ÆÜ±›×¥YšAÁñÝÆd‡G¼ˆpM°´×û.é±E·i›á«}ó—šà%Íß$A w­Ò1W| ñ*©JrËr”@´¸=ÃiØî˜v´L¢—­}ÀOáÈ LªzÏ á™€ŽÆëxhâç‘ÝK$DYE 5 F³\ÄU*jƒvdg„¸÷}ã­&RýÙ«Æ›„x$Bz1Tê~n—Â[ì½ïIŠïœžÉhÊñy˜1T{ŠñF™T%ðøb®qš°Â!¶Ê$ü=ÚxmêMBÜ‚šä†(#iòFøjñ+qŒé`Vr87;êÀƒL€Ò…¡Ï·ÁO1ávé@Û;†U¡)6qG5焯FÔåÆë~<+ä-UìP¡[rg ÞÙxÍ­p4‡¼ #†Q:^Jë½rVx& ƒ1ÐN=ÒñV„NØN{±0¢7í÷nÅ1ûÆ}Ÿ½yø ¤]{å´ðÕˆü‘ñÆëwv¼Õ%¼`tb ¥pz<…÷«k¼îRÌK¿†cw×v]çèýžÏ§y!|5r1ât‚‘§ Í¿›‘Ø+Ùû\jzìâŒfâN@pôDÝ}%û·h§H#Sæ½ð5œ$xÅw9|3ƒ€pì#¶*ŽÍ³˜õø9-Ù&ôÌ*vJ§gÃ)Í;á«etñÞNv'Yk“?À\¶…dm]ß¼¾ZÀÔ«¡ì9÷ÌaÁ1:O¹ÎeSáƒ3Zá®3Þ‡Òx%´ða¦êB{w.qUPÂ×ÈØÃ†]j2³õÙgJ"ŠXIbïÊU~ VxŸˆàö¾»±7~® ×d*͸¯st°£…­™ôÌUøè¢9‡fp±ßjÓj¡bóõpxÝh+ßÏÎÙ^¸2ŸÓKxEaB7Tá*¼B…W¨ð ^¡Â+Tx… ¯PṈÿ 0ì›_—Ñ'Z5IEND®B`‚camera-app-2.9.1+14.04.20140331/assets/focus_ring@18.png0000644000015201777760000003462612316315040022550 0ustar pbusernogroup00000000000000‰PNG  IHDRæç 6*tEXtSoftwareAdobe ImageReadyqÉe<$iTXtXML:com.adobe.xmp -bå6IDATxÚì} xåÕÿ™ÙMB@îwÚ‚Z-"мP[ñ«-…OTl-^Q(R-¥ °jiE¬¥TE¥òÇŠˆU±o¤H‰Üå. rKÈfwæ› 3Ë»ïžóÎlÈm7ç<ÏŸ¯û?]—N vLãéÒ1š,CL 1Mäx/°™UdB³00«š³0êH)(ué» a†Z¦|¬é˜f%Mafµ<3MaZb&¦ L” œ˜æIã+"L´|}ò1†Â V™Ì˜¤ HA¥'. ˜æ8]p‰2C iÂþâwŠÓ ™ -jY´éᓪ´³é3¨ÅÂÀ¬´V¤LXÙ¬ x˜¥0ƒÐ4B‹‰Smœ¿íý:6jÔ¨ûáÇW˜§ÅرcÇóÖç=¬­«µuÎco¹ÖÖù¹çžû‘)ɬY³~,ã~ïyÎ÷T÷ôÓOßXVV¶ÇÞÿÔ©S;ƽtŒ}ý9ÂFÝý¿VÖÖÌÚᶆÎ3qŸQ†´a€Ö^*bÉ Dƒ2 ¤²6 šLÖ.”FŠÑ.Ë–-»ÎÒbßw¯#77wøôéÓ»ªK]»vm+ßH·nÝÚ"“MŒ|çwþ:==Ýdddä>øàƒ# ë €XiÀTÏ»ïâ” H€Fó10Ó¤Iš¦óçÏïýõ×_?öÑGÝܰaÃt1ßߤI“fò¶k×îEÔøûßÿþ¹eÂs÷·Ÿ3gÎg ^Ç4ÓÒÒšŠß“™™ÙÚ#Z´4zz^^Þ¬{züÅ_¼¹êy¥!¦¼ œ Ðz Dbšcre:fÙ9Ž™ÖÒ1ÙZ [+á3×ܳͼÎK—.½Ã²#®y¹k×®—¬Ï»[[Çœl/˜—ö1FŒÑ·¼¼¼È=¦¤¤dSçÎ{ Ç´“ÌÒŠãfΜùƒÂÂÂ…ööç?ÿù‡Îþ“´­³ç³yóæé¢ù»víÚ_ ¦l®`2wp>ëº{÷î¹Â!‘… sŽéè\kÖ¶tLú–Ò3jå|.š½™ÎóN#€êÅŠªÑÇúpŸ^ë:ñ "QL€XfŒ¸|Ø·oßïrrrnîh§Àw­_ÃΑ"žÇ5*çî»ï‡Ëüñå+V¬8êìAŽ‘ƒQ@Drã"²–ùüàƒn:÷Üs{|<`À€<Ž Z×ô‰u®ëZÇÿÖúµÜ96 ñK3rdÚöbË3ªµP“™:¾#("ràóD`Êëw1ÇoݺõaKÛ=èž< íµÀp­̈äVè “©)ŽÁº»6ÑÒ± œ¿âþËÊÊÞµüÒvîoß¾ý9ëg àéYŠÀŒ€ #•Ð/1Ÿ}Ì$èÈ‹úòòBóÿøÇ?öX²dI¿¾}û6Fü*°æ¸qã^:yòäzG[–¼ÿþûOHšO åÂ’6÷ó°´˜8¦\úù.ì;BÒþâ„ùä“O~oÝK©}Oö½=öØc/NBÐÅçvÍ5×49räyŠõ{ÀG ˆ5f €Ò‹™£IZ%À5 åŽ=zÈ3Ï<³OÀqÚoüøñç®Zµêȇ~x1ád ƒÑøTÌÊÿ2 ÀP¼\@‚D2»¨,W]uUÃ+¯¼²ÙäÉ“÷ Ҕ˗}°K—.jš¦­ìÖ­Û¨âââ2ÑP¦¬‰hsÓÃäe`&©¦ôŠŠ5­C‡™;vìÈ·Wš»£Ôg»víú´¤]L¿ˆeLj¦P€ŒÚŸÊdâÁHìò—‰±’Ld²ˆNl–Fm?mÚ´÷Äï±,‡G, úbÆŸÍ"›åòÜRœÁzJ•iRG“ü¶8±£’€ÓÒ Â·ÅWh’82yªò*8¯á3Êé>™/çÒVü?77·‘ü-Z´hxš›N{ ÉôÉ'¯7eÀ©§±õH*Òª¢ËÅE_wîÜÚµk×óîß‘HäÈìÙ³—xø‹!É—+G|E•ωí#G[#Će‰DcÂĆý¿¹Ÿq?ß9vìØ¯,_4_xnGŸþù·ÔÏ{ ½œ ‹ƒMÙZ¾~Ê$Õ‘k´QeqTœã•W^9ßò‘:Y ühΜ9‡ JD:Þ$4Ÿt2rUÕî©Ìs£&;•ù+›°QÀ~Ö½{÷Ξ5kÖ²²²šÌ;÷éÓ§ï:sEGÌÿð–X¨çd20kƒG^úˆÎÀóæÍ»¸aÆY&Lø"??¿DÒ(Ô dШüFÊ$MÄ?2káÝ«ø5b_Œ-%[ ª “þÝï~7kâĉ?~¼ôöÛoÿÂy¦. C@1`ª–SLfÍúªADsÿþýÓÚ´ióSûಲ²ƒ¾mÙ²eňIFå„ ©Z$ÇŽßcÖð{W­ÿª4kèüR è´·ÀÍ7ßÜlþüù 322l¶XïhQÛ¶m#€Rtä ‹æ&íºg ÉA)³_Š-ºv6räÈœ[n¹åÑX0ؤgÏžEùË_ò ÿÍ |A ”òÒ†_-iÖÁçLM"ªO-uDYŒ¼hÑ¢¡999Ý5jômkÒüÿ}ôÑQ(3–ø­w^-Ge«)УÊ÷ÃfñŠÏZ´h‘ç é: QV•CÕÈ1˜¥ëê ®ŠvbÿÓ„h¯»g*"¨‚î³3 £\¾K{êDÌ@#&>CúŸQÇŸuÒ›²1KbK ºÇþÁÇ?í¦XY³òׯ »õµ×^+""§˜ß¨ªF—êE“ý˜´*ÿTÊU¸·Ýv[‹_|q‘kʽmM¢# µŽ)[;â’”‘L&m²“òe°üFì>£ÑEëå.\xifffÆã?¾æóÏ?/ñýSù‰õµBœªµFøª2g7JÓ³£¸S§N½¬¤¤¤Ìòû×Z“¦¼üCM|˜ Bä˜Õ¨-å—šx1+U]UQ›akwb@¨:õ ”*€ªHàåND׺.®\ˆZ—5’Ik“ìe˦R€x¹º4‹ªÊ1Š/5B˜MÔq©l®VÖ/•YAÄG¶©¢Ö2»|{°"dâùtˆe;‰×Ugß™^GÁè‡Åçc.Y²¤¯šdƆƒÎ¸à‚ ²¯§Ê°(W€Òôð5YÔKà•õ¨ìÑß——®lÂÇŇžiù¢³¬wøËJÑW¶3nä"`h‰Ö˜´©)¢®XôU»öÚk¥¥¥µOØ´iÓs_Ár ÊH,—ü¯Zs×ô©9I ÞСC»èºž<š0`ÀwãGUX[‡:–ã©×QPª b¹¿ÇséÒ¥ÇJKK ¢#À4#üñJ ÉÞÏUÕ€AY=à4Á‘?f]yñâÅ[¬wÎk¼ÿþûë_KzxhÌZg ó!ƒ PÆ=ØÂÂÂõêÕ«Üè–åË—O2dÈg ÐOä•¥ê'ãDúyF· 6”õë×ocNNN×p8\üÙgŸý?K‹®A,¬u….³NG=ë‚¶ôÊ”}=9ëëÅ!LÕ$M.ÕêÇ¥ñÊ¢*>˜„KQLÔµúþƒuèåxU©Ã0¦Bñ'f"aë’ƒ±Î˜¶î8—ZÄÿEÏðÑ=M˜éŒe¼`Dûz Lðð+EŸ’ PWeºÁ€LÊïÚ'HÖC°)âÚ&–††­ÅÖKS4I©%’Š­yóæíÛ·oPTTD½4?Ùª4!–äp³¨¾œò:gŒKÔ½{÷LÓ4¥¥¥@€Ò Z+¢×âCWåRÆ<Ôõë×;xðàçëöìÙ3!==jU‡•v¤hY ÊäО˜D-wÅUì³ÇŠ=fì±sèСOóóó‡Ý™ÌORxÊ΂]ò€½.e/»ÄÜáÇ÷±fº°HXºtéϬÿuƒÓ¥ùíµJ·ÛTc8³˜ìvšâÎR©1f°Ú@nÇ5ûÛ—tb“ l"BçåË—ÿ\j†7nÜupšˆ`ïÓÆ;à ì/“Š“ªßªÌ©ìÓ§O+ÙänÕªU3 )^•©,À’Ôôùž£ï»uëÖ­ä1ß³gÏVèuŸÚSK%`j€$«m[³Û–S§Nm†á ãÄܹsW]Ϋ’ƒ29‰™µª €/X°àßö˜qOf¥íÖ˜ú’ÐÈ^õ‡k̼ Ô0(Ut;Œ•¡ÙÎúÎ;WôêÕëä‰'¾´@9yÊ”);AM Èæ,©2‰1S^^ÞÉ-Z¼—““SrðàÁÆŽ;yÕªUÇcEEv7kJcj5ô³ã¿b¿cÝ¢"RGn;ÀÚ±~Å,äÖ~BE|X]ÔÚwµ­` ?DŠÙC™ bŽ•7Iõ½`PÖ3óA©¼L¬Š¼¼æ‰ù°QO j(3X`Äf6ÒtE4Um sü97’}QƒøLEDÏ£JØ®"BMhL9ðCµ¹“›ÕD“Cez°¶¬ßšÓ @ft”ûÔ¨ØAX%„j‘ÚŠÊÆ°{zôè‘5uêÔ.çw^À;${¥±¶dPR$u‘ˆ º>q³!¶R?–Pkࢩ`ß K °íu$›ÐqþüùƒÃáð7öÊoYYÙžßÿþ÷vÁ_›<ÐÉÚìîÅöp ç8·ÂXTã #"¸\Bg|uÊÈÈèþõ×_?o¿£G®9sæÍK`ié—팽`27±'Ešópìc—‹hí<”ÎÇŽûX¤eœ.IÓÎÙ·©3~Ñ®®›²~zŠDo& žãôƒY@/$«*Þ±ËâED@Ýžœœœ\ñ$iii­nºé¦~Çpu(½@éu31‘WË„X*ž`Æ ¯ƒ¿*Ìäa¡À©Úâ€úÅ_¬O`iÌ}Ï?ÿ|!<¯1­U5ª”T함9ºbÅŠ«Úµk×iíÚµŸÝ}÷Ý_]”‰—EX*kÁÉuˆÓ„8EZ^^ÞÀ^½zýo8¶)Ÿ5jÔ& ³•T¥M«DQhÕJŠ«*†äÞly(Xk<&‹ß±‰6Ö…ØNâX#c™ú)£r9ÏjlªaV¢€(W"׈¨Jiò%ËY( Ü*P'MS1”j‘@ÏH^$¹ž'^€ê=É€d9ÅAÉôD¬“™*¥Õ`bkHrU3ªvVô×O¶ Ke\6/À`Í‹¨æ¸P]\°Šo^® Kuá’)tàmÓ àŠè,g/¦ä;ê_QÑÝd‹NnëHÑõôª—Á*š‰¨z=²«!Iô1±4%KUËMPqÍÄ1‹¥‰]ÅÎzŒVÇ:f\hýúõwØ]¸¬í½¼¼¼›Î$ñC"`a©,(± W2„¶zõêÙc×Úþåóò*äå×l®VÛÝ ½&äRž¢Å´æÎûc‘îdFd̘1×@lW¦æÎqb1$¦Ú±Tw0+gsbmnl—{äÈ‘ý¬1S nΜ9ƒ/æ%ÒõÎjÜêUx£è,ѽ{÷N1;jš~ÅWä*¢aTÿI–êÔžèÖ¯_¿s­1$íÙ³g×*2U05bŠù߻ロoM2åîßápøÈĉ? aYXªœ2Pc*/>÷Üs‘HäHtGÓ -[¶ìSÅøÔ<þö%³¥ª¸V… þÞ{ïïÝ»÷úV­Z5-))Ù,Xjœ^`2Á;ç˜ÒÄ ¹•1eý0|äŠw^|X“ýJ–:`Êbæ' ÀÂh{PS:oµù˜^A˜ñ›U½FØÇd©MPj8E~·¸¼(Ú D!Uº!ne×1©âÍÁ¾}û61bDâg‚N“AÉR5&EÇ(V•#Ma9V+{ «x'Vë¼qãÆ' Ã(·iKEEEï¶nݺ'ÄRïlªžM½³©{õŽ…¥.ø›rÙU{¼Š}[íñÜ套^\\\üÞ‘#G>X²dÉp8SòÒ®îh—h­‘’—"0mN«Í ´9®6W°Ã}÷Ýw©Ü`vÕªU£¬ÿuš[­%YXÎb¬»ÀLG€™;lذ>‘Hä„À?õÐC]§K^¶‡3eWÅ’—¾©'p¡Êÿµk×. ¤(oVVV&Ù6]Y’ȼ§wÞy纮gGA i·Þzë÷@½tâ[éUpáÛO<±«¤¤d½ûk6ùföìÙ«Àe‰…%@¿ëÖ­Û.‰ÌO>ù䫚Ûrz—kʺ>¦mSw¼þúë/´ýÌ­[·>mõZÁ¿´ÕJ•™g©~&ÕEÀï, Ž)--µ;žo_½zõ£’)vÈ„«·k>/R§*…-•`µ9™íÃ’LA y¼ËM‡Äå@q¼‹s;v–d&F ´]TÒ úœ5TàIJH¡ß±°ÔUóU¶]Lˆæ¬€2 Ðª¾¸³AŸ3‡Š´.óå|4ªSkK–d¨ìkꄂщ¸ ƒ•ôôÁr/ÅÌnÙ™5ùä“¿ýöÛÇ –7+×P&2ûf@¦LZwÁ†Ö±Ú± L–d¦Œ ñ§\:ŒàÂAZ”"¬›ˆÙ*Òï¸Kªš³ò˜ÇÈé@˜±¾$è1;xÁubÜX&°¤¢)Ž}9ëDĪ—‰L2ˆ!x \ÕýdV ϲ°¤làÔ\pŒoîY(:H˜±^äõ€„xª–&›±,©PÍÇ8Çhw&Äö8!s2U>¦¨8åäPІÇf,K*‚RS˜©r1h,>#šÃò9}ù˜X9‘€ô¥¦âBXXRÝ´/¢òÂ:‡¹Y* ù˜"ú£š2###¸hÑ¢KW®\yýµ×^{Ä'K3ÝŽ¥¾‰J‰aͶàÝŒ"V¬¢Úúþýûº\ÀP(t`̘1×@lµu.êÌ’ê T&xXÊ«ÛîÝ»çÚE -Œìë­·î…3ôl®¹ªb$ù¥bɾý•W^ÙË.:-u·oßþW8MÔÍU“5)Kª“Lðxçw~“݉œ¼âŠ+.‚ø˜^¦lŒWt@ˆá¿Z3ÂIE‡}L–úâcF¥mÛ¶íÅ¿u]Ï4hP[ä¨è>¾0º>¹zõê’]»vÍvÿQVV¶sÚ´i¯A‚53YXR¤Ñ-//oÔ±q²kòäÉÛà,–å.GÙßå¨ó¬Y³n\¼xñÿžþù½õLU[O¨‘ Kz¨¤iÛTíd™³÷9räýÂÂÂÅãÆã0m<ã˜Á¨)«yD—äjëiRTI¤âaÄu™šÇÂ’ À »¤^+ñ™&dæ•W•<¹ˆX\H,¼EQ’Œ,©h¶ÊÌÃNTõ•}1”ö3Ä“× à*ë,ì_R-\I(YÚOùKL`1Ç–Ê’Ê ¤˜—’RöÍ "ÿ¤ QÙ% ì0(Yê‹Æ¤€ç·1—Ò”Uz©yråu ±°¤°`ÊL±œú%õIý’Øå”/b3µ P—‡ga©/@¤”˜ÜßGODcR_$g–è[O.ýÎÂRŸÁ©Jt#´”æ4EcgÆN˜0¡CQQѳ%%%˶lÙòpÆ ÅöÕr x/ÿ“…%)þÅ@óæÍÓ¶nÝú° 3³~ýë_wºU‚'ž™%'Ož\/’s×­[7N³æsá £3KXê e†œÍx³Û‚ØíA:­_¿þ +'Nœøâ[ˆ&~ò1£[VVV/ñŸ999½ø±°ÄK›6mÎÿÎÎÎî™Èñ^$ö˜µK-)îXXX¸¸® KÜþþ#î`Y› zXJ;b~cƒ Öœþù¶ïÞ½{AŸ>}þ …D^¬W[w–T ö`åD´yóæm¼í¶ÛôÌÌÌ&ÇÏê©§~óÁ3¼Ï©S§vº Ù¹sç p¦E‚'Ò˜äYÚ²czzz;Qã^uÕU—0èXØ×2v\¢6ƒ"‰¯ìU: vœ¬uA3 KªhLGÜ”4 ¡Ø°¾²žQY9 vBŠ'¨C‹¨,,I¢-U (-ªÊ[öÝTHÕŸ‹23W‡øDlβ¤’Æ”ùãG<°ä;»ÄôÐn˜v€òEè’‰ÌÂ’ìZSE\ÇŠ< €P?ý1U  ŸÉ­ù Âßdp²¤’ÆIëòR"–QâKôJ\Pt–øáØä_ÿú×÷çÏŸIzzzšpY—}L–TfœÆÌÈÈ.X° ‰ë®»îð—Øa&úåJ¢îèÑ£û…B¡BÝð$Piš…% é®éÛ¬¶˜kë¼ÿþ….,l3fÌ5PÅ íȦUPó¶nÝú'S’Áƒ_j_ œ¡çÙt¾†ÎÁ£Ã K×’ræUspn¿ýöÞ2¶mÛö8MÅK˜^¦¬‰ü]±!D]£´´4âÃqfaI%©ÀÃÁƒC¶¢Œ„a„¡’ z"_.lÆÓO?=ßR×{Ý6oÞ<ó7Þ8 êz™ N–dÖš$.V®\yÜÒ³ÜØØxꩧ惺:^ÂZLl¶)öÇ+M§}ç;ßÉ?~|¯ÿüç?§M›fƒTäÌRÕ¦=×pXXê¨)+W^«¾>a„ö=zôh9iÒ¤ §„ñœ#‹Õïz%V>ˆtd².Fh7˜,I¨)©FÎ"Ä¥QT*¾lŒ|S¾8ðCýt22Ù´eIRPÊJJ®‰u'ˆ `Œø1g>/Šªß”5#K*˜°*–Žë€ñëkÎÂŲIT53Mâ'kM–d2aEM⻦˽~¨ö” RZ~*±cÝ¿ÜMšÜNqgÝÓÁX’McàÈ7 €&™õÕÅÀ%#_¼p1¢«Çq•v–d§N~°à§¬ H0³Ä¯ÆÄ´&uñTYx¹R»Áï›%‰‚>àÑXª+ª‘ø±õ@Is¢3ÊêÕ«TZZúVIIÉyyy7ƒºue‚I,,µÎ8Òúĉ;nÞ¼ù¡ 6üì†n8èJëà•Uç.©Ýæú5Ô>yòäkìÊìb•vë³à4‰×&ùÚd_.mÉ’Læ+Y¢rĈ}Ãáð7î`·”ÑWmÚ´ùTW<‘´/“ø¬bëׯ_Wé|zÿþý{"&¬!”,ÉŠÇ?ûÙÏ®ç¸;effvÿÝï~×ã,°Ti`RþfŶ|ùò ÖÄQæîdFÙ믿þàeI¸Á-KÝ6a•ŸŸ8qâx (LÓøôÓO Á›dS-,æ£ÉUÚsß|óÍaß|óͪ¢¢¢•/¿üò`8òâVi·MÙæŽ ,V §ƒ±Ô-í¨#c½‰8Ö;tèð­âââwm3ÖRBå7n|ÒqÛrÁgµõÊÌ~.šâÎbÅ 1þ¬ª¾&/£°Ô•`’'þÀ´ÎÏÏ?‘——wÂÓr¥õ0ÕÖ«˜š å‚È&/¸šË~ ? 'K¥ŠP„ØeMã2i]fýøÛJ^<Ìÿ¤.D«¬cÌÂRM&,JŠ~'[…H ƒ¤ª€™˜¨ÊìªÂ\òų¿ÉRÓÚR÷¡)1ºXƒT¾¥/€+q#¦0S`šR‰@9´rªŒx^Öš,µ¥1)êJ™fJ²Ò3X Pj8Åú²1ë™Ï'ÄnP^Rap²Ô8um ‚O‰iÍ„Z!TµÆÄÀ)Ó”@‰qhAšu4`r;Kíƒ+§#®6ˆÄt œg J€Ê ¨ æ#VÜì²eËú9rdöáÇŸyöÙg{Bld‹*ŠË~&KMù—*­øë_ÿÚÓ»ÅÅų—,Yr9â¢É¦m­¯0xr §L™r­a!—SX^^^Ü·oß‹à4§PæÐŠõ6™tÀRã×å€WÔ‹íß¿ÿáp¸Ø¿6™`üøñ×]È9½*Ư^E7HF®»îº 4MK‹ÚÎÁ`ÓGyäÛà¿òkN–ê2]±13ï»ï¾@ it'M 8ð{ˆ¦BKšµLSaâ›7oÞ³³¥4—/_¾ÃÃÆçÔ0–š0_±õ˘q·zõê=v¦”x‚ÿþ÷¿› †ù°•y0­öb÷0é¸aÆ'ÊÊÊö„B¡}}ôÑ/­Ïº9¦l8Ã+lê˜.·0 ˜KËR}A1¸“ጻFp†ÿÝÖŸ]Ö®]û¨=ví1¼~ýúIω­ò=Z5ݬÍ’£Z8M¢ê1]¥*5%¦!ÈøÙ>ÿ[,jîþ~VlQULMa»{E­T¶> KUƒR\ "€ÄJRb|XŒ [%J£*©D•iu.yÉRÊ#@hGŠ ®JÄPeIÕ:0U!ÕÅêÈ &ƒ›ÍW–ªÒ–^\XŠëZzaðOT?«ñ¬‚—™@bÏyUu½€¤%Ý}td¶ÙALÛc9ÛXˆN€R‹ЕÕePžµ_YÕÀÁ €zH'xÉKùX±­ŽL,,•1e1Ê]bi£¢¿('ü‹íª%8©WñÀŠ;«øƒÚŒ3º={ìØ±—W­Zu#bëcå9@Ä’¨ @”¡´ÇÛœ9sÎ_¿~ýð7Þxã*iÜ¢(’²ú6+Ùë;ö:O ]/##£[YYÙn±=ö‚ †Á™öØmýåÚ)òÚ&”…ÒXýq½Ó‡~8Rƒ7nü£õyw8]¯ÊÞ§Ä–¢L‡ØjU>õjx(Á=®TüwÜÑ4==ý<ñà‹.º¨à, ø\Eåc©Ÿ€ÄÀ)oÑÏ{õêu‹x’®]»Þh¿%ªëÕô€L 5^ýõâòòòýâûöíÛ D¥wˆÏFáŒÌlU2nÀƒGÅYVÜ>ð^w¯²,&Ú|X%%%о}ûµÖ ÕYÓ4ؽ{÷«—\rÉ+‘H„ꎤ)fFì{Yê'(å‰kä[¶l¹­wïÞý@ckì]¼xñ£K–,Ù ±k•XQ­jó)µx`âƒCÓb)@™®‡õTe‰Ò W§p–jõ))M¼ÈVÅç–‚HðÁÏ{á…öœ‚ØJwr)J£ºÇ™VƒLU²A®§ˆëÖk“ꣶÔ&`n¯PQïdú]µŽ±` <8hà%Äˆï€øÅ^÷ÿaéü ÊúkÊR¦+A¥€L¿óÝ :€IÕ÷‘ÿŽøpÒå- xif±oéjÊ4Pó_ ÅA¬²˽ ÖД w‰7ˆù²i"û XmOð6ò¬AS”)Kq`±6ì¦"žÅ1 &Æ“^ƒ ÄL̆7$€éC‡m±iÓ¦¶oßþèôéÓ»yø¨‰”,aIÎ ¿ Y=O=õT÷;v<úÕW_Ýo¥–ˆö4|ú”u®RAU>T¬< Íè± ‰ä]•š7oÞ£´´t‹ËʇÃÇþóŸ_gŠ!‰ì ›]ä23Òþ49Ç5~ÜfÊrºŽcÆŒ¹2‰wÇ5–¶uìØñ|8Í.Ë…Ø* ódxŒŸj½.F60¼Ì†©S§viРA÷$@ áðáÃû&0ÖZž‰©ØÑ@½ó· ÒO×õ†îɬ±ÔiÊ”)=‡5Î…Õkø!› ®IûôÓO™(n…:tè°ô⨥¿dx–äîP]¸ÜŸqïøàÁƒ¤szÒ¬O^Õ×-æ5Ñ2GJlKvïÞ½ÿHOOïá˜"átmZÛiã˜$ÍãmÓ¤±s¾,ˆ%c]›Xê®ëLÖÎûlè¼ßsœ÷ÝÜyÿ­ñ`‹Nv¢Ä¾}ûþa{ Å´ÄBp®$ÓÒj{FªK/@ sGÙA-Z´HkÕªUÚÆC„ù¡Z2ˆˆ’CSz™­žüØoûÛ–ö >|X¬B€5˜­’bZ©L ü7 ¨D«Ó‚EÚ€Z§é×|î½Î¿4¢*ªU«ã!XG^ˆ»4"6Š ó)j•Ἰ0¨;‹É× ÔZWªÄf?õyä˜Íì©3Z²®SÕÚ£ìaÄ yI†n¯MC´0“jš‡+jK™ÑÒ;7<\ÌÍ©Q—èuèEQÍ@e_ \šé¢3k^^Þÿ”””,;yòäÒåË—÷ut6êZ­Ž™ü©îCzÐã"îóæÍë½gÏž‰Û¶m=|øðÖßîÑPŒ!Ñ|­³­êÊË¢Èv$.Ó‰œÙ$;âj“ ìHl;;ú6}úôìîBr$9Õ¿ÿ‹‘\SˆÖf:[ç»\rB­,,ד÷ŒÄJ—Þu–ó¾ ï;Ç}ßsçÎý©aa÷}Ÿ8qbƒõyä}7CÞ·øžëd½Ž½4“МÔ5S.¿üòîâý躞qçwvuÚ™˜êÕ³“5gÕkJ¯r’i€gˆèW_}õ4M‹š±ÙÙÙß¹þúëú?UÖ`¶>™²@ø*ÿ!òöÛo¯³;‰E Ã8¹téÒ¯%Qž¥±M6£(Î-kÑÄ4¤ ”2Ó†i5°\–bñKÊËˬY³æxçî&E…;- fW•©°7ß|³_ß¾}‡Ù¦Ô燺ÎÃÁWE땘UÙ?¡Ç”WP›Åãb]tÑEÙ+W®|²Y³f,Pîûç?ÿùø AƒÖ8ï-$ù’aÈ«™,±®^§N̲AˆïD-k^¬ =Hû©:© 2™ P2XægmÒk „òQÅsS]¸° OGÁ$yéâr†ì?€ôräõLJëêR/‚¼l,Ñ[¤|mõ+A[ShE01?¨˜\E×€^VóS¤Î¿=ÉÊì,—L˜ô’Lq¦NOOO[¼xñåË—/¿æÂ /l(äû3½T¥QRÙoÄLT['ËË2Q¾õÖ[×.Z´èrû@Hï9$½,·7©è—Z¯2$Õ¯€‡~ºyóæß·OZVV¶ó®»î:þüC[M6eˆ¹•f Œ ð*X[EMˆçÅÆÚ$UõÄ@“ܱ=ÎŒeÊ” À› Ÿ.miß^[+•÷£Ò °‚TXG+lÿ4â'µQ÷“DÑ3Ëoÿ± J[:vìxw÷îÝÓ¥wåOô!±uIjm2%ËÃ!5«À.‚M—"¯Øº§û»QTTT(ŸÆ …„†Q%n„¦!"Š*(¯ÙQÁÌô5 ó^'ŽÁ4 ÌÂ_ŒNö¦iÆÁì‚X‡ QVC$Ã*Ù¥,(SUcR*;LDû¢Û°aÃÞ;räÈJà[·niiÌ]TCÔ4=öX‡¾}û6&4JÆ—4RºB›¥ùÐdÔ1~4`ܱ—]vYcûž€N—‹>÷gžyf~yyyt³žÛ¬âââÐi|ò;‘5e¤>€2U}LU Cóø UPÃ~øáÖ%+W®<±k™"8+é-·ÜÒü…^˜“ÝË0Œ’+VŒ¾ñÆWfýUiŒÒqbp‰òåcÐû±ŸÁªU«~pÅWü^×õÌ“'O®¿ãŽ;F,Y²¤p’xÅù¯¼òÊìG}ôÂmÛ¶|ä‘G¶#¶ôiN¨ ¬ÀTHÉz5 ¾NŒÙgi‡‡;wîü »s(Ú›‘‘qÄ·vÃ@ƒu6‹šÚFÐèXl 7zOeee獵§·sÿaí¯]ºt™A€Kƒø vÑÜké<>KIÑë0M€Få“M+?Á¢ßÇÒ”-bœù`°¹GÔ³bð¿ýöÛ×ìܹó×ï½÷Þ€®*OUbH—LUìØŠ¿ ÐäóÏ?šŸŸÇý÷ß.r~T Àœ XS  °ç&'`Ä /2åAYßES˜°nÅo·Æ[í»™´¹Ÿ¹UÀíDÕãßxãÛÅD»wïžk}nw*³ËäÂéº4íŸvEù.k×®ý•)Ⱥuë&9Çtrö³Ï}®³µsÎÓeÆŒ7îß¿ÿµ}ûö-úÃþ0ÐúÌ.³ÒÎTªoçü´÷·yçž%%%›Üï±üÀâáÇ÷“¾«ó}ÑãöìÙó¢py‘E‹Ýî|O®³¯[ ¿…óLäÍ~Vb…|±Õ±…AN· Y¶3!›[¦¿™3(Ý‚Q­;x×®]³×¬Y3ºQ£Fî ÏÀâÆP×£G~,Óòã68 sÁì‚¥žNC† ¹$º¡µüÛ¾È$l@™’XÚs1 ¸ß—Û¸qã®Öä1ʺ§¿Í›7op~”-$ðÉ[#ˆoY²ÞKAÔ4’IÖ"AÞuT3™úÓŸ®µ~~B„þåc »]œø6È@ÍlÑî¹çž‹EÓþÝúì¢×^{íʬ߻wo±üo¾ù¦ˆ0óÝå%óرcFŸ>}^·~]òe±ÅÃÃW¬ë‘ìcV 8Ô»©– aˆçÎRþU9ô²W^yå©P(´Ë Í;wª—¶mÛ¶½òlݺu/ÐÍŒ‡~x³eZÿݽ碢¢7ß|ó;Š{¤ül¬¶Ø¡R´”õ8*{¶ÏDóøFýSÑ×dnhLð'###0pàÀÆï¼óÎ KCE-¤‰ÑÕM›6èÒ¥ËCö?¶lÙòL=þñ5‹â"¹öòOÓ¦M3&Nœ¸b×xUË3T­$9Lq€M¿ó äGPéç£*ÇHe¤à„™>'¯cÀ°Êr2X0@cí%0N*•l€×_2Õ x Hfµ<79C5UN>Ó´"0)Ú›ñüT|?,?”¢ä UécªÆÃèˆ Ì¨*{3ØK˪8²" 1¿Öð8–ÒxªÎË Df­?G?ˆ¨:@XÕw*™#£c 3ZÏÏ1~3õŽ™ÃÀLîg™¨ŠiYlÐû1™½*$hÚ¯2Õ ̤¶^u‹¼ºªÊ´ôL€Ä–0Œ Ì”|îÔßf%Ìg?-¼&Ö‚ L~Õ|leAÅ`d`²ÔÀ{c %‘üŸp&§]úIEND®B`‚camera-app-2.9.1+14.04.20140331/assets/flash_off@18.png0000644000015201777760000000713612316315040022335 0ustar pbusernogroup00000000000000‰PNG  IHDR\Là9ÐÃtEXtSoftwareAdobe ImageReadyqÉe<hiTXtXML:com.adobe.xmp üÚS× ŒIDATxÚì\{LTÙ¿wž0¼|€ËÊK‡Gq—R¶hI­YDÄ&Û·Ù]0º¡´ í¶ÿøG5ÆÄ£[¥mt×&6Ú»vÓµ­©í *.QˆAA,´ñuØt}°8̦ß7ûÎä?ãOŒ" pyÐ]>Z—Àe°]ÝŸi"Eú„¿Yc6›uµµµFØÖ²c^&BÕð`·†·¡¡¡7SRRþFl£O‘í/ä ¢QRàZÞìvû? Ã8°Ç8Ðǽ.OºKÜŽFIYŽ€ë´Zí+]]]߃m=™VÙ‡ÓÕpÏÒ*H“yІóà °üt8gGGGÿ›PûN0˜¶ÓSeaÒd\'M²­ —D†ÄÇÇ/Û±cGM‚ŽLã%ªáeIÏMž¶uÂ[âw–G"à tÓé´âvMMM=œÎ‹´h°ñZŒr ;wîÌØ¼yó,/÷ú?‹ ´ù‰R,Øt°—ÁÌ<èÄ÷™^]]½ŽÍ{ ,‰®Õs¬G€Mt.,,­»»»n||ÜÏx gñ°ºWÃd×_‰ g  ·¹w4Ó¶mÛÞR-/A‚„;;;¿_\\¼|Œ,"ƒ 'R´3:,ì‹å°‹8ÏAˆÉ‹ùÄÞi`qtO<í§Ð½sÛÛÛ€Ù¼?{zzêè<ÿvøá‘¸N<``àS7Ž9òK<–IàM#Q†fÑ}æ'N4ò`Ó‚òBRÃ$E§þ5óàó.]ºÔÌšþ8^–CÎ"àS½L‡ãYtÍtz+ $Cr´k¸G&™æ("))©`÷îÝÅ\Â̽`W•——ï½ÖÁÞ `ÿöRüîäâ÷€Á"EÃe…(Å-)gÏžý é÷—þCÜüΑ´d“¦çˆÌÆ}:—.h·»ý‘&L#‘ÉÌ=¬Vëcü„ßÐ××÷n§¦¦–544dò M[[ÛR‘ÙG)+µÑ§ƒ«Å†ÝaÈð§ê%\(K-™œâ¼ÖÖÖ ‡VVV¾Í|ùòåOàü·QÏ[ZZ~¦ ÙsIã³M\ÒôTX8U.{)*é¸4Ü#ý¥8Üxüøñ/¯_¿ÞŽûÙÙÙo””” ÚÌÌÌ<ÆìŽŽŽ÷é-«íœ~‹5”€ M-)°[t~F.¹ÑÞ¿ÿ1{@~~¾qïÞ½%‰1íÚµ ˶òºuëÂ0 ¡ßûeee-ж`ƒN’"s¡_ …fÓøœd\XJÆöíÛße!aii)¼xhh¨—é3gÎÄt¿`ýúõeúaI`&Xâd2-’¢á"Kà˜h›Õ9´wïÞ AFðzç±cÇP¿%£Ñ˜zàÀrÄ Ò~ 9C§`Ác6 ]F%n9yøðáïcccç+d…º½Luv-;Ñ N”£¾¾¾cÅŠ7áÞÌ… ®‚cÿjÝJ«BAkÎ ·°pÂq^¹rå¨^¯O3 ³Á^Æò–ŠÇSØ xŸBE{¿›å ßlnn.ò‘@½ J'…ßp^]]}üöíÛ5 Â9Û­[·>Ç•#03ˆNÜŸœÍf&'¨illüGwww#8ÏÄåË—¿ Çz–Ϥ€ÅÚâ4™ÃL¤šö\`êÌ)nݺõGpì»`ßa16Ø+”Qæ‘áö«`ß‚Xü{A¤²„bïT.£œÔY£p\Ka_%$YK–,™ït:G8`;f†%`Åö<9‡,K¶xÑêÕ««l'Þ;00°ŸÎ§Qñ‹¨¢p G  8¹1Õ‰ RäU7—<&¡&¥' ïÅI[¼xñ| ShR\Í$h€‡›Ó" çž={ðqŒH6lØðCNse!~׉+=û÷ïÿ”K„Þ”žîÐ z—V8µIðà±Ü‡C2óQrrr%dŒ,X°ìüùó_áÄlÙ²e„?ÆÐ Þ™m“I¯cêo·Û-ééé˜á½VÊ4Ïú£0’^Çã)#DYÉЮ†9Ï®®®àØkhMMMo¹žcôôô4Ò¢D¢¸ª’âíw­Y³æßÃÃøš#¾I NŠ2͉‹ ,üÙ¼³Ñ‡%77·*ÉN¸fšb•ÐCkOŸ>ýqUUÕ¯0ƒÜ·o_iMMÍé;w‡¤¤¤¬„I»®Æ¸”^ìÊrIÏÖô9¥2Mlh7nÌÀkjkkÛ‘ÁxÓÒ¥KßA†_»vÍÎTTTK`â1¬±<æÌJÇX9ÖW³ç”ÜØ+5§NªÚ´iÓá•+WN¿wïÞX__ß_( ’™<8Æz¥‚‚‚8p+g£\ \iÝrÊgšbDÂ:¢0Fž 6çäɓﱕš‹/~ˆN²¤¤¤œ%BW¯^ÅD¨’ËDߦ8<‹2ÕéoÇQfi””[ႊ‘&L˜íÑÕÞÞ¾¬´´ô#¶RsãÆKÈÊ3gÎ<9Œ1›Í¯ƒ´ÌÀ: i¸‰Óm¦Ù¼…´J*†ó+:"³ûFÚÚÚ~J5wÙÐÐðÖGð|ww÷Ÿ!úø ·<øsÊ6ÓˆÝ&É{ϸ*Œ‚ 8k³EaŸ`S+C­ôdðEØ ×`k¶HàvkkëzJ÷gÓjÑs¨¦ª¤(9I÷â°R“NEEÅ1n rÂ:ô'|˜^¯O4Èf)†°>Òºw¨%Edw½öX.Í+…&Tz f±Ì¥ÛÚø,òܹs¿%†3Ia —à #M¥;Áéìì¬*++ûÐK“ߨãaâÌ?<&&Æäãß•¢‘á|»š[»±EØK“k?›Fu“ôd%oÆÖd\™g 8 8M^ÃãPžqs>~ó@hÎ"§ÇwD¹ê!+já„äõ÷÷ÿšŽôÉÍìp<q¸Û‰Ý¼yó1ü÷±…¤··÷½E‹}FòÁ÷úù¬‹@¶ù L–»œ§)Ô…©p”1å!©®®.cíÚµÙÄèd.;Œ•<›t4‚ÃALžk±Xþˆ ôèQ‡ôu³ÐK ë–Q)),JÑKOº«¨6È¥á1Ò“–aÂÊ[hÆ JkjjZ„ýœV«µ—&!Y¡Þ6€sÅGVˆTø¬ÏÅI‚ø}y/S åÝððð^”ƒÁPê%w½(à‘Z-Tê€â[Ïøz‡Ò·\ õû… ~§ÕjãÍK-öšæsÿ°€L•ÿ޼l³Ùþ,_!yþÈ_ʰþÄH†3à\“\ãëã¾ ²Ò,y6hŽGs”ˆzŒÇW¸W­Zg6›Ò“¦}¿}};R¦?—|”ZýþSLÑü#cÏë \þRhüY Saù#cêENŰP*à*à*àêPWW‡ ¸ ¸:TÀUÀUÀÕ¡>EÆÿ†Œš½amIEND®B`‚camera-app-2.9.1+14.04.20140331/assets/toolbar-right@18.sci0000644000015201777760000000022412316315040023144 0ustar pbusernogroup00000000000000source: toolbar-right@18.png border.right: 80 border.left: 0 border.top: 30 border.bottom: 30 horizontalTileMode: Stretch verticalTileMode: Stretch camera-app-2.9.1+14.04.20140331/assets/zoom_point@18.png0000644000015201777760000000212112316315040022570 0ustar pbusernogroup00000000000000‰PNG  IHDRrP6ÌtEXtSoftwareAdobe ImageReadyqÉe<$iTXtXML:com.adobe.xmp ð5VúÃIDATxÚbüÿÿ?µq .â@üˆÿCéPq¬º@.CÃQ@üü?~ðªE/ºAõÿIõ¸ ‹úOˆA7Œˆ_iØ ™‹€ '3…896ý(L~ȆiSh˜ˆ`„&ÚŸ@ÌFa¿€˜æ²·ºì-²7¯PhØUdÃ6QhØFäìD•t†œ¢É4,–æyÙ…Ä”1„J ä0,âƒ@üjˆ>çÁ¦‘š%-@€Ø"…oJâIEND®B`‚camera-app-2.9.1+14.04.20140331/assets/swap_camera@18.png0000644000015201777760000001017012316315040022660 0ustar pbusernogroup00000000000000‰PNG  IHDR\Là9ÐÃtEXtSoftwareAdobe ImageReadyqÉe<hiTXtXML:com.adobe.xmp â! ¦IDATxÚì]yLTÛ¿3s‡}Ad}²¨(Š2ÔZµ<ÅhÕ+±ÕGbÿÐÚ¨D}õ¥ÆŸZc­1uK%icž}ѨMÐcŒ;>L4ˆ{S‹kUPAd˜íö;ãwñp8w˜™ç=É—»Î½çüÎw~ßrÎ$I‚Zú¯ˆŽ.j4_ª+[™>kÊ@(›èã ¡q¸GÁWÿ°†dY4þºèã`kq_KíË`ÛPä}¿Ý—5\Y‡" ØÜ ÔV¼Ú­¡4›€­ÇºÒ€[pßBÑŠÏó¹¯s¸ v ÙÖÔÔÇÅÅ¥777?ÊËË;ÎЋâ)ÉM@’R\\/¹ähÛt…Оž†…Osœ‚‹[ÉIGH¾¸†3¤y´ $Ž:B΃óR°Õøc2KZOå XWÄÑèèwÀ«u²ÕÎSªôôš}’Õp p=Õ%d mœ}¥-}ŸÇ€{6 .Oṯð,è3¼»4\pV»y'qd·²X™cZi¿Çg‡;»„AÇ §º/–””ÄåææÆ&''ÇB‰Žˆˆˆ E1X§Ó…%$$|ëÀhÚA¯¯¯ÿ#9e6›&“é”÷mmm-MMMÍuuuMwïÞm¬¨¨hlhh°8›œl-¸µr:¢×Ú.º©ÝZ`=5ìE¡çͲeËg̘‘‘‘‘“š” &€ìJàE—à^‰ñ¡%ªóf“ÎqôòòrtFƒÑh¬koo¯{ûöí“Çמ9s¦®½d@—'bF‘;@`Œ³Çç­!@‰tSܼyó°Â‚ÔÔTCttthj¤«•±X,-@íV«õ=HA@-Àínnn¾ ÷„àABá½QÌýZ¸'‘Hdd¤aÈ!¨Q£„ââba÷îÝïZZZn>{öìúåË—«×¯_ÿèh%fšÕz£å¢›Ú-"ÀdÆ<·;vì=wîÜ_5LÑëõQ ј†úhÈÓÖÖV¢au¤<}úô ò§Nz CÞÌp¦üNì¸V«íæƒ úZø´È^WBY3gÎŒ=ztlzzz|RRÒ ­äðð𤰰°4 ®/ ôøìȸ¸¸/‰Œ7N(++#TtáäÉ“+V¬¸ ·tRtÈóh\§ Gœæcì«¡(„L–+„€„nß¾}ìâÅ‹WUŒaÛÙÙùª±±ñú£Gª¯\¹ro×®]ß¼ycVðXN•+%¿7`Ú´i±gÏžýœÎ>ŸŸ¿áÕ«WFÔ:+g˜;òž´®~ÕªUC'Nœ8233³:-¨n0ÛÐü[GŽÙ¶|ùòj8$#Έ SŒ}Œ[y d°‰VŽŒIÉ©¬¬ü3 +½8§££ãuuuõw+W®ü5Ü“B:b$È0,¡ éøŒd$DÒÐxáãâž8ÜOÄ{³ÀL€ç??pà@àóGƒ cKž†Ï‚¿KÄ}òŽ|N:Ö! ë4ëHž5aéÒ¥¥W¯^ýFâº]¤×¯_ß„ïˆC,; \\^E@ÉØ³gO©Ô½Ø.\¸ðàì™pýç ãAòHÇ`ã¾À'!¸ñXñhÂó”Dâùx13**j ÞŸÁþOAì[ÐÐbàïªM›6}‰ Æ‹ÅgÇâ{aݱ©X§,¬cÖ™Ô}:¼kÎùóçvÑïyf³™øáOœ8Q†ùº‚¸5Q‘§ YÂcn! x §ÔÐTÔ bXr!èÉÛ¹sg) ý¿‚^‘b›ä @4ùnݺuCQk¢p¸¦@É­©©)‡ß%ÊóçÏo¿|ùò&»ÿB§Ö`ï$7 ÜßòúõëKðο@7"æ1Ø&™¢äцJF/“<­á¼ð^¤4žÞv3XºÕ«W§€3<--- ŒQ Dy©0 eH`ìNOž<ù÷wîÜ1áóõ„„ƒø'h¡Á“‰Ò¿$—Y¼÷\ AÙƒÓ§O?Ø·o_ƒ‹¹ ϳrGÁÝœç}ˆœl¡NašŒvé†ÈѧF¦«ÒÒÒÔmÛ¶­Mÿ…+¯¥šŒ"„ÔÐôw@[­6!¬?|øp#mu’-d·*d »¥i½¸ÒÄCo\/^£l”q’ hyyù”… ~Úžè‡?""ò,îÛ¸¡Jùp«B>¼GNÜÀµîúàL%­”¶šÐ`u¢‘å#Ô}fF“,ø»‘*++û!''ç·UUUÿ£kQªP—‘ó¾vJ>0çyu¢ëebꦺ×ðJœGw@'‚hdÀ¦Åvâý‹/çÿ¾dÉ’¯ëëëïó*Ò¡fT¶&Ⱥ/€;šºr¾™ gØZñšQ¤ äÝþýûÿššúÍÑ£G÷‚ñ{OW q* ¨‘éôNN~Û¬ÀÕ'í $àŽÀ—¦­¬Næ YM7RškŸ”˜?þñéÓ§/CyN~9øÖ{öìñ­­­· 2%¹v¦TG †a)8… §£úñc+OæRð ðŸ`"ÉR[[ûæf209ƒ®$û±¬Ç€ú±~‰,)L“u}6HòYYY‹&MšÄág›7 ¯s¸'´¼Ç1;ât:ÍI(¨€»®å=ŽÙµÜ¢(Ú8n\ŸWF}Ž€ó(ƆMní7ÎÓEôq »üùû÷ï¿/åÉcƒ+øäÞ½{í ‘ OïNòj <=5Ñ@)s12.>ž˜?|T¥¤µ~C#þ¸Ý5,,, 9wîÜ” 6¤TUUMŸ5kV¨à‡_'‹~ vð=°¨¨èo ö 111¹B÷o{T ï«VS¢Ã?HÓUÌf³NpðÕ› xÁwðjT÷ ê=ä þX|ðéZ tºŠ^¯÷ËÀÇ—5¼Û }}}›ÉdzBÎÁöÁÇÛj¶ßŒT |èäÕ^rž[>MP°“½niºú÷û99¥¡@Ö2×è´¬ê‡÷JhÐå5ß4øôTœ_ñ¸/k8;ï¨a÷ʬúç 8ûWï­‚òÿ€ðù¸?i¸£cÁŸ€vÉKQËgiª€«E\\-=Êÿ³Ac=-œè¡IEND®B`‚camera-app-2.9.1+14.04.20140331/assets/toolbar-right@18.png0000644000015201777760000001010612316315040023152 0ustar pbusernogroup00000000000000‰PNG  IHDRœ™JÕ OiCCPPhotoshop ICC profilexÚSgTSé=÷ÞôBKˆ€”KoR RB‹€‘&*! Jˆ!¡ÙQÁEEÈ ˆŽŽ€ŒQ, Š Øä!¢Žƒ£ˆŠÊûá{£kÖ¼÷æÍþµ×>ç¬ó³ÏÀ –H3Q5€ ©BàƒÇÄÆáä.@ $p³d!sý#ø~<<+"À¾xÓ ÀM›À0‡ÿêB™\€„Àt‘8K€@zŽB¦@F€˜&S `ËcbãP-`'æÓ€ø™{[”! ‘ eˆDh;¬ÏVŠEX0fKÄ9Ø-0IWfH°·ÀÎ ² 0Qˆ…){`È##x„™FòW<ñ+®ç*x™²<¹$9E[-qWW.(ÎI+6aaš@.Ây™24àóÌ ‘àƒóýxήÎÎ6޶_-ê¿ÿ"bbãþåÏ«p@át~Ñþ,/³€;€mþ¢%îh^  u÷‹f²@µ éÚWópø~<ß5°j>{‘-¨]cöK'XtÀâ÷ò»oÁÔ(€hƒáÏwÿï?ýG %€fI’q^D$.Tʳ?ÇD *°AôÁ,ÀÁÜÁ ü`6„B$ÄÂBB d€r`)¬‚B(†Í°*`/Ô@4ÀQh†“p.ÂU¸=púažÁ(¼ AÈa!ÚˆbŠX#Ž™…ø!ÁH‹$ ɈQ"K‘5H1RŠT UHò=r9‡\Fº‘;È2‚ü†¼G1”²Q=Ô µC¹¨7„F¢ Ðdt1š ›Ðr´=Œ6¡çЫhÚ>CÇ0Àè3Äl0.ÆÃB±8, “c˱"¬ «Æ°V¬»‰õcϱwEÀ 6wB aAHXLXNØH¨ $4Ú 7 „QÂ'"“¨K´&ºùÄb21‡XH,#Ö/{ˆCÄ7$‰C2'¹I±¤TÒÒFÒnR#é,©›4H#“ÉÚdk²9”, +È…ääÃä3ää!ò[ b@q¤øSâ(RÊjJåå4åe˜2AU£šRݨ¡T5ZB­¡¶R¯Q‡¨4uš9̓IK¥­¢•Óhh÷i¯ètºÝ•N—ÐWÒËéGè—èôw †ƒÇˆg(›gw¯˜L¦Ó‹ÇT071ë˜ç™™oUX*¶*|‘Ê •J•&•*/T©ª¦ªÞª UóUËT©^S}®FU3Sã© Ô–«UªPëSSg©;¨‡ªg¨oT?¤~Yý‰YÃLÃOC¤Q ±_ã¼Æ c³x,!k «†u5Ä&±ÍÙ|v*»˜ý»‹=ª©¡9C3J3W³Ró”f?ã˜qøœtN ç(§—ó~ŠÞï)â)¦4L¹1e\kª–—–X«H«Q«Gë½6®í§¦½E»YûAÇJ'\'GgÎçSÙSݧ §M=:õ®.ªk¥¡»Dw¿n§î˜ž¾^€žLo§Þy½çú}/ýTýmú§õG X³ $Û Î<Å5qo</ÇÛñQC]Ã@C¥a•a—á„‘¹Ñ<£ÕFFŒiÆ\ã$ãmÆmÆ£&&!&KMêMîšRM¹¦)¦;L;LÇÍÌÍ¢ÍÖ™5›=1×2ç›ç›×›ß·`ZxZ,¶¨¶¸eI²äZ¦Yî¶¼n…Z9Y¥XUZ]³F­­%Ö»­»§§¹N“N«žÖgðñ¶É¶©·°åØÛ®¶m¶}agbg·Å®Ã“}º}ý= ‡Ù«Z~s´r:V:ޚΜî?}Åô–é/gXÏÏØ3ã¶Ë)ÄiS›ÓGgg¹sƒóˆ‹‰K‚Ë.—>.›ÆÝȽäJtõq]ázÒõ›³›Âí¨Û¯î6îiî‡ÜŸÌ4Ÿ)žY3sÐÃÈCàQåÑ? Ÿ•0k߬~OCOgµç#/c/‘W­×°·¥wª÷aï>ö>rŸã>ã<7Þ2ÞY_Ì7À·È·ËOÃož_…ßC#ÿdÿzÿѧ€%g‰A[ûøz|!¿Ž?:Ûeö²ÙíAŒ ¹AA‚­‚åÁ­!hÈì­!÷ç˜Î‘Îi…P~èÖÐaæa‹Ã~ '…‡…W†?ŽpˆXÑ1—5wÑÜCsßDúD–DÞ›g1O9¯-J5*>ª.j<Ú7º4º?Æ.fYÌÕXXIlK9.*®6nl¾ßüíó‡ââ ã{˜/È]py¡ÎÂô…§©.,:–@LˆN8”ðA*¨Œ%òw%Ž yÂÂg"/Ñ6шØC\*NòH*Mz’쑼5y$Å3¥,幄'©¼L LÝ›:žšv m2=:½1ƒ’‘qBª!M“¶gêgæfvˬe…²þÅn‹·/•Ék³¬Y- ¶B¦èTZ(×*²geWf¿Í‰Ê9–«ž+Íí̳ÊÛ7œïŸÿíÂá’¶¥†KW-X潬j9²‰Š®Û—Ø(Üxå‡oÊ¿™Ü”´©«Ä¹dÏfÒféæÞ-ž[–ª—æ—n ÙÚ´ ßV´íõöEÛ/—Í(Û»ƒ¶C¹£¿<¸¼e§ÉÎÍ;?T¤TôTúT6îÒݵa×ønÑî{¼ö4ìÕÛ[¼÷ý>ɾÛUUMÕfÕeûIû³÷?®‰ªéø–ûm]­NmqíÇÒý#¶×¹ÔÕÒ=TRÖ+ëGǾþïw- 6 UœÆâ#pDyäé÷ ß÷ :ÚvŒ{¬áÓvg/jBšòšF›Sšû[b[ºOÌ>ÑÖêÞzüGÛœ499â?rýéü§CÏdÏ&žþ¢þË®/~øÕë×Îјѡ—ò—“¿m|¥ýêÀë¯ÛÆÂƾÉx31^ôVûíÁwÜwï£ßOä| (ÿhù±õSЧû“““ÿ˜óüc3-ÛbKGDÿÿÿ ½§“ pHYs.#.#x¥?vtIMEÜ :Å3xIDATxÚíÜ?TçÀásî½LX„%Hk‰&’ó ¢¢‰[DSÄ®ø4|,E‘hl®#WVœ€“"‘Ò¢$Ú&²KØEYÁq‚wg椘™;³ÿ"»áÏ#-»³3;H#½¿9ﻲª "¢ñ‚ € ‚ € ‚ € ‚ € ‚ € ‚ € ‚ €  Àar4ý&"²ÿ½þªÊ«XËÇÝÙ¶í·£Ñè«3gÎ|vîܹßß¼yó·÷ïß~X~Ù[øù]þBà…ÅÊ›þÖÖÖ?._¾üþ“'O~“ý;Ú¶ýå1‹^`øCFDffmf6óゼtéÒG>üùõëן/‚ð~ÿ 2ןP`¨AÈœ}žN«™N'MDv™yªišQfvÑloo¼³³ó "v³iš÷–!È“  0„äb½Î»°|»ÏˆÊñxÒeæVÓ4?ÈÌöêÕ«¿xôèчÙ4Í»Ç-ü”f7z1˜M ™™‘“ɤ­ŠÓMÓl={ö¿?~»ˆ7VŸB`ગ†Z¬éyj…hš¦ªbZUÍx<Þzúôéó63ßðúÁ†Í‘Ç„Z ,£5O*3»ÑhôJ›?Y› Œ°1‘È_/b9 CÛ¶5N›étúJWQyĸ¼øËþ¨oVUíÿ ª23£j1)TTeeFTÕøÙ³ggºõ¬lD\¤ƒ:2èsqš8 @-¢0Ÿ*}˜ 9ÞÛÛ+ÿ–6« û³«goë³Àâ£&×, QmÛTDT³þ$'| Ärá÷n¬Å`~¾PQÝwM€A,Ôâì ·~³·ž³ÿ†oË~°°z»zÃÇ9C€—u7qX;x·']J ðr5áØ`B@A@A@A@A@A@A@@A@A@A@A@A@A@€M“ÿ×^¢dš[à˜¡!ÛNlø6aõv.ÿÈËî{þ%À‹> ,‡\ÀòóìËÎ"‡MŽAo,XÜÈe2ûQ˜ØÀmÂ<‹íA.'„Ì#¢°„<éØÒ‘Áʯs¾šsž‚µ(ÌÓu]uó;'€Í=?ÈþYÂrZØ¿;#".\¸°×1ˆ nõXÂÙ Coë+[ˆÌȪÊ+W®|ÝÅê¯ ÖŸð¢7d/Í|:Xl%b2™äµk×>ϦiÞ=nBpŽƒžò(¬}ŽxõÕ6;;;¬M'NòÃIB®þÆñ°(DTEÞ»wïïçÏŸÿ´ë]µ°¶uX¹² æ–!×/CèÇ "â­·~öÍ;w~_t½Çã¶ ªÃjÁZæMÈÕµüæ›?ýöÁƒw>‰ˆ?GÄ¿ºˆlÖ~èÈ8O€¿ëCÂêúžÙÞ~-îÞ½ûÕíÛ·ÿŒˆ/#bÒ-/TXÿ!Ëxvpèº=uêT^¼x1^ýÇÓ7nüûÖ­[=}úôŸ"â/óìFDt»»»Ÿ{aãM"â?ñψx‹ˆ/"âÙü¾YPªêG^+Øx{ó(|ßDÄøÀ„QU^* "ü)€ ‚ € ‚ € ‚ € ‚ € ‚ € ‚ € ‚ ñ?±)#’IEND®B`‚camera-app-2.9.1+14.04.20140331/assets/record_off@18.png0000644000015201777760000002354712316315040022522 0ustar pbusernogroup00000000000000‰PNG  IHDR~†â>ütEXtSoftwareAdobe ImageReadyqÉe<hiTXtXML:com.adobe.xmp Úðþ#•IDATxÚì] XײîVAQ6AD ŠŠHÔ( "A„¨¸Ý—¸%.¸›hŒ&šëuIȽO1F7[p}Ï< r£¢à%(*‰€€È.𪴇ÛÓsN÷éaЩ龎a¦—ÿ?U§ªÎésTUUUœQ^>Q!0o#ñF1o#ñF1o”.¦/Á=:€º:ñ¯mA›¾÷4444…m$¾ž‹èk > Ý@»€z€6®Á1ƒ&^½ zôWÐò†–ªp‚AýAC@}Ÿãyã@O€þzÊH|í‹èžì7AíëÁ5å€áÁ^ÐR#ñ†“!<ÙSA•ü°¨¨¨8;;ûQ^^^!hQAAAI~~~‰ø{666–Mš4±lÚ´©¨µƒƒC3++«F ¯3 tߎ‰×OL@gƒŽí)÷åJ´´´Œ¤¤¤?¯_¿žqáÂ…ÌØØØ¬ôôt´@ÍM oVøZEx­jÑ¢…E@@€£SçÎ=<4†4 ÓvîÜ™rÿþý2B?/ÕÐÝ«[·nm 1I¿þýû{S2‚ݼ×+~Q‰úwPwÈ'9ùîœ9sŽkÏ]!gífffU³gÏn7dÈ/°hOˆº[3¦[Š%d ©à;vmݺu·ËËËUrV¯!ÿ‚ëwZ»víà:¼B8Å-Ð% ‘/ñ‹A¿XRRRºiÓ¦hpë <ÑbÒIä#Ùn¡¡¡¾^^^Ý•X³¡½Âµk×þ …ÒLMÖ¬YãýÞ{ïõ·´´´ úÐe/ ñá “Å‚M3fÌ¡øøø‡"¢‰¤ƒ7Ðú@ `ggçR_rЇÞ‡Ô2vÞ¼ygÓÒÒÊ%ȯ~ݳgO»½{÷‡î¨5áÛA§4tâsÏêêÿ©œ€DEEÅŽ?>Rµ'²‰Ö.¼IýýýýÍÍÍ­êk©±¬¬¬èìÙ³1ࢡK(–²zTHùLwíÚ8jÔ¨èT¢Ãaýÿ­†H¼9èQÐâˆ}Ñ¢E‡ ¯»!"\‡|WWW³ððð /·¨éÁ½V9ùÐÖŠA‹4ŸþV  QÙ¨TªÇÐ÷—ž9s&òúŸx CºP?üðÃŽË—/NˆüO‚þ…«…ŸÚ"'; ~ÁÑChÝ»”, ÒŸQ°Ï¸qãF@ÜTéÉ+**JÁýÞÌÈȸ™’’rúâ{çÎË€ ,G.‡ ÑÞÏÏÏb‡Vnnnm;@·ÒÁÄÄDqÃ+**ÊÛ½{÷AÈR.HÚ·o_Çýû÷ƒàÔNt˜Ó #¹g“Dê5ñÐbÒïܹsoÀ€{1WÆbt~Æ ¡­ZµòPrÒüüüÈ ÎA_{qÅŠ¿ñåœ|½^®dûTx³ t‚Ø¢WûöíýlllÜ”\Xý3fDð F¾)ÖNž<9¦mÛ¶­ä6¤å×ñ?‰Ýû7Rz÷î½'77·„'˜Hüž={Fƒ€u™±œ2‚°æãÐü4–»2u{¹ê­j§SŸŸ9sf›)S¦¼^aDæöŒ^¨⚨±cÇÆÒˆÇ¿¶¶¶–àÆzxx¸ÜþÀúJ¼N wåÊ•›à:¿·W&"¼úuÇŽ-~øá‡IîîîÝXN’“““ù~¤D¿>!vhÕ<½,žR´Q[[[›B*êùùh{{{O–kw¼Z8C©˜tÍkèÞÌü·»víÚ¡¶>Cµç©Â’’’Rzôè±KDºÖ_°g°ÖYà>e'X€ûNܹsçVH›~Õ³„«/ñ²%Úo¾ù浉'NƒnÁ“¡[Êš5kÖzˆèÓEÄ› É¿téÒx‚凋q®K≋ا{{{Gðî]Hvõë¥K—z.\¸pDÔ2ARÆ¡C‡6„††Æ2–qÅVÏ1O’U3’ÿ4rŒŒ >|øL ÎYêž «(ýòË/7†……%Šˆ¯~n?!!a¡ÏÇbØòº&~¼¸Ì˜ëëë»ÜZô;vøM˜0!T*}‚k«¸|ùrÔСCwÜ¿¿„@z'=Z§d„NÅèîÅõy1ù...–ØuuëÖm4ÜŸ‰Tz9iÒ¤s4ò!àk7ÝÁÁÁVôóPÐ]ú’VÓœ-5LdÅo¿ýön>z¯ ‘~àÀ p‹¤HüøqÚgŸ}6«{÷ô"þ÷å‚¿å‚ã _“´‚ð^¬Rß«øÜÂëz‚׋××÷Aµ:¸ÄáàÁƒA©@1F\E?ãñ¯‹ä-¾º"÷ñÇï]½zu DpÙÁo½õÖh™èäÀWÃß"%õ{NzxVlézM½’p÷Ä X¬ÕO?ý4þŒŠŽ‚.â”Àâµ<Àܹs=V­Z5‹ðZwñ–ÿ\‰ŸÁ‰Æ‘± Ö~Šf)˜õA÷.ZËõ>}zýo¼qVÍcpóJûv}ûzIw/N×¢££‡¿/áú«Ðíƒ8+"¿Z¿ÿþû`ÈvD¿Ãy ŸñiâÓ%Vz"ÐpZˆn÷óÏ?÷\¼xñ4÷ŽeÔmÛ¶ý÷Œ3âdH— ìh¹»!ˆ§¦urV¯Ñ7úN:õïX¦5üåË—ÿó“O>I$b™ÒðÂ`»T|j(E &ÿøÇ?ô!þKP?ÍœÂ2lذÈ{÷î=&õŸÐŠ]¾úê«i…™òòòˆpÿÝᢔ¯’Ò˜Æê9eÓ³H ÜkR÷!n\š÷*øî›™™]öóó •€Ñ÷îÝ»[jjêÕ+W®ä‹»™ÊÊJîÂ… w!»y [`Lkü?Ô6ñ81òsáëׯÿiëÖ­É$Ò±8ýú<Ú˜yYYYÞ¢E‹æ.[¶,InІ“¶%X¾TÿOó ´Á16NÊ»üüóÏÙ………ûõëäëLÇR«Õ¦AAAžÐçŸËÉÉy"&ÿÏ?ÿ,utt,óññw¼y‹¿R›®þ<'xNíÖ­[©íÛ·§EÖðÿYàšºPÜ{!¸¶¿Aô{MfÐÆPARW_Ó ªK–,ñ‚ÿ®5­Âçîîþ¥¿7KNNžÿŽåcÙ»¶Ò¹ùBÒq:ÒìÙ³ ¹å}ûöõ¥‘Ž9:x‰%@úu™´ÊZYÃÿë£ÄûÁûÆûžðAÜ?Ú5"à'¾ «~Ø'F0à()§~óÍ7 _ÿŒÖ¯Ÿ8qbõ Aƒþ‡V¿§Q“­”+VéaõrU<šåkÕå?þ_!!!si;#GŽ\räÈ‘l¥ ­þäÉ“Ãp§à'É| WbHâ Ë„8¡ÂËËëÛ;wî䓊(iiimÙ²%ñ‰pÿ' {XA°„' ݼ>Ѩ«œ÷¤?&YæŽ;úÐHÏÏÏÿ£oß¾«kÁuW2Dür™ëï Ú5 ˆ /Äñ$ñGÁ·©¡ˆÿ´“ÐÚ!õ:OÇÍÍÍ|ôèÑo’]R9äó_ðuwC‘^©@«$¢~Ò界 ¥F÷‚x .ˆ 7Äq%Ý3ò€|¾Þ‰çË Ä¾ùñÇãÁ•‘LKÝâããw¯\¹2™ÁjY®`š¥ËòY¡&Àr”û z Äñ!á†xnß¾}0éøÈò!Å—¾}üPîÙ¤IM Vѵk×Õ‰‰‰Äƒ={ö´:þü2èÌÅ)((¸ ­vä¦%„:~…L/XÉ\M#TzŽÜÉ¥t¦„¿¦ööö–)))[›4iÒ†è•õîÝ{14Ž"Q gæééÙìÊ•+sEj“*ê°X¼¿ðM\\Ü5ьՄ¬^½z ‰t”Ý»w¯ÒËd,¢&¤Ë_¸Zú>É+°ÜÎý!>ˆ±Ò¸"¾$Ü‘äEŠ7¥ÄcqašðÈ=ÿMry¥[ôêÕ+€tŒŒŒ„™3g^”pï ûkš{–#E”4€J†® ’!0¬~8!^¤ C|gÒqy^„2#<ÊJü(N°À®@±sçÎ?H$|ýõ×”¹ïUpQ;ÖÙõ!œ«!ᬠ€3P Å [¶lÙNºnÄwÕªU¤s!/Èàëö<z¯å.NŸ>}ý‚ªêׯ__ÒÒÓÓãîKÔÙ+8eÑ8K¦ª†}»T¨’i¬Ùu â³Ï>KDÜHØñ&áÃóÃäîåˆ[øfÛ¶m×H7±hÑ"HˆkÁŠÜC󦼼ü ä—©¤ îß¿ÿ«¤dee]`#W&Ø©ÒCëšt}ÉWj‚µ\Ä‘trwBž/ÁW{ð|2¯µ’äÝ»wï=!‘nÇ‹tè‡~a ZIôÎÕ#ÒY®E‰Ë§þŸÇ‘äî½H¿Ež/)>¥ˆï#|óÛo¿Ý#¤wïÞMi>EDDÄI¸´*=]|}"SпW1Ü3'GAÜÒ1y¾¨|Jÿšð Díé¤yçwÜI?ÆGž"##Ó%ÆËY"”+ÌÔ'a-ôp Bë5âˆx’NÊã¯s<ž/*ŸRÄk¹ïsçÎe’ÈêÖ­Û+¤gff&êчsµ8ØR€eÖ.S Àã©#<þ:ßçù¢òI#Ë®‚Q¡Š3gÎä.¸U«V-ItûöíD™!O}-½>7€*™FP¥€|-ÌxœÂ)ú¬Q{mEýІ€8@$ñGHø xc&¾•ˆø|’Õ—ÁÕ¤þõ¯åqÒ#è¥W5@²Y|dà€>;_¸J—hÐÆžämxÞ¨¼’ˆ×lyôèQÉ•uìØ±%¢Ï’¹1)0¢{Wâö¥,^/®ÕÂ󠃕ˆ7^IÄÛ‰ˆ/&áääDä/..~ÈÉ?k&5lú2¸zNüx\uDÀƒÖ÷yÞ¨¼’ˆ×ZWN´qOõÁííí‰Ä—””èé¾_–ìõêÞD¸V σŽÅ6\j*G¼¥È‚‰øXZZÒž|-Ñý±XEC%WɽRqãqeæÀ›¥ñZñãõUµ‚Qj7Ùß7~9ñZ'à—\QÕà*#gÁMeHÌIÄkõ%52¥qÄÇ}ÌÌÌ,9í …£’¹HÕ ÒxX7Wf¼•ȯUêí7 «ÊÉÉ)¤M¦z =ƒJ|D¸V σx7^IÄkå‹Íš5kÄé>*Œ#p…”–fÇ‘-·jÕKÐX½ £ê×<®:"àAëûò…¼)%ÐOÒ¼1éÛ·¯=é÷îÝ#ß®];O޼ü'+ù*™”§¡¸x¹{“ZJ­3OÝ>ùþ:ÇF¾7ÁW“8Ѷ&´ÊÖ3XÐÇ8‘È»|ùò¤;99y2­b°t®yr‹)p qÁ=j;‘NÄã¯ó}ž/*ŸRÄÿ*|Óµkפ‹Ú·oß-JdïÚ‚#/ò¯’h¬–¯ªçÖ®ÔÒ©8!Ž€g ÒIyüuŽÇóEåSŠø³¢>»éçÏŸÏÃm6H˜0a‚/Gßx—F¾šÑ3Ô'òY¢tÃ=qâqÔÄñ§Ä­¤ø”"^ëÙì6mÚ¸@«3%µÌ¤¤¤k¤téÒÅŸÓ]ÿÖ—ÉÅõµÀ£’±z•÷¬õGáq×ñÈò%ŧñ8mç’æ™™™é¸qãZ“Zfttôo¤@:Ñ5((È–“^P¥‡Öò•ln RЪqAüGÒÉyÜu<ò„| ¾z‰ç“‰x­gªìN²ø•+Wþ^VV¦³ï9®KÖŸ£o¯­’iõõ™|¥¤«e"w"Fˆi}Äq'Y<Ï•GâµÖëÙ³§;é‚óòò*Áí\& Gƒ9é½ÕÕîOÍп×ù,×Áêâ%±áñ#¹ùˈ;É€xž¨<²;F>Ö¼ÁUÀõ8’.~ÿþýÄûp5‡uëÖá"»& €•|U’/·‹gQÄ´ ·NãA~D«a<æyTDECŸ5ø¾ÒEŒi÷­F|'~ˆ+âKÂù@^XÝ<+ñ?+?¸B2ôA>¤Vÿø—_~9M‹ð;6N‚TŠåËý_iAˆÅÚUzôÝRU-ãA|ˆ6à‰¸’îyíIó;Ï—AˆÇç°"„ 6̧mÛ¶I-xÒ¤IgqÒlll^9sæÌ\/š(°N}~gb(ÒQÀÅ„âˆx’Î ø[#¢ŸDð|„x”5Ü³í­ª­~ãÆA4>øàƒÜ>‹t ÜqéøñãaÆTa mð«–i(¬¿c%œåºMÚTˆâHkp€°ÈÚ“yž8CObl~Ü=$$ĉÈ‘#G²8°Ÿv°ΆÔŇÓÝŽKj«®štrq„lð¥GC•¼Ÿõë×÷Bh!~ˆ# _Äñýd ǰçÜÓ(Ö¸Å(µ4[§[ŒÞ¹sç*àVo¶EÙ rÛ­×®]Û“vƒC† §ÍÒÁ›^°`Á²yóæ¹3Z‘¡¬Þ„1Ó×Ú%¯ïï›F:â‘z8í÷ˆ·ˆt^äDŸÝ¤qQ]œÓU]]êÖ­[›èèèDDtÜLNNNyzzzÒСC}q§d 01± 133»úóÏ?çÈÔÜÅù¸TéV-‘šÑ¢z¹ôÖ-˜Rή’hé€ùJssó¦/X:sæÌ5§NzD²v‡uëÖl#޲ ô‹Ú&·™Ê=Û»üéŽöýúõk }Ö•ÊÊJwzåÊ•}:ÒG]»víBª aÛ£G~Ð8 ###oÈŒÂÑ,[rÆjMÇÈ%‚@SNz× Sðˆ#Fµ¶=ò÷½köìÙ—(ýºéÞ½{ƒ^ýuq¼ôh´Rõ%·È¾¹úB<==[Cÿ”÷4Ž ê] ¾¸S§N‰Q•J¥†ÆáêrìØ±K”ǃä6ýc©Ä))ÚH¥z²›B€f?ßÛÛ{,i•F>¼̘1gDdWgîܹ CDsèb½†õˆê…‚ë£âÖâ4C@·-&&æ!ʺÍÁƒƒ†>Zªvþøñã4p{Ÿƒ$ql;WIm+Êqì;SÑ—\ W'0\¼xqGˆÜÃ7nì*5áåСCQ#FŒ8MóÍÁ¦ZYY }¾É]i]ÏñýK¤ðƒììì\__ß-·oß.à´7ª~½cÇ¿ &„JY\[ÅåË—£ 0ÜÁoD¬³GǾ¾\Z§tQZÀ§Æ,Ä*“ è ÷g"q•‘“&M:G Ý„÷MÀƒNwpp/Ê[#þÁúFðÏ‹xŒ@ˆÉÏÊÊz8jÔ¨ÝgΜɒÙ¼y³Ï¸qãF€Ûkªôä`]¥@üÍŒŒŒ›)))wÀ+Ü+Êà—$x'g°æVnnnm;ñ°º¨ô: {Ë/vhúôéqrµÿ×_ÝÒÜqŽŽŽvÒGò3®¾¯±üÿ»ýâââÈm­]»ö†ÜHX½ÙöíÛöíÛ·?e‹rE‚éSYY.ú_,\ømdnnn#•^² Nƒ†Æ=uêÔ“©©©erƒ>~øaÇåË—­kÜû_ iéσxjÀ‡õüýû÷ÇBD<‘~}ú·sçξýöÛþþþþ@ŽWOUÑÙ³gcfÏž}ýúõbZaG£X|‡È>¼`€Z­VÕV WWÄkRÉ„7u̘1‡âããr„}ÔÅù:zH›ú@_î×¥¾ÝÊ}ˆ-b!Í< ýy9'ó¤ þõöö¶Û·oßpè×[¹ƒ„WC$^Stø‚™—BJýÑG%HY½8e«r õ…¾¸;¸H›çM6Î|…Øáß‘‘‘qëÖ­Ka-㢮Y³ÆûÝwß}ƒàÚQ>Ã:ñš2ãgüàŽ–Ü¼yóèë~„ümêûϋì'x²O5Dà:ñBÁY;¯ñ)a7îÙÔcÐÆ58&NÁéÝ8…Wï¼À=[¼¼¡ƒõ"OŒºqÆŒÿ'‰hökQóéŠæé \¨Ç R8ÑÎM/’¼ Ä… ÆM…ÄÅH¼QŒÄÅH¼QŒÄ¥¡Ëÿ 08{1FéɰåIEND®B`‚camera-app-2.9.1+14.04.20140331/assets/toolbar-left@18.png0000644000015201777760000001011412316315040022766 0ustar pbusernogroup00000000000000‰PNG  IHDRœ¿­ OiCCPPhotoshop ICC profilexÚSgTSé=÷ÞôBKˆ€”KoR RB‹€‘&*! Jˆ!¡ÙQÁEEÈ ˆŽŽ€ŒQ, Š Øä!¢Žƒ£ˆŠÊûá{£kÖ¼÷æÍþµ×>ç¬ó³ÏÀ –H3Q5€ ©BàƒÇÄÆáä.@ $p³d!sý#ø~<<+"À¾xÓ ÀM›À0‡ÿêB™\€„Àt‘8K€@zŽB¦@F€˜&S `ËcbãP-`'æÓ€ø™{[”! ‘ eˆDh;¬ÏVŠEX0fKÄ9Ø-0IWfH°·ÀÎ ² 0Qˆ…){`È##x„™FòW<ñ+®ç*x™²<¹$9E[-qWW.(ÎI+6aaš@.Ây™24àóÌ ‘àƒóýxήÎÎ6޶_-ê¿ÿ"bbãþåÏ«p@át~Ñþ,/³€;€mþ¢%îh^  u÷‹f²@µ éÚWópø~<ß5°j>{‘-¨]cöK'XtÀâ÷ò»oÁÔ(€hƒáÏwÿï?ýG %€fI’q^D$.Tʳ?ÇD *°AôÁ,ÀÁÜÁ ü`6„B$ÄÂBB d€r`)¬‚B(†Í°*`/Ô@4ÀQh†“p.ÂU¸=púažÁ(¼ AÈa!ÚˆbŠX#Ž™…ø!ÁH‹$ ɈQ"K‘5H1RŠT UHò=r9‡\Fº‘;È2‚ü†¼G1”²Q=Ô µC¹¨7„F¢ Ðdt1š ›Ðr´=Œ6¡çЫhÚ>CÇ0Àè3Äl0.ÆÃB±8, “c˱"¬ «Æ°V¬»‰õcϱwEÀ 6wB aAHXLXNØH¨ $4Ú 7 „QÂ'"“¨K´&ºùÄb21‡XH,#Ö/{ˆCÄ7$‰C2'¹I±¤TÒÒFÒnR#é,©›4H#“ÉÚdk²9”, +È…ääÃä3ää!ò[ b@q¤øSâ(RÊjJåå4åe˜2AU£šRݨ¡T5ZB­¡¶R¯Q‡¨4uš9̓IK¥­¢•Óhh÷i¯ètºÝ•N—ÐWÒËéGè—èôw †ƒÇˆg(›gw¯˜L¦Ó‹ÇT071ë˜ç™™oUX*¶*|‘Ê •J•&•*/T©ª¦ªÞª UóUËT©^S}®FU3Sã© Ô–«UªPëSSg©;¨‡ªg¨oT?¤~Yý‰YÃLÃOC¤Q ±_ã¼Æ c³x,!k «†u5Ä&±ÍÙ|v*»˜ý»‹=ª©¡9C3J3W³Ró”f?ã˜qøœtN ç(§—ó~ŠÞï)â)¦4L¹1e\kª–—–X«H«Q«Gë½6®í§¦½E»YûAÇJ'\'GgÎçSÙSݧ §M=:õ®.ªk¥¡»Dw¿n§î˜ž¾^€žLo§Þy½çú}/ýTýmú§õG X³ $Û Î<Å5qo</ÇÛñQC]Ã@C¥a•a—á„‘¹Ñ<£ÕFFŒiÆ\ã$ãmÆmÆ£&&!&KMêMîšRM¹¦)¦;L;LÇÍÌÍ¢ÍÖ™5›=1×2ç›ç›×›ß·`ZxZ,¶¨¶¸eI²äZ¦Yî¶¼n…Z9Y¥XUZ]³F­­%Ö»­»§§¹N“N«žÖgðñ¶É¶©·°åØÛ®¶m¶}agbg·Å®Ã“}º}ý= ‡Ù«Z~s´r:V:ޚΜî?}Åô–é/gXÏÏØ3ã¶Ë)ÄiS›ÓGgg¹sƒóˆ‹‰K‚Ë.—>.›ÆÝȽäJtõq]ázÒõ›³›Âí¨Û¯î6îiî‡ÜŸÌ4Ÿ)žY3sÐÃÈCàQåÑ? Ÿ•0k߬~OCOgµç#/c/‘W­×°·¥wª÷aï>ö>rŸã>ã<7Þ2ÞY_Ì7À·È·ËOÃož_…ßC#ÿdÿzÿѧ€%g‰A[ûøz|!¿Ž?:Ûeö²ÙíAŒ ¹AA‚­‚åÁ­!hÈì­!÷ç˜Î‘Îi…P~èÖÐaæa‹Ã~ '…‡…W†?ŽpˆXÑ1—5wÑÜCsßDúD–DÞ›g1O9¯-J5*>ª.j<Ú7º4º?Æ.fYÌÕXXIlK9.*®6nl¾ßüíó‡ââ ã{˜/È]py¡ÎÂô…§©.,:–@LˆN8”ðA*¨Œ%òw%Ž yÂÂg"/Ñ6шØC\*NòH*Mz’쑼5y$Å3¥,幄'©¼L LÝ›:žšv m2=:½1ƒ’‘qBª!M“¶gêgæfvˬe…²þÅn‹·/•Ék³¬Y- ¶B¦èTZ(×*²geWf¿Í‰Ê9–«ž+Íí̳ÊÛ7œïŸÿíÂá’¶¥†KW-X潬j9²‰Š®Û—Ø(Üxå‡oÊ¿™Ü”´©«Ä¹dÏfÒféæÞ-ž[–ª—æ—n ÙÚ´ ßV´íõöEÛ/—Í(Û»ƒ¶C¹£¿<¸¼e§ÉÎÍ;?T¤TôTúT6îÒݵa×ønÑî{¼ö4ìÕÛ[¼÷ý>ɾÛUUMÕfÕeûIû³÷?®‰ªéø–ûm]­NmqíÇÒý#¶×¹ÔÕÒ=TRÖ+ëGǾþïw- 6 UœÆâ#pDyäé÷ ß÷ :ÚvŒ{¬áÓvg/jBšòšF›Sšû[b[ºOÌ>ÑÖêÞzüGÛœ499â?rýéü§CÏdÏ&žþ¢þË®/~øÕë×Îјѡ—ò—“¿m|¥ýêÀë¯ÛÆÂƾÉx31^ôVûíÁwÜwï£ßOä| (ÿhù±õSЧû“““ÿ˜óüc3-ÛbKGDÿÿÿ ½§“ pHYs.#.#x¥?vtIMEÜ 󀯔~IDATxÚíÜA‹eÀñçí®™$ººjØÃªì.A!a•<¨è%KVAð$x[aOÍAÈÈiór ¬H>BNA?@‚rl’1Éa…!agœž©ÇCW÷T×tÏ$^œîü~0LOWu4Ôž÷ífJf@[ÏK €0 €0 €0 €0 €0 €0 €0 €0LªfÝ{þüùÃW¯^ýÇÚÚÚ‡?~s8¾T×uŸ'K¯'|¥”½®ÝŒˆ,™S×sÿäÉ“ÿ¼sçο×××ÿ4ã‹+÷º¿ FffN&†ëׯ>sæÌÙ»wï~Òœ¸™ÛÍ÷z\,e$Ú?×ã‰aõĉ_ƒ#¢ÎÌ­º®73s[ý~»”Ñ3M°$M_Ó£‰¡úôéOƒÁÇ™¹]×õ/™¹^Uý­ˆÒL 9^qää¹d–a1¹®Û¨nܸñÊÍ›7¿h¢°^JlTUµ=š 2› ¡‡Éãå­¹_02û>üüÖ­[ïÔuýK)e½ßï·£P7%éÆÁR–f’Èn0²º}ûö»u]oÕu½±ººÒÂxb'!»Ofn€å[bTî ¹ÚÜÜÌRÊvkZˆ8dΈBÎxKB`‰T‘ý~¯/ºqhO³ß™–2 ¥Œ>ç´;SXXŠ}„' ÃøA³>Ñ8¹Ʀ£@À’êu/öéÏ)伈,yf .|€' ÃþŸ©–9 û\ôš&@„@a„@a„@a„@„@a„@a„@a„@„@a„@a„@a„@„@a„@a`ÊÞ§¯˜šua˜C™?+Ï\¦‹PÚ¥(ó–ÂK¬Ú¹Î³DDŽè K)‘™³Ž_þ–¥Dier³ì!Æ7Oyš¯^kW¡…29it¬9Ôì|Ë´”8räH=n–ÌÑ2¢Y1”ˆÿ%JÉØ9§tG“ò”“ ð{®+rï%GuôèÑáýû÷ËèzÏØ‰BDf{o¡4÷e´ö":“ °ëŠ2oÿ!KfDuìØ±Ç?ýtïp¯×kO ‘Y²”ÑI;“C{Ï!Ÿ¤>À¦ÿª€êÔ©S?~÷Ý·Ç{½ÞvkjˆR²—Yê&9 BŽ#P"JΩ°pm˜úŸemmíÓãÇÿëçŸÿW73"súûävwì0+Àbï/ä¬3Jf¾uñâÅ/Î;÷×RF'í…æI€Å æËé‰!3_‰ˆ÷¿úêËÏ.]ºô\«*9nK+ãÛûý"àà7"»KˆöÄЈׇÃá‡gÏžýè›oþ{¨3vtÑ~¯1,`f/'vV¥Y¬FÄ_"â½Ë—/páÂ^ ±;Sˉ§U€ƒ³¯°kѽÆKk³`5"þߨØxûÊ•+o\»ví?üð}ïÞ½{1sÎ/Xð\tÿð—Î.b?"^ŒˆW#âoñZDˆçšcÀò;Tæ¼½PEÄóñB…•ðÑFxVü±xßxÒ‰x†ùŸ€0 €0 €0 €0€0 €0 €0 Àòú ¦¥ÔËXýIEND®B`‚camera-app-2.9.1+14.04.20140331/assets/record_on_pulse@18.png0000644000015201777760000000521612316315040023565 0ustar pbusernogroup00000000000000‰PNG  IHDR~†â>ütEXtSoftwareAdobe ImageReadyqÉe<hiTXtXML:com.adobe.xmp &°j޼IDATxÚìOhEÇç½$”¶ÔBb¡)I/MrhmLziÁ¢ñ”´ÁJ5UâAZŠ›C±ÚKz襬6µ‚¹$¡¡ Mr1¡-Ä4´¥´¿¿¼ &1oyoßüfgÞû~àÇ””ìÛßï³3ow3»“[\\4¤öÈQ<ÅŠ'O(žP<¡xBñ„â ÅŠ'O(žP<¡xBñ„â ÅŠ'O(žP<ÑŸËåÿ¦»=Õv[ǧ*Þ7|vš&ÄË,ؘÇçüãàsTrtéÊ«ø4I#Ÿ³ÍÄnD'¢ Ñ‚h.á×o!fÓˆˆëˆ ìÇ}@R¾QŠ/·å Çö;ÐDô"º Ózˆ¸†¸Œ¾MjÅrN¼–tlwš#ˆÃ¶WûBFƒAÄYìëM_ò£_NÂeß‹¦ßöðº Ï‘ä|`q û>êúX[hÄ»–Žíõ 9Øà‰òâä1¦%? ñ.¥c[­Ò«‡"¸Rº(£ršq-?xñ®¤c;õhÞG|ŒØÑeòÄ'ˆÏß#Wòƒ?ÛÓáJºœ¬GìŠø>ÉÏˆ×‘ç´ ù-c“q‹/ahÍb“‰Ÿ{ˆ>ä|®Ò¡ß¥øú*dï¬}xÛTrð~ƒÜžFûNÒÐï,ÖÛQ¹…z©Ê¤¯¤ñ­Í3õ¥l”â¤7¢¹ŠxÞT7’ßU›o¦òóHÜ^w™Ú@ò±yg&?Ÿ±ô­vxo7µ…ä{ÉæŸ‰ü|†ÒåÄòB õôõzþÔ¡! ùù ?xÎÔ6’ÿ—UwVŸÐÛßDsÔᨭ‡×^ŸÏ@º|¿ Ð÷*l]¼É÷:Ô#9¹ß.ÇÞ@׫Xª‹­O¼C}ÂQú‘)L…"ÿ§ÓÖÇK¯Ï{ìíO¢9N¿‰·uRÇ眻ažÅ—Äôðuï`Æ8çN¹L§%Ó ùÃQ‹‡tùLGz†>KFfôvCþ¢–xßñ/PzÙtÙºÅw¿‚÷è1¼ºiϲ} ͦ¦Ãý¯1õoÑ]˜õÓœ^-Ó¨ä9´mô—š9Dóòƒœ±ôøý”^1Ûl£:¹;DoáÖQSü‹tnµž¤‘Gž~§3gì”G²bøŽßKWa×SK|7]…]O-ñtv=µÄ·ÓUØâ5š| Í_t圭-c“‡Ü㟠#œÖUCüv:Ra{èâéH…ÆÐÅo¦#6‡.žDÅÇCŽâk“ÅÐÅߥ#î†.þ©p'tñ·éH…Û¡‹ÿƒŽTpZW­‰ó†7rœó­ãSM1Lʤ«°ëIñï”qº »žZâGéÊ)c®7¨ù$̲m¥³Š™Á‰ÝNùG,OÒ|GgáÖQSüE: ·Žšâ2…‡þHzælãoŸð¤»Št±ä©ï/|EwaÖÏÇËd‚gé°l~Do?°ò±½üès: ¯n>Äo ¯ï"¥sÍÖM ¾à0LâÁá ù|¥iixy¥©ó¡>aá¼wMavRœ‡¶NåÔ5ØïøåëúßМ¤ÛDNÚ:©£">áèüqƒ~×eÒÖG½·{íñ¶×Ë*ˇMaµeòKu±õ1Ñöø¤£ÉÉ+NÑõ*Ž¡.“¾z»zOÿ5š3ô½Ä[oÒ½õkŃ¯Ô¸ôLF‹(«‹Oèõréòª©Ý»z’÷+¶^{»·Ÿ _Þ•ó’©½W›K¾/Ûü½K÷:Ô'Èÿ;êù’ç~ä=—•tïßñ òå@ùäp•K—ü ßù,¥grr— A†?SXl¸9m‡÷…¬¥ õ!UEy$g¹(„)¬?»© „ßCô!·s!í”Æ Ë42´¡9رô_¯!ÏérGÀõhs÷$U^¡×V<ìÛíH±dÙ²M|·xØýîr%Ýõú²šOÒ8Kʾÿþ”‰cÕ ™ß/ï—O{ЫO41\ÑØ^šöò/4F¤—#ÑòHU—Ø–u>œa›òâþ~ÄAD]†²eÎûŒF¥¯´1.*¬rž€íî@sÄþÔÛæQ¸|oËÃ"g±¯7] /VƒXçÜ©$ÚíwØ ×Öfmp˜–ÜO—;n2at¨ØŸP5¥G+>íMŠ4g³øœhö v#:íhЂh.á×e‘ÄYÛ«e¶ÐuÄöã~Šýpšo´âÓÃÕåŒ]ý² ±ÅÆ2 6æ]<«¦•cÐâIP<ÅŠ'O(žP<¡xBñ„â ÅŠ'O(žP<¡xBñ„â ÅŠ'O(žP gé[IDATxÚìœïK#Gdz›5‰ÉEsUhÓ b1ˆWϤTh+G)TJ½’ö(Ú­¢ÿAßB“7öE ©”j+×Â!Jµ±Ø ßU!†JDeóc·3錌»š’\2ÛÌÀƒ›uwL>ùæû<ÏìFAUU•"GÀsà|pà88“CbùÉ ‚ ¹ûšS®Ô¸¬•½’Á"½<|ÓX‚. ¶ ±MCVÑï˜ìèDƒ)?gqhhÈ288hÛf¼OçàÀK€ŽÁšãñ¸yzzú>ú”Jx¯“ ªó"X^K!@a€f2Òéôc‹ÅòØV@äˆPP¨¬%O£)«—ÌfóÝ•••Áv æU. 6-¤NQ”³žžžÀ¶E:÷ð2ùx^á¹\îÔét¾111ñ‚ŽýœY•‹¬e+ø„ï÷ûGp‹Få /üe¥’ÍfSp‡Ûí~w``à)ÂZ˜U¹€«:ÐÍ™L&$Ï[¡PèœI•qñêÒVdY>Å;»ººü.—Ë®£r¼É—ñ«Õêž™™ynR*gÊVŒœî\Ðø¤Èýýýï!àÌ&O&€CÅiÅM~žƒü%°”»ápø…k W]å" °‹¬N®¬žƒAìóùü,«œEKŠˆüqgggôÉç•@ ÐFÕåÌ”ˆ"ƒ°éŽR/D\ÖøÄˆÁ`ð¡FòdBå"ƒÊÉö¯›P‘ߟH$ÒZuvv¾ÙÛÛ{›ÅŠEdTÙ2´ˆz"l(,šÀ%I²ƒäù6åå" *gQáXÙ$lˆ[DÀÇõ±X,§7Pø; õ¬5B¬)à¶DˆFô3}_÷ª‚Ýn:‰¼¦Q±TÕVª~ÅGøçÕ’°óÊ>>>þ@ëS>Ç|ä q´  ³Ãḭ7÷áááÍÍÍïƒÍˆ°Œ„‰6kªÖ!ø‡ª”oÛŠŸY[[ûX-ØœœüÌ÷<ˆpEÑŽ,¦À^*õzYS¸„,ÀÞÔÔÔF¶Z­Ï–2ÿÞÞÞ/mmmã„Êa힦U^),x¸ª±Ní@ÙÜÜœ+uò–––—GFFÚˆä©{ݳ֒&¯¸+£££?d³Ùó?AâØØØª†«õÚY˽ìúúzbggçq©ÃF¨¯¯¯ñºÅ¬Zmí±º¡¿f`„B¡yà¯J)“ÂFhjjjˆPvÕ€³4M]&®Áaýݸ»»ûYkkë«¥üY–÷=Ï=(q¦ÈÄ©Vk /°TMÈóóóß”:1¬vïé%éZT¸I«<Ä*Çã_ƒRñŽÞ<'''‡`.• 4~[Eõüüü7—ËõRwÚôïmqS8‹·+“*Ï`•///Ïù|¾OõNµö'GGGId2:/ƒ?N¡Ç ¡ôŠ*¾ê–B ‹P`+@à' Ð¿ôæñz½ðÇjn’Dœ ýdÓ£[ûZ­Rh•ãj%L&/666¾Ó;¡££ÃŒ Âºý>%`§(à*~¸Bª< >Òk„ÚÛÛ­È:RD\P°3 WjÍ/ÂVò> ~¤×¹ÝnY¿#À$dÒJ®ð›KÄ<ôp8<§Õ ¦ž€IÞ˜Oߨ_e3ü•“¶’ŽD"F£Ñ_éóÑÕUã\U'L5 ü?4Bé………ú@§Óé¸a¦Ø7»v€ë¨üJç ’çïÇÇÇ[äÁ‡Ã^ X‹ \á7µû«««³äAv0t€ó»gËQ±øýþeYŽám6[}µš™ÿ›Â5!`)ÛÛÛ3pþdKÄôøøøüb<Àjµ:ªY_x%bøÒÒÒQ,ûTWWg×è"9ðr'ÏÙÙÙÜ'I’ƒhp˜U¹Q¾ú« òÎ,|ï¡”L&¿~Çb±¼D´öê `âëßFûަ—omm}¿Éfººôªr…—Gåô½ã(ÄyŸZ;)°®ðÒUŽ•ž¶òUww·b*\äI³ÌË%ðáááï½^oŽ[Ê“±üSï_1‘°™úŸ)’A-E   :ǘ¸Â˧rZí¦k ›XR¸Àÿ5Oš88ÎÎóÁsà88ÎÎêø[€’kÛ‘cU›IEND®B`‚camera-app-2.9.1+14.04.20140331/assets/record_video@18.png0000644000015201777760000001116112316315040023043 0ustar pbusernogroup00000000000000‰PNG  IHDR\Là9ÐÃtEXtSoftwareAdobe ImageReadyqÉe<hiTXtXML:com.adobe.xmp œ@NŸIDATxÚì\}lUŸ™÷Ñ×ר´…RZ±P¨¥¬R‰…V´„È6¨)×]]¶J\Ù°¸®lÖhbˆËnˆ‚DÉ¢QbQ¬%[(aµ°Û–ˆ²[ µ”ÏJûú¾gÏ}{çyÞíyó>)É›ädú^gÞÌýÝsçœß½3¢,ËBb‹ß&% Hž<±%OžØ€ÈͨöQCùq„´'¤÷v¤ÄÆ0€G0à!u„ÒÖx/â‹i€-ù[¼M k|'sŽ‘o··C[DÆ~Ž7ð²YÓì(Òþx€nÔ[ X‰þ¬z<×ÙK Ö=ìÒÙY¢N¯V@60{|-oè,à^Æ<œïdʉü¦‚o 6Ú@Ç{t!Æ óèçÕjnjÊgyzÔ9$5ƒ€61{ ºˆrzßoäçç›Á,S§NM1™LQË÷oÞ¼éêêê²;NoccãtlÚ»ÐOyƒS1LÐíá<°`Íh35?à7n¼wñâÅóÆ?=---×l6€GÇ+Íòz½v0lWm6[÷•+WþÛÔÔôÍš5kZd'…ºL¿—udc<:Ã)˜« I`)`¸±`Áî›6ì 6<ÓÛÛÛ"Ð À?¿wïÞ5p¯÷€å‚ËK¥m4rbod›‘™Ðè–xI(EÍÆ«o¶"°sÀî+»lÎæÍ›Wx<ž!ùØÀÛ7Á=SÐ'Ñ6¢m43àaI‡XèqVê€dŸL¿gÏõŽÄ€n¦?¬\€Ü€¹¸¸8íøñã&%%Ñén·{:eö0äݤƒ"¥ƒÁ` d’$É`4ÓˆÁß–`¬³iÓ¦eëׯo…¿í`Ctï@ÁTæ$ ¬ *Ag?o9(•`ǽ›ŒÌ×£ K~øá•˜C{zzþÙÙÙÙüí·ß¶OnPÀöìÙs÷ NCÿ7 ßðßÙÙÙIuuuÕ3gÎ\ éí8TÌ|ðÁ ø³R‘ÀP‹ÄäõAç M“b$PñNîëëëFy.æ±X”ìj4#¡Ñ©'mß¾½{ëÖ­NªÄi„ŒŒŒq´=2:´SNMM•`/*--] É@ï¦ ø›h\SÀ6Ѷ(èaéá¼r^‚ÀÈ­º ]ᎈ%sJu­ï±“x‘‡h'.—ë:è‹70B3(H~ ºðB€/Ÿ?þK—îѺAÜ€F‰I±¥”`²«¨Ø?þx‹Q õʶZ^-kQ^Žsˆ*zŽLRRÜ÷("exÿý÷ª®®^µ€wCP¹öÁ¹(·ÖJÅP<\ÆŸ@)Ü^ƒÒYFZŠ CAÄàk‰Pl®ëQI¼Æû=@ò ÞWY¾ñÆ÷½ð ¿ÊÌÌœÎk“Óéì…€ûÉ믿~RÜ]AbGÈ✑Ó`V?öªþÝwß9h`â 75Oçy7Ù¥”ENypàá6å"@)ÝÝ݆À8“× Ÿþ–––—-[¶çôéÓàótüˆ^ç I5ªxX€gÁ;y'C~ê¡DT²ˆðé555Ó µÊÍÊʺ T°è4 Ñžù¼“ñH»Ý~khh¨ßf³Ý€,è\£¼²f7’X%HIïyê©§^ïM…”¯ö±ÇûÒ€@ƒf>›mP°} yöÇÇŽ»© ”ÄÜ£Áº7%ZàH¯’ -Ÿê= ÕÜãýýýXþ7 ìg`³ÁÊN:µ›”ñÑÖC :×­[WI5À'OžœKÀSRRrpYÞÜÜÜ4eÊ”ULåÛ„Jv™ájGQQÑßP¡fW²|£<ÜÅpƒ1Üh4Z‘çú@ß\QQ± h.iÇŽ7Qjh¢{\KÌ<'kn4:Dp oLÚ!h¯ë üG,‚¥FUªäçî#GŽ8ÀØŒË7(8ëLx£—Dðu ’1<”’[µêŠãúþ´Ðn·˜ó£²ŒOŠ2ñ]mѦÌÉr,§NZóÄOd +³hu‚Íf3©Ñ a)ŠØZ×Öœ°˜1cÆÂÚÚÚ÷Z[[_Z´hÑxt¼æÄ200`æ. ®–¢åq‘,õBs‹àáëÃ,IDÑ|üóÏ?ÿ;¾²²òntðàáë]h•"ÑÂõÌsýÁ 6WL‘þ? ¥|ßd2A£rMàŸþꫯ>mnnþmYYY&öxàp #z…5à pM€9^ì/ qöXj˜7Ì=‹Zij___ÇÅ‹Or¸=eÖ¬Y¿ihhØÓÔÔTSXXH–ÁY =IÀ ‘¦ÁR|9¬CŠŠŠ’”|xpp°?–€»Ýî[LU(s9r€os¹\ƒ&Løã›o¾ù‡k×®}ÏQÓKKK_šùôðáÃO5ÊÊœvHu‹¤Á“Ãôº“QðdE};{ölg,'“ œT>l~“¬'A#ħ¾òÊ+ÿÎÊÊZýÁü¾¿¿¿½ŽÙl¾«¢¢bå_|±Ug–çê)àÅø éÓ§[õm×®]߃ÄŒÇ/]ºÔÌ)¼%sªdê 9Ë–fkjjŽdff>óå—_þnhh¨ƒ½ž±Gj¡WÅäpçå¶½xõêÕødH³F+BÒ‰'®ÕÕÕý<ñb”¹{¨§§çÐË/¿ülüЀ‰1#ЄÆ@í£€O÷iá„fªªªêÇŽ[uôèÑõ‡£KC­ô0ꢇÀƒo ¥škkk»‚„Cê¯ThÕÕÕõ°;“““ ™0eÊ”»`K=ztjrr2á{2“’Â^î"t#ÄÃüÖ7úgo;v¬«¾¾þÒ«YÍÄÀ”íþ¥ÖË—/Ÿ¨¬º¢AóÒÂíÂO 1½à$Byyymvvö~ÞR7 ¸Køi™³ÚJ‚K{Þ¼¦¿'wîÜÙùÚk¯‘‰ßȘ6m™@>ˆ2ßïêêò¼óÎ;gõ5)Z… oÖ mBe¸ÌÈÄþ(èüR|¡3gΜE”¢€îÂ¥=d1NœìÅ‹9Éœ3d0D¶¡Q®šÕ:ÝñM[˜b€|6õöö¾›‘‘Q¨¤j+W®¬Ù¶m[· oÅ–¨‘‚jÍ8¹ÑžÍÅÙõíÆüüü”–––í#q¹²È‘.•¡‰¹ð/Êollüżyó^Â{þüù†ŽŽŽÓííí¡Q=pLï?üàBLF£EÖP~¾$ òy䑌¹sçæÜ) òyé•Â…I¬¸Ã,¬P‚(ž©Y‚zÉS'î[@Ïd‘¹ éA…•ÌûL(Rš“Ù%2C'>r"¨x8›7’‘à1™ÄH°°Ò·ß~ûE3ñPUUtp;ËÅò.ƒ·6–””L²Z­F¢pn³Ù:÷ïß¿aÁ‚ugV^%àÉŒl!ë ·aâÆuÏÒ°ŸàÙP¹å?ùä“eR¦¥¥M"ÜIž6K‰°ä¡. ,òdòµ Æ:À=,á=+¨LvèžUH@Q!ð Ð5Š‹‹-PT˜ 7@æö2 ,šAt@æŒàÑo·JÑ¢]Šj8€k•ÎøXA“„ø¼Â#Ò—è;R)YpßÓ±ÃeWQCâ½Â#ØâûXÎþÜñ¯ïÀ|¦–³{hiѱ~…G8/¨‘ã t€‡«L.¾Ös<±\ÁÛÕÒ•#-’-V/‹5„ ~Эx­¶D-Ì×èÅ àp: (OÇó5zFµ‹k?’_8>â_)&^Øß-ñîÙà À[ðà‰-xðÄ–<xðÄÝí ]Yóc¹lÈIEND®B`‚camera-app-2.9.1+14.04.20140331/assets/record_picture@18.png0000644000015201777760000001305412316315040023413 0ustar pbusernogroup00000000000000‰PNG  IHDR\Là9ÐÃtEXtSoftwareAdobe ImageReadyqÉe<hiTXtXML:com.adobe.xmp ÁâaZIDATxÚì] TUU>÷r—/DQÃLl9*˜¥ˆ9š+p|åÄha“ËÆ,s)EéÔX“Í8ej6>³‘,m©£YhŠ’¦¾DAPyÉë>æÛ·³ïì{î>çžûàaË»Ö^ç\Î>÷ìýíÿ÷ïÇAc2™„ûŸ–ûhîÞ×h4m²¬NÞçV‹rÕ@Û2à€75ø¿DÀ5 ß5NZ¶É]ÀÿÒçkïhd¹£SÀÿR—šMç\ɲMœ$HÎý^\ã@ 'ieÀ—œ—Œ2à;z[\ã¤eó€ÖÊ€Îo’ÜÈmä€nr•bmw®qð»ØZ™$Þžu™dà4ôfuªî\³“\J%,À’£œ•ó¸[ ¶AxÁ]À77àöœGÇ^“‚í![뀅ó7HÀ—ÒŒ¯›Zp5ª‚µX’{HOMM ›3gέÕjÛËUŒ–׌ …ùùù™Ã‡ßË€¬—¥A¦TÞ€«qt Ð(p¸…oݺuÀ´iÓ6èÎpjii鯮]»¦Ê.gé&E£¼»×(ð®ÿJ=J±Xùc=••µÛÓÓ3ÔåpâĉEƒþ à<Ðí/ º;—‚­•îÁ9zp¸WPËãÅÅÅ©aaaI4SmmíÙêêêK¤^¼2Òº 7xvêÔi<ò˜éÌ`0TÎ;wš5kÊTn”±z£ýî.ÀåÀæ© Äáyp×ÈXˆ¥·oß>dêÔ©ëè…ÆÆÆ S¾úê«*™®nE[çÏŸŸ÷ÀÌ¡÷ߺuë@HHÈ<Ž•*ƒðJ Û\ëDÕJ¬š&OIò"éõ×_ï]QQ±ºªªjseeå&1m$Dz²²ôyóæõ yé½<òˆbbâ2ö¡ –¥°•À1ÅÅÅ}€qŽÞÿí·ßN BÇ”‘=²I'c0.E…j,\N'³`똣Žý^^^žËzT®7nÜørÆŒo²–º~ýú?õèÑcÍSTT´-<<|¹‚ªàú“+VD½ôÒK[QO‘ZjæÏŸ?ùý÷ß/‘i(ƒ¤è”’n¡ž ñàlI9r(x´oÇŽGÀé…8kw%£FšüÝwßÕ*TX‹Tøá‡?DGGÿYÒí›~5I ª²ºººÂ›7ož=xð`ÎóÏ?^¶^x®3up¥ „íšæstÙ„¦´k×®·›½Œ[¶l™“””ô˜ˆÝ™Ðî:ô ~~~«y À?{üøñ•hä} Øzð\Gjwp‹d&‰Õ°{#‘Àƒhâ`¤ÎHa8âúõëÿ6¹ñë«ÏÉÉIÃï ú#õCzéA¤>HQH0)Jü;¹ÞWÌMîEÐ4öîÝ»y>Ò¿poOR?±ž¤¾þbý½Ú´R_<<Ù¤ÆÂ5àu¬ƒ)((˜õ §1 D]Àj®¡ÂeMMMµøNS½^¯Ç¡±Azß;w*×®]{*33ó¶!W{ƒ`'jÓ­^½:&""¢gûöí;ÀHü}||‚aùä{$¤¤¯ôÇΜ9³¸ÿþ›pÚ$&©¥Û €¹B)<:ÑIÉ„ ‚²³³sP`?ñú«W¯nªø<--íÀÓ+ þóÀ쌕ÈI2Ìo öÆD|}}µéééÑãÇÿ-tÿz/zÙ#F ;zôh5z“p+ZqàZ à¬u{åååM0`Àßè½ ¥Ã‡Ï’pœÒP¨Ü°€•¾ú꫽&Ož<ª{÷îƒR¤——Wgª@Ð[î 'AoŸ=uêÔQ8¿pw“Ld®'› '»€^ÈÍÍ]³ƒ„Kg¸[çщ•Ö†ì[Ù—(VºÊ$V­4jRP6#ƒP8Ú;vŒ†›åïï­ÖÛ¢,U—/_΄,ü=ð¶Æ·”`·Cƒ¤ƒúíD^`ÀnT¢w>²ƒTàÀþ ÷æŠBg É&5ÝSóÚk¯ý rmÝã?þwGÀ&N×~åiø]GŽ™NÎÎD…ù¼] ,fDýúÙ™yrè£se®±C‡èÖÝÀ/2V­ä`X«xø‡J.¥µ“¸Qê4F±èt5ˆ$aˆzã{¼i^_D®‹JJJ†M›6m1´v¥Œ?1Ò2 *¾4‚œ{{{÷RrÆ ÃÉBÖŠY9@>½ë™œœÃJ)ðÝQžE"…‹ù:‰’*P¼?@<¯uE"á}„(ï®äÈÄ:¨¡í)))¿Gž‘H£âÄ4š¦>}úŒ…üµººú²ô7jjj ¦N'JƾŒ¼¤’Ò,'Ož<¹Œ½ÔS”ˆ¡bý$òÐ" íÉBGÆRl&úõëÀf@W¼eg–Å C+G£ý<:Ÿý]XsÎÌ™3gÌŒ÷Þ{¯˜3¬`Ih}BBÂ~Xûì¬2õŒ‰Z¿~ý?añ~ ´`o—±èÕ«—¯ƒÓ….QŠ,—ÃY¶g/ªª9Ó[F&23qº …^6n܈@uàbö7¡‚>ŠýNÐjR#22Òç‰'žGü ïˆroìÞ½»‚>§¾¾Þ8f̘Ï,XpzùòåoAww9¹/x=544t‘œ¬Ä³ôl@^*$«[8\ñÇ¥êFnN‘Öä ÀðAw ¿áAú7cèСŸ²ù¼Ä&&&N`‘תü Œë ƒ}„Ù ¥ÒÐï¾ûnø;åã?Î ºví:aïÞ½ûÇ÷•h ‚ÄpêØïíìXµj×:K'ÜL?ËI5Q¡$ܾ}{2 § ¿`Á6lXtuÚsÏ=÷f·nÝb¥`‹Ö:räșǎûÔ3„j[·n­xçwRIPFóÆÅÅ- ÷vqøÕaK׺ðãJ3© $‹Õ2Ä·wïÞÏ0“ å'NL§×ãããƒöìÙ³ Ï5}ÁÊS7mÚ4†ºdÉ’ ßÿýfšêªë¶mÛ~Ë“|ÒžË A°¿òËí‚‚…›Tt-›‘Ç•+Wþò-f¯8¤[káètŸ~úéÐá½I–çÿ^^ٸѠPÍ“O>9Ñi4²p+ø¾ŠæÓŸÄ[~€›mq¥£€»Òº²KÙ|ðÁLJU E²—°sçÎD8F"ã„E‹½Žk9h « „L¨v @‹¶IAc§§½téRc~~þ.zÆÜeêh W Ü’TÚ* –^,..>tíÚ5=µn?OŠãÔåE¬WüvXzzú0ú<ÐÌÙëP:C¤† `áš¶ ¸šÑ@ ,0 tâG3;wî½–––ö0ø¸£ñu€>ïÀjn(›05=zô(jÁè?±´ÅÜ¡™ø¶ 8øAƒ…³Oœ8q…ö€˜˜˜¾–‚jµ^YYY)}ûö5ƒþÔSOõzúé§ŸPóÀ.]ºX@%²ï'†VÂõK¡]¶t]+€mu)g5ðñâÅjZùÀÀ@«¹P;1Ð×@/Õ¸/XíC}||‚X@,îééÙÞáñ{ÌÂ]rΠOGÀfîs»µÞ €Û,»{÷ndÜŸqw<]i0,’ÜQEw[ʺ[pîÊÔ¼¼¼B6ÓÀÃéõÜÜÜw<¸´´ôõB¹ôdÂøkvfƒ ìÚ¤…[¥U«V#€©c‚‘4ï²eËÎÀ:]¶òo¾ùæ0ÓIIIéÞ¶Yׯ_¿(-“t©Ÿ;÷<5'à‹° nUTT諪ªŽÑ ááá#èr™n߾݄¨3Ó•BÔÖÖ–ä¯éó nâØë¬Žqo¶µZhÁeë¦ \¸pa/£7lØO¯M™2eç­[·.9Û£V¯^ý4*™2†††z@»'2qþí·ßþI2ªÉ[™kj“.Fh [—/^¼xY÷G33fœ'™¤6Âo6Â*ߨ©©¹áhyvíÚõÁÂ… OÒçdffNô(œüq§ÀYª`á- ¸#{^ݰoß¾ª«W¯~ÂŒö…îÙ³g6½¾{÷î²I“&-ßþ ¦ dÁzÉ;'Nü\g™|ORÉLž NŸ œÝ2nrC/W ¸#Û-”&\9Z¯!«´h¦>}úLèã™F¹Ù£GWeee?òž____yüøñcÇŽýcrròA ö¸qãÒÒÒÞ Ñ*Í{äÈ‘wÏž=['Èo9qÆ]Ž4.µ†R¤C°FN0cE-9995°äW`Ék¨!¨÷ïßïE¦ÊÈ} =€<„󯇘Ð+88ØZÚpêÔ©hŒ"4šÕz˜¤¤¤N~øá[ˆ6»Ñr–——ÿ’-p–f8°# äphoePVA‹¿¿¿Ÿ ¿±UIÁ˜+=yòä„îéÑÑÑ/Ðÿç+W®ôCø×áÇ)Ïka¡·‘îÈ”Í ägŸ}Zù“N§³:uuu—gΜ™Š†áMd›ç\üØÂÂÔ ê–ë5‡›Ä‘½J à¯%»ÒT«D5Pë ZÖI¢ÏGaéë;6ƒ¬eöäi×®];Êd%Î_$`A"þTU)(,àìóóó+¡VE­¬b©›ìºÂŽ;zƒOóéü"€ÊˆŠŠú§`»H/È/b—ÐY~ÿèÑ£I±±±/Hç.É:ô¬‚¢¢¢s×®]+ˆdv§K—.!Ý»w„ôë%b³Å÷äÍš5ë嬬¬rÁz] K'fc€zy>äyñyúÎ;÷ ‘åJë U-uS»¶ÐC°][hÞƒHð*h•oÞ¼ù ·PàoÙ`=²”ÝM±bÅŠþsçÎ]âçç÷+g»0¢ØÆ¼¼¼õ£GÞ€0¾Q°^ÃÝAQZZºõ0ÏBz~òööŽþ¿dOºD]â¶µ…¼uxf¡ÏÒLƒ}}}¥;Ú¤ @ÙMKÒEíV4óòË/ŸCäùÌ—_~ù‚”"n@Ë÷ÿ~ðàÁŸl§±m6ñ’òƒ–ÑŒbýÔ¾Á-*E#ç”H*))ùJa‚%vÎÎÎ G·W tmŠÔªhÙ€*Ѓ·¿ÀéÞåË—“5ÜÃzöìù0€Âóüª1 QJ@qçOŸ>»téÒÃgΜ©‘X²Fa²Á|åütEXtSoftwareAdobe ImageReadyqÉe<hiTXtXML:com.adobe.xmp B>D£4ŒIDATxÚì]XTG×¾÷î²,H/kL, ±bÁn,X@¨ˆ&j>£±$jL1–OÑO£&¶$;64 @ƒFT4öı"UÚ»{ÿ3wçÂìÝ{—vó;Ï3Ï.ºwwfÞ9ç¼çÌÌšeYêMùÿW˜7Cðø7åÿQ¡ßô«Ä¾ ×£´‰}¤€Ê–òï7ÀWp›i#¯bï¥úÌ Þ³ïÅ^_ˉ MÁ&Ádÿ&ö·Ød D€äßk‰¿Y‰¿…ϼV“@þ‚̓É,#þfÚµk§œ5kÖ;õë×oloo_ËÆÆÆK¡PxÊår™LæÂ0L¨öÂÓjµYP³5M:ÔÔÂÂÂG*•êaNNÎ?>¼±pá¿bbbTt 1„“ⵘt%n“Ø2²®_¿¾®ŸŸ_{ww÷6vvv-ä·hš–Y ]ê‚‚‚;yyyÒÓÓã/]ºtzРA÷ñ$ÐHLößLÍ 8M€kÕª T;¨ŽP]kÕªå7ôÙ³góóóﳯ°ÀD¸›––¶îêÕ«›4iâ‚ÛiƒÛmEh#ú_ìA™p[¨PÑ€VŽŽîŸœœ¼]­V§²•°€yHÉÌÌÜ’˜˜Ø·ÛöÍ(p9 %Ô*XºÝ‚ƒƒܾ}{.¨×[ìkT@Ü|úôéW3gά‰û£Äý“W– @¿ÂßJº ŒbþüùžcÇŽP­Zµa@ÈìËócÙÙÙ¹/^¼ÈLIIɉT¡ &B “I ¯kkk@9zurrR:::Ú¸ººÚgpÎ`[žßF„ñåË—[>¼:$$ä‘€¼R@¿")'Éšœ|Þ¼y^ãÆ› €‚f]ÊAf=zôâÚµkO._¾üâܹs)±±±i©©©êضTÀ‡… `Õ±cGg___·fÍš¹{{{{Ô¬Y³*x¥7Pùx,1bšj<‚ð¤”Þ«W/§uëÖMöôôüÕdÀÔÌøøøû‘‘‘ÿìÙ³ç1Hvˆ®-eÓ“R,@&yøûû׆ Q&‡S)&€ <‚UsçÎ]¾zõê—" Â¤Ÿ~R^¤Òù¹páÂûM›6ýÆÊʪš)_—uìØ±¿·mÛvûÀÏþ´FðªQ­¬ðRn£Ø+9)Ø€€÷Q£F5èÖ­[C0¦ôˆàSÐN³ëÔ©³ƒ¯©hé§_”s¬}áÂ…õ>ùä“E0X]LêâÅ‹w7mÚtí—_~yÌ^CØKµÁ+MsIëO­‘A‚ΰè•E`³$ÿૌ jÜDËåÔ„ ¼Fíóî»ï6SUâÏ8zäÈ‘©|PÑÒOWè¼›ÆIù¥K—B@Êç¢(šÑˆ ”ßÿý:L’K§OŸNǃƒj!QáoZ ã¬Ö'O´~½HÕCCX++¥PXÑðJ+•ÖLQ|V£¡Tª|V¥Êc Ñpãv³zA#Ͳüä%+?¸~ûùù9Ìž=»9h9šÆ'uö“'O¾3·÷GSàÓüNFè›ðÁÕ–-[¶ì¢ ªPsmêÔ© 7oÞÌÂ`àškHv!]¶hð¨!C†Ôèѽ{Ý&ÞÞuÝÝܪ::9¹9ØÛ»ƒ9)‘¥ÓÏÊÈÈxž––öüÙ³gϯ\¹úÏ®]»î$$$dÒ/Àø‰,¬¼& 7nlóã?¶éÚµk3h—ѽ¹¹¹ák×®ÕÖÖ–Sã-Z4ÿ$!þìpkø¬>'§tkﲸ¸¸,ÿ¾ý6WȨ(àµZ–¡ušÁh| š ­UG5Ú?çóÏ?¯úàÁÏÁæL ýWƒÏhçÎqR¿accóþü±ÛÜ’Ï”tJD½#I_ãääÔUÂ/׋‚A9£Õjõ¤ƒŸÛ¸Icù•+W>^0þÀºÂï’8þÔÉãà9[Âvrä qf¯Þ}öñʪà5µ Úl ÊÑ+€nà[ñ‡T€ÄÕ[²dÉÐnÁ5ÒèúÉM€lÌc40Lppððû«W‹ýh¾ÞHòÛ·oO‚_.ŽÆ”t2Çm˜€_"%é*•ª\®ý‹/¾Y¤ÚA @X²8êÉç\BÂ÷Mš41̓Ù?öèÑ#£1‹æwÛp¾>¨ÎTÿ ð‹Ë¯AýGšG Õú„Ž®ÿ®·LZ× çÏÃ\ž_÷—?·›ùöÛoïß Ë‡"%ùG])ˆ–üòH<é§+Á®Mz¨Ø‡¤äîݵk×?„jIc)wqvÖž={&dúôé_‚Zw6¥]:wyøÐüû,¶è»³ÁÇ~àG=}ú4ÇÂÀ˨â]Bt{è(6ƒ­_¨_³fÍúLR€½½=â¼êÏÅm§Á=|Dwg.)›<æKJ]¿B$^¸ØÂôÖ[oM“\®}GŽyJ€Ž:ÌÙòŽ:Ù]¿~cn›6müKÛø=z<„ۣƄ¾;óæÍ›Oü#~®ål¼–áÇ€*Þæ¬VZI=êÚÿö­[ŸûúúÊð8è™ ãµ[ |0£s€; £Ê¹«‡)èƒß°aCóÖ­[/–Rïï¿ÿþ~PQÐcTã>þØ+òðáïªU«úVY¿W¯^CD„ÆRŸU("xiýõ×#K‚ÀÓ”þÞ@{ðj£ñyðv€Íž=vìXWøˆôÑॼR+©öA³®³únyÀgʨâ¹ÎBãª1ⱈ"r£GŽÀ’žG€ŽüÞü æ7YµråMUíÆJïÞ½ƒ"ÂÃàgà'Y |–Õsc•8`c¯ÖhJܶývY»víWsÿûߺøy¤äôÑG{ÅâÀv®ZµÊµ¬*Ÿ)ƒ´óvÝfÍš5K¤bïÀR‚M(tdÛ V¬XÞò+(r¹\i.úôé„ãÛ>+ºIT«Ñ˜´½­)Ìž5kÚÒ¥KßSû¡¡¡/æÍ›wHìY™LV4ÆjªŒûø˜²ªøsçÎpwwï-å§“ì5HÐ'Mš4´„Ù÷¾wëÖ5ðXÌï#ŒH~´9Ágõµ`ÑÒ3¶ý¦ã0uêÔÉK–pàg Ùþ‚ îƒÅJ0ýཌ*‹ÊgJ©â9× WZ´h1[*"÷ᇞÅ~*Rë9<èß~»ÀÇR ó¥cÇŽ}üà ±ù¬A ‹#ðãKgoa<¦M›:XÝxqAŽÑËÀœž7õ¶Ø³U«V] æ´NiU>S¯œ6mÚBP5¶b±÷€€€h˜ñ¨Ñ¹¸èãǯóùçŸO³$è$ø1Åà«à[ÊæíàaËbsa\æÌ™3åÃÑ£]ùqããûPäýúõ‹‹íÃgí:wîüCiU>SZi?t°‹‹K'C¢Ã²Ÿ}öÙ‘¤¤$I)=¿ƒ_‡¥K—|6MIUP餄„ä'YíÓTÓË Î³zÕªÏÚ¶mk…Ç'{ìǵ p‡X‘Ü5À³z‹T©gJ#íh«1¸n_‰}-­nݺ/¸à¥TÝÁÑ‘Þ6Ýì½ àûK€ŸniW¯¬Óþýû'8:8æ£qÄ Ù{zãÆÏ>œ á".BmoªÔ3&LŒ¢X<üðD…BQUø!´‰æ<¸y47Lд:***ù­¯j 1øÃ ¶OJþcÿheÆë­¨¨Èn‹U>gï?øàƒø´´´tSá¦ôs‚è•Iâ…+o `ž^õêÕ+öa´sì{.¥Û$Á½Ò]°hÑ¢fm}}ý_õ@v*&|Z,AÈV¢ÁKÅ’oNðͲ^Þ®]»^ß~ûíÛüxb•Oèëh±gìíí?ÿ¿&e ^Iª¾h¹ì÷D±Ã.\¸÷믿ÞÃË¥±]÷ññ¶™4qâÇ•EŠá;~,f8–võ,¾Y Œùo7h@#¯ˆzúçŸF§…þ!zÊN:ñR_jUoGÒîéé$ü Ú ;yò”“8Ô˜‡]7dã CCCC^…]7Vüüüúøãx0–d?Ñrp²V˜ðU*ðÑø……… •Ÿ‡‰^æ+²‰'ž¶¯yf4˜×š%ÙzÆ&¯˜2eÊ8v…ðC111×ããϦðÒ®cñTþ¬Yß¼åííݪ„¥}ûöýcO J=ÿae#|Íš5ë8uÚ4O@½Ó§Oçœ8qâO©·† >¥$†Ï”¥ó÷÷wñòò"|°°°P îÅY¬‚ry÷Mam*j,U‰‹¯¯o`üÙ3#°Ôg`à_ jaW¯Leæ×_+V¼Ôçc®Â€@Æ£C'ÂÏ£åÛ•+W:“z¦i·‚†Ž*Û‰Hû (E:ÝÆŠÜ;vtpvv®OUòÒ¢E‹!/Œ$¤>ƒŸŒ$¿·.¼›cyWrquu­ v½9ÖªEDïúõëù'Ož“z‡QƤž– t(æÌ-3æää»Q_¬¡€DlŒ‹‹{Ì«J¼»4ûÁƒ3«ØÙyh5-OêªF®ÑjdZ–aY-­[Õ’k²eSwœ{6e‚‰Ò¢ “WÃU¹\-ÇïF¦‹Ý6hÐ`´ç E"‘” /w¨n5ò<å_½zuÑ£^‰‰‰QíÚwØ€Ç =‡öÖ„ ÕL“9ÁÏÊÎ~ææê:«  À ·µ—lüÿ‡ Æý¦••UKªøX–^àGnÄ…“ïܹÓW:*è#€žR¤æ)>ÄH«êÖ«÷ ·÷L· Ðæ{ªx¹pëPù"åâÇŸù(ÜqÜN~û6'åÙDdŒÁĉ<·¦½yó¦¦wÿ¿?øÖö¯LäÑÚÙUoÕª•ìÌ™3¹Tñ^}Å©S§²Ã.ÐPltûöí¶ 4ˆ#ÊŠO í;¸@ï‹5bóæÍWy&¯ ÏrÑ:ðáÑÓxàhLàwÇXQú;EË ¸±tÂJ‚¯"&@©6ñÿ“‡¹#Ö`Î ýûöÝ5eÉ¨Ô ;Ö|ölüú³gÏ¢½ .„qã x\Y±bECá3È”¡ôaJ’;ξC'mªV­ÚCøeè|:Ø›»qâ…æÎ²Q…4:µZ|&?蘋¥+›…4\SKYyÌÙa¨èl<ˆ'P‘ÉA™&’Dêcü¹düéTñ!ž0‘Ú€·÷Éüï\½zí~¿þý7 #f C³"ƒjöIpñ⥵~~6må];Žá¯^½úa&ásJ¥r˜+cäÎ@ÍoذÁl„Ž’€ýà3棕7tL¦¿m.GûܹýîÅß­%&/u¥©y€²)bO ~"<Ãõ)ñþþÿøóTñ†ž%çã÷<øÄ÷rõÒ¥?ïüÆ÷E1ð22Ù¡E¤xÄÏm|}7PÜ8s‘Q~\òñ¸²€‡ \»ë"a\×ÐÐÐ.b‘!áîÐaÃþ› D 5DÊð<»ÕûÙ mÛµß„Ž‚Ãøjtg‹ÚÉ›&ôÛôÖ­[o‰}‡‹‹‹¿»—K,ÊXšï(²ó2""â)?P´.û»jÕêÖݺum§eYF³Í@´õX£ÑÊ´,bò,·TÉšVŒxèQ'î¸M1 Q™L Œ\-·²R+PU( óóóµiã»V•Ÿ¯¢Œ'?ò•ÿ9±œµj<Ð1=~ü”1cÇ~¶eóæår¹LC ¾Y¥þÄÉ“[{ö슄 ãœ9D:%\ˆ²ªý•íÛ·/Ìp:¸ÒÎußSŒHËÅTý¼yóêÚØØÔ~8!!áˆBÝùtÍDfðàA#€õ6¯h_\¥R=š={N€^HH­ÚÆ<±çϧˆS;ááiS¦|úŸ Æ÷‘r—ÊSbbbvø÷í·[‡mÅNÑÈ – t[±|ùŒÚuêüÂDþ6sþüùÛ={öÔ;2Z©~|||ݶmÛÞ"„MO¥ü€‡}ÅuŸ`É´åÀ§©h‡¦ zNNîÓO&NœðãÊ•Ï(}Bi¬ ó΄e‰ï!M OL3 sñrËÖ­÷;vê¼2L^T®räÈ‘Ýúonç.Ì&MÛ¢#á[·l]^«V­ú÷w%úÅy_ì;ëׯï'àsäŽcôžžž­„£ðáHuñ¤£wîÜùL€V$„ÛÎ$rf¢™ðᤤ¤P¸EZ—pI<ݪU«– zFFFÊ!A :ôL mÄàÓ¬„Ï_0Bÿ_Mé'j૊ †f‘öS§N¸kݢÈŸùùùÕߺm1™ü¡eË–MqÂ'Þ´QÉÉÉš'Ož<~7xgm„äÎ@âß~ûm[[[ƒSª×®]{J‘iÅh$E4]³fÍ·+ tð£Óôýñ?þxŒ¿€°ëlyüi’ØiÕ¯Ÿx©Ø¶‹ä¨+]l*66îp÷zî$Ô»=Ô¸ÀõÛ»ç+{{ûj‚àÌ[(M´S÷7nÜxd@ääò·Çg-”x=?}úô·ÅT÷Õ«W“ÉÁ@ªƒ³ƒƒCÕŠ=555= pàÊÓ§Ï<Äj— dè,3 ''ÐPâ)JcM=öp÷=¶ @G’îêããSçàˆq ]E¤Ø¦ÿþn¤Ä£._¹rE,3ˆ|êÔ©ŒÚxooï†b 44¨B¤%;ðx¨âô"Ù‚V‘ºç™Z9™–XhXŒCˆ¤O¥Kú{;0Ö$è7®yøÐ0777ÉÅp÷jádŽEvü ±ÏÂ÷4!d6~/ ”Â}9]œSÎÇÛ»N€ž  ÿ|þü…»8 Bæ•QÚÙÒ˜ôÒLš2Âô¸)ªtšìÒ¨Q#¯è¨Èñ…¡âÒ´©O-Á$¤Nœ8‘.öYkkë:FÉØ’šÂ‡ÐQgPµXÅ%Þƒ†U³$è/t`¹¿\¸xÇÏÓ°;%”vl{YW „°í5zd Ð6lè  ÷‘Z &KÕjÕÜi}ŽAƒ ¨ssssDì|m!¹ÓËØ ÄÎCø°ÅL=‡g4h‹rÌ0`]bbâèYD¸µ²P8iÜ%'OUƀǠoÇc®€îu$:ªw5ª˜Ò"lûÉDͦ~šð³2™Ì‹¤>ÂtŒB¡pQ·Ù;‡=:¤_ÕR ƒ¤¯OL¼È«÷t¤çSÎüXJ ôa™FJ½÷(¶é|2ô^ºÉ—#8ØÛ»ŠÄ,÷“%¶`cLÕÓÀ ȺÕ$0\B`…­T*í-ú¯/^¼'²š&²fÎs9ãî¹)³B?Q=mÏ\à)ý}~³G–\.S‹9z/言V¼„æ‡~ùòežð¢‹4\¿ÄC €çªRiÃXô~ýl@'n€ó 0jK,ˆðÝgK¯÷y5Ëymed2¹žÄÇÅÅ"·“`ï$èže½@¾  @xÀËxt¸Rj‘†ÂÀl¬Dw¸ÉŒRi-³èôµ®ú©†îù+»ÓG×ÏÅã©!%þÌ™3»uï±GäÌ"ézþ¼ÜÊ€€¨T*ðÆT½Ô*˜Z(e2FF[t>éaaÑâÃáC½¨âµ|ý›"Œmº’p¾hb˜XºTU’Ðaiç/ƒæ€OHHïÒµÛ6?Ý, snšÒšöð*,QS˜òåè¶&K²wtž±«ñ`Y]LLçååå ïc49ž.½Á†tyà‹òíÖÔGÙÓ±Sçí˜Ä Ù»§9@/^&Ùit5—…AˆAçïnER;ÁÛ»I0Ê Iéßߦ—ú£”R[rŒÎ­!xr!G³³m»öq?ÈWKƒn*^rcŽ*_€½Ë…öU•¯Ò–›½ëˆ{Ï'@—ÅÄü>¬M›Ö}Ñgq"Á*ÄëíÔ¥Y£wÁK‹.]®ýûZÔËñ«uÈÈQqTñ–rè=Í :ºVEàtÿRZ™ |‘í‚AÎ<˜A;u Ùò‚~QtK³"*òðÐN;¾Ço‹m?)ñfŽË˜Ú%ZL_ðTN Z t¬Ö ΟðϲìK²ƒŒ°0ÈgÆ•Bw¶ °@kFÐyI·=tð@p÷îÝß#ŸÁÀó‡HÐi)_ÛÐ÷¶Èµ.bW¤Ú’öÜ’ cà…Þ‹nË>[ÊÆsÀf”<—ÜI<ø¹f”ô*""†õìÙÓà”-NFÞóRÔQiSÌRb›ÞË0]Î4žk-‰ŽA÷²èÀÞ³ €wpp°ÃT1à‹¦Áꎛ››¥/†5+++¥ “D®JDDøÐÞ½{uµcºôaæ8…c ×KEé_sîŒGëäî–•ŒŒŒdÊðD´†b/¼žª×[KÎÍÍ}"|¨jÕªŽ”Èm‹é)egïE’Ô§wïÎ’fXË2" Wd Gô&‚±;b)ç'@·({OMM%/:À‚ê"ü,˜Ë$’U½¤ø±ð!;;;tò«y¾JMII.èùú ïêÓGtB!‰…ÌLs‚NS”áíZ¤¤ó sµQ€ŽÊ“'O^°ÅÉ1z]nkkk°º§V«ÿ‘RõðiiiIb?Ò©S'·â™Å¢ë7©ë7nÜ3Ö0´s¦ÿ€’@ïÓ¹DâÍJNT–2¥†©Ú±{é@­æ*:Z] £òçåËIºkP‹·ÐuéÒÅY‚>cõEÀ_»ví/±Û´iãÎuœeñ±ÔÇß5¢†èë/^,ŠÈé±wN½›ºˆÄ3¾ÁˆØ¹rMâ Ä®<'¥UçÆ{ óô¦®§—·„íÞ}Ÿ¸ý’3ÛmÛ¶u—Âë¤ÛÎP‚•¦eË–ÝBê ôññ©JtݳJï KVi°„vÃ\˜xñ "gÅD®dõ^¢^ô+×èÑeVÿ" ü¤mç·Åà#oïãã] £7eçŒ9ÊË—/“sî-Û´iS±=ê+VÜ$¥È@âoݺ•ÏàD†··w bÀ9;²^%''ëitštðûï/9þü}‘0¬í¾}¿ 1FäJž!ÚPtI1¥(SF•óöÛ.¼þœW÷h(›7ן/iœ9Ëä¤;”á¡R-hOû~kݺuùÆ8œÔ§§§_>ìååå…;86W®³ó,Êqÿ :E:<8xöéÓgî .ôÐÐmýúöíV LÚYò>W¾’·:šzU—‘ý¬Ô½ò¼†aÚúú:EEF~ Lš`érúôék,Ñì}É<<<ª ? Zù%‘Aïtè£G.¬æ0 ä©ë8Ë«{jÇŽ(㺠ùɘ±}sìU¼EªHÒ·èAC†ô.'ëbHu«P(ŠT-V»ä±l®´‘€Í =†ÿÏ©ƒîÖ­«ãÁƒ&ß\¡ùü)^¾lùU|¥9<;|øpš¦ BÙ999g…ÖËÀÆ£zôèQÑD¹@Æêò³]çÖ±ô–-›ÑÙª³'Múxÿþý¨â3Z,6Û·‡2¤O9ÂéBu˱êØS§&„„Œh€É•#®vøD\Ÿ–UŠ/Hñ®IN{÷ì™íèèè^Ñ‘¤Ç߸}ûV ¨¥õ÷÷¯+öù»wïÆQ‚+Éå"|F3wîÜû3fÌx(<*íëë[¯È¾¢ûÓiZ†\­êÕkLÕÝõÊàýo4ß ›;v S—M&íçóÀ’ÀË•1+ÜBƒ/ëÔ¹ËN RY–€’Øæݹ@–-`)VÍjQV­5Œ°=[0²âµö AƒÜ„Ip<ÿ(!í”Qr‡$äÊ•+1b- y‡Y*YÔq]£ÍÊX"Åyxøþ!z€™Ã¦$¹³)((à&:P¸k×ÎÿvèÐþ2uÅqsJÿ*oÒÀ—…\ùÅ" ãB|ÿ}öSBò¤âC¥%ŸÕç+™Ô<–Íeæ‚/ÍiÊçÀg±°êî«WÀ5Jô8xÖ‘bkUëñ|£Ç޶$]˜©{÷îï€ú9.‚ŽU³¬D½j(.S­×f8Ÿ!Š—ó’e ’W´áÀÉÉÉí·½{¿@+ñ;™À¦ç*ߊpÉ”„äŠyÆxXà¨,ꌔtMñÚ«æÆUg>îžzèd{i´Ç¯K—.MÄf@POˆ…&‰F¨°åº7zÐ&öãǯ/dè\)–²>ñÇñ‘zˆKФ^-¸æ صKøþ}Ÿ¶nÝ ÍþªXò’J&c²!B®Îøsèó\fJ佊TOüøsÕð3‘¡[+¯aœ bJ^–Œ´('8eűªxo;iÒ¤Z@2EÔüS§NR"+ÓŒ±Ù»Wlô?üðæ„Ä †Úƒ6  ªuèÐaL¬’q&E«Ñì4quuuŽÿ¤U«– ð]Ëgæâî.¼êXr-\kï…“€œe©Õ‰ Ä›¼e‹Åà‚„³HÂY$XdÌBÇBƒñ[ÄÙFIlIÛsW¤îÁ/L0`À]aZÓ-ZÔ÷óós‹‹+À «@Ë«ccOå¡ Ž]u {4º !¬øýnèhñˆˆ èÀebb"©%r±ºgBC·½×­k×HkhÔj¹.K—F†6} Š¯£‰»è²èpãÑÜYzä 12`òŒŒÛ“T7ª(˰y]e ¶:¥Aƒñ¤å=´xf߬Y³wD¢u7áóñ”Ä3¹›Ã¥¹sçÎî¦M›ÎÔk.´væÌ™-Áo|ÁÍ>–EÉyPê1êàÁƒa0a¦Xt ƒ"9®¾ãë^^$I!· $ddB\ll‹6mZ¢^ƒ㺖0WÖx2kçÌ™ÓBl~eeem¢Œl@bJ¾ð믿ޅ6` ?Ô£GÆPœê^1HajjÚ? ñtI·|¹#ð#"Ɔz‹°÷<+Wøuì¸d¬ì §¦¦Þ7nÜ%ªx‹9'°Mš4±îܹó»"‘½—¡¡¡[K¼?™–””´Gø °}ùòåËÛñ®€`‹~A~¾lÅŠå+(xYâ'P ýàˆÿ ó„í¨@.Çkïí:vìØï•øE‹í×Õ–v¤½´+W®l &A.¢Ý ö˜ÒÏX͉®.œ˜´ç÷ZI•°Ï”1!ŠT°bÅŠ¤G… ?(“ɘU«Vuæ];–c¬5 èÞš›››^Yèà±~Ìðy©G}-è×@Xtô‘• t4~Æ ÛÏ"%`òkÖ¬é"v]+<³©OŸ>©N3%èÑ¢\o?üðÃzƒ‹ì[µjUï£>ª«SA,çÖ¡ Ã7òÖþôÓúÊ4ü1~mBêe¸Ÿy¢¢£OV–ö.[¾|Ó_ÿÍRú—<°ãÇ÷cò0î*ðÛ¿§LH±Ê”;fI©¿wïÞ ÔÍÙÙÙGòlu¡\ÖêË/¿¼”U‰Áw T>šà¹aQQ¯ü3gÎDÏ3ç?žü…‹‹ µpáBÑåm`ò?‚§õ˜2!KHIÇÈoùcÆŒY$#YÌuÚ°aC{Lø4Ž—ø_ øÀÈÓ`,ÊÊÎF¦“·íœŠÁ«Þ·o_ÑÓ \ß,X° ‹21cˆ)õÒwûùùý–––vÊ€^CÐËËË˾(¨ÃI?k{*6súçŸÿO­V«*øð¿âÔ~aa¡êÓO?]yîÜ95ULè8·³V­Z °û~4¾b‹,ùùùG<<<¨RäÔeL]OêQä ðØáJ°óv½m*1è<øŠu¿¬ûgÉ’%ËÄ®Å,Ùi£)ÊBY­DÀWꃸ»"—ï¾ûnÕÆSøqãMõ¡C‡z;:::ˆºì“'O~F•2?©Gõ¤ÈÅÝ‹/.û r—6oÞÜ`]'XüÙ³ç\[½zõŠÒ‚O›9Ue©%? pWttô K‚¾|ùŠUóæÍ»A¯BzÛ·ooíãã#z{rròŒ^½z= J™AÛTUoÄ¿M›6Û_¼x!zõÈ‘#}¿úê«FXUÙAgìxð§N–XZðñ5_Êb¯ À·€Ÿ; p÷áÇ[tð˜V}ñÅŒ¿uãT´gÙuíìÙ³ë‚/ßQìÙ¼¼¼ýÕ«WßZ–±)Ä U~Þĉ¿û"zä ˆFOhp-¬²ìÑ–!üÿAA6ͤFê2ER¢)Â->ÃKþÀAƒÃöìÙc6÷qžùóç/›1ƒß-lË–BBBÜçÎÛOìY0µÀ“šD•1\i³JðàsRƒðÔÐÇ0k ”Ëå²M›6€ªg0>RÿÖ³f;öÙgSç™Âö1ð"— ™ÿœdI’?"ddøž½{Ë >ê÷øñã¿à ódŽÜñ×_}_&“ÉEìzÞåË—‡Ož<9•*ã% L)A7PùcÇŽ½.ÞWb(•JÅÞ½{öìÙ³†@òAýk•?ÿüº¼÷kpEnûa|Í—0­›ËßÂÀæ£ßÏ1"ä·ß~ÛWæU=×xï½÷æ‘KH: ɲàÃ;€PYC‘ðó'¶lÙòÏò˜¿²H¼^IbÛ¶mÃîܹ³\ìtÄFi–||ÎöÛÄŽËiذÑéС=b†7;(J–8póñã„ûŽ«W¯žjÑ¢Åì™3gÞÁýu²÷Y³fÕݲe‹¤zØ &s ¥G™ãå‘xþµ(–ÿäÉ“¬fÍšMuô‡ØCˆð-Z´¨ÏÖ­[Û˜øŒ9ŸuduZÀöÊ•+…à³þ¤ç ÎöÓ ÚÇ€©ñ+§eär+‹Šn÷îþé=ztw)Örl.´% jF¯Þ½7œ>}Ú`óIjjê?_|ñÅB“Ð[·nÉP?QR*"P$CÄuÇŽ­À  Fäpd.º{÷îcΜ9#<Rf‰//-Ë £d¬s ¨Ê~R¢ ÕG’’’øìWܽ®@Øð]ôT®µµR¶»=HKËZµkEë./fжènú„øøi@Àü+*¤Š6’¢ƒ¡øŒ`>¢×ºC$º°'Ož…v£ÏÞ?nܸ à²*ñ>~•ß(I{yyÉ>Ü&ú[R¿‰$@ œ@E™ñRsøC7Q£Îøv/^\R­ZµaR¦§§gúé§GÀ<¤ŠsÂêN’À u„Oš»ªÝZ­»À˜V&&^˜Ö´iÓßG§‚ÑQhóc”Q Â'[Щ"›í;Ô¢ x€ q²~øaµ~øÁ_, KÚt`ÿSô|ÊÌ7q˜Ë °ýéõëן.i3 ñ»náY˜¼ çouÎÑUдîžzt»¢îÜ+-»ü矟z{{P\@ ?a¶Ðm/ðQeþ ƒ-^•$o‡Ðz¶Ü·_¿~­Å\¡Xf1¥wçŽù‚V–HN¬—Ú{åÊ•çúöí›T£F®ø^ya8–nÔ¨Q þèlh‰ªøh²Q¹³b0Tü™1y½zõ´uëÖu¯ÁMì\¸¥Š•••CÛ¶¾õ—/[v–Õ‘TÄΈjOo…V`.Å‚êGN¾ûî»oIŽH,p¥ASþb)ÐÍ)ñb’O& ²†YÞ|èСë´zû‚ÄÄÄ»“&MŠ7ðøÃ„º«=iº€¸æ”i7mÚ´mZ·næééù޽½½ÙïÊA¹~ž?þ70ô‹Ð—ݰ°ø¨²’Ò?ÚDÐäo×®ýš5k:6oÞÜè=}( ýöõõý“²ð;–È GÞ\©—öüÔª?þøãRp‘üKmLL̵©S§&ܼy3‹ˆèUÝUæü4¾ö”Ëüä0løð>ÞÞµ«W¯^ Ý–¶´L:{Î}ùòe ÊåƒÊµk×ïA[ìݻ紋3e8)„Xþ̧}7nlýmÓµk×fhcj Ü!|íÚµ“g̘‘Béß—KQJÄKY|abn €Ñ‡)› ®L•1Ô¿ÿþûõ… ^w)p õ*M㋎ɻ^iòª4nBXY)(¥’QZ+iÀ¡(ì—¯R¡äÍè![ Ë Ëè’8²z§cqî13Äÿ×o???‡Ù³g7ïÖ­›Ø¾wjÏÕþ%hª­" QÝ’À‹Ofy¶0ë}òÉ'‹œœœº”H`ÄÁößÝ´iÓµ_~ùåÌ <žE祟¼Q[BxÓà(4˃Öåõ“Sú¦ø×¢„ ß &x=Úlx#¼$‰G92uàÀ‹‚nià¥ì>™6ÌúÂ… ïƒô„É¤Ë f;vìop§n8pà9exi€Ø«Ø}ñbí#ÛÈÞ‹‡gÜGÕ¤»!LbSúÚåé£GfשSg7epvÅÜ¡WQY ¥¤Ÿ›½zõrZ·nÝdPwƒú·6õKSSS3ÞŒŒügÏž=Á$ádÁE¿WƒŠµM˜=Ó ?Ž»»»<((ÈÃßß¿6Ê „Bº&»;,«‚‰»jîܹËW¯^ý²¢¥üU/%ýz`Þ¼y^àòLWf8¨JëÒ|±V«eAŠ€Œ]{rùòåçÎK‰MƒÉ¡LÖÈ%(P­:vìè »5kÖÌÝÛÛÛ£fÍšUQê·Rù·,›„qËáÇ—Á}$x…ß”ùªò¾S"ªµÈÌŸ?ßüú (êl¸\Ù"³³³sQmtM*º8UtØW5º­ ]Üccc#G¯ ª•èvÜ-ËÚÙÙ•+1LÆ, øêGúäSRýë‹ÔՈ飅 ·ààà·oßž ¡üº¯M)((¸ùôéÓ¯fΜY“Ò¿=K˜ëÿu¡EÜ>þª>MIÕèèèþÉÉÉÛѧVF°°!ßKbbbOª8Û– ÉâÀK3È \kÕªå7ôÙ³gAUßÅ’}7--mÝÕ«W6iÒÄ…’̪Yù§+ér³ ®_¿¾®ŸŸ_{°ÉmÀ&·P((n‰55}ÌÎ`æñ—.]:=hРû»-å6²•u©J<ŒMZà_3íÚµSΚ5ëúõë7¶··¯ÄÍ &ƒ§\.w¢è‚¢…PÅ.ëÉ‚š *;jjaaá#•Jõ0''矇ÞX¸pá_111*">Àš#`_‡Á¥^ÃI@Q† Åþ¦(éûk„S"`ŠýM½n`¿ŽÀ›R¯bï¥ú,Ž•xOI¨oöuÄ×™–æoòߥcKù7õø_¿þ•Á2sã›òÿ¨0o†à ðoÊàß”{ù?* $±KˆIEND®B`‚camera-app-2.9.1+14.04.20140331/assets/zoom_bar@18.png0000644000015201777760000000166012316315040022212 0ustar pbusernogroup00000000000000‰PNG  IHDRd?itEXtSoftwareAdobe ImageReadyqÉe<$iTXtXML:com.adobe.xmp @‹hœ"IDATxÚìÐ1 µçÙa7D`“ TNµ` 1ÉCz IEND®B`‚camera-app-2.9.1+14.04.20140331/assets/zoom_minus@18.png0000644000015201777760000000237212316315040022602 0ustar pbusernogroup00000000000000‰PNG  IHDR//s'“¬tEXtSoftwareAdobe ImageReadyqÉe<$iTXtXML:com.adobe.xmp 4«±lIDATxÚì™ jÃ0 …#'íºö(ƒÝÿ»Ë¶ô/š2£$ν–>Ã#ŤêçgEV(1sõ¬ÃUO<xÀð€<àøõ£±&‰hì;”‘gðåÂzïhƒ’N I}æEÎ@“¤ ,f-8‹ºœ—ÀS]GW·!|'ºG×Ñ]Hq¾–ûvJµZm~]•n27ÛyíxÏÞë ´—E8U±hAªÇ{Ø‹W+¢(•L÷§Ò&À¿y½N¢w™kV¸\ï>{ýz}K<HŸÙðµ¸|ðåê+wíöeúCvá2eŒK¨2Nå|‰±3v”^¦=`#/¯…˜B¥YU*õCÓl}>~x`[ù½Ñ‡5>'UÖ~2—ʳá~2¼~Ssa!¥©.ªõ³NXV§\pè?ÚƒEi7LN)јMv—MbàÊØ¾-qµeKl¤Ôà[¾Œ˜')þ<àxÀð€Œñ'Àa@¡%@I$IEND®B`‚camera-app-2.9.1+14.04.20140331/CrossFadingButton.qml0000644000015201777760000000316712316315040022236 0ustar pbusernogroup00000000000000/* * Copyright (C) 2012 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 import "constants.js" as Const AbstractButton { id: button property string iconSource property Image __active: icon1 property Image __inactive: icon2 onIconSourceChanged: { if (__active && __inactive) { __inactive.source = iconSource __active.opacity = 0.0 __inactive.opacity = 1.0 var swap = __active __active = __inactive __inactive = swap } else icon1.source = iconSource } Image { id: icon1 anchors.fill: parent Behavior on opacity { NumberAnimation { duration: Const.iconFadeDuration; easing.type: Easing.InOutQuad } } } Image { id: icon2 anchors.fill: parent opacity: 0.0 Behavior on opacity { NumberAnimation { duration: Const.iconFadeDuration; easing.type: Easing.InOutQuad } } } } camera-app-2.9.1+14.04.20140331/cameraapplication.h0000644000015201777760000000221512316315040021743 0ustar pbusernogroup00000000000000/* * Copyright (C) 2012 Canonical, Ltd. * * Authors: * Ugo Riboni * * 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 . */ #ifndef CAMERAAPPLICATION_H #define CAMERAAPPLICATION_H #include #include class QDate; class CameraApplication : public QGuiApplication { Q_OBJECT Q_PROPERTY(bool desktopMode READ isDesktopMode CONSTANT) public: CameraApplication(int &argc, char **argv); virtual ~CameraApplication(); bool setup(); bool isDesktopMode() const; private: QScopedPointer m_view; }; #endif // CAMERAAPPLICATION_H camera-app-2.9.1+14.04.20140331/Toolbar.qml0000644000015201777760000001720612316315040020241 0ustar pbusernogroup00000000000000/* * Copyright 2012 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 QtMultimedia 5.0 import Ubuntu.Components 0.1 Item { id: toolbar property Camera camera property int iconsRotation signal recordClicked() signal zoomClicked() Behavior on opacity { NumberAnimation { duration: 500 } } height: middle.height property int iconWidth: units.gu(6) property int iconHeight: units.gu(5) property bool canCapture function shoot() { var orientation = 90 if (device.isLandscape) { if (device.naturalOrientation === "portrait") { orientation = 180 } else { orientation = 0 } } if (device.isInverted) orientation += 180 if (camera.captureMode == Camera.CaptureVideo) { if (camera.videoRecorder.recorderState == CameraRecorder.StoppedState) { camera.videoRecorder.setMetadata("Orientation", orientation) camera.videoRecorder.record() } else { camera.videoRecorder.stop() // TODO: there's no event to tell us that the video has been successfully recorder or failed, // and no preview to slide off anyway. Figure out what to do in this case. } } else { camera.imageCapture.setMetadata("Orientation", orientation) camera.imageCapture.capture() } } function switchCamera() { camera.advanced.activeCameraIndex = (camera.advanced.activeCameraIndex === 0) ? 1 : 0 } function switchFlashMode() { if (flashButton.torchMode) { camera.flash.mode = (flashButton.flashState == "on") ? Camera.FlashOff : Camera.FlashVideoLight; } else { camera.flash.mode = (flashButton.flashState == "off") ? Camera.FlashOn : ((flashButton.flashState == "on") ? Camera.FlashAuto : Camera.FlashOff); } } function changeRecordMode() { if (camera.captureMode == Camera.CaptureVideo) camera.videoRecorder.stop() camera.captureMode = (camera.captureMode == Camera.CaptureVideo) ? Camera.CaptureStillImage : Camera.CaptureVideo } BorderImage { id: leftBackground anchors.left: parent.left anchors.top: parent.top anchors.bottom: parent.bottom anchors.right: middle.left anchors.topMargin: units.dp(2) anchors.bottomMargin: units.dp(2) source: "assets/toolbar-left.sci" property int iconSpacing: (width - toolbar.iconWidth * children.length) / 3 FlashButton { id: flashButton anchors.verticalCenter: parent.verticalCenter anchors.left: parent.left anchors.leftMargin: parent.iconSpacing height: toolbar.iconHeight width: toolbar.iconWidth visible: !application.desktopMode enabled: toolbar.opacity > 0.0 rotation: iconsRotation Connections { target: camera.advanced onActiveCameraIndexChanged: { if (camera.advanced.activeCameraIndex == 1) { camera.flash.mode = Camera.FlashOff; flashButton.previousFlashMode = Camera.FlashOff; } } } torchMode: camera.captureMode == Camera.CaptureVideo flashState: { switch (camera.flash.mode) { case Camera.FlashAuto: return "auto"; case Camera.FlashOn: case Camera.FlashVideoLight: return "on"; case Camera.FlashOff: default: return "off" }} onClicked: toolbar.switchFlashMode() property variant previousFlashMode: Camera.FlashOff onTorchModeChanged: { var previous = camera.flash.mode; camera.flash.mode = previousFlashMode; previousFlashMode = previous; } } FadingButton { id: recordModeButton objectName: "recordModeButton" anchors.verticalCenter: parent.verticalCenter anchors.left: flashButton.right anchors.leftMargin: parent.iconSpacing rotation: iconsRotation // Disabled the video recording button for V1.0 since the feature is broken, leave it enabled for desktopMode enabled: application.desktopMode opacity: 0.5 width: toolbar.iconWidth height: toolbar.iconHeight iconSource: camera.captureMode == Camera.CaptureVideo ? "assets/record_picture.png" : "assets/record_video.png" onClicked: toolbar.changeRecordMode() } } BorderImage { id: middle anchors.top: parent.top anchors.bottom: parent.bottom anchors.horizontalCenter: parent.horizontalCenter height: shootButton.height + units.gu(1) source: "assets/toolbar-middle.sci" ShootButton { id: shootButton anchors.centerIn: parent iconWidth: units.gu(8) iconHeight: units.gu(8) state: (camera.captureMode == Camera.CaptureVideo) ? ((camera.videoRecorder.recorderState == CameraRecorder.StoppedState) ? "record_off" : "record_on") : "camera" onClicked: toolbar.shoot() enabled: toolbar.canCapture opacity: enabled ? 1.0 : 0.5 } } BorderImage { id: rightBackground anchors.right: parent.right anchors.top: parent.top anchors.bottom: parent.bottom anchors.left: middle.right anchors.topMargin: units.dp(2) anchors.bottomMargin: units.dp(2) source: "assets/toolbar-right.sci" property int iconSpacing: (width - toolbar.iconWidth * children.length) / 3 CameraToolbarButton { id: swapButton objectName: "swapButton" anchors.verticalCenter: parent.verticalCenter anchors.right: galleryButton.left anchors.rightMargin: parent.iconSpacing rotation: iconsRotation visible: !application.desktopMode enabled: toolbar.opacity > 0.0 iconWidth: toolbar.iconWidth iconHeight: toolbar.iconHeight iconSource: "assets/swap_camera.png" onClicked: toolbar.switchCamera() } CameraToolbarButton { id: galleryButton objectName: "galleryButton" anchors.verticalCenter: parent.verticalCenter anchors.right: parent.right anchors.rightMargin: parent.iconSpacing rotation: iconsRotation visible: !application.desktopMode enabled: toolbar.opacity > 0.0 iconWidth: toolbar.iconWidth iconHeight: toolbar.iconHeight iconSource: "assets/gallery.png" onClicked: Qt.openUrlExternally("appid://com.ubuntu.gallery/gallery/current-user-version") } } } camera-app-2.9.1+14.04.20140331/COPYING0000644000015201777760000010451312316315040017155 0ustar pbusernogroup00000000000000 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 . camera-app-2.9.1+14.04.20140331/README.click0000644000015201777760000000056612316315040020071 0ustar pbusernogroup00000000000000Building for click ================== To build for a click package configure cmake as: mkdir build cd build cmake [path_to_this_location] -DINSTALL_TESTS=off -DCLICK_MODE=on \ -DBZR_REVNO=$(cd [path_to_this_location]; bzr revno) make DESTDIR=package install click build package This package can be installed by running: pkcon install-local com.ubuntu.camera_*.click camera-app-2.9.1+14.04.20140331/FocusRing.qml0000644000015201777760000000222612316315040020532 0ustar pbusernogroup00000000000000/* * Copyright (C) 2012 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 Image { property var center source: "assets/focus_ring.png" Behavior on opacity { NumberAnimation { duration: 500 } } onCenterChanged: { x = center.x - focusRing.width * 0.5 y = center.y - focusRing.height * 0.5 opacity = 1.0 restartTimeout() } function restartTimeout() { focusRingTimeout.restart() } Timer { id: focusRingTimeout interval: 2000 onTriggered: focusRing.opacity = 0.0 } } camera-app-2.9.1+14.04.20140331/CameraApp/0000755000015201777760000000000012316315300017746 5ustar pbusernogroup00000000000000camera-app-2.9.1+14.04.20140331/CameraApp/advancedcamerasettings.h0000644000015201777760000000437512316315040024630 0ustar pbusernogroup00000000000000/* * Copyright (C) 2012 Canonical, Ltd. * * Authors: * Guenter Schwann * * 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 . */ #ifndef ADVANCEDCAMERASETTINGS_H #define ADVANCEDCAMERASETTINGS_H #include #include #include #include #include class QCameraControl; class AdvancedCameraSettings : public QObject { Q_OBJECT Q_PROPERTY (QObject* camera READ camera WRITE setCamera NOTIFY cameraChanged) Q_PROPERTY (int activeCameraIndex READ activeCameraIndex WRITE setActiveCameraIndex NOTIFY activeCameraIndexChanged) Q_PROPERTY (QSize resolution READ resolution NOTIFY resolutionChanged) public: explicit AdvancedCameraSettings(QObject *parent = 0); QObject* camera() const; int activeCameraIndex() const; void setCamera(QObject* camera); void setActiveCameraIndex(int index); QSize resolution() const; Q_SIGNALS: void cameraChanged(); void activeCameraIndexChanged(); void resolutionChanged(); private: QVideoDeviceSelectorControl* selectorFromCamera(QCamera *camera) const; QCameraViewfinderSettingsControl* viewfinderFromCamera(QCamera *camera) const; QCameraControl *camcontrolFromCamera(QCamera *camera) const; QCamera* cameraFromCameraObject(QObject* cameraObject) const; QMediaControl* mediaControlFromCamera(QCamera *camera, const char* iid) const; QObject* m_cameraObject; QCamera* m_camera; QVideoDeviceSelectorControl* m_deviceSelector; int m_activeCameraIndex; QCameraViewfinderSettingsControl* m_viewFinderControl; }; #endif // ADVANCEDCAMERASETTINGS_H camera-app-2.9.1+14.04.20140331/CameraApp/advancedcamerasettings.cpp0000644000015201777760000001270712316315040025161 0ustar pbusernogroup00000000000000/* * Copyright (C) 2012 Canonical, Ltd. * * Authors: * Guenter Schwann * * 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 . */ #include "advancedcamerasettings.h" #include #include #include #include #include AdvancedCameraSettings::AdvancedCameraSettings(QObject *parent) : QObject(parent), m_activeCameraIndex(0), m_cameraObject(0), m_camera(0), m_deviceSelector(0), m_viewFinderControl(0) { } QCamera* AdvancedCameraSettings::cameraFromCameraObject(QObject* cameraObject) const { QVariant cameraVariant = cameraObject->property("mediaObject"); if (!cameraVariant.isValid()) { qWarning() << "No valid mediaObject"; return 0; } QCamera *camera = qvariant_cast(cameraVariant); if (camera == 0) { qWarning() << "No valid camera passed"; return 0; } return camera; } QMediaControl* AdvancedCameraSettings::mediaControlFromCamera(QCamera *camera, const char* iid) const { if (camera == 0) { return 0; } QMediaService *service = camera->service(); if (service == 0) { qWarning() << "Camera has no Mediaservice"; return 0; } QMediaControl *control = service->requestControl(iid); if (control == 0) { qWarning() << "No media control support for" << iid; return 0; } } QVideoDeviceSelectorControl* AdvancedCameraSettings::selectorFromCamera(QCamera *camera) const { QMediaControl *control = mediaControlFromCamera(camera, QVideoDeviceSelectorControl_iid); if (control == 0) { return 0; } QVideoDeviceSelectorControl *selector = qobject_cast(control); if (selector == 0) { qWarning() << "No video device selector support"; return 0; } return selector; } QCameraViewfinderSettingsControl* AdvancedCameraSettings::viewfinderFromCamera(QCamera *camera) const { QMediaControl *control = mediaControlFromCamera(camera, QCameraViewfinderSettingsControl_iid); if (control == 0) { return 0; } QCameraViewfinderSettingsControl *selector = qobject_cast(control); if (selector == 0) { qWarning() << "No viewfinder settings support"; return 0; } return selector; } QCameraControl *AdvancedCameraSettings::camcontrolFromCamera(QCamera *camera) const { QMediaControl *control = mediaControlFromCamera(camera, QCameraControl_iid); if (control == 0) { return 0; } QCameraControl *camControl = qobject_cast(control); if (camControl == 0) { qWarning() << "No viewfinder settings support"; return 0; } return camControl; } QObject* AdvancedCameraSettings::camera() const { return m_cameraObject; } int AdvancedCameraSettings::activeCameraIndex() const { return m_activeCameraIndex; } void AdvancedCameraSettings::setCamera(QObject *cameraObject) { if (cameraObject != m_cameraObject) { m_cameraObject = cameraObject; if (m_camera != 0) { this->disconnect(m_camera, SIGNAL(stateChanged(QCamera::State))); } QCamera* camera = cameraFromCameraObject(cameraObject); m_camera = camera; if (m_camera != 0) { this->connect(m_camera, SIGNAL(stateChanged(QCamera::State)), SIGNAL(resolutionChanged())); } QVideoDeviceSelectorControl* selector = selectorFromCamera(m_camera); m_deviceSelector = selector; if (selector) { m_deviceSelector->setSelectedDevice(m_activeCameraIndex); QCameraViewfinderSettingsControl* viewfinder = viewfinderFromCamera(m_camera); if (viewfinder) { m_viewFinderControl = viewfinder; resolutionChanged(); } QCameraControl* cameraControl = camcontrolFromCamera(m_camera); if (cameraControl) { QObject::connect(cameraControl, SIGNAL(captureModeChanged(QCamera::CaptureModes)), this, SIGNAL(resolutionChanged())); } } Q_EMIT cameraChanged(); } } void AdvancedCameraSettings::setActiveCameraIndex(int index) { if (index != m_activeCameraIndex) { m_activeCameraIndex = index; if (m_deviceSelector) { m_deviceSelector->setSelectedDevice(m_activeCameraIndex); } Q_EMIT activeCameraIndexChanged(); Q_EMIT resolutionChanged(); } } QSize AdvancedCameraSettings::resolution() const { if (m_viewFinderControl != 0) { QVariant result = m_viewFinderControl->viewfinderParameter(QCameraViewfinderSettingsControl::Resolution); if (result.isValid()) { return result.toSize(); } } return QSize(); } camera-app-2.9.1+14.04.20140331/CameraApp/CMakeLists.txt0000644000015201777760000000201212316315040022502 0ustar pbusernogroup00000000000000# QML plugin set(plugin_SRCS components.cpp advancedcamerasettings.cpp ) set(plugin_HDRS components.h advancedcamerasettings.h ) add_library(camera-qml SHARED ${plugin_SRCS} ${plugin_HDRS}) target_link_libraries(camera-qml ${Qt5Qml_LIBRARIES} ${Qt5Quick_LIBRARIES} ${Qt5Multimedia_LIBRARIES} ) # Qt5's cmake does not export QT_IMPORTS_DIR, lets query qmake on our own for now if(NOT CLICK_MODE) get_target_property(QMAKE_EXECUTABLE Qt5::qmake LOCATION) function(QUERY_QMAKE VAR RESULT) exec_program(${QMAKE_EXECUTABLE} ARGS "-query ${VAR}" RETURN_VALUE return_code OUTPUT_VARIABLE output ) if(NOT return_code) file(TO_CMAKE_PATH "${output}" output) set(${RESULT} ${output} PARENT_SCOPE) endif(NOT return_code) endfunction(QUERY_QMAKE) query_qmake(QT_INSTALL_QML QT_IMPORTS_DIR) set(PLUGIN_DIR ${QT_IMPORTS_DIR}/CameraApp) endif(NOT CLICK_MODE) install(TARGETS camera-qml DESTINATION ${PLUGIN_DIR}) install(FILES qmldir DESTINATION ${PLUGIN_DIR}) camera-app-2.9.1+14.04.20140331/CameraApp/components.cpp0000644000015201777760000000201212316315040022633 0ustar pbusernogroup00000000000000/* * Copyright (C) 2012 Canonical, Ltd. * * Authors: * Ugo Riboni * * 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 . */ #include #include "components.h" #include "advancedcamerasettings.h" void Components::registerTypes(const char *uri) { qmlRegisterType(uri, 0, 1, "AdvancedCameraSettings"); } void Components::initializeEngine(QQmlEngine *engine, const char *uri) { QQmlExtensionPlugin::initializeEngine(engine, uri); } camera-app-2.9.1+14.04.20140331/CameraApp/qmldir0000644000015201777760000000002212316315040021154 0ustar pbusernogroup00000000000000plugin camera-qml camera-app-2.9.1+14.04.20140331/CameraApp/components.h0000644000015201777760000000204112316315040022302 0ustar pbusernogroup00000000000000/* * Copyright (C) 2012 Canonical, Ltd. * * Authors: * Ugo Riboni * * 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 . */ #ifndef COMPONENTS_H #define COMPONENTS_H #include #include class Components : public QQmlExtensionPlugin { Q_OBJECT Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface") public: void registerTypes(const char *uri); void initializeEngine(QQmlEngine *engine, const char *uri); }; #endif // COMPONENTS_H