pax_global_header00006660000000000000000000000064137567606450014535gustar00rootroot0000000000000052 comment=68f1d1b4bcdd3ea6d9ab1b3769fda03bafa1dd44 inspectrum-0.2.3/000077500000000000000000000000001375676064500137305ustar00rootroot00000000000000inspectrum-0.2.3/.gitignore000066400000000000000000000000271375676064500157170ustar00rootroot00000000000000# Build outputs build/ inspectrum-0.2.3/.travis.yml000066400000000000000000000017311375676064500160430ustar00rootroot00000000000000language: c cache: apt sudo: required dist: bionic os: - linux - osx arch: - amd64 - ppc64le compiler: - gcc - clang matrix: exclude: # /usr/bin/gcc on OS X is clang, so it's not meaningful to build against both. - os: osx compiler: gcc - os: osx arch: ppc64le addons: apt: sources: # - ubuntu-sdk-team packages: - qtbase5-dev - qtdeclarative5-dev - libfftw3-dev - libliquid-dev before_install: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi # cmake and pkg-config are already installed. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install qt5 fftw liquid-dsp; fi script: - mkdir build - cd build - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export CMAKE_PREFIX_PATH=$(brew --prefix qt5)/lib/cmake; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then DYLIB_SUFFIX=dylib; else DYLIB_SUFFIX=so; fi - CFLAGS="-g -Wall -Wextra -Werror -Wno-zero-length-array" cmake .. - make inspectrum-0.2.3/CMakeLists.txt000066400000000000000000000043101375676064500164660ustar00rootroot00000000000000cmake_minimum_required(VERSION 2.8.11) project(inspectrum CXX) enable_testing() set(CMAKE_AUTOMOC ON) set(CMAKE_INCLUDE_CURRENT_DIR ON) list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules) # For OSX - don't clear RPATH on install set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) if (MSVC) #force std::complex<> typedefs in liquiddsp add_definitions(-D_LIBCPP_COMPLEX) #enable math definitions in math.h add_definitions(-D_USE_MATH_DEFINES) #build a graphical application without the console option(BUILD_WIN32 "Build win32 app, false for console" TRUE) if (BUILD_WIN32) set(EXE_ARGS WIN32) set(CMAKE_EXE_LINKER_FLAGS "/entry:mainCRTStartup ${CMAKE_EXE_LINKER_FLAGS}") endif (BUILD_WIN32) endif (MSVC) if (NOT CMAKE_CXX_FLAGS) set(CMAKE_CXX_FLAGS "-O2") endif (NOT CMAKE_CXX_FLAGS) # This only works in cmake >3.1 #set_property(TARGET inspectrum PROPERTY CXX_STANDARD 11) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11") list(APPEND inspectrum_sources abstractsamplesource.cpp amplitudedemod.cpp cursor.cpp cursors.cpp main.cpp fft.cpp frequencydemod.cpp mainwindow.cpp inputsource.cpp phasedemod.cpp plot.cpp plots.cpp plotview.cpp samplebuffer.cpp samplesource.cpp spectrogramcontrols.cpp spectrogramplot.cpp threshold.cpp traceplot.cpp tuner.cpp tunertransform.cpp util.cpp ) find_package(Qt5Widgets REQUIRED) find_package(Qt5Concurrent REQUIRED) find_package(FFTW REQUIRED) find_package(Liquid REQUIRED) include_directories( ${FFTW_INCLUDES} ${LIQUID_INCLUDES} ) add_executable(inspectrum ${EXE_ARGS} ${inspectrum_sources}) target_link_libraries(inspectrum Qt5::Core Qt5::Widgets Qt5::Concurrent ${FFTW_LIBRARIES} ${LIQUID_LIBRARIES} ) set(INSTALL_DEFAULT_BINDIR "bin" CACHE STRING "Appended to CMAKE_INSTALL_PREFIX") install(TARGETS inspectrum RUNTIME DESTINATION ${INSTALL_DEFAULT_BINDIR}) # Create uninstall target configure_file( ${PROJECT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake @ONLY) add_custom_target(uninstall ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake ) inspectrum-0.2.3/LICENSE000066400000000000000000001045051375676064500147420ustar00rootroot00000000000000 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. {one line to give the program's name and a brief idea of what it does.} Copyright (C) {year} {name of author} 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: {project} Copyright (C) {year} {fullname} 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 . inspectrum-0.2.3/README.md000066400000000000000000000025201375676064500152060ustar00rootroot00000000000000# inspectrum inspectrum is a tool for analysing captured signals, primarily from software-defined radio receivers. ![inspectrum screenshot](/screenshot.jpg) ## Try it ### Prerequisites * cmake >= 2.8.11 * fftw 3.x * [liquid-dsp](https://github.com/jgaeddert/liquid-dsp) >= v1.3.0 * pkg-config * qt5 ### Build instructions Build instructions can be found here: https://github.com/miek/inspectrum/wiki/Build ### Run ./inspectrum [filename] ## Input inspectrum supports the following file types: * `*.cf32`, `*.cfile` - Complex 32-bit floating point samples (GNURadio, osmocom_fft) * `*.cs16` - Complex 16-bit signed integer samples (BladeRF) * `*.cs8` - Complex 8-bit signed integer samples (HackRF) * `*.cu8` - Complex 8-bit unsigned integer samples (RTL-SDR) * `*.f32` - Real 32-bit floating point samples * `*.s16` - Real 16-bit signed integer samples * `*.s8` - Real 8-bit signed integer samples * `*.u8` - Real 8-bit unsigned integer samples If an unknown file extension is loaded, inspectrum will default to `*.cf32`. ## Features * Large (100GB+) file support * Spectrogram with zoom/pan * Plots of amplitude, frequency, phase and IQ samples * Cursors for measuring period, symbol rate and extracting symbols * Export of selected time period, filtered samples and demodulated data ## Contact * #inspectrum on freenode IRC inspectrum-0.2.3/abstractsamplesource.cpp000066400000000000000000000022461375676064500206660ustar00rootroot00000000000000/* * Copyright (C) 2017, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "abstractsamplesource.h" void AbstractSampleSource::subscribe(Subscriber *subscriber) { subscribers.insert(subscriber); } void AbstractSampleSource::invalidate() { for (auto subscriber : subscribers) { subscriber->invalidateEvent(); } } int AbstractSampleSource::subscriberCount() { return subscribers.size(); } void AbstractSampleSource::unsubscribe(Subscriber *subscriber) { subscribers.erase(subscriber); }inspectrum-0.2.3/abstractsamplesource.h000066400000000000000000000022711375676064500203310ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include #include #include "subscriber.h" class AbstractSampleSource { public: virtual ~AbstractSampleSource() {}; virtual std::type_index sampleType() = 0; void subscribe(Subscriber *subscriber); int subscriberCount(); void unsubscribe(Subscriber *subscriber); protected: virtual void invalidate(); private: std::set subscribers; }; inspectrum-0.2.3/amplitudedemod.cpp000066400000000000000000000022761375676064500174400ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "amplitudedemod.h" AmplitudeDemod::AmplitudeDemod(std::shared_ptr>> src) : SampleBuffer(src) { } void AmplitudeDemod::work(void *input, void *output, int count, size_t sampleid) { auto in = static_cast*>(input); auto out = static_cast(output); std::transform(in, in + count, out, [](std::complex s) { return std::norm(s) * 2.0f - 1.0f; }); } inspectrum-0.2.3/amplitudedemod.h000066400000000000000000000020211375676064500170710ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include "samplebuffer.h" class AmplitudeDemod : public SampleBuffer, float> { public: AmplitudeDemod(std::shared_ptr>> src); void work(void *input, void *output, int count, size_t sampleid) override; }; inspectrum-0.2.3/cmake/000077500000000000000000000000001375676064500150105ustar00rootroot00000000000000inspectrum-0.2.3/cmake/Modules/000077500000000000000000000000001375676064500164205ustar00rootroot00000000000000inspectrum-0.2.3/cmake/Modules/FindFFTW.cmake000066400000000000000000000015071375676064500207740ustar00rootroot00000000000000# - Find FFTW # Find the native FFTW includes and library # # FFTW_INCLUDES - where to find fftw3.h # FFTW_LIBRARIES - List of libraries when using FFTW. # FFTW_FOUND - True if FFTW found. if (FFTW_INCLUDES) # Already in cache, be silent set (FFTW_FIND_QUIETLY TRUE) endif (FFTW_INCLUDES) find_package(PkgConfig) pkg_check_modules(PC_FFTW QUIET fftw3f) find_path (FFTW_INCLUDES fftw3.h HINTS ${PC_FFTW_INCLUDEDIR} ${PC_FFTW_INCLUDE_DIRS}) find_library (FFTW_LIBRARIES NAMES fftw3f HINTS ${PC_FFTW_LIBDIR} ${PC_FFTW_LIBRARY_DIRS}) # handle the QUIETLY and REQUIRED arguments and set FFTW_FOUND to TRUE if # all listed variables are TRUE include (FindPackageHandleStandardArgs) find_package_handle_standard_args (FFTW DEFAULT_MSG FFTW_LIBRARIES FFTW_INCLUDES) mark_as_advanced (FFTW_LIBRARIES FFTW_INCLUDES) inspectrum-0.2.3/cmake/Modules/FindLiquid.cmake000066400000000000000000000013071375676064500214530ustar00rootroot00000000000000# - Find LIQUID # Find the native LIQUID includes and library # # LIQUID_INCLUDES - where to find LIQUID.h # LIQUID_LIBRARIES - List of libraries when using LIQUID. # LIQUID_FOUND - True if LIQUID found. if (LIQUID_INCLUDES) # Already in cache, be silent set (LIQUID_FIND_QUIETLY TRUE) endif (LIQUID_INCLUDES) find_path (LIQUID_INCLUDES liquid/liquid.h) find_library (LIQUID_LIBRARIES NAMES liquid) # handle the QUIETLY and REQUIRED arguments and set LIQUID_FOUND to TRUE if # all listed variables are TRUE include (FindPackageHandleStandardArgs) find_package_handle_standard_args (LIQUID DEFAULT_MSG LIQUID_LIBRARIES LIQUID_INCLUDES) #mark_as_advanced (LIQUID_LIBRARIES LIQUID_INCLUDES) inspectrum-0.2.3/cmake/cmake_uninstall.cmake.in000066400000000000000000000025321375676064500215720ustar00rootroot00000000000000# http://www.vtk.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F IF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") MESSAGE(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"") ENDIF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") FILE(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files) STRING(REGEX REPLACE "\n" ";" files "${files}") FOREACH(file ${files}) MESSAGE(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"") IF(EXISTS "$ENV{DESTDIR}${file}") EXEC_PROGRAM( "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\"" OUTPUT_VARIABLE rm_out RETURN_VALUE rm_retval ) IF(NOT "${rm_retval}" STREQUAL 0) MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"") ENDIF(NOT "${rm_retval}" STREQUAL 0) ELSEIF(IS_SYMLINK "$ENV{DESTDIR}${file}") EXEC_PROGRAM( "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\"" OUTPUT_VARIABLE rm_out RETURN_VALUE rm_retval ) IF(NOT "${rm_retval}" STREQUAL 0) MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"") ENDIF(NOT "${rm_retval}" STREQUAL 0) ELSE(EXISTS "$ENV{DESTDIR}${file}") MESSAGE(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.") ENDIF(EXISTS "$ENV{DESTDIR}${file}") ENDFOREACH(file) inspectrum-0.2.3/cursor.cpp000066400000000000000000000052371375676064500157600ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include #include "cursor.h" Cursor::Cursor(Qt::Orientation orientation, Qt::CursorShape mouseCursorShape, QObject * parent) : QObject::QObject(parent), orientation(orientation), cursorShape(mouseCursorShape) { } int Cursor::fromPoint(QPoint point) { return (orientation == Qt::Vertical) ? point.x() : point.y(); } bool Cursor::pointOverCursor(QPoint point) { const int margin = 5; range_t range = {cursorPosition - margin, cursorPosition + margin}; return range.contains(fromPoint(point)); } bool Cursor::mouseEvent(QEvent::Type type, QMouseEvent event) { // If the mouse pointer moves over a cursor, display a resize pointer if (pointOverCursor(event.pos()) && type != QEvent::Leave) { if (!cursorOverrided) { cursorOverrided = true; QApplication::setOverrideCursor(QCursor(cursorShape)); } // Restore pointer if it moves off the cursor, or leaves the widget } else if (cursorOverrided) { cursorOverrided = false; QApplication::restoreOverrideCursor(); } // Start dragging on left mouse button press, if over a cursor if (type == QEvent::MouseButtonPress) { if (event.button() == Qt::LeftButton) { if (pointOverCursor(event.pos())) { dragging = true; return true; } } // Update current cursor position if we're dragging } else if (type == QEvent::MouseMove) { if (dragging) { cursorPosition = fromPoint(event.pos()); emit posChanged(); } // Stop dragging on left mouse button release } else if (type == QEvent::MouseButtonRelease) { if (event.button() == Qt::LeftButton && dragging) { dragging = false; return true; } } return false; } int Cursor::pos() { return cursorPosition; } void Cursor::setPos(int newPos) { cursorPosition = newPos; } inspectrum-0.2.3/cursor.h000066400000000000000000000025431375676064500154220ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include #include "util.h" class Cursor : public QObject { Q_OBJECT public: Cursor(Qt::Orientation orientation, Qt::CursorShape mouseCursorShape, QObject * parent); int pos(); void setPos(int newPos); bool mouseEvent(QEvent::Type type, QMouseEvent event); signals: void posChanged(); private: int fromPoint(QPoint point); bool pointOverCursor(QPoint point); Qt::Orientation orientation; Qt::CursorShape cursorShape; bool dragging = false; bool cursorOverrided = false; int cursorPosition = 0; }; inspectrum-0.2.3/cursors.cpp000066400000000000000000000106351375676064500161410ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include #include #include "cursors.h" Cursors::Cursors(QObject * parent) : QObject::QObject(parent) { minCursor = new Cursor(Qt::Vertical, Qt::SizeHorCursor, this); maxCursor = new Cursor(Qt::Vertical, Qt::SizeHorCursor, this); connect(minCursor, &Cursor::posChanged, this, &Cursors::cursorMoved); connect(maxCursor, &Cursor::posChanged, this, &Cursors::cursorMoved); } void Cursors::cursorMoved() { // Swap cursors if one has been dragged past the other if (minCursor->pos() > maxCursor->pos()) { std::swap(minCursor, maxCursor); } emit cursorsMoved(); } bool Cursors::pointWithinDragRegion(QPoint point) { int margin = 10; range_t range = {minCursor->pos()+margin, maxCursor->pos()-margin}; return range.contains(point.x()); } bool Cursors::mouseEvent(QEvent::Type type, QMouseEvent event) { if (minCursor->mouseEvent(type, event)) return true; if (maxCursor->mouseEvent(type, event)) return true; // If the mouse pointer is between the cursors, display a resize pointer if (pointWithinDragRegion(event.pos()) && type != QEvent::Leave) { if (!cursorOverride) { cursorOverride = true; QApplication::setOverrideCursor(QCursor(Qt::SizeAllCursor)); } // Restore pointer otherwise } else { if (cursorOverride) { cursorOverride = false; QApplication::restoreOverrideCursor(); } } // Start dragging on left mouse button press, if between the cursors if (type == QEvent::MouseButtonPress) { if (event.button() == Qt::LeftButton) { if (pointWithinDragRegion(event.pos())) { dragging = true; dragPos = event.pos(); return true; } } // Update both cursor positons if we're dragging } else if (type == QEvent::MouseMove) { if (dragging) { int dx = event.pos().x() - dragPos.x(); minCursor->setPos(minCursor->pos() + dx); maxCursor->setPos(maxCursor->pos() + dx); dragPos = event.pos(); emit cursorsMoved(); } // Stop dragging on left mouse button release } else if (type == QEvent::MouseButtonRelease) { if (event.button() == Qt::LeftButton && dragging) { dragging = false; return true; } } return false; } void Cursors::paintFront(QPainter &painter, QRect &rect, range_t sampleRange) { painter.save(); QRect cursorRect(minCursor->pos(), rect.top(), maxCursor->pos() - minCursor->pos(), rect.height()); // Draw translucent white fill for highlight painter.fillRect( cursorRect, QBrush(QColor(255, 255, 255, 50)) ); // Draw vertical edges for individual segments painter.setPen(QPen(Qt::gray, 1, Qt::DashLine)); for (int i = 1; i < segmentCount; i++) { int pos = minCursor->pos() + (i * cursorRect.width() / segmentCount); painter.drawLine(pos, rect.top(), pos, rect.bottom()); } // Draw vertical edges painter.setPen(QPen(Qt::white, 1, Qt::SolidLine)); painter.drawLine(minCursor->pos(), rect.top(), minCursor->pos(), rect.bottom()); painter.drawLine(maxCursor->pos(), rect.top(), maxCursor->pos(), rect.bottom()); painter.restore(); } int Cursors::segments() { return segmentCount; } range_t Cursors::selection() { return {minCursor->pos(), maxCursor->pos()}; } void Cursors::setSegments(int segments) { segmentCount = std::max(segments, 1); } void Cursors::setSelection(range_t selection) { minCursor->setPos(selection.minimum); maxCursor->setPos(selection.maximum); } inspectrum-0.2.3/cursors.h000066400000000000000000000032221375676064500156000ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include #include #include "cursor.h" #include "util.h" class Cursors : public QObject { Q_OBJECT public: Cursors(QObject * parent); int segments(); bool mouseEvent(QEvent::Type type, QMouseEvent event); void paintFront(QPainter &painter, QRect &rect, range_t sampleRange); range_t selection(); void setSegments(int segments); void setSelection(range_t selection); public slots: void cursorMoved(); signals: void cursorsMoved(); private: bool pointWithinDragRegion(QPoint point); Cursor *minCursor; Cursor *maxCursor; int segmentCount = 1; QPoint dragPos; // keep track of dragging distance bool cursorOverride = false; // used to record if cursor is overridden bool dragging = false; // record if mouse is dragging }; inspectrum-0.2.3/fft.cpp000066400000000000000000000026161375676064500152200ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "fft.h" #include "string.h" FFT::FFT(int size) { fftSize = size; fftwIn = (fftwf_complex*)fftwf_malloc(sizeof(fftwf_complex) * fftSize); fftwOut = (fftwf_complex*)fftwf_malloc(sizeof(fftwf_complex) * fftSize); fftwPlan = fftwf_plan_dft_1d(fftSize, fftwIn, fftwOut, FFTW_FORWARD, FFTW_MEASURE); } FFT::~FFT() { if (fftwPlan) fftwf_destroy_plan(fftwPlan); if (fftwIn) fftwf_free(fftwIn); if (fftwOut) fftwf_free(fftwOut); } void FFT::process(void *dest, void *source) { memcpy(fftwIn, source, fftSize * sizeof(fftwf_complex)); fftwf_execute(fftwPlan); memcpy(dest, fftwOut, fftSize * sizeof(fftwf_complex)); } inspectrum-0.2.3/fft.h000066400000000000000000000020701375676064500146570ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include class FFT { public: FFT(int size); ~FFT(); void process(void *dest, void *source); int getSize() { return fftSize; } private: int fftSize; fftwf_complex *fftwIn = nullptr; fftwf_complex *fftwOut = nullptr; fftwf_plan fftwPlan = nullptr; }; inspectrum-0.2.3/frequencydemod.cpp000066400000000000000000000024441375676064500174520ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "frequencydemod.h" #include #include "util.h" FrequencyDemod::FrequencyDemod(std::shared_ptr>> src) : SampleBuffer(src) { } void FrequencyDemod::work(void *input, void *output, int count, size_t sampleid) { auto in = static_cast*>(input); auto out = static_cast(output); freqdem fdem = freqdem_create(relativeBandwidth() / 2.0); for (int i = 0; i < count; i++) { freqdem_demodulate(fdem, in[i], &out[i]); } freqdem_destroy(fdem); } inspectrum-0.2.3/frequencydemod.h000066400000000000000000000020211375676064500171060ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include "samplebuffer.h" class FrequencyDemod : public SampleBuffer, float> { public: FrequencyDemod(std::shared_ptr>> src); void work(void *input, void *output, int count, size_t sampleid) override; }; inspectrum-0.2.3/inputsource.cpp000066400000000000000000000203061375676064500170150ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * Copyright (C) 2015, Jared Boone * * This file is part of inspectrum. * * 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 . */ #include "inputsource.h" #include #include #include #include #include #include class ComplexF32SampleAdapter : public SampleAdapter { public: size_t sampleSize() override { return sizeof(std::complex); } void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) override { auto s = reinterpret_cast*>(src); std::copy(&s[start], &s[start + length], dest); } }; class ComplexS16SampleAdapter : public SampleAdapter { public: size_t sampleSize() override { return sizeof(std::complex); } void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) override { auto s = reinterpret_cast*>(src); std::transform(&s[start], &s[start + length], dest, [](const std::complex& v) -> std::complex { const float k = 1.0f / 32768.0f; return { v.real() * k, v.imag() * k }; } ); } }; class ComplexS8SampleAdapter : public SampleAdapter { public: size_t sampleSize() override { return sizeof(std::complex); } void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) override { auto s = reinterpret_cast*>(src); std::transform(&s[start], &s[start + length], dest, [](const std::complex& v) -> std::complex { const float k = 1.0f / 128.0f; return { v.real() * k, v.imag() * k }; } ); } }; class ComplexU8SampleAdapter : public SampleAdapter { public: size_t sampleSize() override { return sizeof(std::complex); } void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) override { auto s = reinterpret_cast*>(src); std::transform(&s[start], &s[start + length], dest, [](const std::complex& v) -> std::complex { const float k = 1.0f / 128.0f; return { (v.real() - 127.4f) * k, (v.imag() - 127.4f) * k }; } ); } }; class RealF32SampleAdapter : public SampleAdapter { public: size_t sampleSize() override { return sizeof(float); } void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) override { auto s = reinterpret_cast(src); std::transform(&s[start], &s[start + length], dest, [](const float& v) -> std::complex { return {v, 0.0f}; } ); } }; class RealS16SampleAdapter : public SampleAdapter { public: size_t sampleSize() override { return sizeof(int16_t); } void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) override { auto s = reinterpret_cast(src); std::transform(&s[start], &s[start + length], dest, [](const int16_t& v) -> std::complex { const float k = 1.0f / 32768.0f; return { v * k, 0.0f }; } ); } }; class RealS8SampleAdapter : public SampleAdapter { public: size_t sampleSize() override { return sizeof(int8_t); } void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) override { auto s = reinterpret_cast(src); std::transform(&s[start], &s[start + length], dest, [](const int8_t& v) -> std::complex { const float k = 1.0f / 128.0f; return { v * k, 0.0f }; } ); } }; class RealU8SampleAdapter : public SampleAdapter { public: size_t sampleSize() override { return sizeof(uint8_t); } void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) override { auto s = reinterpret_cast(src); std::transform(&s[start], &s[start + length], dest, [](const uint8_t& v) -> std::complex { const float k = 1.0f / 128.0f; return { (v - 127.4f) * k, 0 }; } ); } }; InputSource::InputSource() { } InputSource::~InputSource() { cleanup(); } void InputSource::cleanup() { if (mmapData != nullptr) { inputFile->unmap(mmapData); mmapData = nullptr; } if (inputFile != nullptr) { delete inputFile; inputFile = nullptr; } } void InputSource::openFile(const char *filename) { QFileInfo fileInfo(filename); std::string suffix = std::string(fileInfo.suffix().toLower().toUtf8().constData()); if(_fmt!=""){ suffix = _fmt; } // allow fmt override if ((suffix == "cfile") || (suffix == "cf32") || (suffix == "fc32")) { sampleAdapter = std::unique_ptr(new ComplexF32SampleAdapter()); } else if ((suffix == "cs16") || (suffix == "sc16") || (suffix == "c16")) { sampleAdapter = std::unique_ptr(new ComplexS16SampleAdapter()); } else if ((suffix == "cs8") || (suffix == "sc8") || (suffix == "c8")) { sampleAdapter = std::unique_ptr(new ComplexS8SampleAdapter()); } else if ((suffix == "cu8") || (suffix == "uc8")) { sampleAdapter = std::unique_ptr(new ComplexU8SampleAdapter()); } else if (suffix == "f32") { sampleAdapter = std::unique_ptr(new RealF32SampleAdapter()); _realSignal = true; } else if (suffix == "s16") { sampleAdapter = std::unique_ptr(new RealS16SampleAdapter()); _realSignal = true; } else if (suffix == "s8") { sampleAdapter = std::unique_ptr(new RealS8SampleAdapter()); _realSignal = true; } else if (suffix == "u8") { sampleAdapter = std::unique_ptr(new RealU8SampleAdapter()); _realSignal = true; } else { sampleAdapter = std::unique_ptr(new ComplexF32SampleAdapter()); } std::unique_ptr file(new QFile(filename)); if (!file->open(QFile::ReadOnly)) { throw std::runtime_error(file->errorString().toStdString()); } auto size = file->size(); sampleCount = size / sampleAdapter->sampleSize(); auto data = file->map(0, size); if (data == nullptr) throw std::runtime_error("Error mmapping file"); cleanup(); inputFile = file.release(); mmapData = data; invalidate(); } void InputSource::setSampleRate(double rate) { sampleRate = rate; invalidate(); } double InputSource::rate() { return sampleRate; } std::unique_ptr[]> InputSource::getSamples(size_t start, size_t length) { if (inputFile == nullptr) return nullptr; if (mmapData == nullptr) return nullptr; if(start < 0 || length < 0) return nullptr; if (start + length > sampleCount) return nullptr; std::unique_ptr[]> dest(new std::complex[length]); sampleAdapter->copyRange(mmapData, start, length, dest.get()); return dest; } void InputSource::setFormat(std::string fmt){ _fmt = fmt; } inspectrum-0.2.3/inputsource.h000066400000000000000000000034611375676064500164650ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * Copyright (C) 2015, Jared Boone * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include "samplesource.h" class SampleAdapter { public: virtual size_t sampleSize() = 0; virtual void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) = 0; }; class InputSource : public SampleSource> { private: QFile *inputFile = nullptr; size_t sampleCount = 0; double sampleRate = 0.0; uchar *mmapData = nullptr; std::unique_ptr sampleAdapter; std::string _fmt; bool _realSignal = false; public: InputSource(); ~InputSource(); void cleanup(); void openFile(const char *filename); std::unique_ptr[]> getSamples(size_t start, size_t length); size_t count() { return sampleCount; }; void setSampleRate(double rate); void setFormat(std::string fmt); double rate(); bool realSignal() { return _realSignal; }; float relativeBandwidth() { return 1; } }; inspectrum-0.2.3/main.cpp000066400000000000000000000045741375676064500153720ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include #include #include "mainwindow.h" int main(int argc, char *argv[]) { QApplication a(argc, argv); a.setApplicationName("inspectrum"); a.setOrganizationName("inspectrum"); MainWindow mainWin; QCommandLineParser parser; parser.setApplicationDescription("spectrum viewer"); parser.addHelpOption(); parser.addPositionalArgument("file", QCoreApplication::translate("main", "File to view.")); // Add options QCommandLineOption rateOption(QStringList() << "r" << "rate", QCoreApplication::translate("main", "Set sample rate."), QCoreApplication::translate("main", "Hz")); parser.addOption(rateOption); QCommandLineOption formatOption(QStringList() << "f" << "format", QCoreApplication::translate("main", "Set file format."), QCoreApplication::translate("main", "fmt")); parser.addOption(formatOption); // Process the actual command line parser.process(a); // Check for file format override if(parser.isSet(formatOption)){ mainWin.setFormat(parser.value(formatOption)); } const QStringList args = parser.positionalArguments(); if (args.size()>=1) mainWin.openFile(args.at(0)); if (parser.isSet(rateOption)) { bool ok; auto rate = parser.value(rateOption).toDouble(&ok); if(!ok) { fputs("ERROR: could not parse rate\n", stderr); return 1; } mainWin.setSampleRate(rate); } mainWin.show(); return a.exec(); } inspectrum-0.2.3/mainwindow.cpp000066400000000000000000000102511375676064500166070ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include #include #include #include #include #include "mainwindow.h" #include "util.h" MainWindow::MainWindow() { setWindowTitle(tr("inspectrum")); QPixmapCache::setCacheLimit(40960); dock = new SpectrogramControls(tr("Controls"), this); dock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea); addDockWidget(Qt::LeftDockWidgetArea, dock); input = new InputSource(); plots = new PlotView(input); setCentralWidget(plots); // Connect dock inputs connect(dock, &SpectrogramControls::openFile, this, &MainWindow::openFile); connect(dock->sampleRate, static_cast(&QLineEdit::textChanged), this, static_cast(&MainWindow::setSampleRate)); connect(dock, static_cast(&SpectrogramControls::fftOrZoomChanged), plots, &PlotView::setFFTAndZoom); connect(dock->powerMaxSlider, &QSlider::valueChanged, plots, &PlotView::setPowerMax); connect(dock->powerMinSlider, &QSlider::valueChanged, plots, &PlotView::setPowerMin); connect(dock->cursorsCheckBox, &QCheckBox::stateChanged, plots, &PlotView::enableCursors); connect(dock->scalesCheckBox, &QCheckBox::stateChanged, plots, &PlotView::enableScales); connect(dock->cursorSymbolsSpinBox, static_cast(&QSpinBox::valueChanged), plots, &PlotView::setCursorSegments); // Connect dock outputs connect(plots, &PlotView::timeSelectionChanged, dock, &SpectrogramControls::timeSelectionChanged); connect(plots, &PlotView::zoomIn, dock, &SpectrogramControls::zoomIn); connect(plots, &PlotView::zoomOut, dock, &SpectrogramControls::zoomOut); // Set defaults after making connections so everything is in sync dock->setDefaults(); } void MainWindow::openFile(QString fileName) { QString title="%1: %2"; this->setWindowTitle(title.arg(QApplication::applicationName(),fileName.section('/',-1,-1))); // Try to parse osmocom_fft filenames and extract the sample rate and center frequency. // Example file name: "name-f2.411200e+09-s5.000000e+06-t20160807180210.cfile" QRegExp rx("(.*)-f(.*)-s(.*)-.*\\.cfile"); QString basename = fileName.section('/',-1,-1); if (rx.exactMatch(basename)) { QString centerfreq = rx.cap(2); QString samplerate = rx.cap(3); std::stringstream ss(samplerate.toUtf8().constData()); // Needs to be a double as the number is in scientific format double rate; ss >> rate; if (!ss.fail()) { setSampleRate(rate); } } try { input->openFile(fileName.toUtf8().constData()); } catch (const std::exception &ex) { QMessageBox msgBox(QMessageBox::Critical, "Inspectrum openFile error", QString("%1: %2").arg(fileName).arg(ex.what())); msgBox.exec(); } } void MainWindow::setSampleRate(QString rate) { auto sampleRate = rate.toDouble(); input->setSampleRate(sampleRate); plots->setSampleRate(sampleRate); // Save the sample rate in settings as we're likely to be opening the same file across multiple runs QSettings settings; settings.setValue("SampleRate", sampleRate); } void MainWindow::setSampleRate(double rate) { dock->sampleRate->setText(QString::number(rate)); } void MainWindow::setFormat(QString fmt) { input->setFormat(fmt.toUtf8().constData()); } inspectrum-0.2.3/mainwindow.h000066400000000000000000000023361375676064500162610ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include "spectrogramcontrols.h" #include "plotview.h" class MainWindow : public QMainWindow { Q_OBJECT public: MainWindow(); void changeSampleRate(double rate); public slots: void openFile(QString fileName); void setSampleRate(QString rate); void setSampleRate(double rate); void setFormat(QString fmt); private: SpectrogramControls *dock; PlotView *plots; InputSource *input; }; inspectrum-0.2.3/phasedemod.cpp000066400000000000000000000022131375676064500165430ustar00rootroot00000000000000/* * Copyright (C) 2017, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "phasedemod.h" PhaseDemod::PhaseDemod(std::shared_ptr>> src) : SampleBuffer(src) { } void PhaseDemod::work(void *input, void *output, int count, size_t sampleid) { auto in = static_cast*>(input); auto out = static_cast(output); for (int i = 0; i < count; i++) { out[i] = std::arg(in[i]) * (1 / M_PI); } } inspectrum-0.2.3/phasedemod.h000066400000000000000000000020111375676064500162040ustar00rootroot00000000000000/* * Copyright (C) 2017, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include "samplebuffer.h" class PhaseDemod : public SampleBuffer, float> { public: PhaseDemod(std::shared_ptr>> src); void work(void *input, void *output, int count, size_t sampleid) override; }; inspectrum-0.2.3/plot.cpp000066400000000000000000000030761375676064500154200ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "plot.h" Plot::Plot(std::shared_ptr src) : sampleSource(src) { sampleSource->subscribe(this); } Plot::~Plot() { sampleSource->unsubscribe(this); } void Plot::invalidateEvent() { } bool Plot::mouseEvent(QEvent::Type type, QMouseEvent event) { return false; } std::shared_ptr Plot::output() { return sampleSource; } void Plot::paintBack(QPainter &painter, QRect &rect, range_t sampleRange) { painter.save(); QPen pen(Qt::white, 1, Qt::DashLine); painter.setPen(pen); painter.drawLine(rect.left(), rect.center().y(), rect.right(), rect.center().y()); painter.restore(); } void Plot::paintMid(QPainter &painter, QRect &rect, range_t sampleRange) { } void Plot::paintFront(QPainter &painter, QRect &rect, range_t sampleRange) { } inspectrum-0.2.3/plot.h000066400000000000000000000032741375676064500150650ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include #include "abstractsamplesource.h" #include "util.h" class Plot : public QObject, public Subscriber { Q_OBJECT public: Plot(std::shared_ptr src); ~Plot(); void invalidateEvent() override; virtual bool mouseEvent(QEvent::Type type, QMouseEvent event); virtual std::shared_ptr output(); virtual void paintBack(QPainter &painter, QRect &rect, range_t sampleRange); virtual void paintMid(QPainter &painter, QRect &rect, range_t sampleRange); virtual void paintFront(QPainter &painter, QRect &rect, range_t sampleRange); int height() const { return _height; }; signals: void repaint(); protected: void setHeight(int height) { _height = height; }; std::shared_ptr sampleSource; private: // TODO: don't hardcode this int _height = 200; }; inspectrum-0.2.3/plots.cpp000066400000000000000000000042651375676064500156040ustar00rootroot00000000000000/* * Copyright (C) 2016-2017, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "amplitudedemod.h" #include "frequencydemod.h" #include "phasedemod.h" #include "threshold.h" #include "traceplot.h" #include "plots.h" std::multimap Plots::plots; Plots::_init Plots::_initializer; Plot* Plots::samplePlot(std::shared_ptr source) { return new TracePlot(source); } Plot* Plots::amplitudePlot(std::shared_ptr source) { typedef SampleSource> Source; std::shared_ptr concrete = std::dynamic_pointer_cast(source); return new TracePlot( std::make_shared(concrete) ); } Plot* Plots::frequencyPlot(std::shared_ptr source) { typedef SampleSource> Source; std::shared_ptr concrete = std::dynamic_pointer_cast(source); return new TracePlot( std::make_shared( concrete ) ); } Plot* Plots::phasePlot(std::shared_ptr source) { typedef SampleSource> Source; std::shared_ptr concrete = std::dynamic_pointer_cast(source); return new TracePlot(std::make_shared(concrete)); } Plot* Plots::thresholdPlot(std::shared_ptr source) { typedef SampleSource Source; std::shared_ptr concrete= std::dynamic_pointer_cast(source); return new TracePlot( std::make_shared( concrete ) ); } inspectrum-0.2.3/plots.h000066400000000000000000000037231375676064500152470ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include "plot.h" #include "samplesource.h" struct PlotInfo { const char *name; std::function)> creator; }; class Plots { public: static std::multimap plots; static Plot* samplePlot(std::shared_ptr source); static Plot* amplitudePlot(std::shared_ptr source); static Plot* frequencyPlot(std::shared_ptr source); static Plot* phasePlot(std::shared_ptr source); static Plot* thresholdPlot(std::shared_ptr source); static class _init { public: _init() { plots.emplace(typeid(std::complex), PlotInfo{"sample plot", samplePlot}); plots.emplace(typeid(std::complex), PlotInfo{"amplitude plot", amplitudePlot}); plots.emplace(typeid(std::complex), PlotInfo{"frequency plot", frequencyPlot}); plots.emplace(typeid(std::complex), PlotInfo{"phase plot", phasePlot}); plots.emplace(typeid(float), PlotInfo{"threshold plot", thresholdPlot}); }; } _initializer; };inspectrum-0.2.3/plotview.cpp000066400000000000000000000435121375676064500163120ustar00rootroot00000000000000/* * Copyright (C) 2015-2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "plotview.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "plots.h" PlotView::PlotView(InputSource *input) : cursors(this), viewRange({0, 0}) { mainSampleSource = input; setDragMode(QGraphicsView::ScrollHandDrag); setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOn); setMouseTracking(true); enableCursors(false); connect(&cursors, &Cursors::cursorsMoved, this, &PlotView::cursorsMoved); spectrogramPlot = new SpectrogramPlot(std::shared_ptr>>(mainSampleSource)); auto tunerOutput = std::dynamic_pointer_cast>>(spectrogramPlot->output()); enableScales(true); addPlot(spectrogramPlot); mainSampleSource->subscribe(this); } void PlotView::addPlot(Plot *plot) { plots.emplace_back(plot); connect(plot, &Plot::repaint, this, &PlotView::repaint); } void PlotView::contextMenuEvent(QContextMenuEvent * event) { QMenu menu; // Get selected plot Plot *selectedPlot = nullptr; auto it = plots.begin(); int y = -verticalScrollBar()->value(); for (; it != plots.end(); it++) { auto&& plot = *it; if (range_t{y, y + plot->height()}.contains(event->pos().y())) { selectedPlot = plot.get(); break; } y += plot->height(); } if (selectedPlot == nullptr) return; // Add actions to add derived plots // that are compatible with selectedPlot's output QMenu *plotsMenu = menu.addMenu("Add derived plot"); auto src = selectedPlot->output(); auto compatiblePlots = as_range(Plots::plots.equal_range(src->sampleType())); for (auto p : compatiblePlots) { auto plotInfo = p.second; auto action = new QAction(QString("Add %1").arg(plotInfo.name), plotsMenu); auto plotCreator = plotInfo.creator; connect( action, &QAction::triggered, this, [=]() { addPlot(plotCreator(src)); } ); plotsMenu->addAction(action); } // Add submenu for extracting symbols QMenu *extractMenu = menu.addMenu("Extract symbols"); // Add action to extract symbols from selected plot to stdout auto extract = new QAction("To stdout", extractMenu); connect( extract, &QAction::triggered, this, [=]() { extractSymbols(src, false); } ); extract->setEnabled(cursorsEnabled && (src->sampleType() == typeid(float))); extractMenu->addAction(extract); // Add action to extract symbols from selected plot to clipboard auto extractClipboard = new QAction("Copy to clipboard", extractMenu); connect( extractClipboard, &QAction::triggered, this, [=]() { extractSymbols(src, true); } ); extractClipboard->setEnabled(cursorsEnabled && (src->sampleType() == typeid(float))); extractMenu->addAction(extractClipboard); // Add action to export the selected samples into a file auto save = new QAction("Export samples to file...", &menu); connect( save, &QAction::triggered, this, [=]() { if (selectedPlot == spectrogramPlot) { exportSamples(spectrogramPlot->tunerEnabled() ? spectrogramPlot->output() : spectrogramPlot->input()); } else { exportSamples(src); } } ); menu.addAction(save); // Add action to remove the selected plot auto rem = new QAction("Remove plot", &menu); connect( rem, &QAction::triggered, this, [=]() { plots.erase(it); } ); // Don't allow remove the first plot (the spectrogram) rem->setEnabled(it != plots.begin()); menu.addAction(rem); updateViewRange(false); if(menu.exec(event->globalPos())) updateView(false); } void PlotView::cursorsMoved() { selectedSamples = { columnToSample(horizontalScrollBar()->value() + cursors.selection().minimum), columnToSample(horizontalScrollBar()->value() + cursors.selection().maximum) }; emitTimeSelection(); viewport()->update(); } void PlotView::emitTimeSelection() { size_t sampleCount = selectedSamples.length(); float selectionTime = sampleCount / (float)mainSampleSource->rate(); emit timeSelectionChanged(selectionTime); } void PlotView::enableCursors(bool enabled) { cursorsEnabled = enabled; if (enabled) { int margin = viewport()->rect().width() / 3; cursors.setSelection({viewport()->rect().left() + margin, viewport()->rect().right() - margin}); cursorsMoved(); } viewport()->update(); } bool PlotView::viewportEvent(QEvent *event) { // Handle wheel events for zooming (before the parent's handler to stop normal scrolling) if (event->type() == QEvent::Wheel) { QWheelEvent *wheelEvent = (QWheelEvent*)event; if (QApplication::keyboardModifiers() & Qt::ControlModifier) { bool canZoomIn = zoomLevel < fftSize; bool canZoomOut = zoomLevel > 1; int delta = wheelEvent->angleDelta().y(); if ((delta > 0 && canZoomIn) || (delta < 0 && canZoomOut)) { scrollZoomStepsAccumulated += delta; // `updateViewRange()` keeps the center sample in the same place after zoom. Apply // a scroll adjustment to keep the sample under the mouse cursor in the same place instead. zoomPos = wheelEvent->pos().x(); zoomSample = columnToSample(horizontalScrollBar()->value() + zoomPos); if (scrollZoomStepsAccumulated >= 120) { scrollZoomStepsAccumulated -= 120; emit zoomIn(); } else if (scrollZoomStepsAccumulated <= -120) { scrollZoomStepsAccumulated += 120; emit zoomOut(); } } return true; } } // Pass mouse events to individual plot objects if (event->type() == QEvent::MouseButtonPress || event->type() == QEvent::MouseMove || event->type() == QEvent::MouseButtonRelease || event->type() == QEvent::Leave) { QMouseEvent *mouseEvent = static_cast(event); int plotY = -verticalScrollBar()->value(); for (auto&& plot : plots) { bool result = plot->mouseEvent( event->type(), QMouseEvent( event->type(), QPoint(mouseEvent->pos().x(), mouseEvent->pos().y() - plotY), mouseEvent->button(), mouseEvent->buttons(), QApplication::keyboardModifiers() ) ); if (result) return true; plotY += plot->height(); } if (cursorsEnabled) if (cursors.mouseEvent(event->type(), *mouseEvent)) return true; } // Handle parent eveents return QGraphicsView::viewportEvent(event); } void PlotView::extractSymbols(std::shared_ptr src, bool toClipboard) { if (!cursorsEnabled) return; auto floatSrc = std::dynamic_pointer_cast>(src); if (!floatSrc) return; auto samples = floatSrc->getSamples(selectedSamples.minimum, selectedSamples.length()); auto step = (float)selectedSamples.length() / cursors.segments(); auto symbols = std::vector(); for (auto i = step / 2; i < selectedSamples.length(); i += step) { symbols.push_back(samples[i]); } if (!toClipboard) { for (auto f : symbols) std::cout << f << ", "; std::cout << std::endl << std::flush; } else { QClipboard *clipboard = QGuiApplication::clipboard(); QString symbolText; QTextStream symbolStream(&symbolText); for (auto f : symbols) symbolStream << f << ", "; clipboard->setText(symbolText); } } void PlotView::exportSamples(std::shared_ptr src) { if (src->sampleType() == typeid(std::complex)) { exportSamples>(src); } else { exportSamples(src); } } template void PlotView::exportSamples(std::shared_ptr src) { auto sampleSrc = std::dynamic_pointer_cast>(src); if (!sampleSrc) { return; } QFileDialog dialog(this); dialog.setAcceptMode(QFileDialog::AcceptSave); dialog.setFileMode(QFileDialog::AnyFile); dialog.setNameFilter(getFileNameFilter()); dialog.setOption(QFileDialog::DontUseNativeDialog, true); QGroupBox groupBox("Selection To Export", &dialog); QVBoxLayout vbox(&groupBox); QRadioButton cursorSelection("Cursor Selection", &groupBox); QRadioButton currentView("Current View", &groupBox); QRadioButton completeFile("Complete File (Experimental)", &groupBox); if (cursorsEnabled) { cursorSelection.setChecked(true); } else { currentView.setChecked(true); cursorSelection.setEnabled(false); } vbox.addWidget(&cursorSelection); vbox.addWidget(¤tView); vbox.addWidget(&completeFile); vbox.addStretch(1); groupBox.setLayout(&vbox); QGridLayout *l = dialog.findChild(); l->addWidget(&groupBox, 4, 1); QGroupBox groupBox2("Decimation"); QSpinBox decimation(&groupBox2); decimation.setMinimum(1); decimation.setValue(1 / sampleSrc->relativeBandwidth()); QVBoxLayout vbox2; vbox2.addWidget(&decimation); groupBox2.setLayout(&vbox2); l->addWidget(&groupBox2, 4, 2); if (dialog.exec()) { QStringList fileNames = dialog.selectedFiles(); size_t start, end; if (cursorSelection.isChecked()) { start = selectedSamples.minimum; end = start + selectedSamples.length(); } else if(currentView.isChecked()) { start = viewRange.minimum; end = start + viewRange.length(); } else { start = 0; end = sampleSrc->count(); } std::ofstream os (fileNames[0].toStdString(), std::ios::binary); size_t index; // viewRange.length() is used as some less arbitrary step value size_t step = viewRange.length(); for (index = start; index < end; index += step) { size_t length = std::min(step, end - index); auto samples = sampleSrc->getSamples(index, length); if (samples != nullptr) { for (auto i = 0; i < length; i += decimation.value()) { os.write((const char*)&samples[i], sizeof(SOURCETYPE)); } } } } } void PlotView::invalidateEvent() { horizontalScrollBar()->setMinimum(0); horizontalScrollBar()->setMaximum(sampleToColumn(mainSampleSource->count())); } void PlotView::repaint() { viewport()->update(); } void PlotView::setCursorSegments(int segments) { // Calculate number of samples per segment float sampPerSeg = (float)selectedSamples.length() / cursors.segments(); // Alter selection to keep samples per segment the same selectedSamples.maximum = selectedSamples.minimum + (segments * sampPerSeg + 0.5f); cursors.setSegments(segments); updateView(); emitTimeSelection(); } void PlotView::setFFTAndZoom(int size, int zoom) { auto oldSamplesPerColumn = samplesPerColumn(); // Set new FFT size fftSize = size; if (spectrogramPlot != nullptr) spectrogramPlot->setFFTSize(size); // Set new zoom level zoomLevel = zoom; if (spectrogramPlot != nullptr) spectrogramPlot->setZoomLevel(zoom); // Update horizontal (time) scrollbar horizontalScrollBar()->setSingleStep(10); horizontalScrollBar()->setPageStep(100); updateView(true, samplesPerColumn() < oldSamplesPerColumn); } void PlotView::setPowerMin(int power) { powerMin = power; if (spectrogramPlot != nullptr) spectrogramPlot->setPowerMin(power); updateView(); } void PlotView::setPowerMax(int power) { powerMax = power; if (spectrogramPlot != nullptr) spectrogramPlot->setPowerMax(power); updateView(); } void PlotView::paintEvent(QPaintEvent *event) { if (mainSampleSource == nullptr) return; QRect rect = QRect(0, 0, width(), height()); QPainter painter(viewport()); painter.fillRect(rect, Qt::black); #define PLOT_LAYER(paintFunc) \ { \ int y = -verticalScrollBar()->value(); \ for (auto&& plot : plots) { \ QRect rect = QRect(0, y, width(), plot->height()); \ plot->paintFunc(painter, rect, viewRange); \ y += plot->height(); \ } \ } PLOT_LAYER(paintBack); PLOT_LAYER(paintMid); PLOT_LAYER(paintFront); if (cursorsEnabled) cursors.paintFront(painter, rect, viewRange); if (timeScaleEnabled) { paintTimeScale(painter, rect, viewRange); } #undef PLOT_LAYER } void PlotView::paintTimeScale(QPainter &painter, QRect &rect, range_t sampleRange) { float startTime = (float)sampleRange.minimum / sampleRate; float stopTime = (float)sampleRange.maximum / sampleRate; float duration = stopTime - startTime; if (duration <= 0) return; painter.save(); QPen pen(Qt::white, 1, Qt::SolidLine); painter.setPen(pen); QFontMetrics fm(painter.font()); int tickWidth = 80; int maxTicks = rect.width() / tickWidth; double durationPerTick = 10 * pow(10, floor(log(duration / maxTicks) / log(10))); double firstTick = int(startTime / durationPerTick) * durationPerTick; double tick = firstTick; while (tick <= stopTime) { size_t tickSample = tick * sampleRate; int tickLine = sampleToColumn(tickSample - sampleRange.minimum); char buf[128]; snprintf(buf, sizeof(buf), "%.06f", tick); painter.drawLine(tickLine, 0, tickLine, 30); painter.drawText(tickLine + 2, 25, buf); tick += durationPerTick; } // Draw small ticks durationPerTick /= 10; firstTick = int(startTime / durationPerTick) * durationPerTick; tick = firstTick; while (tick <= stopTime) { size_t tickSample = tick * sampleRate; int tickLine = sampleToColumn(tickSample - sampleRange.minimum); painter.drawLine(tickLine, 0, tickLine, 10); tick += durationPerTick; } painter.restore(); } int PlotView::plotsHeight() { int height = 0; for (auto&& plot : plots) { height += plot->height(); } return height; } void PlotView::resizeEvent(QResizeEvent * event) { updateView(); } size_t PlotView::samplesPerColumn() { return fftSize / zoomLevel; } void PlotView::scrollContentsBy(int dx, int dy) { updateView(); } void PlotView::showEvent(QShowEvent *event) { // Intentionally left blank. See #171 } void PlotView::updateViewRange(bool reCenter) { // Update current view auto start = columnToSample(horizontalScrollBar()->value()); viewRange = {start, std::min(start + columnToSample(width()), mainSampleSource->count())}; // Adjust time offset to zoom around central sample if (reCenter) { horizontalScrollBar()->setValue( sampleToColumn(zoomSample) - zoomPos ); } zoomSample = viewRange.minimum + viewRange.length() / 2; zoomPos = width() / 2; } void PlotView::updateView(bool reCenter, bool expanding) { if (!expanding) { updateViewRange(reCenter); } horizontalScrollBar()->setMaximum(std::max(0, sampleToColumn(mainSampleSource->count()) - width())); verticalScrollBar()->setMaximum(std::max(0, plotsHeight() - viewport()->height())); if (expanding) { updateViewRange(reCenter); } // Update cursors range_t newSelection = { sampleToColumn(selectedSamples.minimum) - horizontalScrollBar()->value(), sampleToColumn(selectedSamples.maximum) - horizontalScrollBar()->value() }; cursors.setSelection(newSelection); // Re-paint viewport()->update(); } void PlotView::setSampleRate(double rate) { sampleRate = rate; if (spectrogramPlot != nullptr) spectrogramPlot->setSampleRate(rate); emitTimeSelection(); } void PlotView::enableScales(bool enabled) { timeScaleEnabled = enabled; if (spectrogramPlot != nullptr) spectrogramPlot->enableScales(enabled); viewport()->update(); } int PlotView::sampleToColumn(size_t sample) { return sample / samplesPerColumn(); } size_t PlotView::columnToSample(int col) { return col * samplesPerColumn(); } inspectrum-0.2.3/plotview.h000066400000000000000000000057031375676064500157570ustar00rootroot00000000000000/* * Copyright (C) 2015-2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include "cursors.h" #include "inputsource.h" #include "plot.h" #include "samplesource.h" #include "spectrogramplot.h" #include "traceplot.h" class PlotView : public QGraphicsView, Subscriber { Q_OBJECT public: PlotView(InputSource *input); void setSampleRate(double rate); signals: void timeSelectionChanged(float time); void zoomIn(); void zoomOut(); public slots: void cursorsMoved(); void enableCursors(bool enabled); void enableScales(bool enabled); void invalidateEvent() override; void repaint(); void setCursorSegments(int segments); void setFFTAndZoom(int fftSize, int zoomLevel); void setPowerMin(int power); void setPowerMax(int power); protected: void contextMenuEvent(QContextMenuEvent * event) override; void paintEvent(QPaintEvent *event) override; void resizeEvent(QResizeEvent * event) override; void scrollContentsBy(int dx, int dy) override; bool viewportEvent(QEvent *event) override; void showEvent(QShowEvent *event) override; private: Cursors cursors; SampleSource> *mainSampleSource = nullptr; SpectrogramPlot *spectrogramPlot = nullptr; std::vector> plots; range_t viewRange; range_t selectedSamples; int zoomPos; size_t zoomSample; int fftSize = 1024; int zoomLevel = 1; int powerMin; int powerMax; bool cursorsEnabled; double sampleRate = 0.0; bool timeScaleEnabled; int scrollZoomStepsAccumulated = 0; void addPlot(Plot *plot); void emitTimeSelection(); void extractSymbols(std::shared_ptr src, bool toClipboard); void exportSamples(std::shared_ptr src); template void exportSamples(std::shared_ptr src); int plotsHeight(); size_t samplesPerColumn(); void updateViewRange(bool reCenter); void updateView(bool reCenter = false, bool expanding = false); void paintTimeScale(QPainter &painter, QRect &rect, range_t sampleRange); int sampleToColumn(size_t sample); size_t columnToSample(int col); }; inspectrum-0.2.3/samplebuffer.cpp000066400000000000000000000037741375676064500171220ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include #include #include "samplebuffer.h" template SampleBuffer::SampleBuffer(std::shared_ptr> src) : src(src) { src->subscribe(this); } template SampleBuffer::~SampleBuffer() { src->unsubscribe(this); } template std::unique_ptr SampleBuffer::getSamples(size_t start, size_t length) { // TODO: base this on the actual history required auto history = std::min(start, (size_t)256); auto samples = src->getSamples(start - history, length + history); if (samples == nullptr) return nullptr; std::unique_ptr temp(new Tout[history + length]); std::unique_ptr dest(new Tout[length]); QMutexLocker ml(&mutex); work(samples.get(), temp.get(), history + length, start); memcpy(dest.get(), temp.get() + history, length * sizeof(Tout)); return dest; } template void SampleBuffer::invalidateEvent() { SampleSource::invalidate(); } template class SampleBuffer, std::complex>; template class SampleBuffer, float>; template class SampleBuffer; inspectrum-0.2.3/samplebuffer.h000066400000000000000000000027511375676064500165610ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include #include "samplesource.h" template class SampleBuffer : public SampleSource, public Subscriber { private: std::shared_ptr> src; QMutex mutex; public: SampleBuffer(std::shared_ptr> src); ~SampleBuffer(); void invalidateEvent(); virtual std::unique_ptr getSamples(size_t start, size_t length); virtual void work(void *input, void *output, int count, size_t sampleid) = 0; virtual size_t count() { return src->count(); }; double rate() { return src->rate(); }; float relativeBandwidth() { return src->relativeBandwidth(); } }; inspectrum-0.2.3/samplesource.cpp000066400000000000000000000017101375676064500171350ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "samplesource.h" template std::type_index SampleSource::sampleType() { return typeid(T); } template class SampleSource>; template class SampleSource; inspectrum-0.2.3/samplesource.h000066400000000000000000000024001375676064500165770ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include "abstractsamplesource.h" template class SampleSource : public AbstractSampleSource { public: virtual ~SampleSource() {}; virtual std::unique_ptr getSamples(size_t start, size_t length) = 0; virtual void invalidateEvent() { }; virtual size_t count() = 0; virtual double rate() = 0; virtual float relativeBandwidth() = 0; std::type_index sampleType() override; virtual bool realSignal() { return false; }; }; inspectrum-0.2.3/screenshot.jpg000066400000000000000000002431161375676064500166160ustar00rootroot00000000000000ÿØÿàJFIFÿÛC    $.' ",#(7),01444'9=82<.342ÿÛC  2!!22222222222222222222222222222222222222222222222222ÿÀ_4"ÿÄ ÿĵ}!1AQa"q2‘¡#B±ÁRÑð$3br‚ %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúÿÄ ÿĵw!1AQaq"2B‘¡±Á #3RðbrÑ $4á%ñ&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚâãäåæçèéêòóôõö÷øùúÿÚ ?÷+›¼†ÚÿÅÿcÕ$¶[E{X%æ9s8<3³è½>VXu -'Lº[+iiHv±Ü…v»Q÷‰#¤3¡¢¹KMORÔdÒ¡¾RÊnÖY¢Oœ"pªë¸3×Ó“íP+Ýê7ú1–úh¦ŽæòÜËF ye”6 ‘’žÝh²¦K4Vð¼³H‘ƃ,îÀ¤ž•ÌM¨êPØkZ‡Û K‡ŠŒi±W囌œdž£Uµ»›¨¬5:[Ó{öiœHÈ’FÐQÆx<šìè®vþööÏXin..#Ó„±$fÜDÈ `bPÃ~K«ØŠè¨¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(„šÞ“š¥’H„«+\ *GPFjÜÝB³[ÍÑ6v¼lOn® æ:~»D%´)a­×bDK‚$^FæÇàçÔt^Žx ¼K¬ý¤K›$¿ìðîÉNsÍ^ŸWÓ-fhn5He\nI'UaßMOmym{’Òæãihœ0Ó#ê+†Ô/5KI£#ܽÛÉ|Ò[¬;£Ø&Ÿ?ßöðÛ~u–S*ÜOq¿O¶&i×k¹ß7QúwàOR‘ñŠîæÇᮡqis-´é$;e‰Ê²æEsБ_2xþ†PÿÛäŸã_J|l8ø[©úiþZùP6{ÖŸ/Q£cþ¿ÿÐÁªÿàdŸãGü%~$ï¯êŸø'øÖM4àv­Üb¿ü%~#?óÕð6_ñ ø«ÄŸôÕð6Oñ¬ŒŽÔnÇZŽXuXx«Ä¿ôÕð6Oñ¥ÿ„«ÄŸô0êŸø'ÿY9Í?ýt(C ÿð•x“þ†Wÿ$ÿoü%~%í¯ê§þß$ÿÊÈÏZ9õN’è+š¿ð–x›þƒú§þIÿÅP|YâQ×_Õ?ð6Oþ*²‰ÇqM-ÏZÊQHfÀñg‰?è=ªÿàlŸüU/ü%ž$ÿ ö«ÿ’ñU“ØfŽOQT­a›ð•ø“¾¿ªàdŸüU'ü%ž#óÕ?ð:Oñ¬ŒJ?E—Až"?óÕð2Oñ£þÏÿÐ{VÿÀÉ?øªÈ"“w4õ[…øK|GÿAí[ÿ$ÿâ¨ÿ„³ÄôÕð2Oñ¬ŒšN¥4®ô âÏÐÁªŸû|“üiá+ñýõ_ü “ük#è­9~-I½ö5ÿá*ñÿ˜þ«ÿ’/ü%~"ÿ þ«ÿ²cÒU$–È øJ¼GÿAýWÿ$ÿ?á+ñýõ_ü “ükQ“è)¥…ª5ÿá,ñý §þIþ4£Åž#?ó0jŸø'øÖE•O/ÍøJüGÿC©ÿ’'ü%ž"ÿ þ«ÿ’d‘IU(¡#\ø³Äcþcú¯þIÿÅSá.ñýõ_ü “ÿЬœàýïÂÁïYZû?È£Xx³Ägþcú¯þIþ4¿ð–xþƒú§þIþ5‘òÿU&~µJËâýlÂWâ?ú5_ü “üi?á+ñ&x×õ_ü “ÿЬŒ·f"—sâ'ñ¤ùpÔ×ÿ„¯ÄcþcÚ¯þIþ4Ÿð–x“þƒÚ¯þÉþ5‘»qëNÀõý*” ö6ÍoøJüGÿAýWÿ$ÿ?á+ñýõ_ü “ük"éŠR ÜØÿ„¯ÄôÕð2Oñ x«Äô0j¿ø'øÖ9ã¶hÇÖ—»Ñ_pÍøJüGÿAýWÿ$ÿ?á*ñýõ_ü “ük )ì Xú©ò§¼E~ÌÖ>,ñÿ˜þ«ÿ’)ñgˆ‡üÌ ÿ·É?ƱèçÔ~T¹oÐ øJ¼GÿC©ÿr!ñWˆÈÿ‘‡Uü/$ÿÈ=(p]€×,ñOøH5Sÿo’/ü%~#ÿ þ«ÿ’cöâ€i¨¥¸\Ú-ñÿ˜î¨íòOñ ø»ÄGþcz¯þÉÿÅV0>ß­.}…U•¿àÀ&ÞF±ñgˆ¿è=ªû}“üi?á*ñ_øHuoü “ük+pþèü©=?ZR„Ó}aâÏÿÐêÿàdŸüU?þ¿ÐVÿÀÉ?Ʊ¸ô ãÐСmì6‹Ÿ€#cþ¿ÿÐUÿÀÉ?ÆøJüGŸù5_ü “ükUré ýMøK|Gß_Ôÿð2Oñ¤ÿ„³ÄG§ˆ5Oü “ÿЬŒÿœQúR»°Yð•øþƒú§þÉþ4xŒÿÌUÿÀÉ?Ʊñîi@>´â»¯ÈL×ÿ„¯ÄƒþcÚ¯þIþ4ÂUâ?ú5_ü “ÿЬŒQTéÅ‚l×ÿ„¯ÄôÕð2Oñ£þ¿ÐUÿÀÙ?Ʋ=ëK·Õ‡çG³]¿!sßð•øþƒú¯þIþ4Ÿð•xþ† XÛìŸãY'ëIÁïùVRо¥ÿð•xþ† Wÿdÿ_øJüGÿAýWÿ$ÿÇÚ–ª*„îlÂYâ1ÿ1ýSÿ$ÿ‹+ñ?ä?ªÿàdŸãMÿ„«Ä}õýWð½“ük)¸Î9¦­sTŠæ6Z£cþ¯öñ«øÞIÿÅRÿÂWâ?ú5_ü “ük>˜4{­(òu@ü‘â¿ÿÐUÿÀÉ?ÆøJüIŸùêŸø'øÖ9*ñ/ý ¯þÉÿÅRø”u×õSÿo²dœ{ÑôÏãO’ }%ð?U½»ð^¯w}wqw,Wm†žVvÀN2ON¿zŠYÛª§ÚBI3ðZN¤úO ¯ øŸøWšîçêOýµër^A;y‰c%ÒÆx•QHÏû%ˆÏáXKâbdw7FÂ_$ êFåÉäJ*–£sÔé$LHÙ‚ÁR È#±¢¤ k«+Kè„W–°ÜFBÍqŸ¡¦>™§Ëh¶’XÛ=²¬-”AŒUª(%¶Z"°F JV2|€ã zåQM¦Ø\@`žÊÚXK™ o²î$’Ø#©$œûÕª(5‚Y"VBYÀPÔŸZ‚-/O‚ÞKxlm£‚_õ‘$*þ  ·EUm2ÁïãØÛ5ÐÆ'1)qŽŸ63V¨¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€3F‡d£›¸“²Ey2*û Àb­ÚÙÁeŽ 3bÌY˜žå‰$žƒ“ÐÚ§¢€(>fò¼ƒí1—bÌ!º–5$õ;U€ÉêxäóSZX[Ù *åäÆ÷’F‘Ž: ÌIÀçŒã“ëVh >øÙÿ$³Rÿ®ÿèÕ¯•Žÿ¯ªþ5ÿÉ-Ô¿ë¤?ú5kå^OB+jJãBÒghÞƒôÍt]¥°nCÅ”Ü{cð¥çÔþ•Ÿ;ê‚ÂàzbŒA@ã½0 Š2;‘FÑéH~ƒó¡É 9`ÒÀhÐÒóKVê)p=ÿ::úÒÕF=Âãp{^}J Å'©ÏÒ“µô!OR)¡WÔ~tà«éAÀ©8-Ý„G¿çK“èiƒÓà9ëùÕÓWøA±7ê(Èì)Çð4ªSø—ò5£Œ—Roä3¨ô qëReoΣ8?SJÉjØÓo Rõ4™£=ëMYì}ÿ*JþðüH¦’G§éMÂÚêJÜsKHzPý‘PšNűi§¯+ùT€çøðúÑ(suìF[Ûè)Ùû´RQ•ôc¸QHqÓ<Ð*·ÿ‡QGáEŠÜwlZ6çµU8E¢nÅÚßÝ4maØÒRžçó©v[QI>¦“pèǹ¥¥Í/ëþ,(n:š ”ÞGJpcëV¤öýʆŠ)Ù'©Ÿ•.Gч0t£?J(ü*´]@J?KH3Ÿj‰ÝXNýCK‘ÜŠ(çµf›ŽÅY½”zR„¢´å“ÖÄó-®%'J\RSh.—¹ €}:N}M-G3z5øÂm”¹¥eGRhåKTìò¯B(§½³MÈÎ2*ìûŠþAF=? \{ÑÀ¡¤÷ ‰×¨¢Ž; RКA¸Rpi 2}+« ù @ÇLо~”v¬¬“º(Z)œƒÒŸW§¥…a>€RŒâ’ƒT•µî-ö¤þU$`Èñª‹æ&O•\hF?Â*w”Àt5aD}ÐûiŠÁ ÿf©Av2u™žA¢’=jiP#pjŸj¬ZzÂWW ãÔѸ{ÓJŸANUÇ¥cï¾…\nïoÖœ3éúÓ©1ÏZ¥º€ûP=Å-4õàÖ¥Õˆ\{ši§ó§|ÞÔuÿõÔJ7Ù o£ò çRœwó :Ï”`ç¦iÙoîÒœöÍ&ãßùÒ²@!-éJ7púbû‘T¢À1êçKšLzLÔSÕ úài?ð®<@yé2蕯jhÖDq¨€*Ø ñ_¿òMüAÿ_蕯lŸîšÂ[²YÂøšFƒSCó" ØîrGòŠoŠÿä%ýpúQP3¹¦¢É3ºÆUBažqœcò§RÙ7Íuí/þÈ´Ä/Ù¦ÿžñÿߣÿÅQöi¿ç¼÷èÿñUcu©ˆ¯öi¿ç¼÷èÿñT}šoùïýú?üUXÝFê¯öi¿ç¼÷èÿñT}šoùïýú?üUXÝFê¯öi¿ç¼÷èÿñT}šoùïýú?üUXÝFê¯öi¿ç¼÷èÿñT}šoùïýú?üUXÝFê¯öi¿ç¼÷èÿñT}šoùïýú?üUTÖu9lRÖX’K»Éĉ §‹69À N;Õ'Öï4›¶ƒWLm-ÌSZÆS>XЫ1çsÏ=(cìÓÏxÿïÑÿâ¨û4ßóÞ?ûôøª¡ˆídÚg‚âÑ$®c{€ ·ü~·£±2Š$Ò£.¿øà®gšÐN׉ƱszÛð9¿±x?ò/ø?õõwÿÇé³ô.¿ðŽèÿ¯›Ïþ?Z—}‚¡iªŽ¤?•S\‹”k€}„ÿ0k¢8¨ÉsEJÞŒÚ8·%{¿¹~ÅáüÿÈ@ÿÀ«Ïþ?Jtýªøs@?öõyÿÇëJ=7OÚ1r¸4Ù4í0 ´Mø)4,L{Kîaõ×{]ýÈÎ98ðùÿ·»Ïþ?OV’G>п «ßþ?R?J °št¯ÉéMv“'ݼ•¾„éOÛÇ´¾æ_Ö¥ÝýÄm¦hãþe} ÿ¯?øý4išYéá] ý.¯?øýJ4Ý“‹™ gŸåW Ó,ãÆÎG£Rx˜%ªs&XÇ¿áÿÊm;KN¾Ñ¿ ïOþ×§&¥?üÊZ@ÿ¶×¿ü~¶šÒüøƒ7òÓanü±“þþ0þµ?Z¥kêGö„¿¤c¾›¤''Âz?ýþ¼ÿãõ[ËÑ7ìѳèg¼ÿãõÑ‹8`?W'úÓ>Æ›ú¾›Ž8bi=‡Áõ2LÒdÿ„OEüg¼ÿãõ!Ò4¿ú4_ü¼ÿãõªÖî0Ùüéé¶ŠH*Açå"—Öé-uû™?_“ëø'MÒAÇü"š>ëµïÿ£û+Mê<%¢þ77Ÿü~¶%Óer wÞZŽ£fsQK¤[º‘,î}HÍ%¡-ýKÿ›ðÿ†3?²ôßú´Oü ¼ÿãô+M?ó)h¿…Õçÿ«ÙR.MÈÇ«8«1èvd„{ÿU9bi%y_îe¼k]ø&KÙiQ|¤þ^Ÿý¯Pìu<ø;KY¯þ×®¦= ¨ù]˜{±¢M;æ1Ça¶Röƒ[«œÜPéôðŽ“ÿïþש¾Á£÷ðž‘øËyÿÇëi-cSÝqïÿש>Æ®?×°ú¹ã(Çwùñîú‹a¤žÒ? /øý#Xi=?áÓý´½ÿãõ±ý—“Å䟙¤:™ÏÚe?ð?þµOöŽùÿ1¬coÀÇf•ÔøOGYï?øý2K]!óx[Fÿ¿÷Ÿü~·F"M©&œtèÈù¶·üí 7ó~bx枬åZM é'ßϼÿ䊞84YFWÂz?ýÿ¼ÿãõ¼4ÈÃçzmþU8±@¿) î¢Xü·Ÿü~Ÿ:$<-¢ÿßûßþ?[òi8#qdö¨§.™èä{àAMã°ñ_æ'˜hc ;H# èÇé5çÿ¨eµÑ£øGI?I¯?ù"·Næœ-ÔßAð¦7…^AŸß¿ýóþ,à ôsüÇOÛßð0­—F–à"øGJÏßÞý¯]Znƒ´gÃh>Ó]ñê,ü;sh䈎Ù^GãZK§Ü(ù¢+õ®lVeN Ô§wêc‰ÄNoÜZz• Ÿù–tïûýsÿÇ©­§h#þe­;þÿ\ÿñê³,MÞÅej3ˆ£<çûå•a„¯ˆÄKIœ±©VRåÿ"FÓ@†ãÂÚ[ö¦ºÿãÕ€eÐÉÿ‘KHÿ¿÷Ÿü~§½½’E*I#ÜÖa5ìMZ)IžÞ3P÷‹~f„?æQÒ?ïýçÿ¥óô/útûÿyÿÇê–M¬–›eß;C?ó(i?÷þóÿÒyšÿ™CGÿ¿÷Ÿü~ªsëIVýhh Þv…ÿBŽ‘ÿï?øýn‡ÛÂ:Gýÿ¼ÿãõKñ U$ß7Cÿ¡GIÿ¿÷Ÿü~7Cÿ¡GIÿ¿÷Ÿü~©iϽ);xË¡wð–‘ÿï?øýfƒÛÂ:Gýÿ¼ÿãõGö©x÷¥{wÍпèQÒïýçÿ£ÎпèQÒ?ïýçÿª;Þ§`Ôj¿;B?ó(i÷þóÿÐ&Ñ?èPÒ?ïýçÿª™„Þ‹u¸|íþ… #þÿÞñú_7Cÿ¡GHÿ¿÷Ÿü~¨{\æš»Ú~5«x\6šuµ„{ß1[¼¬¤ùcæÌŽÇ=\qÒ½VºkÉ~ÿȉ®ÿ×I?ôP¯Wºw\‰ÜË)Pë’?LÖ2݈á|Wÿ!(?ë€ÿКŠa£Ì5[ʽÿžö¿øßü]Uïü÷µÿÀvÿâèϘhó Vò¯罯þ·ÿG•{ÿ=íð¿øº³æ<ÃU¼«ßùïkÿ€íÿÅÑå^ÿÏ{_üoþ.€,ù†0Õo*÷þ{Úÿà;ñtyW¿óÞ×ÿÛÿ‹ µKí(aÛ3A=¼¢h&QŽPA CYZŽ•w-ýååÏÛ.ÅŒÐ[Ç w/8\±,p^Ý+kʽÿžö¿øßü]Uïü÷µÿÀvÿâèßC–îÞª]ãK6¶HÖ/,ªº€ÅŽN[:ñEŸ†ÖÖ9#ÿ‰x…e†Ác—‘Œ³çð5±å^ÿÏ{_üoþ.*÷þ{Úÿà;ñtZ-0Ç>—'ŸŸ°@ÐãgßÈQž¼}ß~µ4ö†mVÎûÌÇÙ’DÙ·ïoÛßÎß÷ÈÿoãI‘ëM®íþäÖÈ¿òoó¶?ï?ýò?ÆŒGýöÿ¾GøÔy4¿O/fÿòmùö¿òoþH~Øû³ßýz1÷›þùÿëÓ0}M/?äÓä}ßáþAíaÿ>×þMþc¶Äz;~ ÿפÙ÷ŸþùÿëÒ}i½›ïù{Xϵÿ“˜ð#þóÿß?ýz?wýöÿ¾GøÓr=EÞš‡÷¿/òmùö¿òoþH~#þóßýzLGýöÿ¾úõáïKœö4­ýïëîmùö¿òoó$ÄÞoûçÿ¯I„þûß?ýzoáI¯çUi[wý|…íaÿ>×þMþdјã‘[sp»ÿ×®–ÇQ¨TXÉräJå?Vmá‘Øl}4ý“©VݾG6)Q©Ê ÿ&ÿäŽÑcÿ,âöÔÿñ5:´Ê8Xïñÿâ+ «ˆP²}*FÕdQÍ´«õçÔÊ¥'¤Dô¥ó—ÿ$kK=Áÿ–qßÓÿÄÖF£©½¸ÚUCèùÇæ*•γ1"•úƒþ‘,­3–v$ûÖøl¾45oS«F.\Ó¥ü›ÿ’-iK¿wÚgüÿúø©×\¸$8ÿpgùÖWJ+«–ú7ø/ò= zQÿÉ¿ÌÝÄ`a“êWü [‡ÄWk’ÓKô/Œ~UÌdúšLæ¢Xj/uø/ò3th=©Eà_ü‘Ø/‹n¯êäÿJ³‹o\€»?íõ«‡É*X§16p>¸æ²yn[Çòÿ"8%îÁ}óÿä@]oPe¢AÿmHþ”ñªÜcç´ÿÞ˜ÿñ5ÊYje2¹=ËçùšÑ]FR8·oÌW\ž û‹ñ±çÔ«(¿áÇï—ÿ$kI¨£)¤Û?·šøšoöœ È&Ýí³ý–²Q¾rÌŸ©Ѩêg­ˆ?Ö…–´­oüÿ*ÚkJ{ÿävÖ Cƒ¤FÝiõ Iý¯ ¡a£Æ}¼×Sú¨¬Ïí à?ãɉúþ4ÖÔõ |¶$|ëGöo—þNÿÈdÿåÌ>÷þeÃâ 3ÌØÚtAóŒ߯×m=µ­?:dg— ’Ö_öž¬?åÎ3ÿÿëÔm«kÿÇ”÷ìÿ_ÔZèÿð7þFª¤Ôa÷¿ó5Nµ¥ölxá‰ÏÓm^K¨\ ºdc>·-ÿÄ×7ý¯«÷±L×&ÿ¹§xÀfØë´ŠŠ˜ Î6׬Ù*$´£½¿ÔÞò&”~îÖÙ>·öZB’Â>{[Vú\°þkXÇU¸A–ÏÐþ™¦l^¹~²ý+Ÿû'üß‹3ö‘{Qß/þHÝHåœ|––Ëÿo'ú-/ömà91ÛcÓíÿˆ®vM_QòÉqîæ¢Ýæx¶Éÿ®”ÖS‰é$RpkZ17ÿÉ+©€~òÊݾ—-ÿÄTbî0xÓ"ϽËñ5†5}@ÿË—ïý*UÔ®[­©ÿ¾qN9]{{Îÿ6Lª[j0ûßÿ$mý·ùÚûlßüME%äX%ôرítÃÿe¬–¿»‹%#þºõ©‡V™xk ÿd?¢]HÊúýöªßü¹‡ãÿÉžÿL*HÓ£9î—„gñÛV »·X×ÊÓG`n‰ÿÙk!õ›‘÷tÙÕHþ•4Z¤²l¤Sš˜)Ê<­Kÿeγåþ ~÷ÿÉkpüEknŸïHÇÿe© :”ãý]®=¥#ÿe¬6¾˜ ýœÿßÌToªÎ¼y/øHõÉý‘Sìé멬¥¤©Gï—ÿ$o®Ÿy- ³ÛsÿÄPÓI ejí£ÿñÏGª]‘’}äÇõ5 Ô/›ïY©ÿ¶Ùþ”<¢½ýçÀ§RøhÇïü‘´oˆÿ— _ÂWÿâiª\ÎØwcÿ²ÖWÛçlß>Ì1Ho®OKQøËéN9L–ëñD{wÿ>£÷¿þHØ]EßïØÛ“ÿ]Xìµ2¼òÝØÛ ÿÓsÿÄÖ¾¸›B~Ž FºÆNû=ƒ×ÿZ¢YEGðéó¸ÕkïF?{ÿäóg|Náoj=¼ïþÆŸþ—ÃÚZŸûløšçάÀÊ¡“ÿ­@¿¹“¬0°ÿ®¹þ”dbíÚÁj¨Çï—ÿ$obiø[KPë«ý’¢}+P|ì†ßðœÿñ5ŠÚ•äc‹tü%ÿëUwÖæèð0>ÒWK+ÅBWŒ’üF§oB?&ÿù#v QˆäÀ2rI˜E©ÔcçŠÂW?É+“]^X˜ gûò“úb¬G®Ü>Aö\ÿ…m[-ÅÔw•DþV.Jûýòÿ䎔ZÞuHí¿¤û(§bùx6¶çÜ\ŠÖëR7T˜þ4ïí'?òËó`+击LÍÔŠÚ„~ùòFÓGty1[£“ü£ ZܰȎßñ–Aÿ²Vê’ãÈc?ì¸ÿH5‹¼àîüŸè*–QˆZ©$ pzº1ûåÿɆ •ÿ–vß÷ÛŸý’”hF2¢Û›ÿX¿ÚwÇXþÔ„JqÕ¤ã(¤òŠýÓþ½í ¶£¾_ü‘®u ä80Ú“õoê´-þ£!ÂÅn?í§ÿcY‚ò23æ'àôÓ~ªxlýiÿdÍì•Éúÿð—ß/þHÚòõ99)lí»ä)Ãí‘ÞZZ·ý·oþ&°N¨ù3~Á¦¶¥;}Ûf«b¡å›V/ÛG¥ýòÿ䦿hÏüƒíóê%cÿ²Trj—„a"Ž?¤Çÿ‰¬¸ï® åí6ÀÁ¦M©*¹H­iåþòüIöí»*Qù9~’$¼×/í]wKòž£ÌcúœR&·s0ûàýeÿëV ÅâÜO¸¨uôd©c»‰F¿ä•ê,¾Š[~ üަ¡È¯I_Ö_ü‘­%ôäî*Ø8çôªáï-[>»ê fiä¿*Ï– ‹cÛø[Ã|.ßwùIQëN+ç/þH[™bñ•ú-W+÷ØÀGøÒ0*p7Œõ5"Ûßòÿ#Ó…JiYS_ù7ÿ$8,]ü.Øÿ¼ß÷Çÿ^˜OÒŽ½ë%uü‹ö°ÿŸkÿ&ÿ1ø‹»ûäûÍÿ|ÿõéœzšN”Ú}ÿ/òkùö¿òoó$?ï·ýóÿ×¥ÄÞoûçÿ¯LÚ“ð4Ô¾/ëîmùö¿òoþH~#Æÿ÷Çÿ^Ý}¿ïŸþ½7Ô`Rör]¯¸=´?çÚÿÉ¿ù!ÅbõcÿÿëѶ?ï8ÿ€ñ¨È>´»qK’]ÿ/òkùö¿òoó$Äßoûçÿ¯I¶/ï?ýóÿצ~4¼úÕrIõüƒÛCþ}¯ü›üÇlûïÿ|ñ£lcøßþùÿëÓ8úþ4 û\ž—ù¶‡üû_ù7ùŽýß÷ßþùÿëÒ~ïþz7ýò?ÆçÔRsØæ‡üÏðmùö¿òoó=—áPQà]wi$y’uÿ–B½Nö+£âåœþòçþr6ž:ó^Wð§þDMwþºIÿ¢…zÔÿtÖmY˜IÝÝ+Šÿä%ýpúQGŠÿä%ýpúQRuEÎ^kwQë3Ù}«O°XʈEâ179Pr­¹@8îr 1¨j릗y¬®šÚ0K” R1êFíÄø«^x–ÚÊâò7µ»t²Ûö™‘¤jÀܶHÁçž:PÕŽÞ"·ŽÙ'µ»€ÚÛ›¢’"†’1žW íÐàú⣻׿Ð.ÂCqkr,¤¹·3*üáGQ‚z¹‘ÅnQXÇ_HbU6÷7REn“\´¤FÎNHÉàœ.Oµ^ºÔ`µÒfÔ‰i-â€Ï˜ù,¡wqŸj·EfÿjÌÖé4zMûï?*,1\»—ô<ûU7ñ Éy¦-•”·÷‘J퀪êW3 IÏé@ÔVIñ¸œ"äÛ þÎnÂ(I»n:îûß.qŒ÷­'´ G*yr>bÝÀ9_QÏ_­KEP3Ìb¨›ä‘¶¢ç?ZMšŸüû[ßóÿÄÒOÿÖõØÿè Xº÷Н4ÍNòÞ7°ŒÛ¤m¬áŒ×Å»FC ü½ž¸·³SÿŸkoûþøš6jóímÿÏÿYÚ–¹ª-Ö«ý¯“¥B²L“«™Šï(¤åÇ$7'¥6j7’Ý-|›;Hî_í*Ŧ.¥‚.Ûò¼sÉéLFžÍOþ}­¿ïùÿâhÙ©ÿϵ·ýÿ?üMfÂA¨ê’‘¢¥ª¤v^¹ºVmæPÅ#HÛœ·=GEâCZ’Ú=-b/§Ç~ít¬ã÷™ÙÚFÊÙnqÇ€4öjóímÿÏÿFÍOþ}­¿ïùÿâk.ÛÄwúÙ°HKh$žÀ^Ê×JÒÉÚ+ÎCsÛi-|G¬:2;k{‹‹Fº®U¤Xö°M€)RIlóžès@»5?ùö¶ÿ¿çÿ‰£f§ÿ>Öß÷üÿñ5&…©¶¯£[Þ¼B)rÈ€ä+«`¦TÖelÔÿçÚÛþÿŸþ&šŸüû[ßóÿÄÖ­•³SÿŸkoûþøš6jóímÿÏÿZ´PVÍOþ}­¿ïùÿâhÙ©ÿϵ·ýÿ?üMjÑ@[5?ùö¶ÿ¿çÿ‰£f§ÿ>Öß÷üÿñ5«EeÇ$âo&æ%Êî]­¸0ΨüêjK¿ù [ÿ×ô(éi ãþ'@×>»…d‚2ÒGóO:Bƒç—r~'Ú¼ûoùÿÐÇýƬÿøí{?ƾ~ê\ã÷ÿèÕ¯•@ÇzÖœn†Cãþb:þ¬ÿøí)Ñ'ÿŸýÿvüv¼ë#±>¢´Û¨‡ý‡1ë¡àîÏÿŽÒÿaÏÿ?úþí?øíyÞO÷A¥Û’¿P=hsÿÐCCÿÁÕ§ÿ£ûoúhø:´ÿãµçg‘MÁÿJ«´=ûnú†‡ÿƒ«Oþ;GößôÑ?ðwiÿÇkÎsŽÿ™§O§çI4=ûúhø:³ÿã´ŸØswÔ4OüÙÿñÚó³¸t­&æîåJO¸‰ý…(ÿ—ýÿvüv—ûoùÿÐÿðugÿÇkÎÇ=Ú—ŸBhIôü€ô?ìIè#¡ÿàîÏÿŽÒÿaÏÿA ÿVüv¼ïÔr}ª¹P=ûúhø;´ÿã´aMßQÐÿðugÿÇkÏ0{’i3ŽÇñ5.=ÀôA¡K×ûCCÿÁݧÿ©bÒnbl®¥¢ûYÿñÚóS“ü4õ NqWN÷²&I5ª=fºA‡¾ÐÈÿ°ÝŸÿ«9b?ãûDÿÁÕ§ÿ¯*ŠÊ)@Ĥ}jFÓvŒ‰cükgÜóçOÞÇ¢]ZË0;u û ÙÿñÊÎ:$ääêì5gÿÇk‚’§d?…BTƒ÷úPâöþ¿3ª”cîž…ý‡?ý4?üYÿñÚ?°æÿ †‡ÿƒ«Oþ;^x=9 «{¡ÂHÚèô?ì9ÿè!¡ÿàêÓÿŽÑý‡7ý4OüYÿñÚóº2}*_õ ìz'öÿóÿ¢àêÏÿŽÐ4IÇ?Úÿ¸ÕŸÿ¯;¢…¯Phôì‹¡ÓSÑ nÓÿŽÑý“wÿAMÿ–Ÿüv¼â—ÕYõdÙv=û*ïþ‚š7þ-?øí/öe÷mWFþÖŸüv¼ß¥¸ªåo­‰qcÒ?³/¿è-£ÿàöÓÿŽÐ4ÛáÓWÒýÇm?øíyÁöþTÓK•­ØrÅô=,iÚmcIÿÁí§ÿ¥v£žu+ÿ¶Ÿüv¼ÓZ >[j.H¾ŸéÂÂøù é_ø<´ÿã´Óe¨šÆŽ~ºÝŸÿ¯1ã=éÔ–½P•(®‡¥fÝ“óêZ}u›?þ9R  8ÔôeúkVüv¼Ëv; nò„~œ­»üéEô=<Ù^º¦ŠÞÖ¬ÿøåFÚuÑ?òÐÁöÖíþÕ¯4ô£éEäþªP]N7ê>]_E÷´ÿã´=DõÖ4cÿq»?þ;^c€}(àzPî·eǧ ž­¡±õ:ÍŸÿ§›[ìauM~šÝŸÿ¯.üM(ö4&Ø}Qé¿eÔ¿è1£ÿàîÏÿŽÐlõ×XÑÿðwgÿÇk̈#µ&qEšz‡²§Ñ#Ò_L¼¿©èõÖ¬ÿøíGý‹qÿA ðÖlÿøíyØÅ¹üªœ^÷IicÑ—Iº^šŽ†?î5gÿÇjQ§^wÔ43ÿq«Oþ;^g@ÍMÚê7M>‡§ >ì/t1ÿq«Oþ;L}2í¹7úã¬YŸý©^hO¾(Áîh»þ¬%J)ìzWömæ1ý§¢~Ý þRÓ—L¼ï¨èçþã–¿üv¼Ï¡ç4´âîœ{˜t»“÷¯ôüZñÊJ•:_h€ûëVŸüv¼ÎŽ=?Z­Iöq=8Ù]ÿÐCAÇý†­?øíA&“q'&ÿCÿÁÕŸÿ¯9ÝØ RCòc4ºˆ4[ÓRÑðwiÿÇjUÓ.—þb:úëvŸüv¼ØÜ_—Ðþ51^c”SèzIÓ&?z÷B>ÿÛvŸüvìÉûj(úk–ür¼Ô°…s;Úà©Ç±écM¸ÿŸÝ ûÿmÙÿñÊC¥\Ÿù}ÐÇýÆ­?øíy§áFphMõaìâzWöeÏC}¡ûZñÚC¥N:^h#þã6üv¼ßñ¤9íIó’'¥ 6ë½þ…ÿƒ›?þ;Ht©Ï[ýðÖ¬ÿøåy®=@¥Ç|‘QÍ1û8ž‘ý'{ýÿÜnÏÿŽÒ*d?-þˆ?î9iÿÇkÍ….3Vœšº„zž—ö ìq©èƒþãvŸüv˜Ú]ãýíOE?]nÏÿŽ×›à{R`zQiîØ” ¶G£ pä!¡ÿàæÏÿŽÕ„Ò%ý»G?MnÓÿŽ×™ {Ô¨Šý‡Ö®)¾¤Î+©égNœ CH÷³ÿãµ é— ÿ1=ñÖìÿøíyé·N­8…1’!Ò\þùYPèwçDœœÿhhŸø:³ÿã´ßìIè!¡àêÏÿŽ×žŸcLÙ\õ¯¡Ò¶Ðô_ì9OüÄ4?üYÿñÚ_ì)¿çÿCÿÁÕŸÿ¯9¿ZvÑè*c ôOìIÿçÿDÿÁÕŸÿ¤:Çþ_ô1ÿq«?þ;^yíÈ£曋`zöÝõÿVüvì9è#¡ÿàîÓÿŽ×žRÿª¦Àz/öݵ ÿvŸüvèWôÐÿðuiÿÇkβ=E.O÷s@‰ýƒ?ýtOüYÿñÚ?°¦óÑ?ðwiÿÇkÎÀÿg†„»EþÄŸþ‚'þ¬ÿøíØsÐCDÿÁÕŸÿ¯;ÀíF*¹d¡ÿaLæ!¢àêÓÿŽÒÿaÌ?æ#¢àêÓÿŽ×e‡j2aš€ôOìY¿è%¡àêÏÿŽÑý‰9ÿ˜Ž…ÿƒ»Oþ;^yœv¤ÉþïëO}ØXúsá£Yø'\浘—vÝmuê?v8Ý0Ž™ÏOZõ9þ靸ÿ$ßÄõñ'þ‰ZöÉþé¬$¬ØŽ Åòƒþ¸ý ¨¥ñgü„ ÿ®ÿBj*w5ªéWÚœW6¿Ú¥•ÂìhÚ×s¨#knß•8­Š)ˆæ5_.¤·IöˆvÏ Ä­=·$8]¿#õ—-²@‰’Ä‚F1ÔöÆ)NqtŽooįö9-a+ß,8™¾c¹¾Uôtæ·¨ vã±IuöˆþÄò4IŸk²ƒ´`ùSr8©}¦‹Í ãLWX–kf· ©Âevä/J½Edjš'ö”¶®d–e0ÜÁæÆÙÇÍ·pù†8<õ5Z×Ã’ØZéÉk{šÈÊÉo•e‘²FÐÃã=ºWAEsÑøV/Úh–Á¢iÌäMb¯(%·$ÈÀÎqH­Èd2ùÓ HL`&Ý‹òõçœóïRÑ@Q@çÿëúìôª—…¥½›Uòoã†ßUU[¤’ÛÌq„ ò6á·€:†ÁäVœ°¬ÁCNåe8*}E&Ëùÿ¹ÿ¾cÿâ(ÿ†fžkß±êFÚøV´h|Æ`ªWr6ᵊœd†è8¢ïÃR™§m6üYGul–·aó2ªR‡pÚØb2r:qÅ^Ùqÿ?÷?÷ÌüE.?çþçþùÿˆ¦"Œþ–)wéâÄ=¢YÊ­›˜Ó; üà 0ÉÈç¥ á©-ÝôkñdÑY-‹yù¡£O¸G̸a–ç‘Ï"¯l¸ÿŸûŸûæ?þ"—óÿsÿ|ÇÿÄPðÃØý‰´kái%µ ³-4>pxÇ ‘¹~`rsœrx4‰áw°KÒo…µÅ¥³Z™'‡Í¡!‰`~mÃ9¹àÕý—óÿsÿ|ÇÿÄQ²ãþîï˜ÿøŠ›IÓcÒ4¸,bvuˆ»õv$–cõ$ŸÆ®ÖfËùÿ¹ÿ¾cÿâ(Ùqÿ?÷?÷ÌüEiÑY›.?çþçþùÿˆ£eÇüÿÜÿß1ÿñ§Efl¸ÿŸûŸûæ?þ"—óÿsÿ|ÇÿÄP™²ãþîï˜ÿøŠ6\ÏýÏýóÿ@tVfËùÿ¹ÿ¾cÿâ(Ùqÿ?÷?÷ÌüEIwÿ!+úã/þ…-FíÊòÉ,„mÜøàz%!ž}ñ¯?ð«u,ÏHôj×ʼ÷¯ª¾5ñð·Rÿ®ÿèÕ¯•FOZÞ“è4{~t›~‚—ßó¤?îæµ”z´Žçõ J@=©p(ú aßÿ­G;š9ô4¬€M«þM‰…--—Ù˜>´Ö÷4î}GåIŸSS%ÐÝŽ”¹¨ îìõSBmuxÇ{ѸzÊŒƒü?¥-CFHëÂþí¯qU{lć®)G·çLǦ)ã§QJ2mê‚GB xy}_ó4ÕôÏãRáq÷ð5Ö¡Õ3IuDl\ýâLüiÍ€x}i¾õ싈Sƒ²Ž›AöÏáRÚL™#¦šUúŸåF[ûÍFIëš®d÷¸¹m°”´œw Ô¤º¨½:PIìh“w<šrq·a$À“ݨRÒö©ÛmF9£š1ž¦Ž)Çšàì-%´ùµ KE%6Ú´R`}(ÅG4›Ô«  {QKÍZM“q0;уü Qß4»lŠžX½Âï ßŸ¸ïÂŒ“ÔšB3EšØ~£Ã/÷E&}Ð>Ÿ•.j”›ø‰²è…Ü}i7AFI¢†åÜi!r?º)>€ NœsHqÞ—8X^hüh¥úÑË0½„ǾhçÒ”QIŽzʦI¡¦€ QÞ€?Îij¢•„Åß·¸üèÝ»ßèi@SÔøR^ÅI«÷×R/Âqè:8ô¤ü(ǰ©kÈ´“ß.=©k7½J¸‚Š9£½ZKk ‹Iœ÷§vê)0}A8 ˜)AÇaøÒc•JéÔšGP¿•0¾{~B–Š›·Ô\©tð¥æŒSAlw5IFÚ…ßAžzîÅ7¯4;ŸÒˆÙ=Jì~Hèÿ­4‚{çñ©]ƒ€ #NÍÆ­]ÌÒ—DGMÃv8¥<÷çëI‚;šä©fô7W°dͳҌïPHõýj>c“"7·ëNž£4ï°}1ùÒ#µ:šTzUËšÛˆnwv¥ íúÒ‚ÖëP£äÀ6ÿœÒyb—¯FcÿJ9bÞˆòýéBã¹¥üÿ:?:®H®€„Ç×ó¥úioB*çsRšnÀÜ:tò§SqÏ9ü©¸öè_Cwýx÷2襯TP¸H)mÞgQ"2á½È$`ý3^Wð$cáæ»ÿ_R襯SJç—Ä&dßÚ}¢ãͺ»O ; ÷ÿëÑVï¿×/û¿ÔÑP3~Š(¦ ¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(Ͼ5ÿÉ-Ô¿ë¤?ú5kå\{‘_U|k8ø[©úiþZùSvzVôœRÔQH(ǽtsi¢ wí@Éî(Áõ£#±¬õ¸Ã§½'>Ÿ­/z:ô5Iù…ƒ§©£­éš1Oq IøRÓ~lÿõê[Hbäj¯ùuëŠM¸ÿõRæ’Ø¸¥‡¨£9éŠn?Þ¥Áþõ'90°¸>´¸¦ýH?…ŽÛ:|ÈǦ(çüŠB ö£¸¡7}€v`OÒ±ñ‘L ƒ*x•½r=Ån¹_S7ÍÑ Ž¹¤éÍ+0=BŠ(vè5~¢RÑJ1Ü~F›Ü.ÂqÜRîÇqOžÍMÚ£·éPã4ô ¦.ãþÏåHO­!8 r)ó=ƒ• ô¤?J0aF;ÔJå £hÎqE>†šå¶ îö¥¤Åâ•ÒÝ¡ÁãŠ?*3í@>ÔhúÁÏ|Rô£ ÙsFº‘T®¶×Qx÷¤>ÄÑNÝ9_ÖªZîжØgçG4âAû£­ ¨ä]q)h¤$ŠvåÝŽ÷J6jLŸCùQœúŠŽd÷AaJF=3KITÔz Wô4ii9ïI¤· DÁèÞ=ix=¨ úTò¿²1ô¥Ü»úQŒúèϯ×7Y€ ô£ð¥OñP@õ«÷º?ÈWBgÖŽÔáz_“šƒêÄä0œQJq×&Œßô¤ ï¸Ü„惞Դ™9¥-4c^AŠZ) ÇéJê(,. LI¸v¥)_Ì,(â‚øþø CŸZ?:§'²ÐV]@Ÿ|QKƒèhÁTÓO¿ê‚ûRÑž?úô”›]/A óÀ&Œ“ÚIš‹ÊúÈvÜà€xp7#3G€¬oÜ–—T);ºœ~mpsIšNzÿ:r’[¡%ØN)¥AêÔ¹' èhçÐ×4­'± ›l6îþ´¹ÇP:^{P££Ò“ éúRŸ|Rî?:wí`°»G¥Å/ãIŸNjšŠ 9ê)ퟥ.}x¥¦µ( óI·ÜÔµ®Ã¸¤žßÊŽOZ?ÒÓölW(Ï¥=ÿ• cQ~]6¿R(Èõýhɤù‰éM¾Úô/À“Ÿ‡šïý}Iÿ¢–½M+Ë>ÿÉ<×ëêOýµêi\ÓøÄT¾ÿ\¿îÿSEßë—ýßêh¨¿EÂøZÖluùÒ[Ë3JHÔÃs€¸G$|ÛÏðàçLGuErÓx¦xoô½:ÎÑ59¯-<õf+`rpAÀ8Ï銪ÿíSJ·¸6e.æ¹{co,Ê‹¦7nðÜ9Çzìè®9>!Z>“%È´g»[¥´[x¥W#gn×8<Ô>'ñˆ´ýÞá4ä°®Ö&ÿHIr¤ »ß‘í·Þ€;z+–ºñN¥k©Øé‡B_ÝÂòùIv0˜'‚ÅqŒ çß5×g†Kÿ#F’x´Õ_¶È.|¶#$(ÇÍŽ}:P]ErsxÛ̺h´½2KÔŠÍo&4G±wêpGñÄ­c¡OÓK«B·l*qÔ®sízì(®GWñ•Ί¹»Óm–0òDu(Äœõ ¸ËcðÍ>÷ÆrGik§éOxn¬ômçˆð§' ösß ®Šä4ßh\éAô©`´Ô‹$3´ª~uûÃhçã?¥uôQEQEQEQEQEQEQEQEQEQEçßÿä–ê_õÒýµò®kêϼ¿ 5Dgc$8U'÷‹_,ÿg]ö³Ÿñ¿Â¶¦Ú[ Ê+FÈ ƒÜÒŽ*ÇöuçüúOÿ~ÍÙ×óéqÿ~Ú¶å{¥a{Hw+ò}¨ÅXþλÿŸ9ÿïÙÿ ?³îÿçÒûöÔ$û´‡tVÚ=)jÇö}çkIÿ죭¤ÿ÷í¿Â‹$õViè‚“ þMXû çüú\ߦÿ …Ùÿ—9ÿïÑÿ vBö°îWÀ¦7\U¯°Þ–W÷èÿ…'ØoOü¹Üÿß³þœìôCö°îV Ã¥;-ýÚ±ö ïùóŸþýŸð¥û÷{I¿ïÛRJÛ\=¤;•rOU cû¿¥Zû çüùÜߦÿ ïüùÜß³O®áí!ÝóH[ØÕ¯°^Ϥÿ÷ìÒgÞÏœÿ÷ìÿ…[‹¶áíaÝ}å\Øþ4ìTæÂðË¥ÇáRÿgÞÿ—÷íªcCÚCº!]ƒïnü*PÐàoÄÒý‚ðt´Ÿþýµ`¼ïi?ýûoð­ÔšèC•7ö¿'d'„ʱö¿ùõŸþýš_°^Ϥÿ÷ìÿ…;õ8.«ï+wèh©Íç{I¿ïÛ…/Ø®ÿçÖoûöjcï2H.¿‰_ŸJZ±öÏùô¸ÿ¿gü)>ÃyÞÒûößáTì´¿õ÷ªEõ_y_è($J±ýŸwÿ>“ÿß³þ¿Ù÷óé?ýú5+™lW´‡r®G÷©IñS>ëþ|çÿ¿Gü)>Ãvüz\ß³Pù¼ƒÚC¹esކ¬ +¿ùôŸþø?áGØ®ÿçÖûökH¥mÉö‘î@1ÜQò‘Á58°»ÿŸYÿïÙ¥ûçüúOÿ~ÍÃæ‡ăî?:ðjccyÿ>—þÙŸð Y]ÿϬÿ÷ìÿ… Iôxÿ2ûÈÒ“êjÇØ/?çÒûöhû ß{Y¿ï١ݰç‡u÷•èÇ­Xû çüúÏÿ~Í`¼?òë?ýû?áJ˰{H÷Esô£J³ö ÏùôŸþýši±»òç7ýû4Ÿ˜ý¤:?Ä„þõxT¢Îðÿˤß÷Á§ ÏùôŸþýµ$û/Á‡÷þ}&ÿ¿gü)~Áwÿ>³ÿß³þ—0ý¥7Ôƒå÷ …ìjìû²?ãÖûößáIýŸv³ûfÂ{\\ðþb½ÏoÒ¬ ¿ùõœÿÛ3þŸb»ÿŸIÿïÙ¤ÛêW<;bŒú‘V>Åuÿ>³ÿß³þŸc»ík?ýû4{¨9ã܃ ¢—,z>*°]ÿϤÿ÷ìÐ4û¬ÿǬ£þÙ7øQï?êÂs‡rŸïƒøÑ–õýjs§\ÿÏÇÒ6ÿ Oìû±ÒÞàÿÛ3þjº~"öîWühÈ=ÿZœÙ^ùv¸ÿ¿Gü)•ç{IÿïÙÿ ÍÏR¹áÝRU±]ŸùtŸþý7øRý†óþ}'ÿ¿f´¿2iÔ­øÒŒžÆ§û ßüûN?í™ÿ p²¼<}šûá¿Âœi¤÷­è¯Ðr´™ÏAеýŸuŽmgU4Ó§Ý–òÿß5rO¡*¬:²¶=Í!Ï­YþϼÿŸIÿïÙÿ OìëÃÿ.—÷ìÿ…rÊ÷4U!ÝÿKœô"¥:uçk;ûöh}÷üúÜߦÿ •&´°{HwD$7¯éISý*Ïö}÷üûOÿ~øQýŸ}ÿ>³ÿß³þ8·Ð=¬;•À˜þtê›û:、ÿ÷èÒÿgÝÿÏœÿ÷èÿ…i%­ƒÚAõEsÇ|Qœûý*ÇØoçÎûöhû÷üùÏÿ~Ûü(r¸{Hw+’;ÓqÏkì¿óé?ýûjCa}ÿ>sŸûfk7æ‡í!܃ŸoÊ“wµN,¯»ÙÏÿ~›ü)~ÃxåÊsÿlÍW3¶Œ^ÒÑ\qKœÿúê°^ö³œÛ3J,/Gü¹Ïÿ~Í ±ûHwEb¡¦ñýÚ·ö+Ïùó¸ÿ¿mþ}‚ôÿË¥Àÿ¶gü)4˜½¤;£ß>É<×ëêOýµêi^_ð6`ø}®¬±º1¹áÔƒ)kÔ¹å¹WOTT¾ÿ\¿îÿSEßë—ýßêh©¿X:§… Õn'’MOT.Y`‚çln06zÎ:ÖõÄq—þ–_i?dYí´ëK&„OÁ^3Î1““ùÍ_ÿ„#H]½’}¡ ¼¦xîVOÞï=Xœ`ç¶8®’Šçäð……Æ˜öWW—¥,ÒJ<ÈÜ ¤~Ýé×¶¼ÑßM¼¿Ô.U¥ ¥˜†1´ãqéÜÖõ‡-ãÕ,µ.îç¹´…¡W™Ôï I%°£'žØª×þ Ó¯ï.® ÷¶âójŠÞm©>?¼1ü±]Ãx‡ÃS}´¶‘¦]|öbؽ½êà …‘O$¡ç¥ié^ŠÚÃA[¹œÝi!Ù|¢63?ÞÎFHºWMEsš—‚ôíNúöí绉ïcα:€À Ê’:‡<±‚òÒåe¸/k`,\ÇsÇÞý=«rŠç­¼§ÚÁ¤B“]Ò¤y ,Ë–,rw|¼þ®†Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(‚øÉq%¯ÃMBhŸc¬á±œ~ñE|Åý¿¨Ÿùz?÷Âÿ…}3ñ¯þIn¥ÿ]!ÿÑ«_*€+zMÚÄJ9»Ê)ü¯j}®¿ñÅÿ oöþ«ÿ?øêÿ…Q¢µäMîCÃÑþE÷#@kÚ§{üuÂííSþ~Oýò¿áYÔ´r­®W£ü‹îF€×µ3Öäøÿ…/öî¥ÿ?Gþø_ð¬êJ¨ÅzƒÃÑþE÷#HëÚÿ—£ÿ|/øRoê]®¿ñÕÿ Îè8 Sq¸–ò¯¹?ÛÚ¡ét?ï…ÿ OíÝWþ~¿ñÅÿ ϤÚ=OçY8¢¾­GùÜ/ííPËÑÿ¾ü)?·uOùú?÷Âÿ…gç£'û¦’QêÃêÔ‘}ÈÑþÝÕ?çìÿß þŸÛº§üýŸûá³·{MþÇñ¡ò-˜}Zò/¹ÛÚ—üýûჯj_óöï…ÿ ÍÉ=1ùÐsëEô«QþE÷#GûTípOüÂíýSþ~ýò¿áY™cÐÓ”0늘ݰúµä_r4?·µ?ùîß÷Èÿ p×µ#ÿ/$Àü+;>ô¹5²·Á êÔ¿‘}Ƈöî¥ÿ?'þø_ð¥þÜÔ±ÿGþù_ð¬Ú*ÜWD%‡¥ü«îFöî¥ÿ?'þù_ð£ûsRÿŸ“ÿ|¯øVuû~U6ˆþ¯KùÜhnêóòï•ÿ _íÝKþ~ýð¿áYǾ(£%ý ú½/ä_q£ý»©ÿÏÉÿ¾Wü(:æ¥ÿ?Mÿ|ð¬ýÞÔ{ΣÓòÕé"û‘¢5íKñòï…ÿ ?·µ/ùøoû峿ÏZ9ÿ&—õ·üýZò¯¸ÑþÝÔ¿çäÿß þnê_óòï…ÿ ÎÆzŠZvL>¯KùÜíÝKþ~Oýò¿áGöö¥ÿ?Gþø_ð¬ÿ—½4˜û*RivÕèÿ"û‘¥ý¹©gþ>ýð¿áGöî¥ÿ?'þø_ð¬ÕÛÛê˜þ¯GùÜíÝOþ~ýð¿áGöî§ÿ?Gþø_ð¬ïÄÐ~¦;Õ¨ÿ*û‘¡ý»¨w»9ÿu®êþ^˜þ þŸÏ©£põ·Eý|ÃêÔ•}ÆŸöýùép%ÿ i×u.×'þù_ð¬ìÒâ´VhŸ«Q_e}ƈ×5#ÿ/_øêÿ…;ûgTÆEÎà+þ—Žx<Ó·0èÄP’Ù¡<=.‘_r4¹©Ž·'þø_ð¤þßÔsÍÑÿ¾ü*‘»šC“éùT¸¯²5‡¥Ö î4?·5ÿ/là þnj_óòï•ÿ Î ûP­$íÐV£ü«îF‡öÞ£ÿ?-ÿ|ð¥þÜÔ‡ü½7ýð¿áYáˆ=ésžÃòª÷ZÐ>¯KùÜ‹ÿÛÚ—{¯üqÂííKþ~ýð¿áYø4„7·çR×—àW¡ü«îF—öî¥ÿ?'þø_ð¤þÝÔçäÿß#ü+; æŠi_`ú½ä_q¥ý»¨ùz?÷Êÿ…Ûº—üýûá³zRÑmCêô‘}ÈÐþÝÔ‡ü½ûáÂíÝKþ~ýò¿áYÆ–’µÇõz?Ⱦäh oSÿŸ“ÿ|©þ”¿Ûz§üü7ýð¿áY¢—sc‚j½Ûj‰ú½/å_q uÍKþ~Oýò¿áGöî¥ÿ?'þù_ð¬ï˜÷ý(¤¹_ô‡õz_ȾãGûsQ?òôß÷Êÿ…Ûš—üüŸûå³øÇz3M[mêô¿‘}ȾÚî :Ý7ýò?®ê?óôߊ¯øVyF=ü©vcªþ•¦ÞÃö?•}ÈÐþÜÔ¿çèÿß+þ£^Ô‡ü¼ÿã‹þ›úQÍ]¶Õèÿ*û¯ê'µcè«þŸÛz–ãèÿß#ü*‡mß•MŸþ¯GùÜhÿnê?óôß÷Âÿ…/öî¡ÿ?'þùáYŸ…4üžò¯¸ÒþÝÔ?çèþCü)»¨ÿÏÑÿ¾Wü+;ÐQéCºÝ Xj?ʾähnj'þ^›þù_ð¥þÜÔGü½ûå³³FE/tW¥ü‹îFöî¥ÿ?Gþù_ð£û{RísŸø ÿ…gñÜL(è)¸Iía{ `¾ähÿojŸóóÿޝøPuíOþ~Oýð¿áYÇ8â“$uaYJËFWÕ¨ÿ"û‘£ý½ªÏÑÿ¾ü)·µ?ùù?÷Êÿ…guíKDcæV£ü‹îF×µ1ÿ/'þø_ð¤ÿ„ƒRÿŸ†ÿ¾ü+?‘@9íCÜ>­GùÜííKþ~¿ñÕÿ ?·õùú?÷Âÿ…gdR ý,W£ü‹îFöö¤:ÝŸûáÂøH5×gþø_ð¬Ý¸èJpÖ’¾Ö«QþE÷#Gû{TÿŸŸüq—ûwSòôï…ÿ Í8õýhÈÿZz-ÃêÔ‘}ÈÑþÞÔ¿çé¿ï…ÿ ?·u?ùú?÷Âÿ…gšFú ­púµä_r4¿·µOùùÿÇWü)·µ/ùú?÷Âÿ…e|ǧó¥ù½ÿ:”üƒêô‘}ÈÔþÝÔ¿çèÿß þßíýO?ñôß÷Âÿ…fò:ñõ4¼ÿ­6ï°}Zò/¹F|¼ž÷À:ä“È]Å˨$Ç”¾ŸZôį,ø1ðó]ÿ¯©?ôRש¥a/‹SEd´*_®_÷©¢‹ïõËþïõ4ToÖTšÙ•Å•¾™{röû<LjÄnyÁéíZµƒŠÒx‹R¾œÜÇ´&Ë"¾ÕÁÊ« óê)ˆ±¶×³ÛÛéw³$yL¦ ° êá°ª%ñ ­~l¿°õ!:Æ%e-IçÍõò¦iz+E©j—æ6’õ¥‰Rå‚2mP Em§zŽÕi-'*žô§ú;YG|ŽX;’1סzæîÚÊ5ÕÄPD ÊáWó5ÔíËÂéqjÖ²C$¦o=z.Ü;¯''<`zÕ}rÕ®"¶xíîä–|ÈÞÕãWŒí#?¼!OŒZÏŠßYI¬/§µÜAiv¬Šè…™ž3žq¸…äŽϵlÛêúeß™ömFÒo-w¿—:¶Õõ8< |…•Í»\Ayo,*pÒG*²ƒîAÅs/¥j†v³Z\E©NñK4²´[dØá¼¥Ã>@ÈÇ99É«–¶3¨]\i÷·2ÍF`¼klLœ 'ËÆz·ô ŽŠ( Š( Š( “rÿx~uÜ/qg41ÈbyªÈ:©#­q_ð…ßÏ=4û—<ÿä3üëµ' rÆçM 4ê'Ï>SºÜ¿ÞV ÝÞµ¿šÉh®û H=‡Êz{Wÿ]÷üòÓï³ÿÆ«WA±}[ÛI꼍ŒG*GÌ;¨þGµM:µ%+J*µ PáS™ö±¹s±òæ†I<½êŽŽåò€$’$UËýáùÖMÛF,E¿ÉûÉâá@çç\ð{Ú®ÿeÚv?ûô+ ä,î_ïÎËýáùÕoì»OîÇÿ~…ÙvŸÝþý ³¹¼?:7/÷‡çU¿²í?»ýúeÚv?ûô(ÎåþðüèÜ¿ÞVþË´þì÷èQý—iýØÿïР ;—ûÃó£rÿx~u[û.Óû±ÿß¡Gö]§÷cÿ¿B€,î_ïÎËýáùÕoì»OîÇÿ~…ÙvŸÝþý ³¹¼?:7/÷‡çU¿²í?»ýúeÚv?ûô(Ð ô9¢¢†Ú;`D]`0?*–€<ûã_ü’ÝKþºCÿ£V¾U5õWÆ¿ù%º—ýt‡ÿF­|«ÍoJÖÔhL/§éKé@¹ý(ÀëÍh’ìùÓxîåNÈ÷ýhàúÒi=†7nzf— ?‹ô¥Ç×ó£§ÖˆÀ@>¹úQKI­l•…¸u :ÐqÓ?­4ñÿë¬g.Èhw£°¤úΫb„ÓZ  OÖŒ ò¿­/æ~”œú€6ŽÔm–“ëü©û½‚Âä{~t´Ò  öiÇúþ¬ vhçÒŠ3ŠÓE»¬N}¨Æi ­’zb“œokÜI1Bã±¥àü© ëUnÈBÒŸOÆ‚qØ~&Ž{Š–Ô´*ÖíøS¨p:UÂ<»ÝÊi_N>”¤ÿœQŸ¯åQ7õ)+íúP=¨¤lw©NÛXÛŒ N½Å"ãSªÒoQh%/‡ó¢“8ÿõSmvM 9£'Ûò õ¡ßúÿ‡zÑ€} JSRÕú~&ÑíGáF=©;Ô¨ö*âãÞŸZ)jí%ý2tþh¦”ÏzPëSy§°ôM çƒN¦àç¯éS$ä11éšZ«PÓa6!´QÓ© ö¡K ¬ö4gA£>ÆŒŸCSó ûLûbŠ2zÒ/MDд“ÔRuéI†îJ–ÒwH5d¾_}ËùÓÁ¤Ç¹â¯š2Z‰)!9ÏQJ@æŠOÎ¥¥ØbÒ~4´sïG-õ“ÌíÈ¥¦üÞ‚¦SkoÈ-qr{~¢‚Oµõ8£ñ§_q5`#=hü8£éG>£ò¥+-†µ}Åôæ€1NùqÞš‹jíØMÛa½hÎ=:^=çE¾aq ¢Œ¯¨¥¢–«¢¼Æœzþ´`zŸÎI:ÑÉÕ…ÄÀõýhÚ¯åJ}úþU›Q…qÔÆŒžÔŽÔcÐ~u:_A‡Íê)1ž¹§cÔÊŒUr>¢ P¦?:Z*¹W@žô`g¥6hÿ=)¦Nžii¹>†¥ï¨¤Ï±£9ÿõQÓŸëTíÑ€™ÛêhÏ>Ôr}?:\×óÙ€pi0@h$zŠP~Ÿ…7õ ŸB| ÿ’y®ÿ×ÔŸú)kÔÒ¼·àWü“Íwþ¾¤ÿÑK^¤•Í%i1/¿×/û¿ÔÑE÷úåÿwúš*oÑEÄQEQEQEQEQEQEQEVúÅ/bqIS˜äTÿ‡µZ¢€3tý9áo´]²ÉqÑvýÔÞçÖ´¨¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€<ûã_? u/úéþZùWÒ¾ªøÕÿ$»Rÿ®ÿèů•ºWE¬1:tfƒ‚9ýiQVܶ_ ‡ô¥£ƒ?äTí ÅÇ·çFyÆGáI]¿•ô#ò¦šBŽ:õ Rnö4¿_2èÅ`=)Ž¼Ò’=i2§Ò¢I7¸ÅçéI†þõ.=1I¯çF0Ô>oZiSÞƒŸ½K©©i0Ç÷¨ÊúÓ²»K‘è*|Àh#üšvG¿åF½üêâšì 2=h£?Z5zub’‚}¨“iŒ9¥ÍNçò­#%mY24v¥Ü?„šiažM)J+¯ä âŽEôâŠ0=M“Øz‡=éNù»i´gž¿…ZЗ¨¸=óùRãÓ?•&3IÏùï}ÐZÝEÁô¢nü©w7sJË¥Çv'æhÁ?ZZPïB¤˜9Xo=È£8õü©HÇzCRÓ_ÌL3GÖŒRòSM^[ƒÐãHqïAæŽiÉ­¬ 0ÇÖ—š) ÷©åŠ[Žì: ]DZ8¤ëÿë£éü驵è'iïÏçEûTÎIê4‚ŒŽœRëG´Ih—ŸJjçãð§;œUBÒWÐJ? R­Üé‚”`g§4~ tèMßQéÐ\J(ÝŽ3úÑ’zÕE-ЮïÒ“QÇzN+vŒô4êN(#'Ž? #¶£Ü)i0½@Ïsšµ+î…`4ÆœBþ4öZv³½Å!)¤1=8¥ÈÏjZ™(Ëq« {ùÒáý¨üh¤ –ÉP縀ŸJZPi¨&÷m(ëK´ž‚“kwSV—(›¸ï/#ï/ãHT¥&÷MZm¡$ĤÉþïëOÜÞ´Ò[=«9GN¿qIŒÎCùÒ‚OoÖ—ò.îkžÌ±0cKÅ&9ïJ1ïW¿­( @íúÓ³¾€.GùuèJZiÿ[ç¶¢Ð^{ÿ*3ì*Nž¦—'Ò§›¸ìÿúé2ÞŸ­.hÈM%nà&3üF¾çó¥Ü(ëùS´'CÁýiF}¨ ¢›° ›4ôïÊ“ŽÃò£o¹¥ä{ÐÓê3è?òO5ßúú“ÿE-z¢W–| Ïü+Íw#éR襯SJæ–ä•/¿×/û¿ÔÑE÷úåÿwúš*FoÑErºÎ™¦ë:¤š|}“\° {zÐ#4(G>ûžƒŸL±UÌ\K5µÍÝ…ê鶺m”rB¡ƒ›–ÜÊ6Æ^j1«_߉\Þ3ÈÓ¡»Ù±NæubwnåcŒ¼ÐWErgPÕu %xïÉSJ‚óÊX‘ˆ•¼ÂAÜ(uã‚9Í>ûP7ša¸¼óQ³yÚ?-BÂà!p3œýâzPGECi¿ìpù“¥Ãì¦EÚãï“€~µ5QEQEQET7s=½œÓG•ãBʃ«:Wÿ –¡Þ}<{ú~r Æ­xR·1ÓC RºnöŠà¿á2¿ÿŸ?þøÿí”Âeÿ?ýñÿÛ+/®Ò7þÌÄy}ç{Ep_ð™_ÿÏÆŸÿ|öÊ?á2¿ÿŸ?þøÿí”}vfb<¾ó½¢¸/øL¯ÿçãOÿ¾?ûeð™_ÿÏÆŸÿ|öÊ>»H?³1_yÞ3RÌpÉ& ŽKÉKªyg•ó%ÚÄzãõ"¸y¼Y}q ÀÓØ•‘J‰Î§ï?…wrÝ”¸DW@§¹ëîÀþ†¶¥Z5UâsWÃ΃J}B Äñî ÊA*ÊÝTŽ Ôµ›º{ëónWgœ¹Ìe¹òÓÞ¦Û¨ú¯ýø?ãZ˜(ª{uUÿ¿ühÛ¨ú¯ýø?ã@(ª{uUÿ¿ühÛ¨ú¯ýø?ã@(ª{uUÿ¿ühÛ¨ú¯ýø?ã@(¨ û@N{»søT´çß¿ä—j_õÒýµòµ}Sñ³þIn¥ùéþZùTÜWE­fzÑ´‘G©k~E¸\B= 4Ó‘Ûõ¤ Þ•:OQ¥¦å»(ÏûB­N6 @ã½(úæ“>ÿ¥Ü=i+_ðà!'Óõ£-éJH>†˜~¸úTÊMu úÑŸB)¡~¿.>µQm€Àçô¦îþº~¥!€TÊZ°¸nZ23Çó¤=ÏéNéêhNLb}E(ü(ù&Üõ¦¹¯ ‡‚½ÿ§ð“L3Ð~tr{¢,»ˆsÚŒ_Ò—ñ¥Ç¸£ÙßQó ÃzʌӿFÒz j±´c4í­è*LR”{‚}„R3F@=èÀ5›––ŽƒÒÓvîÒáGcøSW{þ¡{Cv?83Ö’€y¦“‹Ü4c‰'©4”P U½~!m°˜ šSMÆ{šRÓ`¸¼ÑéF=Í©kmPÃñ¤$zþ´cðúRóëùÔ{ÝôÍ/˜ŒçÿÕZÆii"\{ ~´”b–‰. ˜Rq@õüéÅO¥ï iÜJBqKNGE•4›ÒâoÈf~¿•!’CÛô¨ÎãÉþTšè ÷Eš0}i3ìãPßI8:]çÛò¦þ”~5JMì&—Qsš))sëMy°ôiÇjL‚{RäöÇåC”D“ 0OÓéF[Ô~TœÑun£Ô^i1ƒGÍõúRÒVoT18ôÍà}¤<öÚOf â Z >æ’”V€Ó4bŒš0ÝO[Õ{ Çû+Jµ¢³QK­‹¸sÞ–“>„P½ÝÂÒw£ÀwŽw°X3Š2ñQÿê£zÕ7&!~_ïäý):QÖ‚qØÔ¹ÙBd¤Fڛ׸ý(ùO ¬/æP»‡¨ ô?¥'Þ˜QÔÑvϨü¨?Znåõ¥ëÐÕ9h ôýix4Ü{Ѱÿz’”¶ÜɤçÔPIüéÕJ-êÂã~oQ@>¹ œv4žÕtcŒz0sÖ°ëK«j ç¹cÜÒd§ô§}*7Üh8õ¤Æ?ˆÂ޾´¹í‘ùÓÑô'ÀŸù'šïý}Iÿ¢–½M+Ë>ÿÉ<×yÿ—©?ôRש¥sÏâd•/¿×/û¿ÔÑE÷úåÿwúš*oÖtúu;Ïq¤ØM+œ´’[#3rG5£E1ßIÓdŽßO´dƒˆU¡R#ÿtc¤¹Óì¯6º´·£9C,aŠý28«PfÞ‘ä0Æ^DìTe”gžã“ǹ¤¶ãËÄ)JGò‘N2 àqíRÑ@ Š(à…!†4Ž$P¨ˆ  tú( Š( Š( Š( —'ÔÒQ@ “êhÉõ4”Päúš2}M%¹>¦ŒŸSIEGq¹¶–'dŠPàö#Š÷—¶’ý’Ey&oõe8ûû{Öõ  ¶Ïm™$Ý4­¾B8ÀØ­äúšJ(r}M>¦’Š\ŸSFO©¤¢€'ÔÑ“êi( 9¢Š(Ͼ5ÿÉ-Ô¿ë¤?ú5kåLgÔWÕÿä–ê_õÒýµò¡céšÖ­¨Ð`ÿz—¸Í&ÿöM!cZóAúO™¸úPGcŠ=¢èŽM°¦{5894·c±ì´zƒKsKUÈúŠãvŠBè)r}(Ëz –£Ðú ãIóg¯éNúÕFíÞ?ýt})H”ϘCÑê1û~´`SC7÷iÙõjQkD ¿Z1íI‘èhÏ=>”& “éJ9ì(švWû§ó­ šëý}ÄIˆTú~´Üb”žx­!¦Õõþ¿ ZúÐE·åFG­.m,ÇayÇZJ¥ÃzSiØI¡1ô£˜¥Áô4¡ è G/‘W3ßá¸ô&”ÂÝI{Òl£ ¨©u_‰ ÅŠbŽ´ÝŒ:Ž}qN OûèSÅ»ãþú«p[’¥mÙ¥Z—ìÏÙãÿ¾é .Ÿ÷Õ ¾¨9£Ñ‘GcIœSüœõ‹ÿ}S„kÞUýj7+™Ž}hãΤ0ƒÒXÿ:U€±ãÙª’è'%¹>õ>ÈTpÙú54 cò’?Õr¾âç]ˆOãøP>§ñ©Ìj½XŸÂ~¯âj=–·¸ý¢"ëÞŒZŸìþ²F¿V @3þº#ÿªq]…írbi ŸCøU“ôÌ]â“ìêå¼CþC¦š¨ŠÿxcV · øi¾R“)ü JƒE{H¿øb"Ì{š*a?¼~€S·"QàCü*œ./h–ȯIŽ{U¡,Gª úMtFåX~`Tû5Ü=®º¢ Lû~”ò üi¸\ýæ¥(Ï¡jHJÖ¤ƒükøÓ°Wˆi¨i¨œÕô!£?_Ê¥ßÿL—ò¦ã?Ý_Æ…Ð9ûÏùÅSOÛà¸ÍAýÖúŠjëv]ÊJ˜L£¬IùSL€ÿ@)Úû1]õDtm™§nç ü©ÊÃÑSìÓÜnM"0(üçS_OËo ?¥Í-ÎßBCK“޵!“=Ú£êxÍ;t¸Óî„ *A‡¢“G”ãª7ýóK“º:î3ñ£ñ§Ø¨üN)ÂÝŸ•Ùÿ}Sådó®¤TTÆÚAÝ?ï¡L0êÈ֦ϰÔãÜŒŒÑÍ<¨ÄÒ˜@ÏSK–Úþ¥^âÑ@âƒM©4 ¤Æò}(Ùž´¸¹¤*=ç\ü½Ê‚—hô;âŒïP¬º¸‚ŽjÖƒŽõZn€ZBqHûPqÓŠ·9[ ¬ƒ'Ò·¨¸ •.sYÚO¨Æ†€§gëùQסŸ7ù+ LÀÏJSïšoÊ;šR•ÀwÝ4=)2žô¡‡aBk¨ E!ÝþE'ÌzÓmt@} ð'þIæ»ÿ_R襯SJòÏ5ÑÿOR襯SJç—Ä"¥÷úåÿwúš(¾ÿ\¿îÿSE@Íú(®KVñ5Õ†£©Ä—Zr}Q¢µ™ι%sµH~¹àaM1m7ˆíàywÛ\˜`eK‰ÕAHX€pÜäãpÎÆy¥¹ñ%•£”•& /™G T6ãÏÜÁ?¥lQY-¯Ûçd6÷Ìg’âŒ.é |‚HAã$Ži§ÄväZˆín¥šæI"XUT2º}ål°<çô±ERÔ58´Í;í—M·thcE à»óËŸ†k=üQ BçÌÓ¯Õíû”(„ĘÈrC`Œg…$ðx  Ú+6ÿX]=W³º–ÕÌ’â ¥{’ 8ð 2óÄ–7-m,sŠ©A7Ž1<àõÎ1×§4«ECÀ’âX|©TÆ–d![9èzcŸN*j(¢Š(¦É"EI#Ef=¬øJ´žÓLG¨¶ƒÿŽÔÊqÄì\)N[ô6h¬oøJ´Ÿùë?þÉÿÄÑÿ V“ÿ=gÿÀY?øšŸmOù—Þ_Õ«#û™³EcÂU¤ÿÏYÿðOþ&øJ´Ÿùë?þÉÿÄÑí©ÿ2ûÃêÕ¿‘ýÌÙ¢±¿á*Òç¬ÿø 'ÿGü%ZOüõŸÿdÿâhöÔÿ™}áõjßÈþælÑXßð•i?óÖü“ÿ‰£þ­'þzÏÿ€²ñ4{j̾ðúµoäs6h¬oøJ´Ÿùë?þÉÿÄÑÿ V“ÿ=gÿÀY?øš=µ?æ_x}Z·ò?¹›4V7ü%ZOüõŸÿdÿâhÿ„«Iÿž³ÿà,ŸüMÚŸó/¼>­[ùÜÍš+þ­'þzÏÿ€²ñ4ÂU¤ÿÏYÿðOþ&mOù—ÞV­üîf´³EîšD}]€E4S®è¤IÕ["©iwv×Íq~¤U“ËŒ˜ÛpA8R29'·aR_K7·jŒ¦G1>‚Ãk‘תþ¦´M5tdÓN̹EG é8%7qÔ2#RP#Ͼ5ÿÉ-Ô¿ë¤?ú5kå\~õWÆ¿ù%º–?ç¤?ú5kå=­ýêÚ–Ûã±øÒmÿdRŠ:ž•µ—õÿ aKHIíH3éBi;Þ“Qô¥ç½…7êu9úÓ¸íIúRК[™Í&÷©sާô¤ÊûÔ·Üo¹§SA_oÊ—#ÔQ]À(#éùRÆc=1IÊà;ŸoÊŒjZJÓ•X:‰“ž—ŸJB?ÚÅçp?…f¯ Éõ§('û¿‰¦Ñ[Å·©2Ea÷âüéASô5âi3Î9ª”û£5ÑŽÚóŸÎž¬ƒþYƒõ5(¢öاîJe¢òÍhq÷B¯ÑEEGÞ“—`T×RO>SÕÍ0»ŸãcøÓyìqGךhú¢”#Ðpfõ?³Ø~TÞ¥/^â©6Õ…d'øE.Ò’Š—}¬4´”¹½&sÒšk­€ZNii:Rr·QØZ( Ÿj¥}кŠÈüiK±îi¹úQšj}عW`>ôœcŠZBqS&·e!G™çšQJ©ÙµtÉzt’¹SúSp}:\ÉÌ:ÒÒ`÷4 zŠžg}F;8ì(Üðþ´ÒijÕO2yCè(¤9 ¥¥Ì›°ìé~^ëúÓr=hB?9Ò{\9n)ÇlÒg=óAÖ–—4ÛÐ,„ϱ£×ó¥¦íéS)Mu“ ÷¥¤ÀíEZækQhƒ#ßò£¿ZZn9ÿëT]¦Vã±ÿõÒÿkò¤çÖžüÖ—R[f„ÛïJ)FÑ×u/lþ"£’)è;€ãÓñá!—ò¦òiŸ\U^}Ôz’ÿõ‰¤óŒÆ›IÒªR}X(®ÃüéV4™ÏRM7óKÅ5{w— àÊ?åž~¦—ÍÇEQøTyö£¯T¹4>TÇùŽ{Œ}!$õ#ò¦íôþtàýÓN-ÿWI 'Šn@þ÷åO Ž£• ÷l¨»ì7Ìôá4¸ÏaùуþMci=ÊcùÓ€Å!úšLïÎ’²¥°iAϧài>Qß4n¦áM;nÄ:“¿Zin:ŠUéZ)Åè…aIÀ¨Ëd÷©3íAß­Dã) g¦” ÷oÎŒê?:2¾ÿ…BVÜSF)2?½KZ&†:ŠL­.µ ëØT½^{Lúãó£žì*^´ÕÀúàOü“Íwóõ'þŠZõ4¯,ø1ðó]ÇüýIÿ¢–½M+ž$©}þ¹Ýþ¦Š/¿×/û¿ÔÑP3~¨ÚéÂÛT¾½ó7£Û·6®Þ¹ç5zŠb0®ü=%Á½/Dv7Ò .!1e‰À óÀ!Fr|b’ûÃ1_j——pÊ—6ˆ/Ýr1æž»@‡ZÞ¢€9×ð¤O§éñ4°Ísf÷—ÂD¹Ë–L÷<ðxõ«VÚ·šÂPÖñ›V‘Š[Û‘ËŒp8ÇãšØ¢€)êvÚ6‹™åâh¥Ý·?rE|~;qøÕkíW?hÛý¡n!û™òð¬¹ëÏÞöéZ´P5©øLj"p×-ºÀ{Q+C…#1’À.sž‡žõfëÃÏup—-|Ëqlª¶L©Ä˜‘Ÿ›wCÓŽ8ë[”P1¤ëq+É2¼L$a1°Œäç<ç¦*j( Š( ç‚;›y •wG"”aê°á ±Ïü}Þ~qŸæ•ÑQYΔ'ñ+šÓ¯R—ÀìsŸð†XÿÏÝçþBÿâ(ÿ„2Çþ~ï?òÿ]V¥ü¦¿]Ä;9ÏøC,çîóÿ!ñÂcÿ?wŸù ÿˆ®ŽŠ>­KùCë¸çg9ÿeüýÞä/þ"øC,çîóÿ!ñÑÑGÕ©(}wüìç?á ±ÿŸ»Ïü…ÿÄQÿeüýÞä/þ"º:(úµ/å®â?œçü!–?ó÷yÿ¿øŠ?á ±ÿŸ»Ïü…ÿÄWGEV¥ü¡õÜGó³œÿ„2Çþ~ï?òÿGü!–?ó÷yÿ¿øŠèè£êÔ¿”>»ˆþvsŸð†XÿÏÝçþBÿâ(ÿ„2Çþ~ï?òÿ]}Z—ò‡×qÎÌ 8cÒ Ús™ nþdm S¼m\öÆA1éVE¹¼µ·‰ $$à£kœ3–éZv‘^Àb”u 8*{}h´´ŠÎ@ã©'«Sï[$’²9¥'&ÛÝ“Eûˆ–Š)ˆóïòKu/úéþZùV¾ªøÙÿ$·RÇüôƒÿF­|¨7{Vô›µÐp} .íA¤Î:“øÖ·KâN(ü)2CúÒàûЦº °:ô£èi8î /|f’³`-'ÐÑͧó5£ŠçSL8'çN8ôÍ}‡åXÏ]ÄŠv}iir(JÃé@wý(ÀôÅJ<À cµ{¾>†£Ò—S³}D&¯çKõ`z :úУØãßõ¥Æ}:(8ïWËmì ¥¤Z1U},µÀô´œ÷Å(>ôF>Vþ½Eq3Ž´´¸Þý)¸÷?S‹]H3Í`‚§oˆ~‚þÒpiÔ”J7ÙÃp÷ü¨Ž}J3ŽÆy чáAÇÖŽ´)^ú°ŽØ£¨éùÒÒwïM€`úâŠP 5Jl.`z8ô?/ËïIÆxÏåUv·hZ!©£ëG=±ùTÉÅ&CúÐÔΖ“>†³o•Œ ¢“*xÈ4¿7lRüÞ‚›ÿ†Ä´”Ur®ƒ¸Ñ’:¶(ävýhëÖ¦áaÛŽ:ÒM'AMó7Q--‡9ëN GaùS<Àh ìhU"¶akî8±?þªOÎŒçÖ”w~·ÝE²¯­Þ§|·~4„žÄÕrE+²nØÞsÞžcøRnú~TíçÕ¿:iAuÍÐ<³ý×üVŒw ³â'ñ¤¦å%.¬J9ö¥ Ò·f0¦±§RwïYÍKa« Sƒ÷ªN;ŒŠLÜQô¢7[†ŒvW)¦÷éKIZ]=­`8ïŠ;zSƒ7oåK½ñÈÇáO‘!91¡G]Çñ£õ“œñŠCƒßõ¨æI膓@vìä})¸÷?-“éø…ÿ1Ïv4ÞüÒ`úÒa½JnVZÜ<âŽ)2}(ÛšÁɽ‹ “ØRóè)»@=OåNçÖœTžâ QE#Ò“ïzPäöq@>ƒõ£o°ü©FoÒ‹>ºãGÿ­‡­7ïΓ•¼ÀwÖŒûSwêhÞµ˸ œÿüéqøQϯéHXÿ¥uý3´sͳÐR;cò£,{â—5¶¹>†“©ïùÓ‡¹¤Ê“Á45~¢>…ø1ðó]ÿ¯©?ôRש¥ygÀŸù'šïý}Iÿ¢–½M+i *_®_÷©¢‹ïõËþïõ4T¿E—uâ2Êækyæ•^¦Vò##s…Ú8õ4ÄjQ@ €AÈ4PEPEPEF²–¸’/*EªD„ ­œð9ÎF9úŠ’€ (¢€ (¢€#šxíÓ|®sî}½jí+oúmÿ~ü*;Þo­í‡ñÊÿ‰¦ÖNr»HÞ4ãÊ›êMý¥mÿM¿ïÃÿ…ÚVßôÛþü?øT4Rçýœ<þÿøßÚVßôÛþü?øQý¥mÿM¿ïÃÿ…CL–E†•¾ê)cøQÍ ä‡Ÿßÿ³ý¥mÿM¿ïÃÿ…ÚVßôÛþü?øRE¦JñšíÒR3²5]«íÈÉüÅVŒ¸i"—dM±Šô<âªnh”©·eëäZþÒ¶ÿ¦ß÷áÿÂí+oúmÿ~ü**yäW³‡Ÿßÿ›ûJÛþ›߇ÿ ?´­¿é·ýøð¨h£žAìáç÷ÿÀ&þÒ¶ÿ¦ß÷áÿÂí+oúmÿ~ü*(ç{8yýÿð ¿´­¿é·ýøð£ûJÛþ›߇ÿ †Š9äÎüoí+oúmÿ~ü(þÒ¶ÿ¦ß÷áÿ¡¢Žy³‡Ÿßÿ¹ÌW¼¦É^ ‚ü5-g[ñ©¦;Âù÷Ã.?™­ÒmjeR*/CϾ6É,Ô¿ë¤?ú5kåAíŸÎ¾«ø×ÿ$·Rÿ®ÿèÕ¯•k¦’º%}&3Ô~t¿…_Öµk«Æ:bŒúÒsÞ—úÒRd,&ïJQGôÓïš\Í;¶¿ Z`*?ˆš]ëëVª'»€‘ߟ/Òi”‡¯a€ç4ïÆ›Æ9â“râ5Q’Bc¿ CÏc@ ÒŸÓéJO›¨ÐݾÇô£ŸîþtáŽÃô ŸcQÊ—Q‰ƒýÕü©@ÿ"“<òqõ§éŠÒ =É~BˆÛÐÒŠS#ëøSsžØ­ù¢•ˆJWÔ;ÒñŠ@)j"¼¿˜˜úþtcëKIøþTšKt?@Æi6ã¹¥Ï×ò¥¤”[Ñz:\/|þt g½'z¾K-‰ºbáGBÔ#¡4Ü‚qš))_á*ê;{¦Œîþ9¦íÏj0=UåÔV]cÜ~taqÔÓr(úRæˆY‹œt§ÇøñM¤ü)ó(ãÏV›ŽzRâçÛó¤õÝÐ0}MÅŽãò¤wLÔ7¡Z‹KSIKŸz´’¸„{Ñǯ4¤“Iõ¢Zjy‹Ÿ¯çA¤Ï< 9ô©UùPbŒQϧåIÿ4¹¯Ð,:ŠN´¸úÕY°¸˜ÏsKê(éHN=?9RÖ»Œw¤¥ãºŠ øM_ðÀ[²“FÖî§ò§ã¦h,ç©j··dÝéI¼ƒÏó¢Œ/¥Co£þ¾â­ä;q>Ÿ•&i0)8é95»üB˰àAê zãë@Á<ž)ØNÍÍh¬Öä·f7ïAÛ覃ùÓHQè+9I®ˆ¤®;ŽÃ˜=…Žƒ»Šô&u­XkÐiÏ ¥ØR–$ri1Ÿÿ]Í=Ps[pÆ)hÆ%W-^à\Ž0@ažCQס£Ò¥¹Ûp² G»~bƒ³±58§t¢3”´²/[‡õýhÆiir}?J®UÕâp=è¥çÓô£ÓôªÑ«"}FÒmÏQJsŽ)€1ëšæžŽÍÁŠL°þ^;‚i8즗£þ¾à'Ò›=Eö#ñ¥w§ï=ÀZLŠ3ìhüëG-ÂÏSùÒí÷£>ƃŸzÍ$€1ZN}hÿ¾¨Èº >¸?…Ûð¤-þq@aïùRæW‚’GR)7ßùS©Œ¤žŸ­6åÐð}9 î¦€GcùÒð{Ð¥'¸Bü|<×sÿ?R襯SJòÏ8ÿ…y®ãþ~¤ÿÑK^¦•„¾!/¿×/û¿ÔÑE÷úåÿwúš*o×0ú,ºŽ·­¤÷–öW$dT,ë³ 7'Øí"ºz)ˆâµ>O7RŒX\>¦ó/öuÊDÅb@ªÑ!² ç®i5m2þM^ò {yLŸíX)ÚÓª…XóêXǽvÔP-ì¶:}ÔöÍäÜM=ÍÜÚ4ûYÎcßNÕù{àãKúG&ñÉsh“\9Y-^$E+ò©F$…Ï@ÞÞ•ØQ@Þ#³7Úà 2ý¢Ølˆ„&qŽ€O¶+óÃðøH<„Ke’É2eØÙhÀà6Bò9é]•ÇjvWwCUÝo;yðX ª6X‰¾1ܓޕy¬ ²Ô5x–ÆUÓd±‰š+hØ|ÈnÜ|Ûvçô®ŽŠEÆÑ€@ÇzZ( Š(  ½Yei``³%Ç l¦+‘þÍ×;ÇxO¯ÚÇÿÊ»+òîÝÛ…Úé“Ó$©ô4•ÇV’©'vÏGˆ•(+$ïßÕœwön¹ÿ<ïð,ñÚ?³uÏùç{ÿcÿŽ×cEgõX÷fß_Ÿò¯»þ ÇfëŸóÎ÷ÿÇÿ¦Ka¬G ¼©v#U%‹]dc¾G˜sùWiHÊJ°HÁ½ ïv)cfÓ\«î,Ë)yÕÔ£Ãc¿¦ñüãÒ³u¨ßI¼¯ïpì?åšzUv¶¼‚A»}×c“ô÷ö«Ð@–ñlLú–<–>¦»%$ÑçB-2?°ùêïëÑöÿ=Oýýz³EA©[ìþzŸûúô}€ÏSÿ^¬Ñ@¾À?ç©ÿ¿¯GØüõ?÷õêÍ[ìþzŸûúô}€ÏSÿ^¬Ñ@¾À?ç©ÿ¿¯GØüõ?÷õêÍœ>N¤ƒy`a~¤œrÍjÖm±ß© ¼„‰ƒØ’¸þF´ªéìÌ«n=øÛǽOþºAÿ£V¼Â–×ZeóÏo¬®v™1¹”ñŸpà+ßþ6ÿÉ+Ôÿë¤ú5kÂ<3¤ê?ïÿíkŸ';iöüÏ'5“ŽMy~g>ÑGÿtSì_8ê†L|Û|µ8Ϧ{Tú,>"Ôâ‰BF—rª¢ŒÎ…Zoùáÿ°“ÿè´ªþ#ÿ‘ŸVÿ¯É¿ô3WJRu5Íù¢¨7íð/Ív6°=·† Aµ\ >bî‹úŽOÔ×_ã=+Nµð”ó[éöÊ­*¬3·<ï\¾›ÿ¾ÿ°œŸúUÙøëþDÛ¯úéþÉ^F"rúÕ%´ÿô¦xxª“XÊ 7ñ?ý-˜‘é¶>g…¿Ðíñ2Ÿ7÷KûÏôxÏÍÇ<’yîkKÁzN›uàûiî4ûI¦i˜$YˆÜ{‘Uã?„?Ü?úMjxþD›_úîßú®lUI¬=Ó{¯Îg&2­E…º“ÝuþõCËL°k ³Y[šX„¤Ä¿8(äî㞃¯¥rÚŒ¥¾¾R(ÔÅ©F‘ lSçp=a]¥‡üƒ|)ÿ]âÿÑrW©ÿǯ‰?ì+þ×®ì,äêJï·þ–z8:“uewÕée¸¬íOÃinÍ´&ä;6Á¼~ò1ׯB:]&ÒÚI|$Þ&¼Â]È™‰½xõ©¡ÿ’U7ýtoý7úïÿ×I¿ôa«s—$õûRÿÒY¤ªKÙÔ×íÏÿHf¿Ãý2ÂóBŽK«iÜÞ:î–%cƒŒ‘Ò¦³Ò´ækMÖ§v·qÌ+Ê.§Aǰ©~ÿÈ»ý~Iÿ  žËïXÿØzçùM^n"¬ý½UÌ÷ý$yªÕ&²R{÷ò‘ÀxâÞO_Am p¾^ØãPª3“€=êï‰,í­ü)¢M ¼1Ë"÷hy#¯$þu[âüŽú‡ý²ÿÑkZ*ÿ‘;@ÿt褯Zœ¥É†×uÿ¶žå)Ë“ ®éé&æ›b¾,¿…líÄK¨éè¨"]¡Y°qÞ³c±µ:,nma.Zß,cæêu<û€£è¥nÞÿÈ婨KNÿÑmYh1¡Åþõ·þ•ÜW*MÂ:ÿ'ä>Yû8êÿåßþ’ŒD¶€ø«\‡ÉÊŽ;Ò‰°m]ªûp;c˜©ô»Ki>ê·/o\$„$¬€ºüÐô=GSùšlò8øƒþ¹ßÿè/VtÿÛXÿ®§ÿB†»*ÉÚ:õ‡æz§.XkÖŸæÌß CÁÖDñG.Í*wMêk0Ã=õ®þL7°©Ó­ ›w#È^Xù¹=:œÈW á½®Ø"ãúW¤[ÿÇüö¶ÿڵǙ՜j;7ýXóóš“YY½¿ÈãüSaim'ˆü‹X"}ÊÙ]™vÜtÏ|u®'Ôצøá•¢ÖðÛ˜?_2JóôrÊ’ÉöÿÒbz¹4å<=ååÿ¤Ä]ÇÔÑ“êi(¯Fìõ…Éõ4dúšJ(æ`.O©£qõ4”QÌÀ]ÇÔѸúšJ(æ`;{Œ:7¿÷Ûó¦ÑG3î+!w7©üèÉõ4”QÌûŒ\ŸSI’:(¥pqõ4n>¦’Šw`.O©£qõ4”Qväúš2}M%s>à.ãê:77©üé(£™÷r}M>¦’Š9Ÿp'ÔÒïaÑçM¢ŽgÜyýöüé7SùÒQG3îqõ4n>¦’Š.À]ÇÔѹ¿¼:J(æ}Àv÷þó~t›˜õ'󤢎gÜ,.O©£qõ4”QÌû€¹>¦ŒŸSIE`.ãêhÉõ4”QÌÀ]ÇÔѸúšJ(æ}À]ÇÔÒdç9¢Š.À]ÇÔѸúšJ(»r}M>¦’Š.À]ÇÔѸúšJ(»wSFãêi(¢ìÉõ4dúšJ(»ÂIGo΃#ž®Çñ¦ÑG3î+#¢ð]ŒŸˆÒÒíÃ$2Î>SÈô#¨5ÚÇe§îº_ìëÀfÙ8Ìò§§ •qž¹[O­Ãà*DÄ’p8ÏãW´írvñTö[’[yîŠFýv¨•œ`޹,:ñq´êÔ­'¢Iþ.ç˜Ò­V¼¹‘Š‹¿àwךŽº•º®•bÆIÝ0~tžçóª—z6–ºÂ®›fYLÀN¼ŸÎ¶ïä'kÿ\ÏþŒŽ¨Þs¨\úpŸùE_?FµM=ç³ê|½ õ}ßyìú™ÖZ>˜Þ"×âm:Í£ŠkQ„W8ã=ë›Ðl,æø‡¬ZËiÛÇç쉣1Ðb»ùüGÿ]í?ô®_ÿòSµÏûxÿÐÅzkTä«ï?‚=|¢zt*͵äÿ‡ý&&»ko«4PDŒšÛÄ…P©‡ùG àqV ²µo‰°ZhM±Ù˜v ‡÷ ôéך‹Ä?ò Öì>ÿú ÕÛù+6ÿTÿѽi?e-_Ã/Ê'ª§/c'±?Ê'_âI·ðÆ¡4:e”r¤ UÒÝÔ+.]+N(†aj"6w,SÉ]¤‡ c¨®Åßò)jõîÕ‘8ÿжßþ¼®ÿôa¯ ^£¥¬ŸÚëäÁÖ¨è]Éý¾¿ÝAªèÚZ}—f›f»®­Tâ†GN‡½r)²µ·ñˆâ‚Ú£†Î0¡ ’H¡äþf»Ý_þ]?ëîÓÿB®'Åßò2xŸþ¼aÿÑW^[Rn¢»{~±;òš³•XÞOnÿÞ€šÕ…œZ·$v#Ç- FXÀ* JNl“Ívú~…¤=Œ ÚU‹1ŠI·C’@Ïjæ¼Gn±ø?Vœº[‹`Gn"λM3þAöÿõÆä+ ]iû´Þÿ¤N|my¼4\d÷ïý؇ô½>ËBy-lm }ñ ÑBªyßž@öåû©¯[ø“ÿ"ëÿ¿þÏ^G^ÖM9K vï¯ùAÃó”ð—“¾¿¢;h,­_ÃÚ †Ú$¶š“HþXË•VÚIîGoJ—T°´ÃDÉkË#Ù‡uŒmÉ!lžùÀÏ®)ö£þ)¯ÿמ§ÿ µM«ø¤´?÷ì¿ô +™Ô—´Zý§ÿ¥Häu'íb¯ö¥ÿ¥ÌöŸ‡–ÐZøGVKx#…L³’± PyaÛØø ì¹Oÿȧªÿ×Iÿô'®­+ÓÁ6èE¿ëSÚËÛxh7ýjT¾ÿ\¿îÿSEßë—ýßêh®“¸ß¢Š)ˆ(¢Š(¢Š(¢Š(¢Š(¢Š(¢Šk¢È…C)êdƒû>Ëþ|íÿïÒÿ…Y¢“Š{”¥%³+gÙÏ¿ýú_ð£û>Ëþ|íÿïÒÿ…Y¢—${ÚO¹[û>Ëþ|íÿïÒÿ…Ùö_óçoÿ~—ü*ÍrG°{I÷+gÙÏ¿ýú_ð£û>Ëþ|íÿïÒÿ…Y¢ŽHöi>åoìû/ùó·ÿ¿KþgÙÏ¿ýú_ð«4QÉÁí'Ü­ýŸeÿ>vÿ÷éÂìû/ùó·ÿ¿KþfŠ9#Ø=¤û•¿³ì¿çÎßþý/øQýŸeÿ>vÿ÷é¬ÑG${´Ÿr·ö}—üùÛÿߥÿ ?³ì¿çÎßþý/øUš(ä`ö“îVþϲÿŸ;ûô¿áGö}—üùÛÿߥÿ ³E‘ìÒ}ÆGp¦È£T_Eú(ª!»îyïÆßù%zŸýtƒÿF­xOÆtGýÿý¥%{·Æßù%zŸýtƒÿF­xW䩾?ô[×cþîþ_™æfÿî²ù~fÈý„ŸÿE¥Wñü·ý~Mÿ¡š²ßò#Ãÿa7ÿÑiU¼Iÿ#F­ÿ_“èf®ñ?ð/ÍCø¿øæ½4¢øCþÂrèqWeã¿ùïë¬_É+ŽÓ¸µðy'í7?ù*ëkó¨P°ÿg…?ë¼?ú.Jãµ?øôñ'ý…cÿÚõÙXÈ+ŸõÞý%qÚŸüzx“þ±ÿ9ë¿ üIz¯ý,ôð_Å—ªÿÓ†”?òJgÿ®ÿ£c£Eÿ[à¿úé?þŒ4°ÿÉ'Ÿþº7þŽýo‚ÿߟÿF·ðTÿÿô†\¿‡WüsÿÒ$t_?ä]‡þ¿$ÿÐ*k>¶?ö¹þST_ä^‹þ¿$ÿÐj[>¶?ö¹þSW™ˆþ=__ÒGŠÿy¯êÿ)'Äùõûeÿ¢Ö¯ø«þDíýÑÿ¢’¨|@ÿ‘ÛPúEÿ¢Ö¯ø«þDÝýÑÿ¢£¯bŸÁ†ôÿÛO~—ðð~‹ÿH7ï?äqÔ¿ì#§趬À1¢Eþõ·þ•\WMd3ã}w?óÒÛÿIÞ¹£ÿ XÿÞ¶ÿÒ«Šó©JéGþ½þG•FwQeKÿIF<_ò8øƒþ¹ßÿè/[·–piþñ­²l†9ÈUÉ8ÿPzšÃƒþG/×;ïýë¥Ö?äâúøþWUvý­5å͸™?mI_KCóG'àÿ½®Ø"ãÿe¯I¶ÿø?ìmÿµkÍü÷µÏûOÿ²×¤[Çôö¶ÿÚµ†küI]ŽlëøÒôÿ#Ÿñ ýξé•§þŒ’¼Ê½;Æñï¯úeiÿ£d¯1¯K)þùé1=\“ýÝú¯ý&!E±ixt,‘ÉzNVx÷‹ÐîÅ¿ïšô''¢»=Z“q^ê»f=£¬¦–Þò¼±s˜êÃl` tÎ=ë:œ%ÍŽœùâ¬QEQaEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP–ÓP>–r1Oð×üŒºwýwZn‘þ«R>–mÿ¡-/†¿äfÓ?ëåë\µ>žŸ¡Ç[à«éúÙyÿ!+OúæôduJóþ?®?ëÂå·Kz4ùÑ™¿vèźîYQ[õ‹¿øü¸ÿ¯ ÿ”UñЋŒ”_KþgÀS‹„”_KþdV?ò3xþ¾-?ô®_ßòSõ¿ûxÿÐÅu6?ò2ø‹þ¾-?ô®_ßòSõ¿ûxÿÐÅwQø*ÿ‚?”OKü:ßõî?úLLÈ+Yÿ°ûÿè/W-ÿä­[ýSÿD §â/ùk?öýêí¿ü•«øþˆéË©†”O]_àŸå½ñwüŠ:Ÿý{µe\ÈÛoÿ^Wú2µ|[ÿ"–§ÿ^íYwò6Ûçþ|®¿ôexXoáà_úJ>küüÿIEÍ[¥§ý}ZèuÄø»þF?ÿ׌?ú2 î5_¹kÿ_V¿úq.ÿ‘‹ÄÿõáþŒ‚»2Ïâ/ëíDïÉÿн?öè¾&ÿ‘Qÿ¯˜?ô\U×iŸò·ÿ®0ÿ!\—‰ÿäEÔ?ëâýuº_üƒ­¿ëŒ?ÈW6#ýÞ?â”NLWû¤Äÿ(œßÄŸùŸþºCÿ³×‘×®üIÿ‘uÿë¤?û=y{Ù'û¯ÏôGÓpïûŸÏôGiÿ"ׇëÏSþMSêÿò)h_ïÙèPÙÿȵáïúóÔ¿‘«¸ÿŠKAÿ~Ëÿ@jä—ñWøŸþ•#†O÷Ñÿ¿ô¹ž×à?ùõ_úé?þ„õÕ%r¾ÿ‘OTÿ~oæõÕ%zØàGúê{ùoû¬?®¥KïõËþïõ4Q}þ¹Ýþ¦Šê;ú(¢˜‚Їívßkû'Ú"ûNÏ3ÉÞ7íÎ7mëŒ÷©¨¢Š(¢Š(¢¡vÍvÖ‚â#r©¼Âo ë·®=êj(¢¡¹º·²§ºž(!\n’W £< “ÅMEädt¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€<÷ãoü’½OþºAÿ£V¼/ÀŸò Ô¿ßúWº|mÿ’W©ÿ×H?ôj׆xþA—ûëÿ šáÌ¿ÝßËó<ÌßýÒ^«óG>äH‡þÂoÿ¢Ò«x“þF[þ¿%ÿÐÍY?ò$Aÿa7ÿÑiUüIÿ#F­ÿ_’ÿèf®ñ?ð/ÍCø¿øæÝ;ÏÁç=5 þDŽ·ücÿ Í{ýëOä+OPtß dËÅÉýGøV¯Š.RçMñ!Lâ9­£9õ^\Õñ~oÿN5DÞ*³út·ÿ‘CýÁÿ¤ÉZ>ÿ‘*Ðã?¾n?àf³âò'ÿ¸?ô™+GÀò%Ú×gÿÐÍpb¿Ý¾kó™æcݪüêlüJ¼(éâý%qº—üyø—þ±ÿ9«´²ñ(ð¯ý|Ãÿ¢ž¸ÍKþ<üKÿaXÿœÕß„þ$½Wþ–zxâËÕéÃNù$Óÿ×Cÿ£c£EæOÿ¿qÿ£ >Ö7—áL±Æ¬îÒ•UQ’Iš<(Ò#hæðj:•u{ÊF"CÅTšä¨¿¿?ý!•&½Uýùÿé7þÿÈ¿ý~Iÿ ÔöŸòáÿaûŸå5Cðóþ@ÿ×äŸú Mkÿ.ö¹þS×›ˆþ=__ÒG‘Šÿy­ëúHྠÈí¨}#ÿÑkWüUÿ"o‡ÿÝú*:¡ñþGkÿ¤ú-jÿŠ¿äMðÿû£ÿEG^Í?ƒ éÿ¶ŸAKøx?Eÿ¤—üŽÚïýt·ÿÒw®i†4Xÿß¶ÿҩ륳ÿ‘Ó^ÿ~ßÿD=s’ héþý·þ•O^]‰zSü‡Ä½)é&4ò9ëÿî_'®—Yñ!ñGý|åsvÃ>5×ÿݽþM].³ÿ /×ÁÿÐ`®ºÿƧéÍØŸ÷Š^‘üâr^ûúçý‚gþk^“mÿÐØ>Ûÿj×›x;ïë|g:Lÿ‡+^•kÿÐØ>ÛÿjÖY¯ñ%ýv0Îÿ/Oò9ïôMxãþYZèÙkÌkÔCÿ¡Šå–°¨ý#ŽzÓªý#Õ<aƒþ¾mô:áü[ÿ#‰¿ëÂý veŸÄ_×ډߓÿ_j‰¤'ÁÚœxùVKfŠ'øWc¥ÿÈ6Ûþ¸Cü…q^'‘ÔE€vû1Që…Lÿ1]®—ÿ ËoúáòŽ%[WùDçÆ+acþ'ÿ¤Àç>$ÿȺÿõÒýž¼Š½³ÅÑ$ÑØÅ*+Æ÷¶ªÊÃ!vÈ5ãwè±j71 VVP` ¯g$šöŸ3è8v¢ú·'ÿ#º³ÿ‘kÃßõç¨ÿ#V5aÿ–þý—þ€ÕÿŠkÃÿõç¨ÿ#VueÿŠSÃùÇÞ²Çýðkš_Å_âúTŽ9?ßGüRÿÒ¦{??äSÕ?ß›ù½uI\¯?äRÔÿÞ›ùµuI^¾ýÞ?×Sè2ß÷X]J—ßë—ýßêh¢ûýrÿ»ýMÔw›õç/ðÞž(ÐJÙ(:…ãý«æoÞd‚sÏOJôz†k;k™a–{xe’ݺ1ŸU'¡úSÅÈÿØž+¸Ó´èâ‚ÖÛC’h”F¥•·“÷ˆ,F{jÎÓõÏÜ?‡•õxöÄrƒ›TýÖÏâÆN?jô7±´’á®Ö™£14,Pÿ =qíÒšše„fÜ¥²›lˆ6Ä£ÊÏ]¼|¹ö =okQørÔ´Šn_Q{9.Ö$ÈUÁÈRB†9ïÇÓxCUÔµ}¢Cù/•)1‡e9áÕ€F?ÖàÓ,ÚKacl ‘‹¼B%ÚÌz’1‚iö–6–˜ìí`·BrVÂø âsB¥ò:sŒÒÝiZuì«-Ý…¬ò/ ò¬GБ@+ê—þ-ÔµT·Sp¾Yü wÙSŒŽ {Q ø§]žêÑåo¶AqnîèÂ*á F,ÃŒr3]òÙZ¥É¹KhVržY”FþîzãÚ¢·ÒtÛKƒ=¶Ÿk Ǭ‘ªÇñ4Éx{QÔµý/írø’žæ9@²Šóù‰Ï9þµÍé×76? 繇QŽ]¤´’œBLÜ’9Ï^ õ8´ËnÚî+hî[;¦X”9Ï\¶3Qbi;&Oì»-³e_³¦$ÁÈÝÇ<óÍqú¿ˆõ1¬jÖÑj°i‘éÖ«4Hñ+–+»ø»gŽ)b×µÍ_UÐm¡»þÁ§˜ðÃ<Üóß¡ï]¥Î™azè÷V6Ó´p˱_¦G!³¶k”¹6ð›ˆ×bJPnUô¨‰à­^ïZðäw7̯p²“þÞV³ñ(ð¯ý|Åÿ¢¤®+Rÿ?ÿØV?ç5w£/…Oý=Åÿ¢^¸}Kþ<¼KÿaTþsW©ƒþ$½Wþ–{8ûÙz¯ý8tžñBZ×ôúQ5ä9á¯úú½ÿÑ­RxlàKOO¶Çÿ¥1T`ÄïÃ_õó}ÿ£^³Ä©þ)ÿé22—ñjÿŠúD_‡¿òþ¿$ÿÐMMmÿ0ÿû\ÿíz‹áÿü€Óþ¿$þF¦·6ö¹ÿÚõÇ_øõ}IŸ÷šÞ¿¤ŽâüŽ×ÿHÿôZÕÿÈ› º¿ú*:£ñþGkÿ¤ú-jÿŠ¿äLÐ?Ý_ý•íSø0ÞŸûiô4¿‡ƒô_úIØÙœøÃ_?íÛÿè—®za!륷þ•O[ip-|IâäS…{|…ç¬L?­c\ i Ó[ý*ž¼ºKTÿÁù#Æ¢š’õïÿIF5 Ïµï¥çþÍ].´?âGâsÏúóÿ Á\Ý—üïý½ÿ3]6¸?âGâúø?ú½uW¿§é͘§þÑKÒ?œN;ÁÀÖò3ÿ¹¿š×¥ÛôøëÂßÿjךx;ïë?ö —ù­z6˜Y®c,I"Ò!ϳMYæ¿Ä“þºgk÷²ÖÈÅñ6ÿýqµÿÑò×—W°ë:wö ×-|Ï,5´ »n~ì³·ô¯®ü¢IÓ”z¦¿ô•þG§‘N.”¡Õ5øÆ?ä]Ñ¢Yõ»›î½Äa¸Ï†j¬Ò™ç’VûÎÅÔœÕíþCVÍýÂÏù)?Ò³«Ò_Ä~‹õ=uüWè¿6¡|Å­êòvˆfõ½ ú®?#YõfÎðÚ»†A$2 ²Æz0þ‡Ðö§4ôkt:‘zJ;¢µ¨-mµ(¤6˜gˆnòZ]Þj€rWŒä`;äãÅeÑ©iÔpš•ÖÍt (¢¬°¢ŠÜ]>)|<žLJ׌¿i-¸n(D O”_Ò³©QB×ë¡Zª›êìaÑE¡ QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE¥>†ìGsupz³ÿÏGhÝ]«©YN>¢´¯‘âÑ4´u*[Í”1Hþ;k.²¥¬_«üÙ 8?Wù³Ó~Úb’I&æL“þô¯¦s¤ÚÿØ!ÿô«áßü‚Óþ¾dþpV¾“ÿ kCÿP‡ÿÐ"¯˜Åÿ~¿æ|n;ý⧯ÿ$Oiÿ#~¶?Û·ÿÐb®sò$?õÉeuHÐ\33Á$žÂºK_ùõŸ÷àþQWü¾/ÿ¯;ÚxxóFqïþH¬$yãR=éÇò‰ˆyѵcÿQÃÿ¢Úº ¢|EÕ$‘•Qlâ,ÌpÄG?¥súÿü€u3ë­ÿí6­xNßxŒÿÔ0è¤?Òºê+ÑkÉÿí‡uXóPqò3²ÔS²Ùþª8dÝž»ØŒcÛgëXÈs¯iäÐ:oý )úè‹Æ7–Là ‹™WÜË#½¸-Uídkö@Béî8÷ë^]*|°õWÿÉÌñ¨Òp†Ú8ßïù›z0Cÿ_ßú®ÅŸò0x›þ¼!ÿÑ×uÌûMnò ®ÅŸòñ7ýxCÿ£!­²Ïâÿ]âo“ÿ_j¼[ÿ ËŸúçòŽ»}6ëjÙZlÎû4“vzmØ1ÿ~•Äx·6çþ¹Cü£®ÂÃþ?tßûXhĤðпŸäƒ“ÂS¿÷¿$3Å=tÿúÿ´ÿÐÚ¼oSÿ­çýwýײx§®Ÿÿ_öŸúWêò¼ÿ®ïÿ¡ô2Ož§ Ոφ´úóÔ?­[Õ‡üRžúÙè&ªéä踴¿ÏëW5qÿ¯†ÿíËÿA¬'üUþ'ÿ¥Hæ›ýüÅ/ý*g±xþEKë/ójê’¹_ÿÈ£¨ýeÿÙ«ªJöp?îñþºŸE–ÿºÃúêT¾ÿ\¿îÿSEßë—ýßêh®£¼ß¢ŠãfÓÅ†:.›¨mòFëÇ Säè?vßÒ˜ŽÊŠåoïuá ž ãZdk$,HTâ åX‘œbÏZn¿­ÝZ%íÕ”×gì1«É¤>H$ÚÅðç »ê;ÐR³Dò¼K"4‘ãz†®zdv¡f‰¦x–D2 0ʃœ;gò5ÉÜË9ÉÏ9ëÚ€$šT‚–C„E,ÇÐ ®./4›¬F^!ú£T´›±ë Ò¶h&—yü™­e·©u;€ $q‘ùÕŠmØÿ‰¥±ô‚QÿGN Š( Š( Š( Š( Š( Š( Š( Š( =øÛÿ$¯Sÿ®èÕ¯ðDñÅ¥Þ«º«Iæ B’v®ÃákeËÿ¥£Ì…7îI-/ãQ…£Ì‹¥iVÇ;ÞÖ9G¦ýUOgþ«luÝ/þ…FŸ0·M”ÜOòðO÷žÏëúRxÛŸC1ÿÇxõcj3}ä¿öãÁ­aæûÉíã-¸Ñ¼,1ÿ/qsÿl^¸}Kþ<¼KÿaTþsWu+¦øexº„àúe%pº—üyx—þ©üæ¯KñËÕég­—ÿ^«ÿK: ø ­?ëö/ý)Ž¡løhÿÓÅÿþz±á¥SàK›¾Ù ø¿áP‘_Ã?×êßjÉ¿ÞTÿÿô™·ûêßâŸþ‘#WÀ#*×Ü¿ÈÔ°}í<ÔrçùÜT^ãCÿ·™öjŽÚå›U´µ;HT’L޹g¼ÿArÖMÖªüÿFqb"Þ"³]é#‰øƒÿ#µÿÒ?ýµ¡â‘ÿ^ôOý•Ÿñ þGkï¤ú-k_ıð‹.NQ¡\{úÕìÁÚžåÿ¤žü©`ß’ÿÒM›ïù x˜ÿ·mÿ ¥v1¥ÿÛký*ž­ê¾&#ûÖçÿ5ZümÓÚx?ôªjó©íûwò‰åÒÚ°ÿÒbbXŒøç]Ïý=ÿèFº)MĪF7Hdà¬Cÿe5ÌØø®µï­×þ‡]_Š—v»Àæ?_›ÿ­[bûE?HþhÛÿÚ©zGó‰Ãx<€úÆè ÿÇ–½Ef{§çlH£Øoš¼ûÁÿë5^åÅÇ׿Zô›Ù‡¢ÿÍFkñOåú:øª?Oд OUù¸kh—¹–àW‡×­j÷SÛkp¬2”–°I€TËs‘ÓØW’×VQywåüŽÌŠ›<»òþF†ŒJ]Í.òíf<ûÆÀ~¤V}hé™[=VOîÚÓÖDȚίV:ÎOÑ~¿©íÃZ’~‹õýBŠ(­ GG#E"ÈŒUÔäØÖ›E°X(owh%û™þ.¼gž0+*Ž•…õZ39Âú§fKöiÅ¿Ú /äîÛæmùs隊¯®¯rf–IÂ\y‘„e”8 ƒŽr3äÔ÷v?nX/tûi6Ü9GFBIÔŽƒb§Ú8»OB=¬¢íQZýz5ÐÀvêžC¾\jztiŸ?ú®}•‘а*Àà‚0A­ÉG«hdq²(ïgúÔWÕ%ëù‰\É/_Ëþ ”Ö3­›Ý•ýÂL!-ŸâÁ8ÇÐU“¢Þ-íÅ£* `€Ü8ÝÀ@ÿ<[1ð…ðî5Vãè ìÕµq1Ö‡PtæN‡žQ+šXÉ+ÛÏðåÿ3’xù«ÛÏðåÿ6yôq¼²¤h»ÈU¹5gû6ï˼s™ >Hù m¸üësOÓ`DðÅÒ&%¹¼"VÎw ƒÀèjô¨ ¯‹Žó%‡æÏþ¤ñvvõïr³J˜ëJÑ_×?+ýN*ŠíáÓíçñ†a–hŸNF‘A …vÉLV;Z„ð4’bê{ `g?ñ"ª8¸É¥míø¶¿B㎌šVÞß‹kô0(®çPÓ`›ÅzÔrB¬"ÓYÐ÷]cUó®wû6—¤Ü#°–úwˆ†û ‘øî§O ¤Þ—·â¯ú–:œÒoKÛñMþ†EÐG¤GŸâ4”,“X¼qÇ&;ù„>¡Msõµ:±©~^ŸäŸêtR­—åéþIþ¡Euþ¶ÜnD’ÃÎ ·G*GnÁ»:åéS­ŽÑòüá…J¼*»G²}ÿÈ(©m`7WpÛ©¥u@ObN+f-8¬¼B³óØ2Gr9ó0N>ŠiÔ«oåø»~¡R¼)é//Å¥ù³d¹¸Š†d‘Â(Î2IÀ©/l®4ë·µºË™1•È=FG#Ø×B¶ÙêZ ‘ƽ˜¸““ó0 ùü±ùU «µ«­Â™Å_“ŽNôÆ8„åýÛŸùÇ¥;í~¯üŒZ+I´ÅƒP æI.Z½°øç4Ù4kÈ®o­Ù̲Bóa¸ qëÔVʬ_ëcu^›ëý'c>¥kiÖÙn'³mGÿœþGÒ¯ZiRÍ$Nɾ‘vóü;öœút5*\=I#G–ê û >€néS*ºû¿Ö¶"Uµ÷uÚÿ7oëÐÇ¢ŠÕЬ ¿–ùgRDVrʘl|à|¿©«œÔ"äÍjTTàç-‘Utë†ÓMú…0«•#?0ÆÜœze”gÞªWIlÑb‡’þ7úTvzLpÝøzbK}­ÃÈ­Ðm“·¶ÜV kówvù_üŽeŠåæçîíò¿ù3âÖ{IOFÄdþýU kE<·z%úÍ#È!hä@Ĺb=3º¬ÿdÅa«[«n‘~ÀoaŸ˜DͦáWí¹n¥º¿à“ýKúÇ-Ô÷WùÙ'ú˜ `É<Wõ¡ÿ/3¼°Ã)>¬Ñ«Ôš‡LÍÕ¬ãþüè¿› ÑNðçò¹ª©z~ÓÊäÚ¶š4É¢ŒN&Þ„³À •‡¾ žk>ºIíÆ¯u¥FîUg¸š6Aæn'ÿ®~âos,$äÆå úVt*s.Y=à´e‡«ÍY?{þ _¡Q[!E_¹ÓM¾c¼Ÿµ4‹·wiõÉüª-2ÙnõKKgÎÉfTlzÏéQí"âä¶Wü73Ubâæ¶Wü7*ÑZºÔ¿i]>çj¯›m÷T`.Ù@ü‹§FÞ“Rù¼Õ¼õãnÂO\Tª«•9uvù’«.U)iwoìeÑO†?6xãþûüÍ]×,¢Óõ««XwyHÿ&î¸##ùÕó®nN»–ê%5­_òÿ1öš4—1Û»\E¹m!9gl•ƒ ŒÖem³˜.¼>À‘åÄŒ?ïó·õ¡ 5+É`IÞ ‘qI÷rÛòH­`ªÉ]½{}öÿ#š5¤›o^ß}¿ÈÄ¢µ®eŠÿIšèZ[Á$3ÆŸ¹]¹®NGÕ â²ãO2TAÕˆ´gtî­c¢æNêÖ$šÖx"ŠIbdI—tdÿÿ?Ò¡®£T€_ÜÁH«Ü@1ÙIˆ(Ï·5Eì“M½Õ^6,l%ÙqÔ—Àb=p úâ±§ˆRоÿðlaO¥}ßO‘JÛJ¼¼¦‚"Ê8QŸ™ÿÝÿ K 2çQÔÓO‰B\9`™ sùQ6©};+=̃fv;B0@ Ç­iâ¹ „mb’î(¶[ÜŽ3Œdç9¢£®¢ùRoòÿ0©,J‹åI··—ùþnº6kwqp<—òp;l¥gÓæšK‰äšVÝ$Œ]ÛÔ“’i•¼"ãÐè§(¾ˆô¿‡®©£‡v «q!$œ3liò²ÿ°CÿèW7áù/?Þ¸þPWI£s ÙÌ&Oý*ù|býäß÷¿F|n>6«R_Þý=·üú¿»Ãü¢®,H‘ø³ÅÅØ(6—j 8äüÍugþ—÷»OýµÅj_ò1x§ýÉôjV¸(]µÞ1ý¶_Nòk¼#ú"οÿ"ö¢}u•?ùÔÚ­ä–:¿ˆåˆ)f³†/›=Oã‚j{Ÿ ÞŸ]Z3ÿ 7Äò×ÿë¯òŽ»)%.Tÿ­`wÑŠ—,^ÚþtÍ»¹^i²ÈÙy4ÈÙ© “PxDæöê—úu¼ï?­#|b+Qqéä«65/ƒÿãêþÅ×þ‡sT-u~R9*Óoî¯Êgm{%xç|8ÿ¿©\f¿h÷Þ*×­c*²Okm–è Kö®Âù‚ˆrØRsÓ‡S\åÎ5¶ËŸûmyøâÜ—oÖ'——IÂNK·þÝ;Æ RÆéIÉÂ?ô]uÖñû¦Ø4ÿ8k“ñ Å½çýq‹ùÇ]e‰Åî•ÿ`Óüá­kk‡‡ÏÿIFØp”ÿíïý% ñ9Ïöý„-?ôcWŽjŸò½ÿ®ïÿ¡ö/t°ÿ°…¯þŒjòËÍ8NuËß0©µ¹ {{°ý1]¹4”`Ûþ®Ò= ‚q…6ß§ÞÒ:,gBÑ}­/?­_Õÿ„cÃ:ÙŽ¾ÕKHèZO KŸÔš¿©døoàö{QúŠÆ§ñ—øŸç# ¯÷ëüOó‘ëþÿ‘CPÿ¶Ÿû5uI\§€¹ðuùöäÕÕ¥{XàGúê}[þëë©Rûýrÿ»ýM_®_÷©¢ºŽó~¨]hšMìæ{½.Êâb2KnŽÇäUú)ˆƒìv¦9c6Ðì™vʾXÃŒmÃãsÚ£ŸKÓî¤2\XZÌåv’c·Ó$täñVè  “iz}ÌÂiìme”CÉ ³:‘Sýžò?•ù+¶Ñ—8Ôr3RQ@­4ë ÿc³··ß÷¼˜•7}p9¢ãN±¼–9nlíç’?¸òĬWèHâ¬Ñ@fÓ,.'3Ïcm,Ä`Èñ+6>¤T¦ÖܤÈ`ˆ¤Ä™W`Ä„ŒÞ¼9ô©h  °é–Öò[Ácm}øÒ%Uo¨–-:Æam¼p"H”(`AÆAçÚ¬Ñ@gÓ,.®ââÆÚYÓd’%f_¡#"§HbId•"E’Lop Ç'¾)ôPde£q•a‚=E4$à/n0=ÿ촲ʦù§Ö¡ûtóÊãþü?øP«ó<É%’W ´Ç¾0 üªJ­öèÿç•Çýøð£íÑÿÏ+ûðÿá@hªßnþy\߇ÿ >Ýüò¸ÿ¿þfŠ­öèÿç•Çýøð£íÑÿÏ+ûðÿá@hªßnþy\߇ÿ >Ýüò¸ÿ¿þfŠ­öèÿç•Çýøð£íÑÿÏ+ûðÿá@hªßnþy\߇ÿ >Ýüò¸ÿ¿þfŠ­öèÿç•Çýøð£íÑÿÏ+ûðÿá@hªÂö2@òçã˜XJ—Îÿ¦3ÿߦÿ ’ŠjH8Ô0Áêóß¿òJõ?úéþZù×Ùòì1Ôê°Ð×Ñ_ä•êõÒýµó¯‡Nÿ°ÄÍ‹þ8ñßÁdþD‹û ?þ‹J«â_ù5_úû—ÿB5yã1xÈ “Pi@àÛüÐÔݤ÷Þ3Ômm“|Ò^J¨¹'qîk:RJ£oûßš0¡$ª¶ö\ÿš7eçQ—ÚúëÿDð®kOÿF¯ÿ\cÿÑ«],Ÿò¼çîßÝqÿl[ü+™Óóý•«ÿ×ÿôjVT>üó1Ã|øþ”ztò´0@ÿTúx·ÏL‹àe]Ãz$ÌFyqÁýåD9Û¤ ܈€ã·úM½s¾¼’ÛÃÓĤl:\Ò·®VVÿB5ãª^ÒŒ¢¿™~r<GÚáåüËó‘Ó³§›¡Û«)x®-ÃÛ÷rÿ…pÚ—üxø›þ©ü宎ÑBøÞõ@À]FØtô†Q\î¥ÿ&ÿ°ª9k¯ YÛÊ/ïi¸(rT·u÷É?ÔÚðÖ¢F‘¦é~_å\oÝézüjÉãWðñ=<íG·»Vg‡‘ã¹ÑéRm#`ìo”ƒùV³5}¯ê=½Eh¥VVëÌÿòY׌cZ|½yßþK#KÁ'ý¼Kÿ³Õ[ROˆàÈÇújŸÍ¯Oõ­Í.Æ-29-¡"¶á“žYŸÔšÁ´çÅ’90œýVèÿZáçS•Y-š¹ç󪓯5³W9ˆ_ò;_}#ÿÑk[^!ð“íösÿ«âüŽ×ßHÿôZÖξâ‰ÒÓŸõvǧû¯] òü‘î/ààþ_’4õ3‰¼N}íÿôÜÐãÿIº~³OX:©ãÄÍŒqÿÇk^òòkk»×…¶·”‹¸`ãls0ý@5äÕ‹•%åø(ž%hÊtT[~Åéüøë_ ñºã§ýtÅu¾,û?YÎmÿãí\¦™óx×]|˜JßLÊŸã]§ˆm$¾ûu¤[D“ÚD‰¸àeÀÍt⤕zmôKô:ñ’QÄÒo¢þÚy׃ÿÖj#ŸšÛoþ<+Ðü?ÿ! ±žC²þRM^}áHÌW7ѸälŒýwÿõ«Ð|4Ù¿¾lêAÿ‘g«Í~Ûôý 3½ê5åúÞ$}š¥«çuc‘í-Íq¾1-¼Qu*ªªE€£ýZ×Eâû¬Ú½Ô.­¶õƒ‰.k›ñ4—º‚jRÆØ¸†Î…/å© ëËàã(·µšüŽìªŒ£'µšùû¿ðJÖ.‰©¿©Š?͉ÿÙk6´äðôý?{uð|ÿèb³ëÕ§¼ŸŸèjŸÅ7çú ¢Š+CP¢Š(© »žÙeXd(%BŽàÔ4Ri=šMYšÊmuUóo.VÚx—÷åçÍààc-’3ê9ìj}f±ñ µ³°/mº1#!ñùÖO5Ü×Wi¸É)+–=ð ²jwOK=>ïø'?°jwOݳÓÖÛ~?×\Çöpu)[§ý4‰jþwøŽîLgÍ·TôÏéQL™žò r Ü­ÿ“q-%©ßløÏšaO˜õÍÔƒúWŽÝá_Æßäx-Þ ù¿ÆßäW³è¤S)äz´ý(øôÖÿ–¨­ŽÜ[–þ´¶_ñç§õýßßœSŸéHüÚÈ:ù–¥¹–*Õ£øßõÖæ¯ø’ûÿòk–„Õ´y>_ÜØ2ý1‡Þª1ÿÅ/uN?´dlvûʵrå¶2ÉŸõQNœHáÖ›t™‚òãîFÁãþ^QiAÙÁú~oüɃ³ƒôüÿ2ä»_Äú«€¸’É“ŽœÌO³ì ŽË´cøÊçù º‡~°\Œùˆ‹ùܸþ•RÏþ=4ŒõOôê²·ô¨ZFÝ­ù4Dt…»[ÿIkõNm|L{ÌèÇŽ¸Goë\MvïͶ¢9d[±ôµÝýkˆ¯Gö¾_’_¡ëeÿkåù%úŒ€Xç ´ ØÿËÉN+ÎHÁÁ¯Dí×™ÎÒ# ¤ãƒ‹õÖ¸ …Ùu*ú9­g€Ýü¿_ó1˲ô_¯ù—4Ÿi ôûTdÿßBºY2müPqþ¹Ñ¸?ì;Zæü?ÿ!û#ýÙ~\×Hÿñí©{lwâ×wõ£ü_’ÿÒ®ïã|—á$ÿA/AY´Æÿžz\«Éî-ÄÒx}wêÚ9?ǧ•üæt§ß`a’Úé2ý0ŒZÃí¶M.\ãe¨ÛÇü~¿÷Õs¿à~úQË-púzéE{hÄžÓu¿„÷2¿ð¿(jž"|ÞX©Î}aßý*;ÿâ]¤Áƒÿvíÿ‘æZ’&ß5ëäf[8޼ÚÈ?¥)¿z?ý) r÷ê>×ÿÒ£þD ›ÂÏýÍçž:ýš¹í3;X_útSÿ‘¢ÿèÀV‘¹Š79ÖÖ6þ•ÎiC6ú À9³?¤ˆ¥tÑø_ËÿJlìÃü ú?ü³6ºOÇÎ£×æ´1ñï"W7]'„1ö‰óŒ3B‡>òð®œgðeýu:±ÿîòù~h GaÇ:EÉ=»ÎßÐV†Åᣑò$§¯¤hßÖ³àâûNNyÒæ__¼’ÿi±ÿGÒ¹º‚VǦlã?Ò¸ªü_{ÿÒ>·Æ½$ÿô³šÓ°tÝ\8¶Fÿ®Ñë]°ÔKpvi/äΟ…sºW6š²úÙÿ)c?Òº]pŸ´^·˲ž?§úQû5i_ø©y¿É⎗vÿšÖÖÙ·÷¬áïè JMñ›‘.£$z€Â—Wæ=5½lÓôfÒÿÈzÌã;_w>Àšéÿ˜wèÎÏù†~õ4ôr|&^éstr¤q·õ¬qvxƒR_K©GL­]gL¹ù$¼=éØéY¾ ÿ‘‡P<üÓ»sîsYÒþ;^OÿJf4?ÞZòúS3h¢Ší=£ÕüQš(þésÐÿ¿ø ÎÐ5»fþéfü”ŸéZZ§üŠ–+ÏÉåãÂSYº¨?Ý‚vü¢s\Pþÿíïó<êîõ=eøÝ…ÿ:F”}#‘zÿÓB­iGÿ"‰ÿOfN¿î-fÝó é§ÒI—õSýkN?ùÝ9û¬ÿù*Ÿ Åú°«ðÃü«1t¥Ý«Ù/¬ñüxUßs¯Hÿ߆üâCUôßâ-1G{¸‡þ>*My·Þ[ÉwZÂxÿpéZ¿÷…éúÿÀ6ïkü?¯üu6òæÓO÷-b?ÌÿZ¹­/—¨;YÇ?t7ÿT5¯øù¶^x³ƒ¨õOõ­/ÝݶAó5YÛ#¿ öjÉoOÏþ1[Òó¿èÌÛNt IyâH[ÿCÖ«iË¿S´OïLƒÿfÇU‹ãàZE]Úöœ¼ósà´+{ÙTÖÈènÊ«þ¾oY2þÕøùu²Þvž¿ð­«ñ²ã÷výt‘¿¥K¢6ð$ÏÝÔUòz}Ç?Ò£Ö‡úÛr7ÏjzÿÓ?Ö¸£¥n_OÍ|U±¾ŸúRg7EW¨{!EP xGþDëï­ÇþƒtZ&?á°bF[J˜ÀGÿ×®sÂCþ(Ý@Œd “ÿŽÃZÔ öƒk O³Cun9Îï‘?®1í_3‹ƒnmt—èÏÇSru$ºKôf„Ùÿ„á8ᮿ”I\N§ŸøH¼Sþä¿ú5+·™‘ü_¦ËܲÜÏÈ<ª‚¸SþFÿ¹'þŽJÓñ/ð¯ý*ƹoÆ¿ÁÂV.x|);2©BÊHê>ÏÔUÿGÑ5YB/˜×1)lr@Š}9?Kã_ùôÃë$ÿ!ÉIâ¾<;©{ÝÇÿ¢aÿ tgÌé¿7ùÄt*9Ê“þó_s“¡^E¨xîÞxwl6èŸ0ÁʪU5¡àÞg·ÿvèãñW?àoùm3ÿú­ÿßZÿÛÀÿÇá­±±PæŠÙE~R:3(sÁl£ÊgY­0[uôÊSù`Ö*Œø¦í¿éžŸÿ£cÿ ÓñbÛÇã~J+ CšK«Ãq3ï–HôòNÏïGaô¯3¨¹_ÿ#ÇÂÁª×Ä¿Èg¸†ôÓ¿œuÓ[Îê*9 ˧²'N"8ü®kÆÿrøù÷ˆÿãÑÖÌí_£þ¦?ù*ål=5å/ý%8óai§Ú„.ø›îØØF×ÿF5yãø”x·Úòý%vÚ½ÏÚf8:E«Ú¢àð0ÜÏ5ÆÈ¸Ñü`=/!ÿÑ[eéÆŸxÿéQ:2¸¸R³ïý*&Ί3 Øÿ±g/êäUËó»BÐTvšÜ`ö”U]Ÿ)Á;l×§lÊßáVî‰:VФ}Û¸‡ÒF?­MOãÛÏõdÕÿx~R«ýO^ðü‰·§Õþ†º´®OáùÏ‚n¬Dÿ㦺įsüÿ]O¥Ë¿Ýaýu*_®_÷©¢‹ïõËþïõ4WIÜoÖ\ÚÚ¥äöÖö—mn@™ TÚ„€À|Ì 8 ðZÔ®g[°¸žâåìt»¨ï™@ŠúÞébRqÁnÓ[LGBn­ÂÌÆx‚ÁŸ8ïŒüÞœyìjªéË:À×ö¢g`«™w@ ž¸ þ"¹ÝZÊáõ«[ehõX”_cŽ! ³cÑØ —PÐç¹´ñ"‹Ey/fŒÃ’¹uXãsÆ7\P­æ¹i“{k,7‚ÑItŠPy‰Á«v÷öw~gÙ®à›Ê8“Ë6ÃèqÒ°5Íîäêëgl¥.tÄ·ŒU ៎¼`0棽Ò/µStRÈiãû9íYÔ‰°#î“„HççìêSþWù?ÔõK%¹°T¸¸hU_`· ˆ01¼ñ»ŒçÎJãüý Nil¦Ôµ%·“OÅ*i±»°‘ÌŒY|ð”™³ÏN•Ò®wÛÔ< à\ç~ ÔbÎ--ÿôRšåË¢¥'ë÷7þgU9Ê2ÛW÷7þgsáû/VÖ%Ôm®/¾Ó-ìNð=ªìRP?x$$»‰;Fœî5} ìºÐ:–¤"}H¶ûn‰¿y€ƒÎýàÏ%8窇NÑÍpË×íãð"@E®Û5¥¯‰cfJ7ãý­Ì?ô*­!‹”NOÁ¢íceMl¹ù4tzm®&±¦$7W®©¥Û´ìŠ  ¸ K3ää/·Ž~På,üûyîî9/<¨„ cmà —ß•ÀÁ)É㎵†üO´û)ÿȵ6©mäêðÐùQ3{ê½ýÉ5Ã9þùÁöÑæÎ§ïÜgøó/ÔéeðË1Y$.ç”aÆG<ô>Ÿ­sšzÙ·ŠHóçµ³AˆGÎ|¹øoŸå'‘» ãž,x¥ÊèúÁRAXWã4•—§Ê±x™es„Ž;wo Š_ñ®zýÌåÝ—ùœ¸joØTŸuo»—üÌÿéV¾$œÇu~5册دٷ 7™Ÿ»Î6{{Ö‰ltÛM>ËO¸½¼°#È–Š\) æ’G#w[¥OâY5;;…l«ëöéŒz"ƒúƒUÖÇUžÚúð*´ï$­h£ ÈITó|8É\àgã?Qx`Ôb¶VI5µp™ä‚X±ÇטªÑ7üHµoö—Pýøªí•êFòêÑèMºÑN]Zû¿¤gÞE¡MáØÆ§© 2èÑÜ.•ؽÁ!£ó€Q’yz9âKí6ÿ‡ö¯Ó}¦„òFÓ¶5 n«vžxÇzļ?ñBY×TÿЧ®‹D»‚óÁw°£ƒ%µƒ,€©ùX¬  ýü뺴¥N<ñ[Mþ:•yJ”}¤VÕã¡Ï_[hÚi1Ç©jFÆGå™´øÄ«Âˆüâ+¾8çž•Jo µåÊͪê©j»~Ï"i‘³ÉÇ͹Là&L3g¯* @¦i*Xã+éYÕêÒø~oóg·Gá~¯óf‡“£ÿcù¿n¾þÓÿŸ±§“÷¿ç¯›»îó÷:ñïV&¶ðÚÞ[,:®ªö­»í>™¼||»TNCäõË.:óÒ±è­ Mˆm¼6×—+6«ª¥ªíû<‰¦FÏ'6å3€˜=0Íž¼tªþNýæýºûûOþ}þÆžOÞÿž¾nï»ÏÜëǽgÑ@[xmo-–WU{VÝö‰L^>>]ª'!òzå—yéD6ÞkË•›UÕRÕvýžDÓ#g“›r™ÀL˜fÏ^:V=¡äèÿØþoÛ¯¿´ÿçßìiäýïùëæîû¼ýμ{Õ‰­¼6·–Ë«ª½«nûD¦F¯.Õù=rËŽ¼ô¬z(Ô’.Mvd{»²\ïm¢ÌnÔ¶s'xUœ‚Om9ºp±:N—róÏö³uˆ¼c#íR‘óïÈãv~^îN&ŒÿÅSaœá­<Þëà·QÓ¥dY8O érÈBxôiõ¯+Ü·šýO™‚¼-æ¿öïò6RßGŒ¬Q__´h‘Œ–h¥[NU” NâAÉ®=OdH4c[ëñ Ã"ÀÂÉÈŸcUf`eH€ dñ‘Öª0Þk1à”G“À"ÑÇó5¶ë?Ÿž+‘Ûþy*ÿJ­Ýû¯ýµ²÷—7uÿ¶6[Ô’Èhú‹­ÍÉ»îÅöu‚L*~}ùèýÞ¬G¯Ï”ú´‘}¶ôÇ'™$„Ú&Uäxyœ‚Ù8Àçü£Pÿ‰zŸ.êeÏå„JÐÁ[G€L°Áã­æ¥FÐO³’fmÚ}›ü“ýI­#ÑþÛm!¼¼û9xNlÓs±¹˜ëæaFF2 qÎ?†ªÚŧ&2nnäqÛ±ˆÛ/–“)~üà®ã¼£œ–meIÒçã?l€_õÓµXeÎ¥Ei síg'øÕÉYÍ[¯ó.J΢õü_©bh´±%²EyzÖÓA'œïj¡ÕEÁUóc´ƒ‚Ãã8+mkáÉ/çŽ]WU[`P[Èšllòd|Û×Ï0xfÈ玕¸ßê4ž¿½†eÁö³‰­qök¾úÝ}dQú×nÚ-ù~¬ôp.ÑoÉ~Kô=çì~MåÏŸ?Û>Ñ"˜¼‘åãí¨ÄïÝœôãoséÏ/©Úøy5½‹©êf,¿js§F">èEóðù9%09ç¥k\¿üJo&ÀÀ½•~Ÿ¾«—ÖWn¹¨/¥Ìƒÿ58fׯèF\¬Úõý ­ßAÿ„‚LjZ—•–¶oìôÝ'ÈÅ÷;äÇlÏ}µ¶ÑiߨáþÓyöÉ,Ù„?g_,°²oó3¤íëòãסàjDœ|¶÷ Ï´.k¥l}ŸK9– †3ÏüyÆ¿—4±Åù›7øßöïù¿Ð¿¨E¤ù²¶ß}˜}­n$ûïŒí€aSÌÃG%—¯N9H‹EKttÔumj±HlP;´FÇrù¤/Ï´pÇ “ÁMM@ÿ¡ëç,|»«¥üäsúUM9¶xQeé‰JäXZ°Š½$¿¼¿¯Ä炽¯ï%øÁ6좲D±Ý5È»Žx[ʃÑw&ýùÏ-ÆÞÞx"‹H h-õ Ù#”À’³D`¢ ‚§$÷ã“Q¢ì×eO˜yQ£þW$ôüj‘&×FÁÌšÝqô¯õ¬¯u'ßþÂ÷R}íþeø¢ÒšIkÛÕ‚€†Hí™×ì#%—ÌNÐNlž2Í\Ö“”t›×[ËéI7[›E€r%ó7€ÜñïZÄ+Rç(•zsÍ›¯ô®oEÇÚ.”ã›9úûFOô®Ê?¼’ÿ3¿ü9ù(ÿ™4ÖÞ[Ëe‡UÕ^Õ·}¢GÓ#W—j‰È|ž¹eÇ^zV߆#ÑãÔ.|»ûÓl·V‚ÞW²@ÎۉïšB à ÜsŽÕÆVÿ‡›Ë‡ÌãQ³íÖCý+«¯E¯OÌìÆ«Ð’ôüÑ«:RÜiů/F¦,ÕÜZ!„‚‡þZù¹~ç^=ëBxô±öaõãÛ¤³Hm:/Ø€WÌ!ŽÐ ®Fp7V$‹³ÆÚt'%º~q¯øÕæ9µÔ~a˜áQǽ®ßé\ù_÷7ÿó*;¸¾ñ_‹ÿ‚gèÖú]ê°ÿij?f6ØŠO°&÷^ ’¾v‚1ÈÉ%zmpY7V˜\ÍöÌΞI„lÛöÅ9ß¿9éÆÞçž9æ¼67ê2ÇýûyéŸé[:›nѵ93Öy“§ý7«Zÿïõ_×ào‰ÿzªüኺ´í KR6mjáå:z ‡}¤'‚Knn’vƒA·Ð·åÆ¥©cRmØéñîyl_xó¾LvÁl÷ÛYZ‰Î™£œŽ-ò4‡úÑ¡ø™“€vÛ\7>й®—üÛß›:ßû¼ÿíïÍ›Ú,Zqð´²}ªìÞ"ÜŸ([¨qÆ7ù™ÆÑœíëÆ1óU]z øˆgRÔ„R×-ýž…£ùA]ƒÎùòzä®=é4/ùµ&þæïüzfkßòúÇ~q©¬©¼Ëçú?ÔÊûܽèÿRhm¼6×—+6«ª¥ªíû<‰¦FÏ'6å3€˜=0Íž¼tªþNýæýºûûOþ}þÆžOÞÿž¾nï»ÏÜëǽgÑ]Ç¢w¤öL KRû0ko6OìôÞªb”¡ ça‰=AaŽÅ«7CƒA½ïüLõ/!-¥òìîu0¸²ùØR3ò€[wr´ÝKþA7)ýØôöéù`ßüUfè§Ý6@Åœý}Ðë\0þ ÿ­Ò<êîóóýb‹“G¦ŸYÈ×wbõn& µSoÝîüÌ€iiÉ$`¸í4¤,)©êfÄÙ;<§NA hŒ 'ƒ–È?8ÀóµÌÉφm¹?-俪Gþ¤‡þ$Š™o›IsŒÓÞöZ*|1ÿê¯Ãñþ¬‡­ôøJ`Æ¥©㸅­éñæSœ‘ ó¿và_#œ•«”ÚM”Ï{x5/²FÝmÂ@8æ_3p8ø@;äQÐüO¬ÎÃîçØF«Í¶”Þ¶cô’Aý+Yz™¬¿ÞW¢ÿÛMr ûfѧ©yg‰gìø÷"ˆSË*¾vž2 ]½‹÷ÒÖ ÐdÚž£ fúW‰ ÓÒV|ÇíÀÌ»pz`œût®g^ÿ¼ƒû±Ä¿”j+KÅ}žÏÎïǼq…eŠ£üŒ£ñPô’!²Mÿ„cSxî®ÛPòTÉ[(‰œ€'˜I8#ƒ©çŽgÓ-ôüO¤}‡SÔæO´‘¦Ó㈫ gÈ'‚xÀäéYš_6Z¸ç›1ÐúMþ”x~È䲆ãÛšÖ Oë¢6ŸÁWúû(èü;›ð·÷ÆÒ9âhek49òfݹ<Ü.>lÍœ™8‹\‹LI~Õv/\[7”m—ËÝä'g™œm9ÎÞ¼c5SðÀÍŽ¦x#/’=!›üh׸д㟿°ûñB¹ŸûÛù~W8ßûó^Ÿ•Ês[xmo-–WU{VÝö‰L^>>]ª'!òzå—yéD6ÞkË•›UÕRÕvýžDÓ#g“›r™ÀL˜fÏ^:V=鹡äèÿØþoÛ¯¿´ÿçßìiäýïùëæîû¼ýμ{Õ‰­¼6·–Ë«ª½«nûD¦F¯.Õù=rËŽ¼ô¬z(Ñ´Y´=?‹5ýé±’â[hækE’ñFOîÄ„d8ðqÉâ ›ðÚ•¹¸7Fè#FÐ(@ÎU@¿$`£ž1Üâù&ÿaoý¤* +àíL© ‹¨0Go½þäÊŠ”gç?ø©áË¥ šüSKñKõ;ÈM¡ñ†Å¤ÓKKzÛ¤ˆ#gŒðŒdsÐ~Ï]C¤7ˆüWö»ëØ¢ÙËEf’SUèÛ@çI;HÚlè’m“Á Nr×Cób*‡‹,ÆŸ©ëò£ öÞÆCúÅ\ô†#—Ëò¨Î\2PÅry?«7<`°‡kI$‹ Õc3l<‘‚Ç8<€1ÎDþ'‡LþǸK›ËÈíšæ34‘Ú«º)6íS œ.rËŒž¸æ§Œˆ?ôaß÷'ÿ!šTlªîD€Ë¼…ÉᛞzU}e³®\ŒôÑïGþ?(þ”xTfÎÔÿxY~“Mþçò¨atòüÙäò¨`ôòÿÒ›%ñÂYý’üùóý¬[!ò¼‘åíó#ß»9éÆÞý}cñ³§Xëzý®äEmhþc­¢»*ÉU! Š 8änÀõn•y¹¿#6'§´ñ…q¾#‘äÖ_{glQ(ö5®¬Ô…>m’ŠHíË0ñ­NŸ>ÉKñQ_«;ý:m*þÎk¤»¼û4šÌRÄíh‚FrÛ‚²y„*î$d1ãœv¬[Ȭ“ÃÞ,1\\5Ѽ_:'…B&'`»\9-‘ÉÊŒ9ëKác»Â‘§8Ý¿êV¢½‰“Iñkº‘æÏ £0ÆìÈsŒõç?•(¥²Šþeÿ¥DQJçüÑÿÒ¢tZ×yÿ>Öÿ÷ý¿øŠ>×yÿ>Öÿ÷ý¿øŠ( íwŸóíoÿÛÿˆ£íwŸóíoÿÛÿˆ¢Š>×yÿ>Öÿ÷ý¿øŠ>×yÿ>Öÿ÷ý¿øŠ( íwŸóíoÿÛÿˆ£íwŸóíoÿÛÿˆ¢Š>×yÿ>Öÿ÷ý¿øŠ>×yÿ>Öÿ÷ý¿øŠ( íwŸóíoÿÛÿˆ£íwŸóíoÿÛÿˆ¢Š>×yÿ>Öÿ÷ý¿øŠ>×yÿ>Öÿ÷ý¿øŠ( åšîdØaFå91èAþçµD`JFHèKž?ñÚ³EEL¬]ÈÎ0ä_ä*Z( =øÛÿ$¯Sÿ®èÕ¯0Éoá,ƒߣŽ{3d~†½¯ãoü’½OþºAÿ£V¼wSãÃÞ ÿ®öÿú¯70zÓ^oÿIgšÉóR›ÿÒY©¨(:•ÙÇ+sõuNê溴•ÑY¢Ð‘÷NG#ðÈüjíî´5kn¿…Ý,ö¥tûKÀI¢˜ˆÇhR9÷Éü«ÃŒ¹Zþº5 òµ¯EùüIüH=mGþ‚õÎiC6š°Ïü¹þ½ŒÖ߂Ï]·wijY±EÁä*¾yüEbi u1ÿNmÿ¡¥{É5V«óè}ÑÚÿMgldþ_¡8‰[0¿»ÿ¶³nÂÑ,Ø®_Ms²TmnFp’@j·‰-â¹¾¾ó7—aléìÂiSQøsþE¿ [öÿÑrÒÝŒÞjƒÖÍ?ô¦JÂάžÚäÇ:‹§^Éü:äÿð ýXçFñzÇóZ×ÕHò.ñŒ «¡Çý{ÅÕOüSÚÓz(ÿô4³ªŸÜÝÿ×Õ×þ“5k%¤}_þ“Y-#êÿô˜Ú§üzZXWÿFCT÷í ø÷õIêæ£Ì6#Ö%ÿѰÖ\RnžÕÿ½m ÿÈs×%zOæyôU迟æ`ëÿò>i@w¾?úЬÃÚŸn5ÿÄ?­XñÿŠKô1©—¹&“ÞÿŠKô7#˜Gá-9³Œj ÿŽî?û=jܾÍgÄ©¸ü–@~QlÿÙ«…ódò„[ÛËV,<q“^åVîõ[»ËÛ»·“l—C„à0àãéÀü©ËÜ›¾÷üZ¡SÀ¹I»ïÆQ’:}ெG?ÆÖžaòQ+&.úô&¶ŸLm[U[Õx…”ò)w2ª‘Æ\`÷ñî=j£BW“Ó_ШAa¤å7¦¿§ù2†‹ÅÕËsòÙÜ~±0þµÒFÁÿáó7^¨‰ý+*k8t©uâ.HCü¾×`ÿ9¬Éµ[‰`ÓãRck%"7BAÎâÙö=?*‰Á×—A÷ä:ÿQYÚé΢ÏÍkny°¥Ck¨Kkc{hŠ¥.ÕUÉê6°aåøÖ…í‹Þ¬bXãƒì°§›)!Kª…Ú<ü§ò©Qöuœå³ÿ(ÿ“%GÙb%R{=¾èÿ“0è«GM»U¹c lq)Èãœqë×·Ö§ŠÒÞÚ!.¢'W.BÀ«µ›sžƒñ§øVF±2Ükwó!âF\z8©umI5´åEe6Ö« äXÈöÆ(Œ%zO²ý4åz.Û-~àÒ9R_ïY¿èÊ¥Ì-ýÕvü‘7Goô©ã&[iS°‘úŠvˆ¬/eˆí§b}?tÀ~¸ª©µEåúWEQw_¥¿Bÿ†Ÿm–´=,œÿã¥öj]uðÞ…‚yY éÙc_ý–°àºžÙfXd(&Ëâ\ƒÌ žïQ{½>ÆÑ´WU9ûÛ˜·ÿ[ð©t%í•O?ýµ¯Ì‰a¥õ…Uwü9ZüÊTQEuÁEPH?äš7ý…ÿö•V²ÿ‘?Uÿ¯›å%YòMý†þ‰ª¶ò(j¿õóoü¤¯=|2ÿüÑåÇàŸý|_úR6í'Ðx"VÉU–l×™±Oñ¬†UÔdlûT ŸaöýS?ò ðgýu“ÿGÕ¯çȼ9ÿ—¸ÿô+ŠåQ^Þ/Î_ú[8£õˆË­åÿ§­âÄi~h± Ë7‘îcÿëÒxÙÃèLC\BAÆ?„éV5ŸŸÂž\g-kÿ ­fø¡÷x@ÞH?”Ÿá\˜}éùIþ-‘Ã…^õ/)¿ÆKüŒÿÈç§¼ÿúU#?ðç¶gÿÑ–ÕWÀüxÏMÿ}¿ô«š4nÞiB1^ef€KÛ`gßò¯Kügÿnÿíç­ŒÓÿíÏÎdÏ#¿‹|FÙ•-/A?t`œNI?jxRc Z8Ú¬&hPîíó]ò=Á²Ï‹¼Oÿ^׿ÈÖ‡Ixtçƒ4_úÝrbb½…¼£ù3ðÍyGÿIdÞ1Ãj#ƒ›ÿIAþ•Åëÿò›Ùcøâ×Au4—RÌï$’i3–v$–;$þÏøƒþCwÓhÿÇEu`!ÉhvOóGfYfÔDÿ4Žïá’G.‘v’FŽÚ°Ü3‚ ~*ïˆ i~]yq–…'hÉÀ—qü&¨|/?èWCŸøù_ý«§wøNá½o üÔ׋›§”»J,ùüuGK0”»J,Ê›O·Ó'¾³µ`ŽMŠ[8æ={õ®[I?ñXkù$âFlý.c®ÏPV—W¼EgŠÈî^Zã4ùüCÿmô¡ o…“”&ÛÖËÿm:pRr§QÉÝÚ?ûiê¿äë¿õõ'þŠZõT¯*ø ÿ$ï]ÿ¯©?ôRת¥})ö%KïõËþïõ4Q}þ¹Ýþ¦ŠC7ë‰Õlõ ëßÁf`hÞ8–Xž"Ò8òùÙÀlgœWmE1f¯«[Ï fÎy}…f†W¿{pÙÎ6ªƒæ8Ç Žàw§éÒÃ/ˆ ½»¸hînôËY"SrȲÉûÍÊ 7Uùpzçšì( '@¼½žöÀÍ} Þ±?l·’ùÝÏÊr¾A@ Œz§5Õ靨«At÷Qî|Jç$Ç# èr? ·EQEQEQEQEQEQEQEQEQEQEQEQEQEQEp"’†ŒPÆòHÒ@PdŸÞ¯@+Æõ?ùüÿ]í¿ô^ÿã•Ýá¶ôÞ/ýW€j£ƒG¤Ößú¯#;ׄ;k÷©‘àf•/‰§O¶¿z—ù·™þÐÕ?ëÔè7u£1ÿŠ&úñú(Ô:„BKýa‰?»ÓbaïÅÀþµ,çþ(ˆ?ëÇÿhšð$ïËê¿#åç.nOXÿé'”xXÿ§Þ×…Çþ€j¶‘÷5/úóý jÇ…ÿãþïþ¼.?ôYªú?MCþ¼äþb¾®ÿíßÍŸoSã©éÍž†×úø¸ÿÒØ+‹ñ×üŽ7¿îÅÿ¢’»7ÿ[×é?ú[q¾;ÿ‘ÊûýØ¿ôRW›–ÿå/ÍFQþóò—þ•Oáÿü½ÿ×ͧþ†kRr 6ëÜËnñÛAY^éyÿ_6Ÿú0Ö´ƒ1ÚSn[ASˆÿ{—ËòDb¿ß§òü‘ÐOÿ%)ìôm3Xûº¯ýv²ÿÐÖ9ÿ‹”¿öÿÚÔÍgîêßõÚËÿF-yPøáéý),?‰Oü1ÿÒ‘âÖ#Hñëˆ-?Yä¬kŒyÚ¿ýâÿÐ^ñ;5Á“ƒgoÇý¼5gÜÞêÿö‡ÿ@Zô°±µ%ýtë`ãj+Íþ”Íï ÿÏ…N:ß¿þ5I0Ρ©úsOý)’£ðÏüŠþÿ¯é?ôêvÕu!ÿNiÿ¥W%OãOÕÿélâ¬ÿÚ*z¿ý-œö£t‹àÛ¡,€I(xÓ=X‹œàzü þUÐjŸê.¿ëêëÿIš¸u³á›/úûŸÿCoñ®×Sÿk¯úùºÿÒf®šÐQQ}ÜÿEú•é¨(µÕÏô_¡³}ÊéÿõÍ?ôl5‡hß-õµ·ÿÑW¹}ÓMÿq?ôtÏÙÝi¿õëoÿ¢®+‚‚ýËþ»ž^~â_?Ô¯âÏù<9ÿ]ÇþެÙOüS‡Ö÷ÿG[Ö—‹?äzðßý|/þެ¹?äW¿ÿ·Ïýo^áÑù~r=l7ð¨|¿9÷ò!Ù×ÀþrÖNw†³gw(cS+>Ñ“·<ãð­k¿ùì¿ëçÿŽW9^Å©Fq}[=ü4áR/g)\Iç\Ë/÷Ü·æj:(®¤¬¬v%e`¢Š)Œ(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š)I$ä’O½%QEQEQEQEQEaï®]!S3â+6ƒ×ü>œUz(¤’[ E-QEÆQEögÌçPäÇI÷åfd§þ'ò{¥‡þ‡-q:W>0ñÒsÿ‘–»IüOOºiÿú•Åi_ò7x‡ýËýµÑ„ø'þú8îTÿ CÕ~É;×ëêOýµê©^UðþIÞ»ÿ_R襯UJúcìÊ—ßë—ýßêh¢ûýrÿ»ýM†o×?¨xŠæÊ}L¥„RZéȯ4s±È+»å]˜'¬3]b§‡­¤×oµÛ[K4Æ`/fM«ƒÔqÏ¥1$×´èfI;+|»–ÅcÝ÷C°Rr:‘Ö›s®YÆ×¶ñÌ~Ój„ÈL:DvoˆÆ9ëÏAÍf]øng»¿Ú‰qk{'˜é%ôÐíÊ… ¢e\qíéW_H¡×Ð4YÔIòŽO¹Xþn=TôÏb}vÂÍc7;D%o.'`¨‰°ÕëËb£Ôõû-> ±0i–2…@ÁÚX¨Â‚GRET}'R·–w²6ö«Xà—Ïf[ #ràÃæèqÓ¯5ü#÷¶VwV–o,w6qÛ¸fR…#Ùœw0q‘Î}hfÇPŽê+dwAu-²Nѯ`{ý3Wj•Œ7VÑ[[¸„ò!ec»Ì1¸üjíQEQEQEQEQEQEQEQEQEQEQEQEQEsž8ÿ‘jCŒâDþuàZÐÆáéqoÿ Š÷ßȯ?û¼^Ó<&?éæßÿAáã¿ß#éÿÉ5™ÿ¿ÃÓô™¿yÿzïý‚¢ÿÚô\È‘ýxíIwÿZ÷ý‚¢ÿÚô\ÿÈ‘ýxýÕ᯳ê¿ô”|Úû>±ÿÒQåÿû¿úð¹ÿÑmQhQ<ó^C–‘í]UGRN0*O Çý×ýx\ÿ覫> ÿ‘…?ÝÿÙ–¾²¼¹}¤»%úŸoˆ—'µ’è—êvOÄÇþ¾nô¶ ã¼yÿ#÷Ò/ý•ØËþ½ÿëæçÿK`®;ÇŸò9ßý"ÿÑI^v[ü”¿4yYOûÏÊ_úTK^í<9â¸H@-¤ˆÎ9 ×G¦Z5ïötdùeíâ›q^ß²±üÊ‘\¿‡¿äOñGýs·ÿÐÍwú ËøþÀùýb¬ñòäœä·¿þØ™že?gR¤–üß”"ÇÜÉJ_ûÿícQë_sWÿ®Ö?ú1i÷òRWþÀÿûXÔz×ÝÖ8é=þZóañÃÒ?úRJ¯á~|/áOúþ—ÿAž­F3®_úsOý-yu¿SÕÿélñëÿ¯«ÿÒÙÁkG>²ÿ¯Éÿô*íõ?øöºÿ¯›¿ý&jáµù¬¿ëòãùŠî5?øõºÿ¯›¿ý&jîÄíYþg¥‹ZCÖ™·}ÿ0ß÷ÿGA\uæ¥ý•£Y^¼Ò–öƒfí¹ÝÂõük±¾ÿ˜gû‰ÿ£ ¯?ñÿŠRÛþ¸Øÿè3× iF[7úž~W4£-›ýMÿÈ÷á¿úø_ýYRÈ­ÿoŸú>Þµ|]ÿ#׆ÿëá?ôudÉÿ"½ÿý¾èûzëÃÿ Ëó‘Ý…þ —ç#&ëþD;/úùÿã•ÎWEuÿ"—ý}ýž¹ÚöpÛKüOó>ƒ ´ÿÅ/Ì(¢Šé:Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( “þi™ÿ°ÀÿÑ5NÓþE-Oþ¾­¿ôjçüÓCÿaÿ¢j•§üŠzŸý}[è2×~~hó#ðOükÿJF“iÞ9Æ$“¯ýw®“Çg> µ9Îu)9ÿK\~¯ÿ"·‡¿Ü¸ÿѦº {þIV…ÿ]Çò’¹*C÷”§ýù/ÆG j½¡SþžI~25®¹Ñ|8=!µ?øôú×⃛mþ½Oþ†ÕÕøk7ºf„·½Ú’cyÎÜDòà~Éx˜æÛGÿ¯Sÿ£§¹krvoÿn#/\˜gÚOÿnÿ!ž ÿ‘¿Mÿ®‡ÿA5¿áÿù&º—ý~¯óйÿÈݧcþzýÖ÷‡Ïü[Lvûbÿ8«lwÇó‡þ•#£2þ'Οþ•"¢ÿÈÝâúã}ÿ³VîŒâ–ðý„þ…%`§>-ñGýq¾ÿÙ«gK–8|'á9%uD]H’ÌpÝ'S\ø¥xEzé29qŠôâ¿Ãÿ¤HÆñá¥Ø"ïÿjVˆxñ øÎ|ÕÒiÖ¿o}Ó~Ï?M¹v3Œ™q\çˆäbÔ?ë»:íÃ5íšòúS= $—ÖzÚ_ú[4¼w%†§}yS$J¡º Ÿn+Öaÿ:ûÇÿÇR¼{Âÿë5oûÜè5ì0È!?Ü‹ù%yÊ^Ù?CÃ⯬'ècÉÿ!ßøŸÿ¡É\^—ÿ#wˆܹÿÑ‚»Gÿàÿ®zþ‡%qZ_ü¾!ÿ®w?úªÂ|ÿ ý Àü?ÃÐõ€ßòNõßúú“ÿE-zªW•|ÿ’w®ÿ×ÔŸú)kÕR¾”û¥÷úåÿwúš(¾ÿ\¿îÿSE!›ôQ\¶¬—V×÷··Ë¨Ë§ª‡ŠK¢žB· eÝÎN~n;qLGSEs÷¾ šÔÞÄ©“‰ôñƒ‰¼Ï•Açœ?\c‚*½î·«[ZhÒÍàÓeD(QƒL #6ì/ß88?N2@:Š+‘ׯ¯F‘®Ø_}Ý,Â< Ta‹§$ò õïž‚­Þk·ÚC\-üvó°³{¨¼€ÈVU(Ù'»¯ÍÇ~(£¢¹=núþ=/WÓµm#ɤÏp’[£ YH$çï 3ϳ«_K¦xræöF– rè¯Ð;â€4è¬;ëýBÉa‰ï-Ô›Ÿdv3LvŒp8œ·NGFßSÔ5]OD¸·ž;xî,§’H^6uܯ?ľ¼8ç®xꨮ^ÛÄw·W1ɳ=³Ý<¥³›r¨rža—8ÆHǾk£€Ü3í!ûÃåùdœ§lç½KEPEPEPEPEPEPEPEPEPEPEP7ã¬ÿÂ+s‚N¿x7ˆF4ÿ úy·þB½ãÇŸò)ݞƼ#Äñãáoúú·þB¼ŸûtN“Âßò,xWþ¿¥ÿÐg«qs¯_uÿ4éÿ]媞ÿ‘c¿õý/þ=]¶çÄW¿õæŸú:Zò+ÿ§ÏÿKg‡‰þ5_Wÿ¥³Ï5cŸ Ø×åÇô®ãSÿ[¯úù»ÿÒV®T9ð­‡ý~\ìµÛ^OÆ<ÐJ’Ä÷e]p?è­Ð×£‰ZCÖ™êãåƒóŸæoßÌ3ýÄÿÑÐW›x’î5Ñ,lÎ|Ù-lä^8¬ÀÿèK^“}ÿ0Ï÷SÿGA^O⎺?ýƒ!ÿÙ«Ÿ)Š”’}ÿÌåÈà¥$ŸÊìì|_ÿ#׆ÿëºèêÉ“þEkïû|ÿÑöÕ­ãG޼7ŸùîŸú:²%ÿ‘^ûþÞÿô}µk†þ—ç#l'ðh|¿97_ò!Ù×ÙþO\ít7_ò"Y×Û&®z½¬6ÒÿüÏ Âm?ñKó (¢º°¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¤òMý†þ‰ªV¿ò)êõõmÿ ËWGü“Cÿaÿ¢MQµÿ‘SSÿ¯«oýjàÃ/ñ¯Íd> ÿéHŸVÿ‘_Ãßî\èÓ]½ÿ$«Bÿ®ãùI\þ­ÿ"¿‡¿Ü¸ÿѦº {þIV…ÿ]Çò’¹êoKürüäsUÞý|—ç3CÁüÙhœ‘û™ÿô˜k’ñ/üzèßõèôc×YàïøôÑý1ŸÿJ"®KÄŸñë£סÿѯYá¿Þåêÿöãûì¿Äÿ9Œðüºwýt?ÈÖ÷‡ÿäjõö¿ú5àÿùtïúéý oxþIæ¥ÿ_kÿ¡C[c¾?œ?6o˜ÿçOÿJ‘Q?ämñOýq¾ÿÙ©úŸü’Ýþ¾ŸùÉLOù|Qÿ\o¿öj~§ÿ$·Eÿ¯©?œ•ã§ëý&DKã¥ëý&EïdêÞd›+ÿK\ŸˆÁ_j@õ?Zë<1ÿ!¯ ×¥Çþ…-r¾&ÿ‘§Uÿ¯©?ô#W†ÿ{’òú\0ïÒ_Ýú\‹ÿYªÿØ2ãÿA¯`ƒþA1ý!þI^?áõš¯ýƒ.?ôõø?äý±¤uæç?Å_×cÈâãGúìd?ü†×þ¹éÿú•Åiò6ø‡þ¹]èuÚ7ü†“þ¹éÿú•ÅéŸò6xƒþ¹]èUXO†§øWèV à©þú±ðþIÞ»ÿ_R襯UJò¯€ßòNõßúú“ÿE-zªWÒ`T¾ÿ\¿îÿSEßë—ýßêh¤3~³n´->öi$¸ŽVóqæ ¸‘QøÇ̶žqZUs®XZ\½¼’JÒÆE’óÈÜUH^9çÄCq¤µçˆ,¯eŠ·±Gòv±.ÌÀF`÷<ã¦*ܺU”ÑÝÇ$9[Æ8Ü~r(ïÇ ½=*åNëJ²½3›ˆ7›ˆDüÄn@IÇÔŸzŽ N··Ü&Ê5ÚL§÷âp¼ôTú…ôZnŸ=ìÊí]‚IÓ5f€3cÐ4Øà¹„@ì—1%2LîÆ<´1$ÉàVîl༲’Òx÷Á"ldÉ™Ò_ÞG§é÷7²†híâi\ É!A'üTêÁÐ0èFh­Ö›k{2M28•¨xåxÎÓŒ‚TŒŽ¡] NHmbމ-2!ò¦t( ÉŽ+FŠ º5Š]›”IQËù…RwT-×q@v“Ÿjµ´VÞg”ó$26Xœ±ë×§ÐqJò•ž8„R0pIpÕÆ:óß<}*J(ªÓ_Eí­£+™.wì £'5f€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€9Ÿqá¿óØ×…x—‹? ÿ×Õ¿òîž?ÿ‘Bóéý x_‰¿ã×Ãõõoü…xxï÷ÈzòGÍfò0§éÿÉ7Ÿññ®ÿØ&/ý¯M½8ð,?öoý'j[Ïøø×ìþÖª"»’ËáÕ´±…,ÖÑÄwtÃǰþ8c^=8¹J]\ô”xàç8EuqÿÒQæÞÿëŸúñºÿÑ/Z¿ÿän‡þ¹Iü«—ŽY!bÑHÈYJ§R0GЃŠéþÿÈáýs“ÿA5ôøØÚ…YwùŸe˜ÂØjÒïÊÿætó®—þ¾®¿ôº ä¼{Çuÿ\¿ôZ×Y7úÙëæëÿK ®OÇßò;jöÏÿE­peßÇùKó‰åå_ï+ÒúTGèò'ø£ýËý ×w¤¬ðÿý×ÿFA\ƒÿ"Š?Ü·ÿц»­w‡ÿì¿ú2 Ë0ø§þ'ÿ¤#×ãŸøŸþ›‰bãþJ:ÿØÿjš[ÿ˜Çýv±ÿÑ¢Ÿqÿ%ì ÿµj=sþc?õÚÇÿFŠó¡ñÃÒ?úR<ªħþÿéHâ~"ÈÃý{ÿíG©®ïuû[ÿ(jˆò0Åÿ^ÿûQêKƒûí[þÀ–ÿÊ öé—§þÝè¨ÿ»QôÿÛ¢u>ð×…³ÿ?³èÖ†œ¡üUv¬2 šñÿm¥ªÿ‘kÂÿõû7þ‹ž´4Ïù®ëÍôlµãb‰Wçÿ¥3ç±Å­óÿÒäyž¤sá]?þ¿.?öJè4?ù ÿ®·ŸúNõÏj'>Óÿëòãù%t:'ü‰ÿõÖóÿIÞ½¬GðøŸþÜ}/ýÙŽ_ûqÛßÌ/ýØÿôtäþ'ÿ˜?ýƒ!ÿÙ«Ö/ºiŸîÇÿ£ ¯&ñ7üÁÿìþÍ\97Å÷þ§|êv¾4ÿ‘óÃ_õÖ?ý+_ùï¿íïÿGÛVß?ä|ðßýuÿFŠÄ—þE{ïû{ÿÑöÕx_áQù~r4ÁòüädÝȉcÿ_müsÕÐ\ÿȉcÿ_üsõía¶—«üÏ¡Âm/ñKó (¢º ¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¤òMý†þ‰5F×þE]Oþ¾í¿ôªðÿ’jì0?ôIª6¿ò*êõõmÿ Í\1øeþ5ù£Í‡Á?ñ¯ý)êßò,xýÉÿôi­ý{þIV…ÿ]Çò’¹ý[þEÿ¹?þ5ÐkßòJô?úî?”•ÏSz_ã—ç#–¶ôëä¿9ÿmþ¸ÜéDUÈø‹þ=4oúô?ú5ë°ðLfH´E [Ü·>ÓÆ¥qÞ!ÿMþ¼Ïþ’²Ã½ËÕþs1Áÿ¿KÕþu z üZ^¹i{:»E î`€x=3]?‡ÿäŸj_õö¿ú5Ã×_áûȃõ; Oœ&ŽR1ÆÓ$#¯ÔìÇS¼T–÷àÿàù+ÅMo͹?ø#SþFß×ïýšŸ©ÿÉ.Ñëéÿœ”Äÿ‘³ÅõÆûÿf§ê_òKôoúúç%s¿ŽŸ¬ô™’øézÃÿI‘ÂÿòðŸýz\èR×+âoù5_úû“ÿB5Ôø[þCžÿ¯[ý jå|Kÿ#F«ÿ_rÿèF« þ÷/ð¿ý.F˜O÷é…ÿér,øcýf«ÿ`Ëý½zùÁþôûN¼ƒÃ?ë5_û\è5ëÐø•[¿oÿ´«ÎΊ¿®Ç“Ÿÿ?×c!¿ä3ýsÓ¿ô9+‹ÓN—ý«¢à0H­Œ\8P$©QÀœ©âºª)ˆä5hn—RzÆUuÔA9CÄL€ Oü <îµ£¢y‘ø†å,¤ûRÜFlÝî\EÌxéÈ##Ó««ãP7ÛÜØˆUã!A8\àggÕšãµ%í¢×môÛ) ôÕ*¡Ã˹ÁÆ:¶1žý3M–Êg7ߨVW6JÚ{Ç hÌ&I²6ã8˼oçïMvtPsd$´ÕÆ‘¦ÜÛZ>“4O ·h̳òáHË0#9ÈäÖ׊ÿ„/R9û# tí[• ݬ7Ö’ÚܦøeR®¹# ûŽh”šÒâc}ýƒg=ˆ:{ÆÁâ0·ÆX ãxþðæª9Η«ý’'BúdÑh´ÉmÄŽGÊNæ;ߨã9ÏSÅwtP5u¥5µí‚é–Â×9‘S!T \ú’:žN*……”¢K_ì»+‹+”³‘/$š&@òw1âFßÎáž3Ï5ÚQ@n™c zƈöÚeÔ2 ÉP\ 3‡lçæçëÍtújº|BÞ¡‹©0`ã“×w5nŠ(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Šå>#M¿‚¯d–Dglž5àÞ'Ôlš-5¼·g‚ê*¬ªJsƒÅ{Æßù%zŸýtƒÿF­|¡\u°q«YUooø?æyØœ¾5ëÆ³•¬­ùÿ™ì7z¾˜gÖˆÔm“J‰×æaçp9äò8÷—âNÂãáå­¼7ÖÒNcIT° ðx¯2¢¹©å0„£.g£OîV8éd”éÎ3ç~ëOîV é|s¯‹-帚8c /#t÷5ÍQ^jJ­9S}U[EV¥*MÛ™5÷ž6£be“¶ç7'‰W¡¼…‡~ê úkšñÄðÜøÆþX%ŽX›ËÃÆÁÄj#Þ¹ê+ž† 4gÎ÷üZ¡Ë†Ë㇩í¯£_{Oô:â¼+â8¤š4’TƒËF` áùÀï]ž—ªéñM¡/­”G¥¢>fQµ¼Èx<ðx?‘¯+¢¦¾5›mîïø%ú‰Ëc]¶åk»ÿäª?¡ëw¾š|z.¡haþÉòüÏ9vîó3·9ÆqÎ*=kVÓ¤¿—¨Z¾ùlÊí™Ní²qÏ8kÊ(¬#”Á8¾g¢Kîiþ‡4r:q”eÎôI}Í?ÐꀟÀטx†h¦þÊò¤GÙ§BµÚÃ9ÐûV5Ž/ŽÝJç>+†Þ2¿ôÿÌôj67>5ðüð^ÛËrF^D•YTy€òAãŠÇ–òÔørò!s ‘¾Õ…Þ2s=¹{…cøJãè§Kq„oðÿÁÿ2¨å‘¥AKá·àÛýMˉ£oÙÄ$C »rSpÜ:ãñ¬:(®ºpäMwmýç}*jšk»oï (¢´4 (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€7þÑü+ÓmçGçÿj‰<­Ãvß+±×ã5RÖX×ÃZ”M"‰âÝ• rÀ r@ïŒÌV]Š¢’jû»þ)þ‡:äš¾îÿŠ¡³©ÍøwC‰$F’4›z†®d$dv­ÍjöÖ_†š5´w0½Äsñ,€ºŒ?QÔuqTVr©rëðÉ¿¾ÿæg,eɯÃ'/¾ÿæzO‚u +q¤ ¯-âÙmt|ª»I‘ÎOšãõÉ£–×HÈŽRЫ`vŸ5ΧjÆ¢¦ž B««}ÿàÿ™,i×u”·wÿÒ¿ù ­ x¡¶ÔÖI ÅPÌâ'Œœ~ŸÀÖ5ÓRñå~_ƒ¹ÙVš©Wåø;B][øŽ_>/.X¯o¼aËnÆ|öõ§jVïðãI¶YâiÒåÙ¢ (Ìœ‘ÔuÊÑX<*n.û[ðM~§3ÁE¸»ü-?¹5ú·†¯maÖ¼,òÜ‹µÂÈYÀKM€}3‘ùŠæµùoêrÄêñ½Ü¬¬§!s‚qYÔS§†PªêßuoſԪXEN³¬žêßù3—êløvh¡“RódDß§N‹¹€ÜÅxßÚ½FoJeºNÌ2µ¹#Ï\Œyyïì*ñZ+ ^_L”œ¬r㲨bæ§)ZÇ«WNþÕ‰þßk°G`7yË•äÝß¶F}+‘±¹|M®ÈgŒG$7axÃg8Áïšå袖_jIKuaÑÊáII)n¬}ðþIÞ»ÿ_R襯UJò¯€ßòNõßúú“ÿE-zªWyê•/¿×/û¿ÔÑE÷úåÿwúš) ߢŠ)ˆ(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Šóß¿òJõ?úéþZùB¾¯øÛÿ$¯Sÿ®èÕ¯”)ˆ(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Šú#à7ü“½wþ¾¤ÿÑK^ª•å_¿äë¿õõ'þŠZõT¤2¥÷úåÿwúš(¾ÿ\¿îÿSE!›ôQE1Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@{ñ·þI^§ÿ] ÿÑ«_(WÕÿä•êõÒýµò…1Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@D|ÿ’w®ÿ×ÔŸú)kÕR¼«à7ü“½wþ¾¤ÿÑK^ª”†T¾ÿ\¿îÿSEßë—ýßêh¤3~Š(¦ ¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(Ï~6ÿÉ+Ôÿë¤ú5kå ú¿ãoü’½OþºAÿ£V¾P¦ ¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(H!’æâ8"]ÒHÁT{šÒoß©”7’¦"Cn”ø}yǨÝ"XïoŠâ(mÝ7ç£:•õ¬ÖvvÜìXñÉ9éX·9I¨½Žw)ÊmA¤—•õûûäеYRH‘e`De]äûsšOì[þ«0þòÊ…séqœsNzV~sÖŒÕZ§u÷Á/–¯ó/»þ ¤4K²m½F] ¾™ÉïÇOZDÐïÝC,hA`)Ô‚€Obk:ŸÒÂIŠFBARTãƒÁš©Ñ¯»þœk[I/»þ pè×ãþX‚zàH§#ûÞWß§ÒìkÝÀmˆgŒ´è}9>¼}Aôª>´SµNëîÿ‚;Uî¾ïø%ó£_,…^€™ÙÀQØ‚ÙÆGq׃RjÛ7)rlOy=ÍÞÅvî;sœg½Iö™þÎmüÖò‹‰ çÀc?­&ªôkîÿ‚&«tkîæiKáÛØÇÈðLü~î)AnN3Lä~‹Ÿ êVëù¥‡Ì#çctû‘‚1×"²U™UŠœqÁàÓ¤šY›t²;¶Ë1'€ýü©rտľïø$¨Wº÷•½?à—?±¯wìÙrpªeP_Ýyù‡N{RèÊÊ<²™Ärîù%=‚äú~x¬úqveU,J¯Ýð>•V©Ý}ßðKå«üËîÿ‚_þÿÁ4/€B,ªÌÀãéÈçÞh·üo‰#¡’EQŸL“×¾:â¨e9RAÆ8=©|Ç1÷·– `¹à߀¥j×ÝÿV«Ý}ßðKÇD¿\ù‘Ç1$ȹ>ƒ'Ÿñuœšã¡``àò<Õ8^ìqÆÑПZÍ£8§j×Ýÿ9jÿ2û¿àšpèó¶ÔXwã!|åË{ ø?‘¨Ž|Oî¡ó×ûðëœãgÛñéTiCБEªw_wü嫉}ßðMô[¶‰žO*ßun$—9Á?C×)±èšŒ€‘jã°†À ã9 ö÷éT¤‘årò;;ž¬Ç&ž.gPM&» î8+œãéžiZ¯u÷Á Vî¾ïø%™4mB=ùµv z¨Ènq‘ê:tõµ$š¡æ&‰@à €ŒO@ðNxÅPI¥Ã¤®®8 ‚8Çò¦îm¡rp@Ïz-Sºû¿à…«w_wüøÑ/Ήwœ~ïÌ]üú®r;þGÒ¤¸Ðo-_lïmŸºí:€ãÔsžœþ^¢³YÙݘ–bIby$õ¤gg9f,@$ç€0(µKî¾ïø!ËZÿû¿à——FÔBŸfa†Û¹ˆ žOq×§OQJº%ùh•?6ùvg¡lž=9î1TžieUY$w †bqÀ~~TÊv©Ý}ßðGj½×ÝÿÓmQIDrB¨ÄqºE=—¯RxÇ®} 54iÉIm¢ üÁæ\ªÿ{ä}?¨¬òKX’ORi)rÔê×Ýÿ\µm¬—ÝÿÑ:¢. ?g;#vp¤ƒŽ¾çzäzÓ±uáZÕ×®Yˆ ¸ë–è1ïU^âwbÏ4ŒN %8¨÷¶Üpy#=hJ¯V¾ïø •n­}ßðMô[’ŽÓ´V¥3òÜ6ÂqÔÜgñö8•<;}"¾I—hq•Ieé¸ãã¯ZËggÆæ-“œJnO­5?™}ßðAÆ·I/»þ ©y:Hð5¼Â>¾\êÇ=†3œö÷¨Î‹|0|´Ù‚Þgš»pÎqÜ¡ÍgƒŽ”á#ˆÚ0ìˆ%sÁ#§ó?©Ý}ßðC–­þ%÷Á4B¾“1œí•H^˜ç9õÍ3ûøä¤A×8VG?ºóóc¾:wÅRÁYC­Œ€x4™8ÆN)Ú§u÷Á¿Ì¾ïø%ù4[¸äØZÛpê>ЀƒýÒ È9ãð¥mýy1&ÃÒO1B‘×p$ýÞG=9µE©Ý}ßðGËWù—ÝÿÐ& Gdÿt:–õÆ3œãœzsÒìkИ±DAé$ȼzòztçÜV}Z§u÷ÁZ¿Ì¾ïø%ã¤^†H—œÓ Áô<ð}ºÓŸD¿FÚЮþè$]Ê=HÏÜñÈõ¬úsÈò6çvc€2Nx -Sºû¿à…ª÷_wüEt+¢ªí-²G’ÌßFÇ~¼uàÒ·‡õñ¬q¤ÞgC ‡§R8AúV]>9d‰ƒG#¡ ©Æ­.Z½$¾ïø$¸Öé%÷Á.I¢ßÇr!$®§(}óÐqÏ=ˆ=êEðö¤ã)¶ÖÛ*¼ãœ;þGÐÖzM"#¢Hʲ 8†y¦«²«8ÇÔZ¯u÷Á-ki%÷Á4Eº†&fÉT ²|gªÒ&‰|ùQ 1Ÿ(È¢O\mÎsŒœz ÏÍ)$’I9=éÚ§u÷Á-_æ_wüZ]ÈA˜Ç ´1pß98U  '¿LLTGA¿RÂHÒ<”»€$>ŠzŒŸ§áYÛˆR¹8'$RgŒv¥ËVÿû¿à“ËZÿû¿àš’x~ü0X£YÉ;H*ÝÁF·#Ö¡:=öì,!‡ðºº•o£g¡éÓ= R AÈ'=sJdvcgb‰ªO=qBU;¯»þÔk/´¾ïø%ïì[¶ c0JGEŽtfaêr,ºü6ï4°„U]ø.2G|nþ•œElxq Öª,šSO ±î<…Êqõ¦£©¹]YyÁ"¬ªÓƒ›jË]¿à˜ôT÷¶Íe}qjç- >¤T²i«£¢-I]QLaEPEPEPEPEPEPEPÑ¿äë¿õõ'þŠZõT¯*ø ÿ$ï]ÿ¯©?ôRת¥!•/¿×/û¿ÔÑE÷úåÿwúš) ߢŠ)ˆ(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Šóß¿òJõ?úéþZùB¾¯øÛÿ$¯Sÿ®èÕ¯”)ˆ(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢¥µ·{»¨­ãÀy\ ' ÉïíI´•Ø›I]š:ŠÛÚiVVqHí3ÿ¤N`.äR ~²jæ«sÞ£$‘b ‘¡#UP þB©ÔRMA_s*jš¾ïWó (¢´6 (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€5õÅ‚o³ê0HÍö°L¡†6È1¸^µ‘]™±¹ð…ì2ó}lÆXF Í'Ó±ü러(?uÃù]¿Ëð9°ÏÝpw÷]µü?¢Š+s¤(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Šú#à7ü“½wþ¾¤ÿÑK^ª•å_¿äë¿õõ'þŠZõT¤2¥÷úåÿwúš(¾ÿ\¿îÿSE!›ôQE1Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@{ñ·þI^§ÿ] ÿÑ«_(WÕÿä•êõÒýµò…1Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@hè|jªøÏ—²uþìlßÒ³«fÒI´ïÝN# o$XU:¦×Ý´ýp3YW~ãKw§Þaˆ»q[½>ÿêæ5QZ›…Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@ZO1jKëfÝýOô¬ÚÐÑu¦ê"g‚9Ñ”ÆÑÉ÷Hˆø ÿ$ï]ÿ¯©?ôRת¥yWÀoù'zïý}Iÿ¢–½U) ©}þ¹Ýþ¦Š/¿×/û¿ÔÑHfýQLAEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPžümÿ’W©ÿ×H?ôj×Êõ¿Åøí&øq~—×2[[!ß,pù¬¿¼\aw.yÀê:×Ì©§øhÏ(“_½XF<·]4n9ÈóFÞz`œûT¹¥¿äÌå5g¹˜TVÇØt°ïþÛ¹ûgüòûîúÿ~zs÷zñïR¾Ÿá¡Ö>sÿ# ŠÝM?ÃFyDšýêÂ1åºé ³qÎGš6óÓçÚ¢ûƒöÿÛw?kÿž_`ýß_ïïÏN~ï^=èö‹ÏîäÖ>sÿ#ŠÝ}?ÃBx„zýëBsæ3i 2ñÆšws×$cÞ„Óü4g”I¯Þ¬#S.š 7äy£nLŸj=¢óûŸùµŸÜÿÈ¢¶>àý‡öÝÏÚÿç—Ø?w×ûûóÓŸ»×z•ôÿ âë÷­ Ϛͦ€ËÇiÝÏ\‘z=¢óûŸùµŸÜÿÈ¢·SOðÑžQ&¿z°Œynºh,Üs‘æ¼ôÁ9ö¨¾Ã ý‡öÝÏÚÿç—Ø?w×ûûóÓŸ»×z=¢óûŸùµŸÜÿÈÇ¢·_OðО!¿zМù®Úh ¼qæÜõÉ÷¡4ÿ åk÷«ǖ릂ÍÇ9hÛÏLŸj=¢óûŸùµŸÜÿÈ¢¶~Å  ÿÛWfôž"Ë÷3==óÇNjGÓü4'ˆG¯Þ´'>c¶š/`y§w=rF=éûEç÷1ûXùýÏüŒ*+u4ÿ åk÷«ǖ릂ÍÇ9hÛÏLŸj‹ì:ØwÿmÜý³þy}ƒ÷}¿¿=9û½x÷¥íŸÜÿÈ^Ö>sÿ#ŠÝ}?ÃBx„zýëBsæ³i 2ñÆšws×$cÞ„Óü4g”I¯Þ¬#[®š 7äy£o=0N}¨ö‹ÏîäÖ>sÿ# ŠØûƒöÿÛw?kÿž_`ýß_ïïÏN~ï^=êWÓü4'ˆG¯Þ´'>k6š/`y§w=rF=èö‹ÏîäÖ>sÿ#Þ¹¹ŠÀ/+„\ú“Wõ™– H§Ám (Ä¡lÄ~?Ê´,cðÕŽ¢Ó¾³¨O\²ã¯=(†ÛÃmyr³jºªZ®ß³ÈšdlòqónS8 ƒÓ ÙëÇJÇ¢´<ûÍûu÷öŸüûý<Ÿ½ÿ=|ÝßwŸ¹×z±5·†ÖòÙaÕuWµmßh‘ôÈÕããåÚ¢r'®Yqמ”ElCmá¶¼¹Yµ]U-WoÙäM26y8ù·)œÁé†lõã¥Wòtì7í×ßÚóïö4ò~÷üõów}Þ~ç^=è>ŠØšÛÃkyl°êº«Ú¶ï´HúdjññòíQ9“×,¸ëÏJ!¶ðÛ^\¬Ú®ª–«·ìò&™<œ|Û”Î`ôÃ6zñÒ€1è­'GþÇó~Ý}ý§ÿ>ÿcO'ïÏ_7wÝçîuãÞ¬Mmáµ¼¶Xu]Uí[wÚ$}25xøùv¨œ‡Éë–\uç¥cÑ[Ûxm¯.VmWUKUÛöyLžN>mÊg0za›=xéUüûÍûu÷öŸüûý<Ÿ½ÿ=|ÝßwŸ¹×zÏ¢¶&¶ðÚÞ[,:®ªö­»í>™¼||»TNCäõË.:óÒˆm¼6×—+6«ª¥ªíû<‰¦FÏ'6å3€˜=0Íž¼t  z+CÉÑÿ±üß·_iÿÏ¿ØÓÉûßó×ÍÝ÷yûx÷«[xmo-–WU{VÝö‰L^>>]ª'!òzå—yé@ôVÄ6ÞkË•›UÕRÕvýžDÓ#g“›r™ÀL˜fÏ^:U'GþÇó~Ý}ý§ÿ>ÿcO'ïÏ_7wÝçîuãÞ€3è­‰­¼6·–Ë«ª½«nûD¦F¯.Õù=rËŽ¼ô¢o µåÊͪê©j»~Ï"i‘³ÉÇ͹Là&L3g¯(ŠÐòtì7í×ßÚóïö4ò~÷üõów}Þ~ç^=êÄÖÞ[Ëe‡UÕ^Õ·}¢GÓ#W—j‰È|ž¹eÇ^zP=± ·†ÚòåfÕuTµ]¿g‘4ÈÙäãæÜ¦p¦³×Ž•_ÉÑÿ±üß·_iÿÏ¿ØÓÉûßó×ÍÝ÷yûx÷  ú+bko ­å²Ãªê¯jÛ¾Ñ#é‘«ÇÇ˵Dä>O\²ã¯=(†ÛÃmyr³jºªZ®ß³ÈšdlòqónS8 ƒÓ ÙëÇJÇ¢´<ûÍûu÷öŸüûý<Ÿ½ÿ=|ÝßwŸ¹×z±5·†ÖòÙaÕuWµmßh‘ôÈÕããåÚ¢r'®Yqמ”ElCmá¶¼¹Yµ]U-WoÙäM26y8ù·)œÁé†lõã¥Wòtì7í×ßÚóïö4ò~÷üõów}Þ~ç^=è>ŠØšÛÃkyl°êº«Ú¶ï´HúdjññòíQ9“×,¸ëÏJ!¶ðÛ^\¬Ú®ª–«·ìò&™<œ|Û”Î`ôÃ6zñÒ€1è­'GþÇó~Ý}ý§ÿ>ÿcO'ïÏ_7wÝçîuãÞ¬Mmáµ¼¶Xu]Uí[wÚ$}25xøùv¨œ‡Éë–\uç¥cÑ[Ûxm¯.VmWUKUÛöyLžN>mÊg0za›=xéUüûÍûu÷öŸüûý<Ÿ½ÿ=|ÝßwŸ¹×zÏ¢¶&¶ðÚÞ[,:®ªö­»í>™¼||»TNCäõË.:óÒˆm¼6×—+6«ª¥ªíû<‰¦FÏ'6å3€˜=0Íž¼t  z+CÉÑÿ±üß·_iÿÏ¿ØÓÉûßó×ÍÝ÷yûx÷«[xmo-–WU{VÝö‰L^>>]ª'!òzå—yé@ôVÄ6ÞkË•›UÕRÕvýžDÓ#g“›r™ÀL˜fÏ^:U'GþÇó~Ý}ý§ÿ>ÿcO'ïÏ_7wÝçîuãÞ€3è­‰­¼6·–Ë«ª½«nûD¦F¯.Õù=rËŽ¼ô¢o µåÊͪê©j»~Ï"i‘³ÉÇ͹Là&L3g¯(ŠÐòtì7í×ßÚóïö4ò~÷üõów}Þ~ç^=êÄÖÞ[Ëe‡UÕ^Õ·}¢GÓ#W—j‰È|ž¹eÇ^zP=± ·†ÚòåfÕuTµ]¿g‘4ÈÙäãæÜ¦p¦³×Ž•_ÉÑÿ±üß·_iÿÏ¿ØÓÉûßó×ÍÝ÷yûx÷  ú+bko ­å²Ãªê¯jÛ¾Ñ#é‘«ÇÇ˵Dä>O\²ã¯=(†ÛÃmyr³jºªZ®ß³ÈšdlòqónS8 ƒÓ ÙëÇJÇ­íbæ]rÒ=Q¼,A–t F\vú|Ýj“£ÿcù¿n¾þÓÿŸ±§“÷¿ç¯›»îó÷:ñïZ0IáÛB¡©\ØÌ¬—‚m64`£ ¡TNs’99]½FzVU!v¦·_Ó1­NíN+XÿMõº–iå¯^¤#S 437îhМûT_aÐ~ÿûnçíóËì»ëýýùéÏÝëǽ?h¼þçþCöÑìþçþF=ºú†„ñõûÖ„çÌvÓ@eãŒ4îç®Hǽ §øhÏ(“_½XF<§]4n9ÈóFÞz`œûQíŸÜÿÈ=¬|þçþF±öì;ÿ¶î~×ÿ<¾Áû¾¿ßßžœýÞ¼{Ô¯§øhO_½hN|Çm4^8ÀóNîzäŒ{ÑíŸÜÿÈ=¬|þçþFºš†Œò‰5ûÕ„cÊuÓAfãËæ¸=0N}ª/°è?aßý·sö¿ùåöÝõþþüôçîõãÞh¼þçþAícç÷?ò1è­×Óü4'ˆG¯Þ´'>c¶š/`y§w=rF=èM?ÃFyDšýêÂ1å:é ³qÎGš6óÓçÚh¼þçþAícç÷?ò0¨­°è?aßý·sö¿ùåöÝõþþüôçîõãÞ¥“OðО!¿zМùŽÚh ¼qæÜõÉ÷£Ú/?¹ÿ{XùýÏüŒ*+u4ÿ åk÷«ǖ릂ÍÇ9hÛÏLŸj‹ì:ØwÿmÜý³þy}ƒ÷}¿¿=9û½x÷£Ú/?¹ÿ{XùýÏüŒz+uôÿ âë÷­ Ï˜í¦€ËÇiÝ“êF=èM?ÃFyDšýêÂ1åºé ³qÎGš6óÓçÚh¼þçþAícç÷?ò=¯à7ü“½wþ¾¤ÿÑK^ª•æ_b¶‹áî²-®Zpn$.L[·–8œŒ`玤cŒŸMJ¤ï©ªwW*_®_÷©¢‹ïõËþïõ4PQ¿ESQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEç¿ä•êõÒýµò…}_ñ·þI^§ÿ] ÿÑ«_(SQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEôGÀoù'zïý}Iÿ¢–½U+ʾÉ;×ëêOýµê©HeKïõËþïõ4Q}þ¹Ýþ¦ŠC7袊b (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€ (¢€<÷ãoü’½OþºAÿ£V¾P¯¯~*èÚ†¿ðþûMÒíšæòY")3‡òH¯ž?áPøóþ…éïü_üU8š+¶ÿ…CãÏú¥ÿ¿ññT¡ñçý Òÿßø¿øª`q4Wmÿ ‡ÇŸô/Kÿâÿâ¨ÿ…CãÏú¥ÿ¿ññTÄÑ]·ü*н/ýÿ‹ÿŠ£þ?è^—þÿÅÿÅPEvßð¨|yÿBô¿÷þ/þ*øT><ÿ¡z_ûÿÿ@MÛ¡ñçý Òÿßø¿øª?áPøóþ…éïü_üUq4Wmÿ ‡ÇŸô/Kÿâÿâ¨ÿ…CãÏú¥ÿ¿ññTÄÑ]·ü*н/ýÿ‹ÿŠ£þ?è^—þÿÅÿÅPEvßð¨|yÿBô¿÷þ/þ*øT><ÿ¡z_ûÿÿ@MÛ¡ñçý Òÿßø¿øª?áPøóþ…éïü_üUq4Wmÿ ‡ÇŸô/Kÿâÿâ¨ÿ…CãÏú¥ÿ¿ññTÄÑ]·ü*н/ýÿ‹ÿŠ£þ?è^—þÿÅÿÅPEvßð¨|yÿBô¿÷þ/þ*øT><ÿ¡z_ûÿÿ@MÛ¡ñçý Òÿßø¿øª?áPøóþ…éïü_üUq4Wmÿ ‡ÇŸô/Kÿâÿâ¨ÿ…CãÏú¥ÿ¿ññTÄÑ]·ü*н/ýÿ‹ÿŠ£þ?è^—þÿÅÿÅPEvßð¨|yÿBô¿÷þ/þ*øT><ÿ¡z_ûÿÿ@MÛ¡ñçý Òÿßø¿øª?áPøóþ…éïü_üUq4Wmÿ ‡ÇŸô/Kÿâÿâ¨ÿ…CãÏú¥ÿ¿ññTÄÑ]·ü*н/ýÿ‹ÿŠ£þ?è^—þÿÅÿÅPEvßð¨|yÿBô¿÷þ/þ*øT><ÿ¡z_ûÿÿ@MÛ¡ñçý Òÿßø¿øª?áPøóþ…éïü_üUq4Wmÿ ‡ÇŸô/Kÿâÿâ¨ÿ…CãÏú¥ÿ¿ññTÄÑ]·ü*н/ýÿ‹ÿŠ£þ?è^—þÿÅÿÅPEvßð¨|yÿBô¿÷þ/þ*øT><ÿ¡z_ûÿÿ@MÛ¡ñçý Òÿßø¿øª?áPøóþ…éïü_üUq4Wmÿ ‡ÇŸô/Kÿâÿâ¨ÿ…CãÏú¥ÿ¿ññTÄÑ]·ü*н/ýÿ‹ÿŠ£þ?è^—þÿÅÿÅPEvßð¨|yÿBô¿÷þ/þ*øT><ÿ¡z_ûÿÿ@MÛ¡ñçý Òÿßø¿øª?áPøóþ…éïü_üUq4Wmÿ ‡ÇŸô/Kÿâÿâ¨ÿ…CãÏú¥ÿ¿ññTÄÑ]·ü*н/ýÿ‹ÿŠ£þ?è^—þÿÅÿÅPEvßð¨|yÿBô¿÷þ/þ*øT><ÿ¡z_ûÿÿ@MÛ¡ñçý Òÿßø¿øª?áPøóþ…éïü_üUq4Wmÿ ‡ÇŸô/Kÿâÿâ¨ÿ…CãÏú¥ÿ¿ññTÄÑ]·ü*н/ýÿ‹ÿŠ£þ?è^—þÿÅÿÅPEvßð¨|yÿBô¿÷þ/þ*øT><ÿ¡z_ûÿÿ@MÛ¡ñçý Òÿßø¿øª?áPøóþ…éïü_üUq4Wmÿ ‡ÇŸô/Kÿâÿâ¨ÿ…CãÏú¥ÿ¿ññTÄÑ]·ü*н/ýÿ‹ÿŠ£þ?è^—þÿÅÿÅPEvßð¨|yÿBô¿÷þ/þ*øT><ÿ¡z_ûÿÿ@MÛ¡ñçý Òÿßø¿øª?áPøóþ…éïü_üUq4Wmÿ ‡ÇŸô/Kÿâÿâ¨ÿ…CãÏú¥ÿ¿ññTÄÑ]·ü*н/ýÿ‹ÿŠ£þ?è^—þÿÅÿÅPEvßð¨|yÿBô¿÷þ/þ*øT><ÿ¡z_ûÿÿ@MÛ¡ñçý Òÿßø¿øª?áPøóþ…éïü_üUq4Wmÿ ‡ÇŸô/Kÿâÿâ¨ÿ…CãÏú¥ÿ¿ññTÄÑ]·ü*н/ýÿ‹ÿŠ£þ?è^—þÿÅÿÅPEvßð¨|yÿBô¿÷þ/þ*øT><ÿ¡z_ûÿÿ@¥ðþIÞ»ÿ_R襯[|ñ±ºZnû¯ùü—þùOþ&–{«crÒ$›•ðOÊx cùMûM¿üôý .û¯ùü—þùOþ&÷_óù/ýòŸüM'Úmÿç§èhûM¿üôý .û¯ùü—þùOþ&÷_óù/ýòŸüM'Úmÿç§èhûM¿üôý .û¯ùü—þùOþ&÷_óù/ýòŸüM'Úmÿç§èhûM¿üôý .û¯ùü—þùOþ&÷_óù/ýòŸüM'Úmÿç§èhûM¿üôý Ieåã;›ùRbƒ…˜Ž§îàÕm¬Ù@-©ÝHˆº“€>ç­eEªÃ§‡ŽY€¹tq“’ëԟΕüC¥ÈkÅ 0aû·ê#·¨¦-KU¹$çy]Žðv^§p¯Ø²FGä:ÊMwIƒ-Ú‚ò?ñ6æíÜŠ“þ;÷.LÙU'óPÇ-éÞ’]H$Š8 ˜Ï¨ùzAüiûî¿çò_ûå?øšŠˆÏ™,Î’¶öŽðTŸi·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ ßuÿ?’ÿß)ÿÄѾëþ%ÿ¾Sÿ‰¤ûM¿üôý i·ÿžŸ¡ v½Ûò^>}Ñ?øšµ¸.ž×²ßÜÇ#<„ª¡~÷Dç5U®¡†Éú™ä°›J–Â[†Ù4o²)æÎqǹ  £••a™.EÍ¬Ø øèr8"¦6–,”·]ŽT¨«ZÃl–YØFÖ~‡?RIäš¿@ˆ¨¡T£ RÑ@ÿÙinspectrum-0.2.3/spectrogramcontrols.cpp000066400000000000000000000172611375676064500205550ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * Copyright (C) 2015, Jared Boone * * This file is part of inspectrum. * * 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 . */ #include "spectrogramcontrols.h" #include #include #include #include #include #include "util.h" SpectrogramControls::SpectrogramControls(const QString & title, QWidget * parent) : QDockWidget::QDockWidget(title, parent) { widget = new QWidget(this); layout = new QFormLayout(widget); fileOpenButton = new QPushButton("Open file...", widget); layout->addRow(fileOpenButton); sampleRate = new QLineEdit(); auto double_validator = new QDoubleValidator(this); double_validator->setBottom(0.0); sampleRate->setValidator(double_validator); layout->addRow(new QLabel(tr("Sample rate:")), sampleRate); // Spectrogram settings layout->addRow(new QLabel()); // TODO: find a better way to add an empty row? layout->addRow(new QLabel(tr("Spectrogram"))); fftSizeSlider = new QSlider(Qt::Horizontal, widget); fftSizeSlider->setRange(4, 13); fftSizeSlider->setPageStep(1); layout->addRow(new QLabel(tr("FFT size:")), fftSizeSlider); zoomLevelSlider = new QSlider(Qt::Horizontal, widget); zoomLevelSlider->setRange(0, 10); zoomLevelSlider->setPageStep(1); layout->addRow(new QLabel(tr("Zoom:")), zoomLevelSlider); powerMaxSlider = new QSlider(Qt::Horizontal, widget); powerMaxSlider->setRange(-140, 10); layout->addRow(new QLabel(tr("Power max:")), powerMaxSlider); powerMinSlider = new QSlider(Qt::Horizontal, widget); powerMinSlider->setRange(-140, 10); layout->addRow(new QLabel(tr("Power min:")), powerMinSlider); scalesCheckBox = new QCheckBox(widget); scalesCheckBox->setCheckState(Qt::Checked); layout->addRow(new QLabel(tr("Scales:")), scalesCheckBox); // Time selection settings layout->addRow(new QLabel()); // TODO: find a better way to add an empty row? layout->addRow(new QLabel(tr("Time selection"))); cursorsCheckBox = new QCheckBox(widget); layout->addRow(new QLabel(tr("Enable cursors:")), cursorsCheckBox); cursorSymbolsSpinBox = new QSpinBox(); cursorSymbolsSpinBox->setMinimum(1); cursorSymbolsSpinBox->setMaximum(9999); layout->addRow(new QLabel(tr("Symbols:")), cursorSymbolsSpinBox); rateLabel = new QLabel(); layout->addRow(new QLabel(tr("Rate:")), rateLabel); periodLabel = new QLabel(); layout->addRow(new QLabel(tr("Period:")), periodLabel); symbolRateLabel = new QLabel(); layout->addRow(new QLabel(tr("Symbol rate:")), symbolRateLabel); symbolPeriodLabel = new QLabel(); layout->addRow(new QLabel(tr("Symbol period:")), symbolPeriodLabel); widget->setLayout(layout); setWidget(widget); connect(fftSizeSlider, &QSlider::valueChanged, this, &SpectrogramControls::fftSizeChanged); connect(zoomLevelSlider, &QSlider::valueChanged, this, &SpectrogramControls::zoomLevelChanged); connect(fileOpenButton, &QPushButton::clicked, this, &SpectrogramControls::fileOpenButtonClicked); connect(cursorsCheckBox, &QCheckBox::stateChanged, this, &SpectrogramControls::cursorsStateChanged); connect(powerMinSlider, &QSlider::valueChanged, this, &SpectrogramControls::powerMinChanged); connect(powerMaxSlider, &QSlider::valueChanged, this, &SpectrogramControls::powerMaxChanged); } void SpectrogramControls::clearCursorLabels() { periodLabel->setText(""); rateLabel->setText(""); symbolPeriodLabel->setText(""); symbolRateLabel->setText(""); } void SpectrogramControls::cursorsStateChanged(int state) { if (state == Qt::Unchecked) { clearCursorLabels(); } } void SpectrogramControls::setDefaults() { fftOrZoomChanged(); cursorsCheckBox->setCheckState(Qt::Unchecked); cursorSymbolsSpinBox->setValue(1); // Try to set the sample rate from the last-used value QSettings settings; int savedSampleRate = settings.value("SampleRate", 8000000).toInt(); sampleRate->setText(QString::number(savedSampleRate)); fftSizeSlider->setValue(settings.value("FFTSize", 9).toInt()); powerMaxSlider->setValue(settings.value("PowerMax", 0).toInt()); powerMinSlider->setValue(settings.value("PowerMin", -100).toInt()); zoomLevelSlider->setValue(settings.value("ZoomLevel", 0).toInt()); } void SpectrogramControls::fftOrZoomChanged(void) { int fftSize = pow(2, fftSizeSlider->value()); int zoomLevel = std::min(fftSize, (int)pow(2, zoomLevelSlider->value())); emit fftOrZoomChanged(fftSize, zoomLevel); } void SpectrogramControls::fftSizeChanged(int value) { QSettings settings; settings.setValue("FFTSize", value); fftOrZoomChanged(); } void SpectrogramControls::zoomLevelChanged(int value) { QSettings settings; settings.setValue("ZoomLevel", value); fftOrZoomChanged(); } void SpectrogramControls::powerMinChanged(int value) { QSettings settings; settings.setValue("PowerMin", value); } void SpectrogramControls::powerMaxChanged(int value) { QSettings settings; settings.setValue("PowerMax", value); } void SpectrogramControls::fileOpenButtonClicked() { QSettings settings; QString fileName; QFileDialog fileSelect(this); fileSelect.setNameFilter(tr("All files (*);;" "complex file (*.cfile *.cf32 *.fc32);;" "complex HackRF file (*.cs8 *.sc8 *.c8);;" "complex Fancy file (*.cs16 *.sc16 *.c16);;" "complex RTL-SDR file (*.cu8 *.uc8)")); // Try and load a saved state { QByteArray savedState = settings.value("OpenFileState").toByteArray(); fileSelect.restoreState(savedState); // Filter doesn't seem to be considered part of the saved state QString lastUsedFilter = settings.value("OpenFileFilter").toString(); if(lastUsedFilter.size()) fileSelect.selectNameFilter(lastUsedFilter); } if(fileSelect.exec()) { fileName = fileSelect.selectedFiles()[0]; // Remember the state of the dialog for the next time QByteArray dialogState = fileSelect.saveState(); settings.setValue("OpenFileState", dialogState); settings.setValue("OpenFileFilter", fileSelect.selectedNameFilter()); } if (!fileName.isEmpty()) emit openFile(fileName); } void SpectrogramControls::timeSelectionChanged(float time) { if (cursorsCheckBox->checkState() == Qt::Checked) { periodLabel->setText(QString::fromStdString(formatSIValue(time)) + "s"); rateLabel->setText(QString::fromStdString(formatSIValue(1 / time)) + "Hz"); int symbols = cursorSymbolsSpinBox->value(); symbolPeriodLabel->setText(QString::fromStdString(formatSIValue(time / symbols)) + "s"); symbolRateLabel->setText(QString::fromStdString(formatSIValue(symbols / time)) + "Bd"); } } void SpectrogramControls::zoomIn() { zoomLevelSlider->setValue(zoomLevelSlider->value() + 1); } void SpectrogramControls::zoomOut() { zoomLevelSlider->setValue(zoomLevelSlider->value() - 1); } inspectrum-0.2.3/spectrogramcontrols.h000066400000000000000000000040111375676064500202070ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include #include #include #include #include #include class SpectrogramControls : public QDockWidget { Q_OBJECT public: SpectrogramControls(const QString & title, QWidget * parent); void setDefaults(); signals: void fftOrZoomChanged(int fftSize, int zoomLevel); void openFile(QString fileName); public slots: void timeSelectionChanged(float time); void zoomIn(); void zoomOut(); private slots: void fftSizeChanged(int value); void zoomLevelChanged(int value); void powerMinChanged(int value); void powerMaxChanged(int value); void fileOpenButtonClicked(); void cursorsStateChanged(int state); private: QWidget *widget; QFormLayout *layout; void clearCursorLabels(); void fftOrZoomChanged(void); public: QPushButton *fileOpenButton; QLineEdit *sampleRate; QSlider *fftSizeSlider; QSlider *zoomLevelSlider; QSlider *powerMaxSlider; QSlider *powerMinSlider; QCheckBox *cursorsCheckBox; QSpinBox *cursorSymbolsSpinBox; QLabel *rateLabel; QLabel *periodLabel; QLabel *symbolRateLabel; QLabel *symbolPeriodLabel; QCheckBox *scalesCheckBox; }; inspectrum-0.2.3/spectrogramplot.cpp000066400000000000000000000241301375676064500176610ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "spectrogramplot.h" #include #include #include #include #include #include #include #include #include #include "util.h" SpectrogramPlot::SpectrogramPlot(std::shared_ptr>> src) : Plot(src), inputSource(src), fftSize(512), tuner(fftSize, this) { setFFTSize(fftSize); zoomLevel = 1; powerMax = 0.0f; powerMin = -50.0f; sampleRate = 0; frequencyScaleEnabled = false; for (int i = 0; i < 256; i++) { float p = (float)i / 256; colormap[i] = QColor::fromHsvF(p * 0.83f, 1.0, 1.0 - p).rgba(); } tunerTransform = std::make_shared(src); connect(&tuner, &Tuner::tunerMoved, this, &SpectrogramPlot::tunerMoved); } void SpectrogramPlot::invalidateEvent() { // HACK: this makes sure we update the height for real signals (as InputSource is passed here before the file is opened) setFFTSize(fftSize); pixmapCache.clear(); fftCache.clear(); emit repaint(); } void SpectrogramPlot::paintFront(QPainter &painter, QRect &rect, range_t sampleRange) { if (tunerEnabled()) tuner.paintFront(painter, rect, sampleRange); if (frequencyScaleEnabled) paintFrequencyScale(painter, rect); } void SpectrogramPlot::paintFrequencyScale(QPainter &painter, QRect &rect) { // At which pixel is F_+sampleRate/2 int y = rect.y(); int plotHeight = rect.height(); if (inputSource->realSignal()) plotHeight *= 2; double bwPerPixel = (double)sampleRate / plotHeight; int tickHeight = 50; int bwPerTick = 10 * pow(10, floor(log(bwPerPixel * tickHeight) / log(10))); if (bwPerTick < 1) { return; } painter.save(); QPen pen(Qt::white, 1, Qt::SolidLine); painter.setPen(pen); QFontMetrics fm(painter.font()); int tick = 0; while (tick <= sampleRate / 2) { int tickpy = plotHeight / 2 - tick / bwPerPixel + y; int tickny = plotHeight / 2 + tick / bwPerPixel + y; if (!inputSource->realSignal()) painter.drawLine(0, tickny, 30, tickny); painter.drawLine(0, tickpy, 30, tickpy); if (tick != 0) { char buf[128]; if (bwPerTick % 1000000 == 0) { snprintf(buf, sizeof(buf), "-%d MHz", (int)tick / 1000000); } else if(bwPerTick % 1000 == 0) { snprintf(buf, sizeof(buf), "-%d kHz", tick / 1000); } else { snprintf(buf, sizeof(buf), "-%d Hz", tick); } if (!inputSource->realSignal()) painter.drawText(5, tickny - 5, buf); buf[0] = ' '; painter.drawText(5, tickpy + 15, buf); } tick += bwPerTick; } // Draw small ticks bwPerTick /= 10; if (bwPerTick >= 1 ) { tick = 0; while (tick <= sampleRate / 2) { int tickpy = plotHeight / 2 - tick / bwPerPixel + y; int tickny = plotHeight / 2 + tick / bwPerPixel + y; if (!inputSource->realSignal()) painter.drawLine(0, tickny, 3, tickny); painter.drawLine(0, tickpy, 3, tickpy); tick += bwPerTick; } } painter.restore(); } void SpectrogramPlot::paintMid(QPainter &painter, QRect &rect, range_t sampleRange) { if (!inputSource || inputSource->count() == 0) return; size_t sampleOffset = sampleRange.minimum % (getStride() * linesPerTile()); size_t tileID = sampleRange.minimum - sampleOffset; int xoffset = sampleOffset / getStride(); // Paint first (possibly partial) tile painter.drawPixmap(QRect(rect.left(), rect.y(), linesPerTile() - xoffset, height()), *getPixmapTile(tileID), QRect(xoffset, 0, linesPerTile() - xoffset, height())); tileID += getStride() * linesPerTile(); // Paint remaining tiles for (int x = linesPerTile() - xoffset; x < rect.right(); x += linesPerTile()) { // TODO: don't draw past rect.right() // TODO: handle partial final tile painter.drawPixmap(QRect(x, rect.y(), linesPerTile(), height()), *getPixmapTile(tileID), QRect(0, 0, linesPerTile(), height())); tileID += getStride() * linesPerTile(); } } QPixmap* SpectrogramPlot::getPixmapTile(size_t tile) { QPixmap *obj = pixmapCache.object(TileCacheKey(fftSize, zoomLevel, tile)); if (obj != 0) return obj; float *fftTile = getFFTTile(tile); obj = new QPixmap(linesPerTile(), fftSize); QImage image(linesPerTile(), fftSize, QImage::Format_RGB32); float powerRange = -1.0f / std::abs(int(powerMin - powerMax)); for (int y = 0; y < fftSize; y++) { auto scanLine = (QRgb*)image.scanLine(fftSize - y - 1); for (int x = 0; x < linesPerTile(); x++) { float *fftLine = &fftTile[x * fftSize]; float normPower = (fftLine[y] - powerMax) * powerRange; normPower = clamp(normPower, 0.0f, 1.0f); scanLine[x] = colormap[(uint8_t)(normPower * (256 - 1))]; } } obj->convertFromImage(image); pixmapCache.insert(TileCacheKey(fftSize, zoomLevel, tile), obj); return obj; } float* SpectrogramPlot::getFFTTile(size_t tile) { std::array* obj = fftCache.object(TileCacheKey(fftSize, zoomLevel, tile)); if (obj != nullptr) return obj->data(); std::array* destStorage = new std::array; float *ptr = destStorage->data(); size_t sample = tile; while ((ptr - destStorage->data()) < tileSize) { getLine(ptr, sample); sample += getStride(); ptr += fftSize; } fftCache.insert(TileCacheKey(fftSize, zoomLevel, tile), destStorage); return destStorage->data(); } void SpectrogramPlot::getLine(float *dest, size_t sample) { if (inputSource && fft) { auto buffer = inputSource->getSamples(sample, fftSize); if (buffer == nullptr) { auto neg_infinity = -1 * std::numeric_limits::infinity(); for (int i = 0; i < fftSize; i++, dest++) *dest = neg_infinity; return; } for (int i = 0; i < fftSize; i++) { buffer[i] *= window[i]; } fft->process(buffer.get(), buffer.get()); const float invFFTSize = 1.0f / fftSize; const float logMultiplier = 10.0f / log2f(10.0f); for (int i = 0; i < fftSize; i++) { // Start from the middle of the FFTW array and wrap // to rearrange the data int k = i ^ (fftSize >> 1); auto s = buffer[k] * invFFTSize; float power = s.real() * s.real() + s.imag() * s.imag(); float logPower = log2f(power) * logMultiplier; *dest = logPower; dest++; } } } int SpectrogramPlot::getStride() { return fftSize / zoomLevel; } float SpectrogramPlot::getTunerPhaseInc() { auto freq = 0.5f - tuner.centre() / (float)fftSize; return freq * Tau; } std::vector SpectrogramPlot::getTunerTaps() { float cutoff = tuner.deviation() / (float)fftSize; float gain = pow(10.0f, powerMax / -10.0f); auto atten = 60.0f; auto len = estimate_req_filter_len(std::min(cutoff, 0.05f), atten); auto taps = std::vector(len); liquid_firdes_kaiser(len, cutoff, atten, 0.0f, taps.data()); std::transform(taps.begin(), taps.end(), taps.begin(), std::bind1st(std::multiplies(), gain)); return taps; } int SpectrogramPlot::linesPerTile() { return tileSize / fftSize; } bool SpectrogramPlot::mouseEvent(QEvent::Type type, QMouseEvent event) { if (tunerEnabled()) return tuner.mouseEvent(type, event); return false; } std::shared_ptr SpectrogramPlot::output() { return tunerTransform; } void SpectrogramPlot::setFFTSize(int size) { float sizeScale = float(size) / float(fftSize); fftSize = size; fft.reset(new FFT(fftSize)); window.reset(new float[fftSize]); for (int i = 0; i < fftSize; i++) { window[i] = 0.5f * (1.0f - cos(Tau * i / (fftSize - 1))); } if (inputSource->realSignal()) { setHeight(fftSize/2); } else { setHeight(fftSize); } auto dev = tuner.deviation(); auto centre = tuner.centre(); tuner.setHeight(height()); tuner.setDeviation( dev * sizeScale ); tuner.setCentre( centre * sizeScale ); } void SpectrogramPlot::setPowerMax(int power) { powerMax = power; pixmapCache.clear(); tunerMoved(); } void SpectrogramPlot::setPowerMin(int power) { powerMin = power; pixmapCache.clear(); } void SpectrogramPlot::setZoomLevel(int zoom) { zoomLevel = zoom; } void SpectrogramPlot::setSampleRate(size_t rate) { sampleRate = rate; } void SpectrogramPlot::enableScales(bool enabled) { frequencyScaleEnabled = enabled; } bool SpectrogramPlot::tunerEnabled() { return (tunerTransform->subscriberCount() > 0); } void SpectrogramPlot::tunerMoved() { tunerTransform->setFrequency(getTunerPhaseInc()); tunerTransform->setTaps(getTunerTaps()); tunerTransform->setRelativeBandwith(tuner.deviation() * 2.0 / height()); // TODO: for invalidating traceplot cache, this shouldn't really go here QPixmapCache::clear(); emit repaint(); } uint qHash(const TileCacheKey &key, uint seed) { return key.fftSize ^ key.zoomLevel ^ key.sample ^ seed; } inspectrum-0.2.3/spectrogramplot.h000066400000000000000000000062201375676064500173260ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include "fft.h" #include "inputsource.h" #include "plot.h" #include "tuner.h" #include "tunertransform.h" #include #include #include class TileCacheKey; class SpectrogramPlot : public Plot { Q_OBJECT public: SpectrogramPlot(std::shared_ptr>> src); void invalidateEvent() override; std::shared_ptr output() override; void paintFront(QPainter &painter, QRect &rect, range_t sampleRange) override; void paintMid(QPainter &painter, QRect &rect, range_t sampleRange) override; bool mouseEvent(QEvent::Type type, QMouseEvent event) override; std::shared_ptr>> input() { return inputSource; }; void setSampleRate(size_t sampleRate); bool tunerEnabled(); void enableScales(bool enabled); public slots: void setFFTSize(int size); void setPowerMax(int power); void setPowerMin(int power); void setZoomLevel(int zoom); void tunerMoved(); private: const int linesPerGraduation = 50; static const int tileSize = 65536; // This must be a multiple of the maximum FFT size std::shared_ptr>> inputSource; std::unique_ptr fft; std::unique_ptr window; QCache pixmapCache; QCache> fftCache; uint colormap[256]; int fftSize; int zoomLevel; float powerMax; float powerMin; size_t sampleRate; bool frequencyScaleEnabled; Tuner tuner; std::shared_ptr tunerTransform; QPixmap* getPixmapTile(size_t tile); float* getFFTTile(size_t tile); void getLine(float *dest, size_t sample); int getStride(); float getTunerPhaseInc(); std::vector getTunerTaps(); int linesPerTile(); void paintFrequencyScale(QPainter &painter, QRect &rect); }; class TileCacheKey { public: TileCacheKey(int fftSize, int zoomLevel, size_t sample) { this->fftSize = fftSize; this->zoomLevel = zoomLevel; this->sample = sample; } bool operator==(const TileCacheKey &k2) const { return (this->fftSize == k2.fftSize) && (this->zoomLevel == k2.zoomLevel) && (this->sample == k2.sample); } int fftSize; int zoomLevel; size_t sample; }; inspectrum-0.2.3/subscriber.h000066400000000000000000000015161375676064500162470ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once class Subscriber { public: virtual void invalidateEvent() = 0; }; inspectrum-0.2.3/threshold.cpp000066400000000000000000000021731375676064500164330ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "threshold.h" Threshold::Threshold(std::shared_ptr> src) : SampleBuffer(src) { } void Threshold::work(void *input, void *output, int count, size_t sampleid) { auto in = static_cast(input); auto out = static_cast(output); std::transform(in, in + count, out, [](float s) { return (s > 0) ? 1.0f : 0.0f; }); } inspectrum-0.2.3/threshold.h000066400000000000000000000017531375676064500161030ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include "samplebuffer.h" class Threshold : public SampleBuffer { public: Threshold(std::shared_ptr> src); void work(void *input, void *output, int count, size_t sampleid) override; }; inspectrum-0.2.3/traceplot.cpp000066400000000000000000000113161375676064500164330ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include #include #include #include #include "samplesource.h" #include "traceplot.h" TracePlot::TracePlot(std::shared_ptr source) : Plot(source) { connect(this, &TracePlot::imageReady, this, &TracePlot::handleImage); } void TracePlot::paintMid(QPainter &painter, QRect &rect, range_t sampleRange) { if (sampleRange.length() == 0) return; int samplesPerColumn = sampleRange.length() / rect.width(); int samplesPerTile = tileWidth * samplesPerColumn; size_t tileID = sampleRange.minimum / samplesPerTile; size_t tileOffset = sampleRange.minimum % samplesPerTile; // Number of samples to skip from first image tile int xOffset = tileOffset / samplesPerColumn; // Number of columns to skip from first image tile // Paint first (possibly partial) tile painter.drawPixmap( QRect(rect.x(), rect.y(), tileWidth - xOffset, height()), getTile(tileID++, samplesPerTile), QRect(xOffset, 0, tileWidth - xOffset, height()) ); // Paint remaining tiles for (int x = tileWidth - xOffset; x < rect.right(); x += tileWidth) { painter.drawPixmap( QRect(x, rect.y(), tileWidth, height()), getTile(tileID++, samplesPerTile) ); } } QPixmap TracePlot::getTile(size_t tileID, size_t sampleCount) { QPixmap pixmap(tileWidth, height()); QString key; QTextStream(&key) << "traceplot_" << this << "_" << tileID << "_" << sampleCount; if (QPixmapCache::find(key, &pixmap)) return pixmap; if (!tasks.contains(key)) { range_t sampleRange{tileID * sampleCount, (tileID + 1) * sampleCount}; QtConcurrent::run(this, &TracePlot::drawTile, key, QRect(0, 0, tileWidth, height()), sampleRange); tasks.insert(key); } pixmap.fill(Qt::transparent); return pixmap; } void TracePlot::drawTile(QString key, const QRect &rect, range_t sampleRange) { QImage image(rect.size(), QImage::Format_ARGB32); image.fill(Qt::transparent); QPainter painter(&image); painter.setRenderHint(QPainter::Antialiasing, true); auto firstSample = sampleRange.minimum; auto length = sampleRange.length(); // Is it a 2-channel (complex) trace? if (auto src = dynamic_cast>*>(sampleSource.get())) { auto samples = src->getSamples(firstSample, length); if (samples == nullptr) return; painter.setPen(Qt::red); plotTrace(painter, rect, reinterpret_cast(samples.get()), length, 2); painter.setPen(Qt::blue); plotTrace(painter, rect, reinterpret_cast(samples.get())+1, length, 2); // Otherwise is it single channel? } else if (auto src = dynamic_cast*>(sampleSource.get())) { auto samples = src->getSamples(firstSample, length); if (samples == nullptr) return; painter.setPen(Qt::green); plotTrace(painter, rect, samples.get(), length, 1); } else { throw std::runtime_error("TracePlot::paintMid: Unsupported source type"); } emit imageReady(key, image); } void TracePlot::handleImage(QString key, QImage image) { auto pixmap = QPixmap::fromImage(image); QPixmapCache::insert(key, pixmap); tasks.remove(key); emit repaint(); } void TracePlot::plotTrace(QPainter &painter, const QRect &rect, float *samples, size_t count, int step = 1) { QPainterPath path; range_t xRange{0, rect.width() - 2.f}; range_t yRange{0, rect.height() - 2.f}; const float xStep = 1.0 / count * rect.width(); for (size_t i = 0; i < count; i++) { float sample = samples[i*step]; float x = i * xStep; float y = (1 - sample) * (rect.height() / 2); x = xRange.clip(x) + rect.x(); y = yRange.clip(y) + rect.y(); if (i == 0) path.moveTo(x, y); else path.lineTo(x, y); } painter.drawPath(path); } inspectrum-0.2.3/traceplot.h000066400000000000000000000030001375676064500160670ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include "abstractsamplesource.h" #include "plot.h" #include "util.h" class TracePlot : public Plot { Q_OBJECT public: TracePlot(std::shared_ptr source); void paintMid(QPainter &painter, QRect &rect, range_t sampleRange); std::shared_ptr source() { return sampleSource; }; signals: void imageReady(QString key, QImage image); public slots: void handleImage(QString key, QImage image); private: QSet tasks; const int tileWidth = 1000; QPixmap getTile(size_t tileID, size_t sampleCount); void drawTile(QString key, const QRect &rect, range_t sampleRange); void plotTrace(QPainter &painter, const QRect &rect, float *samples, size_t count, int step); }; inspectrum-0.2.3/tuner.cpp000066400000000000000000000072071375676064500155770ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include #include "tuner.h" Tuner::Tuner(int height, QObject * parent) : height(height), QObject::QObject(parent) { minCursor = new Cursor(Qt::Horizontal, Qt::SizeVerCursor, this); cfCursor = new Cursor(Qt::Horizontal, Qt::SizeAllCursor, this); maxCursor = new Cursor(Qt::Horizontal, Qt::SizeVerCursor, this); connect(minCursor, &Cursor::posChanged, this, &Tuner::cursorMoved); connect(cfCursor, &Cursor::posChanged, this, &Tuner::cursorMoved); connect(maxCursor, &Cursor::posChanged, this, &Tuner::cursorMoved); cfCursor->setPos(100); _deviation = 10; updateCursors(); } int Tuner::centre() { return cfCursor->pos(); } void Tuner::cursorMoved() { Cursor *sender = static_cast(QObject::sender()); if (sender != cfCursor) { // Limit cursor positions to within plot auto posRange = range_t{0, height}; sender->setPos(posRange.clip(sender->pos())); // Limit deviation range to half of total BW (either side of centre) auto deviationRange = range_t{2, height / 2}; _deviation = deviationRange.clip(std::abs(sender->pos() - cfCursor->pos())); } else { auto cfRange = range_t{_deviation, height - _deviation}; sender->setPos(cfRange.clip(sender->pos())); } updateCursors(); } int Tuner::deviation() { return _deviation; } bool Tuner::mouseEvent(QEvent::Type type, QMouseEvent event) { if (cfCursor->mouseEvent(type, event)) return true; if (minCursor->mouseEvent(type, event)) return true; if (maxCursor->mouseEvent(type, event)) return true; return false; } void Tuner::paintFront(QPainter &painter, QRect &rect, range_t sampleRange) { painter.save(); QRect cursorRect(rect.left(), rect.top() + minCursor->pos(), rect.right(), maxCursor->pos() - minCursor->pos()); // Draw translucent white fill for highlight painter.fillRect( cursorRect, QBrush(QColor(255, 255, 255, 50)) ); // Draw tuner edges painter.setPen(QPen(Qt::white, 1, Qt::SolidLine)); painter.drawLine(rect.left(), rect.top() + minCursor->pos(), rect.right(), rect.top() + minCursor->pos()); painter.drawLine(rect.left(), rect.top() + maxCursor->pos(), rect.right(), rect.top() + maxCursor->pos()); // Draw centre freq painter.setPen(QPen(Qt::red, 1, Qt::SolidLine)); painter.drawLine(rect.left(), rect.top() + cfCursor->pos(), rect.right(), rect.top() + cfCursor->pos()); painter.restore(); } void Tuner::setCentre(int centre) { cfCursor->setPos(centre); updateCursors(); } void Tuner::setDeviation(int dev) { _deviation = std::max(1, dev); updateCursors(); } void Tuner::setHeight(int height) { this->height = height; } void Tuner::updateCursors() { minCursor->setPos(cfCursor->pos() - _deviation); maxCursor->setPos(cfCursor->pos() + _deviation); emit tunerMoved(); } inspectrum-0.2.3/tuner.h000066400000000000000000000027031375676064500152400ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include #include #include "cursor.h" #include "util.h" class Tuner : public QObject { Q_OBJECT public: Tuner(int height, QObject * parent); int centre(); int deviation(); bool mouseEvent(QEvent::Type, QMouseEvent event); void paintFront(QPainter &painter, QRect &rect, range_t sampleRange); void setCentre(int centre); void setDeviation(int dev); void setHeight(int height); public slots: void cursorMoved(); signals: void tunerMoved(); private: void updateCursors(); Cursor *minCursor; Cursor *cfCursor; Cursor *maxCursor; int _deviation; int height; }; inspectrum-0.2.3/tunertransform.cpp000066400000000000000000000042151375676064500175270ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "tunertransform.h" #include #include "util.h" TunerTransform::TunerTransform(std::shared_ptr>> src) : SampleBuffer(src), frequency(0), bandwidth(1.), taps{1.0f} { } void TunerTransform::work(void *input, void *output, int count, size_t sampleid) { auto out = static_cast*>(output); std::unique_ptr[]> temp(new std::complex[count]); // Mix down nco_crcf mix = nco_crcf_create(LIQUID_NCO); nco_crcf_set_phase(mix, fmodf(frequency * sampleid, Tau)); nco_crcf_set_frequency(mix, frequency); nco_crcf_mix_block_down(mix, static_cast*>(input), temp.get(), count); nco_crcf_destroy(mix); // Filter firfilt_crcf filter = firfilt_crcf_create(taps.data(), taps.size()); for (int i = 0; i < count; i++) { firfilt_crcf_push(filter, temp[i]); firfilt_crcf_execute(filter, &out[i]); } firfilt_crcf_destroy(filter); } void TunerTransform::setFrequency(float frequency) { this->frequency = frequency; } void TunerTransform::setTaps(std::vector taps) { this->taps = taps; } float TunerTransform::relativeBandwidth() { return bandwidth; } void TunerTransform::setRelativeBandwith(float bandwidth) { this->bandwidth = bandwidth; } inspectrum-0.2.3/tunertransform.h000066400000000000000000000024541375676064500171770ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include "samplebuffer.h" #include class TunerTransform : public SampleBuffer, std::complex> { private: float frequency; float bandwidth; std::vector taps; public: TunerTransform(std::shared_ptr>> src); void work(void *input, void *output, int count, size_t sampleid) override; void setFrequency(float frequency); void setTaps(std::vector taps); void setRelativeBandwith(float bandwidth); float relativeBandwidth() override; }; inspectrum-0.2.3/util.cpp000066400000000000000000000027461375676064500154220ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "util.h" std::string formatSIValue(float value) { std::map prefixes = { { 9, "G" }, { 6, "M" }, { 3, "k" }, { 0, "" }, { -3, "m" }, { -6, "µ" }, { -9, "n" }, }; int power = 0; while (value < 1.0f && power > -9) { value *= 1e3; power -= 3; } while (value >= 1e3 && power < 9) { value *= 1e-3; power += 3; } std::stringstream ss; ss << value << prefixes[power]; return ss.str(); } template<> const char* getFileNameFilter>() { return "complex file (*.fc32)"; }; template<> const char* getFileNameFilter() { return "float file (*.f32)"; }; inspectrum-0.2.3/util.h000066400000000000000000000053611375676064500150630ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * Copyright (C) 2016, Jared Boone, ShareBrained Technology, Inc. * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include #include #include static const double Tau = M_PI * 2.0; template const T& clamp (const T& value, const T& min, const T& max) { return std::min(max, std::max(min, value)); } template struct iter_pair_range : std::pair { iter_pair_range(std::pair const& x) : std::pair(x) { } Iter begin() const { return this->first; } Iter end() const { return this->second; } }; template inline iter_pair_range as_range(std::pair const& x) { return iter_pair_range(x); } template struct range_t { T minimum; T maximum; range_t& operator=(const range_t &other) { minimum = other.minimum; maximum = other.maximum; } range_t& operator=(const std::initializer_list &other) { if (other.size() == 2) { minimum = *other.begin(); maximum = *(other.begin() + 1); } return *this; } const T length() { return maximum - minimum; } const T& clip(const T& value) const { return clamp(value, minimum, maximum); } void reset_if_outside(T& value, const T& reset_value) const { if( (value < minimum ) || (value > maximum ) ) { value = reset_value; } } bool below_range(const T& value) const { return value < minimum; } bool contains(const T& value) const { // TODO: Subtle gotcha here! Range test doesn't include maximum! return (value >= minimum) && (value < maximum); } bool out_of_range(const T& value) const { // TODO: Subtle gotcha here! Range test in contains() doesn't include maximum! return !contains(value); } }; std::string formatSIValue(float value); template const char* getFileNameFilter();