pax_global_header00006660000000000000000000000064144715367060014527gustar00rootroot0000000000000052 comment=d14d391c91d6fa23dd4d199461d989532675b24d ipe-7.2.28/000077500000000000000000000000001447153670600124045ustar00rootroot00000000000000ipe-7.2.28/.github/000077500000000000000000000000001447153670600137445ustar00rootroot00000000000000ipe-7.2.28/.github/workflows/000077500000000000000000000000001447153670600160015ustar00rootroot00000000000000ipe-7.2.28/.github/workflows/compile.yml000066400000000000000000000026201447153670600201540ustar00rootroot00000000000000name: Build Ipe on: push: paths: - 'src/**' jobs: Build: runs-on: ubuntu-latest env: IPEPREFIX: /usr/local QT_CFLAGS: >- -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/include/x86_64-linux-gnu/qt6/QtWidgets -I/usr/include/x86_64-linux-gnu/qt6/QtGui -I/usr/include/x86_64-linux-gnu/qt6/QtCore -I/usr/include/x86_64-linux-gnu/qt6 QT_LIBS: -lQt6Widgets -lQt6Gui -lQt6Core IPESTRICT: 1 IPEQVORONOI: 1 steps: - name: Check out repository code uses: actions/checkout@v3 - name: Install build tools run: | sudo apt-get install \ qt6-base-dev qt6-base-dev-tools \ liblua5.4-dev libspiro-dev libqhull-r8.0 libqhull-dev - name: Compile run: | cd src make - run: 'echo "Status ${{ job.status }}"' BuildGTK: runs-on: ubuntu-latest env: IPEPREFIX: /usr/local IPESTRICT: 1 IPEQVORONOI: 1 IPEUI: GTK steps: - name: Check out repository code uses: actions/checkout@v3 - name: Install build tools run: | sudo apt-get install \ libgtk2.0-dev \ liblua5.4-dev libspiro-dev libqhull-r8.0 libqhull-dev - name: Compile run: | cd src make - run: 'echo "Status ${{ job.status }}"' ipe-7.2.28/.github/workflows/macos-arm.yml000066400000000000000000000031741447153670600204100ustar00rootroot00000000000000name: Build Ipe on MacOS with ARM processor on: workflow_dispatch jobs: Build: runs-on: macos-latest env: OSXTARGET: -mmacosx-version-min=11.00 -target arm64-apple-macos11 IPECONFIGMAK: macos-manual.mak IPEQVORONOI: 1 steps: - name: Check out repository code uses: actions/checkout@v3 - name: Download dependencies run: | wget https://ipe.otfried.org/osxlibs-arm.tar.gz tar xzf osxlibs-arm.tar.gz - name: Compile run: | export IPEDEPS=`pwd`/osxlibs cd src make -j make app - name: Add dependencies run: | FW1=build/Ipe.app/Contents/Frameworks FW2=build/IpePresenter.app/Contents/Frameworks install -m 0755 osxlibs/lib/libpng16.16.dylib $FW1 install -m 0755 osxlibs/lib/libpng16.16.dylib $FW2 install -m 0755 osxlibs/lib/libpixman-1.0.dylib $FW1 install -m 0755 osxlibs/lib/libpixman-1.0.dylib $FW2 install -m 0755 osxlibs/lib/libfreetype.6.dylib $FW1 install -m 0755 osxlibs/lib/libfreetype.6.dylib $FW2 install -m 0755 osxlibs/lib/libcairo.2.dylib $FW1 install -m 0755 osxlibs/lib/libcairo.2.dylib $FW2 install -m 0755 osxlibs/lib/liblua54.dylib $FW1 - name: Create archive run: | cd build tar czvf ../ipe-mac-arm.tar.gz Ipe.app IpePresenter.app - name: Upload result uses: actions/upload-artifact@v3 with: name: ipe-mac-arm path: ipe-mac-arm.tar.gz retention-days: 2 - run: 'echo "Status ${{ job.status }}"' ipe-7.2.28/.github/workflows/macos-intel.yml000066400000000000000000000032141447153670600207370ustar00rootroot00000000000000name: Build Ipe on MacOS with Intel processor on: workflow_dispatch jobs: Build: runs-on: macos-latest env: OSXTARGET: -mmacosx-version-min=10.10 -target x86_64-apple-macos10.10 IPECONFIGMAK: macos-manual.mak IPEQVORONOI: 1 steps: - name: Check out repository code uses: actions/checkout@v3 - name: Download dependencies run: | wget https://ipe.otfried.org/osxlibs-intel.tar.gz tar xzf osxlibs-intel.tar.gz - name: Compile run: | export IPEDEPS=`pwd`/osxlibs cd src make -j make app - name: Add dependencies run: | FW1=build/Ipe.app/Contents/Frameworks FW2=build/IpePresenter.app/Contents/Frameworks install -m 0755 osxlibs/lib/libpng16.16.dylib $FW1 install -m 0755 osxlibs/lib/libpng16.16.dylib $FW2 install -m 0755 osxlibs/lib/libpixman-1.0.dylib $FW1 install -m 0755 osxlibs/lib/libpixman-1.0.dylib $FW2 install -m 0755 osxlibs/lib/libfreetype.6.dylib $FW1 install -m 0755 osxlibs/lib/libfreetype.6.dylib $FW2 install -m 0755 osxlibs/lib/libcairo.2.dylib $FW1 install -m 0755 osxlibs/lib/libcairo.2.dylib $FW2 install -m 0755 osxlibs/lib/liblua54.dylib $FW1 - name: Create archive run: | cd build tar czvf ../ipe-mac-intel.tar.gz Ipe.app IpePresenter.app - name: Upload result uses: actions/upload-artifact@v3 with: name: ipe-mac-intel path: ipe-mac-intel.tar.gz retention-days: 2 - run: 'echo "Status ${{ job.status }}"' ipe-7.2.28/.github/workflows/macos.yml000066400000000000000000000014531447153670600176310ustar00rootroot00000000000000name: Build Ipe on MacOS with Homebrew on: workflow_dispatch jobs: Build: runs-on: macos-latest env: OSXTARGET: -mmacosx-version-min=12.00 -target arm64-apple-macos12 steps: - name: Check out repository code uses: actions/checkout@v3 - name: Install libraries run: | brew install lua gsl libspiro - name: Pkg-config run: | uname -a pkg-config --cflags --libs lua pkg-config --cflags --libs gsl pkg-config --cflags --libs libspiro pkg-config --cflags --libs libpng pkg-config --cflags --libs cairo pkg-config --cflags --libs freetype2 - name: Compile run: | cd src make make app - run: 'echo "Status ${{ job.status }}"' ipe-7.2.28/.github/workflows/sphinx.yml000066400000000000000000000012041447153670600200320ustar00rootroot00000000000000name: Sphinx build on: push: paths: - 'manual/**' jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Build HTML uses: ammaraskar/sphinx-action@master with: docs-folder: "manual/" build-command: "sphinx-build -M html . ../build" - name: Upload artifacts uses: actions/upload-artifact@v3 with: name: ipe-manual path: build/html/ - name: Deploy uses: peaceiris/actions-gh-pages@v3 if: github.ref == 'refs/heads/master' with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: build/html ipe-7.2.28/.gitignore000066400000000000000000000000371447153670600143740ustar00rootroot00000000000000build/ mingw64/ mingw32/ venv/ ipe-7.2.28/README.md000066400000000000000000000077171447153670600136770ustar00rootroot00000000000000## Ipe extensible drawing editor ### Introduction This is the extensible drawing editor Ipe. Ipe allows you to create figures in PDF format, for inclusion into LaTeX (or plain TeX) documents as well as stand-alone PDF documents, for instance to print transparencies or for on-line presentations. See the [home page](https://ipe.otfried.org/) or the [manual](https://otfried.github.io/ipe/) for an introduction. ### Download Ipe #### Windows A Windows package for Ipe is available on the [home page](https://ipe.otfried.org/). You only need to unpack the archive, and you are ready to run. #### MacOS If you have homebrew, you can install Ipe by saying ``` brew install --cask ipe ``` You can also download the application directly from the [home page](https://ipe.otfried.org/). Open it, drag `Ipe.app` to your computer, and you are ready to run. #### Linux The file "doc/install.txt" explains how to build and install Ipe on Unix. You can also find precompiled packages for some popular Linux distributions on the [home page](https://ipe.otfried.org/). ### Copyright Ipe is copyright (c) 1993-2023 Otfried Cheong Ipe 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. As a special exception, you have permission to link Ipe with the CGAL library and distribute executables, as long as you follow the requirements of the Gnu General Public License in regard to all of the software in the executable aside from CGAL. Ipe 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 Ipe; if not, you can find it at "http://www.gnu.org/copyleft/gpl.html", or write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ### Acknowledgements Ipe uses the Zlib library (www.gzip.org/zlib), the Freetype 2 library (www.freetype.org), the Cairo library (www.cairographics.org), the libspiro library (http://github.com/fontforge/libspiro), as well as some code from Xpdf (www.foolabs.com/xpdf). Ipe contains the Lua 5.4 interpreter (www.lua.org), and relies on Pdflatex for rendering text, either locally on your computer or in a cloud service. ### Reporting bugs Before reporting a bug, check that you have the latest Ipe version, and check that it is not yet mentioned in the FAQ on the [Ipe wiki](https://github.com/otfried/ipe-wiki/wiki). You can report bugs on the [Ipe issue tracker](https://github.com/otfried/ipe/issues). Check the existing reports to see whether your bug has already been reported. Please **include your operating system** (Linux, Windows, MacOS) in your report. Please do not send bug reports directly to me (the first thing I would do with the report is to enter it into the bug tracking system). ### Getting in contact Suggestions for features, or random comments on Ipe can be sent to the Ipe discussion mailing list at . If you have problems installing or using Ipe and cannot find a guru among your real-life friends, the Ipe discussion mailing list would also be the best place to ask. You can send suggestions or comments directly to me by Email, but you should then not expect a reply. I cannot dedicate much time to Ipe, and the little time I have I prefer to put into development. I'm much more likely to get involved in a discussion of desirable features on the mailing list, where anyone interested can participate, rather than by direct Email. If you write interesting ipelets that might be useful to others, please put a link or copy (as you prefer) on the [Ipe wiki](https://github.com/otfried/ipe-wiki/wiki). Feel free to advertise them on the Ipe discussion list! Otfried Cheong ipe-7.2.28/artwork/000077500000000000000000000000001447153670600140755ustar00rootroot00000000000000ipe-7.2.28/artwork/Makefile000066400000000000000000000020531447153670600155350ustar00rootroot00000000000000# # Makefile for building icons # # The Ipe icons are actually produced from ipe_logo.ipe # using iperender at different resolutions. # # We keep the rendered icons in git anyway, so that Ipe can be built # and packaged on machines that do not have Latex installed. # ipelogo = ipe_logo.ipe ICONSET = ipe.iconset IPERENDER ?= iperender GOAL ?= $(ICONSET) $(ICONSET): $(ipelogo) mkdir -p $(ICONSET) $(IPERENDER) -png -resolution 41 -transparent -nocrop $(ipelogo) $(ICONSET)/icon_16x16.png $(IPERENDER) -png -resolution 82 -transparent -nocrop $(ipelogo) $(ICONSET)/icon_32x32.png $(IPERENDER) -png -resolution 162 -transparent -nocrop $(ipelogo) $(ICONSET)/icon_64x64.png $(IPERENDER) -png -resolution 322 -transparent -nocrop $(ipelogo) $(ICONSET)/icon_128x128.png $(IPERENDER) -png -resolution 644 -transparent -nocrop $(ipelogo) $(ICONSET)/icon_256x256.png $(IPERENDER) -png -resolution 1286 -transparent -nocrop $(ipelogo) $(ICONSET)/icon_512x512.png $(IPERENDER) -png -resolution 2570 -transparent -nocrop $(ipelogo) $(ICONSET)/icon_512x512@2x.png ipe-7.2.28/artwork/icons.ipe000066400000000000000000001155601447153670600157170ustar00rootroot00000000000000 15.0793 13.3582 m 9.30054 0 0 9.30054 11 5 6.86469 13.3306 a 1 0 0 1 4 17 e 2 0 0 2 4 17 e 1 0 0 1 4 17 e 2 0 0 2 4 17 e 15 18 m 15 17 l 10 17 l 10 18 l h 14 17.6 m 11 15 l 11 20 l h 1 0 0 1 4 17 e 2 0 0 2 4 17 e 15.0793 13.3582 m 9.30054 0 0 9.30054 11 5 6.86469 13.3306 a 1 0 0 1 4 17 e 2 0 0 2 4 17 e 1 0 0 1 4 17 e 2 0 0 2 4 17 e 8 18 m 8 17 l 12 17 l 12 18 l h 14 17.6 m 11 15 l 11 20 l h 1 0 0 1 4 17 e 2 0 0 2 4 17 e 5.78823 6.96879 m 7.24784 0 0 -7.24784 12.625 9.375 6.50238 13.2538 a 8.82632 15.5476 m 7.24784 0 0 -7.24784 12.625 9.375 14.9831 16.2285 a 1 0 0 1 4 17 e 2 0 0 2 4 17 e 1 0 0 1 4 17 e 2 0 0 2 4 17 e 1 0 0 1 4 17 e 2 0 0 2 4 17 e 14.5761 17.0176 m 7 0 0 7 11 11 17.0236 14.566 a 1 0 0 1 4 17 e 2 0 0 2 4 17 e 1 0 0 1 4 17 e 2 0 0 2 4 17 e 5.05135 7.31034 m 7 0 0 -7 11 11 14.5761 17.0176 a 17.0236 14.566 m 7 0 0 -7 11 11 7.3985 4.99756 a 1 0 0 1 4 17 e 2 0 0 2 4 17 e 1 0 0 1 4 17 e 2 0 0 2 4 17 e 5.34121 15.1204 m 7 0 0 -7 11 11 14.5761 17.0176 a 17.0325 14.5508 m 7 0 0 -7 11 11 15.0768 5.3097 a 11.8923 4.05711 m 7 0 0 -7 11 11 4.03775 11.726 a 1 0 0 1 4 17 e 2 0 0 2 4 17 e 1 0 0 1 4 17 e 2 0 0 2 4 17 e 1 0 0 1 4 17 e 2 0 0 2 4 17 e 10.2779 6.44417 m 5.79907 15.4019 l 11.4472 5.89443 m 16.5528 16.1056 l 8 18 m 8 17 l 12 17 l 12 18 l h 14 17.6 m 11 15 l 11 20 l h 2 0 0 2 11 5 e 2 0 0 2 11 5 e 2 0 0 2 11 5 e 12.002 3 m 4.6582 10.3125 l 3.25195 11.75 l 3.00195 12 l 3.00195 16 l 4.00195 16 l 6.00195 16 l 7.00195 16 l 7.25195 15.75 l 7.62695 15.4062 l 8.31445 14.6875 l 8.68945 14.3438 l 15 8 l 16 7 l 12.002 3 l h 11.4082 5 m 14 7.59375 l 9.7207 11.8438 l 7.1582 9.25 l 11.4082 5 l h 6.43945 9.96875 m 9.0332 12.5625 l 8.31445 13.2812 l 5.7207 10.6875 l 6.00195 10.4062 l 6.43945 9.96875 l h 5.0332 11.375 m 7.62695 13.9688 l 6.9082 14.6875 l 4.31445 12.0938 l 5.0332 11.375 l h 16.498 14 m 16.2364 14.0001 15.5436 14.046 14.4355 14.5625 c 14.0892 14.7241 13.8018 14.907 13.4062 15.125 c 13.1951 15.2414 12.438 15.6193 12.1562 15.75 c 11.3306 16.1332 11.0562 16.2299 10.3438 16.5 c 9.65424 16.7615 8.9106 16.9987 8.40625 17.1875 c 6.28335 17.9823 3 18 3 18 c 3 19 l 3 19 6.32741 19.032 8.75 18.125 c 9.07135 18.0047 9.63148 17.8074 10.1562 17.625 c 10.9633 17.3306 11.8354 16.9683 12.5625 16.6562 c 12.8672 16.5148 13.5734 16.1652 13.873 16 c 14.3133 15.7574 14.6069 15.5783 14.8418 15.4688 c 15.3552 15.1663 15.9252 14.9864 16.498 15 c 16.4532 15.0002 16.6718 15.001 16.873 15.0938 c 17.0743 15.1777 17.2978 15.3273 17.4668 15.4688 c 17.7941 15.8006 17.9314 16.0539 17.998 16.5 c 17.9723 17.182 17.7374 17.3957 17.248 17.7812 c 16.9242 17.9958 16.4683 18.0348 16 18.0039 c 16 18.9727 l 16.7837 18.9747 17.411 18.8183 17.7793 18.625 c 18.616 18.1478 19.0273 17.2886 18.998 16.4688 c 18.993 16.1808 18.9208 15.9437 18.7793 15.625 c 18.6377 15.3064 18.4353 14.9489 18.123 14.6875 c 17.6412 14.2643 17.3994 14.0781 16.498 14 c h 6 4 m 3 4 l 9 19 l 13 19 l 19 4 l 16 4 l 14 9 l 8 9 l h 13.1429 11 m 8.85714 11 l 11 16 l h 9.51444 11.2861 m 4 0 0 -4 11 15 12.4856 11.2861 a 10 15 m 10 2 l 11 2 l 11 15 l h 11.0616 14.9555 m 13.9387 7.04359 l 6.50428 10.906 m 9.49547 15.0937 l 1 0 0 1 5 17 e 2 0 0 2 5 17 e 1 0 0 1 5 17 e 2 0 0 2 5 17 e 1 0 0 1 5 17 e 2 0 0 2 5 17 e 6.67683 15.3232 m 15.2997 6.70025 l 1 0 0 1 5 17 e 2 0 0 2 5 17 e 1 0 0 1 5 17 e 2 0 0 2 5 17 e 3 19 m 3 14 l 8 14 l 8 19 l h 3 19 m 3 14 l 8 14 l 8 19 l h 4 18 m 4 15 l 7 15 l 7 18 l h 2.5 0 0 2.5 6 15.5 e 14 5 m 18 9 l 14 9 m 18 5 l 3 18 m 10 18 l 10 17 l 3 17 l h 3 9 m 10 9 l 10 8 l 3 8 l h 6 6 m 6 5 l 7 5 l 7 6 l h 3 9 m 7 13 l 3 17 l 4.41421 17 l 8.41421 13 l 4.41421 9 l h 6 5 m 6 3 l 7 3 l 7 5 l h 16 14 m 16 7 l 17 7 l 17 14 l h 12 11 m 3 0 0 3 15 11 16.6641 8.50385 a 16.4142 9.58579 l 2 0 0 -2 15 11 13 11 a 13 14 l 12 14 l h 6 6 m 6 5 l 7 5 l 7 6 l h 6 5 m 6 3 l 7 3 l 7 5 l h 17 7 m 4 0 0 -4 13 7 12.3424 3.05442 a 12.5068 4.04082 l 3 0 0 3 13 7 16 7 a h 14.127 3.00385 m 13.5056 3.04153 13.0804 3.43167 12.7813 3.9145 c 12.4549 2.72796 10.1423 2.65374 9.6797 4.33555 c 9.31624 3.94421 8.85222 3.67323 8.26759 3.71474 c 8.24415 3.71474 l 7.17507 3.80837 6.41849 4.74853 6.60157 5.77888 c 7.51368 11.09 l 7.16844 10.8531 6.74929 10.4469 6.44142 10.3126 c 5.72793 10.0011 5.07489 9.96202 4.54883 10.1128 c 3.49673 10.4142 3.18164 11.3995 3.18164 11.3995 c 3 11.9106 l 3.45508 12.222 l 4.45956 12.8827 5.47864 14.4843 6.44142 15.9762 c 6.9228 16.7221 7.4023 17.4273 7.94728 17.9973 c 8.49225 18.5672 9.11018 19.0051 9.94142 19 c 9.9551 19 l 12.2885 18.9988 14.6217 19.0002 16.9551 19 c 17.1368 19 l 17.1602 18.3321 l 17.1602 18.3321 17.2244 17.0916 17.3418 15.6217 c 17.4593 14.1519 17.6413 12.4375 17.8438 11.6443 c 18.9395 7.35734 l 19.2551 6.17955 18.293 5.04646 17.0469 5.13653 c 16.6645 5.15786 16.3267 5.32185 16.043 5.53604 c 16.0645 4.89174 l 16.1359 3.81567 15.2315 2.93433 14.127 3.00385 c h 11.2539 3.71279 m 11.2539 3.71475 l 11.8345 3.6792 12.3929 4.16877 12.416 4.73507 c 12.6914 9.64474 l 12.7069 9.92241 12.8837 9.91904 12.8965 9.66824 c 13.1465 4.73507 l 13.1679 4.21328 13.6369 3.74506 14.1719 3.71279 c 14.7909 3.67369 15.376 4.24365 15.336 4.84669 c 15.0625 10.244 l 15.0543 10.4062 15.1017 10.486 15.1524 10.2891 c 16.0879 6.668 l 16.1946 6.22355 16.6241 5.87156 17.0918 5.84547 c 17.7833 5.79571 18.4076 6.52555 18.2325 7.17913 c 17.1368 11.466 l 16.6969 13.1889 16.475 17.4841 16.4493 17.9973 c 10 18 l 10 18 l 7.88349 17.9786 6.33605 13.2479 3.86524 11.6227 c 3.86524 11.6227 4.75577 9.06706 8.40431 12.6215 c 8.40431 12.6215 8.42991 12.5027 8.47267 12.3336 c 8.44596 12.2471 8.42944 12.1555 8.4258 12.0653 c 7.33204 5.66726 l 7.22919 5.08838 7.71196 4.47629 8.31251 4.42368 c 8.85833 4.38529 9.39622 4.80671 9.47463 5.33433 c 10.2735 9.99921 l 10.3064 10.1917 10.5383 10.1414 10.5235 9.88954 c 10.2285 4.84669 l 10.1916 4.28815 10.6805 3.7467 11.2539 3.71279 c h 3 19 m 3 18 l 16 18 l 16 19 l h 3 16 m 3 15 l 19 15 l 19 16 l h 3 13 m 3 12 l 17 12 l 17 13 l h 3 10 m 3 9 l 18 9 l 18 10 l h 3 7 m 3 6 l 17 6 l 17 7 l h 3 4 m 3 3 l 8 3 l 8 4 l h 5.59596 11.8152 m 9.5 16.5 l 15.9401 13.2799 l 16.4379 11.2255 m 13.5138 7.71657 l 7.01113 9.74443 m 12.0569 7.22154 l 1 0 0 1 5 17 e 2 0 0 2 5 17 e 1 0 0 1 5 17 e 2 0 0 2 5 17 e 1 0 0 1 5 17 e 2 0 0 2 5 17 e 11.0616 14.9555 m 13.9387 7.04359 l 6.97866 8.84282 m 12.9944 6.16914 l 6.50428 10.906 m 9.49547 15.0937 l 1 0 0 1 5 17 e 2 0 0 2 5 17 e 1 0 0 1 5 17 e 2 0 0 2 5 17 e 1 0 0 1 5 17 e 2 0 0 2 5 17 e 7 17 m 17 17 l 17 7 l 16 7 l 16 16 l 7 16 l h 5 15 m 6 15 l 6 6 l 15 6 l 15 5 l 5 5 l h 1 0 0 1 5 17 e 2 0 0 2 5 17 e 1 0 0 1 5 17 e 2 0 0 2 5 17 e 4 18 m 17 18 l 17 7 l 16 7 l 16 17 l 4 17 l h 4 18 m 5 18 l 5 6 l 15 6 l 15 5 l 4 5 l h 1 0 0 1 5 17 e 2 0 0 2 5 17 e 1 0 0 1 5 17 e 2 0 0 2 5 17 e 7.01113 9.74443 m 12.0569 7.22154 l 6.27825 12.0565 m 8.5 16.5 l 14.9881 13.256 l 14.1955 7.8911 m 15.8313 11.1625 l 1 0 0 1 5 17 e 2 0 0 2 5 17 e 1 0 0 1 5 17 e 2 0 0 2 5 17 e 1 0 0 1 5 17 e 2 0 0 2 5 17 e 18.5 12 m 16 15 l 21 15 l h 15 18 m 4 0 0 -4 15 14 19 14 a 18 14 l 3 0 0 3 15 14 15 17 a h 18.5 12 m 16 15 l 21 15 l h 15 18 m 4 0 0 -4 15 14 19 14 a 18 14 l 3 0 0 3 15 14 15 17 a h 10.6863 12 m 4 12 l 4 18 l 11 18 l 11 12.3137 l h 8.92893 8.82843 m 13.1716 13.0711 l 18.1213 8.12132 l 13.8787 3.87868 l h 3 11 m 3 19 l 12 19 l 12 13.3137 l 13.1716 14.4853 l 19.5355 8.12132 l 13.8787 2.46446 l 7.51472 8.82843 l 9.68629 11 l h 7 3 m 10.9004 7.6992 l 17 8 l 7 16 l h 1 0 0 1 6 18 e 8.85 8 m 10.5 13.5 l 12 13.5 l 12 19 l 3 19 l 3 8 l h 4 18 m 4 9 l 9.15 9 l 10.5 13.5 l 11 13.5 l 11 18 l h 11 13 m 8 3 l 16 3 l 19 13 l h 18.5 12 m 16 15 l 21 15 l h 8 18 m 8 15 l 9 15 l 9 18 l h 8 19 m 8 17 l 9 17 l 9 18 l 13 18 l 13 17 l 14 17 l 14 19 l 8 19 l 4 16 m 4 15 l 18 15 l 18 16 l 4 16 l 6 14 m 6 3 l 16 3 l 16 14 l 15 14 l 15 4 l 7 4 l 7 14 l 6 14 l 6.78686 8.52022 10.5582 14.4623 3.6733 13.9361 8.60676 20.7333 17.1362 14.3527 15.8206 5.07776 5.95365 4.2007 u 5.5 5.5 m 8.84503 19.2007 13.2816 1.45424 16.5 16.5 c 16 6 m 12 6 l 16 10 l h 3 19 m 3 12 l 8 12 l 8 14 l 10 14 l 10 19 l h 4 18 m 4 13 l 7 13 l 7 15 l 9 15 l 9 18 l h 7 15 m 7 3 l 19 3 l 19 15 l h 8 14 m 8 4 l 18 4 l 18 14 l h 5.14643 16.1464 m 14.0858 7.20711 l 14.7929 7.91421 l 5.85357 16.8536 l h 11 3 m 9 7 l 13 7 l 11 3 l h 7 9 m 3 11 l 7 13 l 7 9 l h 15 9 m 15 13 l 19 11 l 15 9 l h 11 10 m 10.446 10 10 10.446 10 11 c 10 11.554 10.446 12 11 12 c 11.554 12 12 11.554 12 11 c 12 10.446 11.554 10 11 10 c h 9 15 m 11 19 l 13 15 l 9 15 l h 3.5 9.5 m 6.25061 12.9383 l 8.56 12.804 m 12.5 6.5 l 18.5 10.5 l 2 0 0 2 7.5 14.5 e 1 0 0 1 7.5 14.5 e 2 0 0 2 10.5 11.5 e 1 0 0 1 10.5 11.5 e 8 0 0 8 10.5 11.5 e 7 0 0 7 10.5 11.5 e 12.9142 9.08579 m 15.5 6.5 l 19.5 8.5 l 3.5 11.5 m 6.5 15.5 l 10.0858 11.9142 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 2 0 0 2 10.5 11.5 e 1 0 0 1 10.5 11.5 e 3.5 14.5 m 9.71115 11.3944 l 18.5 17.5 m 12.9142 11.9142 l 19.5 6.5 m 13.2889 9.60557 l 5.5 4.5 m 10.0858 9.08579 l 2 0 0 2 10.5 11.5 e 1 0 0 1 10.5 11.5 e 2.5 16.5 m 18.5 16.5 l 2.5 4.5 m 18.5 4.5 l 4.5 19.5 m 4.5 1.5 l 16.5 19.5 m 16.5 1.5 l 2.5 10.5 m 8.5 10.5 l 10.5 19.5 m 10.5 12.5 l 18.5 10.5 m 12.5 10.5 l 10.5 1.5 m 10.5 8.5 l 2 0 0 2 10.5 11.5 e 1 0 0 1 10.5 11.5 e 2.5 9.5 m 19.5 9.5 l 2.5 9.5 m 19.5 9.5 l 5.5 4.30385 m 10.4163 12.8191 l 14 19.0263 m 12.4139 16.279 l 2 0 0 2 10.5 11.5 e 1 0 0 1 10.5 11.5 e 19.5 9.5 m 16.5 11.5 l 16.5 7.5 l h 2.5 10.5 m 8.5 10.5 l 6.5 18.5 m 9.60557 12.2889 l 14.5 18.5 m 11.3944 12.2889 l 18.5 10.5 m 12.5 10.5 l 14.5 2.5 m 11.3944 8.71115 l 6.5 2.5 m 9.60557 8.71115 l 2 0 0 2 10.5 11.5 e 1 0 0 1 10.5 11.5 e 15.5 12.5 m 15.5 4.5 l 6.5 4.5 l 6.5 7.5 l 11.5 7.5 l 11.5 11.5 l 4.5 11.5 l 4.5 17.5 l 2 0 0 2 10.5 11.5 e 1 0 0 1 10.5 11.5 e 3 3 m 3 17 l 7 17 l 7 19 l 17 19 l 17 10 l 13 6 l 12 6 l 9 3 l 3 3 l h 4 4 m 8 4 l 8 6 l 7 6 l 7 16 l 4 16 l 4 4 l h 8 7 m 12 7 l 12 11 l 16 11 l 16 18 l 8 18 l 8 7 l h 7.01172 3 m 6.43437 4 6.13359 4 6.71094 5 c 10.252 11.1406 l 8.19336 14.668 l 7.7481 14.2565 7.15686 14 6.5 14 c 5.115 14 4 15.115 4 16.5 c 4 17.885 5.115 19 6.5 19 c 7.885 19 9 17.885 9 16.5 c 9 16.3329 8.98215 16.1695 8.95117 16.0117 c 10.1133 13.998 l 10.8937 13.997 10.9921 13.2234 11.4473 13.2129 c 13.0508 15.9941 l 13.0176 16.1572 13 16.3269 13 16.5 c 13 17.885 14.115 19 15.5 19 c 16.885 19 18 17.885 18 16.5 c 18 15.115 16.885 14 15.5 14 c 14.8467 14 14.2589 14.2546 13.8145 14.6621 c 11.7598 11.1406 l 15.3008 5 l 15.8781 4 15.5774 4 15 3 c 11.0059 9.84766 l 7.01172 3 l 11 11 m 11.277 11 11.5 11.223 11.5 11.5 c 11.5 11.777 11.277 12 11 12 c 10.723 12 10.5 11.777 10.5 11.5 c 10.5 11.223 10.723 11 11 11 c h 6.5 15 m 7.331 15 8 15.669 8 16.5 c 8 17.331 7.331 18 6.5 18 c 5.669 18 5 17.331 5 16.5 c 5 15.669 5.669 15 6.5 15 c 15.5 15 m 16.331 15 17 15.669 17 16.5 c 17 17.331 16.331 18 15.5 18 c 14.669 18 14 17.331 14 16.5 c 14 15.669 14.669 15 15.5 15 c 4 3 m 4 10 l 5 10 l 5 4 l 13 4 l 13 8 l 17 8 l 17 10 l 18 10 l 18 7 l 18 6.99219 l 14.0078 3 l 14 3.00977 l 14 3 l h 3.00001 11 m 19 11 l 19 12 l 3 12 l h 4.00001 13 m 5 13.0001 l 4.99999 19 l 4 18.9999 l h 6.00002 13 m 7.00001 13.0001 l 7 19 l 6.00001 18.9999 l h 8.00002 13 m 9.00001 13.0001 l 9 19 l 8.00001 18.9999 l h 10 13 m 11 13.0001 l 11 19 l 10 18.9999 l h 12 13 m 13 13.0001 l 13 19 l 12 18.9999 l h 14 13 m 15 13.0001 l 15 19 l 14 18.9999 l h 16 13 m 17 13.0001 l 17 19 l 16 18.9999 l h 3 19 m 3 18 l 3 15 l 4 15 l 4 18 l 7 18 l 7 19 l 4 19 l 3 19 l h 11 19 m 9 17 l 13 17 l 11 19 l h 15 19 m 15 18 l 18 18 l 18 15 l 19 15 l 19 18 l 19 19 l 18 19 l 15 19 l h 5 13 m 3 11 l 5 9 l 5 13 l h 17 13 m 17 9 l 19 11 l 17 13 l h 3 7 m 3 4 l 3 3 l 7 3 l 7 4 l 4 4 l 4 7 l 3 7 l h 18 7 m 18 4 l 15 4 l 15 3 l 19 3 l 19 4 l 19 7 l 18 7 l h 9 5 m 11 3 l 13 5 l 9 5 l h 6 4 m 3 4 l 9 19 l 13 19 l 19 4 l 16 4 l 14 9 l 8 9 l h 13.1429 11 m 8.85714 11 l 11 16 l h 5.5 5.5 m 8.84503 19.2007 13.2816 1.45424 16.5 16.5 c 3 3 m 3 4 l 3 7 l 4 7 l 4 4 l 7 4 l 7 3 l 4 3 l 3 3 l h 11 3 m 9 5 l 13 5 l 11 3 l h 15 3 m 15 4 l 18 4 l 18 7 l 19 7 l 19 4 l 19 3 l 18 3 l 15 3 l h 6 6 m 6 16 l 16 16 l 16 6 l 6 6 l h 7 7 m 15 7 l 15 15 l 7 15 l 7 7 l h 5 9 m 3 11 l 5 13 l 5 9 l h 17 9 m 17 13 l 19 11 l 17 9 l h 3 15 m 3 18 l 3 19 l 7 19 l 7 18 l 4 18 l 4 15 l 3 15 l h 18 15 m 18 18 l 15 18 l 15 19 l 19 19 l 19 18 l 19 15 l 18 15 l h 9 17 m 11 19 l 13 17 l 9 17 l h 5 13 m 3 11 l 5 9 l 5 13 l h 17 13 m 17 9 l 19 11 l 17 13 l h 4 15 m 4 19 l 3 19 l 3 15 l h 18 15 m 18 19 l 19 19 l 19 15 l h 18 7 m 18 3 l 19 3 l 19 7 l h 4 7 m 4 3 l 3 3 l 3 7 l h 6 16 m 6 6 l 16 6 l 16 16 l 6 16 l h 7 15 m 15 15 l 15 7 l 7 7 l 7 15 l h 4 4 m 4 20 l 20 20 l 20 4 l 4 4 l h 5 5 m 7 5 l 7 7 l 5 7 l 5 5 l h 8 5 m 10 5 l 10 7 l 8 7 l 8 5 l h 11 5 m 13 5 l 13 7 l 11 7 l 11 5 l h 14 5 m 16 5 l 16 7 l 14 7 l 14 5 l h 17 5 m 19 5 l 19 7 l 17 7 l 17 5 l h 5 8 m 7 8 l 7 10 l 5 10 l 5 8 l h 8 8 m 10 8 l 10 10 l 8 10 l 8 8 l h 11 8 m 13 8 l 13 10 l 11 10 l 11 8 l h 14 8 m 16 8 l 16 10 l 14 10 l 14 8 l h 17 8 m 19 8 l 19 10 l 17 10 l 17 8 l h 5 11 m 7 11 l 7 13 l 5 13 l 5 11 l h 8 11 m 10 11 l 10 13 l 8 13 l 8 11 l h 11 11 m 13 11 l 13 13 l 11 13 l 11 11 l h 14 11 m 16 11 l 16 13 l 14 13 l 14 11 l h 17 11 m 19 11 l 19 13 l 17 13 l 17 11 l h 5 14 m 7 14 l 7 16 l 5 16 l 5 14 l h 8 14 m 10 14 l 10 16 l 8 16 l 8 14 l h 11 14 m 13 14 l 13 16 l 11 16 l 11 14 l h 14 14 m 16 14 l 16 16 l 14 16 l 14 14 l h 17 14 m 19 14 l 19 16 l 17 16 l 17 14 l h 5 17 m 7 17 l 7 19 l 5 19 l 5 17 l h 8 17 m 10 17 l 10 19 l 8 19 l 8 17 l h 11 17 m 13 17 l 13 19 l 11 19 l 11 17 l h 14 17 m 16 17 l 16 19 l 14 19 l 14 17 l h 17 17 m 19 17 l 19 19 l 17 19 l 17 17 l h 2 6 m 2 15 l 5 19 l 5 15 l 20 15 l 20 6 l h 3 7 m 19 7 l 19 14 l 3 14 l h 4 8 m 4 9 l 5 9 l 5 8 l h 6 8 m 6 9 l 7 9 l 7 8 l h 8 8 m 8 9 l 9 9 l 9 8 l h 10 8 m 10 9 l 11 9 l 11 8 l h 12 8 m 12 9 l 13 9 l 13 8 l h 14 8 m 14 9 l 15 9 l 15 8 l h 16 8 m 16 9 l 18 9 l 18 8 l h 4 10 m 4 11 l 6 11 l 6 10 l h 7 10 m 7 11 l 8 11 l 8 10 l h 9 10 m 9 11 l 10 11 l 10 10 l h 11 10 m 11 11 l 12 11 l 12 10 l h 13 10 m 13 11 l 14 11 l 14 10 l h 15 10 m 15 11 l 18 11 l 18 10 l h 4 12 m 4 13 l 6 13 l 6 12 l h 7 12 m 7 13 l 15 13 l 15 12 l h 16 12 m 16 13 l 18 13 l 18 12 l h 7 3 m 7 5 l 5 5 l 4 5 l 4 19 l 5 19 l 18 19 l 18 18 l 18 5 l 17 5 l 15 5 l 15 3 l 7 3 l h 5 6 m 6 6 l 6 8 l 16 8 l 16 6 l 17 6 l 17 18 l 5 18 l 5 6 l h 7 9 m 7 10 l 15 10 l 15 9 l 7 9 l h 7 12 m 7 13 l 13 13 l 13 12 l 7 12 l h 7 15 m 7 16 l 10 16 l 10 15 l 7 15 l h 3 3 m 3 3.99787 l 19 3.99787 l 19 3 l h 3 5.9974 m 3 8.00071 l 19 8.00071 l 19 5.9974 l h 3 10.0002 m 3 13.0014 l 19 13.0014 l 19 10.0002 l h 3 15.0009 m 3 19 l 19 19 l 19 15.0009 l h 13.6992 3 m 12.9922 3.70703 l 15.2852 6 l 13 6 l 11.9922 6 l 11.5 6 l 7.899 6 5 8.899 5 12.5 c 5 16.101 7.899 19 11.5 19 c 13 19 l 13 18 l 11.5 18 l 8.453 18 6 15.547 6 12.5 c 6 9.453 8.453 7 11.5 7 c 11.9922 7 l 13 7 l 15.2852 7 l 12.9922 9.29297 l 13.6992 10 l 16.9922 6.70703 l 17.1992 6.5 l 16.9922 6.29297 l 13.6992 3 l 4.65634 8.93477 m 1.35798 0 0 1.35798 6.01396 8.90385 6.01396 7.54587 a 16.6577 7.54623 l 1.35762 0 0 1.35762 16.6577 8.90385 18.0154 8.90385 a 18.0154 14.2257 l 1.35762 0 0 1.35762 16.6577 14.2257 16.6577 15.5834 a 6.01396 15.5834 l 1.35762 0 0 1.35762 6.01396 14.2257 4.65634 14.2257 a 4.65634 8.90385 l 6.35483 12.648 m 8.15977 14.5557 l 9.96471 12.648 l 9.44117 12.1526 l 8.53445 13.111 l 8.52663 9.82896 l 7.79291 9.82896 l 7.7851 13.111 l 6.87837 12.1526 l h 11 3 m 15.432 3 19 6.568 19 11 c 19 12.442 18.617 13.79 17.955 14.955 c 17.217 14.217 l 6.985 0 0 -6.985 11.015 11.0037 18 11 a 18 7.122 14.878 4 11 4 c 6.985 0 0 -6.985 10.9963 10.985 7.783 4.783 a 7.045 4.045 l 7.982 0 0 7.982 10.9935 10.982 11 3 a 4.045 7.045 m 4.783 7.783 l 6.985 0 0 -6.985 10.985 10.9963 4 11 a 4 14.878 7.122 18 11 18 c 6.985 0 0 -6.985 11.0037 11.015 14.217 17.217 a 14.955 17.955 l 7.982 0 0 7.982 11.0065 11.018 11 19 a 6.568 19 3 15.432 3 11 c 3 9.558 3.383 8.21 4.045 7.045 c 7.5 9.998 m 14.5 9.998 l 14.5 11.998 l 7.5 11.998 l h 8.30078 3 m 5.00781 6.29297 l 4.80078 6.5 l 5.00781 6.70703 l 8.30078 10 l 9.00781 9.29297 l 6.71484 7 l 9 7 l 10.0078 7 l 10.5 7 l 13.547 7 16 9.453 16 12.5 c 16 15.547 13.547 18 10.5 18 c 9 18 l 9 19 l 10.5 19 l 14.101 19 17 16.101 17 12.5 c 17 8.899 14.101 6 10.5 6 c 10.0078 6 l 9 6 l 6.71484 6 l 9.00781 3.70703 l 8.30078 3 l 3 3 m 3 5 l 4 5 l 4 4 l 5 4 l 5 3 l 3 3 l h 8 3 m 8 4 l 10 4 l 10 3 l 8 3 l h 12 3 m 12 4 l 14 4 l 14 3 l 12 3 l h 17 3 m 17 4 l 18 4 l 18 5 l 19 5 l 19 3 l 17 3 l h 11 7 m 11 8 l 13.293 8 l 10 11.293 l 10.707 12 l 14 8.70703 l 14 11 l 15 11 l 15 7 l 14 7 l 11 7 l h 3 8 m 3 10 l 4 10 l 4 8 l 3 8 l h 18 8 m 18 10 l 19 10 l 19 8 l 18 8 l h 18 12 m 18 14 l 19 14 l 19 12 l 18 12 l h 3 13 m 3 19 l 9 19 l 9 13 l 3 13 l h 4 14 m 8 14 l 8 18 l 4 18 l 4 14 l h 18 17 m 18 18 l 17 18 l 17 19 l 19 19 l 19 17 l 18 17 l h 3 3 m 3 10 l 4 10 l 4 4 l 18 4 l 18 18 l 12 18 l 12 19 l 19 19 l 19 18 l 19 4 l 19 3 l 4 3 l 3 3 l h 14.293 7 m 11 10.293 l 11 8 l 10 8 l 10 12 l 11 12 l 14 12 l 14 11 l 11.707 11 l 15 7.70703 l 14.293 7 l h 3 13 m 3 15 l 4 15 l 4 14 l 5 14 l 5 13 l 3 13 l h 7 13 m 7 14 l 8 14 l 8 15 l 9 15 l 9 13 l 7 13 l h 3 17 m 3 19 l 5 19 l 5 18 l 4 18 l 4 17 l 3 17 l h 8 17 m 8 18 l 7 18 l 7 19 l 9 19 l 9 17 l 8 17 l h 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0.5 0 m 0.5 22 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l 0 0.5 m 22 0.5 l ipe-7.2.28/artwork/ipe.iconset/000077500000000000000000000000001447153670600163155ustar00rootroot00000000000000ipe-7.2.28/artwork/ipe.iconset/icon_128x128.png000066400000000000000000000240311447153670600207700ustar00rootroot00000000000000PNG  IHDR>abKGD IDATx]w|TUd&dR!$t 4!"+~twYˮ( j\`EZ@-4!!!237)$O&{}wt@:Ёt@:Ёtp.HMD!DԟQo&ߺw1 @7j^n޾G]n*^6k֬'!bd(~P z+6Kق-[T|_b†A7///裏>yܹ݊ZRo׮]1i$t4W>FûH0թrՖi+~w `" _)Bϑ0@ɬ}p7x'|~UUUNi'Ν~cǎm>/9┇pH5;Q4jp1~x:rX[4LDo."GD'*ή"a'dL+,t-;;ϟr=E%ռ&i#(UeDr UXEt@`;vZv ixzyw>mCv*D }Q\0j D'oBt:-[DիWӱcǨrf.W*pщLnUOIw9`h.7WȵR\ՕAd,={uؠsH7CgahHj?Qv܅āoPz+ BHHSv7}RCykoߦ=zKًy= gI.ۭgϞt DS.aHMMň#sBR _oj z\.>%xiq$3n !OO[Tޑn:曒cƌ=&Ovر[jb+k '*&,#:YEN|HMW|N#MtDVoUWUUш#Z6э74"Ť 3fCJ^q";Ft"RJmFN=JD'LPsGO7o ^R)8ul'DPǤ8g&NgUr[* r /H-iĉuVɑ$51ͥ2u(|nri)BPSSC[l!???yH˟O OHH\&50kD3Ap;2q0ߗe?`?@tz qh|A""r yxx8ۉT-sLϧ' vzD2J;2RGsDMgG\V/{RZ55JU"[nu\"+&U x<*!+@o+4-3ˈ(ڙ t$]DDEխۃ0 4rLrG]vkˆiΜ92KAgQm0HIŀRhؾKew<fG2'Uu_$L|m; z0jdds>q iyb_ԙl"]Jkԩ |kjjHJYL!֬wE2w杂e∓:-Jj doi7 _(|kII HpClL'PR#GWs{睏Xm3jPY16tzJN: z#;WxFF#=@o&l7 wㆠ\)._vnL֭CNf ir(Myܼ)ۗvY*b@1C#4J&deO}#Xh^~e,^ mPh,ZHȗ|6% h֮]K/_撓 naa1`ܸqhyf^]r77y ʁ mtzmih@7"Bbx)&LÑW^yd]' 1 .DLL v!p!8roIv׺n ;m"I[STQ)%lO;w}FBB „J"1cU{K!t޵;5L$ +O`^`k =N6ѣ{Va_כ:@P$*HV*o߾k*VI.W_}R@ėN3@'ngV6>@ETS!Wn2AV ˡjKɞn2tàA ݺ9g2=pw.zmuN!, G_p}X RK0HMU<ޢT6d5 cHgs bSĥBo )?< Ç[ǵ; Hשin"2dhh$bLCK΍Ĭ S)੐jZm9 6t:gFbb"qwwͯdJcG׈~T#Q^``H87qqO>8r0n8 5k@UU`0J%Wikx=RDw$1χzEhdu:{?33t3X:@a8{\H*2z;n2`SO#%mB~kf{ [F0pO2x{,:˗/wXd[uv||e@SgoqY"M}f:N$ ɰt#Ϳ-,¾ (|E48}0DFjj*j[H(W2nMJԙͲBvc)lgP3f@mM<(x]4U@J)L1s{QIÕ)ķ(4^twSNK,%z:l_j_`sh|4\>> _x-P +[P}٪{Z^㿫 -+@rKZgڵwСCB? j5uV, hhnCX/Ç`}x$cȑVeF\0ip;t|OɶrWIDFNKÜZFHH<jN? =lrT#Fy@7#)^W&B{2]JEv<N_D||RH!gKW(**?["44Xvvv˄r|||R OdtO>%ck)Rֿ}wcPsId#+[ ^ zBj[\3gڹo V9 Gttv:{'TyC%z}ǎIDrs Aj9#:p.<==IV7[ݴiC}bZqh ,$@WOt6u `r]38p UT ?sFDۃ8'"ٵr>$GFFR]]`g[rssye 5f{'$4fJ=¡^٫Υ*`W;kv;1zh?Al5\-dCv z!-lײСSL:+_G;w'RD&0yl~믿Nׯ_oU43߶v:bsFM:v~# w9&@. [,}RßiMw*N{X&.3(&orqC>Z|3!kNH_`-]bbb? 1p@^̠i,mgˣW^䙵tEQ@jHȧP4|p;zhUбL^H&B IKKK2d1>̬,lV̛R뽏D}O=Ŭ J.avpmEJJ RR>;1|̟?#GC7cJŋvS%>Z"w 2$[3Ir1QN%QESH&5e/͑)mBBBhGSDc3:PSNNfRR D[S E޽=wHIISO񧨨(ڷowtb#GRqq#}JDt ,Ri%6y8TWWGWv|}}io>F>~rO?4SVEGBb?rgd{BTb۶m4iVZR猬eeeصkvFAӢᙍgAWV3;̙5XfWo%&qJDWl͜_;GDDwtDII =IAYUqiϥ"r$,cTDBADx-&&u `bK.ܹs]ќ9s… V햂 +~`MMM=FA׮]1l0 o?{,-Z$OpV7bmcu0 ?Hk)ns,DzGcժUV&x4y8Hq\+ኬal0G~'ƌV,GNN֭['hT9h}fX\)b?XdcnEւ6ZF0 ELL :̛v6L8ɓ yTL7X5 iğ:;(((@~~> PZZ@hBѯg0k,L02,8p6(pwW0| emH;K3@nn. W Ŝ5Frn"%%٨hɊEhh(z޽{k.77?34 E2^B_p8ͧIlk<Wr:<>@pM.&zāLDm_?KZ=]pcHzV zsTTTկd { [lViرs轤)''ƍ'Vƕ&/k9U4kw͹b4w_ȢaÆRO>ֳp.h_R~ZPzz:SiiUtKW]]M2EEl뤲: 3grz2!w_BFĈ.&feeQp޳CIIIwu*dϞ=R#A! "H'ʳ7HSyY;ySTr"fsPZ?-޽;9aaaVj 49Q?/^u'. X*1AJƱHJ <8?8~٩W]xmM"@aulL4 u &&pj-8E?|w˳e5F5HүXayr\3~(eIb0ن ԳgO^^^^ty^c $VBݻ-ә4r B?5`DփeMaʔ)HO7oތw!`GyGo,)8#phnhh_|;o ϯ m`׬Y#çG{rppԮlO!T$g7v9VATꙡlEɘsr6lcr"`VA17##]j%{??nz2"fcڄ1e$flrYR3,Ȑ.VE.LÇ0@S[[ LV 6 C!t,,ކ i&~ܰb e iمXB 7}=&6GUzE`L N7w6/)qRR .]¾} fϙ|:uJ=zHdWn( _b)UF |aP(P"8 Zo'zsh8ڴ5\LDs0Nй) m)\np=z`ر8Ɉ ?qNp&É xV@/s(m9O;Xz˙wJuu5֯_/ZqT̒W,ӈBΘU!bcʠ%8!ڸ™^pbh-܌'E@\)܇I̖A:RK=&e EEE0GCݴlH{Nd`[N5k}W$2P>AN'Ȅ^z{MaZ+(` 'q=h-3gUVQQg!P|JlF?eeeeƎ[Ig1%t B_`7V l/`rpLG!燇%3F8h[Qc`Bme=KTYYr\+~ Ck%l3\.~3,04""V `ɑu֬1bN0K+Lc}7֣O>Nn*e- L㐗'G&'\.L&R/G^@U%@Dp &k ǍȌqoĤqc0;^{EcXADk%<6x ?ςe1 Ďͦ˚5kc޼y lMw}Ú c@~#G2WgQB3,v$6?Xz'H ]l&8!/坷 _odKr~8$2&(X&щU^EQ-GaԩVDVNc F+a_IW&UUaMkVjSѢ8p FݥUഄ[w{aڵ< hW\̇pc/HlW?~ٽ|bܑUEP`Μ9ȬڲZ%cs}W_}ӦMC@@j5T*T*Nf!fY `Jw08fؐtl7ϖ HqodG\ha3f-4$=2ʈRJů3{+5pAxg5kh9o%P u|IDAT ^@(hû7u;\w4^!HOO… ~xGE4%5MC4J =+ m:uVLg/&{@uw}ˏ}2dVHGvB Ep!bP%~)ɰk%MifǒLz6x&C;%XDbΝ駟׋db0|<|%ty~Jl*,ڿ9WP ٕTd oJwQ!@!d4~Rb)jXb%Lȩab .mBǂ6散_/;039N7EDJZ/3q"P$'';D{ P(6JWY|!RʾNFfɌLM:{b &(7m=FM )# Y3Z,SU遌2&[fWȒ30P&xk}z8^F0m\ ,c$@_^TwPXodv GVa/5Le{HlBg=,[{+"xûI'8؛Yh* FgMNK/T1r^1,vb`!n)!6GLL_ h%#>'walzzu BA($NO>otLP ÷~#F4.䲿hJw!y֬$U,Kz"^o^xn>xvI <;w{ %%%غu+>C+_E!::Z5nl9ke &0m6{Z~z#;F2uXh`Ldعs'Z #b̙2z < -܉vAj5ް 1Ur ~ AP`y~Pq=wW )|<؆N^{avj3G1vQc֬YVE^^rrrgN :p۷BS(k:r8s(|] "hp$Y:E(#J0OI./@Xܟv27Am4$ *Qtʕu}Jm#yU UF ^/C aZ4j(r ǙX`1_~:D'&\jP߲5ϝE>\kk`Xh]"Nke[b*5 Aq(2ϤsEj^j:p?Q`>;$yqA,_`^(i:@:Ёt@:Ёt?MH IENDB`ipe-7.2.28/artwork/ipe.iconset/icon_16x16.png000066400000000000000000000012441447153670600206210ustar00rootroot00000000000000PNG  IHDRabKGDYIDAT8RKa}[fCw)Q(!%K`[ @(BňW%y7BO㼘MV*nnn$IR䇃nnn$mۦi mf8f*yfP١X,F˲w ~0>>SBUUj5riJz> ` hrxx ١p``Pv[pCX, BeZkkk(Jd2bP`$iIQQTju]4Ma{{'''hZuضw<ϫ{!nnnٖeAylll cbbc^﷫*"HLb`2HܞjHlFe$ ؛%d2rP"2.j*NSfI,t$w#ضm4999y徐LRt\+Isga9IENDB`ipe-7.2.28/artwork/ipe.iconset/icon_256x256.png000066400000000000000000000572071447153670600210070ustar00rootroot00000000000000PNG  IHDR\rfbKGD IDATxw|S?M4N(@e)2Y"EFA8/ "_p(ePZw ({m4ޓI0+6ɽ$>&o#=с /PX+ɢkʶgfE@Ukh@~5"|ؿ?}۷n޽{w^t gF~#lx !:HS5uO<BBSo 8*RɀRgռv 2t @ZZNիW#4>c/^yjkꦖ,0Ȁ2qu,"8Hg}^%K`ɹ; 6`۶mР56x'(}rRɁ| (b0@v@FΝ;Gyڿs`ԩxN'+u|By5 Z9`<UVVXzIII u! ƪU0sLʺz fa@ЭB>/,B MV =qϻO^z[uB ƒ+WܪϢI߾}r+ +!V.!Z8OZ<P =Ɓ)a(LV5Tٳg1b?^xAuNCll,п(Ljb\mx]oƍhܪ#:@,~26@V .x J%zS@0M:Xdff /y灘]'H+-(ӯR, º[ܹ SźuO^8㽦f?u ܄>~ BihH.1 p(IC%ۘj9 mqț8BSXXcɒ%7nrk;.'e\TY SKYT2Yj;pãݺ_)ޜQe *_EEƏL<x<p:9\ڕ0ywv Ǟ&M ..qqqx衇 Y^Wwk0O:B0edeeaΜ9m.C$z,_?3Ν;Z.]`Ȑ!0`Jes$9_ TO= `U90̨ISۖm111Uuo9 4^_}aΝ Vۖ"D +F'@eqz|z-==׮]իT*W^yz: 8 62=PVQ݀E|0@Z^=KGs`6m/kqqq9 GGV/;v_V M&[f$;Pc? !ֺgױ[ɱy 7`:d7nj9}M&~;puWLL q!)``Ĉ9r$7oXrۘna xJ+=\kׯ_V br1/uUTQH>>:8r LMq;ӵn߸_f= U(@ |$@/uꩯ^QQFQk>R={D\\LJ"|:t:klY:AՋ fB{I&9+3g2םKۮ:u^"6]Gw \B<$3B[*F$qaKbqm68,!aBo>i7EǎyiBG )u&L[wC'| yoS Ӫ+Wn""6ugܷ^!D#Fp9 G{ug 9Vp5%I?NVgy_%B^^WB{ҵ>w}djܣ"aنyũ7ٵkknB.+Cy[dF/VVVm2ߟ;lܸ[ۄ9-Pea P@߿4o޼}R$111a&;8UnXk.2rHhrc-2Y~\hM)^FF [`kW! )\~IBN [;$CȢÖ߻sիc+ɼ\liϼBotQRRB6oL ܺugzIٗLȟPv];B(Ϥm/lj.8\֒-sI Bf}!lb1_m;BuYn~~ ʄ7d2L8Gq098@w7|n4k [l?7|yy{J̘1ЪY ٹhan)p.U$ Z9 m­ Y@&?g [$?=iC AD]_Enݘ˵@g?24P0?<:vA!99yѽ{wǙK`遟#(ʯ605/-, }Y=P#;v~a̜9>sp). Һuk$$${z*^_н WnYPF=VZy\MCP}ԧ $E H>P=ݑ RaڋCQZʞ^z߿{=ٳ{e}tpYO3#޷LO[K5S=wx'z"<<bX69Q1AoϟNr>1`\TFD@^߹St@.Ogl#‡(%L0x/jh",Pk֬\QSpFA LUɘ$T- +$hѢ aWvG3!~@yIj 駟ѣG$ hmG'10YO3L#sw`etwl%ʠ֠0شiYZ`>xY]^k֬VmIoZ!`Qʐ e/c?&Q4>` DBW Q9yn,,!+Y 9z7nD@@sc5PQIu38$n Wؔ"-x" XGSNDž xVJN ?T\I6t Jk )?o<b-Vّ]>5r}hujL Ơ J/޺Uʩx##;+Ԫ BU#0 jeŕؖ <^pX}4Rr]8t3gb̙k5u q #9Fgs#L2#{1 ɹԕxu8g.~XrT-ަMdffmA >?PG%ͧOۑ1O3S Pq8}ـ 06|ݠe6m1bچ.uKy pͭ3=z4y;۷T*HF]W\m"33n. " .|>~h4ɬB WпpGnFy/g.Zq/̅>)< Ш0y-66֭[1o<&* {!Gdd$.]C <%(d$$$HMM͛7Q\\RA"00B&8_B?̞=[P&LP5H<]:_QtZvlBUt1\TǓC0m4<9rdUv.]V 1doY>Bsl)O2"f͚˗/3%5q> w޽{o߾+_իAbiX ߺh`G,QvsǪ?5yGp ,[ AAA=z4g+[\"  >>'OZ4^`ߩbJ<:i2uȦL0i&9F'!nZȌs3p酄̋&ɱ:M¢öZK&gΜ9MMȯg_|LcٳDT v9zwP[pEطe-mY\Ftt4; u/^t|`Nb QnmZJljKfA˖-y05׳Aկ`s6;{JE-5~g Jj*z A,늎xq.EG_XhW^ I8ܻĝ+.'\] [̜9:ux|4˻c/" ӞB捕uj XFϣڛ2j`)ݻ1a,_qZXFԁCU4R{!\lZ鹶BU@/ s| ]43oy @- t'MWW+VAlFq@ui(Ds42 )ԩPIu[!jzxx+6'B`Z*O[Sk6ۺu<\; *b{g/2t邐k喷e2kYlR&Q-~.0Wx]*p7z*ː[m5Y ϗc $zcA]Йkqqqxꩧ닗^zɢ-1k,|w7zaYKgV"$|[x<@= Ydb7'<++ "̙9%J,&0[H$B{nf 0# #_L^P<.1'v8S;w.6n܈+W:~5 ҇=#+ >BU@<E 8_H @vf:? vX @ذ'R.k0-,N@.w}|BBB-F& -1˩Jc/b'XY/h5k1b||칂S%p:_ q! ܏hRZZ#GOݣ3" tGNh4hݺ5c޵VDbd֨b 0Ǒ" X6m?.$Sx0d"6 `^egg[Lb IDAT&s%9{ Ĩ dm{ƍKõe,ZH5pn^7q  b@/\n*ʢPr/o|d&@VZd~P(ܱ[QA~TG 7Ҁ,;iiXZۑO5IBʄR;wױ"X8SenA 0l APTxgtRtq [Pρ;p+(oG hfpVb(fy4{j<0' @_P[|X @.d>,4*'˖U-^_%Ed.q5cw, T@p԰5bZ޸LONm0mQ2ޭp>{'BN-U(&G|ԄqT4P|ꫯpTlu $HIݟa1@K/dQ"޸шB7 @֮嗹)ȯߜ<<3(+sjl<_e|#xAN@~~~ѣj3X \o\Z+)-%'Ԑ屦>&Nb|Ƞ'ؠ%2oРc6k,HYO58{,nݺ7I J??cǎ!66V@ȰaL2 cP/@(&zax_SZ=V#b1EH D"t{a.6~8P7| vT2j zWXYXE Hz~S s<40Yfn޼)HY~hԲ-"[wG`\WtѢ*͛1j( udwpTG#=Nꌬ:8|}eFWHGBo(ăÇcxWi\7.]r5sNFe/D*Z<'EVFd"նWYq ~RUvNLLt0Onl !DBR~BȚӄvϧe1"J>F!׮]{u_RRBڷoL:o(~DK_?- ktB ϟ{cLEn,,!o:!/O2!.2ydڵkWRQQaܫY,Nu}G!Lww~|&QR;L~'hѢSL@6cPa!\~.w&a9ss# n۶ .d R ĝ _ӧx ^$t- vP$1P.1]8@ |f?֭zLdg /ਫ 4xnEXf o[kGB ,ʼk.>@0wܪ!7nUJhBZ^PxՕFcAud,EPc)S駟zĥK5}q>3\?/C/7]Z\sѠA^~?KȑZd$66\\IGW GvfMHa۹%r'yAAСg$.]:ȑ#D&9 $ջtW!ȑ#j+ 'Orqqqx'@F3$ mQ-_k׮UnBϞ=k.DDD8շ>Æ@\!GÍH"C XܠxwhtPI#kTJC[r|qrA^sc=GR sJ*hCI7sՆs8NȢÄ*kPߙJ".X@ռVv_u xՕ[o09T">>*)&&#Fȑ#kd1V-JR \N߳}XZAR+}Y@zZ7ap7bXliU+cRG*(Q8y$5jd2=0gu`Α#Gj%HQoez 'CZ%j%qgN`,iiih֬󝛜w xoѽvD>N p@XX wq-xۍTIhPw8~8f̘VhmP2)͞5 !nS{YcN ΆB-?v0q> ?/ `%dhժ={6믉Fa*믿555GӦMɴiD`B;c8H-+ ۶m#"ȩ988\|2{*s{q]GU]z9sOII!;w\fIiiݻ#T!K70~듉';wr^-c~yU/^ HII[Le2Pyh۶-C,oc˅`ܸqXfJM4rЭi\ 0 :qqqxG-ʠieTX$`ؾ}͛7Un7E"0@9f<["&R({jn5}yPOIV54h?!wyǓ[ZV/|y;3D"z橅u'y&e()* .g7ΩyF+F9U<ȫ>W/rذcx%x"##K.ҥK0h šUhj ^[E&%%aN9E,cѢExgkPG?lgnx׉grzCȕL:~Eo+WRݛ|6!' Ny|XJEz)n:r;m s<ҴiSQ&_~uܣA;B}ᄈIsbr;")) ;wuTL#!lĪ$"@/0iETQ޽{Pi##sFDD`޽euؽ{7^}UDDD[nOB}߾;E{?xms47gth౻`4,2bau! &H0k,tcƌAzzz^ TVV+x衇d9vȡ}U:b9>T u4x^:V?/ã<0AիCBBlj2G߿?N8W^y7o:BpY{F7@/n\s}HO)osԈe@#MEB" #=}@z)ܾ}ױ6 cӦMشi^{Mܺ\ww!pzyxӆVG R`P(7NQάn7h vkO6#|erc {ka'`䤏|f  ̘9 H4[ m+HfP+EaȤ5}-q^wƾFӧ1zhHlM>|8N?|!*ZF.{<9xB'PhŘ1cPQoj'xPTGƈ@G駟peL8jFcO@,cĈ8s ֯_֭kC%\Q;xnjp޽lA@@j>_aࢢ"ŋ+өS'ykHdk<e i*6|s;W +j5}YL:[ 45U9P`Gkի7@ 55%%[T*ETTZh-Z]vѣTV{t :*5uT^iteY= Y` ht4^F-Diؼy3~'lݺg]!KЯ__3C R}nOƅHK{XSBB$1fab1$ AQd3ȟIJJJ|:HFCzMRc9c;jQأ6m05sv܉cўi LֻIa'q88s(,|4Lpp۷/'N]н.K:(7A.E r18W9Z_Sቺgy.!* P0or|Gt;/6m&MaÆjwG>Cfv.2sL\=w9 v.fmfx ZdaĈHLLL&lI_ ([il@fFRRƍӧO3խQЦs?4a H10 @Aq.Jcq0!6G](ںpkiӦ vjY{Uս#!ESO !.?u!ɂțS!Dߢy}+QTy7V8!m9sL<ںQ^ qVHݙΕH$u9_!s<Ya=RIKhn)cT٪裏۷ kl"3߻wL4>q y K1p i^zvyj8ZjB/^Sf^ӱgh4h(X46(o2th]*JCՆ0k/"V}ƻ; O.]džEiɂOCpp0 5> aPC<t 3^;ТE m=z@׮]`k E"&LN:'Djj*ݻ oʺ\4,WOF.].\TLht΀P_m`ڴi/tR$SJ]' ؿ?{Al x(իW'/HII19E4hR&*P۷ʰb_ O>Mxss:gW7dJz0m2 !~5dxqH_kwXr%"""p*aHKط0JQ_ SvN >5htG|pf5C!~"Ogp?vZ{sŚ5kxx`ҋ3\qqq66a+PVC|HpKfTˀkY^(M Ġbn S @h8paÆ8ad2 00*=xBQ]k޼y1c ++6q3vD$IDAT'N,UI 4~=CC9**wIv*i<47r,~,Q!*:Ax 0T_A?w2 =u޽{TD%JKKo~T1Vk ",=3 Vtqn kNl]*|A ҊAѴa+}'45,9J ȥSX'  Հx|Ph:xF=1~xAt::Ƹg'VG0rLB@yYpZl_"S#9lsAA,*3j@`+z)??d.I&xwX+a2n|%X1_wӄKcDUkD]jGi-¹1mدP7MJw"VJ%|%I:07zوtW~DLILLĢEV1ftTH"}JlS]?"!"m `+a.]c}Ro'@Uԡm([#f/"Sju,NbHg,++ uɼm);uD~!|,,N Xֶ-p9z8Ѝ!K,3geG!+;b낪\ʞ<.Jkx `X r5O>$~m)aH :tyziynbΜ9Ljڴih9.Y(QFȚ款a$|BxP pXpӺ=SXv-R)s?GAJ Cڗ_~)3Ҙ~k*mk p;*t@ld nIZZi$4 qeiV!v-k طobccQTTTJOrM G`[8#*a`_)Ο?LqW7vLHHá|@{W_1_{_W8 fs!C妝YDGIkLq @*j,yv KFShIS @}6Rbq1c(*Y999J͛e˖WBY$>@f0vX%%%:1 %mBu,p1D"D"bbD"H$q$UI$BJ HU*FA sj@2 Ai~J(zIPJPH* #B\jU9R,Z2(+oB"T125BYEO*{D$NDz9|$eOOSk 8xm~Sww:Dly^򓑑#GVc#k@GōVse?X;`V^#O?EÆ ym6j0@ ȡ- 7Wy`ڶm~1x-Nf)SBi0a^e8ph 'YL|,-zTGv ]Bg^~پ`'*9!D&\:fbjeFĉQ^n?dq&4;)*'our.\ҡaԨQvkOw7yhlb bj-KFAVxI_߽{kz (6݊:ZeUwOonލdȑh=4wWm5O`ۇƔmztS]$= ;GcV\$uhڴ)p^zIHիD7or9}<i.u!#z-v v @#BJ$9< ?pnXKwc"γi"(uxkV"GX-ueoo7ʋՑ:@ U}a"dA bB҃ר JZ2)) #G#4-ouL`[M,Tbb"z-( <([#/〴X e^uNJ7 3n:Ѓ˥@#%$np<GNO{a9sP٢5‚)@ݎMy3>L_pMJqIK}J)$nloo p*G)))?~ѣ&OhaX`%*,X[ JW جFXr)_%R҅Pnݫ|pIpTTT`Xl9┅MbڵPǹ:B6V2sg.ܫ@&Y,uVɀrJ<ª͐hJ*i,"XY5m/ '' rXGxx8vQ9%X, '.AMռM=;k}NwdXq#51ѵ֔ m!"K_ q#""}v4jԨ5$ g,͛ Ae zFhnsHA焫C9H(0ݹ%\Y dhAs\8i}aD"Q9! ɤѣI[o6mBDZ?ˮ0׼\ˡ7ys>/(W:zy&:w,0c@T16:5bN+|-:eJ=N͛- +Y>>'CI e 'Ku|1sX:2J8^E֌;\h@@-Zg}1ƋGF }@ E{tʂl[e̘1CyFXSw$@)??2p @uHasPcD" O2 ՜7[Oȍ>y4tovA+O௏l=&g_^z)uir%*=\uBDkf\'11l./C'×?**#~Laa!@rXAJu+uօ,n_C?~h v "@``'1q1=՚ٮ4x7;UV﮻?#xL,$ٮw/i ۩ i+Eأk/Qdqs ˖-cʔ)]+#aYْB{M@8'@B_@8|[Ŋ@Yg>=3pkbW2}tF_h,;c0hH\ق [_R-=TػwoH,㳜)q!@UUFb둬*0Ye -x=,IvXA zHpرڵ =xO]̖W%{d'"5u7o3g5%7Nm-!\&*bL^6COFk%q3#JwZ7(cҤI,Z<$ 0+NX'g@w'V7|k+W&k$ Z;)$=H/p{N9{܃|odz> { .zBMnͭuz[Ejyj^~jo!w䯖Q8i-0$;pzI-I r2ВL^Gkr?5ŋ=ƍc}~_q'󮆬wMGakax5pvZ~aQ >mﵴPRR¬YrqNNÆ B8 A`$ 1 Wˌ-ЬXAZ N:ζmۮ%y:{Ax5djbph_m3tۈ㘾<7*>}ʼnTح[7JKKUD4te H@b\6&%1U|/Uj? tsq۷}\wl;; >|'i&QZZz=a!C~H#kE2Q]0N3LUyV'-oo|} !;S zr  Ă 3f̵)tH^c~CEEEQTTĬYNVc[$ @n 24]ݹ3LҪʧķoC#Y?˸'qm Yp!L@AA[ne…$&&^+ 6+!fWVVRRR’%K|dffrJ!=&<@jhA='T.ՖEɶ莲; y,3oKAo5o>cyx3ܵ555]ŋgϞψ3&L`j ~/MӬe7HK@P/_Ñ8T>k$$rv2D3{  h>,]\Ν4,; ?~;[# A@"+tvl:M>voP7L4oL>f,7&s44V'Ӂp'seƆN<iVO R`EP 9$S6/MygN >'9*rh]Hr6]$x&HyN>1k6l$(F#׮]?!dgL9e$Fz2NwRXC@QiOO#3+y9m J4^& 7Xy[{2 .YYYIt:slnnBFJ6pP7P(@ Ir'Q\{?A෾C !ktɤfsQI'w;_Tu(3@|q{ IF"q[/]՚FAaۛOy Ǩ} #+p#p @D Է7//Թ%H/ MKV,.%<&0'IE1 Z]C5e>IHn/9e.*-*x;+V> M$!M#01%ƕAX") ΢MD4`qR4CٗAaI8L 3 0mkzoܰhMVbfF˯~i)t EVW] e*uqB@4l<Ξ}'m @*s 6x '(c |[d]]pǎgQk9yh<~ W)+5bưCMM `ٲe(ADBdU@(ǐ?H*I#|[d2>d9GC##ƾQm= ŋI(D@AkXVz6ca )f n!ͤ@Đ37[\8 /#p!ފ҇fp`tF3BoPvoiIQ!$JD@0 *"cD^dY0N{(BjyLxǜaM;s݆\4 SBCгE;|3ܮYsyN Of ˯Kz|N{z!GTFU|ƜxQE,; O߀Bg.|+ܾUU!Sѓ[e 2D/a[0H|PAn4TZTVXaW87$9\_V\d} e1(QΜIENDB`ipe-7.2.28/artwork/ipe.iconset/icon_512x512.png000066400000000000000000001542021447153670600207660ustar00rootroot00000000000000PNG  IHDRxbKGD IDATxwxUڇII4 !DڂREHUATD+(~;҄UTpa]RD, d? L2}$p+aw9y~9OBP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP( BP\:|BPb"pQ|BPԎb x='h>:2(7@u@kWSP( X,`3_2aq|WhiXB CW(. P(#AZc!{_(>TZ}4e#jOɴ{>pd~ "A~)<hlf-K% L€#hi}Hօ`8m4OFDDd6ilVz葛צM,T\q5-"ףбWC] TBЏ&@O30yOiڴ);vSN\s5\wujkY_I [ _ z5O-KрQBĮhPf'OɓYsՋ>}ЫW/vJ@lnb/p P8PWk% -lg7on; سg G^XXiMFF}}ٓ#FС߭@iСT@@HYf1.K:|rVZŶmۨۨ7&vdСLxݻw};`!XqC ,IрQ@h`ԑN, =_iO3OKKcŊ,_͛7cX4}? IIIr-лwo ?^9 |/@dWC]o06j,EE(>b8N#\7̎G "]m@E-F^^/f޼y㏞LwّFjj*\ys={$$$h6GK[&@tj%.sP(<.A֯-E4 _3 -[l2 UO9x _x6l'NdС{5nHH(.sP\82tއm5x4F >]S'ʾ}$򡢢Dxz!bbb<a*P J(,^ы+`axwHTx\="D*)|G.g1'N+/cƌg];_(8BP h9o7}'HHlUlAnqhDnwP-GvL0ʲyX`&WPZZ'|¢Eygѣ˯o _zQ`8H qbFx4߿P#̀s%l[hK^ 'X<*LpJUU+V`Ŋ9_|Ν;Pv"yՀ1J\FO%\;ZNw#|8/"]tqz-H#FP4hhزǎͻn3.CN^)a'r$٬ؕ؅+X,Zߌ?_~kLn_v^ZQ8؁BVYuFXwߧ%3B9A8qba…L>'QUUg}ә:u*AAUiPxcX\DZQ5|>HuEry/,/lPR!C%??g}9s0sLF}ZHM2[,pysQ@{f#dLe2fDELAb@ʎ8yyy<3|TUUi8E'99Ç{ѬY3ZDŽ E*L=!h`˾ YPb0w $ HH:DR /V\IxСo6#(,$KS4PiSC%y. R@S;v,Fĉ.LQ/gL/鿨8W(=<!rw&A ? . UVq5駟0EfǏ1U&e#`0A# uecRqPQQ?0F"++K߅). :: &rJ PU^¼0l023=%U=@H U uk$Z@/.a>pЮ]뮻ؿRиqcnV߿?"Uk׮tԉ3gxf:uܹs1d0$e+=Ҏ¬ic|`?:E5@WS $&&2yd֯_Ozz:>>o7o(<&++QFORQQK:-KQQPʅ\o"L"g]Wn $F?y AOlHrDII <}]lْdk]2#F`ɤJXaX,sN.]J=,XL=*+컕+|#/ P/˜ `]%Ɔqa߆ĉ$''?[eD˖-9r$)))ۣkƍٽ{+Е!ӗzEO JﳳXZp5*Jh4@W (ܮ,)`Sv*ra 6pmՋ3KkdFW{f2Xx1ݻwPڟ~9eD}3Fp#D; V%G^ " X2SeW3EB,[{Guӈۓرci׮VBA !\P\E᪽/Ol4K^(=l`8uB̚5Sz}YG.]o7C?[[J(L$I߼DΛtTY`]w-,K`ȗ6oQ@{:8d{~9-o`ObM| ]qUd_w+0j0pKj,DNͨ|=(((`ȑڽ^߉. z$s4kIJczަ:RO!}/Z<0U =`׏uѢE K"e#@fKpoX6&XϕT7у Ɩ-[ 88-BDk!Yo;'G$!:YrNΤnrazڵk|! 2@Z@-#i$#-ŀΜ9Àwl殻?ٳ\ǻl mIf8ǂ 2228p {=epl -="ЏOwڵK .bbb9u .[ou^'h$/.)}Q)SN1h 8gXzM #}("eLbxwi&>3{Ҩ ((6mпnV:u|&H`n`+,,5s*4RXQ%Ʃ,+G2 aHIIᦛn޾$FUFwޑ7bРAlܸVZuzM y(R=Vmۘ2eұlذ^x+ѣG3zhk}pTĥR<p?Ѐ;f q&%BL\3.~S[IO6E4cb_M6ɓ'4h .J~0sLONek~Ç3sLfΜIӦM=z4&MFعxK>{1N<[o[oEnݘ2e wqCwl5 TeTpxlgE\v54urߣ3, &Mb͚+ϿUV1f;| d#;U(Ĝrk߾=o> Hk?әA }˦/ _;vp=30~x}QJѸG):*l&{a@ g;pw S^x/ #G[n]''.PP3N`,]T"<R@RحW(R8y];3OOҨb?%cʨw  .z5:@r ,h @INN&99+n\KiDwdOZowe˖-;vLB}[7k;VʼAB¾ѣGs&INNo&661g\#1~J4 ~O?[g nqEJ9p{?]8w xwk6ќ 8S}Zc+\\sz;wj( 3d1bֳ wM#`or;\ {rssIMMcO+(F ]ΝsxYz5:t`̙U?w^` o)a)9"L')Z;vYf1w\$#hG-`%A4 yuQTT#<—_~ɼy<> I =aEwʕ+6m~ҐHF% ӱpHH _OIz%{K!d"= Qhjomt5$jDgs*Ξ=mV#cccͩSX`Bvy S[ (>\d ,**bҗYhkf͚u)o|v({ڷoOxxӸMVV7t\~q#pС>66ロt̙СC1EdcPq6~V·u&R:eu &aVUU|r:t7LEY(m&P@tp-=GTTT0uT&L@y6~S]_|۷oA.ҬY3Lڵk`9aig[*VU]!ު[ep֭tܙ1cpQ&=݁?z mP@|>c:t&OPFF&Lhݺ5O?4?AP{/@@:by޽r}ğ^^{T>HЭ[7ƍ'|"c:o8p W*<2HU)\9xG}Kvɣ1ATs/B[^j*`xe,|L4]\3*5A< mo[oFtO?1h Ξ=~( *X8k%rJ>sy B3fo>Nj/!D쮀6s0qD|9PG %A~l63k1'5Gٳ{U@v?`Q\z!)o>yڷoMB5@r x m6:uĜ9st>N((Jԏӄ$FnMnk.FAIgV1SO=ɓ:5ѻO?f͚EZZy߶m[]vIB0E&p׏4Eѷo_]Ј}D`ED 0 %v_!Pab| >aw}`L0Sj1NM3gs0h {΂60e5ӿq\8YV PV?:x"3f <G=:g(]҈k}g(E& 5BsiZ,>#FdO1cۯdUU?f3w\233Yv-= ƈ&#J+劫p([gϞ,_\EHu2|1LҌĻ:"E(G ]MRdd${/+W$++%K0rH뇷oWv50oT**vwuk1|vVT />JEk"*7Bqxv5BH\6=') Ga]{}?mb>vt~jyk² '$$3ϰd^y<"̈́ \*hdnr3AL0d[/N} 6DL 5BⴼJ((xYe R,7s0#!\7B—r7Fŗ~J).x^>@*0 Q!4j \PP{/ƍc޼y Fg_9s0q: KD]cZZRl?SLG1/Y_a1R5@ 7BI|5_lM6C^s03x'ut*//g k=NuЁ_GyD{)Sgi8aڴiu46[d8qw~9cC`q_WxUBiE{ IDAT>?W"RnZ|ܶv6TnUj|=,ÇqF9 SO=}s姟~ĉ:+#|E(<vGޒ/-[ƃ>U>wXx1O=\s{"}5jX6n0@^)l<&;퍹3X0燳aSϋwUkD]U=Fҽ,^nJ|K*@Ncy1vAZ1fzΖ-[ UUU<쳬Z=!/`ѩڲH[U;p{f;!\<ޠ{>_}ͪvY-#̙kIII0n8Rs˟g^|EW5[ynDG(<A½f͚~z&Oٳ_5;wk׮N1v߶3m͙/cԯc&4Al9x^)]w`׹J K4 ŇK*txʷqƹ|:H3%C0 vǞօh>}L:U(6RSSvgŀ7椳ڽ9j>+ bBt<ŀZI@$Ltŀ,*O/>]*obt҅;.]JNΖ-:Z_/D%CjC rzca2xuK.i൲J)'`jS"ɝ}Rw؛/Ŗ }k;沗Y q=Y ljI0~x_ȇ~Hrr+Ҝ?@F _-4P#֏0n0gΞ=$ TwIB8/K\wk/V }8fb֭J"Q@?J+LͪcavAj7=ZJJ$ǺΝ4wGNQ@?\KS}>Jݾ)59K 3zS}͏;/{k(~fX/y/fUWs}Fl*$ vdȝ3!\>g zPZZѣ9~܃J:k9s&'OlL 1z!Q@'6!D05֯Vw3Q=B~faFX;˅T߯g+pŝdw2M ~zEׇ3U@=MBE@eIH-}*^`ڴil޼Y=iӦEƣ>ʺu/5W#&o;ЉrF:,P!/4~AxJ 1BB;1/7h>MX,u 8{l(Dx9rK߳R !,gNW7~|>!C]͛GΝIKK|l/i BN<ؕ:g9zp!RFL/h>ӧ9x mڴy[?,XP/RcC3E}1 Y K@T'OJk*Ceܨ(> PKOD zN |X\~q9Y= 7AknsκӻyMb qV!; >LTf͚"_u RI=<~H/dAYDD[>pNApݫ ` ŀO}$"Z3f̨\zQnX!vtpLp:t "CA#%Kh?k4 _ (!Lr?<=~~l`ɒ%DGG>(.(Hֲ%DE֭[ӤIrb,_\AWŀd{lH /~KBB>H`?ZZ+5kV/Yj0p%ApHgh׮8EP vsKbCxPX_xߟݻw3l0}'nVrr2G9u PP@_}|nx c|T 0 ^Rkl2z4jԈUVsc  ZtX9Sg9*y_/@Q"`, n ,`24YYj*m_&aTi0!+``ƳF$3)DHD4iҦ$44/,#S%ԯ%Eh/XC^^㇅9|^~S5 BޜM@;2Fi=^wsVZ4{i7U:'׋Pi h±c4ߙjU`XAO,7/hg+#Xd ׽^@-hn%e"boMo;sk U P_LK`O 3%Ѕ;bƿz ްfZM%P ;g8j5Ǐ~;ty43{p̮1#5ٞ+ ok<`(P@oV4=;f]ʭ6o[O[co9/.LGΙ?5l߾=se͛.S"Ο34abcb1*ߖ h \\C!%En5@s]oݺ#4r;w(`@ Pquz4seӳެ_[ix #RmÍvG 1QJ\Oyy3%|"lPUR/23`ְ? :a@E&r猷 (;J59 ./tҀ4o300&!E$ |wlݺUIk7P*]n(/ҏ$ kkGN^R|}nPTPXe{g7^ϷsF/&we{:ߦјͰ`p緈mh)b,R˖-SN;wN".&VTH̖1~9'ꫯ&2'IܲeHlܜ|yUw)VxGRy΍:?j; wFw0%<f6;d2 9H-2R)͚5w;jZ! -P@_.#'|ݷoZGj'=ѵ(~9-w8T@g]x^$:7Tp#Dcwhf"vڵN6lf;kd2Ifp!UKScǎeڵ|GrSM/3_MP@orJ͛ ŀ._yf5xv( ww{E!ڽϺH PRR¦M7d5k_f̘JUkZ47xQyuOi!Dn)55~_UB.D HH9r &V<'<H X,DGGCtt5jD֭iӦ mڴ!4P Ν;Lj#t?7oٲ%Ç>oN>MF?w&D]+aBJuŅSZ=szϏӧssw:Q`zŖ {>0 ̛7Ν;%|Rp!{6o͛ٿ[DYYY^#iWmܯ}e˖:t(zxG{ kۼRa$m9ޥSw} w~=_E-wz($>@Qn=zs^zk.~VXq$~ k ?KXGr. </fT+~D5oxmۦdUUU? }kdxiӦۗ޽{ӯ_?j\شi))):Uxg x ޼xEWk߼H/bC}S BZ*k2%!N/ĸ,Yh'77kg}&M\po7^&M#DL.=_=O=*}p{Y).F  ܜŜ Gq PWL@@ .K.9?%|p76 )tI?>' L1F4ت*XS=Ouh~G(@]sMfYi9֡C]l**n_/e$|VwaVZ1gƌ@@b S IO,IEq.'׽ő*ݛ'00P6$@lXCA D<p9rr$zYHvmepA- ӖZ-zoMv[@%<@wإ /UW]k=-Tּdb@؃ IN%&&^POk̢>&R ʢE0t,VMBݷ(@ ϸ ׋h 2z{Z H2z`"d@t88q¹+u$3Tmg*v+ߢDE@P}!^ vcP>-DXkq v=dff:$Y^#{ĕL<9R)3pNƍ#gz5/E-[*2$yj+pUx4|Q8-*8{0 ̝;VzĖH {pP+Xp!^{cyzpM16@tIs&u/WB)Rx휠<>B "2o&z&cDk\wv2b*$ěk5_z@E* xN<.Hy| hȼkLCܠZ uJ<x̜9뮻oQ&St㚯Eo|Y (Dԏ7IS 0;R旉[tߴ=owߵ䲠]߇ by#p߁ξ^DC#FtRF~jt@C< ҋ@ˬBh&mm|n *++^7%W{|q./\vI| 70쾷=o+ y#PG(Jx@yy9cǎeٲer-m6Cj e pvR91 NUTh~ё7k΍xnizGFow^HC%##QFuV##=hԐl6#W"ڋšCDJ|u*f@wMbCDe>_t@wǓO>?RJ^9@ٗ:{js R] F!PT.!g\(N<ޝ78[p2je竞Gr_~%K񠥗B ׀A|3fcD`QY+.&b9-?ښ^*kٷy^Z&xf{m6M4a߾}(HkpHr`NE'O?i愇4ܗJxF0Xhr㡇@N@V~U]u mA"m[tǩ~ﲲ܎$3?*'S^o+[M]{M}bmon?qNI=݉ۻeĕpw'FF6 ,* !ɠe"o}PG(y'xoӸqc-[&ue˖qw3b_I?}n3~ſj"jV ]+m ZSgR$)ZDW j%`ͼz-C @.=vJrr2vmڴ4穧⦛n" _H;'04Kt=>&p:EW@mN>|XI.MuҦEi9pe{rrr뮻thEN"Ўr IDATN OW@=HNN&99VZ]tϐ!Cسg?0/?ѭ[wT@W\EG~5b.gֆm']t:zhݺkmQ ~Kv*`KkZI8z8 (-\B $@vӧ}a$&ֽ0,Z3yZۦj /w &*-`|R6Wy)wyӋA͔|(l lz9cǎqW;"6Y ~^'P8F x>ظ[neΝ ƍt@}ݻ77qD:vȨQ8}Z_~ <&}&8,D07vJ76F, ]m?ܜ5"::l9x<ۖN2<O/r],^~[J%$YHE~-iĭ;pe 5krXTzv-i}_|7pn +VwߵFؐ9/ C;ܦ qfMT2~*V=]9q:ZXpF3 >AAD+mڴ{TlP\|A? [Nhnu+CvI8({RE5JA)(@R/QlْG}TwAQkVΓ~ _V]1@뼟׏?N4y2=/SUCOS% c  u<Oeeekǃh4 {% =7x#~~?+++Y~ !ʌx8u'{}1% c3̨D7d]>x5K^e (7 . J+Ell,:urz}ڵMnGTh%+`ܹր-X!P@!P(ɣ7f]uA|h^NG"]T&T@qqa"lxNZ*ZLR&tq;\, @9G7p9|tx$.'_& v]dN8q͛ثf=yLGp% ,T@DDm۶|\?A ';0ӇHח-[$d(O?4voRQ8E 9@4jJ1iDy [q~!d{l3`2曝^_|977 㯗cդ3|(o%׶swt(J"P-%33ӭbHkӹ{duF_/@ C9 5dKf @EK܉+(&ܹsu_C\(b6rlG_/BJˤpɢ1ٳg5344{AW*_e5-{O?O`` r }˗/7ޠQFM#\,MD"B/;[u7@%QD(e~ӾWxxF{/:BHyqa4E|8dGΟZƍs*JKKOx'4ވ ,l]μƊnDžkf/X(JCih`(п@zz:ǎ|\5p9؞.&TSJ%r3 7UW]fϞԩS1.V5 y]{o.+r';.n!uu tz G8Ƃ(JCɩmwVXXz.n{؂.ebC{5 :>Popirx_%ӍsJ҅ݸ+|ix'X4:S&MrUM 2|@ yH\XK,e\w 6DxxE\Y4 dg4 Ite7ȭ~C/T;Z 61A'\ߧ PT<~dy}.ci{#n%оLAr3l<*f xnB:cǷ|b12;̛ի.﹙Y@x8tSLva޳ PT<<z ^ⰰ0ڷo=_.ŀ|U ]ݔkm8*[=&b& Qs*^}U+~.b?gOKr/!wu~zj @зƍuwy9.ӒsK+X؍fSjI 7BtHgBZ̺ "_OwΠAXnVke~ozL>;wj YAcςI&VQo߾nrg.qO=Y+ݕx )vv-"ƵGvHLw538g}UV2wuyV^͛oÂ:w( Cҫ!Д)S_j˩CGstOcG8s Wz#!&ȳ 7O\`ԓC{o8ps77 _&~}WJd#p׋P\^@5DgfΜ9lm۶\}nl}P[:[ ߀M5*r(w6&W@me Onuz}l۶a]ohnMg= ](| %QXRRŽ;زe ۷o㤥vqDtt4m۶M6mۖvѶm[Zh?ڵ/;)..f@' 6̭@DDyqpeۻYSKřy}aawl8>/AA"W])!вs?*`&Ǐs PPP]wEYY(Ǎ>G ٨QQyyyAFFׯd[nT&&CvMLLsO-R(z8cǎUlldop6+J.EE+w+Jr:5MUVɓUף5wݫHw5iD)***P sL :'м|r/_W\}oG)wT]ۇv֍O,iYSFh |"K߮uCđTq@ӦMcw„ tM8tH,1??Z裏 4˶R 9uQ6 غ;b $~]m7x`մLO1z Ŋ'Fm\3pw3o޼rS 뮻< Bl 3<֭[=[K:tǖZv,i8hY r2t_A[u3B-%y@TXhG|LyD ̙3 . ?رc=ׄPZZJ%cƌ!0ZS !ܧ5elCj2͚5gQm9y ־g^kX|EHHHॗ^1fR%@~(ëc"##˶!n%1{*2(‚ Xԋ~^GJ*UZ cƌgϞ>fĈlٲţy녊E <-aܸqe>q!} I57x+R1C-5'D[Q] Ir`23g111>&77Nv?w~@|q4;уXg+Ryޱun63`x # /b@V@bbb1cF;t pvP<szSOtI" h.J0<"ۀW_5'.71r@M{u*=~핊QFuvbRPPmKѣ˻85n4hЀe˖VX2@U,:ǣ9oӧsu'}nyAOuqzkP͆5!YnǪUUK^c0{@YpV8{ qq6QJ_|A||IASNuaЂ ?_OJJJEw1@5acIll,k֬qƚj߀Ԕ@>̣>>&J-vgG'f>3X~m Puc]?$==y|fX/T@EQ__yꩧh޼9O>m۶~A#PT U=ݍ0>ʹi8v-*>Cq)^xN>Ͱa(.i,o@Y#~"Cj(bd e\ `؇!\/ 77ŋ|k?;w2qD&NHӦMIII!99+)(<'1EܦMVe!VV6ٳv!&Nȉ'8p[q zd'3h(Ѐ* XL30Ќ-rJNNVyEyamKB+~-+KI)..[y]TEQU?QGHQS%;\O>'j^;si#5TҥKudPsc}uvz1zh/_vYW B=.yqe -ÎS0|__nxr1IX޽!~Abw@نT.\HÆ 8qfsZ49r3g2sL"##ٳ'{`8j A`5GZf=Lp[v?c(N?X-n|z)ʫ{3|'9VBK@B3  `U/ gҤI4jԈk2.4ϟ󉈈n#%%]ւt-& Ye✤Vu/~6q5W-~vYK}o@Zj$ z|=Sa d?&6֣V7*d!p^QѣGsWкuk(u9s?? nFGrr2Vq"f5.'`L\^= .6Jhxwܶ/xWV ~~~̛73yd@hAz!\2%''}eBB T|!np1٬X+VpӳgORRRի6ͥ|L+;|((* $ya! K/6 uEć?d2K/axꩧ3LChKH4U# ۀǀweRٳg?0sUu P1,Y%K@nHII[o%<BՠR >`dSɼy۷/}Qm |r/_ُ76wg{E\Q"(jh |, t1V $pE̱c'//lZ("##U 4n݊kyY`aaaT/#m'Vx0e΀wnt%3p0m4MFtt4=z_~q6:u|]bZ ?;ϏEqז{@QdK@@CH`XhР 4|`?8_@j6d曨3]uV|$~#whѕ͠zqq$''s7%L}I!g}'|Mb6Yp!{*f%]E<OWKjLt}Ο=9 y3j4>}saxx8z+)))t֍*go |,9&>bo>~ rٳׯ_[2u+UF1COmShc/hо}{vܩ_ k׮%55(>yEUkP9{,seܹl6zEJJ ={$(( MesCVPPA8wFdcذaU~LB|*WF-j!tf߄vF^<|wEnMOsҋELxb*rr-,,dٲe{nQP` ӀpΞ=+یjEff&99tڕ~qmzi8b@ulAv9?~>Oeokژ"Qg@tZk+ S}\ORjF @YL&SN>#800O^|EڴiCbb"cƌa(uB`kWjpg27nWawp0j>iv6mYYivPi&5j$۔ˎoӥKyX~=.Ǐ_p|tpVXԩSUm/ P1H"A||cz*j@YZj֭[INֹ߭qA|MtBLL C aTsa+,,dW*GfӦM432. ?R.}x**B-ryj3M6$ 55ٳgs-C7oYYYL0M66[X_}3fD;#! NڱbfH+~9 dmE8(?{|LÇ>fa(BX՚U{ڶm֭[yG5klst/^ŋy5PM7 \)3O4Ry#FGo_3`YL{X}M?K0 U @QQZ5x/r 1͜9^zqsq&yƦApp0/WpFӲ!5G\(&VEn~Iь,*"+2ZCH O;mTa5=`Oun'࣏>(͠p73c ?pچeXv!CRG#E)Vx<@gL&(J6EK\l&zVKXXf⮻bԨQٳGIIoP$6.^K /fi=/BQ \r8 X#BΝx.BY P_=۷ogʔ)L}u I{ &o-JLB o., GbV݂ C! еf,)fZsCȚ4iOrdb&xHǎ>}:ڵsz{a1M'&_B -G1, TQ?ɤa34@9  // &; Rvm !aI-b͏kiӦls ܠnݺ,\חmwm^0t#"pԩ\ҥ*~E p[neܹ4lPYU 22Sk. T3^jg.&Wq CA@*o XnAqB-s %5[i2df͢^zr3pJXX/"gܸq.5* U4%`9~Fعs0`yyӧ*cy@iϏ#Fg}]CTxؿ??[ů !}n@R<ŊiY׮] We˥+D٣Sd|tAw ~L:3i$i׷?TVJMZ2KYr@ܡÇwߩgX5%+](@ VЇsWH۾yVhӦ >( Wsв*CV0!=PQ T=j,{ Cӧ9tG=zG333),] %"" VZ4lؐƍcTx>_TrB.\] 226^XȠHQ5-G+'bs9u~aZ0`#FꫯV} ??-hwH6 4zlA1>Wk"""z=^QLBBM4Yf$%%Ѿ}{Zj,{9<ddgg3`VоZȑ#UhV@u6AB[F,EV\?^*~W%6fSyI,_ٳgb'E *}1zت2* @@G -a@ K5o!!!tԉΝ;_](.hGVk~֭_:-'{@툊K:vö*l:;NϏdIMMeҥ̛77*3d7oۼCmqUj[L!' 4$##oDZݾ J; .| C%55Us9r$uUu̒@@"qV^] FiNS5jFСC,^Ee3`'))}brksZ]-MPX[Z*TOOOg޽ٳ}NVVVɕyfBBB^3Ckf4oޜ&MTz$YF > ^b|||III!99Ο?O<3tw^bcGtt7iz.l>*r "{=FX9HT~GV^˽%qPP;vk׮z4k `aq z8fH |ٯzyLFh޼yզMxDL&uwbu \β]v5Zj1f8?<#7~9 ͣmmRl¸0vQ\\̖-[ذa7nTK&AAAoߞΝ;suѥK;ܽg`rx;*o>YS:!ԩC=ѣ7tSy&޶y+𜇁i@5 14ݤ_W6f<ΫbF?ݛ+/o,5LK(£ v 4ٹs'Vu\s5tؑ+?s Bx_qq1֭+;db6С=z{\uUt1Le-11(ۈdbtmoWgŀd2Ѻe Q@fǎl߾]v~OFF6Hbb"IIIjՊ֭[ӼysP|!"tN8%KXj6l =];qF6n_>#G[nC!icFwS<¼_1Vql㨿G-hѢiii8psqJTΜ9Czz:PPP@V(K@H ,/\s(6$::H.Y4:!'OtR-ZO?t\]Dqql9Iv]\'#YxK]D%bI +&'$2EߍpYf͚Enݨ]6wk֬ xpaS < 4mDMLJ9s攤Oi7 `BxQXօF9zQ'D>}^ݻy;w.K#,Q!.cx\-ۈ/Lu/,@Ex٦Jb@g2v1"xs})gիWӻwo5ko,rͩ5F x'uQXFtD(F,jˉtq `NNgϦe˖t֍+W%=#.ٖqePic(::p$΢_ \11 Yx^dcx1ciiisX^56ҲGbR = 7PF @U@xI> LhT&tgee1qD>ވߖ@A %X Չ1@ձ3Gy3gh&CR%8L@ePSVls2c 5j /@^ቖ(`+pd[j:9=gٲe޽h#w^=_)MdS>/iѢ?'Oj -Mݲ (.~:wUP)j@n1]|H|lذ;$&6:c'ۀHjj*/{3GcorkN2Rj{?NJJ ;wfӦMn/ d;%Fk il5t?}G  PۦܹsyGu7>???(ԏH~~>yyy|̔"![3mV5>@ܝr [6L||saIeqe$Bf-8:9¨Qo=Ciٲ%5*6lHÆ ߟÛ` qF~~>'Oĉ8q'Ow^O%8Aca=Wm0ٌ; 91<ԊKPd]CB>4σ!3fkNl[Vsd)Ȯ !C[#oΠA1Lje!ʢt1 )*<E yKmE9իWkc\4nܘ}•W^YH~d扅;3BŒP&~iِ#qAa`b՞^n)ܾ_gj6{TYF,=Blt :k=GJFb ^{5 DY.wg< VO j@QĂX7jQ>qƑEӦM߿?}H!Ikrh~}aϻ^ Z?{EGjf@Qq{hH_| x_~>?&$"DWi4{?2gSNtIJ&. + Xp1.֮]]L>f=υ/Y,ԑb]?[ *&^A;t@>}:~)&MСCL ́o` ~HRXXȐ!CرcAAv~[=wXXTuѿN>e?8m 1@ cW(YBB8Ĉ# ob{MZqRxӦMٴicǎwgy={͡7:[಻l`Wv&R:\XȋBl$Ҡ7^~{ԶAvyy5[f3?8/ ?ߋ S0}L"G^v}裏_DFڐ̶_Avi߾=:uK.o߾$]/U+;C۶m=z4&رoF3/7(g]"*>3.B+(+ 8 ͱ+0'xXđ y`+WlVZ1g*@,G2 Jj[ѣ)((cŜCX$z`LoZ}||p Ï=) 22&M\III$%%]c ćtU6l$''k^N\ؕ$;rǢNZ{tA5JH<m4x뭷OU+XH[/60ߗBx衇(((ٚPeR(󱽸իW qQ (**xxx8DFFzTCQ|~@׮]Yj=zT^;wҼysǮGvCoUg yBu<2H,ޏ_7$ 2M5|aONֱ4? /"1rG% 9"2Z爤0͸壏>Jff&&Lנ LuT@. 5A<ұcG/_NƗ( sW^Q}PNo[!0bYEz ŊXTɤ*B8В;wҽ{wdzt W8!_Zz>|ٳgk|2S> ,@UV83gw}f=K,Dqjm1 7b@&g1^ziVgDEEUxa&&TJ:W霉$DtQi,'6mˤXrHCE RG2h 6o[oQeطo[nu0P頷J;~?nٺ+.c:ۿ[Y[nKVږ8-\:L;bnYh[ٳZ a^ 5CW_}5kְc6TJ- z|ks-D$-lDG>YZa) ,`jS[oeUDMpˀ@%U,8p֦<lz!"OxϬYر#{>z%7Q9Uz5hOLhO%ZIII>ϯʏH̔$DO${DF} YpVf| CE=Y\D%ҁ+o-;3zZqGC/< Pxol駙:u۹;7o}dFClu%G D] {[Nv› rX}a9x&*Uu?(ꮪ:ڴQmLՒ.n 1cbȐ!|nU4!:C砅)3*|GtMO#^V1\D廽MTkuV |1FE`B=UN ˙({Xj$,8U{yg5]^fΜQyj"*ŷv]wݥQ@0&2rɪ]y8@`p >vuMT\a{>fXFOΔ)S {xCR sH ,o|YOk<0D&Oe;[ȝ5Q hS;Ep+d*GL&ՃGP IfJϟ?_Ӓ͚5c…4(@ }kժԩS=z'S'xȍl>N;_`?KSV-ٷoz&E\B3 O\2kZ\{Gh0-[FH:Mf5 VqV0oqlieȑ̝;73_5 EU! "DOҸqcuԏ p( y1 6Я_?f3:ʠ^(ς| 0щP=&wysLD?Ij&l{*""B$g-@;=P ճr;vw.utW^yݻ:fd"gD{~ J TÁ]>1\t/è@BwQ㬴,Z # X#>OIO0bر]&+)?jɓ'T Wg.bТjU}˷_h |wɓ'9~Fi۶dF /$N:M,Ӥ\XVX(  v=4o\9C<4*\I ]T6 O?ĉ7Lն[1"@Yf&t1 EᩪN2+WjjS֭7ns() s֒p!-f/}ׇ|2c/Bǎ;廊HcҶm[Mp wVzcU =p< }^0/ @NJA)bu֪ $zAn \Q]BϩS4qL8Q9R'D^W8AxO P ffi9I鮤"x521LVt{nf͚ANh׮fQپ" աw:7 6hjdbٚF;N#DZbȿg Y7-}Nl0\< ><EL& @>Y(..fԨQknK.  _ PA/Sjҥpk5,6Ԣ~襵ӲnZYGpo;ڊʈeۋЕ4~a:VfX|=+eStTgϞ :c'={0|}\L>f: >D\uQ*s;}gE egrsFeKw$Y *P;yZ1"C!S?^]JGǎ5_G5 S[))] ANN}%#C+oF^XqF|Lghd7EвX.⎅>xYŊϹ,A~o-+`]Ho2T(Ve4/ ƨJ111L6M%T+o!\u3|`aSƏyii[/}MgfC-s/PWbW@^="!LX!a00ptem4^sY^ q mS۷;3ѣG;-xdz:!Kb{0)iD{,thp}RI.S ڵ}޽{:fUzNUuJ1l:-JC(<@QQvTϏ#G:9˔so5A HzY%`l<x^5WvNoS+ݬ4]^6w1qF}&s|u%'de#ax-,0L!\g,M"kק_r(ˏg~.ݬ^g]iҴz{9'*+=&<2(P( q _\Qdϵtaר 6&JҘ%P,ɤBsD4୷a}㴬V+rKmW M ɀ+k?U/LNUk* al*C U 1k CT3p VohmNşӗ=g*h%A"@KRSS:u8wVx8O:WaVV*Ief~D/SUh!ƨm@M%00- _so1P9[ņLjf9`WxukSWzX+͑3 d&{t `x!\lj"|qt̓dT5$`޽%ͨjңGJW (1@DsBIR p iDDDӽ{~b@j8q"^>}g_AŒ2RBv7~fQ !N !ffҩSK~dlP5C@t89{>S*P?@-Ȅ PX '˙ߑ 3@#Ɗx^SK1@$滋L4z졔@μQ3-'OkUrpAGK ( 8x|5m@MW^D82]Hq .Tw*ҥK,K!&X|j?M dPSyW.*oYy3< ɓ'SX('Վmb!3^L#P.podP"P@V5򁙲(½˺uW 0*RUB`Μ9 7x#&kILYǽ> $ vg&#CvU? 1HPH1@B[#aCI^:u "#h% 'xw<6h8%+8e$R'@F=~]m-?/$ 6̇\K8MPn]4hck[eڋrܞ f >eQٹt ۷om4-r@y[o1СC[&jINtAbyݧcP.pϘfND 1@{cڵ׫gkO=CW{H&ćV S(割ykuyp>.Y~`P'e@Zjq˄ HO/2h-3F9 Jgwy"bW !:&Pͼׂ"2rE [v  iġ5֊ߩ,%tBgqauX xx8Wfwdtm_~w}|׺K/1l0BC+'<vK] 7oFdm۶n?>&T,Mh_$cMI& "Ȳ3b/Rnʫ bδ@E\( 'Nh Kc@@GJ4lؐdiߡhJ{k׮ͲeyG:55_I+(0<Μ3 n&e8}ZnM~ڥuCAQKо!`GǾxZyZV9W~X yB}ZjQî4xn LQ1i x/$x0 &f͚ѥK:wL.]_E }1zhڵkGJJ.QӧOg̘1DEEi>Wu!yԕ IDAT/?D@]s5>\nW@H"""HJJ"))Eo/ ::5kpwhOop8#IDh"%հ-Œ%Kظq#&{& ٌlLJ|8kpOJޙGU}&LfL6 L@ XVV֪URJWnWnUťTA[ BJEۺ"l/ $!v~<3d2If9g_yM2sIΜ|N#,l,ڲ8ؖEsgMm b60fw6fu$7:nǗANن6:hk~jkcgk+vOrVB Z|(Gk( 1z֞b"ɂU/hD~9ðagX!|bh_pD8->;njSr5pmQ]]mLdժUuYD.[JU e e DmH5+E2,75QA@Bpz,E!Ez~oĀ 6|}^]j lkS@LwbmUUħFBBVҸmX\_x47k],8IeP}vYғX/ꋏVL0qFt7.P1g*|oe[#w%>{$/t1ydn%c;nDH `pz@hI% ׾5^]njxN-3ħA5+K/I ƊHJCbvs p"DsP ''c9ߚIO^U 6'&\.yi UЖ sT78uo͛37)ь?Ç[:fEвLiz ?pڂ@}QQQa;HuZ*/UGtRYYIvv6l@Hk// dXвl,BVpzpIM5<(EW^S9ѽ*=?[,>" s[z+bŊLFp< /| ,Lv'4шAd1 xb>m}txEq.w={\"r)vidۭ~r:z  sYɰj=N!.H_'>7FۣSz)yn8$SZ>,>('| ey䑇~YL{'V}SPPK/WU[Ə@HSRXQ -W^⃣{/S58m]z>vŒ9˗s%eێf֬Y=({᣽FzK\ref'nRTTD0`0H0$//׋v9\n7K6yq'/uMVVVa\. 0Crטɲ &\j\k#v|}{{{;mmmν+3qTBss3_mm^e "C}"e[(3-Q7{DYD3h njgn}4o[XXȅ^/K>ykE>q0sVwgA())Ih1N<rj!J|eYӾGY{[ 04͠a֌ECc,sbf,Y$7A.׷[1\lK 77^_SUC3MVʼnvwСCvF$ːw%?>=P]xj!/M-A ϟoB1–qqo.`3"?5J|ʚ)@vvvb*UB ΃zB * {pw= xoRdQX D8cܩ-_? 8cl7\X>,7 uvxʐ!CʲDRUTP k y>`FT KUhS`&z2SQ( jMqqj8ix]@YbH@(z?,Y3O7opꩧ2n_/J2 ԙ 8Dw*`@Ńh?"ޖq,in\~,N%>q: O*ȣ3pH@o1 O6 '9*( Ojkв Yb j>0:uljEkZ>|Vߢ4ڕvZ-XM A xP&*Â=ku@]TpBUJGkz>,X>S&Nի321_˜1zx-NXݤID(p|ipJh:'2MEjՅ6+]۬~”wYX=J ˆb}_#YhwDG~АMȱbV7ŀ@~LY %2P8@akP_Dv2nޞ`kTW8ЬD@4gj|g)U)}0,gEdM~xW3:ι=fŀ#:ڿ"ɭiMdWf- YjQ/aS{xm]7!VKr:ϋ}=Gñic g;&?u?͙]KJJ~nͅxt{ӕ ]i˅er8pAg>%Flo~sNZj ]ܟZ0,޻ q,2nhll`wZoOe={6^[?D~zBW&@MM MM'NL0 ;ޒt)'@Ko`ډGæxY%yxA/Q]b/zάSmVAm0 kJ },2fe޼y̜9;wf=8+x$7!J$zl{/[%>@ڝ wۍGȷeæ_(.Tmʗt`[s@{{' kG߼ۛ߼ī_n+j=c'° bj "z Ybc…똦Ί … v[R2M @P`^}/-5}_lboI7_߀i'wgf# `gDyeKDY+1,,{aѢE<3X8W(MvmuY~G[׵hhnW=-> {)R9; A?]s"~>yd*NaŽ*-4* \ c=@H /0{lx q3ydnn8C[`FPߢvvv{ ~|Dӗ|>xsw0 z!+ApC>o' 6D0pD8-{ꫯfҥVrƏϜ9sz<[4v㋬8s1)P] 5qrzE7 <=y}̃W7htAp\h@}^ i8~n6 .`iyahKv""EJ7rYguVc)z*>,nwbN ,(SkÕGg#bͭ,_:u/0S UVWWS 4kh_HZ߿;~?SXt)y9z!]iXSGy9e2 W۝|;57BM4 @i qQY$}2e 7oc.qgxb~(Q"Dw9`k@o궇&|ݙ`߾}97[ Bm_ޤ,z;Vْ`BHJ棊7])uuņNW#>O3vrJEd*.PJZGT(E@\Qp 7XdsI\yʤ8pX汚_W2݋DŽtcQ6>}IPvep=(4DMsPZ8Z*>C˳;Z\(m*0xT .e}Й 0@cX6Z?G0 4fϫN89sPTTĆd{=I4<٦+yĺŤf3@kk++VWGᮀ‘i;@g ,IJF#"G= VrQ2iҤO +,U|(r1a?LZwyOep9`]%>p5cN˗gD; 5!@mW<K% Σ(E.{eI_<\ujGͫ!nJo^䋽>셳gk$E^]oMQW^y%# W ԝ TcCPY4BkDXP z㣏>{ws=cV_ջʦ+s՜jlJY H(+ǹ`ڵP'Ipɷ~mPlcӯɟ4@-5pBrI@H(q=n¹?5#!/dbhVKJ|K xi"vҰ2 }h"Njq[G;KD(4r0vZ2Z?GHxnιWİ ~ɗο-j.7/E=vu`.>uTk* 0l'c=v~%bG_{X\X"H odT\s5w#ʂ9!r0t}O?vWXY>,W7g'`Q`hp/oĿAkQ;febkQ)j]x)|.Uϋ< FcZ -;# rF0\slwNI4?83gδe~ej"zR(k3WUpUQI  !aAQ QУjW8zԁ-r/Ӧ 0\.ƜŜw #[,_~\*:@iAna9D̟?3fme, ^s0G*ד[*™[jDX1l^{nq6mmmmIsԨQL0O;sIa .P8QPwpؽ{7 ,ફŀ&j CSAedQ3c[j+$>4Maq:k>h:^H)'? gqFB?>}:WO>;',ů# (ˊn @.J})o r]waZ$/Ԫ+`7""@.e ( d~XGǎk{3<ʕ+ٰaMMM1rH8 &L#z? @&7  vtݺuJGfP5@Bw `C|O1ܩo")pB2qDK7ZV&% X Ԃ JW7-&չ}VYϻޫm}SLyKB&+Ǧq*M7 C֋aFi-GrZNk) u+;d_kq1rȴ* L3$n-PZ/[SB{o݉T?o3fޞ|EN:E1tИ `8p&hg4*(Wvе[YħLW^yeirRPP z}md \8½I3TU54+st4ѻ_=VZ۷I5ѡ( ر}W]u~aJc_wuw}y W5pZEJ40"hul솈, k ׵N-[PtttpesIZ#MU`sBZGw7G,쥾V28t؂mJsw3}tZ[7y^̙_4JXXX FGp&Z]mz9-@>[Q ԹPeW\q~ I[[+%p:nij9]bڝ^x~=OuJ!~XGϱÄQ> _믿[)d8#Yh%xjX!FhDBkK`Tṕ2SAՉÔ)Scvk/t4=b3p&Pz}ACj!Jjs|ɔǺ⋙7oAUa93Xg*`H,jpJ?bs@YYW]u YDcc#^xaܮsn Cطnnٳyg^A@wk!"G%b@xTp'Tڡ\5͐ww aзnd6&MĜ9sz|uNn Jˌ3֦.SC7`ڴi)#ٚ81ixjE\D t3PB o GwDl?aNdMN)Sanv)nJgZlڴogy&q=\ϟOqqzuJ}*fcs HտLfnj-j!ߤZB4p4{tt~V%{ᣏ>⩧0z-em6NΝK[[,O7ߜVEH*fFCZ;  1T7v,F֙3g/3t6m_*s]w]u;ŐӞyilL?;=X&XTag:,E8mOtb!>QfDU5Q,MUy壊GvS+u]Z;[#;GeGRS%61ԩS={Dcc#SLaɒ%̝;Az<_Ui2$u>rTWWs}/.@Tmu0<&QDA T P2%j @_λ5cifu;UD&yN[N -Zp~_pBvޭgr6l2F?ĉM Xz5? ,ɚlĈ<䓜p L L2 #b"h3CZȎ^63 ׹8о pw'Tµ?R]]ͥ^9Oy(@R9 ocJgg'?w^瑼Iu=3+0QŚ@i(F|/GaʕX p }+;_Q:MGC ࡇ/tܾ 7/p<W=T5dy$j:@Woyt5h 'tR.mmm̜9oϸs.k yyyZ28Xf.]O< /@si-N:>TVVZ>v_ "U1ܲ "4nj:NSJ-};39asb@^Xk]㓤*z ?5kSN4TT>uӦM'dt=N*`{{;*O<_jf腿WoROQ ,YQ145;]-c ⤳$gbH$Mm}ԷlHsa~>w*8@a%0_=˗/gɒ%f[뮻4i\s _3r!~x{[ﵵXe˖h"W1uQ,X{ȶF걠W|-2Ǯ zp aُ/yo#Y WfyxFIW=6&^jcرl~UcΜ9̙3?ɓ'sPQQa1Kݍp%>;o;)S9s&>#jakE{7kǾ0x")ވp(AKMPfem ?JV~G}0Wj <]ܞ#'9㑟ċ]oNx꾺IK^QQ .3Ȃ4>NԩS9c9))I!dUoڵ[kײj*;FEEs嬳zo:kޛ}rDD8{qE9x"2Vhr=4j{Uߤ}L0iկ~eΚ5kXf 3gcrQGQTTD0< Cl۶kRSc]TKΙ3ҭD,id ayl{ `=>74vȆ@:@ ".J|"'تr }?'ܹ;wl2SI}ٗ}Ys,FO'ձZpMrJC 'X鍺ؒDӟķ-{&$؍ <*6!h脆@U,B %  @0,ZNL":u}p.(@/\.d|^yoX?)jZ7NE"FK` rUzh20~o{OLX`:J"6 @8@g&@K9ҡ"uRMn5Fhŋ2efp9p:Fsg ug@ n$^ (999駟>&h ,<A"@e:P]Iԗ| @,&Nω'`B* # z\Yr ^w)^'X `0QU!uQ}&`%_uga>Y<H! 碷#[?I@#3MO!B*pwB`.Plc>nEZpEiΗ? t2Me q l賎bktHTOcT4\ZbНh*'(Z$eukQ蓁 1<^\Z/@jv4{80N|wajmzE-`.;~vTdsF7.v$ހ.lLn #N| L |^#~">Bʹh@- z_N09/.W\Gi3$BH E @ \3+-# b炾0 ib?BSv@R D{ȵC\f>) 5<^  F:J(׳FT_1@D9o4.q'E%sk\,qjA.N\L@ZR ,%'+R`0\9&HF pon |[ЮQRfMcFL͛7oݺ5,خW'e鹀v;wp# MUbkZ`na9nP&C6]6ڵk͛#,, ڵCfbk7_M*RӠIbժZ)4"r(L^x@]w ;1I%>>۶mömn?ZhGڵ+uA.Ǘ%M4 "<\Չ0@DDD*@].á';JOOǑ#Gp,YZ)ХKK.hӦM_IUb QLh+gM)>>7nƍAAAԩ:w.]SN,eMh_?(.@t D """QUG:҇l߾۷ox{{#<<zѬY3j( 5 6 ":Y9s2`ȑ 8Lئwp \QC` o2J<xq|믑,~`0s1b{1"&@j Z S " ""i_#zA\^_Q\D^y >\|e󦤤/ヒ~:'% OOO 8&L@Ϟ=a08G7c}v`\hDf_`t׀˩j<ׄV2!3Q7D@e_AA>uaݺuζjDe4qFlܸsx ;CACEw DDdcU(7/PUĩWp# [w5Y+V>rX'fϞ_~ rA 6$"LS\D{8d}u If3ʗP;wIJe7 ??vYQnn&M'ēO>jsI-D@D ""ށ/w xG#(p|UiYⰕZnnn.6oތz ǎm`D6v̞=sEtt4̙M &pI|(!St D$DD:`2@/ >]=NΖYlf,c@[piii裏h"\z>ىhĺuagFxx]c#p5&!*\4p\t D$DDvP۵=ߤ(@믿|˗#%EȖ m6l۶ ڵԩS裏]:T !|JlKj7-cFxb-@g:@O}Q8G k K,~~'=ԩS1~x*h&GU>D9kџKǩ@O0R7 RzO¾}DE.^ӧc…xg1e%.%3@D1@DQ&w5Xm{&jHE/ҍ@D @Mp2&\ ~b!NnCJLL /EԩS] +c5d "]B.J8lx.K#1K*'N`ܹؽuPt!11gFLL ̙'|q`*R`0UHY pON>|ǷA|p}M[ c DS"3XYTT93գӧO_dž PPP :"݉ɓogSO=OϪe?Xz8$h H&m_f'砆-ރ#n0H`/Gz|#K K._ǪU`2DC{W^sرc+=5EMVbkZ "?V>7M1V}#k?ؤJbin a+8 jbKXz5D6peL8K,o~U< ,w/-Ħƛ : .Ui<Q.j+ki.ͤм?Y:,\!O>Xx15kV7 %>FDN J(|yJԘ g`mI,.I2V8 pxpyѡ9wa޼y._[kRtD$Dj^9Los-'6p;yڵKt(DN-//111ذa,X &@; +R`0ĉ`t xze;;/ڵkG *,;;Gǎqĉ"_kX9 ȉ1@AwV@deb-gjxS Ѷm[Os?3:tiӦ!3SSdž抢p @ Fڒ6 c &[n8s "GLL Zn{I8@#@EADb0@N-F; PI-2VkG:yk9 `ӦM Ê+(}/NDvqy/?3Fֿ$n rZLW@F2O(R a* vJr\~D||}.JD(իV0iRW "'9:)+e 6W4#`-| ^lڴ#"| މğ?pb2 ЙJWlL< @BB.DD/j F"/ND0@NxdMpId {T/h߾={='ҲeK̛7111Cq8׮G.]ꫯd2nEQ<~MtDe@&CNs9"ϖwW d &&f͂(?"0DEEaذah֬٭?}4>9<غu+֯_&M=/JDX-)2Np}gf6 k,IY@d\\~aL> :wEҥK8u͛Wd/Fv^۷g}fK b YX#m@Zsȸ, I,Lu*9UVصkWOF\\\%Kʕ+8tf̘ ooo|.9,%%#F@tt4uYfd2![eVHh43oH3Z#юucxGXEll,Go0J۸q#:t~Ke>9!&ȡ R[50wWe,c(Ȑ`ܸq{oa'z%K ..֢vڕ>O?[1J?:tlKq b@҃ j'dmw(: %G?G,!PFFTT >>>ׯ"##ѿ[Vks"''O<~[psGF t[BEamQy%WZ1@Q&;5O-U1eJ=z ** C MWZ5|'xEӍ%K/J0-鹅Zf>5>eah^,"" =` RrNp@ IzjEdc@TT~axz7 ݵkWX`]GD{W6"qAZbOFC|>Zwq$")0@z eo-N-P@-uHY={<裸y=B#zaȐ!Dxx8\]]Et ֬Y֭[sn)|\8Yqq {><ՅCjy^` }}1@z ev @d[Ҍ'5M5'h~N7޾`ٲe:u*,kܸ1"##1d0 C*w܁+V`СCэk֢r_VE'9IrI2rVHY&ȾR" 3/5EQ0oL\pD CTT v .@kr"@A#2*}ŋM6{U9Us?X),"rpLH@ 'uv ﳚp5Ui(L$%%a8xQhp|tS rqB>OCAFVvM+W?^ӴDN +d&P\I2nb}OdϟG~p9qAAmצMDDDdzDpSTnQ8>]`ܔVz0M~wth4bԨQ8<͛WSp a@ hi^jٸ gIF<7IWWۡ;Dn562r՗d#m9"x=BM4B_9l%i9 ?o9EQ0|߇{/`#@"'遜 ɧ(@O5`49dYa9pFbr%2"IGG`-po,w=+>v@paIbHlժU믿W_!00/k(`0Xc798>@YPFb ΐ{έ(!'zB=wtsB|-wao #~:F(QQwƃ>ckȈ0@z e@&&e Pl =Z8n0 xx#8'jƝ#8(E| ߮Tnbߏ-4N wD[GN8nݺa׮][ny^L9&Hr @Q, K䋌< ax 9s^I?#ѿOo KΥ-MN|y؀t̙3xk.4hРa`LHYb2V{ݩH "Mam`鈉 I($$Fdd$z _Tu,DZV9iP0a6qm"6(:KP|||駟˫Q2220pҒ@ =Q壩q4>Mg iC^t(#[+ӧOԩSX`Zn-:,6L˩[j7|SL@q?+0@8`W'v @F%+222WWW; \e(Hrp[Bznè0F䮭C% CTTF{Gt8% A+ɓ'cؼyHff&ݻw}f 0@z_رc_,\6///ԭ[-Z@۶mѳgOtb qA.6EGcP>=Wu 0[ash0(CY7h :u 22wyT2fU@ `0GuָrHZZ}yDN ҋL!"MKY _v VªUpҥ۞/''.\ yf̝;!!!۷/ ޽{#00簦"[$Ik~el,n(>X7Y7s [sa.@ꊎ;"** QQQS* kr~ϩ6,PV@pp0֮]={dp%&&GдiӻE4 &rnL^H6Skaٲeή-פ$_ׯ;v튈 :ׯy#I$4\ѕg˸|۷fvTA/_FϞ=GuDRcB "csI&a6vAA<bڴiٳ'!CXC4-fhTfxam-¼ylwrh~~~PU'퇮wbTQY_]͂?6 PW\, 1V=֯_6m 55' 9< @x6 @ 19=zÑ#GdŽ;cL<?~<ët^"OFzg/3 Ë~N ;_yogŊ9s0΂o5{ᇡykqbc<0kԨ/_LJ cBB~ tğ;!6 YYY#,, O>$FY:`4YW}n >q{Z+zS}]E t#g (w}~dWժUC޽{ãhYIZVnˈ+V &7l0ر.sN=/ /8"2&H/L!HqqO3<ٳgcС>}v^p\>._={Y˻4:Lj?Ҝ:u ÇG~>?ʬz۷/ЧO:jhRʄ1gytɏʡA帴 >|gΜmPΣ/e& )??嶌F#6l؀ 6[nxgϝ2ߥ6R*OUD-tU+EZ`%}r < <7}tǧ˗pwB}CQ~JijåR___|Сrr*؈J$?,YRVbw#: ٿ?ߏӧOGt Hv|yz$`6A 0ߓO8tW^ YQÆ 1p@DEE!<<C Yҁt"\=u_I 9A3o7e˖x3/@ !"`B шgN7DΞ=~ӞzMW Ho|U iCGKL&<8yP 7nDEEK.U>_mM)duOq ԲN6 {Ŗ-[ls0X 2[$%bbbpEaTY^F.}"b_}CݞWJ@Y^,ǩVjI4i?\۶mHs=V=wmB1^@˱.+WD֭gt.DN >F?Ue$pm5@jqA-WUw|Uyc qo˗ *%,, QQQxGqw:;Ų $+|OгgOLɧP7BDUV!_?G||m"+5 WO[/FN$[gElF9ǎUT9/ / *]tAdd$yԫW-\+63eT  +)]1sLy5%8p_"* 6(m]~]SrS%޽o$$$`ɨTxE!Mҽfnܙh7zo3f @ꊎ;"** Ѩ]cp15}ՅqbC7nZM_ o v+~#Gls` EBDE[kYs_٩Hc}/*{n~]h):$Hɑ/ 3"*L-rjڵ+"""0bԨ!~m?ua@mxdM\qq,gdIgԟ@p9G:ah۶-DŽZ89   @xF.W_Ah.Ҭί[~]C8h@ɧvb689n,^}UT^]tHVWO o )K6EQ0zh9sNWB^A!0бV>%@\:P&>h$:"kh%s9 @.b DGG&8_&HG ]HBa+. }I#<4 VCq}#:RP`Š+_cѢE9rd{;*(@YV+LV۩a…s1۷/||G-@8ZZ Ǧə(2 h]MHHŋ!@{Ic! `t׊^y~rXWչs\؁$&&bXj/_M*mQ7`|3> ;wb*880`___!K ռGYPJ~ K,ƍa4JހF>- 7-e^:{e!8m۶x饗0sLJTHyfVpE 6QHvprs?)#߰t+:*ۨ9)9Eu2p1㫩궜|[Ow /ӢC#?/t `P,+HOhٳZƍER!Pb}/N,,, fp}U7l.wגL@q@42I> ztСCw<-):"= s$1)>5i{ûy&1~x,EyțV$eYiiiׯEɝP!C.򵚚u)N>ͪV}bӁ&b+)~no|#:"*'Rܣj֌[*bʕ_W_9/ 9[&իY=Zaaac=F&q@=u *Ν;3gb͢C1g" )>Aw=6m?G=Ds[j ;0OWYX-+ 6رc=pqqANCnmV\"Z:6 P@JJ .\wyá 1Pwa)>k׎}*!11};#:r>miFu,5$''cĉ9puuExx8,YĴiʽ?G[j;A@=MCxq]waѢE\Wo0@z"GT777DFFC0uT3a?IH> @ƏL)r|6先,_qqqjժ\ @z 䙬'O T]qhӦ ~i$&&-[ȁ0@z"GѣGA֬Y#->jG^X'b lڴ'7"""f\~[nń PF ߼ @Q6h\ 2LtGjL̏*)) ƍCᅨ 'z"'ҥ :u$: ]۵k+:"5lX .gI$skџ[bԨQ(m(6:D#V7",, W95oA'R}<;wtGnpYѡR@-VJL&2%;StRqQ!R7;&j@+1s0w\?~.\pEFP ivOC='@*\ *6mڄ6m`Ϟ=C4GSV LHY>@aoQap`KMME޽O?n.OBC&.KCESNō7w^u;wN¼yЮ*\} *Wѡm8zF+0qDDFF_"StDΊ+ I `ֻ[PZ5I %%}ŋ~ms\yVQk2r۷O?]Pvvaܹ8{,=Yf;Yih'H>:?լY-ʕ+E"o+`)#";bD _n{:ӧ1l0qIƍ߿@+ &ƊHOOĉm \\QeO{1o<]/ev} N]?N:e/DGGcȑÑ3bDڏ>@Vz>ÇC LgΜ!C[VP$ʳ _իWmyxxo߾h7q%:/{߅{iԮ][thV,&m@VV{1=ZF 6Ą nޓ&@PStDΆ i-g9ԩv؁?=.'}'ا_; PFxi ˗#66~-GuugP@YW^E'vܜyo Lz3{b*` EAlD@Tޛn*FuӦM[o᭷©SuVl۶ ?#L&ձkעI&xm~@M5ﱬ3<|TIٳ'0x`zu$FM^6β Vʙio> 6 Ժ]× Y ?/",Yqс9 Vn "m 3@1{lY] IXoزe va* _5uV5@M%Q5,dRFemu5lTK.C=$GkyZs$<Ν8`ݠʷ_DR`5#ne&`FM7.T `eթSf̙3cX[laU@cǎaXxM_[H$$$`Bv&nH ITeț(i!gj5 ӲO/\gԟ;f:$}}ވM6#} >>˗/GLL wZd vZ{Sʕ< K/TfeT`v=hZ]\,F6Q{X|^GU%ލSE~VJO̙ yWo>O6ʩ8сɌ )+`r6(fURvm̛73fʕ+tR\rźEQ0n8tuֵ` nҌES]̗O-w$ϼp߯ƁOo4֨Q#1Bm"-Ns5EB$3&Ho0OP.l? 3f)S駟bp t(99'NĶm۬z^wtI&MS&XӧOf>pzjb+0L8q"VZeݠĉUΗ|;'+ @P3gĸq0|,[iLJ~hs({f6_ɓeL ӌ'S>kA_lU8wk,IQjuxDZqcwwwSO=UaÆ Gn:W삸"i1@z#mWSoIUZ5,]'Nɓw^qʕ+裏r+RYE".rF5jѿՆt>o./k|tMsS.4 --(, 4vMP***j`۷o `V9koDB$&Ho+0޽k֬s=$!ٔ(o&.(wM*;>n׀eϛ^, Y@3%#`Ϟ= AM6ͪ9s&vލ;Yn | VY7&Do(`1cп̘1ׯM:u ֭J7 'H+S>\ 6&n;4>żme]$ӼDz*4^Z;vDzN]ZBBBUx&сɄ `CCCn:DFF'Dbblfܹ>|xB #suHUy*;>.XzGn=QVBo}ܥ^o8@C[P)9j@)9̋@mg jš5kЯ_?hc 4'\ @ A* nŪ{[ۢ|uiӪS ia~pjlZ@vvSG}~~oСC8zMs&"1&Hoq- L6 wx!YUbb"z-REHZ`4qR  )j0/=k/k|5~5>f(ki<ս2J/׻V1|p^ql~ wwwlذm۶Ez&wG c׹sg?~Cő#GDcU1119sfa īè[GBR&A^\6ժ& J.A*'b˖-br-[zyXt)ƎkIE^DU鍴K $N:طoƏu։jҰfL2RT*(]PR\eo{r|`+?"T ߬/p9UMZ K3Pd`3f`br O`ذa]+DpH$&of @o(k֬Aƍ1|XMLL &M Pذ@YM=>.Vda7OhRM\,TOMj@@Jmtu-qJu5ypB,YDtX¹bv|GܹsvDDU鍴>k4C1m4JѷoJ>K]dg mRan樍Db.,6pQ2!q@S/k#@/7uTgR6plr_Cr=z@͚5~]???[]vE^;n:`WE*`Fҏjc/7 ;_ ɓ'cǎ" ;(k|Qӯxͯv؝8:A\UIҦ[VISExw8vPƈ#]1ga1HYDAgLdCmSlPzPѣ( ƍ$w}V*dA Wl1oqm7NRPXTHܜ#N/i]mРABc5kك]v C"4pAt Dz`PE_uHzq3f 1a(ԭ@Q|a {j.=]5r(re|W$T0v kWTVc| 3۝N:t!!@ θ;̧8:(8"(!;|n][u'~ې==%%%\[n8ѽ;Պ7|cǎEii)W-%~[A2#"joX#h"TTT{-KX=Xضy{ JSn88;|fiȖ\`k8R&4F\tE(9[;WYYYxW1k,CYa= b ˆ{[*ַ81ᢣgyKSN$ .y?d$;uuu!hcn['1 NIa^n|( sNRtEBBf͚[q?|vmXܸT9 zBF ˆ[,فR;0 q5-7Mშ3^l=\|IO =iQX}YfԻ="ZXCI=K7z+RG֋cĚ5kxӧOGjj*oa/͛k.Rȭ0xjAhv_!pn1Y1w'vO .x X,ѧI Z^< o\t&,"DBQ~!}Q2tɅ^[ v\'tP6o!a4 ?%#w^FU))-^#v LxSNx}AAkL}@֥( GO ( y"L_O`!ND :˗/ǢExK1"@A WYv hPKHNKo{ ʽ yc3jx饗xKN V=N_gCC̙ZJoqơe… ~zZ1 `9 CAaD\M{Cb>n|6X"Q fεǺ>@/[xK/2Ei8v>c2cIY"O¦3pǵ^{[/_Ç& - hp9=n뫱5typƳŻ3!8%;_5#Y_ ve]/%Z0ұkUwߡN $j ꫯUTJi@: WccS*Yo+V`ռe;NIKKêUpgml\`)FQBa8R<3-O|~ӑ PiOpdAqdĄ;0cƌIKc.0~iGEb lT@v 3^9glJKKqkRRR0qD2SNߏ%Kb$\_Q 0 6y{$1 6_Ir I YwQ[VWPlݺ5& =Q{%9zbÆ 8po,̨Y8eqq W^yMMcTS">>u=܃7/-H\2"j GcBezg|c ܣ4/(?* `k|"N[.-_A1uֺ֘g⋼%Dfe!"Wج@F39Y-d"7{b1ljkqơp~y !#@a8n8[\[8JibO_~'(Fo-O(OJTk֬-C7X-gyadJ3 3-FXTT[1{믿YfXu!@2(!m fjps+ 1. U X"{Cg Q`4Aٳ'F[,?|r-et0 1mZt$K*Yw\s wWT/5ZN,(m(6`1cxK5SNb2cǎ-(k  Il\ n ꃯwI,XWPbǾ}xf ̖TBac\ve%N;.+W"99 [A2#"~ @Q[$hn͛WP5T2j*tYFQ <\9眃S[n p1N"CaDޏ \׹SO=ňZ{=tYZ$6PX,x7лwoRt5ގ &_=ϧ(Hp.ow nb#hx|WZJ]& /'(FilعsgL&!Y m8CaB[@t?]rssuVaJVv3dJa;ve{\߯Yrr > 0ٳgcݘ2e o)\qYg[ޡ62aXN6[ dW|РAڋIjpy2Nhp-:yvI7^I>}qF-Gs IH9V:z[ӣ¤@aoG 19$& W @=OXz5o,m G&B&]@yqqqx~z)ޣ` Y_~`oW ct]{12ilރsqQ2tY&d<@u3_-J3}tڵ khyVA̞=f2 D;@aoG90iX* 2 >-d@j gϞt:L\wXm `p  "Ap[^9@oG ln7f+Z~i[֮][!0K *A~X,}w&$f-GUF}9ALĨW".# q @aoGM7PRdՔ * w^2 (7?٘qć*D6 P'HtN~uoG {4CR)j@ݸ-$&vy֭-06ےDL0PIe%GV^47qӁCI:]<B@a+¦|^'y| -dDY2H^gꪫ7`ԨQD)̠A/=T Kgrݟ2@"Bo@ah0<;|~b$%%6l-0%*X^ Ll;"[zvGvQ 3h 'Zֱ͎0@Q 6G:<&l6_AqCIu.`ǖ-ĈnGjjjv 2b'2PX@RP*pp(@ fa=~Ȑ!ꫯpw駟^`߿?P y>h) zWh^b%.o\H"Ŋa׿oEkcW7$ dFE[Ѥxv r tש l޼C\\\L%n~f 聒e YBmz }=8ݛI t8ŲbU/g[RT6;0{:ۋ ܣ= 8QV49hEP؊O> BZb@] M';k׮De`z";0(@(سgP 3Sy z7E|J\tJ$ C ]7g[A2"YQ m?Cuu5?11 Qz1(_R@Ԁ =jM 3D|?G ]$x0qNܻ&33f.S\%z|X2+mۆ^'4#P[AA?  -w(@7 /?~1: p۶m%T, XB][-9(0 x{\hIiBHLLoSN9MMQub? IDATj  Lg@+ b{q0]Wo?_WLȪСPTT|2 IdDNH,]bWd$x2+5}{>`lYpB`%ߟ bjޅIN*{=pFe˖n#N?2q!)u@xsu"Y-zvv zem?nMKqg n^7KVl`.#zɡ-g /8 70ݡ}H?s~aƍXj?9 dFEPi@R퀷_kTϞ=BV'~Icu.\t@2 A?% ,^hWjbׇ]1e_ {۷o7sxcD@+vӿ]W[JLL<K͟ f4/G|i 1y#rm Ynq0.Uk/D÷sdDFx71m4xF%D8 @%-V4Ք-#f8C^S E2&!ho|ZzI^OlBg x7jfm!Zk"K߱sʕa;W " & nMhgɓd<ڈg 0,BC9"BE"uɓ;? c7"9 @F%c݅T缿}iA xij}wG?Zc#'[Nx饗O`޽u}|˰(g.`η;"Yt)6l؀-[/JPA  X,oi"z Mk3?~|AZH s 3%W43#f wܑךТ<ֹA;v@C<_s/&L_ZI[VPB~C"/FF'|7|:HP ar bΜ9_t^r%]^Fg5-@U3p?.>!bGr%bm95}I"5J0ꀲm_ʾӣ:.776m#<~> mU@nc Vud9YPS+kn ׯǚ5k  o! 2##l@|jR=z4 EB@.=~ =l&l/TN^xv3YyP"KRP"p@xVYILLĩ6 <L+%%%-350= 81M^yڵ j c@ab з@}ߏo,h7o"בVr3 ^xVrhoصfeeMl ϯ~}5V ) Os>|cL<3sN,X6lܑ$%{+8Z W%yp5ѿt ::,xWǏrF_ᮐě[wqg-v,\PkI3xUٳ~#!. hMsD`Z? =Il'3<>VCF~ n3o*.Iv8ߴid?^~zOƒ>إDjjjiL$s?wԩC)/L_P aj LZq!:tEEE(//GEE***P^^*vG=2-%%p:HKKCJJ 222L ++ m75MV:=TW~,^?xKQ. YYY\K+ qlV}0/|`s^)eqiWz7w!"@/`ʔ)]`ZtRL6 _~9 Ҝy晰XvI&2 rcشibth'dF&* ??wƮ]?_~CTyS__跌¾ #G"81 V,\oo)qm)v-!./. ]NBvr`d dգ eO>Y-SLݻq⣏>oݿ㙩@`Zo`رRN qGD 02'x^|ظq#6mڄoF`MMMػw/{%8RkS#1m|8򦡡\r >3RNSz@Gin/?>8Rn&P&2$xDŽ`eC7|+ &P$##~!/_ nwt!8_|1f͚[~dU,BDz&ZX԰*X;_|Q7:`yA2#%%%駟bQwS=w<%03?l0L8&M¤I0zhl|_ ;wCiMY0IS\XtDGjnH*JXAG>w3J+O?]aE,S=Ly?mڴ3`mzU<72S V̙xƀ ¤@޳gϞRSSm۶)>KX|>۷?ONYg3fओNؼy3.2jZлw6w?:څ.;w%#iZֆ"xdԄ0W@*DP^c+'tvڅG}+V@cc?ݻ;wg^dlXa֭طordF`&[\G0x455/_|831c }9rj?V՞'[7+ /hG%R륁v-[= ʦ;Դ0SGd!C ^&pb[JHģ>[lѣGaZ1`L< ѧ3u`Royq8xwq)ę<dF 5n0SWW>xR^^."̞=SNE||kjjp 7`ժU]I yam\78Koo.|J[\>̅02hdAq!Xb > S[yf ;K'1/z,'Pȑ#[oڅGdz&Ya9|0VX+V -- wfϞ /PVMpUW@ oðą%G.l#lguu9rD'3=&q Դ0%l4ymav?܊[TȻQ4O/3UoW+lKijP36CRz1 "45;vjԧ_Zh-0LZT+##o:,x^eD Le*LDEC}>yu|HH^SEԅOCݍM/!3sL̜9SHRd<&p8`*&E-?tԨQ *ц @3kP:u*<#]> b2=.-5%Ql)4 , 11O=ϓƩT+zHŢf(yrǻYV jL^3O82׽qFl۶M rSBcތ=h?>,`ҥ2d#2YDDf*RBE?:oHJJRXH9IRl6V\5LU x29f̘1;5y.^!Tf2S(8xFmM (H^xAً?o2^L2a\V+{9kH$: gBha 鉡A+:$<#@ Tױf}&(%\E){Q”@<}=A(m݆N;M k0 uTCWBm nW3j]VǃY8Pa5"A 6W6˗c_X;@< Кր 0dӌBZVjd&$U|颵磵Uֹ PXv*\7Tp82"@h30!dZ m$ILLĪU PR,=**hԱir->|sE1DV5j{1u. ֐@hrx XlƍʨJ'2)($jb6 }*4SL< P-nV\tE=- B+.K/7x#O0 \'2) =P bYGT5g <'HX,xאޓU B b^ a|_|@]@2XXX(޽{+D[%Ш ) ң,P-u_qqq=:Pa: E*c; --U$lF@]T 5D,j󤨨Hy}QXsZ<@&V  }3<wuOQZL- 3!}Am@B\hXvZPRR"뼜hOdKr駟) Px Gy-T>)g pyQ`'VhP!*$DlxwЭ[@25Ip=opB{シeGJYB?W0x% Pܶ={*D{@ @)} /&*A&sdA3gg-# i UC0︐<& ``KK 236 @E1/Y7u]ʇ*A&@ѣGcպY2A%`aW22ad-{Sa-WXaÆi0?h2 $"2tP|gHMM`ѺV;\i" +9XEq{H*Di0`} 5-@FXxlB '''cʕRE2[a^ 6 ;;6q'-\ꄰ -ְA  w\I@ARƍ/>il$v~AZ -0'Ć t?*5!E  50S @bA^Ţ˪*9*vfϞGGo5dj1|aÆ Slp{fǨsed$ f_Ap8`q(~8\[,Kz5uݟ@j ƻ8GДT@2 ЌQFaׯo)Q$[t:L@(AQr[Ngi7lz6gy&N>O>6s%BM @O"s0c l۶eR&P$'m@1`(@&45p8:? $ą-" =|qi6T@ 25B͛k2*M*##>mv6EaDӃ9~?PTW a o"'grSa-J#4MMMHH0ye @iiO@'~UDCDXw@ G^&mc4`G!{_ ca)h@ w\@q;3Y^Lϗ]5%abz +|嗘:u*֭[޽{a-*>|X' 9 Pd [Z dh~+ON+R`5[=/ZXDWt֕ϗ]Otj] TNN&y !gϞ=8q"֭[1c5+}8EAam@$VQ`|* < 5@oh _7D.^^V g) k`w$fffZ^^~*aکij LX䄞82(..cDE->3tDdL,(zj =Gu ޣ^J- ql.]ȧ>8%!$ D,Ʋ2_0A P&A*̜96l0D%-vi d$YŭF'7PLS`l`{qM oX"*PJ V {0;[:_wwR2 -kP(:a* og 6`ԨQP IDATtH={@m"D*ndUs" z`-嗛gŸ lg7h];[{u.yfwvʐ O 2 Byy9f̘ 6`ȑ崋n]fX lI'-׫ w>/+w*o$%[ LZsRVV>6mСCyiDvCf;]2{RV @Zn]'GZ`r,ݒ9kR=7o%djq[aN;3gb-M@SVbG5Xȇ W6/],%1;> Pn@gE|uK7]+ 8,ow*0 `𪓛~UUU T@3 HAA."|p:7=-bZUhK-݁TLIKn/ 42 Bϋ]>'*rwS@|)kf['j:">I j 8ױpBjC- PO[a^;̟?k֬I*-9"a-_w^oA-a.yncu]#>S8Gr1 $ـfx F?XfO9dB]@</?ߎz0$ C5G-R Ѝ6Q FO~*e=ZA^EubGB` 3P?| $iu3%*y|H޽{qwj |i P<@S<8p /^[q"[Ԃ m1$Y.(:Qt\46TM;? lF8?|*Y pN| A͘;w.9t  Bm*`o!qw`ȑ8sxK@!ڒi"`9.V_ l12mK*uVl:r>ךXJwٜ؟2½䦅ciQ^/^{v~P?a: .[an|>J޽z-ZL9{zA_/P^F˵Ѐ6$Z~:O*9i7 _ym,v0dZPJ_X02eee+~zZU-9 ph7h>ZKO^PYY)/`2H 3(ߟZ=z*A_3%ƍ#l <Ut6 Qrm7=-hhÎrMi{ȐTVVʉ%W _|>\s5V "2-yYN- ~aq9s&7 i$@[쫩($Eql-@᥻il!kp2b7|W *<Բf (*y#*=6nܨŕN"UW]={G!DZuG;6tRR@~XvPcБqIIIHJJ^Y)z)754Ⱡp+"p˖-xGԹT@ZC5 "cǰxb4'vƺ 0*ux-FE"gpt~}^ ,i 0JKN> ҁmqtA555+r(1-2|` 欅09o&Ν /ۙnRjО  wZ"~vV^8RzKyPR䧥+dff2TPß\MIey^u n_X0d/i`rJ!έފӧ#99&-b'E~I[/Rz%[JEYj/p$]ttڵ+D54 MeUI>,VZŴ*AhZs,]˖-#j.T6ž_ª5bA x89Al1I:ɑTS({+Mc-X~GM -;_5݋;2A|<3PYHN'qR4aŊ?>N9MW(@"7{>)v}vFx p̫(dgM@Q=%/"@KK 45n) B ^@"N>d\?>׿=h#zqM7믿Ţ@X-_<0tdW<z&f+5r |>X⭎sӘ|icT+?}/=͵$N k4K8k11o< >{ 'Za_lݺx';]X,sNL0Aeؿ?^~e͞O _ nu<c+XH+Dord:tHa5FZ- ZP-R+@ean D;k BFfɓqEa4hP9l0?%KOozW]uGwPXǒJ_f%!zI^`% YFz`.I*$Fӧ=TAr%e XaN#` ӎߟ% 0>0 3;O>#FYgӧcM8<8qWNIII /_{'W\/Fdϗh5 |!Pb U1~g'#4;#&[n#<(m9[A@gBP fsff!C0eʔ^b"_|1v؁9sয়x'q巣j'kIG[iLIIE0;?-Z0PˑT/2ۧ}7hjeqC$\yx<ʋ2SBaT\Uؗ-[֡C.ٰa7&ݑ3|5&M¤Iн;UŰaðc̛7k׮EIj73>OB+YOѥҧ%F?z;zG :A"T 2DyFBBŠ/ȓix8rz8p/^;7bӦMo?vs6  ¨Q0zh >?<IY0l III~xWyQ3,2^OObI}/}~i݀#ň&0ݮw7`-crhmmŁdg&'iWT9YN6}E?wyG]aA)!㷛٘?>ϟݨصkvލ8rZ[[ C>}0p@ 0 1x`1v=`;ō$wf/O-G Ĩ8]wwtG4MC_z i2+>(9R{0$ VdtPo>L- x@! nc?~|؟{^=zDqq1QRR2. MMM'7..ჟTtt"33FϞ=?ݻwL哎x4jTQBN쇷a#4?VqPMgdIX Y@ %^RoLHNNFcc@wލK/TU|56Z״o`hj<[A Bb݌C^^У85db9ю>.!LáC0`՞Cpq4D 'a=ijСCw|s@N >M`DN89ڈ҆fE DA">>E| hMWޭ|xUmk n 3)=>)11zh2$X-@jf)e'Ik׮3< 8B Bt}%w'-#3b Bǧ$Q:pwj/QO 2#QZXCI3<<'Ui'?Z畕}QA_rBxLzԤ3W_}5ZϹU $L"PuIYMem#7>4P?(,,[o5صk 9JV@-Bhzt|r2gEhH~ź;f„ 4g7z&*Ԅz^,X<%d]xޥEP@^Gł^z Gmxˑ{ァ@B  d^+V+|?oߎٳu6Vr%f-gC卡 G}6mME@ O"&b!-4JΗb -ޝvßi#׿qơYZ >*צ q1$s,lT5tbc>ȦnGJ`OgZz&_5~aeo 2!(k^+>UdIQcւ={g #8q!޽ƍSi ,RAfjy(k o 0&Le|7hmmE|| X,'9Ck0w\f#z L 9P]ħ%k7!jPѠӦMÒ%K"_z.aQ cW'4piaʕ1܌]vaĉ*Y50UyB7&9r (P[A Bj~g,Ғ{鮹I 6,Y>Ȑ#6nܨumV4 ɖ G~ݶmp& Twy靟cTkyeA':$X,\4ug7"- 6 !KF[BOֻHULf[<(ǎ S^bZ(o* ¶~[P?aj DBM4-AƎx7. _*@ 6+==.kfSNuMxVğ\` d=w9nQQar DBSQ*DVVo1VuM% jA =>P__;w*?f3~xN4[VPaj D/#0HN'^2bf֭\WjPPs<>sd_p`ݺuغ)2 "'d"!f@-Anߟꫯn0 Ȕ3C@$mYF 2<gm~z' (zW]u~A_fi! o5U@BBn62bPadق$& p`ҤIݺu+jk&@[ >W_}5***xK'LH",P-ZT2bB  afVh$Gz0}tY絶 O bc=/ 1 bP2zf&RRR0|2bb_3M@Ba lWaƌ]vJA| x2xNA2~) R̛78xL)’i2 D!Kz< N=TY֭\TsEk`7{"7d"a[ Nhn+hԩիoQvU*m3T4 0>>3gΔunQQ[ȯCin&>| `:׃ "! `&(XV̚5Q2Ģ!Ux7%6r`?_|J3Z8_~eۼebo DBd':u*o Qsx<Ee<  q3`f y6: .%hիV舨sXx1o+xW^  n:F 15 f%i8&;xcƌ!Cd~ܹSaEzl R,\P2[A20U@`-УGF  ]2 *"l@wfe+R|T .h4a(---EP A  An!p:T @(VX2C @@ -ܕ+W*6k)k0V?? =p@>o DB}&i-_ť ,fBmn1߯tKEhI&_~-))Vď`@`To[^d"!>S@[yKA1&m 3*f׺0<, ϟ/^A5| #Zjkk1o<(ȃ @!V;P^-hWH)’$ıfhL yT\y啲QTT~q!2"BOx iг-!j0RPXd$f¾S17Ӣ#FѣgϞx`j5&ı7%H33"8%!X=؜ŒE!E  o3,xkغu+o QTUn r)YHOqle^)!XOw k"??_Hl!C؍ jE V|xٿ":_I $@-pͼ%DMa cZLLfz5lfJ;؂XXA{.p|xWnoN{4 .?֊8+ g9=I/SMy[eeek: ڀ B4w9GpyX)7Zz5VI5-dDdv2Nnq2LGpjbѢEd>^~BYa g7>%:l3> ,cxK#_Az B4LQݤ74hjN<)@,V(+x++i0VY}U3<:{Ym1<5u"]g8Xx_J YJKQO`e蕍8^OG2@j4b\8pj׎ ġGRG,끱Y|t kpٻIB )X)*""%& RP+,ؐbG]袰E],EP!tH&dJi̽)cBl{1k.s7>V~`ƌ #p{@w% 7j FYYY,[Lu --_o.dNV b#4舄GCU .D~cg 4P?_HhՒ Gyq=PZf@S RJBotɺ@-ZDAg LZ`kA[s* aio p*SLaVϳn:G|qfO<|g! 7[~,X:[nN7@a$F~ZY/䫺W-ⳬܤ%l-G] AXn-"iLǓ̇ڶZ~=_57t#s.o6H5_Rw|̛7|EZA$ F^PZZ)/wҜ*' v <8W-לKxn\5ʲ/F7uIWkO6̙3ꫯ AνީS3f ~: pwz{jc~ivޭ: r-.NXULh P|fvE3g_ yUc"j`Sݺu|6=믿f~̹Z#9MTTT0fN>2 $ Fo4`ݺu+ðСC]rړ$-JTwoxw͎Z·;Or&wjjU Yfٜ>}:vS'8+';1A ` z Omx1-cl߾=:urɵ­%WpA3 !-W{!Q]V":]?h&yJ{\VvlhwŇ~Ȉ#Ԙl߾3f8z[9LFFPlv]wZ֓r[BFEirjbBz5TL0LZӺ >YZ-!W<1ۖxǸ; hU gMcȑxXZTBBot_[fTTT0rH_d6]v[[cor~5u(wG>^Zwm;[ƅh r,Էn!k&qO:82`8%xJD{{R}EuBx I%/6&3N<իW.:tcǎ.b]P K)+r񿝅_ҵǍ[T?&2Hwc@Y0ihy~ily͙_|{wM:8:h%-d}]ǝ +&bΟզPg$yx amذa.^lp_n|X[8 M\ZT ~ͧ Zr׳!ٶdo^^O=/vpd* ~:q\ 55?ώ9q+T!'У<凎0{l}YaLJǻ| ]0 W΃bqXIKf >y2Km$~mz2j(Ν1 ‘$ (s2oII "554N:Ezz:>}l)))!///]App0!!!AHHQQQѤI6mJLL 111lY7/p7K<̚5KuD]zMe SWsh#&ħuߩ k :ҤHNԦsX,|AviFWieuQ|I @zT#\XXݻٱc;vr1mSq1YYYdee&f͚ѦMڵ㪫"88 pz MƼyT0*1ì6bJq+F#nIM Vмg|2ZAimK O?sV/_jg]uBxI9x`֭[ٴi۷o_LuXX,?~ǏƿyyyONر#]tsδo///.JJJ;v,|P뮣W^.7̢mOqtYբᢂ'y%`йxiUEƩ`/9l#5kT}?IR7MZZM*..`ӦML;Er =x}Y,ƍg+# ,-,,|_uBx"IO ~z\6o l>^nFߛ{ӧOC۶ٳ?O8puh~ɲzw_5BvP?x=2\`-PT}OS}[@pXВez%rLIff 6﫯v`ժ2pm ^{k:607nܹ7xA0IO?`pM~˖-cٲe4o|2[oEN+;?ΐ:MDGΝ-ʒۯ&^[}]#V"=Y`eVl8W%=k = W жkCFǂgΝ6oԩ 8HF85d۷SO96( {M&$ <pfǏtR.:1_{ ʿ/F8֣: ??QFQR&M|<ȑ#iѢ=$AI@3Z cXU}Y'nVF-ٳQFk.'DZ9 eΞ_cm N`yR+`}[8q x-&99: BDzgIL2$ M\@Ѥn}:y$-bѢEDDD?#FЧO/ߡb0|x "U`4Kì (<GhhIFN?/fN 5SK֧Ejj*kԩSZUB2h\w3Oԃ~_ɃOO=zpw:jW-c >6B(Vw 0sݺV*2nΝ;ܠtsS XbxsptK 4ëPQFE,X@u}3dC62Bdv|2*þ7СCvZY5שׂSO=w}܀tGȸbit !.NBx'AMXK):: yGUqlз?܄g P?mh5 @i9hժ3f̰ >RHW_ꫯ:? k֬wuWO#GP=_䇷Pm۶<3èz UU@v6)T-Y9MS4$]`GyĺyM~f͚e9>Μ9È#l(4ӦMye $ JG`\u L&o&C!,$FTX Pm,b>NZ |M{K/qF(U}=}WM18ukәM2qK$h I[: }G߾}UqoV&@8\p.Sн{wMf5***>|8<]5}*jyO]<ӗKK@ps Bu BhтW^yEuT0-<`}Z' 9sҥ] ))8U},'Tlْq]!$ \xB9}""7UdD0k-1SNMVo]Tߟ%K\j?wܹ߮s81b|^3frX,2AJpP瞣W^øpF>Rw Y`0B TV=h*O]W_̙3_WcIW$$$0f̘/تUQ+VV̜9__\w WgZ`f@菷 "*<I@u#@ `] .4h &Mduw}݇)-gs[_[:wlnS, &$ mpB?U @CA<6 0hV> W_}뮻k/_4T١9}Gz_~/-QBN Gݑp&_A1l0^xa4lп RcQ5 r7 UVѤI?w\x S_|0k$ gqA1`[*'IgLuniW'C4$?}N_f`m-[䣏>L'|bybX{իsε5os]NJJ z #y衇h߾OIBԓ$t<ۚН-[aUbl,[Ɉ #3(66yd>c(((`رs]?OsQƍ9s=-Bԓ$tQ0f͚i&Ubm9EZt/F8|*}%`Q6$&U@AX_Uu2U#ɚJ@G9)`zz: ĉv???K.\p=Igbcc/i׮P&ܺlr:t@BB'Of֭J6`VX zMhт?!M:D>}8yf}+WdvGT{Wvĩ ,.ƍi jFwARRRݻ7k6\j`u4` ؐm&zk搘O߾}9u8v&LpH  o߾fN5jT *q`L0LZy*$P\j?w;v9ro 6\ba O /v%gÄ6!"wj3gT!a۶mՋG)UXXڵk3f 111$&&d|u퉏Ln]S4T=4Jx8*ЪU+KmJKKwlٲ{YzC#4[yL2 m_i vQ-nn `dg:~R %h:a gϞlڴm۪ǡd )**bڵ]ooowlf]>PZYE:"3(Qepm۶||J%++~tRf3{ܢvc P:c] up qqnkGwV*O{Snm۶m6yL\\`؛Fzr J!qYjŌ1L jCGٷ%DQ E;~8}êCq/vd JL2-ZЫW/^~e2N8GH  ^4mYz 8k+//g߾}94nܘKTS-,KS pI%=J>}t`A)H#j]`۶m<㴿;#G?˱#`;<`QUΑ/_~M6&P8믿Ntt+.erŅTβ[nCq0ik?ppt>rW]ՑYf}vա9UUFV16f֣zo6>&$''3|pW^Rq paK]!\$55~:(@cu^fϞMnHHH`lݺE_ V!g31">o~ϰYde7o΢E\}YIqP8@oA_IJJ?Ou86NH#@c9x )))ЪU+f3={d|+lwWc Pk*JC^1T~Tn:-cgy}_t~d=HyAܘK,!22՗! L@@q}WL0` 9r>ТE  0`>><ùb%*<57to2u~|ou7B'5OЧOBx { Jllng_ n">"<#w G}SO=/.>78X,&!ܟ$+MnU>(_=7pPPP*[cm6mԩS0 :f͚9`Bۻ–;; wvq:|,,S0gRղ Z!ۑpb`$\cpRF?}9Z\8̓ PQQqA2 99$ZjwmJSar*Ҿ]r-9PU=tR3߇*p~5ױ1c`Z#6IQ$ >%tСC<WJMtǥ j'^y&=h8Q-y'>+*Ow|TbPy4C\Wyy9cǎ%++ױ %+,nTuBI +E[oň#իP.(@IW^67_MH.4Ltd9Ѷqw#hڍ;(?g+_X"##YjAAZwɦ!p"WQTW2 @P)j;(`ĉ:S) E\ޱ]U3 5DLX۞`25}v9}{s/%bCE֞ _9W3ōl? 똗.?:\KX,p4E) PYuB#Iv5 HP0{/2k,ա\RXn(7p|C -Z;`L=_T'TteicSwMy1:6g Psa1P[$[,_T:!܉ kp߁%5yyy: yٻw0.ɺ?[&7t^OIw2zh>S.>M&mU!p1 Gq,׼ysy:ÇyGPII =0.I*'IOOgҥ 2f͚aJK/sQz`Iӎ]X`|.h:t`ҥimpFB+dp5Qu Fqذafٴlْ Νˏ?h_}}0.v@!<ř3gXp!v111=+VZ-F4|/0m4_@7n̚5k xaXOp FB\@z' f^4r뭷}Lko^x__}wz'Pj4-CeeetR F&MHLLK*VFg0pm"FIas%E Y+⒏gdFB" cټ 5?ӧO0dȐzu'o+tAjܹ>@u@*vZƎŰo۸L [h W&L®]rQ:p u>j8ʲ@Z$ Y 6tW0uT6oӧyw6lu?"uۙ0a#u< %%%è1BHyI![˾y\ c9sFuhN qZTX ͬ=83pB]^{5P$X,SX \tޭ(HIIa߾}߿^{oaYp!o6u?=so;IJJݘMra\!D[d@_^& V{ns%bD.ln(D}yyyq 7`6:t(͚5S]^ _jo.1jqbL;N&:zl޼ٱ'6Azpj[I5X p%**`)Z2 )˩kĶj˴\^Pp@׮]駟ӟĶm\{q'JKKcŊ5sX/sK7yVǹ%n`z QTTTm6mƔ)Sꪫ0͌9vکG _-=⎼ 5gY;u]LJ~ؠ?h>^PVVV$ m[onjٲeѣG=m}ll,:uSNtؑ;MWq7:: 60rH]\NIIaQ6-3}~!ڟ~ڛ?l Eػw/gftڕd=&PcQ&¾b(* ryls=瘓 ZnzxiIbŠ$Z#Gvdgg_cvΝ;IMM%==]u@6mhӦ mۖΝ;Usx  Ԏ dʕ}jùsHMM%55'ONZZ餧s((( ??^]#"" 9F&MhҤ ҤIhѢyA~Z _qzoooz-"##y '6WU1u-NDV[BT۳g{aǓlgϞL(ΪQ*j&Mıc?q|$$$up{$[,Hɔ:!܁$_5jĵ^˵^[eggcH]wPPj%ھ;=^x˙;w@  |bckUe8C՗XN"%%ZlɝwމlG.mz1QA8rT4כoɇ~haaa_;}7 *` pz*y5تAAVLin2Hk@eʕߡ6AFp0 2 WavIVFBT;Nw8/Vۚk^I^صs{ѯ\gyFi 5zH}>ʠAHNNf9hfXINWWkHURk'|›o ۛ{D?>BK6 >}Gbz@}p%.\dkzۅj*vJv6Ċ+'¥.˲eXl 0d DXXCaQ{h5,p1ƍ ۛ_f]#V#@7HDZ,&)Mu B& w bBm^gU">,@݄6mڰd㎋NRpw{Q ?L`HTXX7ݻwl63|pbbl_Xo0R@຦{^EEcǎ%3S&ۛŋ3zh^60R2i_犥"""R@l۶m۶#OftzA3>lڴ|IIINVQ pI]l?w5[RQ՟sԩS\hsqFݫ:۴i3fPCX/z@t:u"00/vɀSr 7СCIHH>MrJ2wZyغu+=s2 VZm5 (*s  :MF}g x[}\P.筷⦛n=%%%.V[?C[(kI%pެYaÆf8 x'HRRɴiϋ v2O7o޴P ,FEYYCӭ0֮]K^\vM/窱Bb2 @$ tH褕^W[9L 7Oݛ￟EA پ}C%7TFz_,8?+Wd,[Lu8BG, }}=^{-$''Ӿ}m {ӵ\OhmCmm~=u&**ӭ[7_;>\KV d2hIG l˯N0Jk86J?@UTy饗PFmݺUdCJgqT;v駟C$$$0ydn݊b!jQ4PVg.p…|G Jbbbشi?xA$޹l J[ܼ@ya4q4toooEu(|KRBo֚nJE+k#FPPPຠtSNlݺm*#^B%I3\OC=: 55Ue s͘1?,eeѻwobbb=z4~)խfu$MƮ]\ۗ[ҢE աREMLBB Q U7-= 'zbʮ-g6/iܸPA={K2dbcc'JJ<({5FJ|g,XرcYnaaaC' IDATi-+C+?ΪB5I+]KK*I[6l0Di@p=z*/"33|2 &&aÆd<7Z8qcƌL&fΜɿo|}}~ Ż_#+-NZ@ aI]3LPuP SZ9rDe@W\~KϞ=U"٬X1cФIYd ]ލ{Ctv|*OPQQѣ9{x`a]|cL2Eu(B\TQQQd׿wӭ sQJHHo妛nRei@ C0Mm&Ç)/WWfQ0dkxyy1o<,Xlu1~x6mʭʛoɩSTVCU IYYڀȶmhٲPSYY_~%&MYft֍Yf)TYK&~`<Ȅ ذaѪCV J!=nahFnz h۶-u?M.֭?}UVQQۙ={6m۶cǎ̚5~MI<Aw( aٲe,\: [,`A$ @NHHPBL$Y~=ӧOW6ٻw/gϦ}۷ow NS]v=Oֶm[mF}T!*F` x\e׮-ᥗ^> 8Xn& U ֭W]u3f`ǎN^QQ2S^d] ?HΞm=>M I@!aXo}឴1?_]^)\FÇO?ѡCաa}squѺuk&O֭[X׾cΝ;L&OΪU S]jlRG-% aA@HHMilp;۷'))Iu(B8̑#GHIIw޴jՊ'駟ձݺuR"##Yn/^^V=*B++@{0,"D݌Q`CCeז ʕ+yW Bxcǎh" B-xٸqc'N`&Л޽{?ӿա8T|e@qv2% aɬxj@QfU&+­֖9L&Mw}'[n:uz~˸q(. Ξ=H=>,7oUVq87gXT! >A rlp\s ?3ӧO_;B222Xx1/&(([nLRRR/"7oVjݺ5.={TԞУYXp#sÁ;?!܋$xΪ::zslp_̟?~1n8Μ9:$!kײvZ&MINN&""Yf-r/Q=pla(rmў[RQ5;:-{qF!-˟Ok" a@F`@8p@u!~e <;wr~zX+V-Gp؅ܜdFkXL̈́3E%W */k!D=H@x@OJ[cko3g3}tw!po;т9i8 5KsJK.?Y%fĵ΋[:Ш#*?B4 *f8/ !ܖ$ MPn #GLi]姹3L<Ӈc?IB̚5iӦ1rdV&r.3 rw䳋 QA|_q_+CN ]%omŞp֭C7”`= 0Osѹsg{̙͛3),,Tnf-ZD۶mhsr y8[=6XJ ~eҒ@/#8Qbif2N8*By(m-DϹ7k˖-CVZgIM"LJG}$&Nȗ_~:$!+0n8L-eќ mxQ5s?źB=_Ct|xV7v=]\s:" aƩPn<;O?TuvJHH`ƍXI&Ɍt!td4MB󩚋Ԭ-?6R K,Cij״gu;0YaTXM/m8y0꭪Sp+f޽{3yd/_:!#SpCFͤI8zꐄ a2s\1oG6UM.2s܄i+PPnѶ(IuB$L RxrvV2 77KAa TנAؽ{73f`IQW7k낻 2… [d7i_yh%*9b-drQ!ԓ0<;CNg BvU;5b.\Hf\CK&Z$IÐ0 CThF[JJJ:t(GQf3&l0K4KU"_e͚5t aBBBxٿ?K,!!!AY,FL@Lv|2c$aH@!~[9]X,&LMTb٬: [o]j@}yyyȷ~˖-[0x{{;.@!<@ll,3gѣ̟?VZ2| Pac[[,PA Fa-P ]̞=wyGuviݺ[vW`FeH!]hީ3X1 pS]ta…:tYf9-|!n|(*Sa#@p p"Ijw J̺ª̙.q-Fb8-sK*?Uǹ%3 l!Upzg>ݺ>M 8)=ʗ%Sٓӧ3x`^U8՚|;m#UG|mg)$ [zŢI J?2e EMb2?~0.*Lx%5;o>}8_&s-<ʩprO B >ɓ'ӹsgK0v|4x i(kI@E+N>Mjj*'OӤΩS!;; rrr(++#77sd"<< !<}:񾵂`zVXoS EћJ(2?~b׮]駟ؽ{7{aϞ=."//Fff&ݺu#33GϞ=ls\?ٳEpJA->p,]S-k7fBKLB>*PH ׎$a |,[KeO?%Ei*zÍim )R;[U,_"jy@{p]kjjؾ};۷o?kݛ>}ЧO&%%F8ojrmdN?tF-:&ńA^vsҴCep|I Xu[9v{S yǮ}aWv籑-::nn۷믳tR r  `̙\uUDDD2\u]\z,DGDG͖d2E(ޤ?D[_oϪf˖-'qYg0`Io~\+XUUYj>Yfq@LC# >4,O4C|x 5L4k *Hݻ7硇W_/q)))\q\~uZKNZmрK,`_!YgPoR WÁKKbÇ9|0AAAdeeq3b FDNecڷo'O槟~(663fY @4uN>ѾKp!t<UMd6꫹)((?7`ƍ*xT||Ǐ.cر֌-`-:"3$lT@sJ @XX,,^@2N%c5O6mEEE^{ Qnv"##E,Fb.-^-c (@tDsX`&̘13fHNlڴo( 'x: ˙rUMsKHt1$,([EwZu3>֧.`ڠD."y9Ǚ;w.ƍ3g0Z$&y[lg7ȯǩqmW_o>|I?KO?_qI7*9 g#g*T#@ʪ1|w TW[ڵkYv-7|3 `„ L0ٴi5x'v"L<}S<'#஻⮻bϞ=|[?RNcر;Ç5XyÞJTVVRTTDaa!EEE'v:jkk;uuuzʏ((O(#yRe>6}l6d2&oIbDQgOnziӸ+ZPW_ehD]veǎ'ތꩱt'_X5+k3Ǯyz<[?IaÆ駟U5iN&j~z֯_F Jl6s90j(.Sn^>?_"WԷ۽`ɸ_bp89pI= WndF֭ۉLCz>IU(F,:Uwfܹ̝;~1m4.r222NC| R}͛7#Z+UAAu yb>g^QNŗ*N%<cGxRff&F⢋.b̘16=.gKhv7_˶mؾ};۶m~c`Z ,'}l6ӷo_}ZFـJ(~KU(F2 x,8iL&?|nLBpp0K,]38~g|a~|E-hs-$‚Vs3t<7T+_ohG?޽\t4USS×_~ɗ_~W_}w}GeA*-ҳgO9 ȑ#IOOou&55 jL_tZ`T+9zbm(.V纂ݻ7gy& `Сdgg{R'.(F$Kbp#=]È'55_~Et(0ǧ sO,Kjyz x#N5O>Ѭ@)\ZƩǏχ+_MLW5EG=V;vw?R삂838s9:t(:xf"a[v{e#0Uyy9w==Bη;*:,СC6lÆ O>mMn2t|b"ZG` 0Pt ;G3 Y Cr(}q'uoj!X5PMIf-`C*$00,9s&_&~?~7,P9s88p aaacF;/`Zٶm~퉏۷S_LCIZUVСC9r$_|1-TׂTP Et`=Ct Bzns]Ȼ'-/U ަ*aN41’ԕ[GN48~8v:Qeo޽{Ҩ`zAVV{fdee[ i.}r̎=W?a֯__蠠wywy[n0qD&NHvvkm6[d͆ PD銶#OqO,c|g6| CU\>\Spp*.ٺu+[n_~a֭ڵK^&-HΝӧۗlzIPطi~pǎlذ 6駟RRbA2l||~F5*ϒ\ve;5L@[uԉN:qg7{ߚr(++jbXNTTVVRWWhUaaaC@@AAADEi[fČcY/DfچczUÑ ljF_zjV^.:$öl–-[ 8 xPFBQn&L : u.QGõuVR5HMMmMg61uuBIiZ*@za^vQ|j &?9Qo(K% s9<裢5 PΩUЎ@k :w). hzL}L@}}=~)o&PZ+40x -(>K%=DP?odz|r]=)*Æ0Er%@R)y>Wuk#ruV|M-[FNNHGBc)J;`G˞*P&W_}tѡxTRu%k1h@@hVQX G txa-[oR kNd@*x[p `ܹ~sߕK>2%\G^:Ei :vAFLTWWb ^u>3U7 HVE1kx@t^zHu'[:<#p%vŜ9sHMMkaƍjx#-ZeJ(vNJQ5j?0F5̓]²U8y:֏tªU=z4z駟s*;G"\(JśP䖕ʕ+ רrI9r$ apm`~XmZGkz>tR^x9 qg_ GQTMDȭSN]ѡxUp UdH@{]LGR$CK|L2.]M-.vMPT@L` y%&&G!:]ثj.@ ?RYz{#&\2bVZb~2a.j~o\ 2DzjGWt(q4AEX6m ݖCc)Q`%<\/ < PQ.x 5-@љJ(]t\iGDuh #Qrq$lS $I<@5l֭ ,Ȑz_Z1BQN%oQ E7;vO?%{@Jč;J^ak=qWTc?_[mp(P A(rٳ'6mDK/幗J̍]$Q@^^s̡{3جE(z Ǣ1åxCWTrIyILL *5َ $˖mِ+"("z)-ZY#+bQJ(.:Ez"66ğ]vezHE @ ׺Ujf2,XO?Miip~ [p,Q7y<.^}U&MDUr= [j(D{`JƢ -, K,!33~X-]4&}T@Pt֮]˰a#3+}`D>(G}gY(,To 3oP#Q [~"͛7sSQtd +qah{16 @>z `ǎ?cDz}v(6cD>PEPtsN&A]i. @{jLoRP୑QF}.**n#;;?Pt8;D6PEU(۵s'[A]1$;FVQ^cߩX,,^=zh",(xk澊(PEU(BTIaAPtFJ%QQpO>!;;ٳgSTT$:E'REP(Gq8@t(qiX"$IL).##\p;v?^Q|J(# yUE.RՁ('!>CIfF<`x饗ի](:HDAPڿE0m4}]Eu\\%@P^UǵQ! 0iiI:+mǎx|CY&h∏'..*S{B0pZ:bZjjjNn 򨫓1< T`X7-E/ -Ÿ&'sh ʏU@Txɞ=1b㩭cj;v{tGڵ+'%̓[iwq8vǎ#77k.X *6T@%с(r[x1~C*N]@JQ"}7x#vҷo_ Df p=P㉏O?}j,6Olǭ۶mݵ;n+z ^:ǢJ(,p'EfΜ9t҅I&k^ (XVV_^~Yb{{ <濱%^Kjʏzv)VՎƔAy-ToVAa9+j[m&qEpdzjRʜ_);Z' oxmDǡJ(vxUꪫoWĨ&R }D `$j(zƍk9xn'{.}% }B=9B{M\WB,d <;I?zKbm o׷[-}`=ꁹQG%=FѢQVUUŔ)Sزe QQQUchvZ T]+r%Jc…l62dSLaĉtܹpݕ/yB|a#U~'@HD32ToT$!!\@ ђQ._ !t>p>|lذ믿Jsb@%b,UP !:Eٽ{7r P<.: L&Y$avR/uJnG$h@7ofƌرC4`F)S4iIII?xw)/֎4/J|T}n-_ sl(ƏeŊ,_o4Up&ןJHsZhvwߕO/2igfݻ˗osNѡ1$QA%=8&:E5k "++Kt(ܑ{fgG1.F;$EmaVu\K %vڟsI{POپ};3f`˖-Iwκ3=s׻7˫WjC`ʩRff&?w7nga͚5R$ X(:E<PT\ |H6M1*.r6oLxxp<&69#)pMKؐ=Z#ČXS,nlf`>jj(82NC'eğ KHo͕'[ׅ" <-Οw_d29r$#G$''^x%KPXX(:4YpX!:E,P0x m澊U۶mGa|6 P%輝+Q@91c ֮] Pdƙt`٣$62s ,t]ZuWqV%RSSyG뮻Xd ?3ǀǢ3r2uT/:q࿛w]Iu&lڴ+Cy̅&soes15-nO(Cdd$sf'P E{~Mp, t"ʧEhE̙3,[J=+:NB' -L|8/_`!`Kn{!rr2> wb.2b["""3gwfΜ9^ |DCU("}>I6c>;^QȎg*ONN`̙#\0SO=ō7w| :$C(1*-p*Z2@1LUzK.Lѡ: !Y}@yb>eLyǜVk-ǿjc\AmGGGswrw7t?hG<>Jt{ԇrPppwTs@>}:7p̙37xCtX^WUUŭͯ$^;-oovܪ5֪;v {c yǮ|Q6N^lwGBCC[HHHWF;}dH8\=ubÑKXXǏgڴi?0*_g|ٳG`g1l0ѡU }dJf)"x{7\Ȼ7\7W^i J|&Mp1R*x!003f#йsgxUPP68%8&oIqo: L[7& 1T@1~5#@hXPPFbڴiL4Sw/},YM}+1^6mڄuԱGT)&򫠇nRryUuVzS3eu'{c1b:L54CJӏk..bv'c1E71Z*w^Lkߊ˗mn"J(FdEL.nbE9r$&L`$&bxx8/fܸq\{;v̋7߰zj.ѡ: +9s>U`y}ў-ž{O#YnӦMk{DEDw;W>$w9T f͚ŋ/(60ߔLT@1*qtd] &1SƎ֭[;_L``;j >j-* $^gFؖaKX7V^?_W3o8DwBO%_bV?? J Ȉ#>|8sZjXB_&{w0m4<͝; { svT#~ap;F55α+_XO]y3|n%, '>\+4X0i${}hp 7!k ZbD罯9r$ׯgܸq~>Ot1;[EA 3p0k|^FFfРAuYĂǽϘ1c_ ™3O?s_3ydrss]t>,iii'}-5 vjKj_9X=)_ZCKx3BYB :?1cpQqV7KP &ю … +Oyh-Z, Ti)w?Ϻj6mBxӇ/!C|Êh}P T@OD@_HHHo HKKk׮'>N;4C=n_s0z@C|GL>+Wzt_O?ѯ_?ѡ` Vm6}AucBN'!>=ٽMZR"R[ی7t}!yj؀+`NIsZ{ H4 =7ʕv{ ݻn:JYdCW\Q('vǿjkkݷo{aϞ=p1#77b*++xc$**h:t@ԩtЁ:wLΝ=oJ=Py\;?aaa?ᦛn</楗^FĨG5+ Hy}Q t,@t`aﲐ cEAe:v.ϾY&:6 eѢE̜9EOu [ xJ9yǮ|?:Y^Mn̎l. c$"E$Jw}):6KOOgʕ 8Ӱ@&.`86 Æ cٲeL:{cPI%j[?$$e В?0ydynFg<;I)"j^nMe'i IDAT '$,] ~m;z-JPMۮ] yQI'\+$hi&&NHAAPd2׿y嵐SmFhY^JyZ˜r-WcfV13gΤ_ 6Fi Pc2l6 j~ ¥x믿NNN6m={CiXuYZ[3dRp[|ʊ+ꫩ^LL 'NluҢZm!XT>uPm~ߓ$y]bͦU?ւ#Gdh WB16z{(o*L c͚5C _l4/=n)ØnpNg eٷȗ0Zϣx ]Ӈ͛7{ v ā.j >*A(coqc-;s#"$$$zj""|3/c uWAwE?nҤ7#eX`X9s&_1^ MƷ~d̍3\2h$Xb8>EV$\T pݻ7/"W^y ~v 1t. OCgU/tYYLֳ*@Bq5U׹j.R>Cѡ?7^3U@ V$&&rR]]LtY:Pd{D3BôiyFVjW3:Bu!c|as Lh} r+z1[&Z %.:+//g„ |Ciq7{ڮ9* jk]Ùgɂ m2@50(;T@<J_>CiןH;-]w ut Ԛ$'àPVJ2k z)hw؛@QQ^x!7oJor饗z]$KDAp  JJ-1sL֯_S1ItoQ EVTMx!22g}qƉ>,PrguG}s,1Z}61[Z7ZPrss=z4P$**{ϫZӒ3LU/&m ¾(֒Q!?%lhɏ{/yfxStQ EVRVT`ر\y,[Lt(r~&ˀVoH spnwsN4kn+IkۯG$0j(~wѡIrr2֭3cEk |le:,$k,|iOn/n[ &&˗3d,gP|J(`Gz){=*+}믢bt9}ۮ}# Y! $ŏ _sNF͡CD&|'tMK_ۇJ4 S] <{wy?(S^(b"+j#u/'u4v>}NٵY1U@ yό3<ѡIIII1INFЃ>ڵkw!}S5Gi3PdC#Ms4s.{^+|EW_}%:Ui@6}oaܸqMvƍu]F9oQrHX6 Upp0: 3z߭P|J(򱷇m8-拪1t~a9o !eXw rss9pCid0kGn|ƍ8q">Ν;qF:wc,JIr a_/qn:bVV>(wu P|J(wZ..w_co.ԡ_lSκ?z:(hݻw>H'1į iNO>aĉԈMRRRظq#]tiΟyFi^r+hY{e%ֹthVXaYPJ(2L@sn3[Q^)Q!o>:G;>:TbRKiwfԨQh: @V@^>VQbig}ƤI|v񟜜ƍ޽‚ h9Xm((@-Poӎ@dƉH]c3H /0p@N&>sNA16Pd Gɻw.Έv Ms,x/uWT`Ϟ=ChVLsgL%%kǟ4ݠ M61aE&lذ={(]K=U@_9탥$<С_~~~f|\8AwyChʈm6Tȗ0Hwfȑ~:amd G`i-*՚tMk/\O>aK _="iˌ;_ ޽{Eyo s.//7|S;" &T _c1N}1brs;iӦ1o +d$C?G+zP؆x̙39s<=|$y"J$:zҠG['@: |׋Q2rHuo={zjBCb8Po3=%$p腶&{@_VT@d!*_8Zٝ PmG$0@ Ə3C͚5kJNI$*:Ej};p ޹vW#"J(2f5Pe@d^T ŨFj*[IQ"X,.2~܃^~eN;4a &Bqwgܹx}j9Z?~zQT@Wpb#f۩#@NF66"K6ɂ̜9>#wy'SLFF9o˖ ? Qz ));؀kV"3iRP[[+:3XX㇨x; x衇xW}P2d?0Zmo t?Z(4-v7?1*[+=|+ 9Uɵ `ҥR;vdŊ֔($*]2$|Io\cAo\XQ|gN2 |`ֵb | +?zU]Vp bŊ>Ռ!(yX%Yƣt zp*3VPP^H^^/8^~eL&PEQ6*@;@9[{1~mIMMmb f0md/ݻw{:{gIMMFJ NQΫj K$?x:uDqq1M- E:"3i*y Ƣ/%:wLHHHw45 @>Aď *N+Yf1zhax 8"$L~T|㼳SR EfRUD^{MtSGT@J2&򫠾ۂL4'XFF?0BI2J(̤J]{(oܛj:zHI#`ok[?(Xx1ɜ0CBvp1zAbX QFPL<`ZYp0Zl6siTTH%O}R;+YrK.a„ Tk%; Zh{Bğuuie@q(:j_kz [SMyǥ(N*L x7ؾ}0Ze-dѡh I* Cz.("##Yh0JQQRynG[=Vp,jN[З|JkJ \֓noo|:u*L %;w0ZB H%#{pvMرcW]u6Rϛ74axU :|G28Xຈ7h#)EL @T@1 Pd&U#xٷo0ZA#PaA(4Y+\|///gĉ*_~z뭢tv̾SnnsIuVr]SV[afi^WC!*7:%mʊ?Pd&U'ǣ>*66 bh`UJfmF+[ @k3gd׮] HS@?laSJ1Y[t`>7)aq)]8֗2lj!_X7\ėiE|l8+&T.ю?t/?lT@1Pd'$`0zZ\uUܹSK/&ZK8`S{/_K/OP:9c 1Skj  hn|M%$P;Rn7c$M>B>.OĺOQ# D(T@ukizWqYFSTQ(S5߹ H'}e|z@ y& % C}AeXVkI,Kk)zinݡRZVJ{k۬=1$D( ";i*@;Pu\ .dѢE=?U ' iR\+5j_[[_Nyy~A੧@h9d% ȃZhgB> 7wBJvV8DYtuW祋ŅJ(m9[F9o&sϊ1%zG:6Sp]w?.F1X~%mٍmson&m@cNO 5mM&3T@T zqarJZV7OEU)qarg&rڿ{,^X߀t0o<RxҖ|Q^.O쾷aܜ/Ȉt)ZCWcND(*HU999PPPc8vP[[KYYPVV涠 !"B1 &22X"## ::$:t@JJ tؑx!``S+bxt4j(E.鄬hVm*:"}]E"8//믿^\`^2n8@(盪hn|I XunpJX}#2!i1KID@BwT4Ȕ>b *"8--<<P֭nݻw'**AK&,]o/zͰP_%_FEZQ}7RPP :4_-jŏsU7nE[Kqvu%VKX)/80` p&ڂ}MVVz"$}"s{‚dffrECQڬ(̸S_%G" X᛬^ZlP^}!? 7=V[ ZGq^6 +d%n/1T@Q C% bql6Ǿ}xO|>$$~qYgqYg1h zѪk7<)Yf{p-ࣇ@Hr邯}G={`ˤ%_ۺ 7LYuR`wVVZ 1Uh;6fŅJ(/ \jC-PWWw}w}wqUBB gĈ 0Sws=P#\~|駞ADDD|?EiX ##snX\0^|vz IDATd|B~[ίth-Z)xAl -WcQt5$6-d2ՊDQ@%\d EB֭[ǺuaС1#G6[lab*]_q`,4SvQ.]ҥK )N@:ަk0sL}]GksqqvKSN"x:,yzΜ9ZKH)dOd,ek5NKXmpX@b*U:0.lPSS÷ցѬ NJNZt?kGz7XRSSI"sYVC}\CWBG?}muҫW/Ǝ{ʯ r$LNw9%*( b4aۊ7lnW\)SHHH8s=,][qC.: E3?{gFuHd8^bIزֆ%7 І  e [)K-RrP -IЄ P$@BK($@'8"K,Y8R4R̙~GǶy8Ҝy7ݍ֩Zv؁iޢ]s7gdN>QE0đ~l&\6SB7@艩D"[oz 7pϟ+̓jŊ+pM7wsa?a(Zȷ>v_U@ Z3n/G(d \r%ޯ Yhqx>@8t2]130 !Av~4Ȳ$I~Bo@ z{Xz5V^:L04㡇F/v7ȵ!ou源p^qsMOQRؚLSXH6B$ }ޅ]xY !2innFss324K.ܹsyAB=GDXBmu7iN?]j8\wu#o0^RQ:Nၰ^ů4$"8m칶|$8@x,ޅbSQQ￟wn|6ip.u03~5,z+x]tF͈44Ġd$d 3kբ5LH0wE $?ʃ>Je3 񣝍u7KCo|xx*7pÈ9 ` 'lbEA(!Au&. ͛.wtpQ.Ss-KY;TDž+x^{- 9cq1nj(;D- bPH `"Apw2oܜIo>wrWt*KSux"aHNwؘ dY$iB!К'@B'wCC9HXMwyPL/,ٳ~;2T /g0zؘ޳}ߣ=)ĞWlHz?{ YWOBp=o. 򫯥)rC_cB-m>.OV)#DUc@pX!/Ʒx@@h4. p4nk 2FMS}{/̥{xW?4.M vZXwkou% `v}˯dLïvYfr. H `9bޅÔV be\\`h*]="zeG3fg*6I_3oҍ@FwH N$OF#y|.x$LFJL0Q"p>" ¯~+|PG*D4 `,˒$If" x `m)Fֶ˓s+ԶV#ZRg"#V{シPݎE-ubFfx;քL`'Bq!P(^2GqƝ{7gq u͕:ŊR3%q̿=3 T+:6ZBEڭl%H@ W%uM:ޅOaK{3{;G7{ܜ҄~'|wo;/q"_<`a֓  %]$ E@[xW̻B\H G.gLjX΃72S"1;~ 7?dII <̼ |ّo PAˎK) 1]6]J 8C&]!6n_)^2?;@`#ޜ mG,B(9<x ꫼Є?T'zሮ J#AX~p!+ P$&vS74bC߲ Qzګ/?] `CQ 1([H$p-.C3mOQn &MD\H###dYI]!&4J VEbrfx_* HSx莰 ?124g.cU РX&4 `"q!P r_Ʃz~7 £u#ocøx-RKjEk}|Q$dfe o|i]%L]!.$jA&9Nk֬pyog::`d޽wqjpXxOP ZY {u5G  Дbg1|1`"`D#6{シЌ̚5`7XuE`\J#&}턫r @Gϝ$jA~Ν;}S> N#vyY.XT %7D>d 7H wwQO}MЈ&TXhjj?λ M9s )Xhl\iЩ$Y ĄB A L<6li#ԥ$"h&Fϻ (--$2|i@I" :8|{ @wD̙3ƍgFzܹ˖-]}ٰlܱ$Nqe"P\I&Pܖґ 5ƻB z!\ve9 4 4uqXFsUqEM{E@Rw~.@A;NEbCwȶt<H  (KNnΝXt)24tt4T XdƸ`]cJ DB-]!o8 tv;QD]0 =Kc?t Vp<@H##@.@ lڴ sEWdH(Uk.<䓼МyإNmjYO#q,A МM6_$D ?F`(@3*̻B `f!wmwwE!!@>}H 4BM~˻Blx ,^8k`cJ WP,YDb̞=[hU(}=@D(@`( ` PBe˖g?YRc4@PnawO9\'"{1bF!Q@,U ĂBMB. ~SFѸ;@pzxLJL03~&2q@<@)4 &t.BcH `B;ApCe\~X~=(@pW*5}1(x衇xN;Mح@Yo5$ψPh :<h BcH . "9l߾=# Ĥ(!L &oɒ%K' ͦ6SL7e;H Z~zlٲE눆3˹F{f8@$.Avckբ5B (VQ2Qy{/? "@ 'lO"8޼(8s-D$ 3YgjޥQd߾ہqH;}x='Mwl>8[ 0{L-䃊<~ F w1w'n&*L4 7p^yeNWWnf,_w)F9mɋX@vڞ V:W?(;q px#J@$`DbdWObs[hJ ~  | Ip'bѢEXp!*++|_Ɗ+pM7crJr-8cyBh@b׻#9lvxG>3Ȃg@QY> nqtdʷ.e{}p#^qW٭,Y[U⵳c=pqXBH ƻ&mcn< G oz bܹgyF EezXv-R (DB9:b`ƌ_e^2;2Hw oCs^o+ >Y6'hO-=v&; KYQbH HOpP5{,>lyXav>JKKO3u].Xun:̙3w)ʈ,شi>cmOC8x<6d=A&f c ( Ơv)L-ۓvC>[;]];M~|{@Ne-I`֐@.0a7@׊ ܹsqYg3DU1 v?ޅ^N: wo`p뭷3΀$t9," &ZB )jmbDە/O+G+QkZEuop8.07$F`7[`b1\+1GuN;4N=T8) zrTo[o}gM6aժU xBO4ܕnR'Nc T{O㖐nAP6 3I :ÃG#MmvnW+wKuLP1 0OBeH Dy&OO?~:fϞ܊ȣ:RXVČ3pW\kwq;mw+\j ӻb̥1/fMP9|!BuH Gۭ` (*1k,̚5 3gĬYPQd(<… 1yd|;F@:?믿y.P Gva`o61='1ӧL LjN+2 DXBzY+ޕWګ+5ǭl%$!0HnK |-]򠮮SL1m4wq8 2nXn_ltJM 6`2zI01n{: ZDҕ6k\%C?_lق7{pQGHe;D#p$@:LlW|*jn(b{2'.bʝƤ1Q 0^H `:@v}(..Ƅ 0qDL8z(NSt Fuu5~ms9x7@ka֭8CyBD-|:SV}jBv8˗{e g-)of vCEe+we!N## "x}<ٷh4%K6_ON< YKdY.$w!y!0;=6&oJ*R#꫸袋sFȲ7x衇xBDJe6 Z.PR4+Vu@G`7rб$IZ_W~jb:,la,YȂ)?{l6ېvÊpz㙙} IDATVtEX"oAOrЮ|[;m@drj_V~&2H@rHYp(-NoUG%bKK R ޢ8b?܏X0yߏ~Gh4q}K}}gGQȱ(NY6}$wڴi^e :b2wyAQٗ c  ?V~zB92pnO.\^xa9˖-s|i! HI׿矫{ֆ6eco &ŋkzFEv} @"$D {ͦz >o<$ PTT˗ .5k 믿w) lX@A _9vvt56w1'A dt0v>,̙S喛R pqxz@+V{ … QRb fP"G;v! ҈7A@?{'Q7 H&dS{L)p\L t@>j@iUYn ,PD*@c $.  1-bU~lqndCIj@iȈTq $Ix'PUUT`ڵK UJv(BqZJyds\|kQ@j@iP{ EYY|AmNV`{=$ e&1h[%44SS#),:P"4aB1ZXp!ohwyfeFd#J_~HiD@#"sb]AIdY{xxעnR׿5^{5D8O֯_ӧ.( JEkāPFJO=KAO2 `{':`*xA"xhll5\zHɻヒ믿wD@)L)hq{g(&O COI%ejED(# @۰tRq.(0fەO-ڕ `76`Kc'bpNPZCLwU( P "E,M1c+%ԃ"F`ڴip ȑP8*ԩp0ٿ2K`vcƍDXh.4 `2"sAp ['#&L'|¯)D@G2jn(`-d{MAII}.Qfk6 Oشiz{ "HЫN"@AdbmJ!"xbf0B>#'_wf6s}@,F4;0 ԗV ˺(0$D&u(=8v@uu5r  f~M+ߞܵE@-n&NNOe(O ̞QLۅ/ ãwEV m!6$ DA! 2x<| ȁ|qS~T(s+,n(TdTւDB ̙3'r@@@<{Wآ0Z{hll d4>1 WAJDjdY.$w!9  2n@/1rA~q| (wf.w+lq_dվo$7xA_+-$)/y ED6y5^h@Ad"t@Loa_gQk͹瞋3g?] W&O /,μDB 㭷BCCRrBI@Q H Lp oOEZdݝ{)f$q'Ӣl6<裰~+w1@tȲ Kj?aޥL ±.0]Ĉ0tP} ҋ^(> ]m[T%^/rfƌXd nޥpI'4˜jOL:ϛF?~Yk%Iͻ@BT+@w]}(fcĵ+-A I9tg w}w!Ibkʼn'+6m]*uQxGqqǍJ}FxFH.yFC jEuu5jkkƎ1cUTTXf^hXwA~ujvv ӛ/:7$4?4hW#pW> FH.KE)gڮXfeH&buuup8ț#<~!V^-6& k>b׾5\8sa\`>_$SL֭[-X%6+9xMPFp*xA"߇#@wrW^bs[Cq\|S_:2ŭ ^}UO:J&MĻ!I,X) pk{޾]ވp87nOٳgzT!l#@E`|H$-_+*;l`= g"h4JhI/;@AdϽp++_bޥvS.2QQVIC]B)qv_*s\k] 8@Tj#VWlpLeab٨/I7 &X%`uFv&P>( ($Dn;"d)+lӻR'  j<8q" 8}%7 @08UUU^૎oH B[ ;nThP;Eci: SdYJ[<AdAAdqq؆9{L@k˖-ybĶP :xk2NSƈ)j CH P'_.06,m"7~(`)zڞ{ʕؽXF e{c@u@g0F(E>V c׉jc$ǒ16$dyC9!N VȲ_ڝCqG@ BrO+SZp#(@A Lk 23DȈW@ q0#2 ?2gΜil$h _%Jvv E$qH$d``BP%3$"oH rGiԣ@<߮ '̻'upHI.@ w F"`P8@.J#&}-U"?:~0w! :4Gg} I'Ļ(Q  1'`hjjjx0jz"1b @f>8Te!BAp1---?QX,8y~FH$yf 20ռK5EִGz>l@b`q+P/ob7x#4$i(lGDf u@*ܻ"Pl #@ew1! F?F(GF;7⿦w24%# 9SFHؾ}vHHwA"{b cL]aLjECe@O#,?!~_(\{(**&``ΝcP"(:DNv;fA4}\:ǑJq=_a6H @ `0ĥ^^xEqpફ](EM q@?Z[[-Ȁ'0vepxZx1X%0`{g?(`eǡ[ă F 10uf>9cJS+UUU8Mt DBۂ Y:V&=!(HSA`HA`o .hQ``F=l¾=̾1^2 Q #_ GVZ+":ܸye#Pdg]a="vgBQ000g"(hvAn2O$ncV13UT|ɏ6W`|J-eI$A3{BA #CuAr-xG/u_(˻ .P,)f1KpVv+: cZ!IQj6v'(@Q`.vK@jG>^jޥOګb2}pux'r'[rgK'@b`P a\r%ضm6Eq[qQ,~2p vkjjZ0? 6ULw\HSCs};A- ll_]żT8khUzL D@#\r7kwy',YxE u nN"# P8iQ`qH(4(S ;Xx,kO+w=]z:cn}90+  10]I_ŋc֭1 s=vQ""%4 sǿ}()+si ޥp'L(pEw0K4S{n>{1K=7_OS[@,[%I2|&QPH n**lYCλM|?lR:1}ɶ̄Q]t%nL,]BA2@gX x + P#@97x87oѤux9PzndI`c:Lw!q% F0W,㥗^OS]a"@ + :ϧa6`FMT |MTn$jn@۽#snϟ~~x`Tukʿ]jb*H r!:֭[ƻnXx1vB(@ (9g*O4J\m\& W(dJ `utGͷ'[Dj_4SjnA(\F![S<ǻ8@cx<կ^ҥKaCBz@{5 fa1;,A2@ #ŌXeH-3s|o ԫGsyDv}=z1|! d8@(GBD_8| s !`dQPvP\7ʛW)+;zFzٿ]{`;Z$r Fi> =.].}I7Vg\=CJJ]b ÎwtF8Ǽ ! 10H$x? =:::xKV\ߵ-)J_Jv (#DN `MpBW#?7f>j1ҹT\]IqsQ:P pt5Zxm8_-YL ! D|V\+WwI13Ek?վ9RSDT{1 @)0psXV"+R.懚t-7 ,(ww Ш$$H/rxBॗ^/6%. 7pÐ9X,=Lc@Q Sp:r=7Kcnnlnn̕ўx1aqvh4#b) 0*$. VXիWcݺuxU6J8 <ϫ||va=D<FO!h͎wtFLw!! '| >qzSv/a6uJI1^/_voOr:?Dۃ67ڍW.浚QtC!-[ @ @ 18_\_~9zz BkVZ3r kVwk4OGI] ab~U. #?NLH+c87_bq) ;1@bp4{1\s5H$Tdݎg}_sY ~"@12 3f"5,'|1=_0yb*7[e1v}iF/OQ&}kBcc%PͶ?bŴ/g=WI1UQ`ej(hp icRAԗGNv (8m@UBK| ޚhry{/, z%Q@b |cdS/Q> HcqMibPf-w!) D,cxAbpTkiXVǂ zr@ F`4"vtv/m} CaV`'}"`SjP ҹ A y~yرcڧ1=. ˗/uۿuP"S^7˺̼t6KPAX~pŽl.^$+L&"}CA }.]) k֬I'T+@!DEb>H~=Ԙ&J@Nlݺw PMQ:3»B@Ldxpa1m6<P!P^@ Fق^K}{/?k$!7.~6 S@NUU"}.@%c$d 4@ 18ol޼Z/G}4^y;s0@2dd">c7^ozzPy.\˝@W_MF(BKK jjjxRP\E;"@$i#r`Bae-Ac:`,˒$I,M >T BƠ7+VΣ`αѰ[ln~_O:eԎL-=.}BuPG"-[N@w6te"లzK/q$:b{T%H4 wph9^ vp1^ĈQ@e\R6=$G?~jv2 " p&HH+HV}s84VOb>ܥړbҭE 9#֭[qi.T{ŏh="1~ƸyW-{.BzYK#B͛7cjW8 `*xAbpTX~kj&M?Ϙ2Es[_Vd+tn>DW47?XFdž x c=cQ}Fr++$.8M xJ 18~kZϟgy~v!ʅnP$㲾?|F\boH ]} .B#9i&tvvw)%@D( x`} {˺ƻBߐ@_~Úbs=!I+=hnMz"bn>Lbsb34"nbC,e.)Do&;<ޥj jw r`F@@[gI:pYm$xBbpTؿk*L~Gu 0|F}L Ŗjhn! G+PH+ Inf}p888%=7J<=+\Ǝ"}$ w֮]˻cXRŞ K폳P(2!5 ;RuH.~`};ѩ`F$BA $IYfvQWWKbΜ9KɌ,`@49?^澯&C/oeωUǰg  :;۶möm0aޥd ^`{έ!;l& `hM]Oh%BCs^yA`Xpu|>}\EfFy؍nn}i@D\p`FVJk׮ŋyQP=!1Z/)y- $2$  i#N]ʁV0eG[ہ?|> d7| pxnD!t&@2 :F)E`F(@AРBΗYTr!~Ht:q[nAQQ-s 97/cp1"w|MqXWF jkCQl+IՇDY$ E  14w:c bx1iҤ?>23.nܹy=$q $3:?$Nlڴ f]JPFR@/ bRM]8?xBbh } $A՜SNߏgEG/I[|.=Wb?M޼ސbw߾B!.tȹZT@b`XOZ Y[)dk`F? 8D\3f ?xlܸK}~;zj<޹rpE`MZnF4̬gџMI1"11/Rd'&T{I2 O?{4cPhtfl_=s7gJҩ2iA/bĨz}^nM?V؜>t"nnsIev?dTy&.ȫm-ڊ_]J_`$5S|LF! jlJqS@<@NF  FK/~; Ylv=24|8JӉF)L|Qq>!:穧2PaP͎Q"F$FU:|>{j<<lvfs%^s+fqn^/@TD,)~aDi9GF{ajEF>'X%`@$3F#dYK/Y. Bs 3û啅~xq8k/nopթ;Q][/k@T( QJw (H*ǐH+V]FVtQF ;Q5k=w!;yL`43ofc. ?.]O\P2,^P]]ͻQ.va=SO^Cۇ+ S466>Jn娆G!P# r0$fM[laƻ(@Tyҳ͂R4khx31 AA GX0Hy=f4œH%N>dtMX`iB9@),6xvԔ:aU!h]yꩧpw.#oz.oB7 "1!dgu"Us/;n -lW@ 1n;yer)hnnVɌyw]ɓ'.GScEE9 @Fpŕ$u]ٌ} f!-:/u{K$X^ e@SpBZxPm@_:cwP*_19؎Ǐǻヒ9s/,샏ISgrը:b,`k"{ `2'z@$8{tΊFtw)˗/_̻0 .z2}D6@T@S@?+aј3-G|p,c%I"8Z-AY5y>]={:' &nÿo<&Ԝz5vzÝ @;#@bHȟ{  ~Q2Pvf4`}AA 4UUUXnN OjjjpM7W_}8#RGodX!"u;z  ǧ~5k.#oSTg+I(YI: H |Of'? >#uYz\{x7k.<5kV} ^A;%\h, fΜg裏{wuy}KBBM>TSz颶ZhSm-s .,uGq-  kX0d{&!L23I0IM6`ow#N}kiDH(Z\PjpxF~z^~ewV煏ڜ>6VUH%DqҥKٱc?8\r GuT3339@[, z[z# 'Bj{  c @ КOYX$nUD+..fL>fvŮ]hkk`Ȑ! 2[(*@oːܓj-)S<~$:~ᥗ^bݺu+J 0B mupXx%b PiAU>3": =C҄A"]ph: 0Ç3i$=X=XF?fy6' ݣ-.(@ & sAhܹ^+>*1ҭ $}( ҽH` :$ 0O*~i>caj9 恭 M@ Yl]_gq"ؕ@aiv'H@ ٳ4 PB2“!vs&H_H5l XR @GB`Pn1dy80+WsyF $FX^q`HP@{VVDt;ٙ 8xס;W\q}ot&P@ZĐ|(^;|YVK[K4%Dg%M&D64 Gl(v.5o6nȝwuqS uMv&C| fs"M :IJt/}~|P+OlkHS ,ʁL({סK7x#v: -1mm0R}%@%) =+/i t@Mfѐ#Wk] k: ȄŎz;{cb{  }1sL,Yצq5@ XXs%l 7 Q IDAT:PۘVgSN s p18.!aѢE^P{K[ZTٞ8O﮼Jvu1 J+lOF˖-cĉ]?n9&4®}du,,Gwk EٰE=5 0GL+W@2UVV2c V\u(niL#OLҼ12qj?9>hkjjb…̙3']4I+Ae٠o2͊&9] ~p룘 hQ@{V^i `vYF0dBA508P8!cd{P?3ϰpBfΜu(]:]`0?2U`Sz5kzj."6ofϞMfffLpo5Ђgu?W`W=/w ikkncΜ945%7O?^x3<Ǎq"@H|@@@IxkwuBkfo)BMMM[ >p4ɱ3֪Q)HIJ;_\w6.ܻ{L=4t7dL]6ȍ~#:X͟?@a{V5>s. u %D8N ˆ}E&|Q& sL6sam#>8S)//2Aî[;vc 8/Hfjc(">t^>.-wKxԕ!ރ9&>e˖1k,jkc4 p1%_K0I R@$61uk`ʜKsa׾nm;Q ,?|^~ƒ%K0?eoS`b1u])ڝ/. :Y'bw>b@!]K/'LwcРA,[S%veMZ%BHl"NU@@Kx/NlIU Lo`=%1M5'Kt#w?.܋M <j*.b***14i˗/g̘11Mt#G%!$) +`.jȵ}`t#@`vw5-mpI'1tД_ Wb„ viїFG,S4#{ڝorZjt6T5lN@~CCW_}5wuW,N_|1 ,M4Hlj>Powh,tR.t ̝E^"hH~ӧO;:4봶|իWsQGyǰ Tij<_*fL]*-xw>x` 䛦s%qٍNfΜ٣3(<#&2Iw+%Db +' YUv@T!ި3dڵr!>lw*߃+˃70ƗFBlk&1gRV5jO>$_W{y̿>Z ͭ=u zJ "'5ٛp |_ p?? 6xv駟ڵk1bD_<,ZGSWhƥ%KE|h_趈Q n~T 붙kK+̘1?<9uᬳ5fI`k]ZUG +) +yo+ wKt]+]g̘~$lڴ385kP^^lw>-Nu;?8/h[pUBd`)>{ꫯ#̱p뮻dd$\XL|Yv y"@{.mP20|QGmMtTk&YhDI6)1cjv@%K_JObwX*II@8*ײ"2nh:01MdOh7Feyqg#~:cƌ/&8iW󏻿W.},͌n͘:wuP*GENsk 0 v;1?Yf'qpwӟ4iћ08 @$10,b` 0;sitA28f◿7Io-Ї!yu5=5,A:$-aⵃM`s ghn'`ҤI)y%q[jҔl,ƣui+ Ӂ`&hWI}-1c -L3:BvtWXh 8nwov֍{"mn1a6+uJ1cƌ$]z78䓩HkfNl7m4ҕ}bhGw;f}M6yǀY|9AQ@҈"3'c+oz/J`p'C.r23-;>CL[3`;>ﺞN;ލ?蠃xW+ k2sLJ_=ܽoW7~̠#OSUWWs?a:VIluodh۶m̞=~@3CG夓N41%f2F ka\:I%DbcoUPoi>>fs,F%:Ю,[.\ &= mvygi̝;7!="&X3rߟz|JN;Gy!CxJ%sKEG5Z .»}?獳30 rχ6/ͅLYPkFdeșo /WnV}}Q ԫnqpW"?&{馛صkᐑu]_OFFr$IJff̺oG{`wx*o ȄV(ʁ ؎'o=>lw; ٙ,, s"fF%}$p~'I+y{&9ahkkG᷿-_~0x`~a8 ChM4H i  @^gЈYq}¾!c_/5M.{,|",:r 'pg%>3?x/^ߣp|*l A+4_O!< \sM&H7 -[ưaüK=Y@ P8NׁHj( }Xýi$GI:۝Z؇>l)̆{w"+vR<Ԛpp JL>9sp 7zhI08q R` vۉ5kpײvZCi_Ϝ9sҲ?ڀLVd~^7TM :I~t&t`H50 WBDMbP#PzwvM{wsyka_./̆A}c`WZu`|O~`+@n7|ŋ3|~X(@# M 0UפիWs7/{J#GP2$0T _):vPJFyۏD7@˽4d η η Ηރ8`8clbLWcƌ/[oM^PP|駟f1M Q@kj*nx CONNz+]vס54H쬬p@M{L]h^w ,H*,X^u( a_ք/<6%H<;u#!^V3n/Ɋ (/ػSWzߟlqO-gB$i6l׿u.͛СC#|Xl5 Dmᘆ[Ӎ-0У 6ptR;c9i${1=PCI%M50~0Vҍ" 1I_M3!', zw>z=,1u.8jéɋ)ETX 1# +Va,&O̥^ʂ $ٲexꩧoW\tlh!l23fw^󽱽vC1aZZZXbw}7/"dvSMq˘7o999A4ez%4 J 0}vWY}DHcNiPB"=k=<d5N/3Xdo?ы{"?TTT$/@I:jx?qYgEKg)=  m۶qpBmۖLiӦoQ@_|ロ~XM6￟%rLFGLq?%Dbgؿ`<";]#W7s=gy&gz)}nCNSME0CpW%$$B>3z!.]_|H|nvfΜu()3T5] 8@$QNt7}ڝoH1uyNWM`_=U!qR=p}1aٓsMF>Ι#GzV%c`MM O<K,^K̓Xدu%ӁEy>TG ~O 2SPIDAT[ܞQMg=.^]ί6pq[[0Zd7|۔j@G 6{wӧ'&(Im-~_1CV-?1gf̘1^2CލljjbժUMyo^iS6ΥȘA&fQ$%J`WV:{?k+*٘v竒`Ό+՘4m]ۨ@ H|; /䡇}Pvx k嘷hXc\{D FW/cCމlw阨F=H4ծv+I2Jκ P}k/ޏ(Zć%R*K(8*`3%Srwzj6oܻ'ŋy衇:u*3gdԩdf# 0-uuu\˗^x!wu+7MpPo{@X{AbqW%Db+:۝?\}$dXGc:۝Iڞp%Cj,/)..fɒ%vi%x+Vb _O~Ǝuh 1 G}s=ǪUxWijܮ4hsOQoj?~H.cy8P5%DbVsuޝn6K%KkQr&nh,sT SN9k?2***ܹs9S9s&Ih= _|}ѿm6KO?E1bĈύ*-ۍs[g5_S@$vIM3g${w> 69~$2*%K*ڹ{> Pw7`͚5lٲRSNtCÂ=B zO z) wPS\g~li9fV<,LsA\oKП^ }gln; OpI'ܜҧzjV^o~Fgqĉ?~<G̦MOxyx$3曙5k~F"n _)!Ķv;"1R@$F?;Ӗ&~qr"Z+ȵC }{>3Uuj[$rɓ۸mٲ pBT7:'2qD?p(**"##sjmmmٳ]v{nvɦMo7o5)Sh"9`ey|iIE"6R@$V(|4VHW^Kw} l51:! m֬Y,^8O,F[[6l`Æ <8EEE 4JJJ(.6~ihh`Ϟ=TVV3vWn馛^Nǻ;QD$M( seof%9{W}QN^+;Zd,hl9TpB***XjU\@ @mm-}|77u,"#%D0]ګ 0$|ͦۆ)C4 0yGBx'9yw"+?;1_HRGYF6n!JEk@F0 NHҽ C>I < ?q7y DN [%1ɨ9x(++KދH:`p"c^P@$>VV@8`$'ChWFNmI6n8V\o"z 83HH|M-m෸OaŮB=17ʜ8"@ct 7 $hlCJ̿ s9_#8PDP&z%Dcm@z Mk2mFaJr C7 /:Tzs"H|TG \TJS(O@aa!K./ :dZ q,"f@7'#)v5EHD@ ,NA@#Pm*{ cϞ=yHr| \:I_J#= `hwx}F ᆑ6)O| o1lj5(NH" X XލEDH|Pv zc>SPLq Vqr\ IjfLK?E$&Jq@ XW.ojUDrj&Јk^GɣE|ExAqt 86n5ws1[""1S@$~0^> ĵ#t[; =KZ 뇋\ p=&q%"7%DW :/f{7*t R=&TxjAqL~`o%r=ED8%Dgm#P4@?AڬXG" rIj~8j mj &{XOD,|kFO5k{@ #:@< %*^k G,/`DZH?cHX[>ʽ S.+T7,Ad y@&;Ž}qk_6jہ*c~J G>L@}"4.#ʩv^D,b LEކ#NNL@D$iQGlU %a[pLC}wQ^ &X:Fze=f8џH) ?k+*' 3US`I)Nij8NMJ*`&3`Ik,yXH YnhDMè=]hAn|8޽HB6 pIŔxB vWiX3UV:"z"t}GosG)Zo?zxunrߜ" 5 sCNw~ q <rd} Vq,m~/L"xė2!SoCH=1e{^?@#WDZ<##낷0ɀi@AIBb=ކ#"1%D t]P^ɐxi(NoY\%= {;ww}܄pn?!'S]\-ʴݐa0r_z{Naͬȵٳ[wCZz>&tp!7) y$nI%d~q0!$&yKH>MwH~Dp5$$G7'dnn.tZ G͊ =d>Lr"ɣ$ϓlAA؎p_frJ P0%%%1>>^n={·nHH>Q#J<ƥ/ 77=w(Hqǎlmm c9- 1NMk7w@tjz&gy&U?VN b$I\b0kbu[z)f lx%h44LԳsrxb~'lqgWm`ug2Dn7dNN=zE2dܷG\d jKbd\.Z*f[f@Nn:ɄSR1o{+>O=mQ֒I0KeIRE3pw2))XT&e={"ݻ7b_q * BX*0 N+V@NN>sLTmBZ`P4erf@eLWe 6 &M;=z!ZxȀd,]#GСCpm $nDMVnW=R_@rG3QP#C49F`n<٤nt:ڭuJOĦt:3c?C p # Qf tO)RۄAsI+9JXǃ d2:&;?u{ͤawILLL`<|D6 ]QQv=| Xhz}Xwv; Υ03 0tJ "qP85kD[X}!҂} '??WD5z;\9 &fO*~1i>6g /&<<].*((8#MQÿs򘕕́pڃ ,*(+Y%ώ>pkd Vo5jZ;0+W^ė~0 j d6oܥ޻x Iq ,qqq;a2WNGd#ĴZPYYɖN}H90+(D Sp8H*U؉9s*.!I#Amee8Db駟ƶm@EEE2e JJ@IjrNw3l0bW:FJN~X':CõFOfZZ`0D$8Ro Qb=lX|~Y"?HDU@mm-N ł|ʊǝwމ3j,C YMX$ 6'pصka.Ih_%=ލl,SrKW!F-.c ٳ=%$!#8R\>&+nH:8oU/޲~/S*B3Ubns l 86ԧ^+`F(!ʬyx#ۅH6{6'IFd}Q;)GCX*ХCIzpR޿~zOԂ!(Fp8cÿDZZ`۶mwD͆7=6lt:)) As8Uo& T F y"Q@?;{ͩՓ-[Jd T*D}2RٱcG 23s$;w FVi}քMtYg*rO$hr$tEO7EUF)6!6$0G4$?~z#lZG0`[SĉvZdffBLCq8(F#3Pǃ6 .E# lz ,P+C%`ݲ+&6,N.nkÀ\#L$)՞WIӸP7P$M|h"ZvߥH8: A;?֕3Z[}z ϙ3'j[d[H^_ӗ:X(5xg|F"W^"=۹s'46E7g-՘6~t[ }3Q+Gl5[̤V//Ud~56XQ J%_`'?8\dWN'˙I&QфJGךIë3P[gt y1~ow6NϚ5늞TYXXHB~[n7gU#kʀVn=F.Ttծё---A7#޽{[ ޽t}VVVҥKlCd^5^zHQyI>]]]D߾}Fwh ?sՎR`4v@V+jjUk'@ eI C`3aT_r \usepackage{mathpazo} 0 0 m -1 0.333 l -1 -0.333 l h 95.0303 651.987 m 116.893 167.2 l 518.981 200.47 l 437.233 673.849 l h 126.855 654.98 m 154.105 170.279 l 158.811 656.061 m 192.435 173.45 l 192.196 658.194 m 231.086 176.649 l 224.244 660.242 m 269.937 179.863 l 256.798 662.322 m 307.478 182.969 l 288.876 664.371 m 347.157 186.253 l 321.491 666.455 m 384.701 189.359 l 353.478 668.498 m 422.52 192.488 l 385.465 670.542 m 460.932 195.667 l 417.989 672.62 m 498.08 198.74 l 115.629 195.243 m 514.401 226.988 l 113.644 239.259 m 506.96 270.078 l 111.686 282.668 m 499.84 311.308 l 109.742 325.773 m 492.8 352.077 l 107.99 364.631 m 485.865 392.235 l 106.211 404.07 m 479.151 431.114 l 104.427 443.62 m 472.691 468.52 l 102.799 479.72 m 466.392 504.999 l 101.113 517.104 m 460.241 540.612 l 99.5389 552.013 m 454.335 574.816 l 97.9735 586.725 m 448.563 608.239 l 96.447 620.573 m 442.709 642.139 l 254 511.001 m 254.209 510.953 254.419 510.889 254.618 510.81 c 254.817 510.731 255.006 510.638 255.176 510.532 c 255.345 510.426 255.495 510.308 255.618 510.18 c 255.741 510.053 255.838 509.916 255.902 509.775 c 255.967 509.634 256 509.488 256 509.342 c 256 509.196 255.967 509.05 255.902 508.908 c 255.838 508.767 255.741 508.631 255.618 508.503 c 255.495 508.376 255.345 508.257 255.176 508.152 c 255.006 508.046 254.817 507.952 254.618 507.874 c 254.419 507.795 254.209 507.731 254 507.682 c 253.791 507.633 253.581 507.6 253.382 507.581 c 253.183 507.563 252.994 507.559 252.824 507.567 c 252.655 507.576 252.505 507.597 252.382 507.627 c 252.259 507.657 252.162 507.696 252.098 507.74 c 252.033 507.784 252 507.833 252 507.882 c 252 507.93 252.033 507.979 252.098 508.023 c 252.162 508.067 252.259 508.106 252.382 508.136 c 252.505 508.166 252.655 508.187 252.824 508.195 c 252.994 508.204 253.183 508.2 253.382 508.181 c 253.581 508.163 253.791 508.13 254 508.081 c 254.209 508.032 254.419 507.968 254.618 507.889 c 254.817 507.811 255.006 507.717 255.176 507.611 c 255.345 507.506 255.495 507.387 255.618 507.26 c 255.741 507.132 255.838 506.996 255.902 506.855 c 255.967 506.713 256 506.567 256 506.421 c 256 506.275 255.967 506.129 255.902 505.988 c 255.838 505.847 255.741 505.71 255.618 505.583 c 255.495 505.455 255.345 505.337 255.176 505.231 c 255.006 505.125 254.817 505.032 254.618 504.953 c 254.419 504.874 254.209 504.81 254 504.761 c 253.791 504.713 253.581 504.68 253.382 504.661 c 253.183 504.642 252.994 504.638 252.824 504.647 c 252.655 504.656 252.505 504.677 252.382 504.707 c 252.259 504.737 252.162 504.776 252.098 504.82 c 252.033 504.864 252 504.912 252 504.961 c 252 505.01 252.033 505.058 252.098 505.102 c 252.162 505.146 252.259 505.185 252.382 505.215 c 252.505 505.245 252.655 505.266 252.824 505.275 c 252.994 505.284 253.183 505.28 253.382 505.261 c 253.581 505.242 253.791 505.209 254 505.161 c 254.209 505.112 254.419 505.048 254.618 504.969 c 254.817 504.89 255.006 504.797 255.176 504.691 c 255.345 504.585 255.495 504.467 255.618 504.339 c 255.741 504.212 255.838 504.075 255.902 503.934 c 255.967 503.793 256 503.647 256 503.501 c 256 503.355 255.967 503.209 255.902 503.067 c 255.838 502.926 255.741 502.79 255.618 502.662 c 255.495 502.535 255.345 502.416 255.176 502.311 c 255.006 502.205 254.817 502.111 254.618 502.033 c 254.419 501.954 254.209 501.89 254 501.841 c 253.791 501.792 253.581 501.759 253.382 501.741 c 253.183 501.722 252.994 501.718 252.824 501.726 c 252.655 501.735 252.505 501.756 252.382 501.786 c 252.259 501.816 252.162 501.855 252.098 501.899 c 252.033 501.943 252 501.992 252 502.04 c 252 502.089 252.033 502.138 252.098 502.182 c 252.162 502.226 252.259 502.265 252.382 502.295 c 252.505 502.325 252.655 502.346 252.824 502.355 c 252.994 502.363 253.183 502.359 253.382 502.341 c 253.581 502.322 253.791 502.289 254 502.24 c 254.209 502.191 254.419 502.127 254.618 502.048 c 254.817 501.97 255.006 501.876 255.176 501.77 c 255.345 501.665 255.495 501.546 255.618 501.419 c 255.741 501.291 255.838 501.155 255.902 501.014 c 255.967 500.872 256 500.726 256 500.58 c 256 500.434 255.967 500.288 255.902 500.147 c 255.838 500.006 255.741 499.869 255.618 499.742 c 255.495 499.614 255.345 499.496 255.176 499.39 c 255.006 499.284 254.817 499.191 254.618 499.112 c 254.419 499.033 254.209 498.969 254 498.921 c 253.791 498.872 253.581 498.839 253.382 498.82 c 253.183 498.801 252.994 498.797 252.824 498.806 c 252.655 498.815 252.505 498.836 252.382 498.866 c 252.259 498.896 252.162 498.935 252.098 498.979 c 252.033 499.023 252 499.071 252 499.12 c 252 499.169 252.033 499.217 252.098 499.261 c 252.162 499.305 252.259 499.344 252.382 499.374 c 252.505 499.404 252.655 499.425 252.824 499.434 c 252.994 499.443 253.183 499.439 253.382 499.42 c 253.581 499.401 253.791 499.368 254 499.319 c 254.209 499.271 254.419 499.207 254.618 499.128 c 254.817 499.049 255.006 498.956 255.176 498.85 c 255.345 498.744 255.495 498.626 255.618 498.498 c 255.741 498.371 255.838 498.234 255.902 498.093 c 255.967 497.952 256 497.806 256 497.66 c 256 497.514 255.967 497.368 255.902 497.226 c 255.838 497.085 255.741 496.949 255.618 496.821 c 255.495 496.694 255.345 496.576 255.176 496.47 c 255.006 496.364 254.816 496.27 254.618 496.192 c 254.42 496.113 254.214 496.049 254 496 c 267.13 504.049 m 4.88341 0 0 -4.88341 270 508 267.13 511.951 a 6 0 0 6 264 508 e 270 508 m 265.854 513.706 l 259.146 511.527 l 259.146 504.473 l 265.854 502.294 l h 258 507.99 m 258 496 l 259.146 496 l 259.146 511.527 l h \epsilon ipe-7.2.28/doc/000077500000000000000000000000001447153670600131515ustar00rootroot00000000000000ipe-7.2.28/doc/gpl.txt000066400000000000000000001045131447153670600145000ustar00rootroot00000000000000 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 . ipe-7.2.28/doc/install.txt000066400000000000000000000172441447153670600153700ustar00rootroot00000000000000-------------------------------------------------------------------- Building and installing Ipe on Unix -------------------------------------------------------------------- **** For MAC OS X, see the separate document "macos.txt"! **** Quickstart for Linux -------------------- Note: the following quick instructions will not compile support for spell checking, because there doesn't seem to be a Debian package for QtSpell on Qt6 yet. You would need to compile that yourself if you want that, see below. If you have a recent Mint, Ubuntu, or Debian system, the following steps will install the necessary libraries and tools: sudo apt-get install build-essentials checkinstall sudo apt-get install qt6-base-dev qt6-base-dev-tools sudo apt-get install libqt6svg6 sudo apt-get install libfreetype6-dev libcairo2-dev libjpeg8-dev sudo apt-get install libpng-dev liblua5.4-dev zlib1g-dev sudo apt-get install libspiro-dev libgsl-dev curl Now you can compile and install Ipe into /usr/local: (Note that 7.x.y has to be replaced by the current Ipe version!) cd src make IPEPREFIX=/usr/local sudo checkinstall --pkgname=ipe --pkgversion=7.x.y --backup=no \ --fstrans=no --default make install IPEPREFIX=/usr/local sudo ldconfig The line with "checkinstall" makes sure that Ipe is installed as package "ipe". If you no longer need Ipe, or to remove it before compiling the next release, you can completely remove it from your system by saying sudo apt-get remove ipe If something doesn't work for you, please read below to check the details! -------------------------------------------------------------------- Detailed instructions -------------------------------------------------------------------- Required components ------------------- Before you can compile Ipe, you will need to have the following tools and libraries: * GNU make The Ipe makefiles are written for GNU make. A Linux system will already have it. On other Unix systems, GNU make is often installed as 'gmake'. Otherwise, install it yourself from www.gnu.org. Other "make" implementations will not work! * The compression library 'zlib' Very likely you already have it on your system (check for the include file "zlib.h"). If not, obtain it from "www.gzip.org/zlib" and install it. * The font library 'Freetype 2' On Linux, you most likely already have this on your system. You will need the development package (on Debian/Ubuntu, this is "libfreetype6-dev"). The original sources are at "www.freetype.org". You need version 2.1.8 or newer. * The Cairo library (version 1.8.0 or higher) The Gnome desktop uses this high-quality rendering library, so you may already have it. You will need the development package, e.g. on Debian/Ubuntu "libcairo2-dev". You can also install from sources at "www.cairographics.org". If you compile Cairo yourself, note that you only need the image, Postscript, and svg surfaces (backends). You also need freetype support, but no fontconfig. Since Ipe does not need any platform-dependent backends, Cairo should compile fine on any platform. * The libpng library You'll need the development package, e.g. on Debian/Ubuntu "libpng-dev". You can also install from source at "http://www.libpng.org". * The libjpeg library (version 6 or higher) You'll need the development package, e.g. on Debian/Ubuntu "libjpeg-dev". You can also use libjpeg-turbo instead (the package "libjpeg-turbo8-dev"), from "http://libjpeg-turbo.virtualgl.org/". * The Lua language (version 5.3 or 5.4) Lua is an embeddable scripting language. On Debian/Ubuntu, install "liblua5.4-dev". Or compile from source at "www.lua.org" - the sources are ANSI C and compile very easily. Ipe requires Lua 5.3 or 5.4. Make sure that you build a DYNAMIC library. Ipe will not work if Lua is linked statically (linking statically would include three copies of the Lua interpreter, resulting in random crashes). * The Qt 6 toolkit On Linux, you most likely already have it. On Debian/Ubuntu, you would need the packages "qt6-base-dev", "qt6-base-dev-tools", and "libqt6svg6" (the latter is the SVG plugin needed to display the icons). You can also download binaries or sources at "www.qt.io/". You only need the Qt6Core, Qt6Gui, and Qt6Widgets libraries. * The QtSpell widget If you want spell checking in your text edit fields, you'd need to compile the QtSpell widget from sources at "https://github.com/manisandro/qtspell". (There does not currently seem to be a Debian/Ubuntu package for the Qt6 version.) You then need to set IPE_SPELLCHECK, SPELL_CFLAGS, and SPELL_LIBS in config.mak. * The GNU Scientific Library This library is used to improve the precision of intersections of Bezier splines and elliptic arcs. You'll need the development package, e.g. on Debian/Ubuntu "libgsl-dev". You can also install from source at "https://www.gnu.org/software/gsl/". * The spiro library Spiro is a library for creating clothoid splines. You'll need the development package, e.g. on Debian/Ubuntu "libspiro-dev". You can also install from source at "https://github.com/fontforge/libspiro". * Pdflatex, Xelatex, Lualatex Ipe needs a PDF-producing version of Latex to convert Latex source code to Postscript/PDF. Ipe can do so through an online Latex-compilation service, or using a TeX installation on your computer. You don't need to install LaTeX to compile and try out Ipe. * The curl program To use the online Latex-compilation, Ipe calls the "curl" program. (If you have a local Latex installation, it is not needed.) Most likely you already have "curl". On Debian/Ubuntu, install the "curl" package. You can also install from source at "https://curl.haxx.se/libcurl/". Configuring and building Ipe ---------------------------- There are some pieces of information you need to provide to the Ipe build process by editing "src/config.mak" (in many cases you can also just give the definitions on the make command line, see below). You first have to indicate the location of the required components listed above. On Linux, you probably have a correctly working 'pkg-config' script, and the default settings should work. You'll have to check that the Lua package name is correct - try saying pkg-config --modversion lua5.4 If the package isn't found, try 'lua5.3', 'lua' or 'lua53', etc. Second, you have to define the Ipe directory structure. Normally, you would only need to define IPEPREFIX properly, depending on where you want Ipe to be installed. These steps will then build Ipe: cd src make make install Instead of editing "src/config.mak", you can also set the variables in the make call, e.g.: cd src make IPEPREFIX=/usr/local sudo make install IPEPREFIX=/usr/local You may need to do "make install" as root (depending on whether you have write permission to the installation location). Dynamic linking --------------- The Ipe libraries are shared libraries, and so your dynamic linker has to find "libipe*.so". If you have chosen a standard library directory for IPELIBDIR, saying "sudo ldconfig" will be enough to run Ipe. If you installed in a different location, such as "/opt/ipe7", you can make a small script called "ipe" like the following, and put it in your path: #!/bin/sh export LD_LIBRARY_PATH="/opt/ipe7/lib/:$LD_LIBRARY_PATH" /opt/ipe7/bin/ipe $* & Alternatively, you could put links to the library in a standard location: sudo ln -f -s IPELIBDIR/lib* /usr/lib sudo ldconfig -------------------------------------------------------------------- ipe-7.2.28/doc/ipe.dtd000066400000000000000000000151071447153670600144270ustar00rootroot00000000000000 ipe-7.2.28/doc/macos.txt000066400000000000000000000132611447153670600150170ustar00rootroot00000000000000-------------------------------------------------------------------- Building Ipe on Mac OS X -------------------------------------------------------------------- Ipe runs on Mac OS 10.10 (Yosemite) and higher. If you have homebrew or macports... ----------------------------------- ... then you can install the libraries that Ipe depends on simply by saying: (for homebrew) sudo brew install libpng lua cairo freetype gsl libspiro (for macports) sudo port install libpng lua cairo freetype gsl libspiro Then continue below under "Now you can compile Ipe". -------------------------------------------------------------------- Detailed instructions -------------------------------------------------------------------- * Install Xcode from the Mac App store: http://itunes.apple.com/us/app/xcode/id497799835 * Agree to the Xcode license by saying this in a terminal: sudo xcodebuild -license * Install the command line tools by saying the following in a terminal: xcode-select --install * You need to start Xcode at least once to install some additional components. Close it when it's done installing. * Get libpng, Freetype, and Cairo If you don't want to install these through macports or homebrew, you can install the three libraries from sources. + The libpng library Install from source at "http://www.libpng.org". + The font library 'Freetype 2' Install from source at "www.freetype.org". + The Cairo library The sources are at "www.cairographics.org". Compile with Freetype support, but without fontconfig. You need the Quartz and PS backend (they are enabled by default), all others are optional (disable the X11 backends to create a smaller library). * The Lua language (version 5.3 or 5.4) Lua is an embeddable scripting language. Ipe requires Lua 5.3 or 5.4. Download the prebuild binaries from http://luabinaries.sourceforge.net/download.html You need the "lua-5.3_MacOS1010_lib.tar.gz" package only. Unzip the package. Copy the header files ("lua.h" and other ".h" files) into "IPEDEPS/include" Copy "liblua53.dylib" into "IPEDEPS/lib". (Where IPEDEPS is as you set it in the previous step.) Or use "/usr/local/include" and "/usr/local/lib", and set LUA_CFLAGS and LUA_LIBS appropriately in "src/macos.mak". DO NOT install "liblua53.a" on your system, to avoid accidentally performing a static link. Alternatively, compile from source at "www.lua.org" - the sources are ANSI C and compile very easily. Make sure that you build a DYNAMIC (shared) library. Unfortunately, "make macosx" compiles a static library - but you really MUST compile a shared library, so you need to modify the Makefile! Ipe will not work if Lua is linked statically (linking statically would include three copies of the Lua interpreter, resulting in random crashes). * The GNU Scientific Library This library is used to improve the precision of intersections of Bezier splines and elliptic arcs. You can find GSL at "https://www.gnu.org/software/gsl/". It compiles cleanly on MacOS using 'configure' and 'make'. You can use either the static or the shared library version of libgsl. * The spiro library Spiro is a library for creating clothoid splines. Get the sources from "https://github.com/fontforge/libspiro". You can use either the static or the shared library version of libspiro. * Pdflatex, Xelatex, Lualatex Ipe needs a PDF-producing version of Latex to convert Latex source code to Postscript/PDF. Ipe can do so through an online Latex-compilation service, or using a TeX installation on your computer. You don't need to install LaTeX to compile and try out Ipe. If you decide to install LaTeX later, most people seem to use MacTeX (https://www.tug.org/mactex/). -------------------------------------------------------------------- * The Makefile assumes that pkg-config is available and can determine the compilation flags and libraries for the dependencies. If this is not the case, you'll need to edit 'src/macos.mak' and fill in the correct values. (You may prefer to start with 'macos-manual.mak'.) -------------------------------------------------------------------- * Now you can compile Ipe: cd src make make app * Ipe is now available as a MacOS app in "build/Ipe.app". You can start it from the command line by saying open ../build/Ipe.app (assuming you are still in the "src" directory). Or double-click on the Ipe.app icon in the Finder. You can now use the Finder to move the "Ipe.app" bundle to /Applications, or anywhere else. Note that "Ipe.app" is linked dynamically against the libraries liblua, libpng, Freetype, Cairo, libgsl, and libspiro. It will not work if you copy the bundle to a different computer that does not have (compatible versions of) the libraries in the same locations. If you used homebrew or macports to install the libraries, make sure you don't accidentally remove those packages. * You will want to add the "/Applications/Ipe.app/Contents/MacOS" directory to your path, so that you can start Ipe and use the tools ipetoipe, iperender, etc. from the command line. * If you use a local LaTeX installation, then the 'pdflatex', 'xelatex', and 'lualatex' program must be in one of these locations: * /Library/TeX/texbin * /usr/texbin * /usr/local/texbin * /usr/local/bin * /opt/local/bin If your pdflatex is somewhere else, change the PATH being searched in "Ipe.app/Contents/Info.plist". -------------------------------------------------------------------- ipe-7.2.28/doc/news.txt000066400000000000000000003157311447153670600147000ustar00rootroot00000000000000---------------------------------------------------------------------- Ipe 7.2.28 * Add "sequential text" option. * Fix centering of title in presentation stylesheet (bug #464). * Link to manual and Ipelib documentation online instead of installing it locally by default. * Add "-tolerance" option to iperender (#461). * Store document language to enable appropriate spell checking (#451). * Fix HiDPI handling on Qt6 (#470). * Fix error editing arcs (#472). * Fix error editing ellipses (#473). * Show error message during startup on Windows when Ipe was installed on a path containing accented characters (or anything else not in ASCII) (#467). * Show error message when parsing an Ipe file containing a singular ellipse (#437). * Don't perform stretch transformation that would create a singular transformation matrix (#477). ---------------------------------------------------------------------- Ipe 7.2.27 (2023-05-05) * On Linux, migrate to Qt6 (#457). Thanks Henri! * Change behaviour of transform tools to never switch the current selection (#459). * Action to deselect everything on current page. * Align center/H center/V center now aligns to the page if only one object selected (#449). * Fix absolute autosave paths (bug #433). * Add /opt/homebrew/bin to path on MacOS (#440). * Fix missing 'stroke-opacity' and 'opacity' attributes in 'ipe.dtd' (#67). * Fix crash when 'recent_files_lua' ends up empty (bug #455). * Fix missing page numbers when there is no text (bug #450). * Don't lose group's link action during group edit (bug #456). ---------------------------------------------------------------------- Ipe 7.2.26 (2022-07-16) * Allow to store autosave file in same directory as document itself. This is now also the default. (#426) * Circular graph edges no longer get broken when moving graph nodes (bug #424). * Make it possible to remap left_command on MacOS (bug #431). * Use PKG_CONFIG environment variable (#429). ---------------------------------------------------------------------- Ipe 7.2.25 (2022-06-19) Denmark Edition * Add spell-checking to text entry on Linux. * Change presentation style sheet to have 16:9 aspect ratio (#385). * Many more configuration options in prefs.canvas_style (#400 & #406). * Remove box around links in PDF output (#397). * Add 'script' text size (#410). * Use most-recently used directory in "Save" and "Save As" (#394). * Maintain a single custom string on each Ipe object. It's not used by Ipe itself, but can be used by external software or ipelets. (#409) * Add page transition effects from PDF 1.5 (Push, Cover, Uncover, Fade). * Adjust highlighting text colors in dark theme. * Fix crash when compiling with -D_GLIBCXX_ASSERTIONS (#387). * Try to simply use UTF-8 in 'runlatex.bat'. This should work at least on Windows-10 (bug #338, second case). * Upgrade Freetype in Windows package (fixes bug #411). * Show error message when a style sheet mentioned in prefs.styles cannot be read (bug #405). * Reuse PDF text resources for identical text objects (#412). * Fix losing primary selection when deselecting using rectangle drag (bug #423). ---------------------------------------------------------------------- Ipe 7.2.24 (2021-04-07) * Fix a crash on MacOS 11 El Sur by applying a patch to cairo (bug #370). * Switch from CAIRO_FILTER_FAST to CAIRO_FILTER_GOOD for decent display (essential when filming from the canvas). * Make "Select by type/attribute" ipelet work when selecting on an absolute color (#380). * Fix semi-transparent bitmaps as well as bitmaps with color keys not working in Ipepresenter (bug #9). * Fix exporting to EPS when part of the drawing lies outside the paper (bug #369). * Remember online latex service URL in a different file to avoid problems when using old and new Ipe versions. * Improve calling of external editor on Qt, so that keyboard focus is given to the external editor. * Raise Ipe window after returning from external editor on Qt, in case the editor program is still running. * New preference 'freeze_in_latex' to let the Ipe UI freeze during a Latex run. * New shell script 'iperender-par' that allows to run several instances of iperender in parallel (e.g. as part of a parallel make) (#375). * Add Lua API to access (Latex) dimensions of text object. * Silently ignore non-integer grid sizes (#372). * On MacOS 11, return to the classic toolbar underneath the title bar, because the new unified look leaves most tool buttons off the screen (bug #376). ---------------------------------------------------------------------- Ipe 7.2.23 (2020-12-24) * Shortcut for pretty display. * A maximum on the number of recent files remembered. * Improve scaling of toolbar buttons on El Sur, and add labels for the toolbar overflow menu. * Remove sources of libspiro from Ipe releases. * Remove doxygen documentation from Ipe release, run doxygen as part of the build process. ---------------------------------------------------------------------- Ipe 7.2.22 (2020-12-20) * Recent file menu (#322). * Update PDF resources on main thread to avoid race condition (bugs #354, #359). * Can exclude pages from PDF output by adding a layer "NOPDF" to the page. The layer does not need to be visible. (#362). * Use a better bitmap checksum that is less likely to cause bitmaps to be reordered. Sort mappings of symbolic attributes to make them deterministic (#356). * Display Type3 fonts with a unique representation to make it easy to diagnose the problem. ---------------------------------------------------------------------- Ipe 7.2.21 (2020-10-26) * Fix hanging with message "Running Latex" on Windows (bug #338). * Ability to hide the properties panel/layer list from the UI on macOS, for use on Zoom etc (#350). * Remove NoFocus policy from selectors in Qt. This used to be necessary to keep shortcuts working when the selector receives focus, but that's no longer necessary (tested in Qt 5.9). Fixes selectors not working on Qt 5.15 (bug #341). * Fix incorrect update of grid size and angle size selector when style sheet is changed (bug #344). * Fix crash in 'iperender -pdf' when the document uses \includegraphics on a jpg file (bug #342). * Fix snapping to midpoint of closing segment of closed paths (bug #346). * Fix Fifi remaining invisible after switching back from ink mode (bug #347). * Escape key now closes page/view selectors and sorters on Windows (bug #349). * Improve PDF parser to handle when /Filter is an array, and to interpret the /CIDToGIDMap table (ipepresenter bug #7). * Ability to set position of main window and maximize the window or full screen mode on startup (#353). ---------------------------------------------------------------------- Ipe 7.2.20 (2020-06-25) * Send Latex source to Latexonline service using a POST request with a tarball, so that larger documents will work as well (bug #335). On Linux, ipecurl is now a shell script. * Fix Latex compilation when there is a space in the path (bug #339). * Make it possible to interact with layers only reached by scrolling on Windows (bug #337). * Fix compilation with Qt 5.15 without deprecation warnings. ---------------------------------------------------------------------- Ipe 7.2.19 (2020-06-14) * Improve pasting bitmaps on Windows and Qt: you can now paste images directly from the file browser, with the additional benefit that jpeg files are now treated as jpeg images. This also works from the Photos app in Windows 10 and e.g. in "xviewer" (#328). * Fix text object colour not updating when it is changed from the selector (bug #333, this was broken by 7.2.15). * Fix bookmarks not working when exporting with -markedview (bug #331). * Fix crash in ink mode when current color is not symbolic (bug #326). * On Win32, fix transient selector events causing an attribute change. (Fixes bug #327.) * Delay showing "Running Latex" dialog by 300ms to avoid showing it when Latex is fast (Windows and Qt). * Run Latex after paste actions, undo, and redo, where it might be necessary. ---------------------------------------------------------------------- Ipe 7.2.18 (2020-05-20) * Fix Ipe crashing when GSL reports an error (bug #318). * Support luatex on Texlive 2020 (#314). * New icons from KDE Breeze icon set and hand-drawn icons by Willem Sonke. * On Linux/Qt, Ipe will now pick up the platform theme (so dark mode will work). This had been disabled for many years because of a buggy platform theme shipped with Ubuntu 14.04. * On OSX, icons will switch between light and dark mode automatically. * Rewrote ipecurl on Win32 and on OSX to use WinHttp/NSURLSession, removing dependency on the curl library. * Keyboard shortcuts now also work from presentation window in IpePresenter on Windows (#4). * User interface no longer freezes during Latex compilation. * Pasting images now preserves transparency on MacOS (thanks Csaba!). * Pasting images on Windows will now preserve transparency when the producer supports PNG on the clipboard (as seems to be common - the Windows clipboard appears to be a big mess). * Make sure ipelets can no longer return a page with only secondary selections (bug #315). * Fix attribute being uninitialized if not set from Lua. ---------------------------------------------------------------------- Ipe 7.2.17 (2020-05-09) * The properties panel got a face-lift and now includes selectors for dash style and opacity. * Clicking on links now works in IpePresenter (#3). * Pasting images from the clipboard on Windows was broken and always returned fully transparent images. * Pasting images from the clipboard now also works on MacOS (#311). * Fix vertical infinite edges in qvoronoi ipelet sometimes showing up as horizontal (bug #300). * Fix transparency of images in IpePresenter (bug #2). * Fixed graph-tool: it also moved edges that were not currently visible (#307). * Updated 'ipe.dtd' so it can again be used to validate Ipe XML files. * Allow minipage objects to have a horizontal alignment, and let "Change width" function work relative to this alignment, for more natural behaviour in right-to-left languages. * adjustments now also work in tetex (bug #151). * Fix crash when snapping to arcs on the same ellipse (and other degree-lowering degeneracies) (bug #310). ---------------------------------------------------------------------- Ipe 7.2.16 (2020-05-01) * Arrows can now also be in the middle of a polyline (#295). * Views can now cause changes in the drawing by changing the meaning of symbolic attributes (#135). * Views can now move or transform layers (with a very experimental UI). * Using GNU Scientific Library to compute intersection points for Bezier curves and elliptic arcs with higher precision (#116). * New grid maker ipelet (#198, #256). * New snap mode: snap to custom grid (#198). * Most dialogs are now resizable on Windows. * Documented how to use CJK languages and right-to-left languages such as Persian in the manual (#111). * Fixed locked layers getting lost during group edit (#199). * Fixed character spacing in CID fonts without default width (e.g. LMRoman when typesetting Japanese with luatexja). * Auto-exporting now available for all export formats (#296). * Ipe File format 70216 to support attribute maps. ---------------------------------------------------------------------- Ipe 7.2.15 (2020-04-26) * Interpolating splines are now available in addition to B-splines. Thanks to SCALGO for making me look into this! :-) There are many variants of interpolating splines, Ipe now provides cardinal splines and clothoid splines (through libspiro) (#140). * Ipe's PDF parser can now read PDF files where stream lengths are indirect references (#120). * Layers can now be active for snapping even when they are invisible, to make the drawing of "helper lines" more powerful (#112). * Absolute attribute values now become the UI setting, and are displayed in the dropdown as . * A new section in the manual to help you make your first stylesheet. * Windows page sorter is now resizable. * Can mark and unmark pages and views from page sorter and view sorter (#128). * Windows UI now adapts when moved between monitors of different resolution (feature #96). * Added action to paste with layers (feature #131). * Allow Escape key for closing dialogs if the text has not yet been modified, on Windows and Qt (feature #263). * Fix vector exports being scaled and not preserving integer coordinates (bug #275). * Show warning when user creates an object in an invisible layer (issue #92). * Added PNG prediction algorithm to Ipe's image decoder (sometimes needed when including PDF graphics). * Make it possible to remove "grid" and "angle" from "prefs.win_toolbar_order". Document "prefs.win_mini_edit". * Add laser pointer mode button on Windows. * Blackout function in IpePresenter (#293). * Add F5 shortcut and make background black in IpePresenter (#291, #292). * Removed IPEANCIENTPDFTEX (it is 2020). * Removed code for parsing Ipe eps files (the file format was abandoned by Ipe 7.1.10 in November 2015). You will now need to use 'ipeextract' to read such files. * Ipe File format 70215 to support interpolating splines. ---------------------------------------------------------------------- Ipe 7.2.14 (2019-04-19) * New preference 'prefs.osx_properties_width' to enforce a minimum width of the properties and layers panels, to avoid the canvas jumping left-right while stepping through a document. * Mirror at y-axis added, stretch and precise stretch now obeys axis orientation. * View sorter to rearrange the views of a page (issue #128). * New "laser pointer" mode that is useful when giving a presentation by filming directly from the Ipe canvas. * Added actions "Mark views from this view" and "Unmark views from this view". * Make sure that properties panel doesn't change width while going through a document by basing the button format on the largest number of views and on the number of pages. New preferences "view_button_prefix" and "page_button_prefix" to make the display more concise for advanced users. * Fix notes display in IpePresenter when there are non-ASCII characters (issue #282). * Include page title in iperender with option -nocrop (issue #287). * Allow path objects with trailing "m" operator and without subpaths, to simplify automatic generation of Ipe files (issue #274). * Show warning message when document contains Type3 fonts (issue #273). * Fix positioning of frame in thumbnails (bug #280). * Fix incorrect page bounding box when clipping groups (bug #265). * Fix TEXINPUTS getting lost on Unix (bug #266). * Fix notes field starting with size zero in Ipepresenter on MacOS (bug #268). * Fix some text fields with black text on dark gray in dark mode on MacOS. * Building separate packages for Ipe and IpePresenter on MacOS and Windows. * Fix "ipe -sheet presentation" not working. * Fix "ipecurl" on MacOS not working if it's not on the path (bug #269). ---------------------------------------------------------------------- Ipe 7.2.13 (2019-10-07) * IpePresenter now available on MacOS. * Allow online Latex-compilation using "latexonline.cc" service. Ipe is now fully usable without a Latex installation on your computer. * Added script 'page-labels' (see Section 8.1 in manual). * Views can now be named, and view names can be used instead of numbers in iperender and ipetoipe (feature #136). * Add directory containing Ipe document to TEXINPUTS when running Latex (feature #243). * Add button to use external editor for Latex preamble (feature #261). * Fixed bug in color key in grayscale bitmaps (bug #247). * Handle stroke opacity correctly in properties panel (bug #252). * Set Qt size policy for labels to fixed for better resizing behaviour (bug #261). * Fix crash in checkbox on Qt (bug #259). * Fixed "Update stylesheets" action not being undoable. * Added Bitmap::savePixels method for PowerIpe. * Use ^ operator for dot-product of vectors in Lua. ---------------------------------------------------------------------- Ipe 7.2.12 (2019-5-2) * Image objects now support transparency (feature #233). * Path objects can now have distinct fill and stroke opacities (feature #134). * Symbols can now specify a list of snap positions, which are active in vertex snap mode. Such symbols can be selected by clicking near any snap position, and are presented like groups in the selection (feature #238). * Can now specify the initial attribute settings in the preferences (feature #235). * Symbols ipelet now presents symbols in groups (feature #237). * Added default external editors on Windows and MacOS. * Fixed IPELATEXDIR environment variable not working on windows (bug #242). * Fix "Waiting for external editor" dialog not closing on MacOS. Define default external editors for Windows and MacOS. * New "Preferences" item in Help menu with information about "prefs.lua". * Lua function tonumber now returns nil when it fails to convert, like the original Lua function (bug #236). * Ipe File format 70212 to support transparency in images. ---------------------------------------------------------------------- Ipe 7.2.11 (2019-3-9) Barbados edition * Added snap buttons on OSX touch bar. * Images with alpha channel are now fully supported (feature #142). * New "Rotate coordinate system" operation in "Goodies" ipelet. * New ipelet to select objects by type and/or by attribute value. * Can now use ".ipe/ipe.conf" to define environment variables on Linux and OSX. * The link action string of group objects is now more powerful. You can use it to create links inside the Ipe document (so that clicking on an object in the PDF file will take you to a different page), and to launch videos or audio (which can be played inside some PDF viewers). * Tiling patterns now follow opacity of the object (feature #195). * The bullet in items now has the text color (bug #161). * The coordinate system (the axes) can now be toggled on and off without having to reset the origin. * When exporting using ipetoipe, page notes are not included as PDF annotations (but see -keepnotes) (feature #215). * Storing section names of pages as PDF "named destinations", so that external links can point to a specific page of an Ipe document. * Fixed low-resolution display on Retina displays on OSX (bug #226). The problem seems to be caused by the upgrade of Cairo to 1.16.0, it is currently fixed by using a Cairo surface as a backing store instead of a CGLayer. * Use page-piece dictionary to store Ipe XML data inside PDF file. * Pressing "Ok" after "Apply" in text edit dialog no longer causes a Latex run (feature #144). * Up and Down keys now work to move between views in IpePresenter. Added "jump to page" and "select page" in IpePresenter (feature #228). * Tiling patterns from PDF now display in Ipe and IpePresenter. * Exporting to PNG from the Ipe UI now saves with transparent background. * Fixed saving to weird location when starting from the command line on Windows (bug #222). * Fixed broken operation "create symbol (in new stylesheet)". * Fixed broken "Select in layer" and "Move to layer" submenus (bug #214). * "Insert image" file dialog starts in more reasonable directory. * Fixed display of object counts per layer on OSX (bug #221). * Removed support for ipelet dlls with .dylib extension (it changed to .so in Ipe 7.1.10). ---------------------------------------------------------------------- Ipe 7.2.10 (2019-02-04) * IpePresenter companion program on Windows and Linux, to show PDF presentations (made with Ipe or beamer). The presenter's display shows the current slide, the next slide, the slide notes, and a running clock. The audience sees only the current slide. IpePresenter relies entirely on the PDF file, so no Latex is needed for a presentation. * Move to modern C++: use nullptr consistently, compile with C++17, starting to use unique_ptr and shared_ptr. * Page notes are saved as PDF annotations (feature #187). * Fixed strange conversion of labels to math mode (bug #211). * Implemented undo/redo both in Ipe and in dialog text fields on OSX (bug #212). * Can now change direction of horizontal scrolling (with Alt+Scroll wheel) using prefs.scroll.direction.x. ---------------------------------------------------------------------- Ipe 7.2.9 (2019-01-16) * Rebuilt all dependencies with up-to-date versions for Windows and OSX. * Fixed crash when using layers on Linux and OSX (bug #208). * Some improvements in dark mode on OSX Mojave (bug #207). * Use Postscript glyph names to find glyph index (bug #122). * Holding Control while using the scroll wheel now zooms the canvas on all platforms (feature #206). * Fix unmarked pages appearing in bookmarks after exporting with -markedview (bug #205). * Can use config.ipedrive to refer to the drive that Ipe is on in customization files. Environment variables can use "ipe:" to refer to the same drive (feature #203). ---------------------------------------------------------------------- Ipe 7.2.8 (2019-01-10) * Windows binaries now built for 64-bit Windows. * OSX binaries now require at least OSX 10.10 (Yosemite) and are built on Mojave. * PDF and SVG backends included in Cairo in Windows binaries, so that -pdf and -svg options work for iperender. * Zoom with two-finger pinch gestures on the touchpad/trackpad implemented on OSX and Windows. * Two-finger moves on the touchpad/trackpad and the scroll wheel now pan the canvas rather than zoom (feature #158). To go back to the zooming behaviour, set prefs.scroll.pan to false. * Number of objects in each layer shown next to the layer name. * The page specifications in ipetoipe and iperender can now be given using page names (feature #136). * On Linux, side button on WACOM tablets can now be used (bug #164). * Delete key can now be used again (e.g. in lines tool) on Windows (bug #159). * Fixed unmarking of views and pages on Windows (bug #155). * Fixed crash when displaying grayscale JPEG on Windows. * Fixed use before check (bug #118). * Changed AppDelegate declaration for OSX 10.12 (bug #147). * Iperender can now take arguments in any order (bug #184). * New command \ipedefinecolors to allow using package options of the xcolor package (feature #180). * Updated qvoronoi ipelet to use reentrant version of Qhull. * Fixed list of greek layernames (bug #196). * New preference prefs.join_threshold (bug #191). * Fixed exporting EPS and SVG to non-ASCII filenames (bug #170). * Toggling "Automatically run Latex" from the File menu now works on Windows (bug #127). * Fixed crash on spurious character between objects in XML input (bug #169). * Added possibility to pass parameters from Lua wrapper to C++ ipelet (feature #173). * Implemented copying of snap information to IpeletData (bug #148). * Absolute attributes can now be set as the current value in the UI using the "Pick properties" operation (fixes bug #192). * Fixed crash after using page sorter (bug #153). * Fixed spurious beep on OSX on keys in lines/polygons mode (bug #152). * Fixed missing undo in text entry on OSX (bug #124). * Commmand+Return now works to close dialogs on OSX (bug #98). * Using ipeLocale now also on Windows. * Fixed page/view selector not closing on OSX >= 10.13 (bug #160). * Fixed incorrect drawing of ptarc and fptarc arrows (bug #154). ---------------------------------------------------------------------- Ipe 7.2.7 (2016-12-09) Bayreuth edition * On Windows 10, Monitor DPI is used automatically (but does not yet change when the Window is moved to a different monitor). * Fixed styles directory in ipescript in bundle mode (OSX, snap, appimage). * Fixed vertex-move mode when edges have been transformed before. * On OSX, shear mode and graph mode toolbar buttons were not selectable. * Accept empty ipestyle tag in XML parsing. * Added shortcuts for "pick properties" and "apply properties". * Renamed "tikz.isy" to "tikz-shapes.isy". * Fixed crash in hovering pen on high-resolution Windows 10 tablet. * Fixed cropped letters (bug #106). * Fixed parsing of IPESCRIPTS variable in ipescript. Added ~/.ipe/scripts to the default list in appimage and Ipe.app. * Refuse to load style sheets with fractional grid sizes (bug #115). * Refuse precise scale/stretch with factor zero (bug #114). * Use compatibility layer on Luatex 0.85 (bug #113). ---------------------------------------------------------------------- Ipe 7.2.6 (2016-09-19) Bayreuth edition * A file format update was necessary. Ipe versions older than 7.2.6 will not be able to read documents create with 7.2.6 and newer. * Added new mode to move graph vertices. While the vertex moves, its incident edges follow automatically. This uses a simple heuristic: Vertices are groups, references, or text objects, edges are path objects with a single open curve. * Text objects of type label can now also have a style. Math objects are now handled as having style "math", other styles are useful for styling graph nodes using Tikz, etc. Look at the new style file 'tikz.isy' for inspiration how this can be used. * Added style file 'note-paper.isy' with a note paper background (like the xournal background), for taking handwritten notes._{} * Revived exporting to pdf when saving in xml format (set prefs.auto_export_to_pdf). * On Windows, touch is now only used for pan and zoom. * Tuned pen handling on Windows 8 and higher. It now works smoothly on my slow Windows tablet. * Fixed handling of PDF resources from pdflatex to work with the output generated by Tikz. * Fixed layout of dialogs created without 'addButton' on OSX. * Try to work around Ubuntu bug (see #42) by unsetting environment variables QT_QPA_PLATFORMTHEME and UBUNTU_MENUPROXY when Ipe starts. * Fixed cut-off glyphs (bug #93). * Fixed error rendering TTF and TTC fonts (bug #97). ---------------------------------------------------------------------- Ipe 7.2.5 (2016-07-19) Bayreuth edition * The PDF interpreter for text objects has been improved to handle a much larger subset of PDF. Using interesting PDF-generating latex packages is now supported and encouraged, including tikz, pgf, and tcolorbox. This makes it easy to create boxes for theorems and the like in presentations, as the beamer package does. * The use of \includegraphics inside text objects is now supported. Since PDF is a very complex standard, some PDF features will not be displayed correctly on the screen (but will work correctly in Ipe's PDF output). A few features cannot even be supported in the PDF output. * luatex is now supported as an alternative to pdftex and xetex. * New shear transformation mode. Without axis set, it will use a horizontal line as the fixed line, otherwise your x-axis. * Groups can now be decorated using "decoration symbols". Those should be a path (or a group of paths), and are automatically resized to fit the bounding box of the group. You'll need to include a style sheet containing decoration symbols (e.g. "decorations.isy" from the distribution), then right click on a group to set a decoration. * Action "Edit object" can now be used to edit text inside a group object. This is convenient, for instance, to edit graph vertices (which are most easily represented as a group consisting of a circle and a text object, or a mark and a text object). * Experimental recursive group edit implemented. It keeps all state inside the Ipe document, so that you can save in the middle of a group edit (and autosave continues to work during the group edit). Group edit creates a new layer "EDIT GROUP", unpacks the group into this layer, and locks all other layers. "End group edit" automatically groups the elements again and returns the group to its original layer. * New action "set tangent direction" to set the axis to be tangent to a given circle (or ellipse) or arc. Move mouse close to boundary of circle or circular arc and press Ctrl+F3. * Improvements for ink mode to make it more responsive, less memory-consuming, and display smoother strokes (thanks to Zhengdao Wang and Philipp Kindermann for contributing code). * Fixed missing shortcut for box mode. * Added "Apply properties" to object menus. Fixed bug that caused it to be applied to all objects (not just the selected ones). * When creating a path object, the current arrow size and shape is set, so that they can be used if an arrow is enabled later. * Snapping no longer occurs for objects in layers that are not visible (bug #88). * Text objects now keep their PDF representation as a separate XObject. This implies that after changing the color of a text object, Latex needs to be run to see the change on screen. This should be automatic when automatic Latex run is enabled. * \ipesymbol is no longer supported - you can use tikz or pgf instead, or simply \includegraphics. ---------------------------------------------------------------------- Ipe 7.2.4 (2016-06-23) Bayreuth edition * New modes for making rectangles and parallelograms. * Page numbering works again (bug #57). They are now customizable, see the manual. * Can now create links to external documents or websites, by right-clicking on any top-level group object and using "Set link URL" (feature #41). * Actions to pick the properties of an object (and set them in the properties panel), and to apply all current properties to the selected objects. * Replaced NSComboBox by NSPopUpButton. They are more comfortable to use (you can click anywhere to change the setting, rather than just on the arrow), can display the color icons, and allow to re-select the currently selected choice (bug #47). * File format has been updated to 70204, but only if one of the two new features is used (external links, non-default pagenumberstyle). * Implemented double-clicks on OSX (bug #79). * Some support for HiDPI screens in Windows and Qt (use prefs.ui_scale and prefs.toolbar_scale). * Tested and documented installing Ipe with TeXlive on a USB-stick, so that it can be used on any Windows computer without installing anything (see manual). * Fixed combination of prefs.auto_external_editor and prefs.editor_closes_dialog. * Removed beginnings of magnification gesture handling on OSX (it wasn't finished and broke two-finger gestures for right-click). * Fixed Save dialog (bug #78). * Fixed behaviour when prefs.terminate_on_close is false on OSX (bug #51). * Improved width of grid size/angle size selector (bug #48). * Obey prefs.editable_textfile for editing style sheets (bug #80). * Updated ipe.dtd and manual for the correct Ipe file format (bug #67). * Customizable order of toolbars on Windows (feature #28). * Fixed angle size menu on Qt. * Fixed join path for more than two segments (bug #85). ---------------------------------------------------------------------- Ipe 7.2.3 (2016-06-11) Bayreuth edition * Added /opt/local/bin to latex search path on OS X. * mainmenu.xib was missing from source distribution (bug #44). * Enabled "Command" modifier for mouse actions (bug #46). * Using Cairo FAST mode for rendering bitmaps (feature #53). * Added /bin and /usr/bin to PATH on OSX (bug #71). * Fixed crash in Ipelet information when ipelets contains no 'about' line (bug #66). * Fixed crash when processing empty text object (bug #64). * Notes and bookmarks can now be shown on startup on Cocoa by setting prefs (bug #68). * Fixed code so that compilation on older OSX versions is easier (feature #60). * Fixed substitution of quotes by typographic quotes on OSX (bug #69). * Removed duplicate overwrite warning on OSX (bug #50). * Fixed crash in iperender (bug #63). * Fixed selection of objects in locked layer (bug #55). * On OSX, Ipe can keep running after last Window was closed using prefs.terminate_on_close (request #51). * Quit action on OSX (request #51). * Fixed compilation on FreeBSD (bug #56). * On Windows, Ipe can now use pdflatex from cygwin (feature #72). See the manual for instructions. * Can customize width of bookmarks and notes tools by setting prefs.width_notes_bookmarks (feature #58). * Added file type filter in OSX file dialogs (feature #49). * Improved JPEG file handling (bug #75). * Work-around for bug in Qt 5.5 (bug #54). * Fixed crash when pasting large object on Windows (bug #59). * Fixed crash when starting external editor. ---------------------------------------------------------------------- Ipe 7.2.2 (2016-01-24) Fabian's edition * Page/View selector implemented for Cocoa. * Page sorter implemented for Cocoa, with drag and drop of pages. * Fixed redrawing on Cocoa (bug #34). * Removed APIs post OS X 10.8 (bug #35). * Including qvoronoi ipelet in Ipe.app for OS X. * Ctrl-click instead of right click in line editing tools and for path properties popup menu (bugs #36, #37). * Support for retina displays on OS X (feature #2). * Changed icon format on OS X to tiff, allowing for multi-resolution icons. * Fixed PDF rendering of text with descenders and widths in CID fonts using xetex. * Fixed problem with exporting to eps caused by wrappers in cmr10.pfb and other fonts that are incorrectly embedded by pdflatex. ---------------------------------------------------------------------- Ipe 7.2.1 (2016-01-01) * Color of primary and secondary selection can be set in prefs.lua. * Ipe can now use xelatex instead of pdflatex. You can choose your TeX engine in the document properties. * Type1C and CID-keyed fonts are supported. This means that OpenType fonts on your system should work through xelatex. * Location of pdflatex or xelatex can be specified as an environment variable IPELATEXPATH. * On Windows, environment variables can be set by placing a text file with name "ipe.conf" in the Ipe folder. This makes it possible to provide Ipe on a USB-stick without modifying the host system at all. (The Ipe folder is the same place that contains the "bin", "icons", "lua" subdirectories. Each line of "ipe.conf" is of the form "VARIABLE=setting".) * Snap indicator in status line and mode indicator in properties allow advanced users to hide all toolbars without losing any feedback. * Using native user interface with Cocoa on OS X. * Continuous spell-checking in text input/edit dialogs on OS X (optional, set prefs.spell_check). * Multiple shortcuts are no longer allowed in "shortcuts.lua". * Added Header files to Mac OS app bundle. * Removed support for the "14 standard PDF fonts". Their use is deprecated in PDF 1.5 - all fonts should now be embedded. This means it's no longer necessary to create a fontmap during Ipe installation. * Removed support for codeset conversion. Latex supports Unicode well now, in particular when you use xelatex. * Ipe now requires a C++11 compiler. ---------------------------------------------------------------------- Ipe 7.1.10 (2015-11-21) * "Export to EPS" replaces saving in EPS format. Ipe can still load Ipe figures in EPS format, but will not save in this format anymore. Use "Export to EPS" if you need EPS figures for your publisher. * I learnt how to compile on Mac OS X, and now build "Ipe.app" binaries myself. The makefiles and instructions for Mac OS are updated. * Ipe now compiles with both Qt 4 and Qt 5. This is useful since Qt 5 drops support for older Mac platforms (in particular Snow Leopard). * Transparency now available by default. * Trying both .dylib and .so extension when loading compiled ipelets on Mac OS. * Ipelets compiled using -bundle and .so extension on Mac OS. * Removed lfs from Ipe, added Platform::listDirectory that works correctly with UTF-8 on Windows. * Ipe now runs correctly on Windows if installed in a directory with non-ASCII characters (feature #17). * On Windows, when closing from the cross icon in the window frame, the "Save" option now works. * Fixed problem with Enter key closing edit dialogs (bug #6). * Windows and Mac OS binaries using Lua 5.3. * On Windows libpng/libjpeg replaced by Windows GDI+ calls. "Insert image" now also supports BMP, GIF, and TIFF. * On Mac OS, libjpeg replaced by CoreGraphics calls. * "Export to PNG" added to user interface (feature #22). * Removed auto-exporting functionality. ---------------------------------------------------------------------- Ipe 7.1.9 (2015-10-24) * Migrated to Qt5. * Windows binary now works on WinXP by dynamically loading GetGestureInfo (issue #9, thanks to czietz for the patch). * Ignore spurious double-click (bug #17). * Fixed Ctrl+F shortcut on Windows (bug #9). * Fixed updating of style sheets on Windows (bug #8). * Fixed crash when right-clicking on a toolbar icon on Windows (bug #7). * Changed ordering of Ipelet directories (bug #16). * Fixed misleading caption on layer menu (bug #14). * Compiling with clang++-3.5 for testing. * Bitmaps read from files are now compressed during insertion, crash during insertion of PNG files with color palette fixed. Inserting PNG images with color-keyed transparent color works now (bugs #19, #20). * Improved "About ipelets" dialog. -------------------------------------------------------------------- Ipe 7.1.8 (2015-07-11) * (Partial) support for MacOS retina displays. You need to set prefs.retina to true to enable this. Thanks to Michael Thon for testing my experiments. * Fixed compilation of qvoronoi ipelet on Mac OS X (bug #31). * Now using standard libjpeg API for embedded JPEG images, rather than the TurboJPEG API. Therefore Ipe now compiles with either JPEG library. Thanks to Michael Thon for the patch (bug #32). * IPEBUNDLE variable to compile Ipe without references to the file system. * IPENOGESTURE variable to compile Ipe for Windows Vista and older. * Fixed Document properties dialog (bug #33). * Fixed first entry in layer list popup menu. * Fixed crash in Voronoi ipelet on Windows (issue #5). -------------------------------------------------------------------- Ipe 7.1.7 (2015-02-23) * Fifi shape and color now depends on the context: whether snapping to a vertex, boundary, the grid, etc. When no snapping occurs, Fifi is not drawn at all. * The definition of B-splines has changed. For reasons lost in the mist of time, Ipe has for many years used an incorrect definition of uniform B-splines, which handled the boundary conditions wrongly. In particular, the first and final segment of a spline was always a straight segment. This has now been fixed, and the line/spline tools from now on create correct uniform B-splines. In particular, splines with four control points are now identical to cubic Bezier segments. As a generalization, a spline with three control points generates a quadratic Bezier segment, so the special keys 'q' and 'c' in the line tool are no longer needed. One benefit of this change is that it is now possible to cut B-splines (both open and closed) at any knot value, so that splines can be cut without first decomposing them entirely into Bezier curves. Splines created with older versions of Ipe continue to work as before and can still be edited. They are now called "old splines". As a result, the Ipe file format version was updated to 70107. Older versions of Ipe will not read files created with Ipe 7.1.7. * Separate snap mode for snapping to "control points". These are the control points of splines, but also the centers of ellipses/circles/arcs, the corners of images, and the corners and reference point of text objects. * The midpoint of every straight segment is now also a snap point (when control point snapping is on). * When drawing a polyline or spline object, the previous segments of the object being drawn are now already magnetic and can be snapped to. This feature was actually used in several snapping examples in the manual, but didn't work since Ipe 7.0.0. * A left double-click can now be used to terminate a path object instead of a right click. * Windows binaries now use a native UI without Qt. * On Windows, can now use two-finger touch gestures for pan and zoom. They work even in the middle of drawing an object with the mouse or the pen. * The paste actions (Ctrl+V) will now create an image object if the clipboard contains a bitmap (this function used to be "Insert image from clipboard"). * When selecting objects by dragging a rectangle, select all objects included in the rectangle when dragging is from left to right, select all objects intersecting the rectangle when dragging is from right to left. * Windows shell no longer pops up when running Latex (feature #2). * Abort button for current drawing operation (useful on tablet computers without Escape key). * Focus now on text field in text creation dialogs. * When an external editor is defined, the dialog displaying the Latex error log now offers to show the Latex source used by Ipe (feature #24). * Changed file extension of dynamic libraries to .dylib on Mac OS X (feature #20). * Charset support for Latex conversion now supported on Windows. * Static member function "selectPageOrView" moved from "PageSelector" to "CanvasBase". "PageSelector" is now considered an internal class and should not be used by external code (it doesn't even exist in Windows code). * Developer menu with useful functions for customizing ipelets: reload all ipelets (this is useful when working on an ipelet), list all the keyboard shortcuts, check if there are any duplicate shortcuts defined. The developer menu needs to be enabled by setting prefs.developer. * "Insert image" moved into Ipe program itself instead of an ipelet, now implemented using turbojpeg and libpng libraries instead of Qt. * Fixed creation of arc defined by three collinear points. * Lua bindings for: (1) getting gradient from a stylesheet; (2) creating gradients, tilings, and effects through an XML string; (3) removing definitions of symbolic names from a stylesheet. * In "Save as" file dialog, start with the current filename (feature #22). * Fixed missed intersection points between splines and splines/segments (bug #8). * Unused arguments of Object::setAttribute removed. * Fixed crash when snapping to the intersection of two parallel lines (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=728479). * Changed default "Save as" destination on Windows to something more useful. -------------------------------------------------------------------- Ipe 7.1.6 (2014-12-05) * Fixed crash when input file contains zero-radius arc (bug #1). * Added missing "qhull.dll" (bug #3). * IPESTYLES and IPELETPATH now use semicolon as separator on Windows and colon on Unix (bug #4). * New arrow styles "ptarc" and "fptarc" for pointed arrows on circular arcs (feature #19). * Using a separate locale for number conversion, hopefully fixing the problems Ipe users on European locales with a comma for the decimal separator were having (bug #11). * Option "Pretty display" to avoid drawing the green bounding box for text objects, so that one can see what the drawing really looks like (feature #13). * Fixed snapping to negative grid coordinates (bug #9). * Preference prefs.editable_textfile to set the name of the text file to be written for editing in an external text editor. -------------------------------------------------------------------- Ipe 7.1.5 (2014-05-07) * Enabled automatic shortcuts on MacOS X. The shortcuts Alt+Letter for menu items and dialog buttons should now also work on Macs (thanks Sascha). * Included Voronoi ipelet in Windows binaries * New -nocrop option in iperender. * prefs.editor_size setting now works in Qt build (bug #140). * prefs.docks to choose left/right dock side and prefs.hide_docks to select which docks should be visible when Ipe starts. * prefs.editor_closes_dialog to make editing dialog close immediately when user exits external editor * Fixed crash when Ipe file named on command line exists but cannot be loaded. * Fixed error message when trying to open PDF file that was not created by Ipe. * Iperender will now include the page background if used with -nocrop. * Fix compilation on MacOS X 10.9 (bug #145). * Del key on Mac keyboard now works to delete last vertex (bug #149). * Bitmaps are now displayed on screen with better quality (thanks Dmitriy). * Link to IpePresenter in Ipe manual and on the webpage. IpePresenter executable included in Windows binary package. * Layer names with non-ASCII characters now work and no longer cause a crash (bugs #137 and #132). * Using libturbojpeg for decoding embedded JPEG images. It's faster and fixes bug #125. * "Insert text box" now computes position of new textbox based on the position of the visible text only (feature #141). * When text size is changed, Latex is automatically run. -------------------------------------------------------------------- Ipe 7.1.4 (2013-3-15) * Windows binaries provided again. * Migrated to using Lua 5.2 (feature #113). * Fixed bug in "ipescript update-master" with several figures (bug #85). * Ipe scripts (to be run with "ipescript