pax_global_header00006660000000000000000000000064134467051540014523gustar00rootroot0000000000000052 comment=adfdf1656f23e5ab3b52c7d7edf91249a4477e8d cmatrix-2.0/000077500000000000000000000000001344670515400130335ustar00rootroot00000000000000cmatrix-2.0/.gitignore000066400000000000000000000005151344670515400150240ustar00rootroot00000000000000/build config.h Makefile Makefile.in stamp-h stamp-h[0-9]* config.cache config.* compile configure configure.lineno cmatrix.spec depcomp install-sh missing aclocal.m4 autom4te.cache/ .deps *.tab.c TAGS ID GTAGS GRTAGS GSYMS GPATH tags cscope.out cscope.in.out cscope.po.out cscope.files cmatrix *.o *.core CMakeCache.txt CMakeFiles/ cmatrix-2.0/.rultor.yml000066400000000000000000000000011344670515400151520ustar00rootroot00000000000000 cmatrix-2.0/.travis.yml000066400000000000000000000006341344670515400151470ustar00rootroot00000000000000language: c os: - linux - osx sudo: required compiler: - gcc - clang env: - CONFIGURE_CMD=configure - CONFIGURE_CMD=cmake script: - | if [[ $CONFIGURE_CMD == 'configure' ]]; then export CC=${CC} && autoreconf -i && ./configure fi - | if [[ $CONFIGURE_CMD == 'cmake' ]]; then mkdir build && cd build && cmake -DCMAKE_C_COMPILER="${CC}" .. fi - make cmatrix-2.0/AUTHORS000066400000000000000000000001011344670515400140730ustar00rootroot00000000000000Dummy file. Please see: https://github.com/abishekvashok/cmatrix cmatrix-2.0/CMakeLists.txt000066400000000000000000000044551344670515400156030ustar00rootroot00000000000000# CMake build system for CMatrix cmake_minimum_required(VERSION 2.8) project(CMatrix LANGUAGES C) set(VERSION "2.0") # These are relative to CMAKE_INSTALL_PREFIX # which by default is "/usr/local" set(CONSOLE_FONTS_DIRS "share/consolefonts" "lib/kbd/consolefonts") set(X_FONTS_DIRS "lib/X11/fonts/misc" "X11R6/lib/X11/fonts/misc" "share/fonts/X11/misc") set(MKFONTDIR "/usr/bin/mkfontdir") add_definitions(-DEXCLUDE_CONFIG_H) add_definitions(-DVERSION="${VERSION}") add_definitions(-DUSE_TIOCSTI) include(CheckIncludeFiles) check_include_files("sys/ioctl.h" HAVE_SYS_IOCTL_H) if (HAVE_SYS_IOCTL_H) add_definitions(-DHAVE_SYS_IOCTL_H) endif () check_include_files("unistd.h" HAVE_UNISTD_H) if (HAVE_UNISTD_H) add_definitions(-DHAVE_UNISTD_H) endif () check_include_files("termios.h" HAVE_TERMIOS_H) if (HAVE_TERMIOS_H) add_definitions(-DHAVE_TERMIOS_H) endif () check_include_files("termio.h" HAVE_TERMIO_H) if (HAVE_TERMIO_H) add_definitions(-DHAVE_TERMIO_H) endif () Set(CURSES_NEED_NCURSES TRUE) find_package(Curses) include_directories(${CURSES_INCLUDE_DIR}) add_definitions(-DHAVE_NCURSES_H) add_executable(cmatrix cmatrix.c) target_link_libraries(cmatrix ${CURSES_LIBRARIES}) install(TARGETS cmatrix DESTINATION bin) if (UNIX) foreach (CONSOLE_FONTS_DIR ${CONSOLE_FONTS_DIRS}) if (IS_DIRECTORY "${CMAKE_INSTALL_PREFIX}/${CONSOLE_FONTS_DIR}") message(STATUS "Installing matrix console fonts to ${CMAKE_INSTALL_PREFIX}/${CONSOLE_FONTS_DIR}") install(FILES "${CMAKE_SOURCE_DIR}/matrix.fnt" "${CMAKE_SOURCE_DIR}/matrix.psf.gz" DESTINATION "${CONSOLE_FONTS_DIR}") endif () endforeach () foreach (X_FONTS_DIR ${X_FONTS_DIRS}) if (IS_DIRECTORY "${CMAKE_INSTALL_PREFIX}/${X_FONTS_DIR}") message(STATUS "Installing matrix X window fonts to ${CMAKE_INSTALL_PREFIX}/${X_FONTS_DIR}") install(FILES "${CMAKE_SOURCE_DIR}/mtx.pcf" DESTINATION "${X_FONTS_DIR}") install(CODE "message(STATUS \"Running mkfontdir ${CMAKE_INSTALL_PREFIX}/${X_FONTS_DIR} ...\")") install(CODE "execute_process(COMMAND \"${MKFONTDIR}\" \"${CMAKE_INSTALL_PREFIX}/${X_FONTS_DIR}\")") install(CODE "message(STATUS \"If this is the first time you have installed CMatrix you will probably have to restart X window in order to use the mtx.pcf font.\")") endif () endforeach () endif () cmatrix-2.0/CODE_OF_CONDUCT.md000066400000000000000000000062241344670515400156360ustar00rootroot00000000000000# Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for the community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at abishekvashok@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] [homepage]: http://contributor-covenant.org [version]: http://contributor-covenant.org/version/1/4/ cmatrix-2.0/CONTRIBUTING.md000066400000000000000000000102171344670515400152650ustar00rootroot00000000000000# Contributing When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change. Please note we have a code of conduct, please follow it in all your interactions with the project. ## Pull Request Process 1. Ensure any install or build dependencies are removed before the end of the layer when doing a build. 2. Update the README.md with details of changes to the interface, this includes new environment variables, exposed ports, useful file locations and container parameters. 3. Increase the version numbers in any examples files and the README.md to the new version that this Pull Request would represent. The versioning scheme we use is [SemVer](http://semver.org/). 4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you do not have permission to do that, you may request the second reviewer to merge it for you. ## Code of Conduct ### Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. ### Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for the community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ### Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ### Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ### Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the current maintainer at abishekvashok at the rate mail dot com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ### Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] [homepage]: http://contributor-covenant.org [version]: http://contributor-covenant.org/version/1/4/ cmatrix-2.0/COPYING000066400000000000000000001045131344670515400140720ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . cmatrix-2.0/ChangeLog000066400000000000000000000001011344670515400145750ustar00rootroot00000000000000Dummy file. Please see: https://github.com/abishekvashok/cmatrix cmatrix-2.0/INSTALL000066400000000000000000000172271344670515400140750ustar00rootroot00000000000000Basic Installation ================== These are generic installation instructions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, a file `config.cache' that saves the results of its tests to speed up reconfiguring, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.in' is used to create `configure' by a program called `autoconf'. You only need `configure.in' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. If you're using `csh' on an old version of System V, you might need to type `sh ./configure' instead to prevent `csh' from trying to execute `configure' itself. Running `configure' takes awhile. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package. 4. Type `make install' to install the programs and any data files and documentation. 5. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. You can give `configure' initial values for variables by setting them in the environment. Using a Bourne-compatible shell, you can do that on the command line like this: CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure Or on systems that have the `env' program, you can do it like this: env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you must use a version of `make' that supports the `VPATH' variable, such as GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. If you have to use a `make' that does not supports the `VPATH' variable, you have to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. Installation Names ================== By default, `make install' will install the package's files in `/usr/local/bin', `/usr/local/man', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PATH'. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you give `configure' the option `--exec-prefix=PATH', the package will use PATH as the prefix for installing programs and libraries. Documentation and other data files will still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=PATH' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Optional Features ================= Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Specifying the System Type ========================== There may be some features `configure' can not figure out automatically, but needs to determine by the type of host the package will run on. Usually `configure' can figure that out, but if it prints a message saying it can not guess the host type, give it the `--host=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name with three fields: CPU-COMPANY-SYSTEM See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the host type. If you are building compiler tools for cross-compiling, you can also use the `--target=TYPE' option to select the type of system they will produce code for and the `--build=TYPE' option to select the type of system on which you are compiling the package. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Operation Controls ================== `configure' recognizes the following options to control how it operates. `--cache-file=FILE' Use and save the results of the tests in FILE instead of `./config.cache'. Set FILE to `/dev/null' to disable caching, for debugging `configure'. `--help' Print a summary of the options to `configure', and exit. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--version' Print the version of Autoconf used to generate the `configure' script, and exit. `configure' also accepts some other, not widely useful, options. cmatrix-2.0/ISSUE_TEMPLATE.md000066400000000000000000000005201344670515400155350ustar00rootroot00000000000000I am submitting a ### Problem or Feature in Brief ### ### Solution (if any) ### Would you like to work on it? cmatrix-2.0/Makefile.am000066400000000000000000000040361344670515400150720ustar00rootroot00000000000000bin_PROGRAMS = cmatrix cmatrix_SOURCES = cmatrix.c man_MANS = cmatrix.1 if MATRIX_FONTS BUILD_FONTS = 1 else BUILD_FONTS = 0 endif EXTRA_DIST = COPYING INSTALL install-sh \ missing mkinstalldirs matrix.fnt \ matrix.psf.gz mtx.pcf cmatrix.1 cmatrix.spec install-data-local: @if test $(BUILD_FONTS) = 1; then \ if test -d /usr/share/consolefonts; then \ echo " Installing matrix fonts in /usr/share/consolefonts..."; \ $(INSTALL_DATA) $(srcdir)/matrix.fnt /usr/share/consolefonts; \ $(INSTALL_DATA) $(srcdir)/matrix.psf.gz /usr/share/consolefonts; \ fi; \ if test -d /usr/lib/kbd/consolefonts; then \ echo " Installing matrix fonts in /usr/lib/kbd/consolefonts..."; \ $(INSTALL_DATA) $(srcdir)/matrix.fnt /usr/lib/kbd/consolefonts; \ $(INSTALL_DATA) $(srcdir)/matrix.psf.gz /usr/lib/kbd/consolefonts; \ fi; \ if test -d /usr/lib/X11/fonts/misc; then \ echo " Installing X window matrix fonts in /usr/lib/X11/fonts/misc..."; \ $(INSTALL_DATA) $(srcdir)/mtx.pcf /usr/lib/X11/fonts/misc; \ $(INSTALL_DATA) $(srcdir)/mtx.pcf /usr/lib/X11/fonts/misc; \ echo " Running mkfontdir /usr/lib/X11/fonts/misc..."; \ $(MKFONTDIR) /usr/lib/X11/fonts/misc; \ echo " Done. If this is the first time you have installed CMatrix you will"; \ echo " probably have to restart X window in order to use the mtx.pcf font."; \ else \ if test -d /usr/X11R6/lib/X11/fonts/misc; then \ echo " Installing X window matrix fonts in /usr/X11R6/lib/X11/fonts/misc..."; \ $(INSTALL_DATA) $(srcdir)/mtx.pcf /usr/X11R6/lib/X11/fonts/misc; \ $(INSTALL_DATA) $(srcdir)/mtx.pcf /usr/X11R6/lib/X11/fonts/misc; \ echo " Running mkfontdir /usr/X11R6/lib/X11/fonts/misc..."; \ $(MKFONTDIR) /usr/X11R6/lib/X11/fonts/misc; \ echo " Done. If this is the first time you have installed CMatrix you will"; \ echo " probably have to restart X window in order to use the mtx.pcf font."; \ fi \ fi; \ else \ echo "Not installing matrix fonts"; \ fi cmatrix-2.0/NEWS000066400000000000000000000001011344670515400135220ustar00rootroot00000000000000Dummy file. Please see: https://github.com/abishekvashok/cmatrix cmatrix-2.0/README000066400000000000000000000001011344670515400137030ustar00rootroot00000000000000Dummy file. Please see: https://github.com/abishekvashok/cmatrix cmatrix-2.0/README.md000066400000000000000000000062251344670515400143170ustar00rootroot00000000000000# CMatrix CMatrix is based on the screensaver from The Matrix website. It shows text flying in and out in a terminal like as seen in "The Matrix" movie. It can scroll lines all at the same rate or asynchronously and at a user-defined speed. CMatrix by default operates in **eye candy** mode. It must be aborted with control-c (Ctrl+C) or by pressing q. If you wish for more of a screen saver effect, you must specify `-s` on the command line. For usage info, use `cmatrix -h`. [![Build Status](https://travis-ci.org/abishekvashok/cmatrix.svg?branch=master)](https://travis-ci.org/abishekvashok/cmatrix) ### Dependencies You'll probably need a decent ncurses library to get this to work. ### Building and installing cmatrix To install cmatrix, use either of the following methods from within the cmatrix directory. #### Using `configure` (recommended for most linux user) ``` autoreconf -i # skip if using released tarball ./configure make make install ``` #### Using CMake Here we also show an out-of-source build in the sub directory "build". ``` mkdir -p build cd build # to install to "/usr/local" cmake .. # or to install to "/usr" #cmake -DCMAKE_INSTALL_PREFIX=/usr .. make make install ``` ### Running cmatrix After you have installed cmatrix just run `cmatrix` to run cmatrix :) _To get the program to look most like the movie, use `cmatrix -lba`_ _To get the program to look most like the Win/Mac screensaver, use `cmatrix -ol`_ ### Valuable information If you have any suggestions/flames/patches to send, please feel free to open issues and if possible solve them in PRs via Github. _Note: cmatrix is probably not particularly portable or efficient, but it wont hog **too** much CPU time_ ### Captures #### Screenshots ![Special Font & bold](data/img/capture_bold_font.png?raw=true "cmatrix -bx") #### Screencasts ![Movie-Like Cast](data/img/capture_orig.gif?raw=true "cmatrix -xba") ### Maintainers - Abishek V Ashok (@abishekvashok) [Core] ### Thanks to: - Chris Allegretta for writing cmatrix up in a fornight and giving us the responsibility to further improve it. - Krisjon Hanson and Bjoern Ganslandt for helping with bold support and Bjoern again for the cursor removal code, helping with the `-u` and `-l` modes/flags, and Makefile improvements. - Adam Gurno for multi-color support. - Garrick West for debian consolefont dir support. - Nemo for design thoughts and continuous help and support. - John Donahue for helping with transparent term support - Ben Esacove for Redhat 6 compatibility w/matrix.psf.gz - jwz for the xmatrix module to xscreensaver at http://www.jwz.org/xscreensaver. - Chris Allegretta's girlfriend Amy for not killing him when he stayed up till 3 AM writing code. - The makers of the Matrix for one kickass movie! - Everyone who has sent (and who will send) us and Chris mails regarding bugs, comments, patches or just a hello. - Everyone who has opened issues and PRs on the github repository. ### License This software is provided under the GNU GPL v3. ### Disclaimer We are in no way affiliated in any way with the movie "The Matrix", "Warner Bros" nor any of its affiliates in any way, just fans. cmatrix-2.0/cmatrix.1000066400000000000000000000031151344670515400145640ustar00rootroot00000000000000.TH CMatrix 1 "Mon May 3 1999" .SH NAME CMatrix .SH SYNOPSIS .B cmatrix [\-abBflohnsmVx] [\-u update] [\-C color] .SH DESCRIPTION Shows a scrolling 'Matrix' like screen in Linux .SS OPTIONS .TP .I "\-a" Asynchronous scroll .TP .I "\-b" Bold characters on .TP .I "\-B" All bold characters (overrides \-b) .TP .I "\-f" Force the linux $TERM type to be on .TP .I "\-l" Linux mode (sets "matrix.fnt" font in console) .TP .I "\-o" Use old-style scrolling .TP .I "\-h, \-?" Print usage and exit .TP .I "\-n" No bold characters (overrides \-b and \-B) .TP .I "\-s" "Screensaver" mode, exits on first keystroke .TP .I "\-m" "Lambda" mode, every character becomes a lambda .TP .I "\-x" X window mode, use if your xterm is using mtx.pcf .TP .I "\-V" Print version information and exit .TP .I "\-u delay" Screen update delay 0 - 9, default 4 .TP .I "\-C color" Use this color for matrix (default green). Valid colors are green, red, blue, white, yellow, cyan, magenta and black. .SS KEYSTROKES The following keystrokes are available during execution (unavailable in \-s mode) .TP .I "a" Toggle asynchronous scroll .TP .I "b" Random bold characters .TP .I "B" All bold characters .TP .I "n" Turn off bold characters .TP .I "0\-9" Adjust update speed .TP .I "! @ # $ % ^ & )" Change the color of the matrix to the corresponding color: ! \- red, @ \- green, # \- yellow, $ \- blue, % \- magenta, ^ \- cyan, & \- white, ) \- black. .TP .I "q" Quit the program .SH BUGS This program is very CPU intensive. Don't be surprised if it eats up over 40% of your CPU at times. .SH HOMEPAGE http://www.github.com/abishekvashok/cmatrix cmatrix-2.0/cmatrix.c000066400000000000000000000557551344670515400146670ustar00rootroot00000000000000/* cmatrix.c Copyright (C) 1999-2017 Chris Allegretta Copyright (C) 2017-Present Abishek V Ashok This file is part of cmatrix. cmatrix 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. cmatrix 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 Foobar. If not, see . */ #include #include #include #include #include #include #include #include #include #include #include #ifndef EXCLUDE_CONFIG_H #include "config.h" #endif #ifdef HAVE_NCURSES_H #include #else #include #endif #ifdef HAVE_SYS_IOCTL_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_TERMIOS_H #include #elif defined(HAVE_TERMIO_H) #include #endif /* Matrix typedef */ typedef struct cmatrix { int val; bool is_head; } cmatrix; /* Global variables */ int console = 0; int xwindow = 0; int lock = 0; cmatrix **matrix = (cmatrix **) NULL; int *length = NULL; /* Length of cols in each line */ int *spaces = NULL; /* Spaces left to fill */ int *updates = NULL; /* What does this do again? */ volatile sig_atomic_t signal_status = 0; /* Indicates a caught signal */ int va_system(char *str, ...) { va_list ap; char buf[133]; va_start(ap, str); vsnprintf(buf, sizeof(buf), str, ap); va_end(ap); return system(buf); } /* What we do when we're all set to exit */ void finish(void) { curs_set(1); clear(); refresh(); resetty(); endwin(); if (console) { #ifdef HAVE_CONSOLECHARS va_system("consolechars -d"); #elif defined(HAVE_SETFONT) va_system("setfont"); #endif } exit(0); } /* What we do when we're all set to exit */ void c_die(char *msg, ...) { va_list ap; curs_set(1); clear(); refresh(); resetty(); endwin(); if (console) { #ifdef HAVE_CONSOLECHARS va_system("consolechars -d"); #elif defined(HAVE_SETFONT) va_system("setfont"); #endif } va_start(ap, msg); vfprintf(stderr, msg, ap); va_end(ap); exit(0); } void usage(void) { printf(" Usage: cmatrix -[abBcfhlsmVx] [-u delay] [-C color]\n"); printf(" -a: Asynchronous scroll\n"); printf(" -b: Bold characters on\n"); printf(" -B: All bold characters (overrides -b)\n"); printf(" -c: Use Japanese characters as seen in the original matrix. Requires appropriate fonts\n"); printf(" -f: Force the linux $TERM type to be on\n"); printf(" -l: Linux mode (uses matrix console font)\n"); printf(" -L: Lock mode (can be closed from another terminal)\n"); printf(" -o: Use old-style scrolling\n"); printf(" -h: Print usage and exit\n"); printf(" -n: No bold characters (overrides -b and -B, default)\n"); printf(" -s: \"Screensaver\" mode, exits on first keystroke\n"); printf(" -x: X window mode, use if your xterm is using mtx.pcf\n"); printf(" -V: Print version information and exit\n"); printf(" -u delay (0 - 10, default 4): Screen update delay\n"); printf(" -C [color]: Use this color for matrix (default green)\n"); printf(" -r: rainbow mode\n"); printf(" -m: lambda mode\n"); } void version(void) { printf(" CMatrix version %s (compiled %s, %s)\n", VERSION, __TIME__, __DATE__); printf("Email: abishekvashok@gmail.com\n"); printf("Web: https://github.com/abishekvashok/cmatrix\n"); } /* nmalloc from nano by Big Gaute */ void *nmalloc(size_t howmuch) { void *r; if (!(r = malloc(howmuch))) { c_die("CMatrix: malloc: out of memory!"); } return r; } /* Initialize the global variables */ void var_init() { int i, j; if (matrix != NULL) { free(matrix[0]); free(matrix); } matrix = nmalloc(sizeof(cmatrix *) * (LINES + 1)); matrix[0] = nmalloc(sizeof(cmatrix) * (LINES + 1) * COLS); for (i = 1; i <= LINES; i++) { matrix[i] = matrix[i - 1] + COLS; } if (length != NULL) { free(length); } length = nmalloc(COLS * sizeof(int)); if (spaces != NULL) { free(spaces); } spaces = nmalloc(COLS* sizeof(int)); if (updates != NULL) { free(updates); } updates = nmalloc(COLS * sizeof(int)); /* Make the matrix */ for (i = 0; i <= LINES; i++) { for (j = 0; j <= COLS - 1; j += 2) { matrix[i][j].val = -1; } } for (j = 0; j <= COLS - 1; j += 2) { /* Set up spaces[] array of how many spaces to skip */ spaces[j] = (int) rand() % LINES + 1; /* And length of the stream */ length[j] = (int) rand() % (LINES - 3) + 3; /* Sentinel value for creation of new objects */ matrix[1][j].val = ' '; /* And set updates[] array for update speed. */ updates[j] = (int) rand() % 3 + 1; } } void sighandler(int s) { signal_status = s; } void resize_screen(void) { char *tty; int fd = 0; int result = 0; struct winsize win; tty = ttyname(0); if (!tty) { return; } fd = open(tty, O_RDWR); if (fd == -1) { return; } result = ioctl(fd, TIOCGWINSZ, &win); if (result == -1) { return; } COLS = win.ws_col; LINES = win.ws_row; if(LINES <10){ LINES = 10; } if(COLS <10){ COLS = 10; } #ifdef HAVE_RESIZETERM resizeterm(LINES, COLS); #ifdef HAVE_WRESIZE if (wresize(stdscr, LINES, COLS) == ERR) { c_die("Cannot resize window!"); } #endif /* HAVE_WRESIZE */ #endif /* HAVE_RESIZETERM */ var_init(); /* Do these because width may have changed... */ clear(); refresh(); } int main(int argc, char *argv[]) { int i, y, z, optchr, keypress; int j = 0; int count = 0; int screensaver = 0; int asynch = 0; int bold = 0; int force = 0; int firstcoldone = 0; int oldstyle = 0; int random = 0; int update = 4; int highnum = 0; int mcolor = COLOR_GREEN; int rainbow = 0; int lambda = 0; int randnum = 0; int randmin = 0; int pause = 0; int classic = 0; srand((unsigned) time(NULL)); setlocale(LC_ALL, ""); /* Many thanks to morph- (morph@jmss.com) for this getopt patch */ opterr = 0; while ((optchr = getopt(argc, argv, "abBcfhlLnrosmxVu:C:")) != EOF) { switch (optchr) { case 's': screensaver = 1; break; case 'a': asynch = 1; break; case 'b': if (bold != 2) { bold = 1; } break; case 'B': bold = 2; break; case 'C': if (!strcasecmp(optarg, "green")) { mcolor = COLOR_GREEN; } else if (!strcasecmp(optarg, "red")) { mcolor = COLOR_RED; } else if (!strcasecmp(optarg, "blue")) { mcolor = COLOR_BLUE; } else if (!strcasecmp(optarg, "white")) { mcolor = COLOR_WHITE; } else if (!strcasecmp(optarg, "yellow")) { mcolor = COLOR_YELLOW; } else if (!strcasecmp(optarg, "cyan")) { mcolor = COLOR_CYAN; } else if (!strcasecmp(optarg, "magenta")) { mcolor = COLOR_MAGENTA; } else if (!strcasecmp(optarg, "black")) { mcolor = COLOR_BLACK; } else { c_die(" Invalid color selection\n Valid " "colors are green, red, blue, " "white, yellow, cyan, magenta " "and black.\n"); } break; case 'c': classic = 1; break; case 'f': force = 1; break; case 'l': console = 1; break; case 'L': lock = 1; break; case 'n': bold = -1; break; case 'h': case '?': usage(); exit(0); case 'o': oldstyle = 1; break; case 'u': update = atoi(optarg); break; case 'x': xwindow = 1; break; case 'V': version(); exit(0); case 'r': rainbow = 1; break; case 'm': lambda = 1; break; } } if (force && strcmp("linux", getenv("TERM"))) { /* setenv is much more safe to use than putenv */ setenv("TERM", "linux", 1); } initscr(); savetty(); nonl(); cbreak(); noecho(); timeout(0); leaveok(stdscr, TRUE); curs_set(0); signal(SIGINT, sighandler); signal(SIGQUIT, sighandler); signal(SIGWINCH, sighandler); signal(SIGTSTP, sighandler); if (console) { #ifdef HAVE_CONSOLECHARS if (va_system("consolechars -f matrix") != 0) { c_die (" There was an error running consolechars. Please make sure the\n" " consolechars program is in your $PATH. Try running \"consolechars -f matrix\" by hand.\n"); } #elif defined(HAVE_SETFONT) if (va_system("setfont matrix") != 0) { c_die (" There was an error running setfont. Please make sure the\n" " setfont program is in your $PATH. Try running \"setfont matrix\" by hand.\n"); } #else c_die(" Unable to use both \"setfont\" and \"consolechars\".\n"); #endif } if (has_colors()) { start_color(); /* Add in colors, if available */ #ifdef HAVE_USE_DEFAULT_COLORS if (use_default_colors() != ERR) { init_pair(COLOR_BLACK, -1, -1); init_pair(COLOR_GREEN, COLOR_GREEN, -1); init_pair(COLOR_WHITE, COLOR_WHITE, -1); init_pair(COLOR_RED, COLOR_RED, -1); init_pair(COLOR_CYAN, COLOR_CYAN, -1); init_pair(COLOR_MAGENTA, COLOR_MAGENTA, -1); init_pair(COLOR_BLUE, COLOR_BLUE, -1); init_pair(COLOR_YELLOW, COLOR_YELLOW, -1); } else { #else { /* Hack to deal the after effects of else in HAVE_USE_DEFAULT_COLOURS*/ #endif init_pair(COLOR_BLACK, COLOR_BLACK, COLOR_BLACK); init_pair(COLOR_GREEN, COLOR_GREEN, COLOR_BLACK); init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK); init_pair(COLOR_RED, COLOR_RED, COLOR_BLACK); init_pair(COLOR_CYAN, COLOR_CYAN, COLOR_BLACK); init_pair(COLOR_MAGENTA, COLOR_MAGENTA, COLOR_BLACK); init_pair(COLOR_BLUE, COLOR_BLUE, COLOR_BLACK); init_pair(COLOR_YELLOW, COLOR_YELLOW, COLOR_BLACK); } } /* Set up values for random number generation */ if(classic) { /* Japanese character unicode range [they are seen in the original cmatrix] */ randmin = 12288; highnum = 12351; } else if (console || xwindow) { randmin = 166; highnum = 217; } else { randmin = 33; highnum = 123; } randnum = highnum - randmin; var_init(); while (1) { /* Check for signals */ if (signal_status == SIGINT || signal_status == SIGQUIT) { if(lock != 1) finish(); /* exits */ } if (signal_status == SIGWINCH) { resize_screen(); signal_status = 0; } if(signal_status == SIGTSTP){ if(lock != 1) finish(); } count++; if (count > 4) { count = 1; } if ((keypress = wgetch(stdscr)) != ERR) { if (screensaver == 1) { #ifdef USE_TIOCSTI char *str = malloc(0); size_t str_len = 0; do { str = realloc(str, str_len + 1); str[str_len++] = keypress; } while ((keypress = wgetch(stdscr)) != ERR); size_t i; for (i = 0; i < str_len; i++) ioctl(STDIN_FILENO, TIOCSTI, (char*)(str + i)); free(str); #endif finish(); } else { switch (keypress) { case 'q': if(lock != 1) finish(); break; case 'a': asynch = 1 - asynch; break; case 'b': bold = 1; break; case 'B': bold = 2; break; case 'L': lock = 1; break; case 'n': bold = 0; break; case '0': /* Fall through */ case '1': /* Fall through */ case '2': /* Fall through */ case '3': /* Fall through */ case '4': /* Fall through */ case '5': /* Fall through */ case '6': /* Fall through */ case '7': /* Fall through */ case '8': /* Fall through */ case '9': update = keypress - 48; break; case '!': mcolor = COLOR_RED; rainbow = 0; break; case '@': mcolor = COLOR_GREEN; rainbow = 0; break; case '#': mcolor = COLOR_YELLOW; rainbow = 0; break; case '$': mcolor = COLOR_BLUE; rainbow = 0; break; case '%': mcolor = COLOR_MAGENTA; rainbow = 0; break; case 'r': rainbow = 1; break; case 'm': lambda = !lambda; break; case '^': mcolor = COLOR_CYAN; rainbow = 0; break; case '&': mcolor = COLOR_WHITE; rainbow = 0; break; case 'p': case 'P': pause = (pause == 0)?1:0; break; } } } for (j = 0; j <= COLS - 1; j += 2) { if ((count > updates[j] || asynch == 0) && pause == 0) { /* I dont like old-style scrolling, yuck */ if (oldstyle) { for (i = LINES - 1; i >= 1; i--) { matrix[i][j].val = matrix[i - 1][j].val; } random = (int) rand() % (randnum + 8) + randmin; if (matrix[1][j].val == 0) { matrix[0][j].val = 1; } else if (matrix[1][j].val == ' ' || matrix[1][j].val == -1) { if (spaces[j] > 0) { matrix[0][j].val = ' '; spaces[j]--; } else { /* Random number to determine whether head of next collumn of chars has a white 'head' on it. */ if (((int) rand() % 3) == 1) { matrix[0][j].val = 0; } else { matrix[0][j].val = (int) rand() % randnum + randmin; } spaces[j] = (int) rand() % LINES + 1; } } else if (random > highnum && matrix[1][j].val != 1) { matrix[0][j].val = ' '; } else { matrix[0][j].val = (int) rand() % randnum + randmin; } } else { /* New style scrolling (default) */ if (matrix[0][j].val == -1 && matrix[1][j].val == ' ' && spaces[j] > 0) { matrix[0][j].val = -1; spaces[j]--; } else if (matrix[0][j].val == -1 && matrix[1][j].val == ' ') { length[j] = (int) rand() % (LINES - 3) + 3; matrix[0][j].val = (int) rand() % randnum + randmin; spaces[j] = (int) rand() % LINES + 1; } i = 0; y = 0; firstcoldone = 0; while (i <= LINES) { /* Skip over spaces */ while (i <= LINES && (matrix[i][j].val == ' ' || matrix[i][j].val == -1)) { i++; } if (i > LINES) { break; } /* Go to the head of this collumn */ z = i; y = 0; while (i <= LINES && (matrix[i][j].val != ' ' && matrix[i][j].val != -1)) { matrix[i][j].is_head = false; i++; y++; } if (i > LINES) { matrix[z][j].val = ' '; continue; } matrix[i][j].val = (int) rand() % randnum + randmin; matrix[i][j].is_head = true; /* If we're at the top of the collumn and it's reached its full length (about to start moving down), we do this to get it moving. This is also how we keep segments not already growing from growing accidentally => */ if (y > length[j] || firstcoldone) { matrix[z][j].val = ' '; matrix[0][j].val = -1; } firstcoldone = 1; i++; } } } /* A simple hack */ if (!oldstyle) { y = 1; z = LINES; } else { y = 0; z = LINES - 1; } for (i = y; i <= z; i++) { move(i - y, j); if (matrix[i][j].is_head && !rainbow) { if (console || xwindow) { attron(A_ALTCHARSET); } attron(COLOR_PAIR(COLOR_WHITE)); if (bold) { attron(A_BOLD); } if (matrix[i][j].val == 0) { if (console || xwindow) { addch(183); } else { addch('&'); } } else { addch(matrix[i][j].val); } attroff(COLOR_PAIR(COLOR_WHITE)); if (bold) { attroff(A_BOLD); } if (console || xwindow) { attroff(A_ALTCHARSET); } } else { if(rainbow) { int randomColor = rand() % 6; switch(randomColor){ case 0: mcolor = COLOR_GREEN; break; case 1: mcolor = COLOR_BLUE; break; case 2: mcolor = COLOR_BLACK; break; case 3: mcolor = COLOR_YELLOW; break; case 4: mcolor = COLOR_CYAN; break; case 5: mcolor = COLOR_MAGENTA; break; } } attron(COLOR_PAIR(mcolor)); if (matrix[i][j].val == 1) { if (bold) { attron(A_BOLD); } addch('|'); if (bold) { attroff(A_BOLD); } } else { if (console || xwindow) { attron(A_ALTCHARSET); } if (bold == 2 || (bold == 1 && matrix[i][j].val % 2 == 0)) { attron(A_BOLD); } if (matrix[i][j].val == -1) { addch(' '); } else if (lambda && matrix[i][j].val != ' ') { addstr("λ"); } else { addch(matrix[i][j].val); } if (bold == 2 || (bold == 1 && matrix[i][j].val % 2 == 0)) { attroff(A_BOLD); } if (console || xwindow) { attroff(A_ALTCHARSET); } } attroff(COLOR_PAIR(mcolor)); } } } //Check if computer is locked if(lock == 1){ //Add our message to the screen char *msg = "Computer locked."; int msg_x = LINES/2; int msg_y = COLS/2 - strlen(msg)/2; int i = 0; //Add space before message move(msg_x-1, msg_y-2); for(i = 0; i < strlen(msg)+4; i++) addch(' '); //Write message move(msg_x, msg_y-2); addch(' '); addch(' '); addstr(msg); addch(' '); addch(' '); //Add space after message move(msg_x+1, msg_y-2); for(i = 0; i < strlen(msg)+4; i++) addch(' '); } napms(update * 10); } finish(); } cmatrix-2.0/cmatrix.spec.in000066400000000000000000000025171344670515400157700ustar00rootroot00000000000000%define name @PACKAGE@ %define ver @VERSION@ %define rel 2 Summary: CMatrix simulates the display from "The Matrix" Name: %{name} Version: %{ver} Release: %{rel} Group: Amusements/Graphics Copyright: GPL Packager: abishekvashok@gmail.com URL: https://github.com/abishekvashok/cmatrix Source0: https://github.com/abishekvashok/cmatrix/archive/%{ver}.tar.gz Provides: none Requires: ncurses Conflicts: none BuildRoot: /var/tmp/%{name}-buildroot %Description CMatrix is based on the screensaver from The Matrix website. It can scroll lines all at the same rate or asynchronously and at a user-defined speed. %Prep %setup %Build ./configure --prefix=/usr --mandir=/usr/share/man make %Install rm -rf $RPM_BUILD_ROOT make DESTDIR="$RPM_BUILD_ROOT" install mkdir -p $RPM_BUILD_ROOT/usr/lib/kbd/consolefonts mkdir -p $RPM_BUILD_ROOT/usr/X11R6/lib/X11/fonts/misc strip cmatrix install matrix.fnt $RPM_BUILD_ROOT/usr/lib/kbd/consolefonts install matrix.psf.gz $RPM_BUILD_ROOT/usr/lib/kbd/consolefonts install mtx.pcf $RPM_BUILD_ROOT/usr/X11R6/lib/X11/fonts/misc mkfontdir $RPM_BUILD_ROOT/usr/X11R6/lib/X11/fonts/misc %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) %doc COPYING INSTALL README.md %{_bindir}/cmatrix %{_mandir}/*/* /usr/lib/kbd/consolefonts/matrix.psf.gz /usr/lib/kbd/consolefonts/matrix.fnt /usr/X11R6/lib/X11/fonts/misc/mtx.pcf cmatrix-2.0/configure.ac000066400000000000000000000123471344670515400153300ustar00rootroot00000000000000dnl Process this file with autoconf to produce a configure script. AC_INIT([cmatrix], [2.0], [abishekvashok@gmail.com]) AC_CONFIG_SRCDIR([cmatrix.c]) AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE dnl Checks for programs. AC_PROG_CC AC_PROG_INSTALL AC_PROG_MAKE_SET dnl Checks for libraries. dnl Replace `main' with a function in -lncurses: AC_CHECK_LIB(ncurses, main) dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS(fcntl.h sys/ioctl.h unistd.h termios.h termio.h) dnl Checks for library functions. AC_TYPE_SIGNAL AC_CHECK_FUNCS(putenv) dnl Checks for libraries. AC_CHECK_HEADERS(curses.h ncurses.h) CURSES_LIB_NAME="" AC_CHECK_LIB(ncurses, tgetent, CURSES_LIB="-lncurses" CURSES_LIB_NAME=ncurses) if eval "test x$CURSES_LIB_NAME = x" then AC_CHECK_LIB(curses, tgetent, CURSES_LIB="-lcurses" CURSES_LIB_NAME=curses) fi if eval "test x$CURSES_LIB_NAME = x" then AC_CHECK_LIB(termcap, tgetent, CURSES_LIB="-ltermcap" CURSES_LIB_NAME=termcap) fi if eval "test x$CURSES_LIB_NAME = x" then AC_CHECK_LIB(tinfo, tgetent, CURSES_LIB="-ltinfo" CURSES_LIB_NAME=tinfo) fi if eval "test x$CURSES_LIB_NAME = x" then AC_MSG_WARN([ *** No termcap lib available, consider getting the official ncurses *** distribution from ftp://ftp.gnu.org/pub/gnu/ncurses if you get *** errors compiling nano.]) else AC_MSG_RESULT("Using $CURSES_LIB_NAME as the termcap library") fi AC_CHECK_LIB($CURSES_LIB_NAME, use_default_colors, AC_DEFINE(HAVE_USE_DEFAULT_COLORS)) AC_CHECK_LIB($CURSES_LIB_NAME, resizeterm, [AC_DEFINE(HAVE_RESIZETERM)]) AC_CHECK_LIB([$CURSES_LIB_NAME], wresize, [AC_DEFINE(HAVE_WRESIZE)]) dnl Only change gcc options if we are using gcc. if test "$ac_cv_prog_CC" = gcc -o "$ac_cv_prog_CC" = g++; then CFLAGS="$CFLAGS -Wall -Wno-comment" fi dnl cmatrix terminal font disable option (default enabled) AC_ARG_WITH([fonts], AS_HELP_STRING([--without-fonts], [Install cmatrix without cmatrix font]), [enable_fonts=false], [enable_fonts=true]) if test "x$enable_fonts" != xfalse; then dnl Check for consolechars and setfonts AC_PATH_PROG(CONSOLECHARS, consolechars, "", $PATH:/usr/bin:/usr/local/bin/sbin:/usr/sbin) AC_PATH_PROG(SETFONT, setfont, "", $PATH:/usr/bin:/usr/local/bin/sbin:/usr/sbin) if test x$CONSOLECHARS = x; then if test x$SETFONT = x; then AC_MSG_WARN([ *** neither the consolechars nor the setfont program was not found. You *** will not be able to see the characters in the matrix font in the *** console without this program (it may still work in xterms). If you are *** using Linux, the package containing this program is usually called *** kbd, kbd-utils, or console-utils ]) else AC_DEFINE_UNQUOTED(HAVE_SETFONT, $SETFONT) fi else AC_DEFINE_UNQUOTED(HAVE_CONSOLECHARS, $CONSOLECHARS) fi if test x$CONSOLECHARS != x -o x$CONSOLECHARS != x'"$CONSOLECHARS"'; then if test x$SETFONT != x -o x$SETFONT != x'"$SETFONT"'; then dnl Now look for the console fonts directory AC_CHECK_FILES([/usr/lib/kbd/consolefonts /usr/share/consolefonts]) if test "x$ac_cv_file__usr_lib_kbd_consolefonts" = "xno"; then if test "x$ac_cv_file__usr_share_consolefonts" = "xno"; then AC_MSG_WARN([ *** You do not appear to have a consolefonts directory in a standard location *** (/usr/lib/kbd or /usr/share), even though you appear to have the *** consolechars and/or setfont command. The matrix font for the console *** will not be installed. This means you will not be able to use the *** matrix console font (and the -l command line switch) unless the font *** is located in your current directory when you run CMatrix. ]) fi fi fi fi AC_PATH_PROG(MKFONTDIR, mkfontdir, "", $PATH:/usr/bin:/usr/bin/X11:/usr/local/bin/X11:/usr/X11R6/bin:/usr/local/bin:/sbin:/usr/sbin) AC_CHECK_FILES([/usr/lib/X11/fonts/misc /usr/X11R6/lib/X11/fonts/misc]) if test "x$ac_cv_file__usr_lib_X11_fonts_misc" = "xno"; then if test "x$ac_cv_file__usr_X11R6_lib_X11_fonts_misc" = "xno"; then AC_MSG_WARN([ *** You do not appear to have an X window fonts directory in the standard *** locations (/usr/lib/X11/fonts/misc or /usr/X11R6/lib/X11/fonts/misc). The *** mtx.pcf font will not be installed. This means you will probably not *** be able to use the mtx fonts in your x terminals, and hence be unable *** to use the -x command line switch. Sorry about that... ]) fi fi fi dnl Parse any configure options LIBS="$LIBS $CURSES_LIB" AC_ARG_ENABLE(debug, [ --enable-debug Enable debugging (def disabled)],) AM_CONDITIONAL([MATRIX_FONTS], [test x$enable_fonts = xtrue]) AC_SUBST(CURSES_LIB) AC_DEFINE(USE_TIOCSTI) AH_TEMPLATE([HAVE_USE_DEFAULT_COLORS], [Define this if your curses library has use_default_colors, for cool transparency =-)]) AH_TEMPLATE([HAVE_CONSOLECHARS], [Define this if you have the linux consolechars program]) AH_TEMPLATE([HAVE_SETFONT], [Define this if you have the linux setfont program]) AH_TEMPLATE([HAVE_WRESIZE], [Define this if you have the wresize function in your ncurses-type library]) AH_TEMPLATE([HAVE_RESIZETERM], [Define this if you have the resizeterm function in your ncurses-type library]) AH_TEMPLATE([USE_TIOCSTI], [Define this if you want a character you pressed in the screensaver mode to retain in the terminal]) AC_OUTPUT(Makefile cmatrix.spec) cmatrix-2.0/data/000077500000000000000000000000001344670515400137445ustar00rootroot00000000000000cmatrix-2.0/data/img/000077500000000000000000000000001344670515400145205ustar00rootroot00000000000000cmatrix-2.0/data/img/capture_bold_font.png000066400000000000000000000166201344670515400207240ustar00rootroot00000000000000PNG  IHDR4TNNW PLTE;?IDATx՝ϊ9gh|}>oY+SKQԚs N\Rs~*{qEn(hT[6!<&*2 瀁=q`N 2pΩ4Q6rK&B67O6͚7,h.mȈ/ݨ* lC֔Mz"٨SlT FH jI/ShT܌Ӱ\*vo){ T8Yt#"q8&X樔u7[lrwJJ/fF6 @;4EvsUρm4 -. I2>М+1mm{sKjy_44f\WP`CAVFg٧ HР2ͼB5ıkdqsq2|[E\S^ w%^L=o^I#mZ%"G xOF,1L[[0i0ڌ 4J{)h~;=w).K)b$mN#eSL9}QthaEfpsi$K_?]1s,}yK Ķ_Qe4LoƱN3FjJ)7V't4pN2k fT+:Uև/Qci7^R[ E`9=KHhNSt%$"5`VSӲxG3uJ]iMǔ (QlcZ45?޴mc4ӰUh%4XRr4,wiE8||'•34;QR c֟XʆJK5\ffMU6WHNSӛh(*ͯF7j+w1y.թ)i=0[u~oNSTe[<3?3ND7'ʹlWBbE$n4?Ji"9ֱ&a[6E,?9eT4 {oO4llN#ZiҠ.ړgM? +g`IIf'flfv+Ѹ^IywQƻd{55Mwx$n4~xՍ%*6ۯHټ> =o^oi|u {zUT ,͘陳̋L~G֘yaz fVI|Ga)r$3hpW%5|NVOu :/|2fՇA鸎|?N5Yɗ!x[@=Dtl9Ҹʻ5?۷yOgAHC籤pe' d# hNK׆dA K 3téJs>d4Rsh¢qFJ Fk)for`D#Khdu!?3&$] *).i\)m,}Csy;)4~ -Isʗ[~%vH&}[\'uh2 UoQgr}6 n9S73)E6&𸙖Mo.]p,c:q^Κz4E\_=Q>r))FXM;e~qs9F2%e2HZ`סu8Q_lz)B\<"" S-pV1A >[B6Dz#W:Kl6_ ҜeNvZchۍ k"„zP%%F uU-Shb{~X) 6jFF58M7p{*~ t9*[3-ߎ&NcW`EGaH3gI@+`Fe0 ;ڪtDIMH${bʶ i# uʙO8VY5eg-vrru r:ƊfkNH;@@iT(Fq;F?\\|KpJn)iֹ2Zc/DVb"x:)sMc^ T`cE6\' DG^3F 4r#YMoefzs g9M7oЀq-3)LEl}>.r.b7`k&Ѽ\l-o+$MWȵhЦsw٢b;A6Zthwh=䛩<' i*Tǔ #җ˸tL\\N, 1K(!Sҍ.1V7vqu D_i~? CZW(ifb|IeC6h7di ۗ(:>iL-UJ|M͘9'/Chn*4'5A.HɯJJҨ%ᗑIM港ņ7h]|JnMܪZiB7@rD׸nor{ì[Ҋov[ O+Д?E34٤|4taoX]VǶ.j2 bHCzB$e}?l 철qdMw'Slsyu1i|ņݯ (f?\oyS@ֲH%4x)gk4x4ua' PhYLsJ4RD%ybFyKd4EޔMh&+):Ѥ}ڮfh4&zL~|4@4l/uf͙2{STI1whZyF37i .%}b QC7hC^>[\AOf)gNOL9Ú9H]P5?@I==}uʍhqPH!WMC' -f~ g^f֯҇vj凜ؕ7OMX !nIV,gl&ci_{ͥAsL_{\ 4LodlMmghdSyJ4cs9fd#iPo &qBaz#ipKK%d-H| ɢ>9oқk ⽐ v5.8 ȸdo㽶W\~Glha8\K%㟸3A<:y7Aeḣ u&ѝo?,u%%&y(sa;Ll%E(f3'RI1'5|}}h>|-qJ#gan]}g4I6KhS8dIlպ?-*f :-NdyLc48WkI%Af2hA?0WK 7cԢ>?Ϲ [V$ـ" M1;.Cˤ'ٰZ)C)hvVhdMрlSȓWnF8޴hBP0,8Ѐ;, I#3go4J[seRGWgߘԽ98,*İZfե.c3la#_FU*瘠Q2#nR0U++Gqʃo[MEvEK%Ez0%M*'n`08(8yh6ViBur6. 1ÃCҟ K #iܤь}[VPhLFsifXh>J-IazOsZ2DAp Q6p5욲l9pM ?yG޸5q[I-ź70yV`} k(f[<*x겁*7qp&xu3W> O7l@`G!;UMT0኏@d* ڴ.C'A5 8ŞZ,D 1NDJVR׊4TRi):iسuHl b֙+~L+OsY5d)г2h/@oдJ Q1fSқPј0{S֩?(n)އjaVEє[-,>M-47 oIS˲:?2q8?qRoÁ\nsFLӬe.٢ٚC{ڤꆜ)'4 ְUL0(OLny!|`e)DDR`9,)z 5Q6r]?qMmZ̾IWР-*hNi[4Kc%͘h+1tyCqퟝp.dp9ޘFI('7,x.]EW@~&BY*:Jj&գ# ͹I#f--~ G0ԦUP ,v3Nv?thoV-Il<$^$Jh,76󝎬4ct {p&%lo[SC$'9캢zZ 9cC6-w!`Ol|\tS{&N`o`b3mmNﰎdsvI&o|Y(hLAc3u=* 8C1s4wd~>J9 M I?Ѐ^0:o?tF4{]o5-zu1.\49ժMIlFQ u y ސƇBȓ]vY- -w4zj6 խrasT~"Idj9GƔʅYsM&I#g2HNʶ 0n(Z$>_Y^Eب>IWK HCǟԻ8eՕJ&bMz.hLpYx0Јg4̡״3ZUo:A'RۦVnp a#IS/}PKfqc(* 5~hd l(0Q_R6 >YRآ4,5d#i_w:4P ҐWш NsViDqNl8hm{ި"0$킑/-OV\`M xͻ9^c8H}z*{x1PKl?~mRovdMjuA#:v0t:r Vb"BҠ7w/;~+h38N!Wgj4W_Qm7e&nfw<3/40J˿RBѰ9G%iDˆrpe'q10 SS5wP}sݢ9bT FƱsEEJSˠzs40hHү$_7}0݉f&*DQo|:-blFL}WN#ç%>oZx7䌔f/u{3 _֍T*)^4YC;IENDB`cmatrix-2.0/data/img/capture_orig.gif000066400000000000000000005127061344670515400177050ustar00rootroot00000000000000GIF89a4TUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU9! NETSCAPE2.0!c,4Tb_b߄"$LC~ $h&sQā Zǎ>R1Fd'QZSA4Y\LtbOXQЄ3 9!IE`2Di>.-YgIXpc޶w]J ڲg]>nqW;/1 \ YTڒJS^=ױ{׶i9u7g\Um䮇--}5p -S7wr ^Ԏɓˣ3k!4P}i{8^H"T `1{cG\=HnYW2D`&ۃ(X:y\@=N$(icI8i8W SJ8 |$?%%?9$fZyO9c8i@qbI٩Fn:gg3INee_dvhUi9_KB(*yi>jTH)R9+~i~vV%6Vkb#mvʴmk^3nkV͋/:+ $ G,"0g_ ,$l(,0,4l8<WDmH'L7P QWmXg\wC{-dmhm2jp-!Mx|lw߀.{w't؍G.~xg]_砇.Ξn騧^㪷뛗׾f5oG7G/=OoWܻ}o䟯~ן?ãH@L`!:h{'XR 7@ r G?3! W>s! g=ҳ!w<!;!3":%2s"9)R񊘳"9-r"(81; D5Qt#XE9Y#E=a# YFAi "832Hs$$'3IR9$&7I3Mr/$(G2Q4$*W4S|%*L hl)^n%KҗȼcL4m6f3͙8]p6ε92b g<}K]S%@)Ё#BJDž2}(#3k, *`ќufE1YьzYJAϛ岘&>֒X?`Nsd.dFM*1))b$D|Zz4Y]cÎ66J/\ 똰3鏃ڴfSu:vB&X#`'9)T;2|X5=^d-U+Lmsjm.c_:W6 l=/ϕ,6 h]֘cM6dn eF9#k+}=ٮ64r+jv՝[[xEr[jD. Ͽ [_>^yLsMF~ߚ+ʺ M`fb>5WVNw-3#X#y#w2~8 #.qR81qZF?2~UCč<ɔWd[4-5\q*+q O//Ua7kV/sj]g3lڢ}ƫӟW%6WF<Ϩ~ҙ4g;=wmil>\]OX-|-oGn@qѭxd6v=gobkJo֋ۥ_]7ڷv=lxU6.P']jٰ-Q}^.3s ׾A1c_BeO7˿ďG9_r7;CVpuc25m\Jt=Gol|BKDT vt֡[U)RnEN:\Uo,ZYɪf\|ϴZYO2KRXƧiyuah4f: {9{5Vr9ᖛa՛iIYn|ЄYmU{EUԬ)Niy:ViT؜IX]ZTөsUwZ偓ȳ VY[1J97cHq7zd7z;Cy۷ q 6 zzd:g2*+ø-S!jv8[p0j2 g>{F8tjyJUHtȤ)S]cZ IxP*VeWgJ(8}:ghozZNi{~VU<x*[vJ;ȯ pzvɭ)庼ۿ@WKBsnYwΨnMe8(YNx2iQh y^˅kUʞ;]Xwlm"*àrçjGehaV˚*\!uz :@ׇ) w_%(l9_Li)i~%/[˜Tlʹ^p労Ô|ԩM;)g+G롨U">u`)yzȶ٨6In6tz;aPN]R/12J.&mJ3=O.V(6#v`Wti˽5mf2w!c]J>21Ng/qs~ɜ'&30M.2|E 8^?nQU~ }#d7ۿ:]|-P,轎kڹNN˗OM]^62~r>>^Ǝ1g>١^.F)`.Xb-N2F~].ϋ>2>o~W~'4 -d3h$: Aѯ/ܰ-}!~bN0e_F~ؼ Ӎv-M92[bܖboI.B/?㽞mprԏo9zo|_ K=./qڕMČԸؗ/s=պ2rmmC]ӣ=^T/+|Mڵͺҹm8= ޜL   WWbW ҡݙħ޴ @w*D`A #J(+ ŋ3jȱc(CII_ O^M 4s'pɳ純+[Ɋ&/9%$tRSO+d骩>j ҂º&BR$Βݓ])5+iY` pdp1$2ʜԯ# KزDX''~@$Wf8RpM1/M,?-xmK%9zyp=/go$tJi|:ң=swt/[IT8ᴞ`Ma`v1`pe"&qlUuav1߈$RHbyԂ]M^ᦢwLM:FY8( [FF#Ws`Ʌ!%\(LRx(&&_zOG|b%Uc $piK+]ˆ(S% 5 "e)ꨪIiyZE`WNz]`ډS'b榖bb}rI&,rjt$Fˉ#%h)aw5kfp}f-<^ 9(bH^ULu۶,%VȊ =¡tGLm- TqB%uw,q)xӻlr,/r0,4/l8R(5*[+"p=Sm$T2PGD ܡgH ցպdP@VFnڬ;g' ^&/1lxo#zgmyy~׶wވ'N3fl{%֊gy0{O5)'Rnt~۾9:'\ucOmiQ쒉%4V\7_ HʇԂ$L}(2;Rlj_ٽ "&l?ٰ Elן?<H@0L :Pg |GBu՜<-(l14 8#f00h1Jx!(0#4ċiP/@Z@4{qcMC. d^qG5ETȉpd+&C8#$̘Jbm\95ҀNׂ2aK5y1jl'ĮKWz'4j<( Q2l..AĦA#˪q3$ ӗ*Nh{A^Ɨ{0LGv;/ ҢT^H@3& ExE +0pgyu C8 _G$B"Qz:s#*ZNM@=l(qZg֓au̖ @6p|b*@ }B t͈qmDw&M2yfo/iPqT(YΤiZ3LG7;8QܞWt] bL hܸn"eQ'b,t!=e"G.4- ]zYmW)u/eZ({ }b#\G w .quNRjEԈ'VFkgogA(.3 X]Ce`;6/[o8wkawC8= Ӭ9_vâl_toO4!>[6Lqѵ|˧L6S^^hDΗk/U pyG5MȠ]D>ت8sG? *ݙyIl^n"0Ϗ~9%q~TWc+-2?AW{ :0O#EJϾOK+OЯ7*E?=ėFovX8zM&CCGIDv ""D$MHdxPmEmE%axvnjeEYpT\(}Ԁ pf7V;5ѶI^CdqR%tj䄣$}etj1?g%[SKkJT _ Kmk`4_kHMw:Wc:TvfZtMأ[TMlvFDytmNuOstPEz}({} 5yVjJU7J OW%vrgg&R'g)cQ%=1%$fK„kSXT fItyu)oELE/Ut iUCUt3W7GVUnktWguPtFE{QUaFXHnIvFUW8OeEhR57avTeSfbf'lah< vYI .It. Cmޤ+D X\^\5 nRyW8GU^c6e㶏چm줓u|8G_%SSuLp`f:1fy:_ful9 B#mEELv#aò9Cbs`hA&Cb\3Nd@c(Xoc0Bm8TQe٘Vfy QejeYV^I`~F6y'flga%/O;ЌRps!(9I) Vimhh)i:fn0jCj&oHn\jCVpcR)ginxS gۃaCM#m9m ]fhCym:'Ɠ9QudGeddwoK0fڂ49$lDŽaIqø.cSLUZ;.hDT*g,F=2UVsJ']%n?s?sj}i\zuLwN'V]SUGt`:G, +e7( jxpDAwy7qof$vp-#:x\4>*xb;TyOy.y֪sh 7P{zC6{ jO{ 3' -~wOy2 @Z@0R}Q=}:J~ѝ|ZGS+8 CspS [3*Dۣޠ&W W L 51>S3 I2@W G7; d'3/UJ'E-,w䢅#+[9#La k3U{|G6oYmnc$c.c!Kwo9w:qb)*#~!(w;9/C貪h*e")a4D:Tyrk)5!BʡY*'H+!0S:zほgGJFf8e) / 5!/%n/3&EfY!0+)zqF 9&v`=f24A9 k)J#I 7'"?b;D[2(7(C:hlR1R!c:,<؂+ّ.<ܐa¾ +LO;t9,/l!w2X"l HE)>ǩH(h'$|)[$IeHlj74<5<[#mk k3c*K\k#ab, GxZ'D#"KS$",1W1v-*[QTp4,+,Y)b8gӌ CyC-R[A4+o["Fbd+2"/΁/|ة΍J.red;6XT۟ GN~qs<$S0 aJpsCRSV"҅`HtZcm,>2 >@}Bݯ +%IM]%CTMS]X-5^-3 19 !ŁZDlaͅؿCk;5zo-8\pi{].s@ȢKv׃S8҆ٿ\W`ٜ٘٠ ڟ[\]ٗXPڧڪ ۡ=۴]۶}۸ۺTۼ۾=]}ȝʽܡm ڣګۖҝحڽܭ}ށ!c,4Tcbc߄ HAdb(\ȰÇ#$ŋ3jFqǏ Coɓ(SVr˗0cn(͛8ɳϟ JѣZ"]ʴiLNJ*իX$Fׯ`q KscϪ]˖Zڶpʝiݻjv˷oք ToÈ+^̸ǐ3L˘3k\j2ϠCM%ϦS^ͺU_˞MбoͻS NxƓ+_|3УK.9سk_d}wOϫ_t_~aϿP'Hg` 6XނF(uNhUa ڇ"h"n⊪0*b48ˌ6cg)DcH&ydLdPdT8eXxe\e`^ed:8fhxflfpft7gxwg|gfgJ7h.whh'dhviii~6jbvjFj2j6krkk7iĖkJ6ljvlЎl>lr5mrm~ .l"Y020。 /X׿/ C G̝Kl!W|ƂdL/[.K2&i*cr˔ 32h͚@6ǘΠЈ}=3ҞmӘBK]pï0\_m>WM0=o:[/@vw6i1r;smq5Ӏ1xsݓ3Nv&vئx+㫗n8s(2{{ٟ3Nֿ.ߙW}.yS8/N6㓟}ooaƧ@ Y0*_-KX0L|Zr--~ lnZD%Gh͂Fӑ|Yc Ƿ Ju 7Y{pH1uΕDsB$0gWIы[&?3Fq{, : Iyv}ҭRU7 n>XΥ'kڪU{ַ-|u𣖕ituS.{1Fm:SܱA NoW2 kpˉfy3Z 'K.לs:IG;s9Q*xᙖ%XWD_k w#?ҥ\-nn8[SMU¶]\+3)}Μn$+֚~I(a}->;ӐԈk6|n|歛a| nzҿͥr]M?s7Ѡuk()b{+>?t{JnFA&MSn{Q#̭~*y?OJI s:~?GVpPye maAH`\9b6m7prA5#WRsFVdWlbuerzY,wyc fvt7jd.Grcj1fHF\HgV cu¦r$؂\&ixv|zٵ|pGxXݷ{]gk{ XZhxwV{{eeCRLg{VIK({nxFFVw7zUoWz|&v8|_XZz.(^R6MPgl|vH{dI֗X@mF~d(`J6WH1ȆG&،~Ш,̈8F7uLqg84x'UXaȍIā䥊؃4c_U?h`8\`Vo0ꨉ{U*HԄ!vq%d;crW褑 S`DE%s*Tt}oxUҐB6 Giv8}+i8y:I^֓L9-q< +茒PX?MVSp&| *EY@[ɕni[d+ljw`bjy ז=8GinX l}i o>9.ي %~YNI _I y}hY2טՐd)8 )z #t(Æ&YIyI| Y NO )y"ڄ$4YLٍcyIX}iyq ܹUi)D7}瘛tZɎ Oٍ$W9u!IDi䦟9$~uڜtҝ9B$J$~#(3!H4%\L£$8]"/:o`k Cf`&A}wk7t9WdUzxwjvFMYgZXay^|"EuZچM'x}ULJi%ys\i@]h5f&ڇjhx[牎kZѦեSꪠĖ!r:9Ǩ8xmf aȋ8HjYNʥD;]_K AHڑoǠڱ™z`*Ɨ&;߹DZ }2%/f468K!(ezhm'3u>X:먴2NKdzJeYKPy|E 'tYjɞƱ..醲*ly|q+Á|~@[[u;DISdK4{ѤqAI A툨hڥ|E{[k3ڏea;?g@Fˎjב FH^ 2(79}hzի̻kJ@)wkPɑ:cZˌy,k냜oxaQjaxzVإkU{Hb[JyHe\JHvqtf*rgge9[ۚ:+{rnI,PkMJj 񽖗1wxktt|[R:q4:쫹I 䛤˭?̪n7<Ƶ'Shm6lp?šDZ)Й/;|ɱf=,>8e ]\);'TLړc'~*MӖsDGC o>oM̗ɸkVJbԑQG4ծ`-dۼ ! at̮͎!țvjG|lռ,t ӽUlli=,,ѪIԳٵ+Dp<5Y%=-F{Ljͷ]`8n;Ѷ+k 4,\!}Y]A0l2i쳜x͍Øv\ m̼7RZy9L+f:X֢mc,E=޷ZQ{ѱͲdzkk-$, l< nw[=ß͟ x2ۧ(54Ť|݂+a-~Ȭ\m\52nޮ?^ˎa䷷q]|y#H0eī4w|ܻ|&dOC<{Bwpg~LH- Eʅ>nke=w[ Yk2[Q"SLq]>aVhysf|=Tg~ !c,(cc**bb͓αĝ۪孶ݙ5ΟiK '} #Jdpbb+Aȱ#1.nF(S6RÒ']ʜIs߱5sy $ϟ@R QQ>*-͒L(RH[^f5[֭B|QFRi]O2ˮ:Ze]jԩFnMfp0kBvWbŊEFbG1 LxC3״׏Pϣcظs6 N8qN~?N:0Nk:RyDvYI|PK_|0ߧ^~P!LX`~ ́2%%NH҃ig!+n(I)m!|Ox5!c,5c*ˆˍӦẋ*bHЕ"{&P`-41b"jܘI!BOK0#Ǔ(!}L81/Sʜ9f%D"9IFB #FHC5q(M;M&Jh'zՊI>7C9ի}`;{I(I\ʝpzb¾ +-ÈM/ǐVkw=bnfMx~y4HM,a_)ɺkB˞6~Q@t%^՜wF_=غwfҿ~sVϾyuGT>{nտ_F}h:߁ b! 6(D8Rŋ(ȱGe C"ɓHj,&QPB+QʜIŘ^FϑnnΟH՝ '꨷Cٹ \ҫ^CE)ԨVJUNA R*ϲpӹUVWLDՍWYZhm޽Rl}'[x(#e*e`/k̹ϠCw$YEʦS[Fװe6h8mRo9{ |ҽ#Kή$sL˟s.ճ7G>I*,{mԩ"N !1ǞyK$({n)JayJ]^^~a !c,Rc**Ǽc҄ۡ H*\ȰÇ#JHŋ3jȱǏ CIɓ(S\ɲ˗0cʜI͛8sɳ0| tѣH~ 8 `PP1UTPըX?^뵩>J6Wb˪}vUڵpm6ukK_S`c nna+k}Kvp"11fd{E\)E#^*5I5'rͺ*ת%>.%d:=r8wݨ{NNQ酠ϖwCKr藍>/Hqˏ[xϿ^(? X Xf1. )Be^Xv!!Rv> fZ#vLǛ\N ``2;6ʅc PT#H&U8L%cPFi啸8)~X5buZ04E^bg Xh&ui2a.'dӛwZdg)ٓ'/b!c,.4c**Ȅ҇ۧ HZB$FY[+3jGƍ Cc&jȓ(%ʖ)cR8s jL@У"}2&ҧ(;tZ*ԫVSS` j-J2ٳhӪ]˶?>n:pUv˷߿J+ 083\ɂm&tf/sW{ WgX !c,pcbcb*ǃͲֵʜܣ©*îOCZA#ROb9*ZRa<0ɓɶDImz%YʜIKRbɳh^IѣH*]ʴӧPJJիXjʵׯ`ÊKٳhӪ]˶۷pʝKݻx˷߿ LÈ+^̸ǐ#KL˘3k̹ϠCMӨS^ͺװc˞M۸sͻ ' nqT%?rDϛK}Iկkν]ٿ~湣OϾſ yV ^s7 ]Uz@W zO0HN4@ar J(06 y!7 ZF8bxhO:zC#lXc=ã?"GHCbG;KV*FyʔF2ɤP\^襘'I 8+~9h~l覃s5 蠄RKHIH%=(Yӡ I)+~n)<$2;j %h/ t2ZkJ%,Mӱ3%F!Ҫi݄mj2"b>!+٢ژ ںػط22!կ^GmJo˰g[!c,|c**cDz͒ީ%*t5pCHJZD /bqEBɓGDɲˀI&:18)ϟrѣHBiCl*1DʣrhVv _KeWhbU[qb)Zzu8T_T {{ bMI%~L`'>59ϠCMӨS^ͺװc˞M۸sͻ Nȓ+_μУf*zෑkڴoxͫ9,ßϞ*yMv~B'B h& 6F(Vhfv ($h(,ȋe.H{h#_٨#1y$Z5(2iCB P"Sm%Ef$Ao$j=J#fʜ9'Jut&%Xy矍J.hI؇^zh|a^⧜N Uz(3y5*y yڪƔ fFk1ɮ;LΘiyF+mRN1v-:D׷٦PgU_aON.j˫ 2kK+Sː \k|v2ܰr4L3|I<w7~`"B׾% */Hr˿0C$s4<嬳#5D#4(' ʱL !c,c**ÊƱάަCO*\ȰÇ#^ `3j #Fm-H$cP\ɲJn[ʜ#i 'D/hD *m(SP!!}(LtTjM4eVgNkU]ۯlƥ²խDfɥ˷߿ f)Ãq!NPF)TViXf%KI2vۖJSt`#fB6\8yʚjҦo9J4wbB7t YzbH+t$h Ρ}.(%9 n4)Z ڙ%zz &mIzjIEFzȗ>g檫" ˯b,%Cб -FϴTk>֢tK˷#nйn;kYO lb?6o Rr {ƪf"B+-ïE| V]ruM "_`ƚ$&q_3!c,cbbƦǷ*΃ٹђHG`~KȰ!' EE ^ȱCiNI$S\ɲ˗0cʜI͛8sɳϟ@ Jѣ.ODʴӧPJJիXjʵׯ`0FٰLil[gϲS.[v ߿TJWoͶoR[Tc6'v70ǣ0C)2KϦk4z3LѠUk٭ecv㥞Jn9[q˸;޽ڙ&Y䖫Y>|̳kνψQO&*bCO~& M y->H> ~T` NP7War}j(,0(4h8<@)DiH&L6PF)TViXf\v`)di՝cjf{׽$rHg5މ猢飞~h.J(q袌6zv֥rEq Ji(fX`^!uJVҪ:lAֺs檫Νɫ5)Z6) -{Nkmzԏ..I[H gH[MZϺe;ͽ3^hK'0#.҉4Iu4߇Km#ۋWljr0+OG"Zɷ[O͸|.S9ܡlqJG-;+&RYb}ˆyMja'ehvWo[~dwmݎ=u/!|kU87n`/kId !c,c**b“˪Қؠݔ忤īΚbc Eo"7%dJ(ŋ_;CN(d7Su4ɲe#.c CC8KɓV(ѣ̆@q)JuիX&ʵׯ@۔)YbϪ ڷpKץ;wu[3wټCk[q N0We.,wc)9Bwq4ỗf6}3kxw] Iwؾ=ލwȓ+_μծNz νEؽ'V<<桇Oo={ߓ/77M~{2 蛀 S`! 0=yJXKfh!vU Uh$H8,+ʘIh.X[58I=9g Y|GҢ$!\ҕTv&"EeCKvef'5[if]hf3m߈"ʙ5ظi矀*蠄_&Jq6^"褁3K6RiWaZަV(ꕨz*%(pYVjΪ+qk&6F+Vkfv+k覫+k,l' 7G,'Rj~qol,$lG l.{kΌ:(> tЬL=eJ7t0>}~> R \7(եq&&dא'[}Iڠشn+Xu'tGQ׽ܟ=~xPkKw$Ӆ7r8ދϝ%[:K^KsO rTNaFFND}&鲏e{{7zni~#?_J3Sl{|[\ZmP/o3yyO˯_yǻ[XLi~IwMCH́ Ƞ<B~'``r8L(b4!"+)0(4h8<@)DiH&L6PF)TViXf\v`)dihlp)tix|%H ^lhV:]f馜v駠6i#ԨWcƪJ^Ĕ9Bb⫉(Z#%+D4N JZɲ̂)~m$VN-9 ~{E&-kkԻ+ HȭV,' 7ֺܨ-w*1>:2g2;\2,4V.Pw3Jټ39 D{KhO-HUj)HPlTWM.)֢u"_JjgvIhOmgV6Wgާ!c,c**bcĕКфbԎ߬ccySFqf{JHbAȱG~FɓBۈ˗TœI͛8sɳž@ ͤϡH*-ҧB:XXQ݇Uԭ` Y%5,WYenKVwҾ}ʶ\Y%\LݲF̸/L_Y2gl?7MӨS^ͺװ-ZM(rs΄{ߐfNx͑5̘#k?NS7@]w{S4^,ZϿ(h& 6F(VxdfX &yhb&#Z2 'hH¢4 %+֨e%(@?i =ƈL&IILCFVf) ZvBX_x #ژSmSW0ΛfR>]Ui{g` `97hO*'\> zZkZ"qjOz#P)H:j*eRf~ת^kqdoF^5.{bVFkfv+k覫+kՊo& p~:0vL+]qML{_w ,/Jn\]*So0, 2l8<>rDqѯetkJ/ZNuԧMM| _tZvt`-4L6`l-CSÅvCSv5-s`w TikP_ou7zi*4T1\'jγfFN掟m騧9M:,$nrnٮލ;,4[ob{M{^_/;PO(̞Xܷ:Zo/^-2ը#&w򊖿f@2, 8z.:_,%P\\% s|f!c,c**cǠȮѨدݼĄRN>/KȰ@UVСŋ3#xƏ CѐǑ(S\d,cʜIKv+ɳϟ@ J4E<*F@HJnS&/FJ6 BgɉΆcǖ;(m0l 2.[t xp޿ .GvXrʖ.;Hofi?KZhN.J ϫ+csUz){/v #_Μ(У{82سORIpóv]c_~zM=wG]G)8I8WUf>Zq(b0ɧU#҅8Xx"b)"viLScY3ӢA8dWEfse8.)UԈJJb<)Yj)dihlp)ti]xtg|bg2g>DK4hʳhF*餔Vj#Ň$zH&j=%wjb(.?JWu#*i݊kNʫ$*2llFR!ށjv+𥨵ֹp}".Rno阡l' 7G,\Ni_[qƖn1I",%&kHɝr)Lh2r8<@-DmH'L7PG-TWmumWbi/z 6ӎ-efLdȶnmx|߀.^VCXw ~y?.WnI|h9xy9.*].33 /<?_|=)r9n[ﴞr=PhNk/Po^~?s߾^LcBs˓r'X2o,py]6?nwy[RBdXfK%lU}):yIjaIj7ɕlfpI[oyZx9h|'i 'h袌6裐F*餔Vj饘f馜v駠*ꨤjꩨꪬ꫰*무j뭸뮼+k&6F+Vkf-nRznJGfѹ"yxѝF+˸ ++TCӆ 黯D*", -<0*Bİ&ٹWƮ1,n:=26282S <_z@>2AvKS.Mc>O3SSu.YWڵ<[cIK}D C}uΫ wu ٠ޒv˷$|_ ߐΘ܀xI-g[< gYbyb!c, cbbĒǣϷ؃ l*\ȰÇ#JHŋ3jȱǏ CIɓ(S\ɲ˗0cʜI͛8sɳϟ@ JT!jG$-4ҦP:UAU5WnUӯhU3i>\xQk.3~ `h+ֵm_#wPb%knX7UỴS^ͺ_Tqv7bޝ0ߚ(^A8íLK_G%tԚì:pErG{ݯcA| m܀ H&b>`~#! rLء3"#jxn7%v(#>"X7j㢎أ 9iH&$䓠$e TVi%=S^*Rn)O9嘋I晛暗曒 眍IuY|`yIRܠ&"e(bH>!`jiN~>H#`ꁮ.2j뮼^ZiZJ ·kP ,.kdm/NK^aB(\+1G.lq{dnަ+'gkcbz.;o 6qg)$Ev,څ!_X2)c)r̮2ͬ4:s.0U*()󣔚zj=87Tty <\~}'K_J .x yHar`m8&݇!߉+uO"&4D8#@٠Q9Sg!bM1KM,_HR: e+-8V[Mf{v+ ކ ƃr̦к Lnec_(+d]&sl^&fi k=htM0Tx^&qx# ?**u`/Ǽ69Vs9| .wKj ;GzӲ;ݾ>{# 6c<j,ϼFW?O/58bɧnO:0OdC>?`=Sϟ]C/kqɟpk_qP@F(8 l"8J/8fQg$D%΄a ȝ0 gh:0E]!|}@ ⭈&"HL&:P^l(EϹ"-z"H2hL6pH:x̣> IB򐈜FF:򑐌$'I(E.JQ ѓ8 *s( WL'XB%-_S2w)1I'n%t3H1J-|c5 SR&I$_)N,P aOJ` 1x%2EW2cM艗n4~@!((ftN & @PDthɎbn `ESMbLК&JbʕtBc^*do<™T4 O9/Hjv#!c,!  c**c¤͏Ƙ؜ό; H*\ȰÇ#J 3j cE Cmɓ!?2*KW{IfAɳ=cJ_ţB*] hR\3J̩ΨTjfUέ`سhӪ]˶۷pʝKݻx_B{ L0EqZƎ#,Tʖ3eYg~MsiҨS^ͺװc˞M۸sͻ Nȓ+ty\%jo1댙x{:rؑrvd[:zB-??O7H|(J&x | 6XxF(VXMgfiiH}z]4pa]̉(x bc5#ݽ^07h~%vce(䐎#0="@ȘxTViXf\v`)dihlpiQrJu橧XHmx'o9l[h= mN (f馜v駠*ꨤj*5Kꪬ꫰*무j]z뮼nRd uXl#lq= [Nkurᨈ-:JZ z8PNM9/T˦do p6so.6ϾBl);pv 7l&VhJS6g˞Ls7gfsˊlΛ\YBYtd,j([#,TWmXg\w`-dmhlp-tmx|߀.n'8<?.9On–ǃyY̹=kNzR9ʰ및y4׫5ܵǮͪ6s4{;@c}$j,BJ/ :r_{Z(8?߯]_oQBW6q P{Χ#,U|7 uy) r6(j(L,"X4D`BT >Q-ia~!^f"8!J0]EL:T Q,^hn4S!c, cbcȬȽǕۚ؇b*Dtޭy HQA+Cd#G(#LɒOIJ8̜)JѣZ EʴӧT@J*QVjʵׯ`=;6ٳhmaM˶[oʝhԵv(S| >)nz8c-[Jl疑?04ӨSsZÞMNb)e Y+_.utɭk}ײZ<ɫw>ɺOϿ(? hYW .`V >(!UNhaS^aQn ($8p&*h|.x2h8:( >y B) F&L692Zf[Ad9\gI9ZY"5PÕiV %)1Fɥ4FYto3I餡 Zd M6(KFj&w) @1i¨dzj g*D/~Vv*䬴 bkNSnk>9XlgMίv 69ڷ%;>am~l"Kn+k,ld. ٮe^EVSŒ&mq$e4.sL3~߬<>mDXF/t-ʹ? ROuQuWoݫ^-dmhrj}\nwtm]mzw߯ n8{g f!1f6Vp:ZP˺čYny_{3oay'Yfͧx,XE"V+r rL+M̥L_? ?J辁s1<+&"R0.e&di (L W0 gH8̡w@ H"HL&MN, ĢH )-^-!c<#;ҨƎ paIcQ(;:NGA G1T3 1;$JW+V\%3 ZqP'GIBj*TNqmP,ZiX zhKWzD2%}iL -$/L^R`|,9k,-U[(wg-{'<۸y:ҐQg@enm,?MkgAsЧE3If*,*ǢARa Ql6ȍ. O!c,($c**ǩț˹ձ֐٬Hr3h!Ç!0"3j6^Ō7#b$ɲ˗0cʜI͛8s#F'N|ZIЙA$=:zFM ZU|S2uuOEMTJ;6V^qQ˶òpU{qʫnDr6/[ 3JxYN:J.{+S)-ћaAnh:5ՑN=2Fmᶽj7ಌG%'rԺ.$_]yT#UϾ) - 5׽^}џ& 6ć F1nLetr(ȅSh7X!0"Khc97@)DidLW9G$[G6UJtNVi!T^iwZ[UV$QY飘#BNI[lzHp)kezIM ({*:j|fzeCV馜v駠*ꨤj(taꫬ* ugGik[&kӝ*,C>+VK+{fRۥW&NHh!-ݮ[b:hy$Mb0\p70 ]8p n.w "7Jqɸ,^-*.'OZެmZ02T l>5P3Ksjh"]<$tӂ>XRsCWuNu]̆BlHٛm,&ӏB۾Mkx7H5Ka][.z/]؊/.WkV*m>WyjȪՕGkQS⦗,(y獾~;&˚zUY~Sȟ|6KI[WPMmig#س8z߇ca̪T_hӿ8k HL:'H Z̠ݱ|otۍ0N M3dpj!1D!p/t(Z>4&"HLi )ZVڲq_X(d6F|(:Q&AGS5# %AK\"yE2T|$'IJ&1R̤&ϡM62lBIQ\MTRDJd%g5h,NrK$&H/Itp(&)meΌfn%jZ$[MIr3C7I?vO׳yplbgtJ3PPl ԲO{cG?ИD'JъZͨF7юzq*(MJWҖ0LgJӚ8ͩNwӞ@ PJԢHMRԦ:z#TũZXͪVծz` X*uo$Ϊ:hnZGULkfZ_rL{Q`JL8aYJshcIWK,H*K굱p( )-?י66sk"[jE#K f[ho3[S n)ҡuas'܈׸nm\ax֢ՅuG]*$HP@]غ ]Ci^շ[JV|U2LQU),?F&$`;ƫ=.-;L/.!c, 1cbb H*\ȰÇ#JHŋ3jȱǏ CIɓ(S\ɲKl^ʜ )&͛ԉO:yJ)P6%%ʔѣ.mJөVj5)ԇZ2İbŚEJkڦk#}[5ܠtu߿ LX c^,PbƐ#KL˘3k̹ϠCMӨS^ͺװc›ۧx~tqb߸sq7Fxz;N&ڈmW߮It'y|ͫ_d;˟O~O_?|, 6 tVhfv ($h(,0(4ָn6rccgɳWq?<;I$$]NBS~]9U9Yե"`՘dzifUh_m"2tix#]2is~0Z?!ۡ$81b="iJiZ&j?3g֪뮼+k&6F+Vfe u-mI~;u⎻ZW nGmnV^;/Lёfh L0DP 7eG,Wlgw #p2+|k0,3٩r33W'sXYd{6ã#<18mG.x\6o砇.褗n騧ꬷ.n/o'7G/ 2wgwl0C_.?xT\үڞ IEW `׾CpQDXN)ț €*2J01 œB&VIyM(2bV9LCZ")%QJnOSAD>բSjʵׯ`ÊKlpfӪEvl۵p|+ݻ肽޿+ö~1~L&[ym;-3hUS.etհcOۚZhٸsͻ n6[MμΣKzu~ªkMxg]9^_O&5_?Ra>V` `n)ƛUWhj$UQm !6h]bO>h,*"eXyD+&Ӣ¨W4RBU[J."?Ne[1飍@v%YU5b_%nhlp)tix]gK6)hN9 I饘f馜v%u:Ds&c"$*&ƘIΪQZ誻|k,#xWzm2k=Jk V{n֤lKn,}H.骤m i'[~.G,O-6\*SҗƊ› o v2 .Cj_2o͢,gO-k0{Hf 'Iq<3k:=pԠL]4:#=+Yu"w| lzmcڡ wJ$#&|lj[0iZebg߽ɷv4 ww'^S5>憈9冃yyn?hT(ͦ(_UyeA̎WG19޶\Ig8'K|8<0r;;⢯B~,vؼY?bяhjb_-+G"?coAPr h`p> FPS/B 0lp8̡wCAn"!!͈*"Ӥ% NH*ZX̢.,|"{$f35bn$QGcԨ>" #Alɵ_Z!9BGN&M4O. y$*WU=k%,7Y,sI]1ecN)bL2K\2z3)MuX$pma߭Mp}3X9ɛu3| iH>zKOfsgZ.(P2.`D3Q#AqP]OFͶP]q)GO%*tCWҖ0LgJӚ8ͩNwӞ@ PJԢHMRԦ:PTJժZXͪVծz` XJֲhMʩօs\Ϲ6v\׾tB[Pz^ӂXcRN 1+QPfla:rBՆIhڒ)n(dk5Ɩm2]Y-+[zDP{X3pny Y{ wiW2;egl"[r＀/X ѿ/Gs`F| ~PE p!e wDȰp:$梉cQqJb'[ 0|ҾXQ'F8s1>!c,)Pcbb**cĻͻʒμljٹୌȖᾹcv@R*\fk*!ŋ3*XA,Id*M4H$˗0c&BYL\ S#͚tMУH*]ʴӧPJJXed t5W(EHfv ]Y%$hD!r, g4x\%< 7Œ㑴L6##P~,Eu Y5`iQe ϔY$o鎒Cbb:+9K 3*蠄j衈&*J1pFjH&5&#џ-'69V4x)= dcs*5RZj)$jr*+&jڣ"2K2ZKGz .ID!^n3oQ\c޻!u5˴CYhq" G9+* 1JǺܓ2+Iь7˧qL7P sT5uXg G]M1%ʼn qmwr߭?߀.nLg5l^]/nߎ糮R^xaέ曧3ۂ7^!AQzc_[s{{2{ă2|'_7OϯG/pJo=ɽ|"->仃KϣTMu]7%(u0U B pzX";9D3GD1I?D$'D gȿ|21_`gB Pktغ8r91AbG Klccל?"J`bHC 2Tȡ%dIGf2C$=jyN)4.* 9ӹe`˽52%d&lO-a1?d&ӄF3:c6YLcj3Jʌ&3 M(+~fslF0Iz_)k)ЂMBІ:D'Jъ =2/O=H FA:.(JeҏF-}ib*Spm#NwӞұ\>VԢ=BTVb*T1%թJV]Sj(rQXJֲhMZֶʭp\J׺x}KR |}_[ YjiM ߬NUsqi0Uc,0{ @{Ly,crڀVw-iY.vmYjY; C.~rs1t= U6]Xm(_& 6F(Vhfv ($h(,0(4To6m:w>#Qx$E<&em) N*PQ)ؓP%TVi7NtJ.Ԓyg\ZfHi?$z矀j]6J(袌6裐F*餔Vj饘f馜vZ }z:azv_YժJ>h!:+;,),>+Vk-wmi~>(`8Fxn o&حm,l' 7G,Wloƞ-1+O\z2!]XKspL l7p5, `1rBB4@+wt2K,=L#cHVuX} do#o1̻h3=NŰ6=Q}sS74x罎vӷ/K8݆/ގ;E?'vgw砇.褗n騧ꬷ./ ҵf/{L<³{(ݎ7G/Wo*EpoPgo~,yگϴ Q=OՏojH!vfkɖ>PQM[IoeP%T`tvu%StX]+L^ 6CH$'FA;qBrLFImR"*n B8X\đ IBL"F:򑐌$'IJZ̤&7Nz (GIRL*Wp`IZ .1]ZeaS1e Ό4?i")o) -rrt9{cI?w@s9ىx6, ^n48ѓq? AgJw28 5bDeQ(xEOm*E79MTr!-<SlW41TŠQ}TGOO ^MXB-hGzT%mDUS*+4!S jJID!c, Ncc**báϡƹӅؓbה݇ꄶ x.ic  C#J At 1b; CN8>H˗ ^̧qݶw`ɳLj.dcϣHIl*JJӪXjyuWFes05VPٶK.̨.[s}&w/H~NL,o]u0a-#KJy͢?pLLzjg[wb-;kkohݱ(q۪2,G Nس\EuOޯE&3_xx܇?ֽgkfV՟h6Ӏu!ILX"g9 r($h(ڬf+"+-Ua.PHgqz@UJˑH&H_? Q"G%&LC.Xf Z|&.NR;%wɚߨ؛p&Fg^Iyֵg^:A'[FRA褘2#f駠* 'SiL*f*3 j+$nbj8"br7j ^2 i&$kɲKV3nj|L⚅3Nb.ҦK׺;kV<|'  7&G|ٖWg w , " & *lf.\OJ͑hcsL0ڮ4D'=PJb$H_sӞ-JYcD5S-dmh*jomv7Mwv->ͷs6!~ 0ۆw\x3юW3@Gb8Zy*OsdmNI:?>xi:.;u+־#><ʷ| =n—>jSX=Jk}!oϓIR/_ͺO^_OSXeT <2?!I~|0}qPA*(L WB^/T_ E5W7DaoCFX?La_5UG|`iNo }X̢x"qS ^פEZ8)5"lٚgbn)Ђa Aꗅ2.}(\"*QTV8X2Q H'Б&I5qqt0LgJӚ8ͩNw~VXIRfU jOCҵ5L:[*.kҋZa8}R~LkX卖+!ŪUv\_Q|ZXJZYa/q lBـ j{rՂlc6Bnw pKMr:ЍtKZͮvz xKMz^eh)|:ľ/~_W@Ls|Ą..RdגLwnд]qď+_μT%Nw¯o}Q-[vW}<+Po]y_/>{{d_4hD}I#2}W c+@ W~S "_Bęb6*b!PDiH&L[PƔ`GFi>b:m S^)6O&!9˔ɥ8`IȸyNN砿e鎚 J袷zi 褩(6FJ馴hOT騸]Jꩁꪬ6L~ՉH'VĪ95Km^%MlYnҭ [ʯY΀]5KHK ,ymI&[ۖPbHʳj kЌX0[Df1׊ s/}'2l> m$WɊꏡ(+_G/Cp5m %q3I h+__4ȑ\'bAaõՉmmsvc3wtw){{S8/7}8*'}6ڏx&gwy|.%o騯d릸|G{*{$.<#o'o;/rrcK׀=|[⦇K!A5N(zO~Sw7?7_gM-F4g"So9ba't&< W8yza<(Ѱ!Gv> H"HL&fG>rb(|R>,^rQY?/jg3? >3ZB7 c]hGq @E' D ,CC`Q$#Ȝ,[$2C (GIJ4kH)VVi ׄ7ĐT)KNM 8Ȥaoq,`x֩9&gzC&y%k֥$T8 Yc<ٞZg&OGiQ>;GMs,j @+hLr2T)s$Ѫn(.όjԢTB?уh$MJWҖ.bʘ $iMn=;1Ӡrƌꓞ@eu4HhJeT)b\#hhM+f"fakLֺQ rTiW5k_ynt~WP*Ř"`.6D%KjV8gòYWn|jWֺlgKͭnw pf56++vg t{GRͮvz vT>Q5_K72z}/|+ʬ9-~Ρ+LX=pb໬[I0I ΰ7{ *I24;80x,?dkR\DtOp e ,rL\7,q hd kR.{yg<*P@?IZFeiKl$yΈ罺=F'D4F;ѐ'MJ[Ҙδ7N{ӠGMRԨNWVհgMZָεw^z&i,l;v!c, !cc«Ԋܭ H*\0JHqD3jܨ)bD CLȓ(9^˅%_ʜI0歕&iܩʦ< uh.C*Ti-KJJիXjU_ VPXZgǤ˶eصM]o*[Qݻ n ݫx񡿈#K8cC%kfg7سZÃ2^ 帎QbMlVR]7O{Swy#_bBʙK7*@㟰OiAĹoT='Aƫ'Y>`+]oߥ^v&Xt 6ЀFxVhfv ($h(,0(4hQ88#?(DZd%W$e'j$#SB9-ejTi͖Vn%I)aҖR`idn xr"I'&v)ݚzr9gx~j衈:x[E.裐XZK:Ji^:ci/~ jb8i꫰*무j뭸뮼+k&G. pFfI-*L ,JԭxJbR֦kʺ[l&o-<+&Kl4y sp= qpO/WqƬmf ,$ܾalXM0 "!Ul3{sW8 =VEӬU%}LQ#MU\wm2h^EYwJR`-j5v\ tmx|߀.n'7jcBn_Z>_jdC^yyk[ٱ"=qۻר* V~Q%J -hx)8 &߄!Ȃ8KsbAmx%j+Ӣ/57x v-Z#;ڇiڄgd4<0>Tɥl_BedB%@aܙVcUf)g#C_vީHIlcӛS!YϠz;BU3>zm1z̎~㨥x(>"5ZiJKzZ 'Ke),uc6,nC-{Nrgm9{mhRb- ;kJ'7ݾ[c/,l#\-D _' B]UL\NƧht~ H"0la*IȹL_bk\%M$ɭݓO-,&22Tܴӧ4A3.a̵2B)ckMͤ l"-fí|߀.nE6*-u/Ny_x砇.褗n騧ꬷ.nQ N}-Q/L6oSXЛR]/V|FsO+kFS*J= H@`寀9`Nx@Xo# l,'AE̠uw jNC(L ؚR G#>D偹H Ǒ7bKqX*e$"bFbqp@ޟ|=q8-$JA~XmC&n+W2E3 Wl" v|1Gw G1=`8H=pL"H!#{Y#II%}q%HFnA0 JH))yʇЭl'˜ɒE.d--!JWJrX%0IbL2f:Ќ4IjZ̦6ͺdQ&DpshƐfxN`|l/ Os29kAgрy#]L>$Є^"rD':Pt*jE78{rRx5 Z$-iNjT,EEJaҘc¨MKt7զ~ ԢHMRԦ:PTJժZXͪVʤ^ XJֲhMZֶp(ʵáK!R}_A9 ]%:zpN#ͫ_#+$󮘵G3 3+gQS`ibgl^;U٦67-< YֵemѕR}*j5څ6kB18\Juݝ ;6R#<̫O`/P;ߒm}C3ѷF\T80,a2|:.&acCT qXðCcN<@,Uyfqp"!c,)<c**bbǔʴψˬŸi!\X0} #fS("4Z،"Ǐ0$/i"Ma5+cʜI͛8sɳϟ@ JѣH*]ʴӧPJJ+cZu*V]ÊMuٳBˢ]Vڶp|+]t˷߿ &@+.lK?{x2W Yֻ9c̑5 XPgAOS6]zj=_߭\6lg-9–#K:x861+w-/tuUJnzhﵫs|ϫ_Ͼ=#Gۑ:߽OhP*M MC^ Xˁ)w5I8Ԅ1 Fe!^X%%6)Gb&XL&HSjPF>HbL(5UA䔸T0MO5ZrSd b%2"eT/I`s S mC0&+y Yy!~xI;Λ#-xIRqHjT+҄$_Kz[|ˤ*譵@z'C kHb,0"2ˑς+:J KYf0Z]-e[ToiGf/kz/Pq̴!K'X/0LX c0칮j\%b҈Ӻq!o2 Ɠ 1Ur,g8K+r%?=3([5^RO}`-`KڀmMl[$shw ^}w㽐ݴ|}~0^ݏC^)X`>suC]訧c.N0}.*5k;%q~Ν@;â|cQ^g2&ѿ2=&BIgK dYȼEo>/wʚg5_+'oη'!O}O L_/c] & S(4 |-f/Tђ6zbH,.UP0"EVmcT*%$ZO4cb % ie,Ҧf4pH:x̣> IBL"iD`n#Rn-UIV#⻞| %E1vLW*"4Wȃ,YʚRV)iʝ2e.yپN㘵H&Z󖾠fim䊨.MqjL!Fuc(㹱U@̆=|s\鵎 襇Nj`u*щ³&F7юz M2RĐ!%%%!ɔv:Z҉h$%]bCkR<&|SsnHZ('4kIJvj&b?jW3Kh(V p5a$5I,U]xלJ]oso+} kX2F鯃 c[="M,e#f6(Zh;^KkZТlgKͭnw pKMrFD~=Q䇞XCj]P/.'(>ՓAl[K`"}{[UUeT3_N¾(F|O_}#&pԊ$X ~}4ΰ7<rX@D)&+gO|C꘰3N иƪ}1s>L"HN&;PL*[X_#-0^nL'f>NP?2ܝI0=fE|=}>tvC3:Ɖ~;-D47iRڿFA-Ng4Ct j%z iuwe`Xӗ5su^+u{UئNzeǴ;@=i_F^6ѫ]aCx`onv6θ'mVcFnd~nyw+s`O$8~K=;_#NRo8B&e-y!!c, Ecbbc*ϻ*م H*\ȰÇ#JHŋ3jȱǏ 92ɓJ RKu$cI317kYfN@Sѣ|Dʴ+J *իX;\HDKٳhӪ]vSIm}Uݻx˷߿ LÈ+^̸ǐ#KLr]M:͜C_ Zig>g}Tݺ$ҷdӶͻo͌#_m6pk)NسkJ25.ɗ/p柷Ovzʟ?x|}GHX' -W 2`6ҋVxv H ]"h"H)A[EpXQŨc.ˆ?RģA>q%EوONTcMW``)dihlp)tix{ȧ\ h카2\Ҥti"Q)RD)&~:R)^Vuꢕ驖ȺȨѤΥzI+pR":>biZ+2 u.n _׹6aǯno 7G,Wlgw |\MҊ jYN&sD,JFNT~sh3TGmKaLQ83K0.EA͙~$cIe]'1-dmhlpeҽv+*e|߀."?ifO葉sx->7 I"/8*j ޜ#7Y!W]=nԮa NCپ@{AP+|-ϼA?OWogw/odO?oN cCis@&K|4`@u ]8ˠ  aV$A&dSh3^h5(!1le@ H"HL&:P"&EWPXEO\"K!1b[fEӨ.k|&(:AWA~%x(HML#|DyC2|$&)IE,#&7N%l#C Jri iKB&!c,Pc**bƖǰʪ۔⮹c׫񃜲ۦoM;^e">H"-jȱc0yIIy˗$Sf6ssΞ@ -sѣ "]ʴ;NGAJ`jz(TԛX΢]Ӭ-Grhwoڬ~+ᜄ+^<21ǐ'z}˘3kތ(ϠyMӨtQ_˞ 5۸{SN7O<УKNسkpϫr]Ɖo}k@6%C/ Z`V uDhF,wvYOh:"ixbj b+֢܌4ᘣ ;A(doDd%PF)%:>䔷PDWb铖^ `~X˖(&)eZf&lpN^+)SgEKΙɞ *hӧ(@>WƼ)ig52ZI(b)-鈝fBi1PF%R&)rdjI)wR6L6Ƴ+Z,6Жr+qEӦrֲQ3ZkPz9Q3Yà{["mزkܻ _ˍ,./!FNdT&O0< [TV2G!G;'/+ʪܘ\Ĥ;[ DZ0qGkiK7ml:OBWJݫ(U=LNrakLTel5ܿsm&ҭ!M][9~ͯ#ZwCsN阠zi< -of?`NŠMnXʮ;UD{$ ?Ss<3+=}%/ïyB?TN9d{=d{>$ЀDI@195OrA`S0H/O%ʱAtpH;! ;M d*+ u52sFX(B04kQ "PyiZ+)Fo(Fr5Z99v=q=~ct&;#"F:򑐌$'IJZ̤&7Nz (GIJB,P:VR,xXȊc\ ,oJtv@˜0nQaf$ei>լ bBQb*#qB0%3"$;蠰qf)ԹNo~'J8]AΝ=:)N$ @ NpUAYT?QCa'm"J!᫜b )j8u ỦIꎛ2LObE^ZiB)݁>~~& |O@-S!#Bor\B[-ZI1gnk$-LzТ5uh ]jQհ.cbY qMYhv-mxEvRlY1o;6M=֎|fTJ:(G"I`c=7jnu$ڸT^7QvMyw>!c,&Mcbb**ŮƄɅћŔҹ佺cJJv\P #JHÊ3jŎ C#ɓ(S\ɲ˗0cʜI~6s '0u QfϣH )T2D&J]BCԘzHׯh1V:[*lЯZMKZZn \^Et.]*J7v B<Ə3k>6nMVdWo.ͺuΆ캶۸sͻo} ./8ȓ+OLп/ͷyi={/[NxCӗ_o~|k:oGǟ{(I&]z*H e@fVeL0oi "Rk+"m/Ɨ]bHڌFGKTViXY^mKy߉R*Ph*¤Jpۍbʷ#dev旮9Zu&fJwYyΟ(zaAvc:"AZiyFnu*$]Ejffg7颓N7j+, klGJ.D>9f}RhkӵخrUfq zbW[U뭻ҋP 5CP1D.W5iJa /vpV93O2ijtB&΁hHr'7ql-1 qH.:rWȌi|l"H8n|-1+E /w$'V"o<(WVs[L_)Xby$-]b (*uYʗ 9!G~+f(L(3-V" Hn 8fXMfd oٜ&9y wiO.0N g/zFz=XІ:t{D'RT__h25j&h'Ri":)J9ҕjȢ.LgJӚ8ͩNwӞ@ PJԢHMO9Ʃajh***Ohu8ʒTbKcMY{syN Y+oںΦ5\]]ѤEyׯV7m]%ܵw+^Ǝ }Ŭf7;ODr!T"G@Z)tb-/ʸvH`-n%,vJ}lJ\=qJ-7mg2ZFع.v۹vëRD9%]t$w+P-hB,&S|.7+~1]H*ĸpq1osc>L6yQ;s%+pNI)Sイ25Xy2)1hd(3(eK Ynt[$b1<7'%tu|$ZѠȳ! CGMK/n]=7u%u%MV?Z9i2qY?'ÎZn^t{ .=@*;_F{0ɮv+dgkRqp7|vMzη~T8:7kJ*ruZnئ~Ge/Ɨ:pLR)[LE6"4[ΦPtUo,Y^U!]ÊqٳhӪ]˶RP|&]r]$/#{3K8_M谘[+QRVW"#y#./Bѭo X;g>zNݾ%cz#_μУK1 cnQ;ËOӫ_Ͼ˟O|ïF_r` ``2`2aua V"`$h(,0(4g6c&#$dCcH&-dB>)IeN f%z%Ifs}yfI`nhetix2z҇}gI衈&inj裐F*餔Vj饘>]mjw\*]vY1J*FB٫7 bJkv݂k̺Kk"jk.*⪲ˊ, Q ,"*I nq⎋Ά涆n춻k6nO:c/<̾2#b" x$ qw ,$l(,0,umuƆlΒ2Z>_ '%ς Iы2]R\ӉR-ԹX}Aa} ׄYkH{"xvXjUn_uttmx|7RomA8..G.Wngw砇.褗nzߢ li3ȳ׮RaR{ɲ~9$/|ȃKgw/o@~3O0W~k|mL,? g&t#8P LΈ.zZ58&ƩRH ǰ$l 6c6 s^2H"HL&:PH*Nb[qR1&L=ƴG ]rƜtZa#2F5&nj@wlC<1Y[hCԑM}~ @*MBІ:}|S"*ъ3mM3Zr3eB*Rɐ9)Jҕ.Lg\f4uj0U!ɂ4%EvLh1yZKN)ZdUQOtZb QoRU0%Tͯ^(XVZNӪOjJkOZ5YMUbؠ:@!QvWDdS wegCkO3d IIԲ:^ [ʶm=W9 qmyz{K9r\^67.s"nN'uaeUXhwj!H]JIyRoJQ(!iu_tT  D 2)Jf3@</I.O"& S 0gL8αw@\a3yHmVsJgT/deFT9\f1+.3=4# l'.Rγߔ=C!A_B~V;1V,}ģILϕDl͉Ls:aC} DԨNuVW®^3c3r5YL]s5gagN5f;ЎvbAE$?moږv#Y+ܬ|s߅tKx!c,)Ncb**ʩͳ˄Ĝϣ޷ߢ Ç=؉!ċ3ؐcy5IG'/,ɲKM5D5,˛8s4esϟ@)Q]J)ӧƔ:JTjl^WKJ+b]0kڱnDŽuڸM7u.ݔ{I"ȯErp'38ɻgZ ]Y*vRѨ N=iɬcˍ{Z@ׯmyEܯ{Nȓ+_vЯNLZqгk]MtvϧV_4{ߞ1}q_/}5GP~`_- 9ȠVBx_xUՆ($h,$`=*&^ !#q7Sӊ K^\1g$ Kc@)RRCK%[ݗbfj0`)tix'-qV*㞧ԆT}*J-'DBh)>raէ\h$ΨjFʪ*e'T3ʖHbᯬ K$h1vVVlj΢r+Ͳb+׳pk״.fٖmFYӺk/TYoI L)W Imk q$2r(,OY c_ ߇24{s~ÏM˟>=>/۟P6耝 eÜ ɽxˏ%#tEǒ!!GA`A> e$d!ۤGO'*8U%ItYn,P(< Ҙ( &I[ Fa7q1$O(>q d$79GZF졙ݲ6Lzn뢗iN쥓Sٛ!->3U;zvN,kv˵6Os=]:|-l ͱغ>6CeΎMj vn7nfbǼМA27. oO]7=}&˷NO;'N[hXqx~v':W:Ӎr7F@Ќ[9O.sҫ>J|9HOzP 0*=,Nu}ߝJ=u`en#l'#W]dpGx*S1H3a|</\<vod| !c,Mcbbc* HPV*\ȰCW*>H1A3j̇Ə u Id(=\rȖ0cZ{)Mf4o),'ϟ@ JѣPSlDxUjݙR%ט6J6T^-VumٷΞVغp8ݱzEԗÂ㒛^hKŸg'k~Ueg7^fG^ͺװc˞ )jaڸs4:.O8#_N9CM:٬c^7ËO)E=1ۍ˷^'ݻqWq|x _ /^`R&ՅVv ($VX`X7bY)b7-)Hb8ʨ66ZXĨI6JN8N:ORcXDMhe0[ iـYcr.I%!1fn&b^b矀*#&袌6裐F*餔Vj饘f馄x~*[9Hj|yrڭJ]BkJ+rJ\gj+kl.o\w.;vW]-pn[Vzڳrl뮰+ںk2{oboNoz L0\\V opO 0Wlq{^ Wư[RȂM߂)ML<B,4. ,P4l3<#sܱ;Ϝ4;=JGݴ:R)OPoש`O$v"Ӗ}jDv, wIi=ȼm|߀.2s0IZ/^Q׆)"6Δo=fELy;:'l>ϋS~8n/o_&yMӕ|Lb7[Fn/%=:(W[EOW>B;J[ ?J{I'!gRK2@ pz̠7z Jr$(L W0 gH8̡w〸! A%ꢉNh %͊tʦ.̋9,RhLS5dnDFx9ұWJ "3=1(H`"F:RJ{d/I33]%xILK$WIQ[")S9 p|^TPreєK] 0I̠TERԩ`&4IiRҴ)|Mmz 8IrL:vc#c zѝ0gRiqt 8^Qcg3z. "AN͜En4GxR(>StJS$5Hm%}iK0: ꐩp(!c,Mc**cbbc„ƅЫѾݹ޳ XH*\BH"I%sǏ CIIN\^)r-cʜI͛ 7ɳOO0 JRТH =ә:9>J$ӪXZW\K/ThӪ]˶۷pʝKݻx˷CKV +^L1nj'LٯʘJ3͜=VxiFͺװc˞MvW[״ plj+G1NqճkΝuËOycϫߗ~y˟O_ xn'`36€f ^1HV f8 v ($Ȑ2a#/^m#R:%EIS8O<ӏ=9(8SGKI$"5KV^`Qe` NC%lh%rig9Q"xwV5]*J'S':(s'w2*ݡGin駠*ꨤJ%f 6ZI͟*T)15׍Rek-%\76fZ-/6+ ik.:ڞ;^֦BwsIl[# ү/<ǪsċP\h7Ɲ;l(,*;"z` lO0,ȉi8iɋ3wl<}?| 2]t(]'U<?v}~Ͽ-gClGo { /o WE@o 4@0+3LeAIm l 7̂Bv zR38B %<^!:!D Q<^P^}l Q8""zĈG.H & \EL ADH16n {c]>&ܫ Lx5[8$c"$Ajt$Y )9 2Lr+(GIRL*WV򕰌,gIZ2d; _t?^ڲbS|)̟q*f@c"s )T?ldJS$Τ5lJb7 pd(9NuјѬ;qvD=ϡ̳ '@[XƁD5cB6ƅZED':|ReUsiMʢp٧ʂ՛QV1*uKc҂=PVx6͔m/ pJ u1=eO_QS$LKNݕHfX*Hbr0U}mCL+ۤͭnBBoO*qV vHk/q5sCiƤShunyۘrWuy3ŷxp(E6d̎28 ~0v* *aVX'2N GL(NW0g|\` UhԜq芚&xfѯ=j-ȶ?l 󆌛ئWm9>xBu׬ܺws_>ӫ_Ͼ˟O%ݯ󹕓g 3X*x%` 6م"a `H≺l8!|⋬ pH㍣Ȉ)+c#9IJ6PF)T>YXUF`]dvU"csflTKiet~3KթEPI5瞀&gTjDwYhL6 ^ĩ !2Zά>騤jꩨZJ1u)ե&6 gBT HqtlA.8kRNK,^kϳ٦˗mv!-z6f {R۫|0B80|3p 66&Jkߞ{.Eݼ4ʿ[zh:ۿZC>79Nr=[cPe N;U6-Q\OtCeP=,S %<I}aҟ040ɀ烡'_ ֧|we0ECΠ%1L@'6gGhE,oZbȴK"b4E4QkD[HǷp1)x  ! G#?#X$ HH ;RtXB E%%I > %(FIJ4N_TQ&ɢG=tBj].,.7JR29KZkʤ `n VF^l,ÝaC`,IrSUҹ9)_vrkJz:Q)1*3:O$s'q;tϣӌ$ J}k:7=$SEPӄ_Gl<"iIsR䳍\iXZ*SvR8Vo*e.Syt *Qz3p`!Q 6.`&LMiw-X" ?p6-&>Iz eލeZcXS%|6?N&;PL*[Xβ.{`!c@v̼ d6[̂Q*eca,^pL0I:p.gu!AnY-2sKM4 mMDʚOzkt:]-LհgmzGkG/q #et؄(0$e/ζ'fSζmƲE68n'Xu,ҭlNݻoԱk>] sq1pf I,]8vPk-Z7sogԽl_Q^i/Pby+Tnȸºkrt|ʦ}u%(LYa=/_GKpU%ٹ(vGN"q}4~Ϣ~0{?}z|SS_..w^z%kDO:1=uz&&!c, Bc**ˋc֕/ HA*\ȰÇ#JHŋaȱ㧄C0(SMΜͣw@)Q>@JG#~wO߯mtGgMw}X~b #1荄 Z%$Qȍv ( (b!8.cHc(/򘢍>bDiHI6餒=yރR2Ge]qZnI\ {N1icgPLtigHy\,矀R .;n>H췇21 »z{)9v[ثuO:?QKT~>C5^ HL:0-$Ƽ:[a4J3X 񉫂E!3fB*O>}A 9C=,žgbq&:PHEHӸ"-.^<X1qt;6pH:x̣="~ $>BA.,"t?,R'lH#E;M6%gI/5ܒ"B&P*ķUv{4r$|d.M]FD-]3<&#hf:?$4VNEռ+anzL8IrLhhD*- ^;mrE.n{nw!ʺk!rHm0 tr0{ #L^+1\B!p,r/$Ȱ9):+[ٮkip ,K2[}iB jޢ%5F.kJ^](طaڹhMwI2'N|6.vKv?2ͳfKB)Փ}u'xzÍ+D5Ψ|&ךta`W o'뱃s].ׇVnϤ1z5v/ɿ<SOkRc?=;t?$B{%oK+eۇJֿy+ 5x*P XI]D`$`P8ڦQ`MhUHq`"^l @ H)F<"Qj$Ay"tH#&ʉP ţٍ}ʜHr3)+A]K7Uڣrl3#3;w|4SQA LQH<.q5@I)MEc$J*WV勗x+W-+9&\ъ:V0_3&p,%N@3)1GIP2U}HHs,gNqf ` >ilV+=Q^'B1at8hBFNN woQQ`:w IK:xBP#;iLt0ћ.#itЊF R25O2G9UJGnt$>௾ՙiehUКVmUZ}Uw} [׾ `KMbrہ,P ɮ#!#4Q)$bfYurBJD]PjFmIe?Zё\-7\ޮη䦄%mY62" %#>\*7ܬ,HJʶ_np-׮s sc]MWui[vEb9ƗK- y!AM)dkPe̗9D6%Gy [&̓Hp`F:V1c[&jgxaɩ 9[#2~%ip:}fB  Gtp5t +}B%gй QL"xY!w3A-hĹm(yf`to! 1i2D,4 ,Ie{jT^qǒ@wյtrZZ"U>f;e].Hd4n"NҹTnn7ܿ2owYMޑ^mlhn~4Bq23yGr&3s8,#%)a~$!c,&LcɌӶbb֖c ,f x*\Ȱ)(rHŋ"^Ǐ5K *L\"ʖ0c ")͛Қщʟ){ s(F*R*Fmz(UgOzN]e5lKf՚ⶶZnCvɵǵnށx]]N̸ǐ#K~,_ɘ_&$C<,bѨrTPImqbG6 Cln^SOJxVsm0WІ,9av~48m[R(} ~L vX7ݦ!_$h(,j .ֈOQ>t}=Hۏ`'ZBB+2̓!Uפh_֌?qxd8jeEAj39 fLץnbFd^XzO}&EcddrTWh…ԢVYPNәYKH(qIlzer Yj:v(kN+b ly,r>;Xj,nm,ގknL垫춛OPPlLګ:('#p' 7 N;,q!Nl3^1n ,$l&ʦ˟ ̚Lβ jk<[sD/sH'2tLtL? 5ROmcrտR(ܚ y\cv)oxt7k݌>%`CBwߚPM d2iOr"'yýIHb|J撨zܰV;F‹7o+Os'|8G[sS=w=-/h|/O ?~_&%>#sU܂$p*XgBkT)bAV ;?lNB {! gHڰ%jvN aypu:wBcNRY,hH$ԓCERdi#Rf Af'35RC7!$xE; ,udFNaca@N;4Gdž;rǚ ILJL#It)M@1\GI$+.sKiYV̰,I,Y^Ly!4iZM6nz 8uqDNs♆X'NT멣G&"B(?!MD'(zP}*dLCjm>g13:rBGёʣ&MJO}A ʩT_/ MS^=Oԛ sc\RԦ:PTJU##F]uy]*Jհn(kWJ6Df#=& BEZ3l_ ֮Mb16Aهc#zj3+ x4Vv1x*) i1"u^1MVVC-=TK )eZgKNߺO3nu˸lrŸ\Ìo.gYaFܞSmj ;VcGu({[^u%\(fy1^T/_Ku5K$QSFI#|f@ΰ sGNC'83:a;c櫋!3{6j`s@L"HN&;T0Gq<)鋗1m2˷s[Bq&OWeNӋڜ":;%O\6>IL @ۗ]b[3$VQ8ѐ44m`jdDڐFRd-$tN>\R.UwVY:])6Gfsf\jp)tix|{Y9&h=2NZf!1h<ES)hWlJhE:JTB*bj3* Z B$*Zk6JzmMKf^Ɩm} bkX榫ɩJ8gp\o'l[ ?p b OWg1ffƄ=1Įv𤲆&2)OTB_p?ɍڼ |M;|(Ew32ݴ lx9 w`g%ae| 5_5r6VM6mٍwYݽYjwYgՆ'3DJ UON9|#[R4kR{N癋;zF.;dzEu[u3{{o+|-??/J}_l\mOޓ}O㟏Wwc~??o/,JN!cL:'ȋQYE1 S_4on M(BѢp ɇBUv "vB:ܡ gqBO5LEcC$KԚ8KK H#rh3DǾ+n.ҰċJ1$dtM91# {?L"F:򑐌$'IJZ|4 YNH|ELEd( hF#d٦V֥DTSe'V "#IdHy'_2L*_rDDp&(M24ʌL(̌F5+JpnW$(YLO8Dy3V*OO𳟜'@+Áڰ%@2|D'JъZͨF7юz H)MnKJG *$VD*cM-Ӻl=N'Ը u.iڱtJL3X!c,@c**ïȼڿ Do*Ç31ŋ3jȱǏ CIɓ(*˗TL ͛hɳʞ@)r,NITRHV)VjՇuׯXQK1]ڶp{+ݻ˷悔{ ܫZ ^lTҝȸrc1$#lsOȜGJسi%R,lM47Sk ˂=荅vvva]հb&)]kb+x<@)D9uF&J6NF)RViXf#Zv9 ^ bDdיjy n)tix|矀*蠄j衈u_.蠎>*餔Vji^gvi~zgIjs&Q% zڪ뮼l Y9,fzIlF.ˬ>ylX^n%nkC[:dnD»kȔB+ !p˜[0- Wl1WxMpH[]|7A%q4/̎ɚt ѬZ8#3o5>?[C<'-P˛N2#"l:*W=f8z Տ-]j60]2r#uwy[#}3w Nxn[7? `+5_O.Xy#I,砃$zop~಻z{kOmiZH}/T$gM4co(/``Կ+#|#-P~O_ wX"篮0=?9ҭB*g[`UsNl| WNzі! ,2(+#G,Qxn {KpPb(* C'a=54l(d@ρ^@q"HJnZ,c>Ψ4q[+NjU#D<]p#7 Ƃ@ EFt` Jp4499e$GIRک~T RdAY%,=΃q/ly˻aKLr\21at(s0 2LhBӜ/nz8kNB1 :+bOi "' |*d@Nk;d@vϪ?BsHsӢuٛlEhFGJֽ"eKs\iK_:c)-Rw )Ns*\ͧCRc"ԤFO%Mu*T*JG1E5ծ֍IW!ҫ>Tky(FѺ倔p< ŠWse-Z|5 X*Br,dZVCdyST]/iU53fgLRCzofUlgю nP+\`u kέt{R~׍gv]Y xkf`4oU[Fz%wZ51%$"pΐhNf^۲V@8.߽hmO`&p)*i84J]:A2-%qܨ{H\}A-EObƘ)0X Ǻ1?8,ZAV `7+kՐ_ŪeΕKf/gbq#N9<,sVJzآ<3[8BHi3@ #DtIUytt,Net^1]$:s@?!c,&Ncčضҽ㮷޻cо* #JtGp޳3jvqǏ CIɓ "˗)2͛8ss3+kJr]TUJJM6^Qj꣧rK6g=۷:!ܻxE]D7VۼOB\+^̸ǐ#K֤“?rbsh,^}jk f=X^<{^'t6nI熶{1\\R/o^:ۯܺ!޿=Ϯ=6ϣ63wuϬqBO?},%^& 6 Ob2FXNba:v ~Sax"&#nx"/*኉.2bHJR3(@؟#"D3Izb䑇4YQɓPb%;K:e&Xf9ȗ#db&)ii&5)#!PNm砬D3I袌RG* rh<%u2`:q]]*)FP˫ZD)o; b*zvNbg-HFLb $R[fl͒S+[2nYNϮ ʻc+k,;kmC"ܲ،I6gz Lʦ1WWDZ= >5[Yd?QC1o_g>C\9 }2r %x;aN&`D\B@"4!Jn$m!Cn#D,$*Ll1 qU'*#\F.p 4ZcA 9Ft8:Ҡ Ύ3ރ谸q 2C2c1G>w%/_)(4 6Pr@$+bSYΨԒ+s2$* NĬEa&NUDsdf5#V>iDԢĎpB4\a9 ͤ'dflK0&>} c=(OG>h겄:N |D* B+ F2N^%4(DEH1ES)@6i@?h**{LIZSPY*nHEF)ͪV@qu. OղBOʙAƫle,%VB`}H@b0kq1sQ!̧acXڊ# *l3;%ʇĬZقxmi!vtE`vf p9bڶ!rYN7sOw.~!]uڥ.cwwet{]IV07qvU/wr0Z, SQMC.11o;XܸEεYZ kUðp60\af֊IsUXj\1y[k eհRIacj8:)~<W6Kqo,chVYWrLM*rlM5̄ޛMm><͚<=)~R,BZEьUhr6D١JRaD\"b5V*ASGrҒPu=TR>[ҽ^n_ۣEv"}} Yխt`=M3Kζt;&Fbs\tRԍµ{2~wH-oqᾷл3N,kģÓHȞx%Tq2oSq9ꉟ)N^KZ8mäfo)pޡp빣v;$a{.xy"<œd^ =kzP~쬿R\<2?n[744 yzY+Ev.uJU[y(^nL%;5 =K"ZnnW/!z^xi~>O糊^ՏOqhWqwѾmS9x׾s~_a)`زXǀ7}d3{R!{8Lף-7y q$&x1*lpp-fh1$,X8(748p#:!c, Ncbbĉ $T*tp #J "ŋ>|HbƏ Adȓ(Ӎts+Cm|If6sIΟ@ J跡F*ҧPJJիXjʵׯ`ÊKٳhӪ]˶۷pʝKݻx˷߿;U,#G†#gǐ <8e/ky{?ztOzm_˦F9۸sލ|Gj 8Ç+K$ӳ+1v qNa7y^(`a}b~Y8(,0(4h8<@)FjF5$䓐u6%Y%iɥh^~eWWfjdlpe&) i'az g 蝂 ןh}(v9Z(gIi^Zi_k} ꨤj*]UvEk[݊kVZթ*k쐊y첯lXh>UrEmZ]-VnkURnS9K[pd[Zn0 Ku2&bo$/%/۝6!0KR:lJm"2(.r\njl,;$w2E)k\0,4l8<@}ZB#Dt^H<"Ӫ=Ԝ`ZmN_uBnuz=4ZSv;m:=9 &ZT7tܮ}x7'0}ౄLΩk(P1yhn&筐燈L {l+鸠Xk'дb{!8#"y7wы s}w$?ۏ}؛ }cӧt܏w?r_(o诀qN# ̠7q( 8<(֍!x%LRRXpyz"kϸ!@SAP"eF\X&FcN|Ns8Eg@"-z E]zoA\(Ћi,CI;#.XB"#CA4d-AEkyk$I|$@ħ]{U"1<%)?q?c(;UJ`i \PyK%([KW&+8yJcvЌEfLȚ3G\S#dޖ!3t1um Yyq:~ @JЂMBІhHHx蓮cхh4 YwK*Zz͍K)Ev%iH9yٔH:]i3+!ZivE%c*~P(!c,Occbb**ǧ̊cוۿ A*EmYK(buEخE6>$*&Srʗ0cj̛8sɳϟ@E} Js*]ʔЦPJMtիX1UʵWA[˴ٳhӪ]˶۷pʝKݻx˷;z%XeZĆ#7#I0C2.FEl4gæEaXӰ+ظgr /sdB?Z:vOӫ_Ͼ˟OϿ(h& 6 9(7NhU]a)acn((Bه#jb ߕxQ)r].c G# `w?BHd_M$++!H9h嗙y piFDВxfFwW#^si!w&{R89Oc:NX hG3h9):gʧbN*|ZV*tvg搲ު+:X&쳒8 HKXnl. nk覫+kKHp'l [xj > O`qn, "l2E]2L}6L_:s {B^F'sL7PG-u:N3Z=7Ykאx}Y]=fvvvl@ܧݍwdz R~L߬"wKS'Q;A~۔d0g~x4犵J8Ua7N:A/M{nZǃePV3S٧ГUZK݋<҃(rR23ߏ eicT_d1+Ax0qF.cEK gD 028q KS?j6!Ph 6؏j?aLDhLl& FS4kvs\Ѻ,:Ha$8ƈ1_{D"񈏺C{~$0RCDШ p~N\D2B!h@cq 2P6p)!NECXҖ%T9 Njs%AQK]Ʊ)Th W2cd 5W̥fADIN,ݔH:)iD]0KaB~9& ɪAd1T:MpүrBP]Zr}(HE%OH$WGo".$BD2 J5iO<RZp[Hy?=Ca5'FU9 ?MbB5%[SoUpVd XIGGvjr.D:tB$BQ'z搯^˱ՕqMb[ɤvD6e!`i>z2!XjYg83egYN- ((+Ԧ6s$hvBpc*e۞vmolns;ݪ6ЍtK]؝]@IxzUwӫB|/v_uɠ,MX_D& L`$Xxe0+ aA׾0) ,I ؖp9 Š(N>KG#|*qc,S"._ Y١45̹ ɏr"SE^ܙ)]Yn%DZ\lwdʽ Ci3qϷ7OerdgF$xy =L\W{F{wbؑƐ#+ǖ3kxϐUU ӚRZ4L _˞Mu*׵s[&Zݛb~QhAU|7k7G:_#GH8x?wזky_#<& 6Fx5IhCIv ^X$`0.b46c)3㏕DRE& J6PFioRV#❕\j}֏y]IyG%IfJhe<٭&oTL|'V|R#ҖRE6#}i(: ΦS)(:"y:樔:1kjS)6≫Gv~>kzKh_0 IJ%lB,[<[k]P,'|Z]+ga űPذ7j1 1m~bA<$ MHA±K$$a(I~̤&7I3$z~|mtTT\ĒLS-q4<\/Y%aӔ1de:Ќ4!Q{,|Y;kIܬu"tpbsڔ9r)e~etHNuS(&8i\,䧳 !x tfLg9І:%D%R`L(*ti2(sYU2X"e2TAFz+-)R4J¨S)ԥGMvN=iQQxKըTJժZՂIԫ͞# wUΤ;5 *[VU&dG#azBԼx6<4VWcXÒuNldzP*Zyn1dTjKndm.z%mY@&խs_mnFk P!o͕A䖆Lŝ .k#.u넦+Eی2^sϛE}O+(&*K?r+`_U$ )One cpZ+?\a$p?upY[b񷪧}1Q|O4B s츔Oڏ[%LJT*Z'LKfr~گ"9+33*,ϔRyA}L: ܸeeZwI`eZ;B79,'ețmy$Dn)7]Hk&P/vEj_TVV7ո]eҼWGys1˘kZnv:M=]O8ԩٯtC氢ŋ@EǏ CIɓ(S\ɲ˗0cʜI͛8sɳϟ@[44ѣ0QӒJ>JbԪX.T1֯`u]YrRϪ]+--۷p}ɵ s5uwi߽Q L[ZװcZT˦"LgR74'@9[6p蟪[˾NسsGl['nȓ+_μУKNسkνwU龋Oӫ_Ͼ%.?7ZH(uJ_2aJ_ ($h(,0(4h8<@)^)_yei^ > RNiXf [ZWe} |bih暍p>?q^݉xzݜՂI(w]bhF*餔&d]馜S[i js\&jʪn:[i뮼+k&6F+VkRqyYWm+XΥmܒE[ݞ{Vƛceڋԓ[],0M!*MSM;-RRCUWDu!A5J^}Rb[g]W_ڻE8a2Ėm4['B 4}";Mx%"pGLpۊ$^E/8`Nx.B.hbȹҦ{-n;]߮{{;/_NG/LLN#ݽ#|\L;L7~p8(kowC![WuV "fC{Ӻ>6.܆ѺJ]p AJ'@B6q@!6XXI02 RA5!Qz&DQ!jH&:;6{b2(*L#Vԡ *rq^b.(~l #Y5Pni%G`LụҥG]𫏼Y Aҏ4!_aA.2|$#(IW𰒘̤&7YqRB'ŽQf3#J Bde+7qYjՀ%']Ж &J&"LMLf萹)6|a)ez%6kAmBBf7Ir12!Ҙ5P [/ڙN)d&鋻S# KA*;R|Cwψ:q~lG;ȷv/HGJRbLJE K''CRWtt8B4km$ zBf jՌ*>lrz>©_J(UryL}RiSe$!c,Oc**bĨcŴи׺ǰ*b·ܷKefN?z*Tċ3:7e52(Ɂ?, ˓HœIZJpB f} 氀z-4+ҧPIJիЦbʵׯRamKٯbǞ]˶ۡ ʝ;]7][崯acp5#cJ-%k>VUƘLZa^Ḁcn3mXC-wmvS>{hlɣKNÐ1o#wNӟ 7]yWeo8W-BE_h U6}w7WVxEaa$9`,0(4Z8hn@ ck= i$y&9PtEi%"S^ezYnw]~)&uaifrD>ylp)tWs4J XI})h#x(S8*]·q@)"mzR>j6bjoꑥhk |jĠ+jnz,F+Vk7^-q9 ԈKĘ̪߶.+ L  ' 7-Wlq$i^弻e~\q"CLr2*p.'q4lͲ*8ׂj:1D4{lA=ER3襓[F.Qh9xLqLf5+O]FKf3)D˚2d4ۺ1L_fsu38̒qdd- GN94.i )ui,FrsYFaĦkWz0U-lZb[\@ fqF:f=mMж;hS_݆ҹn\ܑtzۻw5~ ^|?x0hp$x8c!ϸ7qrt>@!c,(Ncc**NJũȂʱФכؠӚߨȼe'<o#ؾV ưa8,^*$IFQ4DZō.[c,dFͫc̟`5/i"x(鯀>o L(QEٔ5[S=ze9eRf_"nZf:b(V2ޞ+nAz+^nP#KLɈ+k$@)5k teiM41Yfڶy=q/Zuꓼ4p6~|ut}6\uȩ]!A{nzr3g*nPHggW{ }Ɍv^z 6xͦ 4X2"$"مC%vۆ4Wl$ n2"m4N͋T,ʍ)䑴$J&PFQVȓVYvi^aiV\dn2&ZWf5&lbȧzZn{'T&bXu3'wgNJx,#s"PziC3***{*_A¨.[9W)`=uC&ֵ pbomޣ^Ŵ-eoLهZfi=svѭɎ跜On☌_Wngi\ʮ3yiom6;:{,j |Ɋaۜ² G ^&n$o 7Ij=-&ߎ:_w~=3fso>Jg?MЀEX<>LOY[AQ CHBE;{NB+0SƩA xXhC4Ja;W]pE"|hFJL D@bY9 ҐFc1etӒFPLQ98h8x̣>}KiBb#%ƱȌ4c\2Ͱ⊑L}2@D|P'9I%#O$8PR`S,)s6r(T,[9Grc M0#_~'gif:,͢[nwqfͪ<& WnQ+zɓzgēRtF0)Jũ1?~ o%7r t +$yzpzA/wʌRmGA= (MJWҖwaK{y.xiSr-%dvxNU.t@E3DtX8$!4['J99Ttr+?NuuU_q6F˺ҳczXM®\zk:jݫ`Kbtfll YHHv". 4iЪvVP-[2hcJͭnw[I-{L*pKMr:ЍtKZt v07r (" .9trMKҏ{}^EwC/~wjNLVVL32i~pҤ*al/[a [;}غ%AŰgL*ei9)]&!FL%3N~*Xβ̞rYhrh%0-3f5Y- |7&kf<:yn|3X59S|)+Zita$ J[4-%JZNzPV >yeD^ytUWVO6N{^ɐs95&59^=l3EhMڎKuQLk&ОӶomosG TKjk[W>'cm\Ǜ =E+O'ף hٲH4Ɂ"P) ޘg4xq+&;KX|~*gyw\pr\昡q.@Vs>1\ym&^ӯ T1,>Zg7:^#+W7{]!XO঻6{œBp&R(b;ܐ3z[y+y|\E.x~Ay. %_Q(o_{DoK$|}~!}G92OQGyԿ_>OaŘCR=3zhpgLh]/177!WY %ԧSGX#z!8XXBhndw$+0 28Q6ꃠV9'`<| =;MփVP8=SdkCeX'+Rh P5XSW(6vVHφQj4_WjH~Y?fHl=COiHk88[o {4H2M9Jh6㶈U$j^TREN}Յ-ES)Xf?8bHGVԇx}GXHCǸA8!c, :ccǡӎʾݠ⼼¿H ;*TehÇBHbA3jNa9IRGb!K\ɲ˗0Ey a˜8s;yRĔ: sLQ[!WӥPC=Z+ͨъ`s5+eBJUk-UZoRj*W_Al^Uw־ƕ71#KL˘3k̹C6ų3yS{, Ԫco-lٸ3n/okM|"mˊ+Ͻ皛;Nճ_7]ËOϫӫ_Xl,>KįFx`@.==(Vhfs eӆuy n&RbD b4)(11h0ި<@)DiH& SpJ6䓵唌0I啇,喀eW%%TjIf^j>fp)gNuv橧uzܞ wJ(Xh}rBD> hw(i?nʩ~*ꨤjꩨꪬ꫰*무j뭸뮼ꫨB_J :,Jkl|֦c^+_ުn)K覫]:FnlVJ_c+%w0eBB,UFqe#;1-%W涖`*m9I.RoDz27zd.n箻h&\C{OC/|G/}jOoOgOz!~?ߏON拃~ݬ6 onwF4*Hh'v,f@,Pv3 uはkƁAi0EQ@DcK W5P{9\(gİp/>Fq~F<"6&:174|bM>(*VF*ʋb,2N KFH?mE.aDZHMx<}㱏m& G2Ap%2Z$66Fn4$AJ򦏪Kd.UNzy 6 Sz1eHy¨ÒeX Wv䓪t.wi/srDXf:3|f'j"OLF4mrsf*)S8':Gu~c<yJ9z3#)RMBІ:D'Jh$!c,Nc̯c׵* oR"vOÇ#JHŋ3jM19IGbJ\ɲ˗0iI&̓)mܹ1$Ȝ< УH\|E>J\ԪXvjTׯɮKٳhӪyN֪e*TKۆݻ!^-1q^ܭS*S<2?.p2ʖ1\l3o;ăQIN}l44{.۸-0mc+Ea߹/>sϓaS8TO<;O~bW3:21h&zf_J Oҍ%RGI T{v6Xv,A!Qx։^8_N¨Xe<@Rc YDdL6I/:A-)Y:d%Erxe,YɃl)Q_Uy,a5f>$眲i'ge|&3nV#^ʊ$(q+T*#饜v駊lրHꩨzjm*k^j+/ު-,*l+kl)'.F+n2~J>jL&+ebF궞=xT 2Io#M  6pj0w b/Hr#*W iϾ P6O+s>,D'Dn4OzҌuVӼ uRJǒuqW;<_wR-v_Tc%Y l wܟM~}|rߨ7.x֍7v `mZ;ll%~w^+{SyJ:t㺮^|+OG8>9/;68x_S񉱾G,*}@W`NQ)/ ke_~'~%/bn~:D?` HRfRt}̟2< !Р?` e Ic8trȤ 0I;a|(D9"S3MkQ"#)~V.z` q1b3e4#`ٍ){mTH6ssGܠ}IBL"F:򑐌$'IJZ̤&7Yr*̄>iQ#;TP)|Pb)ˠв&eYn˘ 0WaL&c<߶8h~5 mns67lNN&yƙEf6LMOШ[ }SK'@)P49(BoB@z.4#!)CEpN(ԆNcVG&^jT><8򶗐R+cHTL,"CIa Me~ԣ;)\)>=Oz LS}x,VU@D-D_UD~++>xiidUbkZUuE^AHjʴhUKBhKHÿhּ4T}!W`vwi)`ϡވpx $Z7&L$а WPq!178#WD2rY<VxcW,̽xmDD9ZhD4l", 7]T=T-zhZ|v"}@̄x"F[ВsB4,N[G*cC6b]qX e`ɸεW"Xeu8Ta낲Ho`j){JXڈ mFն +lkǶ]6p[}cvs7?Z{w̬4۳^k2yлC8j~~3!c,(OccɍΉؒӠ˾UcA}H‡%؊h(jXGTvIZO$R)_rW#=*dIM@ay'4ps ϠPRjѴ6eԯ`Y!WUѱǺ.e5\C*df)6m,殭 _Sm4bBzR ۪lҶL-q֜miAőn:kRylf>=,uPù~[yY[黵6w7:|Pv;ϣ|JGm/dbя'' 7`!7`%> .Z fR-}XՄ(uɉǢ>.f߀a8KL:ڸ9ʈ A3@)}*RB&ΒhdNQr h5%oæ1 n gufBfY㞄ze&菈.裐F*i1Mj)b6]^ωuZʖSC0A/j>魼>U^kZ*XкUVkf-EB(ӷ3;USK>R 5Wu j΋HTҰ e*ȴrGm%ez"Ħ,Qf.n?i"WݢFo,$g2)'kF+ZTxk j:,]j:Y:.[lW-R :l^xx1 w⿦>{Aoۍ8F_kb,0y`A7,b z C\naeG /H2`xũ4 Ud.CC0@bo5rDG ‰x%=Тh7/ %ԸBohD!dFqXǷyEQz9#^V4b$'>R̤&7AIo dl؊O2y +LyJ 10l^YY>!- J2s0wVa<29e.3Ό#)jZ3=js7AIY$b:iqpk '; G&瞢~NtW=j3(л)t]k(*ъZ'(,Bh*3E^-(zbQ MԳ0yj;fCI2K:ۦzzG*d; QÎBSS_Ej*LzT~%7UQcbl)ZkϵW{6x@&~ͪ~V8$NҦW;"Zظ=!Q' d)+*By a ;ZO$g!VYm_ Ar*]m*h X:0 pK1t-gr7Wk67sVV;gZLNׄn5ˈşyϛ5e71+Imv{7U_Gu /lNv6Mzη~`)ɦUgxUwgprzG!j+N??$k9_9B>Ϥ-јpPqHmp=9;lF|1+upEB4w\Q9~R^uUu. М.xyVtHj_;nOgKgMޚ\`|wݧlw'(ߧ&t0?G U|[6H-un =[V2kO>V=6yѪލ(mt g"T+\}/zsOGm0Er}Bsv.7?7O'}y~8fy!DS xz|Xxh)'P^hBf7 i7wZZ ! oVǂ)8"co5xs~& (ncT?*#Ji %Ȁ<@%vrZuZh3' 3dx1yPX"Kdž~a=BƇvXk^&RxhsՈX (3MuQ!c, Pcc**ˌՕϘ߸ Hp׿ LPõHŋ3jȱǏ C (StrL˕0cdr͛+Me͞@RlSѣu"]ʴӧPJJ*HVjuׯKٳhӪ]˶۷pʝKݻx˷߿ LÈ+^̸ǐ#KL˘3k̹ϠCMӨS^ͺװc˞M۸直;K1 rл*~僌7\:I>J읟s'<󊬣_o{J3#f }]'x SV&- 8,UoC_1@UuO~[a:p ~O V݄&Bc"3/.x02Ψ<})ld2C=I92H`gߑ`u%[ieE fT@y li\㥙n:eI̩֝X|矄ji%袌%`) g5NzYVaJifXꪬ[_$⫂ BHҺ&PJ l_D Y&6F+4f~]-_n+k覫[@PJ❰Juo<+޴og J0Y +UoqYMLqU_w ,$l(,0Ǭ ;ʼr%ڌR:D`8I///oR߯ ѷ"PE @T8I T"(R4KAnP`+(SX(L W@{!)' …5rXP!('Nh&}ilΉ%.g Un\7jrŘvDBOn2ނrlctD8q|h7j"% )(.b,#=JZ049IR“%$EHRbєL$'WJVQ4uJ8-Lf(t20֩e*rE/y clEڙ6 t 9|JƫhBmwZt9:iΤDc!c,Oc™̾H*\ȰÇ#JH3bQŎ 3hغ(Sq体*IIř`rOA.q1GdQ6 2tRT֪LN*6d׫eMѪW ¥܃r˷߿vH"&Hq\ ^|$dʘ3kcJL/ohD'MkUӧDFJ5F}"]l{ڻ'ipʽ}J}զ=Ͽ(`%b8h 6s(!V]feu($8 O"O-(cL1hcHx<@9 KBUF&AvԅT#eXse\ZI]]y͖b f9 jɌn)tiP!瞺yP'),9jh, Jbc6j:j)/Iɣ/^o-銞~|Zb&ꈕVjᄴ뮼Z7ӔZ !-(뗟F+m%uJe@}JԷ2J^yH;m& 'fg t+%6Ki x,/f+A_2L`+qA%kg10,4gs c<Oc܄++"}2vR2ԍ:=5ՆZZoi^ sdmX}vYG*)`ur1,m u$7 wMj8{'(3Y@G+n߆+rWw1s/~fɐK3sլ>hNFlx7b =:$ؗ}Y~~OeCI|XzϤIҏ|B5p1z)w@H l Ip/ -(lPp|8! ==1Y"C+1$bc<9c"~$a|c7x'b>bDDp+Šr,p)RH#6I>z -ɍ lF) P̤Nq2d4\Ip$M-[`/}3`L2I2/ΜMXCn[47jqF<7eqJ&SyZg) ճOm @8At4;(lЇQ m( Q}J&܄E/G5aАd(I;JъtQ)L"әڔi;h'PJԢHMRԦ:MPJUCueUZr'^jM*֘K*Zqֵjn\M͹2P]$uBj|E5zcaN(vo(IVl.jwEf?mMjW˗x){-l]+[ɴm9sV--^+\~-r B:t҃ḧ&-wpR> TRo?k=ϒzsJ2m&<?.! t2/|kUa8NڇVplթ#ҏtZK`œ$Yl>qc]zolj%U <42"*W[Wd+| <+ #G`m#_=byƀs۪!Ds!gAϨ4 F/B"I6Ҙۉ3M WB.%Jdv:*.Grh)oLX70-m Vcէ53n%vXqlN [.67mg׭5Rn{9cEW32:s,Ŋ.fœF7~HwpɦS !c,)Nccbœƽbԏ٣گ顪HPu#t#hJDxo":0ZPƏ*&IO$p`L鲦6JaNC4 wm[v]ʴӧPJJիXjʵׯ`ÊKٳhӪ]˶۷p7"]s6/߿ LpVY8 +^Xa5M8U'b^HN~}0XyxO7rFc >.d);Y8Eh)UbT#"`UHЄgӰ) ]zeQj^Y͞dפ3~>fd:,Ʃh jLM!JCMJb"h:.e GkOA~ {^ E = ٪Š{Կk/htmw؏zk@P]Z&HMxc.1QZBc.'ÐiD۫wh3U<.A NE60eK`He`$cQ'.ZѷX+*aAQUCe$6"=#  Ң;>̐T5B@@A%Yl*$SHr(VϵapbC㔰%Uj0+?dYԒy-%˄Q3WUiI:)k 8Irs`<:ש9s!;\MtJ= |s*?y'oeJ@ &) e~PS-gE7юkVK͙NGVԤ#DK[8S/=^Dfƕ2$OÉ=njH)mlLjTJU;ePծzK Vo /L%Cѵ1.Svj=j`N]"\!h95Q( Zb c;vk,{5g+.֔oe\%XX֫k[TknQSW!pRG % QCǐ5t )|&waVqxB"0 q X*~$3'7vr>Vn4CSc!3n L:>πMBЈNWuh0p'/6saio=wj:7(N-IZVN-kP:nn^Y2"aƴv(-de%[MF{;Rq-YKJYqp?R6r &DyMzۻƼ7`Stߖ5"LB7p؄xe-[*q7Ƈ1yuy.5]^"+h.+6?+fٕgL>W`ɃNw#?:>\t`߸{/l+5Rt4cֳu4t]Aw?s33t>ŭ <#̴7n6sxcrdT!lhOk sRQ:Wui,8$.$FMDd`<8ף_ٳ[z1KCi< 潠K?dO~;Kߟ~X꣡ϟgNgmzVq⤀ wV!c, IccƘЊȃ⸾@~+hNÇ4E~MlxGyu1,x!xKo)mm|I&WfY[:{ *ƕ*]ʴӧPJJիbʵ֮`êK쬯fӪ]˶۷pK+v󦝫^~ LÈ+^ P Ɛ>39r5ǖa|2gb=ny0ϢM+ְ+::퀯ocVާkg{kSO7УK0ڬcνՑg\o䭹B}zj?cm~uözgy'& 6F(Vhfv ($h(,0(4h8<@)D>sU`G">]R|IZ9Z^e} ftbyzYYjV!s9ܜr mNکZiHU{٧KgsMPuҹ-Q(V*铑FjREi*Uj֨i餟6Di,ڊ JEkzd 62$=Jd*fv-DmK6d.[ҵ̌Tz.7{o+ȼ&ol #0n5XhJlŠІamWruLr\&V*rli 4ls8& ʸ/mDƦMCI4 oLsJ[uKS?'\u$ܴ+T=I% tmx]Om~oxMTO(;nO=9_wWKS@9#@~ꕰ:J_;pW;%瞏{;m^|Wogw/oWt?ϿŎ; FH,KsѺ cr˻a!p !&< S(.|a60(PP er-q!8`C!ƂF 78%2H|5(EU9tCѩk'kzv񄥛_K- wϿ(KGt NWNhzNU܂ J}x">Ua$ԉbS +C8yB"SHHD>y U)l-gyڠ\h #n*z*+:ꩨZM]Jo&R\ g^*l%i;\2kJl6l"r^fȬvԣBKn覫AReﺙ,ڛo 0l'®&`o +q> kİHls<+,Rǘ6\])ṇ DtҞ ZOOU25U?Awe '+ؿq5T; jK6یL;6,^b-Zg5V]KZݷ;rwKUfr!'ӂG5v:өѭ9'pA㞻Lܮɻ (6/{.γV=d}_ps#q?>ム_x_d5dFnyWT nbqw1_Ah IHl!$9" E*f|]H+Oh) %B!"S%>9 ѨPE$)GBC߈4bCRzƓz<@ PJԢHMRԦ:PTJժftVLeѬ"q^ V[=k Ӫ+1+\"׹ivͫ^j;(LvA^xa/Z𭋍Ha[ˮj6#s#Yo,3-,B+ZͥV  ^m7[O3`5L`45nnܭxŊ\ՊO]@ɔU i{K,z:֮('}/D+ǘFoM"/|+`ϳN;/#L [ΰɛ6mg+;:\~VSvijUȤ rm1b0 JO ,`C^T=<$ko+Ob&[-> aq9 ܗA*i \9f~89fπ B %EY4" ] nf$3}SH)#ȓ(U{R:lIf6Wɳg0>M&2ѣHM4UHPRXa8uj+C!5+˲LضhOXKJJó{U^K^񢷐'&s .3=x{sGӨ rj`^.u5ҳwIpwȓ+_μB/gWZSk]кr8s{ޙ󆿌d~gE^H`x c_t10%8Y]v "\$&63u&57Gi%38ybQ^kM^ 2/BtBi*IN|K*i3ɕ׬G5"?P ¥4^ r L̓lYchdMlj9EzBgrUR;}uVSiMe裴I8Q^Zˤi\v aigI頲Z|"*;MڟMl޾| n$vuC~Z k.O蘘=I>N3KnΌɮ+N.(oύ|>̗~:bKO@gbm͏,ּkطן>upg,,A Ut^`7УAu_: x&ajD8;nX.TJMkW &,3L ClHKa2DlE<| kģ48E)P9(,vv_cŀqp(*Rg t#&fHr70]\vT$R9{$RUXRns&7)jr+d&Iʭc!V@fK2%~` 3"dD)OcΙK&4 <e1(GY-\mHr\j–J^.\D6TPڌg,< *DM;Yz3KX_8i#*śBтh6i̯-UWZ"U{#*>{kcf_55պ^+eW^ڶ.SpbB3^++"w3!cGYimW?BkuX,nF#w&#:q+E.wHŎrC2uHfnwZ$vMz ^bwpΔI|!woHHA^Vx#mNSu`$NAaVF .Yl Kd&,nMb/cҕ3TNi>BIj+D˷8r 3QԎK&CTgr| r}!;E`&pSnsl,^7DgR:^>R 屢F{oǎ4g3/w"y,}Jt\9U35R$󣦔 O45hW,'aH5nI6j]25G-foֲv4ڒMr[>vMzη~[T|Կ$3ms~C3?~8}X*0o :>9OԸCNC&/.M 'y;5O)˜<΁TC4ϐtJu1ԧ~!S=)Vů$g\gn9s4Y7ʮ̰hg{_wB^weO 08=+o]޲ycܕ#<@Woɓ5?@GKe/|8?cmO{f|!z`Ͼe_~]'*Ͽ)?2Q<0fO8mJFdMMx5H6Am|E,ց"XFq/&x7Ȃ!c, Mccbbc¢̛֒ߜؠ H&u *\ȰÇ#JHŋ3jј :Ir1'K\2Rʖ0cR͛_ɳI= GsѣH*]ʴӧPJJիXjjׯ-6lٳ%D{qPMJ[ޅ(YXrWtXc#N,oH3ˆ=MӨS^ͺװc˞M۸sͻ n3ی#_>M9筝CL:unY=Wи>/g?:rл?n¿u?pҟ,߁6FHvVhfᆺᇕP∭h#"a*fbc2H6<@)U*X!rKxdC>$PUZe[bYd bJ#c&RO&akFyGnih! ≉~g!ߡ҇a1 i~'i馜v駠*ꨤjꩨꪬ꫰*무j뭸뮼+k&p,=JMERӥb&n4mXdnEtn$+Ѻk/D+ʿҹaWY.T[g/Xo<1UYhWqm%>-IL)C*3ǽ|3J6sϺ]s;IIt,G+GU^Wvd- |f[`Xm  dP]#|M44zx2~G݇/7.5kKք[k98oe.褗nW~ԗzB{OϮT{hǔW>ҷ;/KH[nd}d|&~Pz. e?b$ } cRpny׎[n_>턜߀A` 6F(Vh0u]agt9ᇔu∌eH(6N@.(4h8#6J=(FAiH&L6PF)售is X4ȕYvɊ^yΖbQ\Jٴ曳 眔Iux枧I},.Hzwr陨_KK//Z{Qn/½<,$YV쬀1|K&8ɭ|r*ٲ/-*27l./3?{,@GH'YKsCJNAգ0JM;uDv=6K{]ڰޫ۰Mw7w%7Tۇxv-ُ'M_#^w{GVj]#>l6\{VC$o(̮#z !jO$ *ъi2ы| e;4>Z}xЌ)ң}th:1-ˑ hBhQ BfEQ wuIL&R(GI1dSq%,#mr%.ѣ]z0ٜUL2Ie 4Ijњ̦6nz gT7iJ`c9oݏ9!Cu8 g1ԙ_y pLO)s"i,=Y Ilcm *E9$^Y(;-FLTJOäK=Cę(輩NiSOu4RԦ#Ne urʨB@R+ʵBR)Uj"USnUk kUzBb-H&y1W\j&Ƥ[* |u_s顽2,&z: dEΫ¬eNoS,0ڐ:P6-meO+Բ6*wT_[V)mCۦ[ڶ pKMr:ЍtK}?nD20Xi >񢰒3o6 >2*;=.γ 켞X#bih5DC`ml~[ 蓒qQ ^U7bVu[iZ;B3^JZ@<ƿDf`xכMKhŴQn&vIǗ[9* 5pL:xγ>y6 Ph&1$ID'Nl ].H3<,M*hr )ZM}zӭaaQtmtcZE!c,)Bcʔ¼щڪջ߆ݿͼGJSx+_>#Jć+ 'jqU\[aHR>Jcȓ0cʜI͛8sɳϟ@.RATPRE]tQAObUի*JI+ׯ` Qزh>-֬Qm ӫwq \J޴+fw,^5]&+(#S"8㍨ň;UI<)DiH&LBbPdTcXa,t# >[R+'4&9fّsF-騧ꬷ.TP {D2bu{Éޕr ]Վ6/COó*/1&bN*`<SU3LHG/Pǎ-L(oc2x@taxCg%b>`&JlD$P(ťySl("IrZIeV Mz%,e4ZFeyx9dy$&8L4IjZܻP§Mx&晶¾dS>Iԙhn+"9 z"ɝ'H[nS2ag?KvĠxħFPNӟR^]ΊZͨF7n ,R tMf+NQe@,K_ SB4_8G:ӜǦ(MOT u5'3@GLZN=TjNݑ2T-Ωu* 9/w6Z{F>$$Z=kjO Fk(j$zM.٫:-|:3+wjֽuG,6En,BKZo(=m`;)Lk#Zˈ6~={!ܖq]oTxԬЍtV#!{CrGfT^~o5oӖ^6KyCn}%.k:[us`!& D`D&q5ܣdٸ06K!1Sc[xYlqO^ c<'4r뚶c  E,oޓ7s+Gxdΐ.ěXo\*˼ܝ8/3k+J/.SNE,7 []3 urt6Nn6Rсc&"hNLr eA# )53$4˖[Z|,1Rr[">HAzf9&W$D͑Tǽ"Qm t06{7()лyf}3./O;{ s؉F 3s38=.(OO"How-tTa~W0ӕA͕4g]#@H瑼rW".廯ys79wm^C( ;~7)׽sgyL.:]7I܅~zE/z2Ʈn;1^L#z/L+?PWSD}l=mvC~>n?/SN6/`n,`!d2|9"(r̠7u GH(L WBM߸ 4,rlz[#)q)QV &kɣb@$#j1VD1hL6pH:_g-=jx|3S'(H7CQ$ 9hM\'+IKL*'IUK#v.ei]B⃕/ GsP"LF(e3IjZK,I^r3O !c,NcǣҐʱܡȾ H*\ȰYJHQ[Ċ3jȱǁ>IRS%S\9d>0c~t)M4o0'ϟ@ J輡F*%rӧPJJ5ܧU2]fUٳhYLR5kʥF__mnV N7m^F{8A6~8Yt`)b͆MӨS^-W1Y6;6m׶gi;2sN<œ]bzCֳWĮνW<ӫ_ϾӚN~6xv_> ~fڢbRp F(,bdᅈkr(-b((ڇb-%"n/֨֊6bf:(cl㐪l$H BcLr& $!V"SXb e5nɥ]ic (ʕe)#pi'#uީ'"Qƹ矀*蠄ThD(y=ʦe6IzkVjBY~ jcꪬ+8ګ|#뭸ũ- R0╨s f ^ೕ1KԶ퍐%Xjzl䦫Dkw1nv>kzzռ*>E.׶$W\pQ s WmFqsrRƢX,ʦ k*6rޱL36޼Iw9L>[4i}"Cц$ML3Q7mU÷tm_Wtdmhf 0nށzLۧ[ڌ<7rviȃtV ^`Ex䘏6/)蠗n:i>I5;nz=old끁^)=B]_ Bxo L w"،eq|B#e|6`0!,!2vP8!B:89B m d<4! 1 HL&:PH*ZX̢.|U<: 0Jр YBa }[cB=3R1.+ٞ(@^ؑW4"@"ru2i1ml9GqhX uW;!EOq*<*%RUܡ+ˠ|srIY*, 0i]ǼM˰ t1CSDSY5mrfQ [ b >%|x6oc'홎y>1(lPJT&(A2,&l9M$f+͚PJ[Y3Oc,SFmDin\2JpZVkD%QTGjՒtMSjJծz?'FJÝfl QHVƵG]7N?-ZS%+p*smcμM$ dCKҚ6u^Sղ6!}Ab+ځ -n:mh;W% WkE2}X+>Jwau;!; F)yVw{/|]ͯ~LN`/+q3:W5rO^p8;^! /X)->Ńd8N2${X;C 6䟠P>ڛY 6pQ)0n$p/[ojًZ3/ĬZg>(!S+e y31 x3˪@!c,(NcǎȤօ̬ǽ׫HI**<@#FL(јÊ31Ŏ C(ɓ(S\ɲ˗0]z͛Xɳϟ@ mWnѣH'MʴiS^h"(թի7*֯`ꕜVhz[YpbTx΍Zw;S(È+^̸c;K+2˘G뛹gK3-3lU^5iְK~vc}ޝkCy grކy͙wNr]kOz]Ëuӫ}JX?g ۼ-v~շg}&x~ `vFՄfv H I0"*(%*Ģ44c8n: buD3dHsdLdPR#QVi%$ ˆ嗛py۴P- M{]"&IT fg8yZgf!@2L"Sڄc{:b,w6dbT$%zR_hTi,eHQ?Hӧ4 袥bB&8'h*ᨴrkPvJhvf2ӯB \ym;X{m-z{ Bn&Zj#=nZfd nX pj;_VqĶ\| h +5"kR1#Ks2ʓr2*Ǖ7#61\4[tе\ 3`K3ݡ$#9P[5f3^ _UvڙP5kvIG:t/y3#-gۋӷߍ{91#Y9s9c7W~-s(?;d| :p {1 JaQ#jŎH!*I+##֣@@/$:Hćoh(iXJ)L ȟC[H$]X ·EvQp X1B ABL) ŧ%}l$p  nd^$̑Sy=vg *-rĤ'VQSh$9Sr4m+uTrP+>̒. ]nh/INc/q1%[{(cL\ 7yz|ጎ&ͩLr錧<@<}=w$ S&뜈[1(5DP(9 hέxh-&J,P=Y(,8*2;%qiFbKcӯQ#3(v:^ϨC:IX P=CHQ\RC$efd+ RvpڑzPXQMWHNEIV_\kFZ4c/sUY3סg'*^w*PĢ3M LQBYjzR@?EgG̩냎U!dG*Yzծf)2 c+\B{֪RmcU[c6(}al;ۿoyn,1PbBӺxëi4ňy!\D _a/Ck귔]{Ҷcw/`HxpH.{ X_+JqV`Q<i}q%cȪ4'q+".P9ˍP1`6->r=0+YEe_2QLO8lv[\Uv2d:SwW~˴g>tmE%EsAGhHLZ·t/MJ^tN3`&qgzIv̦ǕmX[mkzC5u-lv6eL)_91jgZ'b$vkml߳}bktz!7MXtEvݍxNWXe`<39!q͛:MPnuۆoS;;d~wd7Eavs{w=uҘp`zqg(>Gߓ??\Ͽ`Kꏿ?S( C]E"ダbĀowUXk"(XDY%h! )x+-X/-1(0587ƒ|j@ $XHΗ쵄LHBP7.QVX*z\zNb_aX[hl؆n9tpxD560,gE%QqJ20B=X W&~HXI؇} 爏H5H0y8ESi(TB(!c, ?cØ͎ú H*\ȰÇ#RBŋAQȱGF?Iɓ(S\ɲ˗0cʜI͛8sɳϟ@ JѣH*]ʴӧPJJիXjʵׯ`ÊKٳhӪ]˶۷pʝKݻx˷߿ LÈ+^̸ǐkL43_ϒ 4%ҞMNzgR-ۅ8s͛G NKUL>{9^zsT.usN;seyrkz~z髋O~{S~h*"Ƃ 2 F8}-h!QH"ơ`a`!w|v8}&0e5@)57]Mw^E*$^Ln4%P6e^Q^e]]:\a9f[Iy&[Ep)'u␨X9&؏mtHcXc JhgΥh'Y dUN:^ʨb ilŧjםs*무Zhi+Z*k&6вT[Vq+fɵ2emVˎB$ѹ֩C;H,ֻн/l0ӷ 'Eo.% OO %qw ,$l([f,< I2m5LR:s4~ F'3-mRm;MR5[f}oz]5Gbe-Qjpp-tmx|߀.n'7G.Wn܍g&wR\rKy*ꨴ#EʾIӳ湗Ί')薁m̧+^6OX)4 -ogӒ?o)4y>SX?h/ x?:!)pĸ3F'0tV<Ùj!LBҭp%, QCP-.a@ $Da h%2N؋)RVb-J)|] Hf<ӡ5NnDYVC|1euMdyAicF6傎$")RR;d)6QpN$(?*\ӵA'a h OK .`^>(JMhfa&m!B~($WW%L* .H 2L]68 :ؗ@ވbDrbH&L6PfcTVB֐e%Nq䖛"Yfigksҩ!x"})(l9(xy袌6hG[>g wi(#iga*(0f %M'ZzJ#{ z*@RKlV9jN­5+nʨQLˮd@#k!9 ;믒l"?+X>ڰCL ҋHcŎl#,,( [,s47j<ϫ,D}t<+t?9l4*`-6Ep<66 [evzDWՁJuK6:]\-ToR(x+vk=ٓVy$A6羸H xYC^zсzp.[츓{i>\Q.3֦>ɳ>6}6kς}7u|ȽxLS(?oGڧO(Oo#`KPN[@E&$w c2ț0$}*xca iBm!>w#{ Ąw2p= ˀx25 #)jM%# QG ]` #5UQ%:d⑓zDq!C wE'ik mQI\<$ga=CJ&k|*)IF4,IYܒYKCy0H]2s^|wbJx܄5idF0_p"_lI!d>ˌӜh;AMRI':ى|1΀6ŸA9Ѕ:D'JъZͨF7юz HGJR(Y@{Rrml)+aҪibzSYm;L 9'=2nj(|swجTrc,2U"1t*/мo5:(Zch˚MͤFV=#iaڴE@Y!-ة|./L$v/DzmAWjT\x5!Ykֶε]žG L`؏FvCN2f#ήq1#4)ӎOmk)#q oܯ0pnL3!c,)Nc**c*bb҄ǔЙАƼ󄴂g ^"lܾx#rKIL$|N#ȱ!,ѤK_ A6Й9/%VłZ*fMf"$ʔOX6#͒F[Jx\J`-{ѴZmuK|4ޤ˗NLÈ+^̸ǐ#o&˘C9s:M0䙺5ӮR6жU󤝻f>uu_ OμQ˟KNճk}ﶍOӫ_(jEoK//h`DB{)>Op n؋ #&h ,Ȟ(88/DiH&L6TQ9) XX~Wa[css}$vi&cWEi!]콉 yI衈&袌6ꨒ\>*餔Vf Y6d\)YBJ誦fºm:Rk&6F+Vk"Kgv+kNW!n|*2ZѼM_yW(MT)Pp[(/T$0r{b<ٔj/:)ü#5{<NrRq!q`9os0Ph3͆u.܇uBluG;T@K1ژrD %Zx-um{]0~ @ ޷.齷9-`vzlZou6*V$o亣;vЈg;p7SjY!aȟ!W<*+Q_;a׻aKUǢ;Qw9~mV|G6#K︑dx^g>i]P|! A7C#L WҪ} 1  AaCMm~:a%zQ baX4$N~a"P8B&"KCqbpu* Fip#A@9rkux,䑏I+x2 -02\|")ne\%Nz%sL*f%4b<6&Kﭭ.kS/N6E`O$J$M,$̌%2ci)?{fK&3+j 83C<(0)KF>SitֳegyRhsC:1#P0<'MZDB3rt1Jhp(Ҳjx vXRFmlŖ(-;ɢRzȦx49*33EpSnD*'3 H$W1SX5ժ-<#5"oUOՊ洨L-]̰ɯkP&1ba_xUn]s)YWyDUb!DXJ]1uEhDB:f+ӞVXM"j54-+iQLZmna%RgY\Q477EZYۢzq5QtC!z0uK\#%oW:A`x,aIK HeyE,&{v#_qj*"C"| „];b5>، fbqe3^1\;1J%~ ^$6Iq^!dq/GVT;Te(cyPBNG,ˈJl;%~p&y8e&kqsZAr(&u,ЈN4me(ʅk+jFV+%dzXVTm P7R O+fvX$Ʊm͈YkZuv-Nf;ЎMj[؆$ݯms=sH)D>ӨWIuIO·=W&I{ޙuo;<1KFߘnngoCf)%-8@ְ+ܱ@7cކ#7"W򖻼~96Qd¦mdQ9|~/H 7]لt3]h-&?EQi}{^sO$U[W?g Rc~o?F}7~P1c.uw}ԇ -{|!d{t it&!E)"pE)+ x?:,3HÃh=UH- 5@)(5W+;hX=ȁ5rqdJ!LhvAXNnqF^`bhYH:?m)9mi=gm JoȆcqXq47ֆLJXh+U.䈟zWq 801{]؉z艞cX.8qu!c, Ncc**ôʿϤۋɴn'eLȰÇBHŋ3jȱǏ C:)ȓ(S"ɤʗ0cʜIypH\JtOHA*]裤LJԩX֯`qqe5ٳvR{KݻxQ+aH~^1K^L8ɘW͏=kѨݖuէ]Q-ͻNqI~yL̝KNسkνËOӫ_ϾB7-⫟=x\ &8 6 FVfR\v ($h(,0(4h8<@)DiH&L6PF)TVit]ɝri]^f%a^GfeZwibܛmVfI'ygqv矀*B2ӠbRhQe!: =)%̢Pdj Jui4f%ꨮ])Ij kkj9p $̛p zY{5㳻gA+:R9zΞwĂk¶Kk/IFo/]~ Upa-ӀWlq1Ħw.ѩ=kIaA1Xa{24l83qQLtʭ|s2/]N?Qu=]N*+`-6z֜Jji{mJrmT۽zw' xHQ{v7G.gwgw砇oԨfj k'^%zĥ^Ĺ7eɤ tz7?J·ݴCOI}sٽq>qWAϛ?!f HL:'H Z̠7z ax'Lp9DJЁ- H8a0^>f"v"T-*Ӻt#%g&z^ A>H !}J0#A="򑶛$M+|0:YObr,y02 %_P2A%*O!Mt--9_"f'gf:||){r& nM9c$il$Řyzxs lByx3! 9M{z#Xg?NfvӞl(AMHJ"kj>߳B-ʣڨH ҁ9ZVInDY+]iRg03Җu5mVO}:TZi6bhJS\%p~`rگ&x5jm2 btCĞ^; #*f2I+.$Gjelكםq3fedң9<*CCiJL>kdV@́(&HY6Fʜ4y]AnHovrx-qK@ ·1gΜ+]|h3T̍%|"uvL-Wϯɤ8hjyS: 3A{mۡNM͌_ɮIlA{Eh?1ۢ 1gšXFAvSH-Lw2}{^D !c,'Pcֵ̭cМ 'Oy Л#b(Dj/j8i`&CIɓ(SEn˗0"]3oO=6)@|t)"NA4ꥦVZVHXeױh:D4ڷp-ݻew_Ws+{N̸ǐ#KLc0W^QE1ϊLjsI̗Tdz峐,^MY۠CwԪ7>1Ԝ9!-hK)n=rꃬ\;θMx'oOwiGX{AW>gpD 8\mVhfJjw^V5 (_<+ p#}Є2_9^Bc>%Չ="`XP aiFn8kBĊM{ګoV(Yj0/"Lqqd"W&kr-2/Q,Ϭ<@-q]\DOV &MV5dPG%ԐU2HcXVu%؎vhZXg39xv|Grw0m ΩVt [#h+WKVqc{n׹ 8G8ߑ맣.1wKh{渿.m,쎁n B#09wpk՞Ii G/ͪ%V+RrWU"kY_\x}O3!w€_̶Nl&S?.Ep`F }~ / „jqWT ^|%d`pxܙ@ F eDؐ1qlNpà%>Qwt%\⵾0qXSRθ32ɊlK8k~ *o IHwz )CЇ$/P(<&v"5`HHG>'H_R `){aJ %1c-NTFmԡ+YK2K/G"KZP2Hc ׈f:3+)RA3ڂ"Mj~c^䆉~) MGLI rbrS:wB>H83Du ǥΠ8&q">ЕM N(&&3mD.H͖0Ug؄ΘJ 4=l^t'(uVN7J> *p,)ձt}$*6aSѰmz< Wꟶ:^Z+MQ)H:JT9Vyʎ+r챖Vl4/͎&b=kaՑ2r.IvMmAk :Im+"7VE0y2.![\^"I)v=W ],P;Ԃ0%?7"}+_ѷ}yV/8v:ݤǴ;PF x脁n1ӆ^Oh)1>*8*CJfq9f F&9U!8,T&ۑN l(mVUkA,э|ySf>3kŬfN͎z398=ߥϴc0Zm./ǐ2)4p 'ri|Эrh 8;4D7D+.U`5\][Z5(:SGM:n+P;@#^n{߱[U{=:nf}MAnqwIbSQEzHݸ}܊TtU"! g8G,9p0Ze5Ie=qY\ ΋yis盞(qZheѩtOQԎŖ1#:[T׃Xrx [7TC1!]@-z~|ZQ{q,)I='xmv'sO]'pu܉|!`ʳ7|7/my}($lx/V1X- 壓4/e_MZ7!#DΏ~k.P3;{OOf.no0;>Ogݖi~#WZRz6u (%|RѢr`wuLaԀw"X$חG%RGM7G ȧbnj(X"j]qZc;{G%%Xc6hR*}ZIw<1mwTPc"0!KCÅ:V8$V( W`Phb+GpgH&ix+uohquA@p7T,h _Gp< -88XyvqP0n ׉H~gPrz'0vݷʀ{vG‹MgǠŠbdi)!c, PccɟΧ̗ҚݯԑۂܐcM`6'gÇ>(i?3ʣG~.vIrx%}}|t2˗V%Q˙8sɳϟ@ J(>F*] )HPJUrիXQ9ץJlϭ5˶AԺKcXq{Z +a~+^|41ǐ#KL˘3kVuwϛMZZӨ^ְ+Mtڸsͻ NWHΜ)U_]& 6z~VhWpG! ߇!ˈ왨b*۵⋉H#(hc)7݌7ȣB.RH&L6P $ƔQVyTZXSzdVfelp)tʒP+r|B{`FHhh.*iNJ)v馜v駠'c Ij2yj{jj*y8zz+ʺkuʟ7j&6F+Vkfv+k覫+k/Qh^ lCS&p0c?XWl*,|Yo|+OwX<ˇ0 v3R&,:w*D+k\sB{,<=uT Y}֬悖rlbEXf;\ͶnuvfM7Yv߭|[˨5n'7G})A Z.ym5aS曆b^N9qjzs:s`ΞE/{ t<:8NOO=8{/u}I/}95o߉~Gүo_< UVSqTr}+b?B| E{ b{ ᢪ&€d(MSy{!&|L!BvC>DGH"0jFD$$^gMbDA,qR р-rQ73(b8#5pl  ұsch 4# g=a9@US]-5#OAZ̤&7Nz򏓠 (GIRL*WV򕰌,gIKQf/k"-8xJaho)a֐ >f,& e6fɈJ&.IrE4uX0*V/v g%~Nt@9Y!c,Ncc**c̎ڳИ辬,*L%iJH"n4MfQÎ C#ɓ(Ser˗0cʜiQ*8s-&; -rѣH4U7OOJsj|EjkȪ^bZ)#ٰhFMϭlR+w[MfEql%8^Ϭz_ܸr9ɕvZkϠCMt-HT6ͺ56հ`,۸7 S? ٷnvK{i|#ӫoygúɯW~߿?w(HND&D 6xS"FJ>SarFd͆bP h%W*xȉA(c6,rqSx41ӐDh% $NF)TViX`8R-za {m9qkj+s lZ`+ K E`W /on5V[0p uqil#:!)04cqYvs%,D;cd&HLStoKG}Tol5Rv 693ؓl+vz7bw$m^4wߪb&n8,(xZ}M/MgWj zc>禧ꬷ.n{̇nli#Oͯnã 6OϬW_}{}G3_;9?=G?r& xd GX^3yAI @: WBQhа8̡w@ H"bo;bX &0ItbRlUP(oD .Ga8->N0#nFṚƼݐ*}D25ײ;6RI]~ɕ8R*W%C%Ik)dS2Y/P6NL7T^KIbH IRI̥.wG8KRkfE"g&ڎY4F3v1Ḱ鈙.TMAf٠p 2Й uWál,{kūc1YI)ˬiS82e-JJXB6%@ 1FLnO4d,[^;fʕv*'{vMz^d0k{&0č4JsEe[5R 1pbA&4L5 %'ńeQ,ye@"\o.M6dg&&+sF|&;PL*[Xβ.{m_L\ i$^m5#E=~R貺 47zQt| i8xχt:|MWS0.< R`OK9*^zf!c,(@c**ɿÃܬ̝ݷևc*g*, gWċ3rcv/cɓ(z$a\ʜIǎ>&I@ U䐑Ρ|VӧP')JիKbʵ6@z5رh{EvhYFgʝ+.]M*ue3vo.5TVng6,iqd-:c_|5s1Τ39uM u礴RԶ[MU&5񧻁%|;kE󥬽yϫ_<ˇO~3垍ߦZc~^__HfaHm v`$((X+X2Ҙ8h$Q:bEJ$`B<ա!, %+9v`$ɔS~OniVƀIenMz/V1jA\] '$ ILwzgD{¥({:&&nըA w)͸bVէ'1'lMfjЊ뮼j gQZ4,ReBF^RQ^tm=2-`K.cm o+eΫg|/:ool ;opWj6kW4~52"GƝ#^]M\+q`mvОm6誶ńAܨTݶtWBM1G|lsxGW g w砟"eN̢Rzcȍb *ܓ{B^zwH3q.;VKz#l.!y-lM<'?^𺦪p|C="1`WN8yg</, eł*AP/#TX&1p1u$_^X@ Y.v!$q,RUDKTub8O8q_E؟0vQb$5I>l]^+$zkk "Z ^UVF-WYCp;L-#ARELZK隍unsVԙeMMg浟P˳\J`+OUK5O|ˤǾo.p+)p@0JLU5"$| 04u-\`:ׯCl`8ȋƖe? y- Zd*CzV-еGf=Ze0Ce&h>2fl! k+qffh,>ʥk.Bлt=h7ƕe`T^n(髜k5FY$sOgh4HdSm>2 egzrQmQ\f{mrQ*_te B*~y v{^ޘ#Y[ Fõ-P(m4 exip\|W!Rg\Wj񍄼+N>"\,zxwstq=ߒ#Qq#NKPXs qzȠKMIpRt @Wҵ4ƴQ!{.,[[GdquZ|7Nv@5iWzL{8ox[6qٝy3y LfUsЯ/V7ccoCoNqϓ3_o [tW >ߩZtdy6M]} ռN?('? |JrݯUL({y"iqshZ Hk%5@DopXw8N:H.%8]e:'902hf3%"^{Sw閃Ae{C(>hAXwbK 6i:S{"&Z,}q,LxCEUx(tf2DnhthXaj8j3.]Xz3@(VZȃ~8Xx؈8X'GKlh ]zvA$sqdL:DpW;1MyTDhD8 !c,, cĴȢ»c֐ގᑻH_x 0ÇB$3RXEI;YK"\6 y˗0cʜI͛8sԵϟaR ѣEʴӕK{Jj̩xYʕ$Vl+rdӪ^۵p4)݂t./߿ LÈ+^̸ǐ#KLG˘3+ϠsMҨNZְɾM{ڸ۶TN;"O晄K9uK˭_^3 mzO^[O^wAO~}ϿH|xM~ 6y-8tVX (hᆡ`H}X(J(I$!-.b4"3֨#|*F/8~7iH&Ln#ƓO6)e#Q RXre\je]F%S^9&M)`B&gk)%qک|l~rhڞY8͠ [!> )1:i^`6i~ ꨤjꩨIajȪEz_Gk݊+{+k&6F+Vkfv+k覫+k̽,l'Z#*4\ W W~3_#2#  rը|5KQ[,ЬIt]jx4YyQ75uz*Mg եVL{ ؠښvmp-tTvS%d~ނ;`O8.>jFAN9P@36tw4 J^ӻVynk5껛&ė;oGPKR߄}WH~__SiSS:0yoFϿRC;>Āt#XR̠7z GHB  [qq. u4=΂c7!c,Nc**cʆڒb@H"\ȰaC#JHŋ3jȱǏ CIɓ(S\ɲ˗0cʜI͛8sɳϟ@ Jѣl8RP}=M8iԫXjEI?}캵Rjլ[Rhl;ۻVR+])y )+~DܩKVX߈~+O,Hsǃ"s]wpY9Ck9{Yr7.0 M;m߮Ơ'5H[#fȗ<"6.NWdk}`Wos>Y>N볏>V&$,%u2H\y \I?3bMwj I&B(£;y! s"n6DJ sHP&>!LV("HL3&dbN̢(EQH4"Sŋ $1"33׸vųEd|[3уgϷ~D@H"d ֝/K^-Itd,CL_= Q$[ws% 6 V`|&G-l{\EgN0S(/]G^Ŕд)]$ٚ6a 8oY4Stk٬Q̧>Ϟ&G?9 cAPETB3>`9F HtGcV ҇t(Mb~f3vSK](.]LG^l\JˌbU)F"JSvLV8-jJTٔv\-VVWOs֛b}Sw3WLdTFGj[!P)q5_+רw% 1QXI=P<d#أ ylU}W\FQf!ZVi[Y9umT{۽ lnꊲꆸhZ.l$% rL`u*6Wv7^wsoy%S~5M|K_ Z,~õ_v7^pN74׌}ʓ FR|Oa48aJ#Ebb sw*TzE Ok4w1AAG( 1:KSw·3L*[Xβ\,r*2,u83ˡǵذdܛ9k*!c, (Gc**ʘӬb.z7#hPÇ1ŋ&bȱ#.+mC OReǔ.!I"5ɳϟ@ JѣH*]ʴӧPJJիXjʵׯ YObϪ] )-۷p Kݻxn\knQc &,XŦB^̷?˧$c\ȓ9ǦU R--bGiFzLָW=-v(͟kMhAsA;\u眯/C*u÷<.|Gӫ_Ͼ˟O>7wb'ch`sჹMxfv!15-}_̖Kߨh⋘8"G=vr(zEpGE(؝ )Hy!!Q-J"3>)ؕR T%`Ғ%+ea3f%r& "dk ћx2ti~9IʗIBz'Kn٨l>ʎdƉn%)wjjꩨ*J I":NNҌ:;*7֨++l`:Yڣ첉5L^EKϴrk{Zu*6ʊMƖhɤ&پ 1VB/WދܰKV ,nWkpX>WlqkM_\Ҡ<۱OwO$d\RDcf(:rN2 J/T,1E=Eu.{`͌ضr!dr+i=k*kl V7wQ"}l?;صv<=l+B9#x 'F 砫=O>r"X#\̴H;"C7ڸTCTJB!:2E1iAQHQF|,LsÙFThiSdH85%"Aq 5齂UXBTLةBB\ufXkBf85e]GǺ*[kA݊/v}c^+i:xJMbMՏj.3s|d'{;Rv=lzneMgU)'f -:H,[ݽMm@j[+-@P+Uh,+[k2Dbgڬ |.vdeԤwKcNS,:L7&[ˣ{buX̶ }A9>nE~{`[ JOͰ7Or8gA?AE9%QEh[0)U  CcyX Lh{ ,%:7}EF<G}r˷kS@Z Oi./r ]S-[}nr:cޣÿ=X e/R Oi[9i{ޛ K4/U1r>zmr^Noo4kc׏|?<8>uפe _ ۡB&GW-RO_ _~Ug @`wW Tq0F!c, JcbbȺˢշϞ،βڽ *\Ȑaf=lHEq eDǏ 9(h_ȓ(S\ɲ˗0cRAS͛8լϟ@ QH*%sLӥPlTի+ʵkH^Êevٳʢ]6ڶpJ3ZUݻx˷߿ LFt +ԭ /l)L)kddXɛCKxӎH5uekY=eem3̻]whru#_УKNسkνËOӫ_Ͼ˟OϿ(h& 6F(Vhfv ($h(,Ï6Hc.68;ڧ#Ai8Y+J6dKfIN)VNVeW¥bO%*G~ٕ春ךlBfiUɏx>f}j%(r8%JYZҨ 'y)A g$r:R)Z*무j뭸뮼R䩽j# h. ݰ:kVrֺm^E׶}#Ou.ow宷7o[dK"'.wko¡-#FqŃ]q`o/q|L^&TʆL? 3\2l3?:sh YB-VFwZL7PG-TWmn^\w`-dmhGƭ=N/RrDw(ݍWqwb~.n'7G.Wngw砇.褗n騧ꬷ{7m@K7|{|4o|+/?_ vQ_և ߽P~rCKo^."ݝh34"l(;6x6$dk?Xp%`y1PsE0 gHC|5dEpCr!g!PB4")pD%:k{#(HV%.Jɋ"!1f$(5qlH:x̣>S~T Y(7"5@ ) 50=q:s&FXd)ED{$+dZ,enJ^Nfw3 v!c,Nc***bƓσ׬ږ݈ݺbꅴc풶Ἰ몿"kdVeL囖Ç"DFJD.BTnǏ IbTNʗ04ʔcVZPϟfR|tgQZDʴ0LԈSC=j݊J[@%uʵٳhӪ]˶|cKʖv%iǽ&,]p+^̈gEl1ˁ&i9X奮LoGcL9Ұ:~ qWc{6۫F%z񹽁 j\:s D֞zX9pBJǫ_Ͼ˟O[Ͽ?Q߀& Nc vRVʄf%: !$V("Y%0(4h8ZΎ5^_X@({D#w%L*F)7TB9dkaeGUNFhegY)x橧^myv'e(H2&__AbA*) cn`. ͧjFJ uZ<*+k&6F+Vkfv+knʺ.-+!k {%/npN/G, iJV:Zjom%gwjC%dX/ r"*2)Zsx7<b"y э@ErN4l9L3B)uRMւ8QC5U/"dArs lvؼL&.{IWȊg{i;c v̑7"9"#$/mNzC ۽[:>-o뮘 Jw GoO/X'݇/'WC1}(@)?>#^}[X֥2`g-K'PWl!@ ZS2 Hd VYJfP*\ 5ColVBQK!īpf)SDІC`H*Z)-ZXJ4+AUxA8/J%j " 7q\"a/1-7lq?r?y!R=(r0#P I(Jri&72rB(G9@F<%R FE (;DV-X&>.d\&EL2ɰL2Sh|4I%RB,&4Gm.h fўMݼf0Nq*bi;AGGsgٔx>)Pl> :I|5$ %шRhLiƃD0. D )Lw Kҙ8}sr妧%P#ԡFy26N}*i*XͪVծz` XJֲhMZֶZn \jmvW]{+`wҮeK#B2v-|d'*g⌔D6YV-lKw 3q\w•`urݔf7۵Kw1B+fMzYQuo{ۏ)_U@ot)0I;0c`OΖ2,atPÎsA,!>qMb a88;co8[N쁋g^ȒXjrWBca$|=(Uv"s3.CqL=07̺A$F$cy>RD5HD{c(y?^qugURq 'q4^FA oI6VZ[\T̉YVPj}43Y:[һ_CbϷt1x&k*#H dFalc;6al!c,)Pcc**cɂʛɧͭٓҽ琨ܤ HMÇ cy.Fȱ# -Tѣɓ(g,ŏ!)cʜYje;ɳϟ@ JѣV5SAӧP21QvR8aS:XOt~䦯LeJ=KɒڼZ"YU[KUa~ihlOl)眱x\PGw矄2I.(>zv裔2GVi*6'覠rhw*ʞ|ieꫤ ٬VgVC̰ĂsXŲ+Z,qM+j\g-$m{! m@]ƚVMVnɸ(^z hˉF0U~W |x۞yg#X ?%~M(R͌ 3$2Q)\ɘ;3i6s̳qBW-'=)2UQ;=L7m`X_\m`mV]l; ܵMٍؑ^ڀ-Od׊7G ;%.yd#f~5ᜫ7Pn騧q۲RnoJk-E%oȓ`7/o-=[}} ^w/7^{w/m0 x EOeܧ& i-,vgyKdW?\" \,@a1!xP(:ŅqDC M~@a,H0|\ сCW_EqzJ"&H/1+z:s0P׏01&r ib;DkFG˘"VȠ{ !ɑG^B$%#bI=&'ܤ"C'v䍢$)KTj%,1Q ~hc$r\R,,.[RZHB!z*{c2)4-0lR&gKf~#9$S5;oaDr <,KiJcӞH@#ϤDS^$/jT=LX4Hɂڊ(a>"IR$Ti3=KWĴ,OyIC医QS5IgQUekVU]ϲԬB#UC^:X"V5L,蔗e&TL=Zi(L`^b"Ö,b[XL"߃+žB5*)'B%NJXBvgHjBY .*\v# lqbγ }Mb F2yth?ˣF%f6vUu{){WF |kk0%~s}3Pfo ޫlg 'pNC)X >1R9oz1gL3t}I qIiq:i,dǵ/J:q'-y+`4Hѐ4P; ˻cVZ@ɚQeBŹ.WbV6ʬO+-, NVƉkvn[h7KةT[ItJ_o~I"mI}lQS퉷͉u7<{[ ٣η~"$vz:BsN>xDDov{.q9A|3sM.uV6A_\&-bK> s A7}=FR3PԧNu=%٣WzE d^:؅fwOCn.w$ӽOMciJ*m9bS?Ǒ9ެWXq+Zy~0Ng45j1yy4O%z7ӆ|W{ cZ=_[<ޗ {/"k?`_{H6Cg/sl ;N~П4ps=w#"N[ &sztxFX, hY fM* Xf.*hYWHa+`H0!H"U%()rb1QU‚Z႔"ml0)؃9񃲇iEh") 4hTAW շEmgMЁY]P7%v IN({ak#W4OV lHApSBLx|Gmw yHAǃQj̵!}6x01UxJbq׋3C{h'88 |qgɈ˨^RczFKOuZĊ8WIh< Ӹ0݈w0^KTX1!eTWH i*!c, 8c*cʴӼ܋** DdOZ>Olۗ0#PŋtO& \"I(Sڸ#9U9*ʛ8Edy,fZdΣH?zi'PLD E-dҫX tٴcGV zjjֳG*sXAfDK7dlBk$ߺ#}۽o^|dby:˘3k̹Ĉ%4Ө&=Z԰Cnn6mWc;:۷z?P#L:憬wRN{Ҿ}4yOgy{lفWmg`~ h){FX  f Z $h(,0(4֘S6x:H($c<id`E$V@.PF)T&XXN\vee^ϕb~[YgݍpvuN'gltYv֧h袌6裐F*餔Vj饘f馜v駠*ꨤjꩨꪬ꫰*무j뭸뮼+k&6F+VkfvanIn$l_˺GFF.~fo&Iyծپbf' ß41c S̊;U 쮼|,̯>]ƒ8e8[ \3$:=_D|ў!.3-ӎ,kb\wCbbmv#B/}6kHv+ 7zBmv,wu->MhR⊗x>.y$D>g_._暣y-zX>:fꬷ.h# {uEZ;jZcMO7G,%^]=]oVgE}{H柏՞'~G?NHɌN~D( QrΣ#Q̠Erp B(&OF]~wL5W_(Uu (j]8-eW[ eV:3Fa!Ε"$nڋ4: :3֨c"ӣ1#Y?S/E9$1)H%OJUY|%WIF ϗ]RZIffɦRN鎓cig*z9g eqD~&ڊ:Ei;TFzKRu)|"hFhNsj꫰*무j+ax뮦ܦ+rگW&Ȱ*l5쳹J;f9+ajEWpqh4bbRy!TTST0E|ۯ߄2T0z5pJ Bߞ T1n+q3/RI2 2/GX/ϵܬ +eJ=",PG-TWmXg\w`-dmhlnztrMwsߍzwߤ ;Φm"8/]LF~-3)y_1ԓkhʆ^lEkzO:K:ιʰnmoVJx1?i9&&=\%]Uâu)߇o~軒=^?H.?7>ǓPP. p*;`j2H-Bh ;>؍p6& cmh6Rq:9nh 간g!.FDMӌ$.`<`H4*)b*@AiREƤq-XF1m,G̱uI>>w~M IHa "'ch$ xyXrIBr ܤ"e%I$$'UX)rOBR?-1K0,qPSXd.knDb.UFLK;Jsd5ljӖf9jvs(Dd;N;^5)yӕV'Pp,(uP~kICTDf (*KCGv4)T~}LgJӚb-.R6썋n鶈VI13-aֲ3rQجem~-sb:8[TT, @SSu]HKMֽp-2&!c,$Nc**ǖҢ܏c HS*\8H:#JHŋ3jȱǏ ɓH R˗FʄIɑcp#N= ](УHdSxK**իbWO,YJE]=˶۷pl.͙v͋Jo+} #EkbU?U䋄%WT_凗+Faעyή[M13ZoKīU Nȓ+_~M}:8ctqۑYI>!ܰĄX^i~h FS^J5YmnvBc{'UNי_0y.^m7㧎1r ߵL7[ |oGG69#o|/sK%=;ʯOb/j3BBuOǞ濛~x8X@P 8 U d`;@ H|)Ȩ0!șV^X;j#4̡w B_~!M%f4fCGSNWL,#"`wF&% E:L}ܰ$08F[hN>j(ٲ|•$IO1KHNk ,HH,TJȠ,K2%.%byGֱ 7/l3.%sϹrnPi:NItg) Y7uPf&Xr;1CzٌF8ήDTDE-OMd4dFGN~/EIvJcG'RiP2M(FmiӔ"c,=b* VO4U;6 ZYUNԜ'U7շ\TGOMURcXWrO}xͫ^EP5qmN"DBX)m,'76Cp}Reu͒F eCk͒M-p:mN*[rX%n{ަ}[9.rC^΍t;=(á;y$6"h]7^,yqS^Xr…zea2f|Epu~+Aʆv U`x0Lh`˄Yᯥ% fwWۦm"~aIʃKl6 ^ a2\ Ɂ"< %1FO<ˊUru܋73L09Ʃi S4cs |>r_Isuc Ns= ٛüg!u[1հKܑ2 ACw8D?ogt9'E3|hЪ e5N( A]c=@%WDAIox$3<4ld$CYڟ)h+ẕ7~~F'H98IWPR~ ~sS~!c, Mcbbc×χّқtMH*\ȰÇ#VS!ŋ(bȱǏ CRARȓ(A2˗WIA6ssϟzJtТHZ;Se%g>JիXj`ׯKb˪͉6)nE 7UݹxO}oʽa  T-&u8㇋GE~LP+kvU͠6MҨS^ͺװc˞M۸sͻ Nȓ93ΣK$4B_}O^UTӯ}(_/$Ͽ駍BRW*oG`DW0(>z˜Ɇ9 f%#փx)ZLfX,#I8/8K/5$KĴ塌&#(M:a?R$&&Jv\H;cdym˗xȕXP x$"" X(e裐nKOM*O'QJ$Pd)x;9&R>-9Hc Q4.z§sDzWnzx']}O^ .'7G/+7"wZbN;柯ܫMO8߯n5@}LPqPTTiG9 L !oɱ CAhp]ތ0]%4.H"0ėus̰5̡/.f>\̂!QF<"8Do0PH*ZX̢DZ-:\^1h_Ѿ51{#'GB=B~dA<"ȹH!$MI\υ2 Ir=w*)<|JV򕰌,gIZ̥.w^ 0IbL2f,̈́&3Lj:\5Mdv̦8ɝlhmI6R%Z:ʳ3'=ՉA{"c>kO &AaPdF !c,Ncbbc**c̬ͽӠβۯ߳Q'"DpÇs)Ȩ!ŋ3ZѐŎ C,`HjG\ɲ˗0cʜI͛8sɳρ~ JtҪE* ҧPc6U(UQʵȩ^Êvٳˢ]vѭmuݻx˷߿ L+vǏC 1ˆ-cX3|=}W2vM^1׭aF+z۸s=xn%|8q !秊'z̍YԧĞ˫wwSnᄌI__EgvubՆ qϹr*!zy'܄FS`(fv^$hl(u,0(4h8<@) H䑚L6KIJ:)e"QNi!U^:[v`eMIf9$p)WAC^l؜Вu: Wa'PUć(WByʈ~9Ozs0Ս5J)BŦЊ,:u6%r髭zNKʚì*BlZiv-|GNS=HLU׻+PZ.<)ˊ;Su%l$(LP4\% 5qȄU- %ˁ۱4gxŭߗzyp/ć9h'%ƏO R6\hG<̤N"XDYKj"] ;.oz#H:YŖpɰO^x`fAf":eř^4%Рj{db[JTzR%8{i&:Òuї$9zⰝO'@́BuPyc 6TUr'∯0j"֊%Eou4J %GYS-=3meҘnژ)DӞ 6KqR5QYS.5)zSGYHu!UUۑ ?I}(W:i5dlZӴ+I܊ҕ+DC"u1A_KV*;MZؕ0v($c+R$F2Y䯳 hѺ!өi!"ծ6|m*'[-n5>ĕ\9]\p೸Mr[2D}.E+lD"X r8=+^}8/zz+ߠ-~ϡC/m̎Q>` t'LaR!00 s}C WcܽPWyps=+'αgX}{a/6Njc)cq6Mvrbe)V.#ᓇ|-scS0@!c,(Ncc**ȇӚк۸ֿUR"8A/=HbY8i"Ǐ1$#&Sc(I0WIf56s3Ξ@CtLQH*MXP9}uޮjt+Z(9N=uSeR&ڴ;ɾ[s֔KUoawksl^#UyI);82㾍-Z8ef!N,(ϣ#Nr&Mìc˞M۸sͻyNȓ+_μУKNسkνËOӧwmu*q\ Ol|g](_kXρȟ 埂D}QhIj_{l(,FP0&bX+1Ԋ<LC3BB&9ErRH*Q^RRf ˕UZ`Be?`晥f]馗ɗo鉚F)|矠I&jT?"(GuٔPZ)ieFj z '*ɫ:ڪk#ck&*,"knaW9KOB`mVԵAqKx nTҺQ 5b@,cnKRF}K/O‹oiSċ] l pBR w%b,پItVWE[0bsu{ q˭;qE0+8'31K tBF7CDQ*MK27OWb#"RsտeQ_4ؼ=Ie[!ڻ"]{-1ܴ<߀.xt];c.!JcxD 6zNK8㙷4={兲l4aD92FNCd뼌* w!!/WFyu|`oq}&hvg~g/fX$>(_H7 hBd`DAmE%ʠ :x& $(fb` gWNq Lh!PЅ !:P70%tW\,g0g^>aIjMژ;&veXޱq(B "#!dCQ#[䪚0f̤&7Nz!(9Q'cSɢtD\%,SY2P.QTWՋX@Q~Ι1L”z1oqI2 |f^dk󁌛5{Ch B}R̉ %lY'**Oݴ'b8)]aTɎ|̢FC%N<`o E+J6* M?YneORЍ:"YGkNGdꒂ=$Kҗj3 >kt+}8` +# Lvǡ"Ԫ7e1po=; ȊGz Ǯp\݉ 5 VJE,Gp[Y˒jvZgw ڴ*tgKɲ9}-'6TD۔P5H\ao3\9q_ S$Oq9ݴխt7ܰוf]>v-]CM/^"=o|Zu*kEYB;X(~0s* +W0p(i8N~?9.O7:&~rbG,cw7όiSc7@؟ LjN{4+JxPͧFPWIݍH?ȱ/%Hwٸfܛ?fyPsnLY:^*%CKw492K-cRJ8VLGlK3 >]FoO6-9& C9Zm['˕!u9HM_# S c?Pvw $ӏ$?77v^vXl;:Lw8!Dh7a7% yۑ h@xX~zhd0d}nŦNցEZ* 2j9k)i"hihERPKtDFW 3szvr܀+F. f4@VM8HHnRxq1+GhYsW8n/ZWmc-;cmatrix-2.0/matrix.fnt000066400000000000000000000100001344670515400150370ustar00rootroot00000000000000~~~~l|88||8<<<<~~<<<><~~<fffffffff{|`8ll8 |<~~<~<~~< 0``0$ff$88||||88<<<fff$lllllll||| 0`Ɔ8ll8vv000` 000000 0 0f<l8l||||`0||0xv`0v~ x|||~~8ld`````f<ff|bfofff~p0`x |v 08<0`||0`vvffffffv>ccs{ogcc>~>c`0 c>c``<```c>08<63000x?```c>?cccc>c``0 >ccc>cccc>>ccc~```0p0 @p8  @` 0 ! 08,&#! D2"88,# |A` 0xLFb 0󞀀@~ @BDDEDDD@`0`0@` 0^忎d 0bFd$4 `08& } 0@I@` 0~} 0  4d ~p8Oc~@LXP0p، c0ffff?cccccccc>?fff>>cccccck{>0p?fff>6fffg>cc0`cc>ۙ<ccccccccc>f<fff<ҮiIuq|Ey,B~P*YB_b>eY˄lr OԏHﰕ'ԇ]b_<;Kv|41U|r\Gc$d%6Sy|aPF`v"c $vb=p?~mº" ?/ŷT@RE$ -vGĸCۄyY>hOO'oz;O#]GG^g)?˝oC?%8V%'P /x _,ugeU(VZk15рcd~Q/<p!}"5:wjStVkr%(w~U5|Q6Rv(eMx,"qx~{1ն?SEH+#Vf{y^AzefpffjR2YMs!}Iea}k!v6?02YHTA>Il$'/ 0'$)H>rY@m ,zZ*CKGĠ 8Fnsfo6 Ȃw_xl$ej x:XQI'KD666&7Iv?{~݌hivP,ԧ-#Ot.t USICMUp)60!Ωs7ӥHaY/[+1{:yLLLrLJ`tazys{3kvcN̪0$>9[h59_.j&??>;X{}'h@>>>?@??? @>cc{{{;>~~~~6>>><<<<~~<<<<fBBf<xpXL3333<ffff<~ g<<@`px||xp`@<~~<fffffffff>c6cc60c><~~<~<~~<00  $ff$>>>><<<fff$6666666>cC>``ac>Cc0 ca66n;333n 0 0 000000 f<<f~ ~@`0 >ccs{ogcc>~>c`0 c>c``<```c>08<63000x?```c>?cccc>c``0 >ccc>cccc>>ccc~```0 `0  0`~~ 0`0 >cc0>ccc{{{;>6cccccc?fff>ffff?<fCCf<6ffffff6fFFffF<fC{ccf\ccccccccc<<x00000333gff66ffgFfcwkccccccgo{scccc>cccccccc>?fff>>cccccck{>0p?fff>6fffg>cc0`cc>~Zccccccccc>ccccccc6ccccckk66cc66ccfff<<ca0 Cc< <8p`@<00000000<6c 0>333n6ffff>>cc>800<63333n>cc>6&n33333>036nffffg<``p``````ff<f66fg<3mmmmm;ffffff>ccccc>;fffff>n33333>00x;nf>c0c> ? l8333333ncccc6ccckk6c66ccccccc~`03 cpppn;6ccc<fCCf<0`>3333333n0 >cc>60>333n30>333n 0>333n60>333n<ff<0`<6>cc>c>cc> >cc>f<<f< <c6ccccc66ccccc f>fv~;|6333333s6>ccccc>c>ccccc> >ccccc> 3333333n 333333nccccccc~`0c>ccccccc>ccccccccc>~~6&g?f<?ff>Fffffp~ 0>333n0 < >ccccc> 333333nn;;ffffffn;cgo{sccc>ccgo{scc>8x~>c 0`c>cc>6f```~c>0``~cccc>c >ccc>cccc>>ccc?<_q 0 `@0hHAa# ~~D? 4dD Q?3"gLD@ !30X 4D 1# !#2bF g=>`"R? `0`1 Xp`c? :a W}1 Fb&$,0 `@@ ?!q]G pd^% Ry) pa>^% 0`@ 08,& H?xyf>2 1`@ ?f >kI  0`@@ '< 0H\tH? +)hHO1,  8  0`0@` 0`,fGMHx  d4 0 `c>P> '5]3rrqgg 0`@ F""""" 0`@Ld44eE@ #&,8@/9!!31^~"" 0`@@` 00 0(iMF$7w>2fDD (86cccccc~333>3333~3a````a3|63333336|314<4013314<4000x3a``occ3ccccccccc<<fff<s336<<633sx00000013||fff|````|| fff|lfff|`8 |<|f<fff<<ff<< 0`~n;n;6600000766<866666 >>>>>>>~~~~~yy~~|}xwx{{~~||||||||||||||{~~y}}{{  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ $*06<BHNTZ`flrx~ &,28>DJPV\bhntz "(.4:@FLRX^djpv| $*06<BHNTZ`flrx~ &,28>DJPV\bhntz "(.4:@FLRX^djpv|C0000C0001C0002C0003C0004C0005C0006C0007C0008C0009C000aC000bC000cC000dC000eC000fC0010C0011C0012C0013C0014C0015C0016C0017C0018C0019C001aC001bC001cC001dC001eC001fC0020C0021C0022C0023C0024C0025C0026C0027C0028C0029C002aC002bC002cC002dC002eC002fC0030C0031C0032C0033C0034C0035C0036C0037C0038C0039C003aC003bC003cC003dC003eC003fC0040C0041C0042C0043C0044C0045C0046C0047C0048C0049C004aC004bC004cC004dC004eC004fC0050C0051C0052C0053C0054C0055C0056C0057C0058C0059C005aC005bC005cC005dC005eC005fC0060C0061C0062C0063C0064C0065C0066C0067C0068C0069C006aC006bC006cC006dC006eC006fC0070C0071C0072C0073C0074C0075C0076C0077C0078C0079C007aC007bC007cC007dC007eC007fC0080C0081C0082C0083C0084C0085C0086C0087C0088C0089C008aC008bC008cC008dC008eC008fC0090C0091C0092C0093C0094C0095C0096C0097C0098C0099C009aC009bC009cC009dC009eC009fC00a0C00a1C00a2C00a3C00a4C00a5C00a6C00a7C00a8C00a9C00aaC00abC00acC00adC00aeC00afC00b0C00b1C00b2C00b3C00b4C00b5C00b6C00b7C00b8C00b9C00baC00bbC00bcC00bdC00beC00bfC00c0C00c1C00c2C00c3C00c4C00c5C00c6C00c7C00c8C00c9C00caC00cbC00ccC00cdC00ceC00cfC00d0C00d1C00d2C00d3C00d4C00d5C00d6C00d7C00d8C00d9C00daC00dbC00dcC00ddC00deC00dfC00e0C00e1C00e2C00e3C00e4C00e5C00e6C00e7C00e8C00e9C00eaC00ebC00ecC00edC00eeC00efC00f0C00f1C00f2C00f3C00f4C00f5C00f6C00f7C00f8C00f9C00faC00fbC00fcC00fdC00feC00ff     cmatrix-2.0/takeScreenshots000077500000000000000000000052621344670515400161330ustar00rootroot00000000000000#!/bin/bash # Produces a bunch of `cmatrix` screenshots and screencasts. # This script requires X and the following: #apt-get install rxvt byzanz # NOTE We use rxvt, as we can get a screenshot without fuss (scrollbars, menu, ...), # it is fairly simple, # and it supports X fonts (unlike xterm and uxterm). TERM_EMULATOR_BASE="rxvt +sb" CAPTURES_DIR="data/img" # Function to take a single cmatrix screenshot (takes about 3.5s to execute) # or optionally, a screncast of choosable length. function captureCMatrix() { CAPTURE_FILE="$1" CMATRIX_OPTIONS="$2" # If 0 (default if no 3rd param is given), # we make a screenshot instead of a screencast. SCREENCAST_DURATION="${3:-0}" if [ ${SCREENCAST_DURATION} -gt 0 ] then let KILL_DELAY="${SCREENCAST_DURATION} + 1" CAPTURE_FILE="${CAPTURE_FILE}.gif" else KILL_DELAY=3 CAPTURE_FILE="${CAPTURE_FILE}.png" fi WINDOW_TITLE="CMatrix capture ${CAPTURE_FILE}" # NOTE the "-PIPE" prevents output of the "Terminated: ..." message ( cmdpid=$BASHPID; ( sleep ${KILL_DELAY}; kill -PIPE $cmdpid ) & exec ${TERM_EMULATOR_BASE} -name "${WINDOW_TITLE}" -title "${WINDOW_TITLE}" -e bash -c " if [ ${SCREENCAST_DURATION} -gt 0 ] then # Take screencast (animated GIF) # Get this windows X-window-info myXwininfo=\$(xwininfo -name \"${WINDOW_TITLE}\") # Extract location and size read X < <(awk -F: '/Absolute upper-left X/{print \$2}' <<< \"\$myXwininfo\") read Y < <(awk -F: '/Absolute upper-left Y/{print \$2}' <<< \"\$myXwininfo\") read W < <(awk -F: '/Width/{print \$2}' <<< \"\$myXwininfo\") read H < <(awk -F: '/Height/{print \$2}' <<< \"\$myXwininfo\") # Record a screencast as gif byzanz-record -c --delay=0 --duration=${SCREENCAST_DURATION} --x=\$X --y=\$Y --width=\$W --height=\$H "${CAPTURE_FILE}" & else # Take screen-shot (PNG image) # Take screenshot in 2 seconds ( sleep 2 ; xwd -nobdrs -name \"${WINDOW_TITLE}\" -silent | xwdtopnm 2> /dev/null | pnmtopng 2> /dev/null > ${CAPTURE_FILE} ) & fi # Run cmatrix until the process gets killed cmatrix ${CMATRIX_OPTIONS} " ) } CMD_CS="captureCMatrix" CAPTURE_FILE_BASE="${CAPTURES_DIR}/capture_" mkdir -p "${CAPTURES_DIR}" # Capture a screen session ("video"/animated GIF) ${CMD_CS} "${CAPTURE_FILE_BASE}orig" "-xba" "5" ${CMD_CS} "${CAPTURE_FILE_BASE}rainbow" "-xbar" "5" # From here on, we take several screenshots with different arguments. ${CMD_CS} "${CAPTURE_FILE_BASE}default" "" ${CMD_CS} "${CAPTURE_FILE_BASE}bold" "-b" ${CMD_CS} "${CAPTURE_FILE_BASE}bold_font" "-bx" for color in green red blue white yellow cyan magenta black do ${CMD_CS} "${CAPTURE_FILE_BASE}bold_C_${color}" "-b -C ${color}" done ${CMD_CS} "${CAPTURE_FILE_BASE}bold_rainbow" "-b -r"