Compare commits

..

1 Commits

Author SHA1 Message Date
Bryan Petty
b2a8b61463 This commit was manufactured by cvs2svn to create tag 'wxPy_2_7_1_3'.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/tags/wxPy_2_7_1_3@42475 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2006-10-26 21:41:28 +00:00
12798 changed files with 4071817 additions and 2105344 deletions

12
.cvsignore Normal file
View File

@@ -0,0 +1,12 @@
.gdb_history
config.cache
configarg.cache
config.status
wx-config
config.log
stamp-h.in
Makefile
setup.h
*tags
.DS_Store
autom4te.cache

View File

@@ -1,16 +0,0 @@
# This is the EditorConfig (http://editorconfig.org/) coding style file for
# wxWidgets.
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
[makefile.*]
indent_style = tab
indent_size = 8

46
.gitattributes vendored
View File

@@ -1,46 +0,0 @@
# Windows-specific files that require CRLF:
*.bat eol=crlf
*.bcc eol=crlf
*.dsw eol=crlf
*.gcc eol=crlf
*.props eol=crlf
*.rc eol=crlf
*.sln eol=crlf
*.vc eol=crlf
*.vcproj eol=crlf
*.vcxproj eol=crlf
*.vcxproj.filters eol=crlf
# Documentation used with Windows installer:
/BuildGit.txt text=auto
/docs/changes.txt text=auto
/docs/licence.txt text=auto
/docs/readme.txt text=auto
/docs/msw/*.txt text=auto
# Unix-specific files that require LF:
*.h.in eol=lf
*.m4 eol=lf
*.sh eol=lf
configure.in eol=lf
Makefile.am eol=lf
Makefile.in eol=lf
makefile.unx eol=lf
config.guess eol=lf
config.sub eol=lf
configure eol=lf
configure.in eol=lf
# Ignore changes in the generated files.
build/upmake -diff
# Don't include stuff which is only used with Git in the archives.
.github/ export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.gitmodules export-ignore
appveyor.yml export-ignore

View File

@@ -1,12 +0,0 @@
# How to Contribute to wxWidgets
We appreciate receiving contributions and we have a community-maintained
[guide for contributors](https://wiki.wxwidgets.org/Development:_How_To_Contribute)
which explains everything you ever wanted to know for contributing to
wxWidgets.
You can either submit your [patches](https://trac.wxwidgets.org/wiki/HowToSubmitPatches)
to [wxTrac](https://trac.wxwidgets.org/newticket) or open GitHub pull requests,
depending on your preferences.
### Thanks in advance and looking forward to your contributions!

View File

@@ -1,282 +0,0 @@
# CI workflow for wxWidgets builds using configure+make under Unix.
name: Unix builds
on:
push:
branches:
- master
paths-ignore:
- '.github/workflows/ci_mac.yml'
- '.github/workflows/ci_cmake.yml'
- '.github/workflows/ci_msw.yml'
- '.github/workflows/ci_msw_cross.yml'
- 'build/tools/appveyor*.bat'
- 'distrib/**'
- 'docs/**'
- 'interface/**'
- 'include/msvc/**'
- 'include/wx/msw/**'
- 'locale/**'
- 'src/msw/**'
- '*.md'
- '*.yml'
- 'wxwidgets.props'
pull_request:
branches:
- master
paths-ignore:
- '.github/workflows/ci_mac.yml'
- '.github/workflows/ci_cmake.yml'
- '.github/workflows/ci_msw.yml'
- '.github/workflows/ci_msw_cross.yml'
- 'build/tools/appveyor*.bat'
- 'distrib/**'
- 'docs/**'
- 'interface/**'
- 'include/msvc/**'
- 'include/wx/msw/**'
- 'locale/**'
- 'src/msw/**'
- '*.md'
- '*.yml'
- 'wxwidgets.props'
jobs:
build:
runs-on: ${{ matrix.runner }}
name: ${{ matrix.name }}
strategy:
fail-fast: false
matrix:
include:
- name: Ubuntu 18.04 wxGTK 2
runner: ubuntu-18.04
gtk_version: 2
use_xvfb: true
- name: Ubuntu 18.04 wxGTK 2 UTF-8
runner: ubuntu-18.04
gtk_version: 2
configure_flags: --enable-utf8 --enable-utf8only --enable-monolithic
use_xvfb: true
- name: Ubuntu 18.04 wxGTK3 static
runner: ubuntu-18.04
configure_flags: --disable-shared
use_xvfb: true
- name: Ubuntu 18.04 wxGTK 3 STL
runner: ubuntu-18.04
configure_flags: --enable-cxx11 --enable-stl --disable-compat30
use_xvfb: true
- name: Ubuntu 18.04 wxGTK 3 with clang
runner: ubuntu-18.04
compiler: clang
configure_flags: --disable-sys-libs
use_xvfb: true
- name: Ubuntu 20.04 wxGTK ANSI
runner: ubuntu-20.04
configure_flags: --disable-unicode
skip_samples: true
- name: Ubuntu 20.04 wxGTK with ASAN
runner: ubuntu-20.04
configure_flags: --disable-compat30 --disable-sys-libs --disable-webview
skip_samples: true
use_asan: true
use_xvfb: true
- name: Ubuntu 18.04 wxX11
runner: ubuntu-18.04
configure_flags: --with-x11 --enable-pch --disable-stc
skip_samples: true
- name: Ubuntu 18.04 wxDFB
runner: ubuntu-18.04
configure_flags: --with-directfb --enable-pch --disable-stc
skip_samples: true
allow_warnings: true
- name: Ubuntu 18.04 wxMotif
runner: ubuntu-18.04
configure_flags: --with-motif --enable-pch --disable-stc
skip_samples: true
- name: Ubuntu 18.04 wxQt
runner: ubuntu-18.04
configure_flags: --with-qt --enable-pch --without-opengl
skip_samples: true
env:
wxGTK_VERSION: ${{ matrix.gtk_version && matrix.gtk_version || 3 }}
wxCONFIGURE_FLAGS: ${{ matrix.configure_flags }}
wxUSE_ASAN: ${{ matrix.use_asan && 1 || 0 }}
wxUSE_XVFB: ${{ matrix.use_xvfb && 1 || 0 }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Install CCache
uses: hendrikmuhs/ccache-action@v1
with:
key: ${{ matrix.name }}
- name: Set up build environment
run: |
echo LD_LIBRARY_PATH=`pwd`/lib >> $GITHUB_ENV
wxPROC_COUNT=`./build/tools/proc_count.sh`
echo wxBUILD_ARGS=-j$wxPROC_COUNT >> $GITHUB_ENV
echo "PATH=/usr/lib/ccache:$PATH" >> $GITHUB_ENV
# Setting this variable suppresses "Error retrieving accessibility bus address"
# messages from WebKit tests that we're not interested in.
echo NO_AT_BRIDGE=1 >> $GITHUB_ENV
case "${{ matrix.compiler }}" in
clang)
echo CC=clang >> $GITHUB_ENV
echo CXX='clang++ -stdlib=libc++' >> $GITHUB_ENV
echo LD=clang++ >> $GITHUB_ENV
allow_warn_opt="-Wno-error=#warnings"
;;
'')
# Assume gcc.
allow_warn_opt="-Wno-error=cpp"
;;
*)
echo "*** Unknown compiler: ${{ matrix.compiler }} ***"
;;
esac
if [ -z ${{ matrix.allow_warnings }} ]; then
error_opts="-Werror $allow_warn_opt"
echo "wxMAKEFILE_ERROR_CXXFLAGS=$error_opts" >> $GITHUB_ENV
echo "wxMAKEFILE_CXXFLAGS=$wxMAKEFILE_CXXFLAGS $error_opts" >> $GITHUB_ENV
fi
echo "wxMAKEFILE_CXXFLAGS=$wxMAKEFILE_CXXFLAGS $error_opts" >> $GITHUB_ENV
# Install locales used by our tests to run all the tests instead of
# skipping them.
sudo locale-gen de_DE.utf8 de_CH.utf8 en_US.utf8 fr_FR.utf8 sv_SE.utf8
./build/tools/before_install.sh
- name: Show build environment
run: |
echo "Environment:"
env | sort
echo
echo "Compiler version:"
${CXX-g++} --version
echo
echo "ccache version:"
ccache --version
echo
- name: Configuring
run: |
wxCONFIGURE_OPTIONS="--disable-optimise $wxCONFIGURE_FLAGS"
if [ -n "${{ matrix.gtk_version }}" ]; then
wxCONFIGURE_OPTIONS="--with-gtk=${{ matrix.gtk_version }} $wxCONFIGURE_OPTIONS"
fi
if [ ${{ matrix.use_asan }} ]; then
wxASAN_CFLAGS="-fsanitize=address -fno-omit-frame-pointer"
wxASAN_CXXFLAGS=$wxASAN_CFLAGS
wxASAN_LDFLAGS="-fsanitize=address"
./configure $wxCONFIGURE_OPTIONS --enable-debug "CFLAGS=$wxASAN_CFLAGS" "CXXFLAGS=$wxASAN_CXXFLAGS" "LDFLAGS=$wxASAN_LDFLAGS" || rc=$?
else
./configure $wxCONFIGURE_OPTIONS --disable-debug_info || rc=$?
fi
if [ -n "$rc" ]; then
echo '*** Configuring failed, contents of config.log follows: ***'
echo '-----------------------------------------------------------'
cat config.log
echo '-----------------------------------------------------------'
exit $rc
fi
- name: Building
run: |
make -k $wxBUILD_ARGS "CXXFLAGS=$wxMAKEFILE_ERROR_CXXFLAGS"
- name: Building tests
working-directory: tests
run: |
make $wxBUILD_ARGS failtest
make -k $wxBUILD_ARGS "CXXFLAGS=$wxMAKEFILE_CXXFLAGS" "LDFLAGS=$wxMAKEFILE_LDFLAGS"
- name: Testing
working-directory: tests
run: |
. ../build/tools/httpbin.sh
httpbin_launch
export ASAN_OPTIONS=fast_unwind_on_malloc=0
# Explicitly use bash because /bin/sh doesn't have pipefail option
/bin/bash -o pipefail -c './test 2>&1 | tee test.out' || rc=$?
if [ ${{ matrix.use_asan }} ]; then
# Work around spurious crashes by running the test again.
# See https://github.com/google/sanitizers/issues/1353
if fgrep -q 'LeakSanitizer has encountered a fatal error' test.out; then
echo '+++ Rerunning the tests once again after LeakSanitizer crash +++'
unset rc
./test || rc=$?
fi
fi
if [ -n "$rc" ]; then
httpbin_show_log
exit $rc
fi
- name: Testing GUI using Xvfb
if: matrix.use_xvfb
working-directory: tests
run: |
if [ ${{ matrix.use_asan }} ]; then
# Leak suppression only works if we have debug symbols available,
# otherwise we disable it to avoid tons of reports about leaks in
# libfontconfig etc.
if [ -f wx_dbgsym_available ]; then
export LSAN_OPTIONS=suppressions=$(pwd)/misc/suppressions/lsan
else
ASAN_OPTIONS=detect_leaks=0
fi
export ASAN_OPTIONS="$ASAN_OPTIONS fast_unwind_on_malloc=0"
# Running all tests at once fails, apparently due to running out of
# memory when using ASAN, work around this problem by excluding
# RichTextCtrlTestCase whose Table sub-test seems to be problematic.
wx_tests_selection='~[.] ~RichTextCtrlTestCase'
fi
ulimit -c unlimited
/bin/bash -o pipefail -c "xvfb-run -a -s '-screen 0 1600x1200x24' ./test_gui -d 1 $wx_tests_selection 2>&1 | tee -a test_gui.out" || rc=$?
if [ -n "$rc" ]; then
if fgrep -q '(core dumped)' test_gui.out; then
echo '*** Test crashed, trying to get more information ***'
gdb --quiet --core=core -ex 'where' -ex 'thread apply all bt' -ex 'q' ./test_gui
fi
exit $rc
fi
- name: Building samples
if: matrix.skip_samples != true
run: |
make -k $wxBUILD_ARGS "CXXFLAGS=$wxMAKEFILE_CXXFLAGS" "LDFLAGS=$wxMAKEFILE_LDFLAGS" samples
- name: Installing
run: |
sudo make install
- name: Testing installation
run: |
make -C samples/minimal -f makefile.unx clean
make -C samples/minimal -f makefile.unx $wxBUILD_ARGS "CXXFLAGS=$wxMAKEFILE_CXXFLAGS" "LDFLAGS=$wxMAKEFILE_LDFLAGS"

View File

@@ -1,139 +0,0 @@
# CI workflow for wxWidgets builds using CMake.
name: CMake builds
on:
push:
branches:
- master
paths-ignore:
- '.github/workflows/ci.yml'
- '.github/workflows/ci_mac.yml'
- '.github/workflows/ci_msw.yml'
- '.github/workflows/ci_msw_cross.yml'
- 'build/tools/appveyor*.bat'
- 'distrib/**'
- 'docs/**'
- 'interface/**'
- 'include/msvc/**'
- 'include/wx/msw/**'
- 'locale/**'
- 'src/msw/**'
- '*.md'
- '*.yml'
- 'wxwidgets.props'
pull_request:
branches:
- master
paths-ignore:
- '.github/workflows/ci.yml'
- '.github/workflows/ci_mac.yml'
- '.github/workflows/ci_msw.yml'
- '.github/workflows/ci_msw_cross.yml'
- 'build/tools/appveyor*.bat'
- 'distrib/**'
- 'docs/**'
- 'interface/**'
- 'include/msvc/**'
- 'include/wx/msw/**'
- 'locale/**'
- 'src/msw/**'
- '*.md'
- '*.yml'
- 'wxwidgets.props'
jobs:
build:
runs-on: ${{ matrix.runner }}
name: ${{ matrix.name }}
strategy:
fail-fast: false
matrix:
include:
- name: Ubuntu 18.04 wxGTK 3
runner: ubuntu-18.04
cmake_generator: Unix Makefiles
cmake_samples: ALL
- name: macOS 10.15 wxOSX
runner: macos-10.15
cmake_generator: Xcode
cmake_defines: -DCMAKE_CXX_STANDARD=11
- name: macOS 10.15 wxIOS
runner: macos-10.15
cmake_generator: Xcode
cmake_defines: -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_FIND_ROOT_PATH=/usr/local -DCMAKE_XCODE_ATTRIBUTE_CODE_SIGNING_ALLOWED=NO
cmake_samples: OFF
cmake_tests: OFF
env:
wxGTK_VERSION: ${{ matrix.gtk_version && matrix.gtk_version || 3 }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Set environment variables
run: |
wxPROC_COUNT=`./build/tools/proc_count.sh`
if [ "${{ matrix.cmake_generator }}" == "Xcode" ]; then
# Xcode generates a lot of output, suppress it so only warnings and errors are visible
wxBUILD_ARGS="-jobs $wxPROC_COUNT -quiet"
else
wxBUILD_ARGS=-j$wxPROC_COUNT
fi
echo wxBUILD_ARGS=$wxBUILD_ARGS >> $GITHUB_ENV
cmake_tests=${{ matrix.cmake_tests }}
if [ -z $cmake_tests ]; then cmake_tests=CONSOLE_ONLY; fi
echo wxCMAKE_TESTS=$cmake_tests >> $GITHUB_ENV
cmake_samples=${{ matrix.cmake_samples }}
if [ -z $cmake_samples ]; then cmake_samples=SOME; fi
echo wxCMAKE_SAMPLES=$cmake_samples >> $GITHUB_ENV
# Setting this variable suppresses "Error retrieving accessibility bus address"
# messages from WebKit tests that we're not interested in.
echo NO_AT_BRIDGE=1 >> $GITHUB_ENV
- name: Before install
run: |
./build/tools/before_install.sh
- name: Configuring
run: |
cmake --version
mkdir build_cmake
pushd build_cmake
cmake -G "${{ matrix.cmake_generator }}" ${{ matrix.cmake_defines }} -DwxBUILD_SAMPLES=$wxCMAKE_SAMPLES -DwxBUILD_TESTS=$wxCMAKE_TESTS ..
- name: Building
working-directory: build_cmake
run: |
cmake --build . -- $wxBUILD_ARGS
- name: Installing
working-directory: build_cmake
run: |
sudo cmake --build . --target install
- name: Testing
if: matrix.cmake_tests != 'OFF'
working-directory: build_cmake
run: |
. ../build/tools/httpbin.sh
httpbin_launch
ctest -V -C Debug --output-on-failure --interactive-debug-mode 0 . || rc=$?
if [ -n "$rc" ]; then
httpbin_show_log
exit $rc
fi
- name: Testing installation
run: |
mkdir build_cmake_install_test
pushd build_cmake_install_test
cmake -G "${{ matrix.cmake_generator }}" ${{ matrix.cmake_defines }} ../samples/minimal
cmake --build .

View File

@@ -1,225 +0,0 @@
name: Mac builds
on:
workflow_dispatch:
push:
branches: [ master ]
paths-ignore:
- '.github/workflows/ci.yml'
- '.github/workflows/ci_cmake.yml'
- '.github/workflows/ci_msw.yml'
- '.github/workflows/ci_msw_cross.yml'
- 'build/tools/appveyor*.bat'
- 'distrib/**'
- 'docs/**'
- 'interface/**'
- 'include/msvc/**'
- 'include/wx/dfb/**'
- 'include/wx/gtk/**'
- 'include/wx/gtk1/**'
- 'include/wx/motif/**'
- 'include/wx/msw/**'
- 'include/wx/x11/**'
- 'locale/**'
- 'src/dfb/**'
- 'src/gtk/**'
- 'src/gtk1/**'
- 'src/motif/**'
- 'src/msw/**'
- 'src/x11/**'
- '*.md'
- '*.yml'
- 'wxwidgets.props'
pull_request:
branches: [ master ]
paths-ignore:
- '.github/workflows/ci.yml'
- '.github/workflows/ci_cmake.yml'
- '.github/workflows/ci_msw.yml'
- '.github/workflows/ci_msw_cross.yml'
- 'build/tools/appveyor*.bat'
- 'distrib/**'
- 'docs/**'
- 'interface/**'
- 'include/msvc/**'
- 'include/wx/dfb/**'
- 'include/wx/gtk/**'
- 'include/wx/gtk1/**'
- 'include/wx/motif/**'
- 'include/wx/msw/**'
- 'include/wx/x11/**'
- 'locale/**'
- 'src/dfb/**'
- 'src/gtk/**'
- 'src/gtk1/**'
- 'src/motif/**'
- 'src/msw/**'
- 'src/x11/**'
- '*.md'
- '*.yml'
- 'wxwidgets.props'
jobs:
build-and-test:
defaults:
run:
shell: /usr/bin/arch -arch ${{ matrix.arch }} /bin/bash -l {0}
runs-on: ${{ matrix.runner }}
name: ${{ matrix.name }}
strategy:
fail-fast: false
matrix:
include:
- name: wxMac ARM C++11
runner: self-hosted
arch: arm64
configure_flags: --with-cxx=11
use_asan: true
- name: wxMac Intel C++17
runner: self-hosted
arch: x86_64
configure_flags: --with-cxx=17 --with-macosx-version-min=10.12 --enable-debug
- name: wxMac Universal C++14
runner: self-hosted
arch: arm64
configure_flags: --with-cxx=14 --enable-universal_binary=arm64,x86_64 --disable-shared --disable-debug --enable-optimise
- name: wxMac macOS 10.15
runner: macos-10.15
arch: x86_64
configure_flags: --disable-sys-libs
- name: wxiOS
runner: macos-10.15
arch: x86_64
configure_flags: --with-osx_iphone --enable-monolithic --disable-sys-libs --host=i686-apple-darwin_sim --build=x86_64-apple-darwin17.7.0
xcode_sdk: iphonesimulator
skip_samples: true
skip_testing: true
allow_warnings: true
env:
wxCONFIGURE_FLAGS: --disable-sys-libs --without-liblzma ${{ matrix.configure_flags }} --prefix=${{ github.workspace }}/localbin_${{ matrix.arch }}
wxUSE_ASAN: ${{ matrix.use_asan && 1 || 0 }}
DEVELOPER_DIR: /Applications/Xcode.app/Contents/Developer
NSUnbufferedIO: YES
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Set environment variables
run: |
echo TZ=UTC >> $GITHUB_ENV
echo LD_LIBRARY_PATH=`pwd`/lib >> $GITHUB_ENV
wxPROC_COUNT=`sysctl -n hw.logicalcpu`
((wxPROC_COUNT++))
echo wxPROC_COUNT=$wxPROC_COUNT >> $GITHUB_ENV
echo wxBUILD_ARGS=-j$wxPROC_COUNT >> $GITHUB_ENV
# Setting this variable suppresses "Error retrieving accessibility bus address"
# messages from WebKit tests that we're not interested in.
echo NO_AT_BRIDGE=1 >> $GITHUB_ENV
case "${{ matrix.compiler }}" in
clang)
echo CC=clang >> $GITHUB_ENV
echo CXX='clang++ -stdlib=libc++' >> $GITHUB_ENV
echo LD=clang++ >> $GITHUB_ENV
allow_warn_opt="-Wno-error=#warnings"
;;
'')
# Assume gcc.
allow_warn_opt="-Wno-error=cpp"
;;
*)
echo "*** Unknown compiler: ${{ matrix.compiler }} ***"
;;
esac
if [ -z ${{ matrix.allow_warnings }} ]; then
error_opts="-Werror $allow_warn_opt"
echo "wxMAKEFILE_ERROR_CXXFLAGS=$error_opts" >> $GITHUB_ENV
echo "wxMAKEFILE_CXXFLAGS=$wxMAKEFILE_CXXFLAGS $error_opts" >> $GITHUB_ENV
fi
echo "wxMAKEFILE_CXXFLAGS=$wxMAKEFILE_CXXFLAGS $error_opts" >> $GITHUB_ENV
- name: Before install
run: |
./build/tools/before_install.sh
mkdir -p $PWD/localbin_${{ matrix.arch }}
- name: Configuring
run: |
wxCONFIGURE_OPTIONS="--disable-optimise $wxCONFIGURE_FLAGS"
if [ -n "${{ matrix.xcode_sdk }}" ]; then
sdk_path=`xcrun --sdk ${{ matrix.xcode_sdk }} --show-sdk-path`
wxCONFIGURE_OPTIONS="--with-macosx-sdk=$sdk_path $wxCONFIGURE_OPTIONS"
fi
./configure $wxCONFIGURE_OPTIONS --disable-debug_info || rc=$?
if [ ${{ matrix.use_asan }} ]; then
wxASAN_CFLAGS="-fsanitize=address -fno-omit-frame-pointer"
wxASAN_CXXFLAGS=$wxASAN_CFLAGS
wxASAN_LDFLAGS="-fsanitize=address"
./configure $wxCONFIGURE_OPTIONS --enable-debug "CFLAGS=$wxASAN_CFLAGS" "CXXFLAGS=$wxASAN_CXXFLAGS" "LDFLAGS=$wxASAN_LDFLAGS" || rc=$?
else
./configure $wxCONFIGURE_OPTIONS --disable-debug_info || rc=$?
fi
if [ -n "$rc" ]; then
echo '*** Configuring failed, contents of config.log follows: ***'
echo '-----------------------------------------------------------'
cat config.log
echo '-----------------------------------------------------------'
exit $rc
fi
- name: Building
run: |
make -k $wxBUILD_ARGS "CXXFLAGS=$wxMAKEFILE_ERROR_CXXFLAGS"
- name: Building tests
run: |
make -C tests $wxBUILD_ARGS failtest
make -k -C tests $wxBUILD_ARGS "CXXFLAGS=$wxMAKEFILE_CXXFLAGS" "LDFLAGS=$wxMAKEFILE_LDFLAGS"
- name: Testing
if: matrix.skip_testing != true
working-directory: tests
run: |
. ../build/tools/httpbin.sh
httpbin_launch
export ASAN_OPTIONS=fast_unwind_on_malloc=0
# Explicitly use bash because /bin/sh doesn't have pipefail option
/bin/bash -o pipefail -c './test 2>&1 | tee test.out' || rc=$?
if [ -n "$rc" ]; then
httpbin_show_log
exit $rc
fi
- name: Testing GUI
if: matrix.skip_testing != true
working-directory: tests
run: |
export ASAN_OPTIONS=fast_unwind_on_malloc=0
# Exclude tests that are currently known to fail
wx_tests_selection='~[valnum] ~wxPersistTLW ~wxPersistDVC ~wxTopLevel::Show ~wxFont::Weight ~wxFont::NativeFontInfo ~WebView ~RadioButton::Single ~RadioButton::Focus ~wxHtmlPrintout::Pagination ~wxTextCtrl::GetBestSize ~TextCtrlTestCase ~ClippingBoxTestCase::wxClientDC ~wxExecute::RedirectUTF8 ~Ellipsization::NormalCase ~SpinCtrl::* ~SpinCtrlDouble::* ~NotebookTestCase ~SettingsTestCase ~XRC::LoadURL ~Window::Show ~ModalDialogsTestCase ~Button::Click ~Button::Disabled ~wxDVC::GetItemRect ~wxDVC::AppendTextColumn ~Grid::KeyboardSelection ~Grid::CellClick ~Grid::ReorderedColumnsCellClick ~Grid::CellSelect ~wxStyledTextCtrl::AutoComp ~EvtLoopTestCase ~EventPropagationTestCase'
./test_gui $wx_tests_selection
- name: Building samples
if: matrix.skip_testing != true && matrix.skip_samples != true
run: |
make -k $wxBUILD_ARGS "CXXFLAGS=$wxMAKEFILE_CXXFLAGS" "LDFLAGS=$wxMAKEFILE_LDFLAGS" samples
- name: Installing
if: matrix.skip_testing != true
run: |
make install
- name: Testing installation
if: matrix.skip_testing != true
run: |
make -C samples/minimal -f makefile.unx clean
make -C samples/minimal -f makefile.unx WX_CONFIG=${{ github.workspace }}/localbin_${{ matrix.arch }}/bin/wx-config $wxBUILD_ARGS "CXXFLAGS=$wxMAKEFILE_CXXFLAGS" "LDFLAGS=$wxMAKEFILE_LDFLAGS"

View File

@@ -1,102 +0,0 @@
# CI workflow building wxMSW under Windows.
name: MSW builds
on:
push:
branches:
- master
paths-ignore:
- '.github/workflows/ci.yml'
- '.github/workflows/ci_cmake.yml'
- '.github/workflows/ci_mac.yml'
- '.github/workflows/ci_msw_cross.yml'
- 'build/tools/appveyor*.bat'
- 'distrib/**'
- 'docs/**'
- 'interface/**'
- 'include/wx/gtk/**'
- 'include/wx/osx/**'
- 'locale/**'
- 'src/gtk/**'
- 'src/osx/**'
- '*.md'
- '*.yml'
pull_request:
branches:
- master
paths-ignore:
- '.github/workflows/ci.yml'
- '.github/workflows/ci_cmake.yml'
- '.github/workflows/ci_mac.yml'
- '.github/workflows/ci_msw_cross.yml'
- 'build/tools/appveyor*.bat'
- 'distrib/**'
- 'docs/**'
- 'interface/**'
- 'include/wx/gtk/**'
- 'include/wx/osx/**'
- 'locale/**'
- 'src/gtk/**'
- 'src/osx/**'
- '*.md'
- '*.yml'
jobs:
msw-msvs:
runs-on: windows-${{ matrix.vsversion }}
name: wxMSW vs${{ matrix.vsversion }} ${{ matrix.configuration }} ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
include:
- configuration: 'DLL Debug'
platform: 'x64'
vsversion: 2022
- configuration: 'Debug'
platform: 'Win32'
vsversion: 2019
- configuration: 'DLL Release'
platform: 'x64'
vsversion: 2019
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v1.0.3
with:
vs-prerelease: true
- name: Build
run: |
msbuild /noLogo /m '/p:Configuration=${{ matrix.configuration }}' /p:Platform=${{ matrix.platform }} build\msw\wx_vc16.sln
if ( '${{ matrix.configuration }}'.IndexOf('DLL') -ne -1 ) {
$dlldir = Join-Path (Get-Location) 'lib\vc_${{ matrix.platform }}_dll'
Write-Output "Adding $dlldir to the PATH"
$dlldir | Out-File -Append $env:GITHUB_PATH
}
- name: Build minimal sample
run: |
msbuild /noLogo /m '/p:Configuration=${{ matrix.configuration }}' /p:Platform=${{ matrix.platform }} samples\minimal\minimal_vc16.sln
- name: Build tests
run: |
msbuild /noLogo /m '/p:Configuration=${{ matrix.configuration }}' /p:Platform=${{ matrix.platform }} tests\test_vc16.sln
- name: Run tests
working-directory: tests
run: |
.\vc*msw*\test.exe
- name: Build GUI tests
run: |
msbuild /noLogo /m '/p:Configuration=${{ matrix.configuration }}' /p:Platform=${{ matrix.platform }} tests\test_gui_vc16.sln
- name: Run GUI tests
working-directory: tests
run: |
.\vc*msw*\test_gui.exe

View File

@@ -1,254 +0,0 @@
# CI workflow cross-building wxMSW under Linux.
name: MSW cross-builds
on:
push:
branches:
- master
paths-ignore:
- '.github/workflows/ci.yml'
- '.github/workflows/ci_cmake.yml'
- '.github/workflows/ci_mac.yml'
- '.github/workflows/ci_msw.yml'
- 'build/tools/appveyor*.bat'
- 'distrib/**'
- 'docs/**'
- 'interface/**'
- 'include/msvc/**'
- 'include/wx/gtk/**'
- 'include/wx/osx/**'
- 'locale/**'
- 'src/gtk/**'
- 'src/osx/**'
- '*.md'
- '*.yml'
- 'wxwidgets.props'
pull_request:
branches:
- master
paths-ignore:
- '.github/workflows/ci.yml'
- '.github/workflows/ci_cmake.yml'
- '.github/workflows/ci_mac.yml'
- '.github/workflows/ci_msw.yml'
- 'build/tools/appveyor*.bat'
- 'distrib/**'
- 'docs/**'
- 'interface/**'
- 'include/msvc/**'
- 'include/wx/gtk/**'
- 'include/wx/osx/**'
- 'locale/**'
- 'src/gtk/**'
- 'src/osx/**'
- '*.md'
- '*.yml'
- 'wxwidgets.props'
jobs:
msw-cross-build:
# Set up this job to run in a Debian Sid container because it has recent
# versions of MinGW and Wine and is simpler to test with locally than the
# bespoke container used by GitHub Actions by default.
runs-on: ubuntu-latest
container: debian:sid-slim
name: ${{ matrix.name }}
strategy:
fail-fast: false
matrix:
include:
- name: wxMSW 64 bits
- name: wxMSW 32 bits
triplet: i686-w64-mingw32
env:
# Default to 64-bit build.
HOST_TRIPLET: ${{ matrix.triplet || 'x86_64-w64-mingw32' }}
# While our tests should run in any locale natively, it seems that Wine
# requires the locale encoding to be UTF-8 for Unicode file names to work
# correctly, so set the locale explicitly for it.
LC_ALL: C.UTF-8
# Run all commands as the normal user, created by the first step below.
#
# Note that the Bash options used here are the same as for the default
# shell used by GitHub Actions to minimize any surprises.
defaults:
run:
shell: /usr/bin/setpriv --reuid=runner --regid=adm --clear-groups --inh-caps=-all bash --noprofile --norc -eo pipefail {0}
steps:
- name: Set up container user
# Specify the default shell explicitly to override the default value above.
shell: bash
run: |
apt-get -q -o=Dpkg::Use-Pty=0 update
apt-get -q -o=Dpkg::Use-Pty=0 -y install sudo
# Create a user with the same UID/GID and name as the existing user
# outside of the container and allow it using sudo without password.
useradd --home-dir $HOME --no-create-home --gid adm --uid 1001 runner
echo 'runner ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/runner
- name: Install prerequisites
run: |
packages="git make wine x11-xserver-utils"
case "${HOST_TRIPLET}" in
x86_64-w64-mingw32)
packages="$packages g++-mingw-w64-x86-64 wine64 xvfb"
winerun=wine64
;;
i686-w64-mingw32)
sudo dpkg --add-architecture i386
sudo apt-get -q -o=Dpkg::Use-Pty=0 update
packages="$packages g++-mingw-w64-i686 wine32 libgl1:i386 xvfb:i386"
winerun=wine
;;
*)
echo "Unknown host triplet \"${HOST_TRIPLET}\"."
exit 1
;;
esac
sudo DEBIAN_FRONTEND=noninteractive apt-get -q -o=Dpkg::Use-Pty=0 -y install $packages
echo "wxTEST_RUNNER=${winerun}" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: System and environment setup
run: |
normal_uid=`id --user`
# The checkout actions runs as root and there doesn't seem to be any
# way to change this, so just adjust the owner after checkout.
sudo chown -R $normal_uid $GITHUB_WORKSPACE
# Add the directories containing MinGW and wx DLLs to Wine path.
winepath="$(winepath --windows $(dirname $(${HOST_TRIPLET}-g++ -print-libgcc-file-name)))"
winepath="${winepath};$(winepath --windows $(pwd)/lib)"
echo "WINEPATH=${winepath}" >> $GITHUB_ENV
cpu_count=`nproc`
((cpu_count++))
echo "wxMAKE_ARGS=-k -j$cpu_count" >> $GITHUB_ENV
echo "wxMAKEFILE_ERROR_CXXFLAGS=-Werror -Wno-error=cpp" >> $GITHUB_ENV
- name: Configure
run: |
./configure --host=${HOST_TRIPLET} --disable-sys-libs --disable-optimise --disable-debug_info || rc=$?
if [ -n "$rc" ]; then
echo '*** Configuring failed, contents of config.log follows: ***'
echo '-----------------------------------------------------------'
cat config.log
echo '-----------------------------------------------------------'
exit $rc
fi
- name: Build
run: |
make $wxMAKE_ARGS "CXXFLAGS=$wxMAKEFILE_ERROR_CXXFLAGS"
- name: Build samples
run: |
make $wxMAKE_ARGS "CXXFLAGS=$wxMAKEFILE_ERROR_CXXFLAGS" samples
- name: Build tests
working-directory: tests
run: |
make $wxMAKE_ARGS failtest
make $wxMAKE_ARGS "CXXFLAGS=$wxMAKEFILE_ERROR_CXXFLAGS"
- name: Launch Xvfb
run: |
echo 'Launching Xvfb...'
sudo mkdir /tmp/.X11-unix
sudo chmod 1777 /tmp/.X11-unix
Xvfb :10 -screen 0 1600x1200x24 &
num_tries=1
while true; do
if xset -d :10 -q >/dev/null 2>&1; then
echo 'Xvfb has become available.'
# Trying to use it immediately can still result in errors
# when creating the windows, somehow, so give it some time
# to settle.
sleep 3
break
fi
if [[ $num_tries -gt 10 ]]; then
echo 'Timed out waiting for Xvfb'
exit 1
fi
((num_tries++))
echo "Still waiting for Xvfb (attempt #$num_tries)"
sleep 3
done
echo 'Xvfb is running on display :10'
echo 'DISPLAY=:10' >> $GITHUB_ENV
- name: Run non-GUI tests
working-directory: tests
run: |
# Some tests are currently failing under Wine while they pass under
# native MSW, just skip running them until they can be dealt with.
# As soon as we specify the tests to exclude explicitly, we also need
# to exclude the tests that are not run by default, so start with this.
excluded_tests=('~[.]')
# There is 1 day difference in creation time under Wine somehow.
excluded_tests+=('~wxFileName::SetTimes')
# Closing the file fails for unknown reason under Wine.
excluded_tests+=('~FileFunctions::Error')
# Sporadic failures due to extra events.
excluded_tests+=('~wxFileSystemWatcher::EventCreate')
# The test fails (even with wxTEST_RUNNER-related changes) and hangs.
excluded_tests+=('~ExecTestCase')
# Wine WinHTTP implementations seems buggy, there are many errors.
excluded_tests+=('~[webrequest]')
$wxTEST_RUNNER ./test "${excluded_tests[@]}"
- name: Run GUI tests
working-directory: tests
run: |
# Same as for the non-GUI test above, except many more GUI tests fail
# under Wine.
excluded_gui_tests=('~[.]')
excluded_gui_tests+=('~BitmapComboBoxTestCase') # TextChangeEvents
excluded_gui_tests+=('~ClippingBoxTestCase*')
excluded_gui_tests+=('~ComboBoxTestCase') # TextChangeEvents
excluded_gui_tests+=('~DatePickerCtrlTestCase') # Range
excluded_gui_tests+=('~wxDC::GetTextExtent')
excluded_gui_tests+=('~ExecTestCase')
excluded_gui_tests+=('~wxFont::GetSet')
excluded_gui_tests+=('~GraphicsPathTestCaseGDIPlus')
excluded_gui_tests+=('~ImageList*')
excluded_gui_tests+=('~RadioButton::Focus')
excluded_gui_tests+=('~SettingsTestCase') # GetFont fails
excluded_gui_tests+=('~SliderTestCase') # Thumb
excluded_gui_tests+=('~TransformMatrixTestCase*')
excluded_gui_tests+=('~TreeCtrlTestCase') # LabelEdit
excluded_gui_tests+=('~TextCtrlTestCase') # many sub-tests
excluded_gui_tests+=('~wxTextCtrl::InitialCanUndo')
excluded_gui_tests+=('~[wxWebView]')
excluded_gui_tests+=('~Window::PositioningBeyondShortLimit')
excluded_gui_tests+=('~XRC::LoadURL')
$wxTEST_RUNNER ./test_gui "${excluded_gui_tests[@]}"

View File

@@ -1,72 +0,0 @@
# This workflow does some quick checks.
name: Code Checks
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check-unix:
runs-on: ubuntu-20.04
name: Check Spelling
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install codespell
run: |
pip3 install --no-warn-script-location codespell==1.17.1
- name: Run codespell
run: |
CODESPELL=$HOME/.local/bin/codespell ./misc/scripts/spellcheck
check-whitespace:
runs-on: ubuntu-20.04
name: Check Whitespace
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Check for trailing whitespace and TABs
run: |
git fetch --depth=1 origin master
git -c core.whitespace=blank-at-eol,blank-at-eof,space-before-tab,cr-at-eol,tab-in-indent \
diff --check origin/master \
':!.gitmodules' \
':!Makefile.in' \
':!config.guess' \
':!config.sub' \
':!configure' \
':!descrip.mms' \
':!install-sh' \
':!**/*akefile*' \
':!**/*.pbxproj' \
':!**/Info*.plist*' \
':!**/*.sln' \
':!**/*.vcproj' \
':!**/*.xpm'
check-mixed-eol:
runs-on: ubuntu-20.04
name: Check Mixed EOL
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dos2unix
run: |
sudo apt-get install -y dos2unix
- name: Check for mixed EOL
run: |
./misc/scripts/check_mixed_eol.sh

428
.gitignore vendored
View File

@@ -1,428 +0,0 @@
# /
/.gdb_history
/config.cache
/configarg.cache
/config.status
/wx-config
/config.log
/stamp-h.in
/Makefile
/setup.h
/*tags
/autom4te.cache
# /build/
# /build/autoconf_prepend-include/autoconf/
/build/autoconf_prepend-include/autoconf/autoconf.m4f
# /build/bakefiles/
/build/bakefiles/.bakefile_gen.state
/build/bakefiles/Bakefiles.local.bkgen
/build/bakefiles/wxwin.pyc
/build/bakefiles/wxpresets/presets/wx_presets.pyc
# /build/msw/
/build/msw/.m*
/build/msw/config.dmc
/build/msw/makefile.dmc
/build/msw/*c*_msw
/build/msw/*c*_msw_x64
/build/msw/*c*_msw_arm64
/build/msw/*c*_msw[du]
/build/msw/*c*_msw[du]_x64
/build/msw/*c*_msw[du]_arm64
/build/msw/*c*_mswud
/build/msw/*c*_mswud_x64
/build/msw/*c*_mswud_arm64
/build/msw/*c*_mswdll
/build/msw/*c*_mswdll_x64
/build/msw/*c*_mswdll_arm64
/build/msw/*c*_msw[du]dll
/build/msw/*c*_msw[du]dll_x64
/build/msw/*c*_msw[du]dll_arm64
/build/msw/*c*_mswuddll
/build/msw/*c*_mswuddll_x64
/build/msw/*c*_mswuddll_arm64
/build/msw/*c*_mswuniv
/build/msw/*c*_mswuniv_x64
/build/msw/*c*_mswuniv_arm64
/build/msw/*c*_mswuniv[du]
/build/msw/*c*_mswuniv[du]_x64
/build/msw/*c*_mswuniv[du]_arm64
/build/msw/*c*_mswunivud
/build/msw/*c*_mswunivud_x64
/build/msw/*c*_mswunivud_arm64
/build/msw/*c*_mswunivdll
/build/msw/*c*_mswunivdll_x64
/build/msw/*c*_mswunivdll_arm64
/build/msw/*c*_mswuniv[du]dll
/build/msw/*c*_mswuniv[du]dll_x64
/build/msw/*c*_mswuniv[du]dll_arm64
/build/msw/*c*_mswunivuddll
/build/msw/*c*_mswunivuddll_x64
/build/msw/*c*_mswunivuddll_arm64
/build/msw/*c*_mswhdll
/build/msw/*c*_mswhdll_x64
/build/msw/*c*_mswhdll_arm64
/build/msw/*c*_mswuhdll
/build/msw/*c*_mswuhdll_x64
/build/msw/*c*_mswuhdll_arm64
/build/msw/wx_local.props
/build/msw/*.vcproj.*.user
/build/msw/*.vcxproj.user
/build/msw/vc*_mswud
/build/msw/wx_vc8arm_*.vcproj
/build/msw/wx_vc8arm.sln
/build/msw/ipch/
/build/msw/*.opensdf
/build/msw/*.sdf
/build/msw/*.VC.db
/build/msw/*.VC.VC.opendb
/build/msw/*.suo
/build/msw/.vs/
# /build/osx
**/*.xcodeproj/*
!**/*.xcodeproj/project.pbxproj
!**/*.xcodeproj/xcshareddata/
!**/*.xcworkspace/contents.xcworkspacedata
/build/osx/build
/build/osx/setup/cocoa/include/wx/setup.h
/build/osx/setup/iphone/include/wx/setup.h
# /demos/
/demos/*/*.sln
/demos/*/*c*_msw
/demos/*/*c*_msw_x64
/demos/*/*c*_msw_arm64
/demos/*/*c*_msw[du]
/demos/*/*c*_msw[du]_x64
/demos/*/*c*_msw[du]_arm64
/demos/*/*c*_mswud
/demos/*/*c*_mswud_x64
/demos/*/*c*_mswud_arm64
/demos/*/*c*_mswdll
/demos/*/*c*_mswdll_x64
/demos/*/*c*_mswdll_arm64
/demos/*/*c*_msw[du]dll
/demos/*/*c*_msw[du]dll_x64
/demos/*/*c*_msw[du]dll_arm64
/demos/*/*c*_mswuddll
/demos/*/*c*_mswuddll_x64
/demos/*/*c*_mswuddll_arm64
/demos/*/*c*_mswuniv
/demos/*/*c*_mswuniv_x64
/demos/*/*c*_mswuniv_arm64
/demos/*/*c*_mswuniv[du]
/demos/*/*c*_mswuniv[du]_x64
/demos/*/*c*_mswuniv[du]_arm64
/demos/*/*c*_mswunivud
/demos/*/*c*_mswunivud_x64
/demos/*/*c*_mswunivud_arm64
/demos/*/*c*_mswunivdll
/demos/*/*c*_mswunivdll_x64
/demos/*/*c*_mswunivdll_arm64
/demos/*/*c*_mswuniv[du]dll
/demos/*/*c*_mswuniv[du]dll_x64
/demos/*/*c*_mswuniv[du]dll_arm64
/demos/*/*c*_mswunivuddll
/demos/*/*c*_mswunivuddll_x64
/demos/*/*c*_mswunivuddll_arm64
/demos/*/*Classic?Debug*
/demos/*/*Classic?Release*
/demos/*/*Carbon?Debug*
/demos/*/*Carbon?Release*
# /demos/bombs/
/demos/bombs/bombsM5.mcp
/demos/bombs/bombsM*Data
# /demos/forty/
/demos/forty/fortyM5.mcp
/demos/forty/fortyM*Data
# /demos/fractal/
/demos/fractal/fractalM5.mcp
/demos/fractal/fractalM*Data
# /demos/life/
/demos/life/lifeM5.mcp
/demos/life/lifeM*Data
# /demos/poem/
/demos/poem/poemM5.mcp
/demos/poem/poemM*Data
# /distrib/release/
/distrib/release
# /docs/doxygen/
/docs/doxygen/doxygen.log
/docs/doxygen/out
# /include/
/include/Makefile.in
/include/*.mch
# /include/wx/
/include/wx/Makefile.in
# /include/wx/generic/
/include/wx/generic/Makefile.in
# /include/wx/gtk/
/include/wx/gtk/Makefile.in
# /include/wx/gtk1/
/include/wx/gtk1/Makefile.in
# /include/wx/html/
/include/wx/html/Makefile.in
# /include/wx/motif/
/include/wx/motif/Makefile.in
# /include/wx/msw/
/include/wx/msw/Makefile.in
/include/wx/msw/Makefile
# /include/wx/protocol/
/include/wx/protocol/Makefile.in
# /include/wx/unix/
/include/wx/unix/Makefile.in
# /lib/
/lib/base
/lib/based
/lib/basedll
/lib/basedll[du]
/lib/basedllud
/lib/baseu
/lib/baseud
/lib/bcc_lib
/lib/cdef*.res
/lib/dmc_lib
/lib/expat*.lib
/lib/gcc*_dll
/lib/gcc_dll32
/lib/gcc_dll64
/lib/gcc*_lib
/lib/gcc_lib32
/lib/gcc_lib64
/lib/jpeg*.lib
/lib/ldef*.res
/lib/[Ll]inux
/lib/linux-gnu
/lib/msw
/lib/mswd
/lib/mswdll
/lib/mswdll[du]
/lib/mswdllud
/lib/mswu
/lib/mswud
/lib/png*.lib
/lib/regex*.lib
/lib/tiff*.lib
/lib/univ
/lib/univd
/lib/univdll
/lib/univdlld
/lib/vc*_dll
/lib/vc*_lib
/lib/wx_*.rsrc
/lib/wxbase*.dll
/lib/wxbase*.exp
/lib/wxbase*.ilk
/lib/wxbase*.lib
/lib/wxmsw*.dll
/lib/wxmsw*.exp
/lib/wxmsw*.ilk
/lib/wxmsw*.lib
/lib/zlib*.lib
# /locale/
/locale/*.mo
# /locale/msw/
/locale/msw/*.mo
# /samples/
/samples/**/*c*_msw
/samples/**/*c*_msw_x64
/samples/**/*c*_msw_arm64
/samples/**/*c*_msw[du]
/samples/**/*c*_msw[du]_x64
/samples/**/*c*_msw[du]_arm64
/samples/**/*c*_mswud
/samples/**/*c*_mswud_x64
/samples/**/*c*_mswud_arm64
/samples/**/*c*_mswdll
/samples/**/*c*_mswdll_x64
/samples/**/*c*_mswdll_arm64
/samples/**/*c*_msw[du]dll
/samples/**/*c*_msw[du]dll_x64
/samples/**/*c*_msw[du]dll_arm64
/samples/**/*c*_mswuddll
/samples/**/*c*_mswuddll_x64
/samples/**/*c*_mswuddll_arm64
/samples/**/*c*_mswuniv
/samples/**/*c*_mswuniv_x64
/samples/**/*c*_mswuniv_arm64
/samples/**/*c*_mswuniv[du]
/samples/**/*c*_mswuniv[du]_x64
/samples/**/*c*_mswuniv[du]_arm64
/samples/**/*c*_mswunivud
/samples/**/*c*_mswunivud_x64
/samples/**/*c*_mswunivud_arm64
/samples/**/*c*_mswunivdll
/samples/**/*c*_mswunivdll_x64
/samples/**/*c*_mswunivdll_arm64
/samples/**/*c*_mswuniv[du]dll
/samples/**/*c*_mswuniv[du]dll_x64
/samples/**/*c*_mswuniv[du]dll_arm64
/samples/**/*c*_mswunivuddll
/samples/**/*c*_mswunivuddll_x64
/samples/**/*c*_mswunivuddll_arm64
/samples/**/*.vcxproj.user
/samples/**/.vs/
# /samples/image/
/samples/image/saved.xpm
/samples/image/test.png
/samples/image/test.xpm
# /src/
/src/FreeBSD
/src/[Ll]inux
/src/linux-gnu
/src/Makefile.in
/src/*.lo
/src/*.la
/src/make.env
/src/makeprog.env
/src/makelib.env
/src/ReleaseDebug
/src/wxwindowsM*Data
/src/wxwindowsM5.mcp
/src/build
/src/*.ncb
/src/*.opt
/src/*.plg
# /src/common/
/src/common/y_tab.c
# /src/gtk/
/src/gtk/Makefile.in
/src/gtk/*.lo
/src/gtk/*.la
# /src/gtk1/
/src/gtk1/Makefile.in
/src/gtk1/*.lo
/src/gtk1/*.la
# /src/jpeg/
/src/jpeg/jpegM*Data
/src/jpeg/jpegM5.mcp
/src/jpeg/Debug
/src/jpeg/Release
# /src/motif/
/src/motif/Makefile.in
# /src/msw/
/src/msw/Makefile.in
# /src/regex/
/src/regex/Debug
/src/regex/Release
/src/regex/*.vcl
# /src/zlib/
/src/zlib/zlibM*Data
/src/zlib/zlibM5.mcp
/src/zlib/Debug
/src/zlib/Release
# /tests/
/tests/*c*_msw
/tests/*c*_msw_x64
/tests/*c*_msw_arm64
/tests/*c*_msw[du]
/tests/*c*_msw[du]_x64
/tests/*c*_msw[du]_arm64
/tests/*c*_mswud
/tests/*c*_mswud_x64
/tests/*c*_mswud_arm64
/tests/*c*_mswdll
/tests/*c*_mswdll_x64
/tests/*c*_mswdll_arm64
/tests/*c*_msw[du]dll
/tests/*c*_msw[du]dll_x64
/tests/*c*_msw[du]dll_arm64
/tests/*c*_mswuddll
/tests/*c*_mswuddll_x64
/tests/*c*_mswuddll_arm64
/tests/*c*_mswuniv
/tests/*c*_mswuniv_x64
/tests/*c*_mswuniv_arm64
/tests/*c*_mswuniv[du]
/tests/*c*_mswuniv[du]_x64
/tests/*c*_mswuniv[du]_arm64
/tests/*c*_mswunivud
/tests/*c*_mswunivud_x64
/tests/*c*_mswunivud_arm64
/tests/*c*_mswunivdll
/tests/*c*_mswunivdll_x64
/tests/*c*_mswunivdll_arm64
/tests/*c*_mswuniv[du]dll
/tests/*c*_mswuniv[du]dll_x64
/tests/*c*_mswuniv[du]dll_arm64
/tests/*c*_mswunivuddll
/tests/*c*_mswunivuddll_x64
/tests/*c*_mswunivuddll_arm64
/tests/test.opt
/tests/test*.dsw
/tests/test.suo
/tests/test_test.vcproj
# /tests/benchmarks/
/tests/benchmarks/*.sln
/tests/benchmarks/*c*_msw*/
# /utils/
/utils/**/*c*_mswu
/utils/**/*c*_mswu_x64
/utils/**/*c*_mswu_arm64
/utils/**/*c*_mswud
/utils/**/*c*_mswud_x64
/utils/**/*c*_mswud_arm64
/utils/**/*c*_mswudll
/utils/**/*c*_mswudll_x64
/utils/**/*c*_mswudll_arm64
/utils/**/*c*_mswuddll
/utils/**/*c*_mswuddll_x64
/utils/**/*c*_mswuddll_arm64
# /utils/emulator/src/
/utils/emulator/src/*.sln
# /utils/helpview/src/
/utils/helpview/src/*.sln
# /utils/hhp2cached/
/utils/hhp2cached/*.sln
/utils/hhp2cached/HHP2CachedM*Data
/utils/hhp2cached/*Classic?Debug*
/utils/hhp2cached/*Classic?Release*
/utils/hhp2cached/*Carbon?Debug*
/utils/hhp2cached/*Carbon?Release*
# /utils/wxrc/
/utils/wxrc/wxrc_vc[789].sln
/3rdparty/webview2

32
.gitmodules vendored
View File

@@ -1,32 +0,0 @@
[submodule "3rdparty/catch"]
path = 3rdparty/catch
url = https://github.com/wxWidgets/Catch.git
branch = wx
[submodule "src/zlib"]
path = src/zlib
url = https://github.com/wxWidgets/zlib.git
branch = wx
[submodule "src/png"]
path = src/png
url = https://github.com/wxWidgets/libpng.git
branch = wx
[submodule "src/expat"]
path = src/expat
url = https://github.com/wxWidgets/libexpat.git
branch = wx
[submodule "src/tiff"]
path = src/tiff
url = https://github.com/wxWidgets/libtiff.git
branch = wx
[submodule "src/jpeg"]
path = src/jpeg
url = https://github.com/wxWidgets/libjpeg-turbo.git
branch = wx
[submodule "3rdparty/pcre"]
path = 3rdparty/pcre
url = https://github.com/wxWidgets/pcre
branch = wx
[submodule "3rdparty/nanosvg"]
path = 3rdparty/nanosvg
url = https://github.com/wxWidgets/nanosvg
branch = wx

View File

@@ -1,71 +0,0 @@
AliKet <aliket1435@gmail.com>
Anil Kumar <Anil.Kumar@efi.com> <anilkumar8753@gmail.com>
ARATA Mizuki <minorinoki@gmail.com>
Artur Sochirca <arturs@bricsys.com> <arturs@trac.wxwidgets.org>
Artur Wieczorek <artwik@wp.pl>
Daniel Kulp <dan@kulp.com> <dkulp@apache.org>
Blake Eryx <seasweptdreams@gmail.com> <Blake-Eryx@users.noreply.github.com>
Bogdan Iordanescu <bogdan_iordanescu@yahoo.com>
Cătălin Răceanu <maildus@gmail.com>
<maildus@gmail.com> <catalinr@users.noreply.github.com>
<maildus@gmail.com> <catalinraceanu2@gmail.com>
Danny Scott <doscott@doscott.ca>
<doscott@doscott.ca> <doscott@gmail.com>
<doscott@doscott.ca> <d.o.scott@unb.ca>
Dimitri Schoolwerth <dimitri.schoolwerth@gmail.com> <dimitri@schoolwerth.com>
Hashir Ahmad <hashirahmadleo@gmail.com>
Frédéric Bron <frederic.bron@m4x.org> <ufospoke@gmail.com>
Hubert Talbot <hubert.talbot64@gmail.com>
Igor Korot <ikorot01@gmail.com>
Ilya Bizyaev <bizyaev.game@yandex.ru>
Jens Göpfert <jens.goepfert@tracetronic.de> <jensgoe@users.noreply.github.com>
John Roberts <johnr@iinet.net.au> <johnr@jjbone.com>
Jouk Jansen <joukj@hrem.nano.tudelft.nl>
Jose Lorenzo <josee.loren@gmail.com> <isleo11@gmail.com>
Julian Smart <julian@anthemion.co.uk>
Jevgenijs Protopopovs <jprotopopov1122@gmail.com>
Hartwig Wiesmann <git@skywind.eu>
<git@skywind.eu> <hartwig.wiesmann@wanadoo.nl>
Kinaou Hervé <kinaouherve@gmail.com>
Kolya Kosenko <kolya.kosenko@gmail.com> <kosenko@trac.wxwidgets.org>
Konstantin S. Matveyev <kos@eligovision.ru> <konstantin.matveyev@eligovision.ru>
Konstantin S. Matveyev <kos@eligovision.ru> valid-ptr <kos@eligovision.ru>
Lauri Nurmi <lanurmi@iki.fi> <lauri@ksenos.fi>
Lynn C. Rees <lcrees@gmail.com>
Maarten Bent <MaartenBent@users.noreply.github.com>
Manuel Martin <mmartin@ceyd.es>
Markus Juergens <mj@be-enabled.de> <markusj@trac.wxwidgets.org>
Martin Ettl <ettl.martin78@googlemail.com>
Martin Ettl <ettl.martin78@googlemail.com> <ettl.martin78@gmail.com>
Martin Ettl <ettl.martin78@googlemail.com> <orbitcowboy@web.de>
Mathew Maidment <mathew1800@gmail.com>
Micha Ahrweiler <mbaschnitzi@users.noreply.github.com>
ousnius <ousnius@users.noreply.github.com> <denis41@hotmail.de>
Paul Kulchenko <paul@kulchenko.com> <paulclinger@gmail.com>
Pavel O. <pavelxdd@users.noreply.github.com>
Pavel O. <pavelxdd@users.noreply.github.com> <pavel.otchertsov@gmail.com>
Pavel Tyunin <36256989+pavel-t@users.noreply.github.com>
PB <PBfordev@gmail.com> <pbfordev@gmail.com>
<PBfordev@gmail.com> <PBforDev@gmail.com>
Prashant Kumar Nirmal <prashantkn94@gmail.com> <ohhereim@gmail.com>
René Kijewski <rene.kijewski@fu-berlin.de> <kijewski@mi.fu-berlin.de>
Richard Fath <richard.fath@t-online.de>
Richard Powell <rmpowell77@me.com>
Rick S <rivdsl@gmail.com> <rivdsl@hotmail.com>
Roberto Boriotti <roberto.boriotti@canon-europe.com>
Steffen Olszewski <steffen.olszewski@gero-mess.de> <sodev@trac.wxwidgets.org>
Steve Browne <swbrowne@gmail.com> <sbrowne@unknown>
<swbrowne@gmail.com> <amn3sia@gmail.com>
Tim Kosse <tim.kosse@gmx.de> <tim.kosse@filezilla-project.org>
Tim Stahlhut <stahta01@gmail.com>
Tim Stahlhut <stahta01@gmail.com> <stahta01@users.sourceforge.net>
Tim Stahlhut <stahta01@gmail.com> <stahta01@users.noreply.github.com>
Tobias Taschner <ttaschner@protect-software.com> <TcT2k@users.noreply.github.com>
<ttaschner@protect-software.com> <github@tc84.de>
Václav Slavík <vaclav@slavik.io> <vslavik@fastmail.fm>
Václav Slavík <vaclav@slavik.io>
Vadim Zeitlin <vadim@wxwidgets.org> <vz-github@zeitlins.org>
<vadim@wxwidgets.org> <vadim@zeitlins.org>
Wolfgang Stöggl <c72578@yahoo.de>
Xlord2 <b1146285@trbvn.com> <b1223723@trbvn.com>
Iwbnwif Yiw <iwbnwif@gmail.com>

1
3rdparty/catch vendored

Submodule 3rdparty/catch deleted from 8ec3e6a102

1
3rdparty/nanosvg vendored

Submodule 3rdparty/nanosvg deleted from ccdb199513

1
3rdparty/pcre vendored

Submodule 3rdparty/pcre deleted from 5b934c2a67

262
BuildCVS.txt Normal file
View File

@@ -0,0 +1,262 @@
------------------------------------------------------------------------
How to build the sources from CVS
------------------------------------------------------------------------
Please use the install.txt files in docs/gtk, docs/msw, docs/motif, docs/mac
etc. alongside these instructions.
I) Windows using plain makefiles
----------------------------------------
a) If using Microsoft Visual C++ 5.0 or 6.0
Ensure that the command-line compiler and tools (including
nmake) are installed and ready to run. Depending on your
installation there may be a batch file (commonly named VCVARS32.BAT)
that needs to be run to set correct environment variables and PATH entries.
Continue with item c) below.
b) If using the MinGW or Cygwin compilers
You can get MinGW from http://www.mingw.org/
Cygwin is available at http://www.cygwin.com/
If you are using Cygwin or MinGW together with the MSYS environment, you
can build the library using configure (see "Unix ports" and
"Windows using configure" below). You can also
build wxWidgets without configure using native makefile, but only with
MinGW. Using Cygwin together with Windows makefile is no longer supported.
If building with MinGW without configure:
-> Set your path so that it includes the directory
where your compiler and tools reside
-> Make sure you have GNU Make installed. It must be Windows native version.
Download it from http://www.mingw.org, the executable will be called
mingw32-make.exe.
-> Modern version of MinGW is required; preferably MinGW 2.0 (with gcc3),
but MinGW with gcc-2.95.3 will suffice. If you are using 2.95, you will
have to change variable GCC_VERSION in config.gcc (see msw/install.txt
for details).
If using configure, Unix instructions apply.
c) Build instructions
Assumming that you installed the wxWidgets sources
into c:\wxWidgets:
-> Copy c:\wxWidgets\include\wx\msw\setup0.h
to c:\wxWidgets\include\wx\msw\setup.h
-> Edit c:\wxWidgets\include\wx\msw\setup.h to choose
the features you would like to compile wxWidgets with[out].
and std iostreams are disabled with
#define wxUSE_STD_IOSTREAM 0
-> type: cd c:\wxWidgets\build\msw
-> type: make -f makefile.gcc (if using GNU tools)
or type: nmake -f makefile.vc (if using MS VC++)
etc.
See also docs/msw/install.txt for additional compilation options.
d) Borland (including free command line tools)
Download tools from http://www.borland.com/downloads/
See docs/msw/install.txt for details; in brief:
-> type cd c:\wxWidgets\build\msw
-> type make -f makefile.bcc
You can customize many things in the build process, detailed description is
in docs/msw/install.txt.
II) Unix ports
--------------
Building wxGTK or wxMotif completely without configure
won't ever work, but there is now a new makefile system
that works without libtool and automake, using only
configure to create what is needed.
In order to create configure, you need to have the
GNU autoconf package (version > 2.54) installed
on your system and type run "autoconf" in the base
directory (or run the autogen.sh script in the same
directory, which just calls autoconf). Note that you usually don't
need to do this because configure is included in CVS.
Set WXWIN environment variable to the base directory such
as ~/wxWidgets (this is actually not really needed).
-> type: export WXWIN=~/wxWidgets
-> type: md mybuild
-> type: cd mybuild
-> type: ../configure --with-motif
or type: ../configure --with-gtk
-> type: make
-> type: su <type root password>
-> type: make install
-> type: ldconfig
-> type: exit
Call configure with --disable-shared to create a static
library. Calling "make uninstall" will remove the installed
library and "make dist" will create a distribution (not
yet complete).
III) Windows using configure
----------------------------------------
wxWidgets can be built on Windows using MSYS (see
http://www.mingw.org/), which is a POSIX build environment
for Windows. With MSYS you can just ./configure && make (see also VII,
Unix->Windows cross-compiling using configure).
Of course, you can also build the library using plain makefiles (see
section I).
IV) Classic MacOS using CodeWarrior (eg MacOS 8.x/9.x)
----------------------------------------
Refer to the readme.txt and install.txt files in docs/mac to build
wxWidgets under Classic Mac OS using CodeWarrior.
If you are checking out the CVS sources using cvs under Mac OS X and
compiling under Classic Mac OS:
- make sure that all text files have a Mac OS type of 'TEXT' otherwise
CodeWarrior may ignore them. Checking out the CVS sources using cvs
under Mac OS X creates untyped files which can lead to compilation
errors under CodeWarrior which are hard to track down.
- convert the xml files to CodeWarrior binary projects using the supplied
AppleScript in docs/mac (M5xml2mcp.applescript for CodeWarrior 5.3)
V) MacOS X using configure and the Developer Tools
----------------------------------------
You need to have the Developer Tools installed. If this is not the case,
you will need to register at the Apple Developer web site (this is a free
registration) in order to download the Developer Tools installer.
In order to create configure, you need to have the
GNU autoconf package (version >= 2.54) installed
on your system and type run "autoconf" in the base
directory (or run the autogen.sh script in the same
directory, which just calls autoconf).
-> type: mkdir macbuild
-> type: cd macbuild
-> type: ../configure --with-mac
or type: ../configure
-> type: make
VI) OS/2
----------------------------------------
No notes.
VII) Unix->Windows cross-compiling using configure
--------------------------------------------------
First you'll need a cross-compiler; linux glibc binaries of MinGW and
Cygwin (both based on egcs) can be found at
ftp://ftp.objsw.com/pub/crossgcc/linux-x-win32. Alternative binaries,
based on the latest MinGW release can be found at
http://members.telering.at/jessich/mingw/mingwcross/mingw_cross.html
Otherwise you can compile one yourself.
[ A Note about Cygwin and MinGW: the main difference is that Cygwin
binaries are always linked against cygwin.dll. This dll encapsulates most
standard Unix C extensions, which is very handy if you're porting unix
software to windows. However, wxMSW doesn't need this, so MinGW is
preferable if you write portable C(++). ]
You might want to build both Unix and Windows binaries in the same source
tree; to do this make subdirs for each e.g. unix and win32. If you've
already build wxWidgets in the main dir, do a 'make distclean' there,
otherwise configure will get confused. (In any case, read the section 'Unix
using configure' and make sure you're able to build a native wxWidgets
library; cross-compiling errors can be pretty obscure and you'll want to be
sure that your configure setup is basically sound.)
To cross compile the windows library, do
-> cd win32
(or whatever you called it)
Now run configure. There are two ways to do this
-> ../configure --host=i586-mingw32 --build=i586-linux --with-mingw
where --build= should read whatever platform you're building on. Configure
will notice that build and host platforms differ, and automatically prepend
i586-mingw32- to gcc, ar, ld, etc (make sure they're in the PATH!).
The other way to run configure is by specifying the names of the binaries
yourself:
-> CC=i586-mingw32-gcc CXX=i586-mingw32-g++ RANLIB=i586-mingw32-ranlib \
DLLTOOL=i586-mingw32-dlltool LD=i586-mingw32-ld NM=i586-mingw32-nm \
../configure --host=i586-mingw32 --with-mingw
(all assuming you're using MinGW)
By default this will compile a DLL, if you want a static library,
specify --disable-shared.
Type
-> make
and wait, wait, wait. Don't leave the room, because the minute you do there
will be a compile error :-)
NB: if you are using a very old compiler you risk to get quite a few warnings
about "ANSI C++ forbids implicit conversion from 'void *'" in all places
where va_arg macro is used. This is due to a bug in (some versions of)
MinGW headers which may be corrected by upgrading your compier,
otherwise you might edit the file
${install_prefix}/lib/gcc-lib/i586-mingw32/egcs-2.91.57/include/stdarg.h
(instead of egcs-2.91.57 you may have something different), searching for
the lines
/* Define __gnuc_va_list. */
#ifndef __GNUC_VA_LIST
#define __GNUC_VA_LIST
#if defined(__svr4__) || defined(_AIX) || defined(_M_UNIX) || defined(__NetBSD__)
typedef char *__gnuc_va_list;
#else
typedef void *__gnuc_va_list;
#endif
#endif
and adding "|| defined(_WIN32)" to the list of platforms on which
__gnuc_va_list is char *.
If this is successful, you end up with a wx23_2.dll/libwx23_2.a in win32/lib
(or just libwx_msw.a if you opted for a static build).
Now try building the minimal sample:
-> cd samples/minimal
-> make
and run it with wine, for example (or copy to a Windows box)
-> wine minimal.exe
If all is well, do an install; from win32
-> make install
Native and cross-compiled installations can co-exist peacefully
(as long as their widget sets differ), except for wx-config. You might
want to rename the cross-compiled one to i586-mingw32-wx-config, or something.
Cross-compiling TODO:
---------------------
- resource compiling must be done manually for now (should/can we link the
default wx resources into libwx_msw.a?) [ No we can't; the linker won't
link it in... you have to supply an object file ]
- static executables are HUGE -- there must be room for improvement.

View File

@@ -1,98 +0,0 @@
#############################################################################
# Name: CMakeLists.txt
# Purpose: Primary CMake for wxWidgets
# Author: Tobias Taschner
# Created: 2016-09-20
# Copyright: (c) 2016 wxWidgets development team
# Licence: wxWindows licence
#############################################################################
cmake_minimum_required(VERSION 2.8.12)
if(NOT CMAKE_CONFIGURATION_TYPES)
get_property(HAVE_MULTI_CONFIG_GENERATOR GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
# Set default configuration types for multi-config generators
if(HAVE_MULTI_CONFIG_GENERATOR)
set(CMAKE_CONFIGURATION_TYPES "Debug;Release")
endif()
endif()
# https://blog.kitware.com/cmake-and-the-default-build-type/
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
set(default_build_type "Debug")
message(STATUS "Setting build type to '${default_build_type}' as none was specified.")
set(CMAKE_BUILD_TYPE "${default_build_type}" CACHE STRING "Choose the type of build." FORCE)
# Set the possible values of build type for cmake-gui
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release")
endif()
# This block, particularly the versions used, should be kept in sync with
# samples/minimal/CMakeLists.txt.
if(APPLE AND NOT CMAKE_OSX_DEPLOYMENT_TARGET)
# If no deployment target has been set default to the minimum supported
# OS version (this has to be set before the first project() call)
if(CMAKE_SYSTEM_NAME STREQUAL "iOS")
set(CMAKE_OSX_DEPLOYMENT_TARGET 12.0 CACHE STRING "iOS Deployment Target")
else()
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.10 CACHE STRING "macOS Deployment Target")
endif()
endif()
include(build/cmake/policies.cmake NO_POLICY_SCOPE)
# Initialize variables for quick access to wx root dir in sub dirs
set(wxSOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
set(wxBINARY_DIR ${CMAKE_BINARY_DIR})
set(wxOUTPUT_DIR ${wxBINARY_DIR}/lib)
# parse the version number from wx/version.h and include in wxMAJOR_VERSION and wxMINOR_VERSION
file(READ "${wxSOURCE_DIR}/include/wx/version.h" WX_VERSION_H_CONTENTS)
string(REGEX MATCH "wxMAJOR_VERSION[ \t]+([0-9]+)"
wxMAJOR_VERSION ${WX_VERSION_H_CONTENTS})
string (REGEX MATCH "([0-9]+)"
wxMAJOR_VERSION ${wxMAJOR_VERSION})
string(REGEX MATCH "wxMINOR_VERSION[ \t]+([0-9]+)"
wxMINOR_VERSION ${WX_VERSION_H_CONTENTS})
string (REGEX MATCH "([0-9]+)"
wxMINOR_VERSION ${wxMINOR_VERSION})
string(REGEX MATCH "wxRELEASE_NUMBER[ \t]+([0-9]+)"
wxRELEASE_NUMBER ${WX_VERSION_H_CONTENTS})
string (REGEX MATCH "([0-9]+)"
wxRELEASE_NUMBER ${wxRELEASE_NUMBER})
# Determine if current version is a "Development" release
math(EXPR rel_dev "${wxMINOR_VERSION} % 2")
if(rel_dev)
set(wxVERSION_IS_DEV TRUE)
else()
set(wxVERSION_IS_DEV FALSE)
endif()
# parse the .so version from build/bakefiles/version.bkl
file(READ "${wxSOURCE_DIR}/build/bakefiles/version.bkl" WX_VERSION_BKL_CONTENTS)
string(REGEX MATCH "WX_CURRENT.>([0-9]+)"
WX_CURRENT ${WX_VERSION_BKL_CONTENTS})
string(REGEX MATCH "([0-9]+)"
WX_CURRENT ${WX_CURRENT})
string(REGEX MATCH "WX_REVISION.>([0-9]+)"
WX_REVISION ${WX_VERSION_BKL_CONTENTS})
string(REGEX MATCH "([0-9]+)"
WX_REVISION ${WX_REVISION})
string(REGEX MATCH "WX_AGE.>([0-9]+)"
WX_AGE ${WX_VERSION_BKL_CONTENTS})
string(REGEX MATCH "([0-9]+)"
WX_AGE ${WX_AGE})
math(EXPR wxSOVERSION_MAJOR "${WX_CURRENT} - ${WX_AGE}")
set(wxSOVERSION ${wxSOVERSION_MAJOR}.${WX_AGE}.${WX_REVISION})
set(wxVERSION ${wxMAJOR_VERSION}.${wxMINOR_VERSION}.${wxRELEASE_NUMBER})
set(wxCOPYRIGHT "2002-2021 wxWidgets")
project(wxWidgets VERSION ${wxVERSION})
include(build/cmake/main.cmake)
# Set the default startup project for Visual Studio
if(wxBUILD_SAMPLES AND wxUSE_GUI)
set_directory_properties(PROPERTIES VS_STARTUP_PROJECT minimal)
endif()

46637
Makefile.in

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +0,0 @@
Building from Git Sources
-------------------------
Please use `--recurse-submodules` option with the initial `git clone`. If you
had already cloned the repository without this option, please run `git
submodule update --init` to also get all 3rd party libraries code.
Otherwise, building from Git checkout is not different from building
from the sources include into the releases, so please follow the usual
instructions in the port-specific files, such as
[wxMSW](docs/msw/install.md), [wxGTK](docs/gtk/install.md),
[wxOSX](docs/osx/install.md) and so on.

View File

@@ -1,87 +0,0 @@
About
-----
wxWidgets is a free and open source cross-platform C++ framework
for writing advanced GUI applications using native controls.
![wxWidgets Logo](https://www.wxwidgets.org/assets/img/header-logo.png)
wxWidgets allows you to write native-looking GUI applications for
all the major desktop platforms and also helps with abstracting
the differences in the non-GUI aspects between them. It is free
for the use in both open source and commercial applications, comes
with the full, easy to read and modify, source and extensive
documentation and a collection of more than a hundred examples.
You can learn more about wxWidgets at https://www.wxwidgets.org/
and read its documentation online at https://docs.wxwidgets.org/
Platforms
---------
[![AppVeyor](https://img.shields.io/appveyor/build/wxWidgets/wxWidgets/master?label=AppVeyor&logo=appveyor)](https://ci.appveyor.com/project/wxWidgets/wxwidgets)
[![Unix (make)](https://github.com/wxWidgets/wxWidgets/actions/workflows/ci.yml/badge.svg)](https://github.com/wxWidgets/wxWidgets/actions/workflows/ci.yml)
[![Unix (CMake)](https://github.com/wxWidgets/wxWidgets/actions/workflows/ci_cmake.yml/badge.svg)](https://github.com/wxWidgets/wxWidgets/actions/workflows/ci_cmake.yml)
[![MSW (MSVC)](https://github.com/wxWidgets/wxWidgets/actions/workflows/ci_msw.yml/badge.svg)](https://github.com/wxWidgets/wxWidgets/actions/workflows/ci_msw.yml)
[![MSW (gcc)](https://github.com/wxWidgets/wxWidgets/actions/workflows/ci_msw_cross.yml/badge.svg)](https://github.com/wxWidgets/wxWidgets/actions/workflows/ci_msw_cross.yml)
[![Mac](https://github.com/wxWidgets/wxWidgets/actions/workflows/ci_mac.yml/badge.svg)](https://github.com/wxWidgets/wxWidgets/actions/workflows/ci_mac.yml)
[![OSS-Fuzz](https://oss-fuzz-build-logs.storage.googleapis.com/badges/wxwidgets.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:wxwidgets)
This version of wxWidgets supports the following primary platforms:
- Windows XP, Vista, 7, 8 and 10 (32/64 bits).
- Most Unix variants using the GTK+ toolkit (version 2.6 or newer or 3.x).
- macOS (10.10 or newer) using Cocoa under both amd64 and ARM platforms.
Most popular C++ compilers are supported including but not limited to:
- Microsoft Visual C++ 2005 or later (up to 2022).
- g++ 4 or later, including MinGW/MinGW-64/TDM under Windows.
- Clang under macOS and Linux.
- Intel icc compiler.
- Oracle (ex-Sun) CC.
Licence
-------
[wxWidgets licence](https://github.com/wxWidgets/wxWidgets/blob/master/docs/licence.txt)
is a modified version of LGPL explicitly allowing not distributing the sources
of an application using the library even in the case of static linking.
Building
--------
For building the library, please see platform-specific documentation under
`docs/<port>` directory, e.g. here are the instructions for
[wxGTK](docs/gtk/install.md), [wxMSW](docs/msw/install.md) and
[wxOSX](docs/osx/install.md).
If you're building the sources checked out from Git, and not from a released
version, please see these additional [Git-specific notes](README-GIT.md).
Further information
-------------------
If you are looking for community support, you can get it from
- [Mailing Lists](https://www.wxwidgets.org/support/mailing-lists/)
- [Discussion Forums](https://forums.wxwidgets.org/)
- [#wxwidgets IRC channel](https://www.wxwidgets.org/support/irc/)
- [Stack Overflow](https://stackoverflow.com/questions/tagged/wxwidgets)
(tag your questions with `wxwidgets`)
- And you can report bugs at https://trac.wxwidgets.org/newticket
[Commercial support](https://www.wxwidgets.org/support/commercial/) is also
available.
Finally, keep in mind that wxWidgets is an open source project collaboratively
developed by its users and your contributions to it are always welcome. Please
check [our guidelines](.github/CONTRIBUTING.md) if you'd like to do it.
Have fun!
The wxWidgets Team.

View File

@@ -4,6 +4,8 @@ dnl Macros for configure.in for wxWindows by Robert Roebling, Phil Blecker,
dnl Vadim Zeitlin and Ron Lee
dnl
dnl This script is under the wxWindows licence.
dnl
dnl Version: $Id$
dnl ---------------------------------------------------------------------------
@@ -21,7 +23,7 @@ ac_ext=mm
])
dnl ===========================================================================
dnl macros to find a file in the list of include/lib paths
dnl macros to find the a file in the list of include/lib paths
dnl ===========================================================================
dnl ---------------------------------------------------------------------------
@@ -31,7 +33,7 @@ dnl ---------------------------------------------------------------------------
AC_DEFUN([WX_PATH_FIND_INCLUDES],
[
ac_find_includes=
for ac_dir in $1 /usr/include
for ac_dir in $1 /usr/include;
do
if test -f "$ac_dir/$2"; then
ac_find_includes=$ac_dir
@@ -41,17 +43,16 @@ for ac_dir in $1 /usr/include
])
dnl ---------------------------------------------------------------------------
dnl call WX_PATH_FIND_LIBRARIES(lib name, [optional extra search paths])
dnl sets ac_find_libraries to the full name of the file that was found
dnl or leaves it empty if not found
dnl call WX_PATH_FIND_LIBRARIES(search path, lib name), sets ac_find_libraries
dnl to the full name of the file that was found or leaves it empty if not found
dnl ---------------------------------------------------------------------------
AC_DEFUN([WX_PATH_FIND_LIBRARIES],
[
ac_find_libraries=
for ac_dir in $2 $SEARCH_LIB
for ac_dir in $1;
do
for ac_extension in a so sl dylib dll.a; do
if test -f "$ac_dir/lib$1.$ac_extension"; then
if test -f "$ac_dir/lib$2.$ac_extension"; then
ac_find_libraries=$ac_dir
break 2
fi
@@ -94,13 +95,13 @@ AC_DEFUN([WX_INCLUDE_PATH_EXIST],
dnl ---------------------------------------------------------------------------
dnl Usage: WX_LINK_PATH_EXIST(path, libpath)
dnl
dnl Set ac_path_to_link to nothing if path is already in libpath, or to -Lpath
dnl Set ac_path_to_link to nothing if path is already in libpath of to -Lpath
dnl if it is not, so that libpath can be set to "$libpath$ac_path_to_link"
dnl after calling this function
dnl ---------------------------------------------------------------------------
AC_DEFUN([WX_LINK_PATH_EXIST],
[
dnl never add -L/usr/libXXX explicitly to libpath
dnl never add -L/usr/libXXX explicitely to libpath
if test "$1" = "default location"; then
ac_path_to_link=""
else
@@ -114,76 +115,118 @@ AC_DEFUN([WX_LINK_PATH_EXIST],
fi
])
dnl ---------------------------------------------------------------------------
dnl Usage: WX_FIND_LIB(lib-name, [lib-function to test], [extra search paths])
dnl
dnl Tests in a variety of ways for the presence of lib-name
dnl
dnl On success, returns any novel path found in ac_find_libraries; else "std"
dnl and any cflags in ac_find_cflags
dnl On failure, ac_find_libraries will be empty
dnl ---------------------------------------------------------------------------
AC_DEFUN([WX_FIND_LIB],
[
ac_find_libraries=
dnl Try with pkg-config first. It requires its lib-name parameter lowercase
fl_pkgname=`echo "$1" | tr [[:upper:]] [[:lower:]]`
dnl suppress PKG_PROG_PKG_CONFIG output; we don't want to keep seeing it
PKG_PROG_PKG_CONFIG() AS_MESSAGE_FD> /dev/null
PKG_CHECK_MODULES([$1], [$fl_pkgname],
[
dnl Start by assuming there are no novel lib paths
ac_find_libraries="std"
dnl A simple copy of the internal vars $1_CFLAGS $1_LIBS doesn't work
dnl inside the macro
dnl
dnl TODO: When we stop being autoconf 2.61 compatible, the next 2 lines
dnl should become:
dnl AS_VAR_COPY([ac_find_cflags], [$1_CFLAGS])
dnl AS_VAR_COPY([fl_libs], [$1_LIBS])
eval ac_find_cflags=\$$1_CFLAGS
eval fl_libs=\$$1_LIBS
dnl fl_libs may now contain -Lfoopath -lfoo (only non-standard paths are
dnl added) We only want the path bit, not the lib names
for fl_path in $fl_libs
do
if test `echo "$fl_path" | cut -c 1-2` = "-L"; then
dnl there shouldn't be >1 novel path
dnl return it without the -L, ready for WX_LINK_PATH_EXIST
ac_find_libraries=`echo "$fl_path" | cut -c 3-`
fi
done
],
[
if test "x$ac_find_libraries" = "x"; then
dnl Next with AC_CHECK_LIB, if a test function was provided
if test "x$2" != "x"; then
AC_CHECK_LIB([$1], [$2], [ac_find_libraries="std"])
fi
fi
if test "x$ac_find_libraries" = "x"; then
dnl Finally try the search path
dnl Output a message again, as AC_CHECK_LIB will just have said "no"
AC_MSG_CHECKING([elsewhere])
dnl $3 will occasionally hold extra path(s) to search
WX_PATH_FIND_LIBRARIES([$1], [$3])
if test "x$ac_find_libraries" != "x"; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
fi
])
])
dnl ===========================================================================
dnl C++ features test
dnl ===========================================================================
dnl ---------------------------------------------------------------------------
dnl WX_CPP_NEW_HEADERS checks whether the compiler has "new" <iostream> header
dnl or only the old <iostream.h> one - it may be generally assumed that if
dnl <iostream> exists, the other "new" headers (without .h) exist too.
dnl
dnl call WX_CPP_NEW_HEADERS(actiof-if-true, action-if-false)
dnl ---------------------------------------------------------------------------
AC_DEFUN([WX_CPP_NEW_HEADERS],
[
AC_LANG_SAVE
AC_LANG_CPLUSPLUS
AC_CHECK_HEADERS(iostream)
if test "$ac_cv_header_iostream" = "yes" ; then
ifelse([$1], , :, [$1])
else
ifelse([$2], , :, [$2])
fi
AC_LANG_RESTORE
])
dnl ---------------------------------------------------------------------------
dnl WX_CPP_BOOL checks whether the C++ compiler has a built in bool type
dnl
dnl call WX_CPP_BOOL - will define HAVE_BOOL if the compiler supports bool
dnl ---------------------------------------------------------------------------
AC_DEFUN([WX_CPP_BOOL],
[
AC_CACHE_CHECK([if C++ compiler supports bool], wx_cv_cpp_bool,
[
AC_LANG_SAVE
AC_LANG_CPLUSPLUS
AC_TRY_COMPILE(
[
],
[
bool b = true;
return 0;
],
[
wx_cv_cpp_bool=yes
],
[
wx_cv_cpp_bool=no
]
)
AC_LANG_RESTORE
])
if test "$wx_cv_cpp_bool" = "yes"; then
AC_DEFINE(HAVE_BOOL)
fi
])
dnl ---------------------------------------------------------------------------
dnl WX_CPP_EXPLICIT checks whether the C++ compiler support the explicit
dnl keyword and defines HAVE_EXPLICIT if this is the case
dnl ---------------------------------------------------------------------------
AC_DEFUN([WX_CPP_EXPLICIT],
[
AC_CACHE_CHECK([if C++ compiler supports the explicit keyword],
wx_cv_explicit,
[
AC_LANG_SAVE
AC_LANG_CPLUSPLUS
dnl do the test in 2 steps: first check that the compiler knows about the
dnl explicit keyword at all and then verify that it really honours it
AC_TRY_COMPILE(
[
class Foo { public: explicit Foo(int) {} };
],
[
return 0;
],
[
AC_TRY_COMPILE(
[
class Foo { public: explicit Foo(int) {} };
static void TakeFoo(const Foo& foo) { }
],
[
TakeFoo(17);
return 0;
],
wx_cv_explicit=no,
wx_cv_explicit=yes
)
],
wx_cv_explicit=no
)
AC_LANG_RESTORE
])
if test "$wx_cv_explicit" = "yes"; then
AC_DEFINE(HAVE_EXPLICIT)
fi
])
dnl ---------------------------------------------------------------------------
dnl WX_CHECK_FUNCS(FUNCTIONS...,
dnl [ACTION-IF-FOUND],
@@ -241,7 +284,7 @@ AC_DEFUN([WX_CHECK_FUNCS],
if eval test \$wx_cv_func_$wx_func = yes
then
AC_DEFINE_UNQUOTED(AS_TR_CPP([HAVE_$wx_func]))
AC_DEFINE_UNQUOTED([HAVE_`echo $wx_func | tr 'a-z' 'A-Z'`])
$2
else
:
@@ -281,7 +324,7 @@ AC_TRY_RUN([main () {
}], [ac_cv_c_bigendian=no], [ac_cv_c_bigendian=yes], [ac_cv_c_bigendian=unknown])
fi])
if test $ac_cv_c_bigendian = unknown; then
AC_MSG_WARN([Assuming little-endian target machine - this may be overridden by adding the line "ac_cv_c_bigendian=${ac_cv_c_bigendian='yes'}" to config.cache file])
AC_MSG_WARN([Assuming little-endian target machine - this may be overriden by adding the line "ac_cv_c_bigendian=${ac_cv_c_bigendian='yes'}" to config.cache file])
fi
if test $ac_cv_c_bigendian = yes; then
AC_DEFINE(WORDS_BIGENDIAN)
@@ -289,140 +332,154 @@ fi
])
dnl ---------------------------------------------------------------------------
dnl override AC_ARG_ENABLE/WITH to handle options defaults
dnl override AC_ARG_ENABLE/WITH to cache the results in .cache file
dnl ---------------------------------------------------------------------------
AC_DEFUN([WX_ARG_CACHE_INIT],
[
wx_arg_cache_file="configarg.cache"
echo "loading argument cache $wx_arg_cache_file"
rm -f ${wx_arg_cache_file}.tmp
touch ${wx_arg_cache_file}.tmp
touch ${wx_arg_cache_file}
])
AC_DEFUN([WX_ARG_CACHE_FLUSH],
[
echo "saving argument cache $wx_arg_cache_file"
mv ${wx_arg_cache_file}.tmp ${wx_arg_cache_file}
])
dnl this macro checks for a three-valued command line --with argument:
dnl possible arguments are 'yes', 'no', 'sys', or 'builtin'
dnl usage: WX_ARG_SYS_WITH(option, helpmessage, variable-name)
dnl
dnl the default value (used if the option is not specified at all) is
dnl determined in the following way:
dnl 1. If default value for the given library (DEFAULT_wxUSE_LIBXXX) exists,
dnl it is used: this allows to disable some libraries by default.
dnl 2. If wxUSE_ALL_FEATURES is turned off, the use of the library is turned
dnl off as well: this ensures that minimal builds are really minimal.
dnl 3. If wxUSE_SYS_LIBS is turned off, then "builtin" is used: this allows
dnl to prevent system libraries from being used by using a single option.
dnl 4. Otherwise the default value is "yes", meaning that either the system
dnl (preferred) or builtin version of the library will be used.
AC_DEFUN([WX_ARG_SYS_WITH],
[
AC_MSG_CHECKING([for --with-$1])
no_cache=0
AC_ARG_WITH($1, [$2],
[
if test "$withval" = yes; then
AS_TR_SH(wx_cv_use_$1)='$3=yes'
ac_cv_use_$1='$3=yes'
elif test "$withval" = no; then
AS_TR_SH(wx_cv_use_$1)='$3=no'
ac_cv_use_$1='$3=no'
elif test "$withval" = sys; then
AS_TR_SH(wx_cv_use_$1)='$3=sys'
ac_cv_use_$1='$3=sys'
elif test "$withval" = builtin; then
AS_TR_SH(wx_cv_use_$1)='$3=builtin'
ac_cv_use_$1='$3=builtin'
else
AC_MSG_ERROR([Invalid value for --with-$1: should be yes, no, sys, or builtin])
fi
],
[
if test "DEFAULT_$3" = no; then
value=no
elif test "$wxUSE_ALL_FEATURES" = no; then
value=no
elif test "$wxUSE_SYS_LIBS" = no; then
value=builtin
LINE=`grep "$3" ${wx_arg_cache_file}`
if test "x$LINE" != x ; then
eval "DEFAULT_$LINE"
else
value=yes
no_cache=1
fi
AS_TR_SH(wx_cv_use_$1)="$3=$value"
ac_cv_use_$1='$3='$DEFAULT_$3
])
eval "$AS_TR_SH(wx_cv_use_$1)"
eval "$ac_cv_use_$1"
if test "$no_cache" != 1; then
echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp
fi
if test "$$3" = yes; then
AC_MSG_RESULT(yes)
elif test "$$3" = no; then
AC_MSG_RESULT(no)
elif test "$$3" = sys; then
AC_MSG_RESULT([system version])
elif test "$$3" = builtin; then
AC_MSG_RESULT([builtin version])
else
AC_MSG_ERROR([Invalid value for --with-$1: should be yes, no, sys, or builtin])
fi
])
dnl this macro simply checks for a command line argument
dnl this macro checks for a command line argument and caches the result
dnl usage: WX_ARG_WITH(option, helpmessage, variable-name, [withstring])
AC_DEFUN([WX_ARG_WITH],
[
withstring=$4
defaultval=$wxUSE_ALL_FEATURES
if test -z "$defaultval"; then
if test x"$withstring" = xwithout; then
defaultval=yes
else
defaultval=no
fi
fi
withstring=$4
AC_MSG_CHECKING([for --${withstring:-with}-$1])
no_cache=0
AC_ARG_WITH($1, [$2],
[
if test "$withval" = yes; then
AS_TR_SH(wx_cv_use_$1)='$3=yes'
ac_cv_use_$1='$3=yes'
else
AS_TR_SH(wx_cv_use_$1)='$3=no'
ac_cv_use_$1='$3=no'
fi
],
[
AS_TR_SH(wx_cv_use_$1)='$3=${'DEFAULT_$3":-$defaultval}"
LINE=`grep "$3" ${wx_arg_cache_file}`
if test "x$LINE" != x ; then
eval "DEFAULT_$LINE"
else
no_cache=1
fi
ac_cv_use_$1='$3='$DEFAULT_$3
])
eval "$AS_TR_SH(wx_cv_use_$1)"
])
dnl same as WX_ARG_WITH but makes it clear that the option is enabled by default
AC_DEFUN([WX_ARG_WITHOUT], [WX_ARG_WITH($1, [$2], $3, without)])
dnl variant of AC_ARG_WITH which doesn't accept --without-xxx varient
AC_DEFUN([WX_ARG_ONLY_WITH], [
AC_ARG_WITH($1, [$2], [
if test "$withval" != yes; then
AC_MSG_ERROR([Option --with-$1 doesn't accept any arguments])
fi
$3
])
])
dnl like WX_ARG_WITH but uses AC_ARG_ENABLE instead of AC_ARG_WITH
dnl usage: WX_ARG_ENABLE(option, helpmessage, var, [enablestring], [default])
dnl
dnl enablestring can be omitted or a literal string "disable" and allows to
dnl show "checking for --disable-foo" message when running configure instead of
dnl the default "checking for --enable-foo" one whih is useful for the options
dnl enabled by default
dnl
dnl the "default" argument can be omitted or contain the default value to use
dnl for the option if it's unspecified
AC_DEFUN([WX_ARG_ENABLE],
[
enablestring=$4
defaultval=$5
if test -z "$defaultval"; then
if test x"$enablestring" = xdisable; then
defaultval=yes
else
defaultval=no
fi
eval "$ac_cv_use_$1"
if test "$no_cache" != 1; then
echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp
fi
if test "$$3" = yes; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
])
dnl like WX_ARG_WITH but uses AC_ARG_ENABLE instead of AC_ARG_WITH
dnl usage: WX_ARG_ENABLE(option, helpmessage, variable-name, enablestring)
dnl
dnl enablestring is a hack and allows to show "checking for --disable-foo"
dnl message when running configure instead of the default "checking for
dnl --enable-foo" one whih is useful for the options enabled by default
AC_DEFUN([WX_ARG_ENABLE],
[
enablestring=$4
AC_MSG_CHECKING([for --${enablestring:-enable}-$1])
no_cache=0
AC_ARG_ENABLE($1, [$2],
[
if test "$enableval" = yes; then
AS_TR_SH(wx_cv_use_$1)='$3=yes'
ac_cv_use_$1='$3=yes'
else
AS_TR_SH(wx_cv_use_$1)='$3=no'
ac_cv_use_$1='$3=no'
fi
],
[
AS_TR_SH(wx_cv_use_$1)='$3=${'DEFAULT_$3":-$defaultval}"
LINE=`grep "$3" ${wx_arg_cache_file}`
if test "x$LINE" != x ; then
eval "DEFAULT_$LINE"
else
no_cache=1
fi
ac_cv_use_$1='$3='$DEFAULT_$3
])
eval "$AS_TR_SH(wx_cv_use_$1)"
eval "$ac_cv_use_$1"
if test "$no_cache" != 1; then
echo $ac_cv_use_$1 >> ${wx_arg_cache_file}.tmp
fi
if test "$$3" = yes; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
])
dnl the same as WX_ARG_ENABLE but makes it more clear that the option is
dnl enabled by default
AC_DEFUN([WX_ARG_DISABLE], [WX_ARG_ENABLE($1, [$2], $3, disable)])
dnl same as WX_ARG_ENABLE but defaults to wxUSE_ALL_FEATURES instead of "yes"
AC_DEFUN([WX_ARG_FEATURE], [WX_ARG_ENABLE($1, [$2], $3,, $wxUSE_ALL_FEATURES)])
dnl Like WX_ARG_ENABLE but accepts a parameter.
dnl
@@ -431,24 +488,38 @@ dnl WX_ARG_ENABLE_PARAM(option, helpmessage, variable-name, enablestring)
dnl
dnl Example:
dnl WX_ARG_ENABLE_PARAM(foo, [[ --enable-foo[=bar] use foo]], wxUSE_FOO)
dnl
dnl
dnl --enable-foo wxUSE_FOO=yes
dnl --disable-foo wxUSE_FOO=no
dnl --enable-foo=bar wxUSE_FOO=bar
dnl <not given> wxUSE_FOO=$DEFAULT_wxUSE_FOO
dnl
dnl <not given> value from configarg.cache or wxUSE_FOO=no
dnl
AC_DEFUN([WX_ARG_ENABLE_PARAM],
[
enablestring=$4
AC_MSG_CHECKING([for --${enablestring:-enable}-$1])
no_cache=0
AC_ARG_ENABLE($1, [$2],
[
wx_cv_use_$1="$3='$enableval'"
],
[
wx_cv_use_$1='$3='$DEFAULT_$3
LINE=`grep "$3" ${wx_arg_cache_file}`
if test "x$LINE" != x ; then
eval "DEFAULT_$LINE"
wx_cv_use_$1='$3='$DEFAULT_$3
else
no_cache=1
wx_cv_use_$1="$3=no"
fi
])
eval "$wx_cv_use_$1"
if test "$no_cache" != 1; then
echo $wx_cv_use_$1 >> ${wx_arg_cache_file}.tmp
fi
AC_MSG_RESULT([$$3])
])
dnl ===========================================================================
@@ -464,80 +535,81 @@ dnl call WX_VERSIONED_SYMBOLS(versionfile)
dnl ---------------------------------------------------------------------------
AC_DEFUN([WX_VERSIONED_SYMBOLS],
[
case "${host}" in
*-*-cygwin* | *-*-mingw* )
dnl although ld does support version script option on these
dnl platforms, it doesn't make much sense to use it under Win32
dnl and, moreover, this breaks linking because of a bug in handling
dnl paths in -Wl,--version-script,path option (if we ever do need
dnl to use it for cygwin/mingw32, keep in mind that replacing last
dnl comma with the equal sign works) so
dnl simply disable it
wx_cv_version_script=no
;;
found_versioning=no
*)
AC_CACHE_CHECK([if the linker accepts --version-script], wx_cv_version_script,
[
echo "VER_1 { *; };" >conftest.sym
echo "int main() { return 0; }" >conftest.cpp
dnl FIXME - doesn't work, Solaris linker doesn't accept wildcards
dnl in the script.
dnl dnl Check for known non-gcc cases:
dnl case "${host}" in
dnl *-*-solaris2* )
dnl if test "x$GCC" != "xyes" ; then
dnl LDFLAGS_VERSIONING="-M $1"
dnl found_versioning=yes
dnl fi
dnl ;;
dnl esac
dnl Generic check for GCC or GCC-like behaviour (Intel C++, GCC):
if test $found_versioning = no ; then
AC_CACHE_CHECK([if the linker accepts --version-script], wx_cv_version_script,
[
echo "VER_1 { *; };" >conftest.sym
echo "int main() { return 0; }" >conftest.cpp
if AC_TRY_COMMAND([
$CXX -o conftest.output $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.cpp
-Wl,--version-script,conftest.sym >/dev/null 2>conftest.stderr]) ; then
if test -s conftest.stderr ; then
wx_cv_version_script=no
else
wx_cv_version_script=yes
fi
else
wx_cv_version_script=no
fi
if AC_TRY_COMMAND([
$CXX -o conftest.output $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.cpp
-Wl,--version-script,conftest.sym >/dev/null 2>conftest.stderr]) ; then
if test -s conftest.stderr ; then
wx_cv_version_script=no
else
wx_cv_version_script=yes
fi
else
wx_cv_version_script=no
fi
dnl There's a problem in some old linkers with --version-script that
dnl can cause linking to fail when you have objects with vtables in
dnl libs 3 deep. This is known to happen in netbsd and openbsd with
dnl ld 2.11.2.
dnl
dnl To test for this we need to make some shared libs and
dnl unfortunately we can't be sure of the right way to do that. If the
dnl first two compiles don't succeed then it looks like the test isn't
dnl working and the result is ignored, but if OTOH the first two
dnl succeed but the third does not then the bug has been detected and
dnl the --version-script flag is dropped.
if test $wx_cv_version_script = yes
then
echo "struct B { virtual ~B() { } }; \
struct D : public B { }; \
void F() { D d; }" > conftest.cpp
dnl There's a problem in some old linkers with --version-script that
dnl can cause linking to fail when you have objects with vtables in
dnl libs 3 deep. This is known to happen in netbsd and openbsd with
dnl ld 2.11.2.
dnl
dnl To test for this we need to make some shared libs and
dnl unfortunately we can't be sure of the right way to do that. If the
dnl first two compiles don't succeed then it looks like the test isn't
dnl working and the result is ignored, but if OTOH the first two
dnl succeed but the third does not then the bug has been detected and
dnl the --version-script flag is dropped.
if test $wx_cv_version_script = yes
then
echo "struct B { virtual ~B() { } }; \
struct D : public B { }; \
void F() { D d; }" > conftest.cpp
if AC_TRY_COMMAND([
$CXX -shared -fPIC -o conftest1.output $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.cpp
-Wl,--version-script,conftest.sym >/dev/null 2>/dev/null]) &&
AC_TRY_COMMAND([
$CXX -shared -fPIC -o conftest2.output $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.cpp
-Wl,--version-script,conftest.sym conftest1.output >/dev/null 2>/dev/null])
then
if AC_TRY_COMMAND([
$CXX -shared -fPIC -o conftest3.output $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.cpp
-Wl,--version-script,conftest.sym conftest2.output conftest1.output >/dev/null 2>/dev/null])
then
wx_cv_version_script=yes
else
wx_cv_version_script=no
fi
fi
fi
rm -f conftest.output conftest.stderr conftest.sym conftest.cpp
rm -f conftest1.output conftest2.output conftest3.output
])
if test $wx_cv_version_script = yes ; then
LDFLAGS_VERSIONING="-Wl,--version-script,$1"
if AC_TRY_COMMAND([
$CXX -shared -fPIC -o conftest1.output $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.cpp
-Wl,--version-script,conftest.sym >/dev/null 2>/dev/null]) &&
AC_TRY_COMMAND([
$CXX -shared -fPIC -o conftest2.output $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.cpp
-Wl,--version-script,conftest.sym conftest1.output >/dev/null 2>/dev/null])
then
if AC_TRY_COMMAND([
$CXX -shared -fPIC -o conftest3.output $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.cpp
-Wl,--version-script,conftest.sym conftest2.output conftest1.output >/dev/null 2>/dev/null])
then
wx_cv_version_script=yes
else
wx_cv_version_script=no
fi
;;
esac
fi
fi
rm -f conftest.output conftest.stderr conftest.sym conftest.cpp
rm -f conftest1.output conftest2.output conftest3.output
])
if test $wx_cv_version_script = yes ; then
LDFLAGS_VERSIONING="-Wl,--version-script,$1"
fi
fi
])
@@ -686,3 +758,79 @@ if test "$enable_largefile" != no; then
fi
])
dnl Available from the GNU Autoconf Macro Archive at:
dnl http://www.gnu.org/software/ac-archive/htmldoc/ac_cxx_const_cast.html
dnl
AC_DEFUN([AC_CXX_CONST_CAST],
[AC_CACHE_CHECK(whether the compiler supports const_cast<>,
ac_cv_cxx_const_cast,
[AC_LANG_SAVE
AC_LANG_CPLUSPLUS
AC_TRY_COMPILE(,[int x = 0;const int& y = x;int& z = const_cast<int&>(y);return z;],
ac_cv_cxx_const_cast=yes, ac_cv_cxx_const_cast=no)
AC_LANG_RESTORE
])
if test "$ac_cv_cxx_const_cast" = yes; then
AC_DEFINE(HAVE_CONST_CAST,,[define if the compiler supports const_cast<>])
fi
])
dnl http://www.gnu.org/software/ac-archive/htmldoc/ac_cxx_reinterpret_cast.html
AC_DEFUN([AC_CXX_REINTERPRET_CAST],
[AC_CACHE_CHECK(whether the compiler supports reinterpret_cast<>,
ac_cv_cxx_reinterpret_cast,
[AC_LANG_SAVE
AC_LANG_CPLUSPLUS
AC_TRY_COMPILE([#include <typeinfo>
class Base { public : Base () {} virtual void f () = 0;};
class Derived : public Base { public : Derived () {} virtual void f () {} };
class Unrelated { public : Unrelated () {} };
int g (Unrelated&) { return 0; }],[
Derived d;Base& b=d;Unrelated& e=reinterpret_cast<Unrelated&>(b);return g(e);],
ac_cv_cxx_reinterpret_cast=yes, ac_cv_cxx_reinterpret_cast=no)
AC_LANG_RESTORE
])
if test "$ac_cv_cxx_reinterpret_cast" = yes; then
AC_DEFINE(HAVE_REINTERPRET_CAST,,
[define if the compiler supports reinterpret_cast<>])
fi
])
dnl and http://www.gnu.org/software/ac-archive/htmldoc/ac_cxx_static_cast.html
AC_DEFUN([AC_CXX_STATIC_CAST],
[AC_CACHE_CHECK(whether the compiler supports static_cast<>,
ac_cv_cxx_static_cast,
[AC_LANG_SAVE
AC_LANG_CPLUSPLUS
AC_TRY_COMPILE([#include <typeinfo>
class Base { public : Base () {} virtual void f () = 0; };
class Derived : public Base { public : Derived () {} virtual void f () {} };
int g (Derived&) { return 0; }],[
Derived d; Base& b = d; Derived& s = static_cast<Derived&> (b); return g (s);],
ac_cv_cxx_static_cast=yes, ac_cv_cxx_static_cast=no)
AC_LANG_RESTORE
])
if test "$ac_cv_cxx_static_cast" = yes; then
AC_DEFINE(HAVE_STATIC_CAST,, [define if the compiler supports static_cast<>])
fi
])
dnl http://autoconf-archive.cryp.to/ac_cxx_dynamic_cast.html
AC_DEFUN([AC_CXX_DYNAMIC_CAST],
[AC_CACHE_CHECK(whether the compiler supports dynamic_cast<>,
ac_cv_cxx_dynamic_cast,
[AC_LANG_SAVE
AC_LANG_CPLUSPLUS
AC_TRY_COMPILE([#include <typeinfo>
class Base { public : Base () {} virtual void f () = 0;};
class Derived : public Base { public : Derived () {} virtual void f () {} };],[
Derived d; Base& b=d; return dynamic_cast<Derived*>(&b) ? 0 : 1;],
ac_cv_cxx_dynamic_cast=yes, ac_cv_cxx_dynamic_cast=no)
AC_LANG_RESTORE
])
if test "$ac_cv_cxx_dynamic_cast" = yes; then
AC_DEFINE(HAVE_DYNAMIC_CAST,,[define if the compiler supports dynamic_cast<>])
fi
])

21
aclocal.m4 vendored
View File

@@ -1,7 +1,7 @@
# generated automatically by aclocal 1.15.1 -*- Autoconf -*-
# Copyright (C) 1996-2017 Free Software Foundation, Inc.
# generated automatically by aclocal 1.9.6 -*- Autoconf -*-
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
# 2005 Free Software Foundation, Inc.
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -11,22 +11,13 @@
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
m4_include([build/aclocal/ac_raf_func_which_getservbyname_r.m4])
m4_include([build/aclocal/atomic_builtins.m4])
m4_include([build/aclocal/ax_cflags_gcc_option.m4])
m4_include([build/aclocal/ax_cxx_compile_stdcxx.m4])
m4_include([build/aclocal/ax_func_which_gethostbyname_r.m4])
m4_include([build/aclocal/ax_gcc_option.m4])
m4_include([build/aclocal/ax_gxx_version.m4])
m4_include([build/aclocal/ax_subdirs_configure.m4])
m4_include([build/aclocal/bakefile-lang.m4])
m4_include([build/aclocal/bakefile.m4])
m4_include([build/aclocal/cppunit.m4])
m4_include([build/aclocal/gtk-2.0.m4])
m4_include([build/aclocal/gtk-3.0.m4])
m4_include([build/aclocal/gtk-4.0.m4])
m4_include([build/aclocal/gtk.m4])
m4_include([build/aclocal/pkg.m4])
m4_include([build/aclocal/sdl.m4])
m4_include([build/aclocal/visibility.m4])
m4_include([build/aclocal/ax_func_which_gethostbyname_r.m4])
m4_include([build/aclocal/ac_raf_func_which_getservbyname_r.m4])
m4_include([acinclude.m4])

View File

@@ -1,108 +0,0 @@
version: '{build}'
branches:
only:
- master
- WX_3_0_BRANCH
skip_commits:
files:
- demos/
- docs/
- interface/
- locale/
- misc/
- include/wx/dfb/
- src/dfb/
- include/wx/gtk/
- src/gtk/
- include/wx/gtk1/
- src/gtk1/
- include/wx/motif/
- src/motif/
- include/wx/osx/
- src/osx/
- include/wx/unix/
- src/unix/
- include/wx/x11/
- src/x11/
- '**/*.md'
- .github/workflows/
- build/tools/before_install.sh
- build/tools/httpbin.sh
environment:
matrix:
- TOOLSET: msbuild
CONFIGURATION: DLL Release
ARCH: x64
wxUSE_STL: 1
- TOOLSET: nmake
VS: '9.0'
BUILD: release
ARCH: x86
- TOOLSET: nmake
VS: '14.0'
BUILD: debug
ARCH: amd64
wxUSE_STL: 1
wxUSE_WEBVIEW_EDGE: 1
- TOOLSET: mingw
- TOOLSET: msys2
MSYSTEM: MINGW32
- TOOLSET: cmake
GENERATOR: 'Visual Studio 12'
SHARED: ON
CONFIGURATION: Release
- TOOLSET: cmake_qt
GENERATOR: 'Visual Studio 14 2015 Win64'
SHARED: ON
CONFIGURATION: Release
clone_depth: 50
install: git submodule update --init
init:
- ps: |
if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod `
https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | `
Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { `
throw "There are newer queued builds for this pull request, failing early." }
before_build:
- ps: |
$env:PATH = $env:PATH -replace "C:\\Program Files\\Git\\usr\\bin",""
if (-not (Test-Path env:wxUSE_STL)) { $env:wxUSE_STL = '0' }
if (-not (Test-Path env:wxUSE_WEBVIEW_EDGE)) { $env:wxUSE_WEBVIEW_EDGE = '0' }
if (($env:TOOLSET -ne "msys2") -and ($env:TOOLSET -ne "cygwin")) {
$txt = gc include\wx\msw\setup.h
Write-Output $txt |
%{$_ -replace "define wxUSE_STL 0", "define wxUSE_STL $env:wxUSE_STL"} |
%{$_ -replace "define wxUSE_WEBVIEW_EDGE 0", "define wxUSE_WEBVIEW_EDGE $env:wxUSE_WEBVIEW_EDGE"} |
sc include\wx\msw\setup.h
}
build_script: c:\projects\wxwidgets\build\tools\appveyor.bat
before_test:
- ps: |
Write-Output "Getting and launching httpbin."
$env:PATH = "C:\Python35;C:\Python35\Scripts;" + $env:PATH
pip.exe --disable-pip-version-check install httpbin
Start-Job -Name wx_httpbin { python.exe -m httpbin.core 2>&1 > c:\projects\wxwidgets\httpbin.log }
Start-Sleep -Seconds 5
curl.exe -s http://127.0.0.1:5000/ip > $null
if ($lastExitCode -eq "0") {
$env:WX_TEST_WEBREQUEST_URL="http://127.0.0.1:5000"
}
else {
Write-Error "Disabling wxWebRequest tests as launching httpbin failed."
$env:WX_TEST_WEBREQUEST_URL="0"
}
test_script: c:\projects\wxwidgets\build\tools\appveyor-test.bat
after_test:
- ps: |
Stop-Job -Name wx_httpbin

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const addbookm_xpm[] = {
static char *addbookm_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 3 1",
". c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const back_xpm[] = {
static char * back_xpm[] = {
"16 15 3 1",
" c None",
". c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const cdrom_xpm[] = {
static char *cdrom_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 36 1",
"= c #9BACC2",

View File

@@ -1,16 +0,0 @@
/* XPM */
static const char * const close_xpm[] = {
"12 10 2 1",
" c None",
"X c black",
" ",
" XX XX ",
" XX XX ",
" XXXX ",
" XX ",
" XXXX ",
" XX XX ",
" XX XX ",
" ",
" "};

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const copy_xpm[] = {
static char *copy_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 23 1",
"o c #97C4E7",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const cross_xpm[] = {
static char *cross_xpm[] = {
/* columns rows colors chars-per-pixel */
"10 10 2 1",
" c Gray0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const cut_xpm[] = {
static char *cut_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 25 1",
"6 c #D8BDC0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const deffile_xpm[] = {
static char *deffile_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 16 32 1",
"= c #97C4E7",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const delbookm_xpm[] = {
static char *delbookm_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 3 1",
". c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const delete_xpm[] = {
static char *delete_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 21 1",
"2 c #A5AEBD",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const dir_up_xpm[] = {
static char *dir_up_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 31 1",
"6 c #9BACC2",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const down_xpm[] = {
static char * down_xpm[] = {
"16 15 3 1",
" c None",
". c Black",

View File

@@ -1,22 +0,0 @@
/* XPM */
static const char* const edit_xpm[] = {
"16 16 3 1",
" c None",
". c #000000",
"+ c #00007F",
" ",
" ",
" .. .. ",
" . ",
" . ",
" ++++ . ++++ ",
" ++ . ++ ++",
" +++++ . ++++++",
" ++ ++ . ++ ",
" ++ ++ . ++ ++",
" +++++ . ++++ ",
" . ",
" . ",
" .. .. ",
" ",
" "};

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const exefile_xpm[] = {
static char *exefile_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 16 51 1",
"% c #E8E8EC",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const fileopen_xpm[] = {
static char *fileopen_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 36 1",
"6 c #9BACC2",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const filesave_xpm[] = {
static char *filesave_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 21 1",
"O c #FFFFFF",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const filesaveas_xpm[] = {
static char *filesaveas_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 23 1",
"X c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const find_xpm[] = {
static char *find_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 41 1",
"y c #A06959",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const findrepl_xpm[] = {
static char *findrepl_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 42 1",
"y c #A06959",

View File

@@ -1,22 +0,0 @@
/* XPM */
static const char *const first_xpm[] = {
"16 16 3 1",
" c None",
". c Black",
"X c Gray100",
" ",
" ",
"... . ",
"... .. ",
"... .X. ",
"... .XX........ ",
"....XXXXXXXXXX. ",
"...XXXXXXXXXXX. ",
"...XXXXXXXXXXX. ",
"....XXXXXXXXXX. ",
"... .XX........ ",
"... .X. ",
"... .. ",
"... . ",
" ",
" "};

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const floppy_xpm[] = {
static char *floppy_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 18 1",
"& c #E3E4E6",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const folder_xpm[] = {
static char *folder_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 22 1",
"> c #9BACC2",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const folder_open_xpm[] = {
static char *folder_open_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 31 1",
"6 c #9BACC2",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const forward_xpm[] = {
static char * forward_xpm[] = {
"16 15 3 1",
" c None",
". c Black",

View File

@@ -1,70 +0,0 @@
/* XPM */
static const char *const fullscreen_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 16 48 1",
" c #82837F",
". c #3465A4",
"X c #3566A4",
"o c #3767A5",
"O c #3B6AA7",
"+ c #406EA9",
"@ c #4370AA",
"# c #4672AB",
"$ c #4B76AE",
"% c #4E78AE",
"& c #577FB2",
"* c #5F84B4",
"= c #678BB9",
"- c #6F91BD",
"; c #7A98C0",
": c #848681",
"> c #888A85",
", c #8BA6C9",
"< c #90AACA",
"1 c #99B0CC",
"2 c #9EB5D1",
"3 c #A0B4CF",
"4 c #A2B6CF",
"5 c #A6BAD4",
"6 c #B7C7DB",
"7 c #B9C7D8",
"8 c #BDCBDC",
"9 c #C7D2DF",
"0 c #C9D3E0",
"q c #CCD7E3",
"w c #D3DBE6",
"e c #D9E1EA",
"r c #DBE2EA",
"t c #EFEEEC",
"y c #EFEFED",
"u c #F0F0EF",
"i c #F2F2F0",
"p c #F3F3F1",
"a c #F4F3F2",
"s c #F4F4F2",
"d c #F4F5F4",
"f c #F7F6F6",
"g c #F8F8F7",
"h c #F8F9F8",
"j c #FBFAFA",
"k c #FBFBFA",
"l c #FCFCFD",
"z c #FFFFFF",
/* pixels */
">>>>>>>>>>>>>>>>",
">zzzzzzzzzzzzzz>",
">z..X.ttyy....z>",
">z..Xttyyyy...z>",
">z..#*uuss%+..z>",
">z.y&,4uu1-&sOz>",
">zuuy470w82asiz>",
">zuiuu9usqsddsz>",
">zsssfqsfrfhhfz>",
">zhff<6wr95jjjz>",
">z.h%=,fj4-$j.z>",
">z..O#hhjj+O.Xz>",
">z...jhhjjj...z>",
">z....jjzl....z>",
">zzzzzzzzzzzzzz>",
":>>>>>>>>>>>>>> "
};

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const error_xpm[] = {
static char *error_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 4 1",
" c None",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const info_xpm[] = {
static char *info_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 9 1",
"$ c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const question_xpm[] = {
static char *question_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 21 1",
". c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const warning_xpm[] = {
static char *warning_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 9 1",
"@ c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const harddisk_xpm[] = {
static char *harddisk_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 39 1",
"7 c #E3E4E6",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const helpicon_xpm[] = {
static char *helpicon_xpm[] = {
/* columns rows colors chars-per-pixel */
"32 32 6 1",
" c Gray0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const home_xpm[] = {
static char *home_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 3 1",
". c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const htmbook_xpm[] = {
static char * htmbook_xpm[] = {
"16 16 6 1",
" c None",
". c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const htmfoldr_xpm[] = {
static char * htmfoldr_xpm[] = {
"16 16 6 1",
" c None",
". c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const htmoptns_xpm[] = {
static char * htmoptns_xpm[] = {
"16 15 2 1",
" c None",
". c #000000",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const htmpage_xpm[] = {
static char * htmpage_xpm[] = {
"16 16 4 1",
" c None",
". c #808080",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const htmsidep_xpm[] = {
static char *htmsidep_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 6 1",
". c Black",

View File

@@ -1,22 +0,0 @@
/* XPM */
static const char *const last_xpm[] = {
"16 16 3 1",
" c None",
". c Black",
"X c Gray100",
" ",
" ",
" . ...",
" .. ...",
" .X. ...",
" ........XX. ...",
" .XXXXXXXXXX....",
" .XXXXXXXXXXX...",
" .XXXXXXXXXXX...",
" .XXXXXXXXXX....",
" ........XX. ...",
" .X. ...",
" .. ...",
" . ...",
" ",
" "};

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const listview_xpm[] = {
static char *listview_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 4 1",
" c Black",

View File

@@ -1,22 +0,0 @@
/* XPM */
static const char *const minus_xpm[] = {
"16 16 3 1",
" c None",
". c Black",
"X c Gray100",
" ",
" ",
" ",
" ",
" ",
" ",
" .............. ",
" .XXXXXXXXXXXX. ",
" .XXXXXXXXXXXX. ",
" .............. ",
" ",
" ",
" ",
" ",
" ",
" "};

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const missimg_xpm[] = {
static char *missimg_xpm[] = {
/* columns rows colors chars-per-pixel */
"32 32 5 1",
"X c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const error_xpm[] = {
static char *error_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 4 1",
" c None",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const info_xpm[] = {
static char *info_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 9 1",
"$ c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const question_xpm[] = {
static char *question_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 21 1",
". c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const warning_xpm[] = {
static char *warning_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 9 1",
"@ c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const new_xpm[] = {
static char *new_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 29 1",
"* c #97C4E7",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const new_dir_xpm[] = {
static char *new_dir_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 22 1",
"X c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const paste_xpm[] = {
static char *paste_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 25 1",
"< c #FEECE4",

View File

@@ -1,22 +0,0 @@
/* XPM */
static const char *const plus_xpm[] = {
"16 16 3 1",
" c None",
". c Black",
"X c Gray100",
" ",
" ",
" .... ",
" .XX. ",
" .XX. ",
" .XX. ",
" ......XX...... ",
" .XXXXXXXXXXXX. ",
" .XXXXXXXXXXXX. ",
" ......XX...... ",
" .XX. ",
" .XX. ",
" .XX. ",
" .... ",
" ",
" "};

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const print_xpm[] = {
static char *print_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 39 1",
"< c #E3E4E6",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const quit_xpm[] = {
static char *quit_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 69 1",
"@ c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const redo_xpm[] = {
static char *redo_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 37 1",
"4 c #9BACC2",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const removable_xpm[] = {
static char *removable_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 23 1",
"@ c #C3C3C4",

View File

@@ -1,5 +1,5 @@
/* XPM */
static const char *const repview_xpm[] = {
static char *repview_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 3 1",
" c Black",

View File

@@ -1,284 +0,0 @@
/* application_x_executable.png - 560 bytes */
static const unsigned char application_x_executable_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd5, 0x04, 0x16, 0x14, 0x07, 0x38, 0x72,
0xb9, 0xac, 0x4a, 0x00, 0x00, 0x01, 0xbd, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0xb5, 0x93, 0xcd,
0x4e, 0x13, 0x61, 0x14, 0x86, 0x9f, 0xef, 0x9b,
0x6f, 0x66, 0xa4, 0x4d, 0x48, 0x28, 0x82, 0xa4,
0x60, 0x3b, 0x0d, 0x90, 0x09, 0xc6, 0x28, 0x68,
0x20, 0x61, 0xa3, 0x1b, 0x48, 0xf0, 0x06, 0xb8,
0x00, 0x37, 0x4d, 0xdc, 0xb0, 0x60, 0xe3, 0xce,
0x70, 0x01, 0x2e, 0x9a, 0xb8, 0x61, 0xc3, 0x05,
0x34, 0xde, 0x80, 0xd1, 0x95, 0x71, 0xe5, 0x42,
0xaa, 0x09, 0xda, 0x51, 0xcc, 0x0c, 0xa1, 0x69,
0x0b, 0xb4, 0xfc, 0x65, 0xfa, 0x87, 0x28, 0x2e,
0x94, 0x66, 0x14, 0x66, 0x76, 0xbc, 0xc9, 0x59,
0x3e, 0x4f, 0x4e, 0xf2, 0x9e, 0x03, 0x21, 0x59,
0x5c, 0x5a, 0x9d, 0x9c, 0x59, 0x78, 0x7a, 0xb6,
0xb8, 0xb4, 0x3a, 0x49, 0x44, 0x64, 0x18, 0xec,
0x39, 0xee, 0xfa, 0xf3, 0x67, 0x8f, 0xf1, 0x1c,
0x77, 0x3d, 0x4a, 0x22, 0xa3, 0xe0, 0x62, 0x69,
0x87, 0x89, 0x7b, 0x76, 0xa4, 0x44, 0x86, 0xc1,
0x9b, 0x95, 0x1a, 0xba, 0xd2, 0xb8, 0x33, 0x3e,
0x4c, 0x62, 0x64, 0x28, 0x54, 0x22, 0x2f, 0x5d,
0x7b, 0x77, 0x1f, 0x5d, 0x49, 0x74, 0x4d, 0x83,
0x33, 0xe8, 0x31, 0x0c, 0x2c, 0x3b, 0x73, 0xa9,
0x44, 0xfc, 0x0f, 0x97, 0xea, 0x87, 0x08, 0x04,
0x42, 0x80, 0x10, 0x82, 0x4f, 0xc5, 0x12, 0xa6,
0xa1, 0x38, 0x3d, 0xfd, 0xc9, 0x17, 0xb7, 0x8a,
0xe7, 0xb8, 0x58, 0x76, 0x66, 0x2a, 0x9f, 0xcb,
0x16, 0x00, 0x64, 0x10, 0xae, 0x1e, 0x1c, 0xa3,
0x6b, 0x1a, 0xba, 0xfa, 0x33, 0xed, 0xf6, 0x0f,
0xf8, 0x05, 0x89, 0xde, 0x38, 0xb7, 0x46, 0x93,
0x0c, 0xf7, 0xf7, 0x05, 0x37, 0x99, 0x03, 0x50,
0xe7, 0x70, 0xed, 0xb8, 0x81, 0xae, 0x34, 0x84,
0x10, 0x08, 0x04, 0x8d, 0x56, 0x87, 0xda, 0xbe,
0xcf, 0xdd, 0x89, 0x9b, 0x5c, 0x33, 0x15, 0xef,
0xde, 0x6f, 0x22, 0x11, 0xa4, 0x07, 0xfa, 0x01,
0xf0, 0x1c, 0xf7, 0x35, 0x20, 0xa4, 0x65, 0x67,
0xe6, 0x97, 0x57, 0xd6, 0xb8, 0xde, 0x1b, 0xa7,
0xd5, 0x3a, 0xc1, 0x6f, 0xb4, 0xf9, 0xee, 0xed,
0xb2, 0xb5, 0x5d, 0xa7, 0x5c, 0x39, 0xa4, 0xd9,
0xe8, 0x50, 0xae, 0x1c, 0xa1, 0xa4, 0x24, 0x66,
0x1a, 0x6c, 0xed, 0xd5, 0xf1, 0x1c, 0x97, 0xd4,
0x58, 0xea, 0x3e, 0x80, 0xcc, 0xe7, 0xb2, 0x6f,
0x2c, 0x3b, 0x33, 0xb5, 0xbc, 0xb2, 0xc6, 0xc8,
0x60, 0x1f, 0x1b, 0xc5, 0x32, 0x7b, 0x35, 0x1f,
0xdf, 0xef, 0x30, 0x96, 0x1e, 0x24, 0x95, 0x4c,
0xd0, 0x6a, 0x9e, 0x10, 0x33, 0x0d, 0x9c, 0x72,
0xb5, 0x0b, 0xbf, 0x7c, 0xf1, 0xe4, 0x43, 0xb7,
0x85, 0x7c, 0x2e, 0x5b, 0x38, 0x97, 0x3c, 0x7a,
0x78, 0x9b, 0xb8, 0x69, 0x10, 0x37, 0x0d, 0x8e,
0x0e, 0x9a, 0x48, 0x21, 0x50, 0x42, 0xf2, 0xd1,
0x2b, 0x5d, 0x80, 0xff, 0xa9, 0x31, 0x28, 0x79,
0x30, 0x3b, 0x4e, 0xcc, 0x34, 0x18, 0x4d, 0x0f,
0x60, 0xea, 0x8a, 0xb7, 0x1b, 0xdf, 0xf0, 0x1c,
0x97, 0xa4, 0x75, 0x63, 0x3a, 0x08, 0x77, 0x6b,
0x0c, 0x3b, 0xa6, 0xaf, 0xc5, 0x1d, 0x5e, 0x15,
0x3e, 0x5f, 0xa8, 0x2e, 0x52, 0x10, 0x94, 0xfc,
0xad, 0x2c, 0x14, 0x8e, 0x4c, 0xe0, 0x1b, 0xe7,
0xb8, 0xca, 0xfc, 0x06, 0x1f, 0x9b, 0xf0, 0x44,
0x52, 0x78, 0x46, 0x4d, 0x00, 0x00, 0x00, 0x00,
0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
/* application_x_executable.png - 1651 bytes */
static const unsigned char application_x_executable_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x05,
0xfe, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xed,
0x57, 0xcb, 0x4f, 0x13, 0x5b, 0x18, 0xff, 0xe6,
0xd1, 0x76, 0x18, 0xfa, 0x1a, 0x24, 0xd0, 0x27,
0xc5, 0xfa, 0x00, 0x05, 0x0c, 0x41, 0x51, 0x31,
0x12, 0x48, 0xbc, 0x80, 0x24, 0x46, 0x17, 0xc6,
0x95, 0x3b, 0x15, 0x5d, 0x28, 0x3e, 0x17, 0xfa,
0x27, 0xb8, 0xd1, 0xc4, 0xad, 0x3b, 0x25, 0x26,
0xba, 0x24, 0x3e, 0x89, 0x89, 0x31, 0x91, 0x47,
0x40, 0x20, 0xe1, 0x59, 0x1c, 0xc0, 0x16, 0x5b,
0xfa, 0x98, 0xd2, 0x0e, 0xa5, 0x65, 0x86, 0x3e,
0xe7, 0x2e, 0x8e, 0x93, 0xda, 0xa2, 0x01, 0xbc,
0xdc, 0xdc, 0x9b, 0xdc, 0xfb, 0x6d, 0x7e, 0x39,
0xa7, 0xa7, 0x67, 0x7e, 0xbf, 0xdf, 0xf7, 0x7d,
0x33, 0xe7, 0x00, 0xfc, 0x1f, 0xff, 0x6c, 0x60,
0xdb, 0xbd, 0xe1, 0xe1, 0xc3, 0x27, 0x4f, 0xde,
0xbb, 0x67, 0x34, 0xa2, 0x91, 0xd7, 0x9b, 0xfb,
0xab, 0xc9, 0x34, 0x34, 0xf4, 0xee, 0xdd, 0xfd,
0xfb, 0x3e, 0xdf, 0x76, 0x3d, 0x0f, 0xff, 0xbb,
0x88, 0x5f, 0xbb, 0xd6, 0xd1, 0xd1, 0xda, 0xba,
0xbc, 0x7c, 0xfa, 0xf4, 0xa9, 0x53, 0xf5, 0xf5,
0x82, 0x20, 0xcf, 0xe7, 0xae, 0xfb, 0x17, 0x08,
0xc8, 0x27, 0x7e, 0xf5, 0xea, 0x85, 0x0b, 0x2d,
0x2d, 0x3c, 0xbf, 0x73, 0xa7, 0xc9, 0x64, 0xb1,
0xe8, 0xf5, 0x4d, 0x4d, 0x07, 0x0f, 0xd6, 0xd4,
0xd0, 0x74, 0x7b, 0x7b, 0x5b, 0x5b, 0x5d, 0xdd,
0xf6, 0x0b, 0xf9, 0x6d, 0x01, 0xeb, 0x1d, 0xbf,
0x78, 0xb1, 0xa5, 0x85, 0xe7, 0xed, 0x76, 0xab,
0xd5, 0x6a, 0x65, 0x18, 0x87, 0xc3, 0xe3, 0x09,
0x04, 0x00, 0xa6, 0xa7, 0xdd, 0x6e, 0xbf, 0x1f,
0xe0, 0xd3, 0xa7, 0x89, 0x09, 0x8f, 0x87, 0xa6,
0x1b, 0x1b, 0x1b, 0x1b, 0xf7, 0xef, 0x8f, 0xc5,
0xb6, 0x4b, 0xc8, 0x96, 0x05, 0xe4, 0x13, 0xef,
0xec, 0xbc, 0x74, 0x09, 0x39, 0x6e, 0xb1, 0x58,
0xad, 0x0c, 0xc3, 0xb2, 0x5e, 0x2f, 0xc7, 0x01,
0x90, 0x24, 0x8e, 0xe3, 0x38, 0x80, 0x42, 0x41,
0x92, 0x04, 0x01, 0xd0, 0xd9, 0x79, 0xee, 0x5c,
0x73, 0x33, 0xc0, 0xd8, 0xd8, 0xdc, 0xdc, 0xd2,
0x92, 0x5a, 0x7d, 0xec, 0x58, 0x43, 0x43, 0x45,
0xc5, 0x5f, 0x17, 0xb2, 0x69, 0x01, 0xf9, 0xc4,
0xaf, 0x5f, 0xbf, 0x74, 0xa9, 0xb5, 0x95, 0xe7,
0xcb, 0xcb, 0xcd, 0x66, 0xab, 0x95, 0x61, 0xe6,
0xe7, 0xfd, 0xfe, 0xa5, 0x25, 0x00, 0x92, 0x24,
0x08, 0x82, 0x40, 0x88, 0xe3, 0xd9, 0xf1, 0x87,
0x0f, 0x23, 0x23, 0x2c, 0x0b, 0xa0, 0x52, 0x29,
0x14, 0x0a, 0x05, 0xc0, 0xfc, 0xbc, 0xcf, 0xb7,
0xba, 0xaa, 0x56, 0x9f, 0x38, 0xd1, 0xdc, 0x5c,
0x53, 0xf3, 0xfb, 0x42, 0x36, 0x14, 0x90, 0x4f,
0xfc, 0xc6, 0x8d, 0x8e, 0x8e, 0xb6, 0x36, 0x9e,
0xb7, 0xd9, 0xcc, 0x66, 0x8b, 0x85, 0x61, 0x5c,
0x2e, 0x8e, 0x0b, 0x87, 0xb3, 0x8e, 0xcb, 0x48,
0x10, 0xb2, 0x00, 0x34, 0x3e, 0x79, 0xf2, 0xe8,
0xd1, 0x7d, 0xfb, 0x90, 0x00, 0x92, 0xcc, 0xa2,
0x5a, 0xad, 0xd5, 0xea, 0xf5, 0x6a, 0xf5, 0xf5,
0xeb, 0x1d, 0x1d, 0xed, 0xed, 0xa2, 0xb8, 0x55,
0x21, 0xf8, 0x66, 0x89, 0xdf, 0xbc, 0x79, 0xf9,
0x72, 0x5b, 0x1b, 0xcf, 0x97, 0x95, 0x99, 0x4c,
0x66, 0x33, 0xc3, 0xb8, 0xdd, 0x4b, 0x4b, 0xcb,
0xcb, 0xeb, 0x9d, 0xce, 0x1f, 0xe3, 0x38, 0x86,
0x61, 0x18, 0xc0, 0x8b, 0x17, 0xef, 0xde, 0x8d,
0x8c, 0x00, 0x34, 0x34, 0xd4, 0xd6, 0xda, 0xed,
0x00, 0xfb, 0xf6, 0xed, 0xda, 0x65, 0x34, 0x02,
0xc4, 0xe3, 0xc9, 0x64, 0x2a, 0x05, 0x60, 0xb1,
0x18, 0x0c, 0xa5, 0xa5, 0x05, 0x05, 0x7f, 0xfc,
0xd1, 0xd4, 0x54, 0x53, 0x13, 0x8d, 0x6e, 0x56,
0x08, 0xbe, 0x11, 0xf1, 0x5b, 0xb7, 0xae, 0x5c,
0x69, 0x6b, 0xe3, 0x79, 0xab, 0xd5, 0x68, 0x34,
0x9b, 0x19, 0xc6, 0xeb, 0x0d, 0x87, 0x23, 0x91,
0x1f, 0x89, 0xe6, 0x3a, 0x9e, 0xef, 0x7c, 0x69,
0xa9, 0x5e, 0xaf, 0x56, 0x03, 0x30, 0x8c, 0x56,
0x4b, 0xd3, 0x00, 0x92, 0x94, 0xc9, 0x48, 0x12,
0xc0, 0xa1, 0x43, 0x55, 0x55, 0x36, 0x1b, 0x80,
0xc1, 0xb0, 0x63, 0x87, 0x4e, 0x07, 0xf0, 0xfc,
0xf9, 0x9b, 0x37, 0xc3, 0xc3, 0x00, 0x3c, 0x1f,
0x8b, 0x49, 0x92, 0x46, 0x53, 0x5b, 0x5b, 0x55,
0x55, 0x56, 0x16, 0x89, 0x6c, 0x24, 0xe4, 0x17,
0x19, 0xf0, 0x7a, 0xcf, 0x9f, 0x3f, 0x73, 0xa6,
0xae, 0x2e, 0x12, 0xb1, 0x58, 0x0c, 0x06, 0xb3,
0x99, 0x61, 0x02, 0x81, 0xe5, 0xe5, 0x68, 0xf4,
0x47, 0xa7, 0xe5, 0x92, 0xc9, 0x1f, 0xe3, 0xf8,
0x8f, 0x99, 0x78, 0xff, 0xbe, 0xb7, 0xd7, 0xe1,
0x00, 0x30, 0x1a, 0x8b, 0x8b, 0x75, 0x3a, 0x80,
0x92, 0x92, 0xa2, 0x22, 0x8d, 0x06, 0x40, 0x92,
0x52, 0xa9, 0x4c, 0x06, 0xc0, 0xe1, 0x60, 0x59,
0x9f, 0x0f, 0x40, 0xa5, 0x22, 0x49, 0x92, 0x04,
0xa0, 0x28, 0xd4, 0x23, 0x6a, 0xb5, 0x56, 0x5b,
0x5c, 0xac, 0xd3, 0xd9, 0x6c, 0x25, 0x25, 0x4a,
0x65, 0xb6, 0xb4, 0xf2, 0x99, 0x92, 0x3f, 0x17,
0x60, 0x32, 0x3d, 0x7b, 0xd6, 0xdd, 0x3d, 0x3a,
0xea, 0xf5, 0xa6, 0x52, 0x18, 0x46, 0x51, 0xf1,
0x78, 0x75, 0x75, 0x65, 0xa5, 0xdd, 0xae, 0x52,
0x11, 0x04, 0x8e, 0x63, 0x18, 0x80, 0x20, 0xc4,
0xe3, 0xa9, 0x14, 0x00, 0x2a, 0x10, 0x14, 0x18,
0x06, 0x40, 0xd3, 0x4a, 0x25, 0x41, 0x00, 0xb8,
0x5c, 0x8b, 0x8b, 0xe1, 0x30, 0x40, 0x2a, 0x95,
0x4e, 0x67, 0x32, 0x00, 0xf5, 0xf5, 0xd5, 0xd5,
0x65, 0x65, 0x00, 0xab, 0xab, 0xf1, 0x78, 0x32,
0x09, 0xd0, 0xd7, 0xf7, 0xf9, 0xf3, 0xdc, 0x1c,
0x00, 0x45, 0x29, 0x95, 0x24, 0x99, 0x2d, 0x35,
0x19, 0x03, 0x01, 0xaf, 0xd7, 0xe9, 0x94, 0xa4,
0x85, 0x05, 0x8e, 0x4b, 0x24, 0x0a, 0x0a, 0x90,
0xe4, 0x23, 0x47, 0xf2, 0x99, 0x12, 0xf9, 0x13,
0x8b, 0x8b, 0x73, 0x73, 0xbd, 0xbd, 0xb1, 0x98,
0xd9, 0xbc, 0x7b, 0xf7, 0xf1, 0xe3, 0x8f, 0x1f,
0x4f, 0x4d, 0xcd, 0xcc, 0xb8, 0xdd, 0x77, 0xef,
0x86, 0x42, 0xe1, 0x70, 0x38, 0x2c, 0x08, 0x76,
0xbb, 0xcd, 0x66, 0xb1, 0x28, 0x14, 0x2c, 0xeb,
0x74, 0x72, 0x1c, 0x80, 0xd5, 0x6a, 0x30, 0xe8,
0xf5, 0x00, 0x0b, 0x0b, 0x6e, 0x77, 0x28, 0x04,
0x90, 0x4a, 0x21, 0x67, 0x27, 0x26, 0xbe, 0x7c,
0xf1, 0x7a, 0x01, 0x94, 0x4a, 0xe4, 0xac, 0x56,
0xab, 0xd1, 0x20, 0x1a, 0x99, 0x0c, 0x00, 0x40,
0x20, 0x10, 0x0c, 0x46, 0xa3, 0x00, 0x0a, 0x05,
0xca, 0xa0, 0x8c, 0x1c, 0xe7, 0xf7, 0xbb, 0x5c,
0x92, 0x34, 0x3e, 0xce, 0xb2, 0xc1, 0x20, 0x86,
0x61, 0x98, 0x24, 0x25, 0x12, 0x3b, 0x77, 0x0e,
0x0d, 0xf5, 0xf4, 0x3c, 0x78, 0x30, 0x35, 0x95,
0xcf, 0x77, 0xc3, 0xb3, 0x50, 0x7e, 0x4f, 0x54,
0x57, 0xef, 0xdd, 0x6b, 0x30, 0x08, 0x42, 0x43,
0xc3, 0x91, 0x23, 0x75, 0x75, 0x34, 0x3d, 0x3f,
0xbf, 0xb0, 0xb0, 0xb4, 0x84, 0xdc, 0x07, 0x00,
0xc0, 0x71, 0x94, 0xa1, 0x82, 0x02, 0x8a, 0x52,
0x2a, 0x01, 0x1a, 0x1a, 0x0e, 0x1d, 0xb2, 0xdb,
0xb3, 0xce, 0x8e, 0x8d, 0x4d, 0x4d, 0x79, 0x3c,
0x00, 0xd1, 0x68, 0x2c, 0xb6, 0xb6, 0x96, 0x9d,
0xf7, 0xf9, 0x16, 0x17, 0xbf, 0x7e, 0x95, 0xa4,
0xa1, 0xa1, 0xc9, 0xc9, 0xc5, 0xc5, 0x2c, 0xf1,
0xc1, 0xc1, 0x9e, 0x9e, 0x87, 0x0f, 0x5d, 0xae,
0x4d, 0x37, 0x71, 0x7e, 0xe4, 0x1e, 0xbe, 0x4c,
0xa6, 0xc9, 0x49, 0x96, 0xf5, 0xfb, 0x69, 0x7a,
0x68, 0x68, 0x70, 0x70, 0x78, 0x58, 0x10, 0x2a,
0x2b, 0xed, 0xf6, 0xd2, 0xd2, 0xf5, 0xaf, 0x47,
0x00, 0xd4, 0xac, 0x33, 0x33, 0x2c, 0xeb, 0xf7,
0x67, 0x7b, 0x24, 0x93, 0x41, 0x19, 0xa2, 0x28,
0xb4, 0x8e, 0xe3, 0x7c, 0x3e, 0xa7, 0x73, 0xeb,
0xc4, 0x37, 0x2d, 0xe0, 0x57, 0x42, 0xc6, 0xc6,
0x58, 0x96, 0xe3, 0x68, 0x7a, 0x70, 0x70, 0x60,
0x60, 0x70, 0x50, 0x10, 0xf6, 0xec, 0x29, 0x2f,
0x2f, 0x29, 0xc9, 0x36, 0x61, 0x61, 0x21, 0x45,
0xa9, 0x54, 0x00, 0x56, 0xab, 0xd1, 0xc8, 0x30,
0xd9, 0x66, 0x57, 0xab, 0x69, 0x9a, 0xa2, 0x00,
0x38, 0x0e, 0xd5, 0xf8, 0xc0, 0xc0, 0xf8, 0xb8,
0xc7, 0xb3, 0x75, 0xe2, 0xbf, 0xec, 0x81, 0x8d,
0x02, 0xf5, 0x88, 0x20, 0x14, 0x16, 0xea, 0x74,
0x46, 0x63, 0x57, 0x17, 0xcf, 0x8b, 0xa2, 0x4a,
0x75, 0xe7, 0x4e, 0x3a, 0x2d, 0x08, 0xa1, 0x90,
0x28, 0xd6, 0xd6, 0x1e, 0x38, 0x50, 0x59, 0xa9,
0x50, 0xa4, 0x52, 0xc9, 0x64, 0x3a, 0x8d, 0x6a,
0x9f, 0xa6, 0x01, 0x34, 0x1a, 0xb5, 0x9a, 0xa2,
0x00, 0x1c, 0x8e, 0xe9, 0xe9, 0xc9, 0x49, 0x49,
0x7a, 0xfb, 0xb6, 0xbf, 0x7f, 0x76, 0x16, 0xc3,
0xc2, 0x61, 0xaf, 0x77, 0x7c, 0xfc, 0xe0, 0xc1,
0x89, 0x89, 0xfe, 0xfe, 0xa7, 0x4f, 0x3d, 0x1e,
0xf4, 0x14, 0x49, 0x42, 0x88, 0xfa, 0x65, 0x1b,
0x05, 0x68, 0x34, 0x08, 0x8b, 0x8a, 0x42, 0x21,
0x9f, 0x6f, 0x7a, 0x5a, 0xa9, 0x8c, 0xc7, 0x45,
0x31, 0x12, 0xe9, 0xee, 0x16, 0x45, 0x82, 0x30,
0x9b, 0x2f, 0x5e, 0x4c, 0xa7, 0x57, 0x57, 0x83,
0xc1, 0xb5, 0xb5, 0xea, 0xea, 0xaa, 0xaa, 0x8a,
0x0a, 0x92, 0x94, 0x9b, 0xf6, 0xdb, 0x37, 0xa7,
0x73, 0x6e, 0x0e, 0xa0, 0xab, 0xeb, 0xe5, 0xcb,
0x91, 0x11, 0x0c, 0x73, 0xb9, 0x26, 0x27, 0x5f,
0xbf, 0x3e, 0x7b, 0xd6, 0xed, 0x9e, 0x9d, 0xed,
0xeb, 0xe3, 0x79, 0xb4, 0x6f, 0x41, 0x01, 0x42,
0x95, 0xea, 0x3b, 0xbd, 0xef, 0xfc, 0xd2, 0xe9,
0x5f, 0x09, 0xda, 0xa4, 0x80, 0xc2, 0x42, 0x84,
0x5a, 0x2d, 0x42, 0xbd, 0x1e, 0x21, 0xc3, 0x08,
0x42, 0x34, 0xca, 0x71, 0x14, 0xb5, 0xb2, 0x12,
0x0e, 0x7f, 0xfb, 0xf6, 0xf1, 0x63, 0x3c, 0xae,
0x52, 0xed, 0xda, 0x75, 0xf6, 0x6c, 0x32, 0x19,
0x8d, 0xfa, 0x7c, 0x89, 0x44, 0x32, 0x99, 0x48,
0x88, 0x22, 0x41, 0x74, 0x75, 0xbd, 0x7a, 0x35,
0x3a, 0x0a, 0xf0, 0xe5, 0xcb, 0xf0, 0xf0, 0xf3,
0xe7, 0xb7, 0x6f, 0x87, 0xc3, 0x7e, 0x3f, 0xcb,
0xca, 0x5f, 0x5c, 0x99, 0x30, 0xf9, 0xfd, 0xb5,
0x8e, 0xe7, 0x95, 0xb6, 0x4c, 0x7c, 0x6d, 0xed,
0x37, 0x05, 0xc8, 0x1b, 0xcb, 0x0e, 0xd1, 0x74,
0x2e, 0x6a, 0x34, 0x89, 0x84, 0x28, 0x46, 0x22,
0x2a, 0x95, 0x28, 0xc6, 0x62, 0xa1, 0x10, 0xcb,
0x8a, 0xa2, 0x42, 0x61, 0xb3, 0x35, 0x35, 0x39,
0x1c, 0x4e, 0x67, 0x30, 0x08, 0x30, 0x3d, 0x3d,
0x30, 0xf0, 0xe4, 0xc9, 0xa3, 0x47, 0xd1, 0x28,
0xcf, 0x7b, 0x3c, 0x2b, 0x2b, 0xe8, 0x7f, 0x72,
0xa9, 0xc8, 0x0e, 0x27, 0x12, 0x08, 0xe3, 0xf1,
0x5c, 0xc2, 0xf2, 0x87, 0x4c, 0x9e, 0xcf, 0xc6,
0x16, 0xaf, 0x94, 0xb2, 0x53, 0x72, 0x06, 0xf2,
0x51, 0xa7, 0x93, 0x05, 0xe5, 0x66, 0x4e, 0xa1,
0xc8, 0x75, 0x52, 0xbe, 0xd8, 0xc8, 0x19, 0x90,
0x05, 0x2d, 0x2f, 0xff, 0x1c, 0xe5, 0xd3, 0xea,
0xfa, 0xd8, 0xa6, 0x3b, 0x71, 0x7e, 0x66, 0x28,
0x0a, 0xa1, 0x52, 0x89, 0x50, 0x2e, 0x09, 0xd9,
0xf1, 0x64, 0x32, 0xd7, 0x51, 0x59, 0xd0, 0xea,
0x6a, 0xee, 0xba, 0xff, 0x40, 0xfc, 0x09, 0xee,
0x21, 0x14, 0xa1, 0xa0, 0xa8, 0x66, 0xdb, 0x00,
0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae,
0x42, 0x60, 0x82};

View File

@@ -1,262 +0,0 @@
/* dialog_error.png - 653 bytes */
static const unsigned char dialog_error_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9,
0x43, 0xbb, 0x7f, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd5, 0x0b, 0x0a, 0x09, 0x32, 0x0e, 0x93,
0x53, 0xb4, 0xb0, 0x00, 0x00, 0x02, 0x1a, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0x9d, 0x93, 0xbd,
0x4f, 0x93, 0x51, 0x14, 0xc6, 0x7f, 0xf7, 0x6d,
0x0b, 0xe5, 0xa3, 0xbe, 0xa0, 0xc4, 0x1a, 0x4d,
0xa0, 0x68, 0x9b, 0x02, 0xb6, 0x0b, 0xc4, 0x94,
0x44, 0x87, 0x8e, 0xba, 0x32, 0x69, 0xd2, 0x81,
0x11, 0xfe, 0x22, 0x3b, 0x32, 0x74, 0x66, 0x23,
0xb2, 0x90, 0x40, 0x58, 0x44, 0x07, 0x30, 0x92,
0x16, 0x9a, 0x68, 0x63, 0xf8, 0xb0, 0x24, 0xa4,
0x2d, 0x4d, 0x5b, 0x28, 0xf6, 0x3d, 0xc7, 0xe1,
0x7d, 0x4b, 0x10, 0x89, 0x1a, 0x4f, 0x72, 0x73,
0x93, 0x9b, 0xf3, 0xfc, 0x9e, 0xe4, 0x39, 0xf7,
0x18, 0x6e, 0x54, 0x0e, 0x52, 0xc0, 0x3c, 0x90,
0x06, 0xc6, 0xbd, 0xe7, 0x12, 0xb0, 0x0e, 0x2c,
0x65, 0x60, 0xeb, 0x7a, 0xbf, 0xb9, 0x21, 0x7e,
0x3b, 0x1c, 0x0a, 0x2d, 0x4c, 0x26, 0x93, 0x04,
0xc3, 0x61, 0x7c, 0x03, 0x03, 0xa8, 0x2a, 0x9d,
0xb3, 0x33, 0xce, 0xcb, 0x65, 0x8a, 0x85, 0x02,
0xd5, 0x66, 0x33, 0x9b, 0x81, 0xc5, 0xdf, 0x00,
0x39, 0x78, 0x37, 0x9d, 0x4c, 0xbe, 0x1c, 0x99,
0x99, 0xe1, 0x72, 0x7b, 0x1b, 0xe7, 0xf4, 0x14,
0x1c, 0x07, 0x55, 0x45, 0x0c, 0x58, 0x43, 0x77,
0xf1, 0x4f, 0x4d, 0x52, 0xdd, 0xdd, 0xe5, 0x53,
0xb1, 0xb8, 0x9a, 0x81, 0x57, 0x00, 0xbe, 0xae,
0xf3, 0x74, 0x32, 0xf9, 0xfa, 0x5e, 0x2c, 0x46,
0x7b, 0x73, 0x13, 0x6d, 0x34, 0x40, 0x04, 0x55,
0x41, 0x45, 0x41, 0x04, 0x69, 0xb6, 0xe8, 0x1c,
0x7c, 0xa3, 0x3f, 0x16, 0xc3, 0xb6, 0xac, 0xe8,
0x8b, 0x6a, 0xf5, 0xc1, 0x32, 0xac, 0x98, 0x1c,
0xa4, 0x86, 0x43, 0xa1, 0xf7, 0xcf, 0xe6, 0xe6,
0xb8, 0x58, 0x5b, 0x43, 0x9d, 0x0e, 0xaa, 0x8a,
0x2a, 0xa8, 0x7a, 0x62, 0x05, 0xc5, 0x85, 0xa9,
0x31, 0x04, 0x53, 0x29, 0x3e, 0x6f, 0x6c, 0x50,
0x6b, 0xb5, 0x66, 0x2d, 0x60, 0x7e, 0x32, 0x91,
0xe0, 0x72, 0x67, 0x07, 0x75, 0x1c, 0x10, 0x50,
0x01, 0x15, 0x71, 0x0f, 0xea, 0x81, 0x14, 0x54,
0xc1, 0x71, 0xb8, 0xc8, 0xe7, 0x79, 0x3c, 0x16,
0x01, 0x98, 0xf7, 0x03, 0xe9, 0x60, 0xf8, 0x3e,
0x3f, 0x3e, 0x7c, 0x44, 0x45, 0x19, 0x2b, 0x7f,
0xe7, 0x4f, 0xb5, 0x6f, 0xdf, 0x41, 0xaa, 0x35,
0x02, 0x0f, 0x1f, 0x01, 0xa4, 0xfd, 0xc0, 0xb8,
0xd5, 0x3f, 0x88, 0x8a, 0x1b, 0xd8, 0xdf, 0x4a,
0x44, 0x51, 0xed, 0x60, 0x7a, 0x02, 0x00, 0xe3,
0x16, 0x70, 0x95, 0xf6, 0xbf, 0x00, 0xf0, 0xfa,
0x54, 0x05, 0x00, 0x3f, 0x50, 0xea, 0xd4, 0xcf,
0x26, 0x14, 0x83, 0xaa, 0xc3, 0x97, 0x91, 0x11,
0xb7, 0x41, 0xc4, 0xbd, 0x51, 0x37, 0x3c, 0x37,
0x55, 0x44, 0xdd, 0x20, 0xb5, 0xd9, 0x02, 0x28,
0x59, 0xc0, 0xfa, 0xf9, 0xc9, 0x09, 0xc6, 0x1e,
0xba, 0x22, 0xff, 0x22, 0xee, 0x3a, 0x8a, 0x27,
0x56, 0xc1, 0x1a, 0x1c, 0xa4, 0x5d, 0xab, 0x01,
0xac, 0x5b, 0xc0, 0xd2, 0xfe, 0xde, 0x1e, 0x81,
0x78, 0xdc, 0x25, 0xcb, 0x75, 0x91, 0x37, 0x3a,
0xed, 0x4e, 0x43, 0x50, 0x63, 0xf0, 0x47, 0x22,
0x94, 0x0e, 0x0f, 0x01, 0x96, 0xac, 0x0c, 0x6c,
0xd5, 0x5a, 0xad, 0x6c, 0xa5, 0x90, 0xa7, 0x67,
0xea, 0xa9, 0x0b, 0xb9, 0xe6, 0x8a, 0x77, 0xab,
0x28, 0x18, 0x43, 0x4f, 0x34, 0x46, 0xe3, 0xe0,
0x80, 0x7a, 0xbb, 0x9d, 0xcd, 0xc0, 0x96, 0x0f,
0x60, 0x19, 0x56, 0x9e, 0x57, 0x2a, 0xb3, 0xb6,
0xcf, 0x17, 0x1d, 0x48, 0x24, 0x70, 0x1a, 0x0d,
0xe4, 0xa2, 0x7d, 0xf5, 0x13, 0x15, 0x30, 0x76,
0x88, 0xde, 0xf8, 0x04, 0x8d, 0x72, 0x99, 0xc2,
0xf1, 0xf1, 0x6a, 0x06, 0xde, 0xdc, 0xba, 0x4c,
0x76, 0x5f, 0xdf, 0xc2, 0x93, 0xd1, 0x51, 0x02,
0xb6, 0x8d, 0xe9, 0xed, 0x45, 0x45, 0x70, 0x9a,
0x4d, 0x3a, 0xf5, 0x3a, 0x5f, 0x8f, 0x8e, 0xba,
0xce, 0x8b, 0xb7, 0x6e, 0xe3, 0xff, 0xac, 0xf3,
0x4f, 0xc2, 0x47, 0x66, 0x1e, 0xb9, 0x58, 0x76,
0x77, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e,
0x44, 0xae, 0x42, 0x60, 0x82};
/* dialog_error.png - 1390 bytes */
static const unsigned char dialog_error_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x04,
0xf9, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xed,
0x56, 0x4d, 0x68, 0x13, 0x5b, 0x18, 0x3d, 0xe9,
0xcc, 0x64, 0xf2, 0x53, 0x79, 0xb6, 0x09, 0x09,
0x9d, 0x48, 0x13, 0xfc, 0x2b, 0x0a, 0xa5, 0xb8,
0xaa, 0x5d, 0x28, 0x82, 0x8b, 0xa2, 0xd9, 0x77,
0x25, 0x75, 0xe5, 0xa6, 0x0b, 0x97, 0x42, 0x41,
0x41, 0x50, 0x70, 0xe1, 0xde, 0x4a, 0xdd, 0xea,
0xd6, 0x85, 0x60, 0x37, 0x76, 0xd7, 0x85, 0x20,
0x28, 0xa5, 0x4d, 0xdb, 0x40, 0x23, 0x49, 0x85,
0xa4, 0x53, 0x9a, 0xa4, 0x9d, 0xc4, 0xcc, 0x4c,
0x9a, 0xc9, 0xbd, 0x6f, 0xf1, 0x79, 0xdf, 0x24,
0xd3, 0x57, 0xe3, 0xab, 0xbe, 0xb7, 0x78, 0xf8,
0x2d, 0x72, 0xb8, 0x73, 0x73, 0xef, 0x77, 0xce,
0xfd, 0x7e, 0xee, 0x05, 0x7e, 0xdb, 0x6f, 0xfb,
0x29, 0xf3, 0x1d, 0x77, 0xe1, 0xcb, 0x97, 0x00,
0x10, 0x0a, 0xd1, 0x68, 0x66, 0x86, 0x30, 0x9d,
0x26, 0x1c, 0x1d, 0x25, 0x1c, 0x18, 0x20, 0xdc,
0xdb, 0x23, 0x5c, 0x5d, 0x25, 0x7c, 0xfb, 0x96,
0xf0, 0xd9, 0xb3, 0x5b, 0xb7, 0x00, 0xc0, 0x34,
0xff, 0x33, 0x01, 0x44, 0xfc, 0xce, 0x1d, 0x1a,
0x3d, 0x79, 0x72, 0xf6, 0xec, 0xd8, 0xd8, 0xd8,
0x58, 0x24, 0xa2, 0x69, 0x23, 0x23, 0x23, 0x23,
0x40, 0x7f, 0x7f, 0x34, 0x1a, 0x8d, 0x02, 0xb2,
0xac, 0x28, 0xb2, 0x0c, 0xb4, 0x5a, 0x96, 0x65,
0x59, 0x80, 0x61, 0xe8, 0xfa, 0xce, 0x0e, 0xb0,
0xbd, 0x9d, 0xcb, 0xe5, 0x72, 0x40, 0x3e, 0xbf,
0xbe, 0xbe, 0xbe, 0x5e, 0xa9, 0xd0, 0x3e, 0xb3,
0xb3, 0x24, 0xe4, 0xc5, 0x8b, 0x7f, 0x4d, 0x00,
0x11, 0x7f, 0xf4, 0x68, 0x70, 0x30, 0x1e, 0x8f,
0xc7, 0xef, 0xdf, 0xbf, 0x74, 0x69, 0x72, 0x72,
0x72, 0x12, 0x08, 0x85, 0x0c, 0xc3, 0x30, 0x80,
0x76, 0x7b, 0x6b, 0x6b, 0x6b, 0x0b, 0xe0, 0xdc,
0xb2, 0x4c, 0x13, 0xe0, 0x9c, 0x31, 0xce, 0x01,
0xce, 0x39, 0xe7, 0x1c, 0x60, 0x4c, 0x51, 0x14,
0x05, 0xe8, 0xeb, 0x4b, 0x24, 0x12, 0x09, 0xc0,
0x34, 0xc3, 0xe1, 0x70, 0x18, 0x58, 0x59, 0x59,
0x5a, 0x5a, 0x5a, 0x02, 0x0c, 0xa3, 0x5a, 0xad,
0x56, 0x1f, 0x3f, 0x26, 0x21, 0x0f, 0x1e, 0xfc,
0x28, 0x2f, 0xe9, 0x47, 0x4f, 0x9c, 0x88, 0x3f,
0x7d, 0x3a, 0x31, 0x31, 0x35, 0x35, 0x35, 0x05,
0xc8, 0xf2, 0xf2, 0xf2, 0xf2, 0x32, 0xc0, 0x58,
0xb1, 0x58, 0x2a, 0x01, 0x9c, 0xb7, 0x5a, 0x07,
0x07, 0x2e, 0x61, 0x21, 0x80, 0x31, 0xce, 0x19,
0x03, 0x38, 0x77, 0x1c, 0xc7, 0x01, 0x18, 0xab,
0x56, 0x2b, 0x15, 0x40, 0x92, 0x48, 0xb8, 0xa6,
0x4d, 0x4c, 0x4c, 0x4c, 0x00, 0xd5, 0x6a, 0xb1,
0x58, 0x2c, 0x5e, 0xbd, 0x9a, 0x4e, 0xdb, 0xb6,
0x6d, 0x97, 0x4a, 0xaf, 0x5f, 0x03, 0xc0, 0xa7,
0x4f, 0xc7, 0x8e, 0x40, 0x77, 0x8e, 0x7f, 0xf9,
0x72, 0xfd, 0xfa, 0xf4, 0xf4, 0xf4, 0x74, 0x24,
0x12, 0x08, 0x6c, 0x6c, 0x6c, 0x6c, 0x00, 0x8c,
0xd5, 0xeb, 0xf5, 0x3a, 0x11, 0x65, 0x0c, 0x20,
0xaa, 0x9d, 0x84, 0xc5, 0xc9, 0x8b, 0x31, 0xcd,
0xd3, 0x0c, 0xfd, 0xd2, 0xf7, 0x40, 0x20, 0x18,
0x04, 0x9a, 0xcd, 0x64, 0x32, 0x95, 0x02, 0xde,
0xbf, 0x5f, 0x5c, 0x7c, 0xf7, 0x4e, 0xa4, 0xd6,
0xf0, 0x70, 0xaf, 0x1a, 0xe9, 0xfb, 0xbe, 0xbe,
0x99, 0x19, 0x91, 0xe3, 0xa1, 0x90, 0x61, 0xec,
0xef, 0x03, 0x9c, 0xd7, 0x6a, 0xb5, 0x9a, 0x4b,
0x5c, 0x10, 0x11, 0x44, 0x19, 0x13, 0xc4, 0xbb,
0x85, 0x09, 0xe2, 0xe2, 0x3b, 0x63, 0x42, 0x70,
0xa3, 0xd1, 0x68, 0x00, 0x81, 0x40, 0xbd, 0x6e,
0x18, 0xc0, 0xa9, 0x53, 0xa9, 0x54, 0x2a, 0x15,
0x89, 0x08, 0xff, 0xbd, 0x22, 0xd0, 0x43, 0x40,
0x3a, 0x3d, 0x34, 0x74, 0xee, 0xdc, 0xf9, 0xf3,
0x40, 0xbb, 0x9d, 0xcf, 0x17, 0x0a, 0x2e, 0x41,
0xf7, 0x04, 0xdb, 0xed, 0xce, 0x5c, 0x17, 0xe8,
0x12, 0x16, 0xc2, 0x84, 0x60, 0x51, 0x1b, 0x2e,
0x32, 0x06, 0x1c, 0x1c, 0x50, 0x2a, 0xc6, 0x62,
0x9a, 0x36, 0x34, 0xe4, 0xfa, 0xef, 0x25, 0x40,
0xfe, 0xfe, 0xf4, 0xe8, 0x68, 0x7f, 0x7f, 0x34,
0x1a, 0x89, 0x00, 0x8c, 0xad, 0xac, 0xd8, 0xb6,
0xeb, 0x30, 0x1a, 0xdd, 0xdc, 0xdc, 0xdc, 0xec,
0xb5, 0x7d, 0x6f, 0x2b, 0x14, 0xe2, 0xf1, 0x78,
0x1c, 0xe0, 0xbc, 0xd9, 0x6c, 0x36, 0x81, 0x50,
0x28, 0x1c, 0x3e, 0x71, 0xc2, 0xf5, 0xff, 0x93,
0x11, 0x18, 0x18, 0x90, 0x65, 0x59, 0x96, 0xe5,
0xc3, 0xa1, 0xff, 0x55, 0xe6, 0x8d, 0x9c, 0x24,
0x49, 0x52, 0xdf, 0x5f, 0xac, 0xc4, 0x3d, 0x72,
0x6c, 0x01, 0x7b, 0x7b, 0xad, 0x96, 0x6d, 0x8b,
0x93, 0xef, 0x4c, 0x9d, 0x5f, 0x65, 0x6e, 0x2d,
0x88, 0x54, 0x22, 0x7f, 0xc2, 0x7f, 0xaf, 0xf5,
0x3d, 0x52, 0x68, 0x75, 0xb5, 0x56, 0xd3, 0x75,
0x5d, 0xbf, 0x76, 0x2d, 0x14, 0xf2, 0xfb, 0x29,
0x12, 0xe4, 0x60, 0x7b, 0x3b, 0x99, 0x4c, 0x26,
0x5d, 0x02, 0x6e, 0x4d, 0x88, 0x31, 0xf0, 0x77,
0x39, 0x7f, 0xb8, 0x86, 0xc4, 0x58, 0x92, 0x24,
0x09, 0xf8, 0xfa, 0x75, 0x7f, 0x7f, 0x7f, 0xdf,
0xf5, 0x7f, 0xec, 0x08, 0xd0, 0x29, 0x2f, 0x2c,
0x94, 0x4a, 0x74, 0x73, 0xfa, 0x7c, 0x9a, 0x96,
0x48, 0x74, 0x12, 0x71, 0xbb, 0x4b, 0x67, 0x37,
0x72, 0xbb, 0x92, 0x97, 0xb0, 0x10, 0xe4, 0xfd,
0x3f, 0x9d, 0xbc, 0x24, 0xd1, 0x0d, 0xbe, 0xbb,
0xab, 0xeb, 0xdb, 0xdb, 0xae, 0x7f, 0x62, 0xe3,
0xf3, 0xfd, 0x43, 0x01, 0x3e, 0x5f, 0xa9, 0x04,
0x00, 0x73, 0x73, 0x85, 0x42, 0x36, 0x9b, 0xcd,
0x56, 0x2a, 0xa6, 0x19, 0x0c, 0x06, 0x83, 0x00,
0x40, 0xc8, 0x39, 0xe7, 0xed, 0x76, 0x67, 0x6d,
0xb8, 0x5d, 0xa7, 0x3b, 0xd5, 0xdc, 0xda, 0xe9,
0x14, 0xe6, 0x46, 0x46, 0x55, 0x55, 0x15, 0x30,
0xcd, 0x40, 0x20, 0x10, 0x00, 0x74, 0x5d, 0xd7,
0x77, 0x76, 0x2a, 0x95, 0x5c, 0x0e, 0x00, 0x9e,
0x3f, 0xef, 0x16, 0x70, 0x58, 0x88, 0xe4, 0x25,
0xfe, 0x4d, 0x57, 0xdf, 0xe2, 0x22, 0x9d, 0xee,
0xcd, 0x9b, 0x00, 0x60, 0x18, 0xa6, 0x59, 0x2e,
0x97, 0xcb, 0xe9, 0xf4, 0xd0, 0xd0, 0xf8, 0xf8,
0xf8, 0x38, 0xc0, 0xd8, 0xee, 0x6e, 0xa5, 0xd2,
0x7d, 0x03, 0x77, 0xa7, 0x84, 0x97, 0x68, 0x77,
0xb1, 0xfa, 0x7c, 0xaa, 0xea, 0xf7, 0x03, 0x7d,
0x7d, 0xa7, 0x4f, 0x9f, 0x39, 0x03, 0x64, 0xb3,
0x6b, 0x6b, 0x99, 0x0c, 0x50, 0xa9, 0xb4, 0x5a,
0x8e, 0x33, 0x3b, 0x7b, 0xef, 0x1e, 0x00, 0x7c,
0xfc, 0x48, 0x7c, 0x44, 0xdb, 0x38, 0xdc, 0x3e,
0x3c, 0x02, 0x44, 0xfd, 0x4b, 0xdf, 0xbe, 0xfb,
0xfd, 0x6f, 0xde, 0x00, 0xc0, 0xc6, 0xc6, 0x95,
0x2b, 0xb6, 0x6d, 0xdb, 0xaa, 0xda, 0x68, 0x94,
0x4a, 0xa5, 0xd2, 0xe5, 0xcb, 0x03, 0x03, 0x17,
0x2f, 0x5e, 0xb8, 0x00, 0x28, 0x0a, 0x9d, 0x5c,
0xbb, 0xdd, 0x68, 0xd0, 0x1b, 0xc8, 0x71, 0x5a,
0xad, 0xee, 0xda, 0x20, 0x94, 0x65, 0x49, 0x02,
0x64, 0x39, 0x16, 0x8b, 0xc5, 0x00, 0xdb, 0x1e,
0x1c, 0x1c, 0x1c, 0x04, 0xb2, 0xd9, 0x4c, 0x26,
0x93, 0x01, 0x0a, 0x05, 0xcb, 0xb2, 0xac, 0xb9,
0xb9, 0xbb, 0x77, 0x01, 0x60, 0x7e, 0xbe, 0x9b,
0xb0, 0x68, 0x1b, 0x87, 0x85, 0x1c, 0x11, 0x01,
0x57, 0x00, 0x61, 0x30, 0x48, 0x0f, 0xe0, 0x4c,
0x26, 0x99, 0x6c, 0x36, 0x9b, 0x4d, 0xd3, 0xb4,
0xac, 0x7c, 0x3e, 0x9f, 0x1f, 0x1d, 0x65, 0x4c,
0x96, 0x65, 0x59, 0x55, 0xfd, 0xfe, 0x44, 0x42,
0xd3, 0x00, 0x55, 0xa5, 0xe2, 0x56, 0x14, 0xaa,
0x19, 0xc6, 0xe8, 0x1e, 0xb1, 0x2c, 0x59, 0x56,
0x14, 0xa0, 0x58, 0x2c, 0x97, 0xcb, 0x65, 0x20,
0x9b, 0xcd, 0xe5, 0x72, 0xb9, 0x7a, 0xfd, 0xc3,
0x07, 0xc7, 0x71, 0x9c, 0xf9, 0xf9, 0x87, 0x0f,
0x01, 0xe0, 0xd5, 0x2b, 0xf2, 0xe7, 0x38, 0x84,
0xad, 0x56, 0xf7, 0x58, 0xa0, 0x30, 0xce, 0x3d,
0x39, 0xe5, 0x8d, 0x40, 0x20, 0x40, 0x28, 0xde,
0x44, 0xf1, 0x38, 0xe1, 0xf0, 0xf0, 0xc9, 0x93,
0x00, 0x10, 0x8b, 0xdd, 0xbe, 0x0d, 0x00, 0x37,
0x6e, 0xa4, 0x52, 0x00, 0x30, 0x36, 0xf6, 0xc7,
0x1f, 0x00, 0xa0, 0x69, 0x8a, 0x42, 0xeb, 0x0e,
0x0e, 0x00, 0xc0, 0xb2, 0xa8, 0xb3, 0xe8, 0xfa,
0xe7, 0xcf, 0x00, 0xb0, 0xb6, 0x46, 0x54, 0x17,
0x16, 0x0c, 0x03, 0x00, 0x8a, 0x45, 0xda, 0x77,
0x77, 0x97, 0x50, 0xbc, 0x85, 0x44, 0x3f, 0x6a,
0x34, 0x08, 0x69, 0x37, 0xa0, 0xdd, 0x3e, 0x42,
0x80, 0x5b, 0x03, 0x84, 0x44, 0xc3, 0x15, 0x42,
0xf4, 0x00, 0x4d, 0x23, 0x24, 0x19, 0xee, 0xbc,
0x88, 0x98, 0x58, 0x27, 0x50, 0xec, 0x27, 0x1c,
0x8b, 0xc7, 0x19, 0xd1, 0x77, 0xfb, 0xbd, 0xc0,
0x5a, 0xad, 0xfb, 0x7f, 0x82, 0xb8, 0x88, 0x80,
0x9b, 0x52, 0x47, 0x08, 0xf0, 0x0a, 0x11, 0xa8,
0xaa, 0x84, 0xe1, 0xb0, 0x48, 0x2d, 0x42, 0x59,
0xee, 0x46, 0xf1, 0x7f, 0x6f, 0xd7, 0x10, 0x02,
0x04, 0x21, 0x91, 0x22, 0xcd, 0x26, 0xa1, 0xb8,
0xc2, 0xbc, 0xa9, 0x23, 0xd6, 0x79, 0x6b, 0xe1,
0xc8, 0xe7, 0xb4, 0xaf, 0x47, 0x64, 0xbc, 0xa9,
0xe6, 0x9d, 0x3f, 0xca, 0xbc, 0x45, 0xe8, 0x45,
0x41, 0xd8, 0x5b, 0xbc, 0xde, 0xf5, 0xff, 0x23,
0xfb, 0x13, 0xd9, 0xb2, 0xe7, 0x6c, 0xa9, 0xad,
0xfd, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45,
0x4e, 0x44, 0xae, 0x42, 0x60, 0x82};

View File

@@ -1,367 +0,0 @@
/* dialog_information.png - 863 bytes */
static const unsigned char dialog_information_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9,
0x43, 0xbb, 0x7f, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd5, 0x03, 0x02, 0x06, 0x20, 0x32, 0x3a,
0x50, 0x9c, 0xf7, 0x00, 0x00, 0x00, 0x35, 0x74,
0x45, 0x58, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x65,
0x6e, 0x74, 0x00, 0x28, 0x63, 0x29, 0x20, 0x32,
0x30, 0x30, 0x34, 0x20, 0x4a, 0x61, 0x6b, 0x75,
0x62, 0x20, 0x53, 0x74, 0x65, 0x69, 0x6e, 0x65,
0x72, 0x0a, 0x0a, 0x43, 0x72, 0x65, 0x61, 0x74,
0x65, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20,
0x54, 0x68, 0x65, 0x20, 0x47, 0x49, 0x4d, 0x50,
0x90, 0xd9, 0x8b, 0x6f, 0x00, 0x00, 0x02, 0xab,
0x49, 0x44, 0x41, 0x54, 0x38, 0xcb, 0x95, 0x92,
0x4b, 0x48, 0x54, 0x71, 0x14, 0xc6, 0xbf, 0xff,
0xdc, 0x3b, 0xe3, 0xbd, 0x3a, 0xd7, 0x47, 0x26,
0x59, 0x6a, 0x66, 0x52, 0x3e, 0x08, 0x45, 0x22,
0x13, 0xc4, 0xa1, 0x06, 0x25, 0xd4, 0xa4, 0xa2,
0x90, 0x6c, 0x62, 0xca, 0x70, 0x61, 0xb4, 0x08,
0x13, 0xb2, 0x45, 0xcb, 0x10, 0x31, 0xaa, 0x45,
0x8f, 0x4d, 0xa2, 0x8b, 0x88, 0xa0, 0x02, 0x03,
0x03, 0x25, 0xc8, 0x10, 0x49, 0x74, 0x26, 0x4a,
0x4a, 0xcd, 0x8a, 0x34, 0x95, 0x4c, 0x9d, 0x71,
0x74, 0x9c, 0xb9, 0x77, 0xae, 0xf7, 0xf5, 0x6f,
0xe5, 0xa0, 0x35, 0x11, 0x7e, 0xab, 0x73, 0xe0,
0xfb, 0x7e, 0x9c, 0x73, 0x38, 0x04, 0x11, 0x54,
0x5c, 0xd9, 0xd4, 0x4c, 0x29, 0x1c, 0x06, 0x25,
0x29, 0x20, 0x84, 0x98, 0x88, 0x31, 0xcb, 0x10,
0xfa, 0xb4, 0xff, 0x65, 0x6b, 0xe3, 0x9f, 0x5e,
0x76, 0x7d, 0x53, 0x54, 0xde, 0x94, 0xc1, 0x30,
0xa4, 0xef, 0x62, 0x6d, 0x65, 0x5a, 0xb9, 0xbd,
0x00, 0x71, 0x02, 0x0f, 0x55, 0x37, 0xe0, 0xf1,
0x05, 0x53, 0x7b, 0x7a, 0x3f, 0x5c, 0x21, 0x26,
0xe6, 0x2c, 0xa5, 0x7a, 0x49, 0x7f, 0x57, 0xeb,
0xd7, 0x88, 0x00, 0x96, 0x25, 0x6f, 0xef, 0xb5,
0xd4, 0x6f, 0xdf, 0x93, 0xb9, 0x63, 0x2c, 0x10,
0x52, 0x46, 0x67, 0x7d, 0x92, 0x12, 0x5a, 0x55,
0x59, 0x45, 0xd3, 0xa3, 0x6d, 0x25, 0xf9, 0x59,
0xe9, 0xe9, 0xc9, 0x7b, 0x5b, 0x6e, 0x3d, 0x76,
0x01, 0x88, 0x5f, 0xcb, 0x30, 0x6b, 0x45, 0x49,
0xd5, 0xd5, 0xdb, 0xf5, 0xe7, 0x8f, 0x96, 0x15,
0x1f, 0xcc, 0xf9, 0xac, 0xa8, 0xba, 0x9b, 0xb7,
0x98, 0x15, 0x00, 0x44, 0xa7, 0x20, 0xaa, 0x4e,
0x0d, 0xef, 0x4a, 0x68, 0x96, 0x8b, 0xe6, 0x10,
0xcd, 0x73, 0x3b, 0x75, 0x26, 0x25, 0x73, 0x72,
0xfc, 0x6d, 0x27, 0x00, 0x98, 0xc2, 0x24, 0x86,
0x3d, 0x57, 0x6e, 0x2f, 0x40, 0x20, 0xa4, 0x8e,
0xb1, 0x2c, 0x43, 0x2d, 0x66, 0xc6, 0x20, 0x84,
0x50, 0x50, 0x18, 0x9a, 0x6e, 0x28, 0x94, 0xc2,
0xe8, 0x1a, 0x9c, 0xec, 0x2e, 0x2a, 0xcc, 0x01,
0xc3, 0x72, 0xa7, 0xd6, 0x72, 0x61, 0xc0, 0xaa,
0x42, 0xe3, 0x05, 0x2b, 0x0f, 0x59, 0xd1, 0x57,
0x55, 0xcd, 0x48, 0x34, 0x33, 0xa6, 0x0b, 0x89,
0xb1, 0x9c, 0x73, 0x57, 0xb2, 0xe0, 0xc8, 0xdf,
0xbd, 0xd5, 0x01, 0x25, 0x90, 0x3a, 0xe5, 0x11,
0xfd, 0x3c, 0xcf, 0x21, 0x20, 0xa9, 0x5c, 0x6d,
0x5d, 0x83, 0x69, 0xc3, 0x0d, 0x08, 0x21, 0x44,
0xd1, 0x74, 0x48, 0xb2, 0x6a, 0x32, 0x0c, 0x2a,
0x26, 0x58, 0xa3, 0xe0, 0xf5, 0x4b, 0x2e, 0x51,
0x0a, 0x31, 0x2b, 0x41, 0x49, 0x1b, 0x9e, 0x96,
0x86, 0x15, 0x45, 0x37, 0xa9, 0xaa, 0xb1, 0x16,
0xe1, 0x01, 0x88, 0x61, 0x40, 0x0c, 0xcf, 0x4a,
0x5e, 0x5f, 0x20, 0x46, 0x94, 0x55, 0xcb, 0x8a,
0xa4, 0xfa, 0x33, 0x92, 0x63, 0x31, 0xfa, 0xc3,
0xf7, 0x5e, 0x54, 0x74, 0x3a, 0xb7, 0x24, 0x29,
0xee, 0x6f, 0x8b, 0x1e, 0xc1, 0x6a, 0x49, 0xf0,
0xfa, 0x83, 0x88, 0x13, 0x78, 0xb5, 0xa3, 0xad,
0x59, 0xdc, 0xb0, 0x82, 0x99, 0xd1, 0x06, 0x7a,
0xde, 0x0c, 0x83, 0x8f, 0x62, 0x73, 0x27, 0x7e,
0x2d, 0x8b, 0x00, 0xf0, 0xd3, 0x27, 0xea, 0x1f,
0x27, 0xbc, 0xfe, 0xde, 0xe1, 0x99, 0x85, 0x25,
0x51, 0x36, 0x57, 0xec, 0x4f, 0xab, 0x18, 0x72,
0x8d, 0xc1, 0xca, 0x61, 0xe2, 0xaf, 0x1b, 0x6c,
0x13, 0x42, 0xc7, 0x3b, 0xbb, 0xfa, 0xe5, 0x99,
0xe9, 0xf9, 0xec, 0xb4, 0x24, 0xeb, 0xa1, 0x6b,
0xed, 0x03, 0x37, 0xcf, 0x1c, 0xce, 0xba, 0xe4,
0xfe, 0x32, 0x1f, 0x62, 0x58, 0x92, 0xe8, 0xb4,
0x67, 0x55, 0xfb, 0x17, 0x97, 0x72, 0xdc, 0x83,
0x23, 0xaa, 0xc0, 0xfa, 0x4a, 0xc3, 0xab, 0xaf,
0xff, 0x83, 0x63, 0xa7, 0x1b, 0xab, 0x64, 0x2a,
0x3c, 0x2f, 0x2b, 0x2d, 0xb2, 0x14, 0x1e, 0xc8,
0x46, 0x34, 0xcf, 0x41, 0xd5, 0x75, 0xf8, 0x96,
0x45, 0x0c, 0xb9, 0xc6, 0xf1, 0xce, 0x35, 0xa2,
0xc5, 0x71, 0xd2, 0xe5, 0x27, 0xed, 0x37, 0x1e,
0x44, 0x04, 0x00, 0x40, 0x6d, 0x5d, 0x43, 0x62,
0x88, 0x6e, 0x71, 0x05, 0x64, 0xa4, 0x3b, 0x4e,
0x24, 0x31, 0x84, 0x00, 0x2c, 0x0b, 0x74, 0x75,
0xcf, 0x05, 0x19, 0xcd, 0xbf, 0xaf, 0xa3, 0xed,
0xce, 0x14, 0xfe, 0xa7, 0x9a, 0x1a, 0xbb, 0xd5,
0xe9, 0xb4, 0x51, 0xcf, 0x62, 0x1f, 0x15, 0x65,
0x17, 0xfd, 0x3e, 0xf9, 0x8c, 0x3a, 0x9d, 0x36,
0x1a, 0xc9, 0xcb, 0xfe, 0x83, 0xa1, 0x02, 0xc0,
0xfd, 0xbb, 0x0f, 0x91, 0x9d, 0x9b, 0x8d, 0xe9,
0xa9, 0x69, 0x6c, 0x5a, 0x4e, 0xa7, 0x8d, 0xce,
0xcc, 0xbe, 0x32, 0x02, 0xd2, 0x10, 0xfd, 0x34,
0xfa, 0xc2, 0xd8, 0xec, 0x04, 0x00, 0x50, 0x55,
0x7d, 0xf2, 0x7a, 0x8d, 0x20, 0xc4, 0x1f, 0x59,
0x58, 0x58, 0x78, 0x9d, 0x97, 0x17, 0xfb, 0x28,
0x92, 0xe9, 0x37, 0x56, 0x4c, 0x36, 0x5e, 0x7c,
0x8a, 0x1d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x49,
0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82};
/* dialog_information.png - 2022 bytes */
static const unsigned char dialog_information_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9,
0x43, 0xbb, 0x7f, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x07,
0x71, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xd5,
0x97, 0x5f, 0x4c, 0x1c, 0xd5, 0x17, 0xc7, 0xcf,
0x9d, 0x3b, 0x7f, 0x76, 0x87, 0x59, 0xd8, 0xff,
0x05, 0x8a, 0xa2, 0x82, 0x2d, 0x01, 0x6a, 0x11,
0x68, 0x42, 0x8a, 0x56, 0xb0, 0x16, 0xa3, 0xa2,
0x09, 0xc6, 0xc2, 0x43, 0xf5, 0xc1, 0xc4, 0x07,
0x35, 0x31, 0x8d, 0x51, 0x1f, 0x6c, 0xa2, 0x0f,
0x3e, 0x19, 0x23, 0xa9, 0x06, 0xa3, 0x26, 0xad,
0x25, 0x0a, 0x89, 0x69, 0x0d, 0x31, 0x56, 0xab,
0x8d, 0x0f, 0xd5, 0x8a, 0x69, 0x00, 0x53, 0x28,
0x74, 0xa9, 0x29, 0x8d, 0x2b, 0xff, 0x97, 0x5d,
0xf6, 0xff, 0xcc, 0xce, 0xce, 0xce, 0xcc, 0x9d,
0xeb, 0xc3, 0xb8, 0xf1, 0xd7, 0xfc, 0x7e, 0x09,
0x14, 0xf1, 0x97, 0x78, 0x1e, 0xe6, 0x9b, 0xc9,
0xdc, 0xb9, 0xf7, 0x7c, 0xee, 0x39, 0xe7, 0xde,
0x1c, 0x80, 0x7f, 0xb9, 0xa1, 0xad, 0xfe, 0xf8,
0xec, 0xb3, 0xcf, 0x3d, 0xf7, 0xf2, 0xcb, 0x2c,
0x0b, 0x00, 0x80, 0xd0, 0xf3, 0xcf, 0x23, 0x84,
0x31, 0xcf, 0x3f, 0xfe, 0x38, 0xa5, 0x94, 0x52,
0xda, 0xd8, 0x08, 0x60, 0x59, 0x86, 0x11, 0x0c,
0x02, 0x30, 0x0c, 0xc7, 0xc5, 0x62, 0x08, 0x21,
0x84, 0x50, 0x28, 0x44, 0x29, 0x21, 0xba, 0xfe,
0xf5, 0xd7, 0x00, 0x00, 0x94, 0x7e, 0xfc, 0xf1,
0xe0, 0xe0, 0xc9, 0x93, 0xc7, 0x8f, 0x9b, 0xe6,
0xff, 0x0d, 0xc0, 0x76, 0xfc, 0xfe, 0xfb, 0x6d,
0xc7, 0x3e, 0xfb, 0xec, 0xc0, 0x81, 0xce, 0xce,
0x83, 0x07, 0x2b, 0x2a, 0x6a, 0x6b, 0x77, 0xef,
0x6e, 0x68, 0x10, 0x04, 0x49, 0x92, 0x24, 0x51,
0x04, 0x10, 0x04, 0x9e, 0xe7, 0x38, 0x00, 0x45,
0xc9, 0xe5, 0x34, 0x0d, 0x20, 0x1e, 0x4f, 0x26,
0x33, 0x19, 0x80, 0xdf, 0x7f, 0xbf, 0x71, 0xe3,
0xda, 0x35, 0x4d, 0x9b, 0x9c, 0x9c, 0x98, 0xb8,
0x74, 0x29, 0x1a, 0xb5, 0x2c, 0xd3, 0x2c, 0x14,
0x9e, 0x79, 0xc6, 0x06, 0x19, 0x1d, 0xfd, 0xc7,
0x00, 0x6c, 0xc7, 0x1f, 0x78, 0xc0, 0xef, 0x0f,
0x06, 0xcb, 0xcb, 0xbf, 0xfd, 0xf6, 0xd0, 0xa1,
0xee, 0xee, 0xbe, 0x3e, 0x51, 0x34, 0x0c, 0x8c,
0x1d, 0x0e, 0x80, 0x50, 0x68, 0x61, 0x21, 0x9d,
0x06, 0x90, 0x24, 0xa7, 0x13, 0x00, 0x80, 0x10,
0x4a, 0x09, 0xb1, 0xac, 0x42, 0xc1, 0x30, 0x4c,
0xd3, 0x34, 0x2d, 0xcb, 0xb2, 0x10, 0xa2, 0xb4,
0xae, 0xae, 0xaa, 0xca, 0xe3, 0x61, 0xd9, 0xaa,
0xaa, 0xb2, 0x32, 0x9e, 0xc7, 0x78, 0x64, 0xe4,
0xf4, 0xe9, 0xe1, 0xe1, 0x7c, 0x3e, 0x12, 0x59,
0x59, 0x59, 0x5e, 0x7e, 0xe4, 0x11, 0x1b, 0xe4,
0xe2, 0xc5, 0x6d, 0x03, 0xb0, 0x1d, 0xaf, 0xa8,
0x00, 0x60, 0x18, 0x96, 0x0d, 0x85, 0x5e, 0x78,
0xe1, 0xe8, 0xd1, 0xd7, 0x5e, 0xf3, 0x7a, 0xe7,
0xe6, 0x22, 0x11, 0x5d, 0x07, 0x98, 0x9f, 0x5f,
0x5f, 0x4f, 0x26, 0x01, 0x9a, 0x9b, 0x6b, 0x6b,
0x3d, 0x1e, 0xcb, 0x92, 0x24, 0x87, 0x83, 0x65,
0x09, 0xa1, 0x14, 0x80, 0x52, 0xd3, 0xa4, 0x94,
0x52, 0x00, 0xcb, 0x8a, 0xc7, 0xb3, 0xd9, 0x42,
0x41, 0xd3, 0x42, 0xa1, 0x85, 0x85, 0x54, 0x4a,
0xd7, 0x7d, 0x3e, 0x97, 0xcb, 0xe1, 0x90, 0xa4,
0x83, 0x07, 0x1b, 0x1b, 0x2b, 0x2a, 0x24, 0x69,
0x60, 0xe0, 0xbd, 0xf7, 0xfa, 0xfb, 0xd3, 0x69,
0x4d, 0x53, 0xd5, 0x5c, 0xae, 0xa1, 0xc1, 0x06,
0x89, 0x44, 0x36, 0xf2, 0x8f, 0xd9, 0x04, 0x23,
0x62, 0x98, 0xa3, 0x47, 0x7b, 0x7a, 0x0e, 0x1f,
0x3e, 0x72, 0xa4, 0xac, 0x2c, 0x1e, 0x57, 0x14,
0x4a, 0x01, 0x42, 0xa1, 0xc5, 0xc5, 0xf5, 0x75,
0x80, 0xce, 0xce, 0x7b, 0xee, 0x09, 0x06, 0x09,
0x09, 0x04, 0xca, 0xca, 0x04, 0x41, 0xd3, 0x4a,
0x4a, 0x1c, 0x0e, 0x96, 0xcd, 0xe5, 0x24, 0xc9,
0xe9, 0xe4, 0xf9, 0x5c, 0xce, 0xe5, 0x72, 0x3a,
0x39, 0x4e, 0x96, 0xab, 0xaa, 0xfc, 0x7e, 0x51,
0x2c, 0x14, 0xbc, 0x5e, 0x97, 0x8b, 0xe7, 0x13,
0x89, 0x44, 0x22, 0x9b, 0xcd, 0xe7, 0x15, 0x65,
0x76, 0x76, 0x79, 0x39, 0x93, 0x51, 0xd5, 0x87,
0x1f, 0xee, 0xee, 0xee, 0xe9, 0x91, 0xa4, 0xe2,
0x7a, 0x9b, 0x8d, 0xc0, 0x86, 0x00, 0x08, 0x31,
0x0c, 0xc7, 0x75, 0x75, 0xb9, 0xdd, 0x7e, 0x7f,
0x30, 0x88, 0xf1, 0xf4, 0xf4, 0xfc, 0x7c, 0x3a,
0x0d, 0x50, 0x55, 0x15, 0x0c, 0xf2, 0xbc, 0x61,
0x60, 0x8c, 0x31, 0x42, 0x9a, 0x66, 0x17, 0x69,
0x3e, 0xcf, 0x30, 0x0c, 0x83, 0x50, 0x2e, 0x87,
0x31, 0x42, 0x08, 0xc9, 0xb2, 0xfd, 0x3d, 0x9b,
0xe5, 0x38, 0x96, 0x65, 0x98, 0x6c, 0xb6, 0xa4,
0x44, 0x10, 0x58, 0x36, 0x1e, 0x77, 0xb9, 0x44,
0x91, 0xe3, 0xd6, 0xd7, 0xd7, 0xd6, 0xd2, 0x69,
0x55, 0xcd, 0x64, 0x6a, 0x6a, 0xee, 0xbc, 0xb3,
0xba, 0x9a, 0x52, 0x84, 0x30, 0x66, 0xd9, 0x43,
0x87, 0x36, 0x0b, 0xc0, 0x6e, 0x34, 0x80, 0x52,
0xcb, 0x32, 0xcd, 0xdd, 0xbb, 0x1d, 0x0e, 0x87,
0xc3, 0xe1, 0x00, 0x88, 0xc5, 0x32, 0x99, 0xc5,
0x45, 0x00, 0x86, 0x61, 0x18, 0xa7, 0x53, 0x96,
0xed, 0x51, 0x96, 0x85, 0x10, 0x42, 0x00, 0xaa,
0x6a, 0x03, 0xa8, 0xaa, 0x0d, 0x50, 0x04, 0xd3,
0xf5, 0x74, 0x5a, 0x51, 0x0a, 0x85, 0x44, 0x42,
0x92, 0x9c, 0x4e, 0x8e, 0x53, 0x14, 0xcb, 0xa2,
0x14, 0xc0, 0x34, 0xb3, 0x59, 0x55, 0xd5, 0x75,
0x86, 0x09, 0x04, 0x3c, 0x9e, 0xd2, 0xd2, 0x60,
0x90, 0x52, 0x42, 0x4c, 0xb3, 0xae, 0x6e, 0xdb,
0x00, 0xec, 0xdc, 0x8f, 0x44, 0x52, 0xa9, 0x6c,
0x56, 0x96, 0x6b, 0x6a, 0x4a, 0x4b, 0x45, 0x91,
0xe7, 0x55, 0xd5, 0x34, 0x2d, 0x8b, 0xd2, 0x4c,
0x26, 0x1a, 0x4d, 0xa7, 0xf3, 0x79, 0x4d, 0x2b,
0x2f, 0xf7, 0x78, 0x44, 0xd1, 0x30, 0x38, 0x0e,
0x63, 0x84, 0x54, 0x95, 0x10, 0x4a, 0x29, 0x4d,
0xa7, 0x15, 0x45, 0x55, 0x0d, 0x23, 0x12, 0xd1,
0x75, 0xd3, 0x24, 0x44, 0x96, 0x5d, 0x2e, 0xa7,
0x93, 0xe7, 0x79, 0xde, 0x34, 0x09, 0xa1, 0x14,
0x21, 0x86, 0x01, 0x40, 0xc8, 0xe7, 0xcb, 0xe5,
0xf2, 0x79, 0x4d, 0x2b, 0x14, 0x18, 0x06, 0x63,
0x8c, 0x57, 0x57, 0xb7, 0x2d, 0x85, 0xec, 0x28,
0x8c, 0x8e, 0x26, 0x93, 0x89, 0x44, 0x2c, 0x46,
0xe9, 0x8e, 0x1d, 0x6e, 0xb7, 0xd3, 0xa9, 0xeb,
0x0e, 0x07, 0xc7, 0x61, 0x9c, 0xcb, 0x35, 0x37,
0xd7, 0xd4, 0xf8, 0xfd, 0x5e, 0x6f, 0x20, 0x50,
0x56, 0xe6, 0x70, 0xb0, 0x6c, 0x32, 0xa9, 0x28,
0x85, 0xc2, 0xf5, 0xeb, 0xa9, 0x94, 0xa2, 0xe8,
0xfa, 0x95, 0x2b, 0xc5, 0x94, 0x69, 0x69, 0xa9,
0xad, 0xf5, 0xfb, 0x9b, 0x9a, 0xee, 0xbb, 0xaf,
0xbe, 0x7e, 0xc7, 0x8e, 0x03, 0x07, 0x34, 0x4d,
0xd7, 0x09, 0xc1, 0x78, 0xe7, 0x4e, 0xbf, 0x5f,
0x92, 0x30, 0x5e, 0x5b, 0x8b, 0x46, 0x63, 0x31,
0x4d, 0xb3, 0x57, 0x1c, 0x1b, 0xdb, 0xc6, 0x08,
0x10, 0xa2, 0xeb, 0xc7, 0x8f, 0x4f, 0x4f, 0x5f,
0xba, 0xf4, 0xc3, 0x0f, 0x7d, 0x7d, 0x8f, 0x3e,
0xda, 0xdb, 0xfb, 0xf4, 0xd3, 0x2c, 0x7b, 0xed,
0xda, 0xd2, 0x52, 0x26, 0xa3, 0xeb, 0x18, 0x33,
0x0c, 0x42, 0x84, 0x04, 0x83, 0x6e, 0xb7, 0x28,
0x56, 0x57, 0x57, 0x57, 0x07, 0x02, 0x92, 0x54,
0x5b, 0x0b, 0x80, 0x10, 0x40, 0xf1, 0x69, 0x59,
0x76, 0xca, 0xe4, 0xf3, 0xba, 0x6e, 0x18, 0x84,
0x2c, 0x2c, 0xdc, 0x7e, 0x7b, 0x20, 0x20, 0x49,
0x6b, 0x6b, 0x4d, 0x4d, 0x77, 0xdc, 0x11, 0x0c,
0x3e, 0xf4, 0xd0, 0xc0, 0xc0, 0xc0, 0xc0, 0x07,
0x1f, 0x58, 0x96, 0x65, 0x99, 0xa6, 0x61, 0x7c,
0xf4, 0xd1, 0x66, 0x01, 0xf0, 0x46, 0x03, 0xae,
0x5c, 0x99, 0x9c, 0x1c, 0x1b, 0x8b, 0x46, 0xef,
0xbe, 0xbb, 0xae, 0xae, 0xa9, 0x29, 0x18, 0xc4,
0x18, 0x80, 0xd2, 0xbd, 0x7b, 0xdb, 0xda, 0x5a,
0x5a, 0x1a, 0x1b, 0x59, 0x36, 0x95, 0x52, 0x94,
0x42, 0x61, 0x61, 0xc1, 0xe7, 0x2b, 0x2d, 0x15,
0x04, 0x51, 0x9c, 0x9e, 0x0e, 0x87, 0x93, 0xc9,
0xfe, 0x7e, 0xfb, 0xec, 0xff, 0xfe, 0x7b, 0x59,
0xd6, 0x34, 0xc3, 0x18, 0x1a, 0x2a, 0x2d, 0x15,
0x45, 0x8e, 0x6b, 0x6d, 0x55, 0x14, 0x4d, 0x33,
0xcd, 0x8b, 0x17, 0x45, 0x91, 0xe3, 0x1c, 0x8e,
0xee, 0xee, 0x89, 0x89, 0xf1, 0xf1, 0xb1, 0x31,
0x5d, 0xbf, 0x7c, 0x79, 0x72, 0x72, 0x72, 0xf2,
0xec, 0xd9, 0x53, 0xa7, 0x4e, 0x9c, 0xe8, 0xef,
0xff, 0xf0, 0xc3, 0x6d, 0x4d, 0x21, 0xdb, 0x2c,
0xcb, 0x34, 0x5f, 0x7d, 0x75, 0x72, 0xf2, 0x97,
0x5f, 0xc6, 0xc7, 0x6f, 0xdc, 0x48, 0x26, 0xa3,
0xd1, 0x95, 0x15, 0xa7, 0x93, 0x10, 0xcb, 0x42,
0xc8, 0x34, 0x55, 0xb5, 0x50, 0x20, 0x64, 0x75,
0x55, 0x92, 0x9c, 0x4e, 0x96, 0x45, 0xc8, 0xde,
0xfb, 0xd5, 0x55, 0xb7, 0x5b, 0x14, 0x79, 0xde,
0x30, 0xec, 0x39, 0x42, 0x21, 0x00, 0x4a, 0x59,
0xb6, 0xb2, 0x32, 0x95, 0x8a, 0xc7, 0x23, 0x11,
0x5d, 0x3f, 0x77, 0xee, 0xdc, 0xb9, 0x6f, 0xbe,
0x59, 0x5b, 0xb3, 0x2c, 0x42, 0x4c, 0xf3, 0xa5,
0x97, 0x36, 0xef, 0xcf, 0x2d, 0x02, 0xd8, 0x17,
0x8b, 0x61, 0xd8, 0xa7, 0x44, 0x6f, 0xef, 0x57,
0x5f, 0x8d, 0x8c, 0x8c, 0x8c, 0x70, 0x9c, 0xdf,
0xef, 0x72, 0x39, 0x9d, 0xe5, 0xe5, 0x33, 0x33,
0xbf, 0xfe, 0xfa, 0xdb, 0x6f, 0xe1, 0x70, 0x36,
0x9b, 0x4c, 0xae, 0xaf, 0x7b, 0xbd, 0x76, 0x6a,
0x99, 0xe6, 0xe2, 0xe2, 0xc2, 0x42, 0x38, 0xec,
0xf3, 0x85, 0x42, 0xa1, 0xd0, 0xec, 0xec, 0x8f,
0x3f, 0x62, 0x8c, 0x10, 0xc3, 0xec, 0xdf, 0x3f,
0x3c, 0x3c, 0x34, 0x34, 0x3c, 0xec, 0xf5, 0x5a,
0x16, 0x21, 0x84, 0xf4, 0xf5, 0xd9, 0xf3, 0x17,
0x6b, 0xe0, 0x1f, 0x00, 0xb8, 0x19, 0x24, 0x1c,
0x56, 0xd5, 0x7c, 0x3e, 0x9f, 0x8f, 0x44, 0x56,
0x57, 0x57, 0x57, 0x97, 0x96, 0x4a, 0x4a, 0x30,
0x06, 0x50, 0xd5, 0x07, 0x1f, 0xbc, 0x7c, 0x79,
0x7c, 0xfc, 0xbb, 0xef, 0x5e, 0x7c, 0x51, 0x51,
0xd2, 0xe9, 0xa9, 0xa9, 0xcf, 0x3f, 0x9f, 0x9a,
0x9a, 0x9a, 0xba, 0x70, 0xe1, 0xfd, 0xf7, 0x45,
0xb1, 0xa4, 0x84, 0x65, 0x5f, 0x7f, 0x5d, 0x96,
0x15, 0x25, 0x95, 0xd2, 0x34, 0x59, 0x96, 0x65,
0x59, 0x8e, 0x44, 0x8a, 0xf3, 0xdd, 0xaa, 0x1f,
0x5b, 0x06, 0x28, 0x9a, 0x5d, 0x6c, 0xaf, 0xbc,
0x72, 0xf6, 0xec, 0xc8, 0xc8, 0xe9, 0xd3, 0x95,
0x95, 0x0c, 0x43, 0x29, 0xc6, 0x3e, 0x5f, 0x57,
0x57, 0x57, 0xd7, 0x93, 0x4f, 0xf2, 0xbc, 0xcf,
0xe7, 0xf1, 0xec, 0xdd, 0xcb, 0x30, 0x1d, 0x1d,
0x9d, 0x9d, 0x4f, 0x3d, 0xe5, 0x70, 0x10, 0x42,
0x08, 0xc7, 0xed, 0xdc, 0x79, 0xea, 0xd4, 0xe0,
0xe0, 0xa7, 0x9f, 0xde, 0x76, 0x1b, 0x21, 0x84,
0x10, 0xf2, 0xc6, 0x1b, 0x5b, 0x5d, 0xbf, 0x68,
0x9b, 0x38, 0x85, 0xfe, 0xb7, 0xcd, 0xce, 0x2e,
0x2f, 0x0b, 0x42, 0x3c, 0x5e, 0x5e, 0xae, 0x28,
0x89, 0x04, 0x42, 0xd7, 0xaf, 0xcf, 0xcd, 0x5d,
0xb8, 0x00, 0xa0, 0xaa, 0xb2, 0xac, 0xeb, 0xff,
0xb1, 0x43, 0x0c, 0xc3, 0x00, 0x00, 0xac, 0xad,
0xc5, 0x62, 0x00, 0x00, 0x2b, 0x2b, 0x2b, 0x2b,
0xf3, 0xf3, 0x0c, 0x33, 0x38, 0x78, 0xf2, 0xe4,
0x89, 0x13, 0x5f, 0x7e, 0xf9, 0x77, 0x01, 0xb6,
0x1c, 0x81, 0x89, 0x89, 0xf3, 0xe7, 0xdf, 0x7e,
0x7b, 0x7c, 0xbc, 0xbd, 0xfd, 0xde, 0x7b, 0x0b,
0x05, 0x00, 0x97, 0x4b, 0x10, 0x42, 0x21, 0x4a,
0xdb, 0xdb, 0xdb, 0xdb, 0xbb, 0xbb, 0x01, 0x3a,
0x3a, 0x3a, 0x3a, 0x1e, 0x7b, 0x0c, 0xa0, 0xbe,
0xbe, 0xbe, 0x7e, 0xcf, 0x1e, 0x00, 0x9f, 0xcf,
0xed, 0xc6, 0x18, 0xa0, 0xa6, 0xa6, 0xba, 0x1a,
0x6d, 0xb9, 0x0b, 0xf9, 0x6f, 0xdb, 0xf0, 0x18,
0xdd, 0xc8, 0x2a, 0x2b, 0x2b, 0x2b, 0x3d, 0x1e,
0x55, 0x15, 0x04, 0x41, 0x08, 0x04, 0xba, 0xba,
0x58, 0x16, 0xe3, 0xa5, 0x25, 0x00, 0x9e, 0x17,
0x04, 0x9e, 0x07, 0xc8, 0xe5, 0x14, 0x25, 0x93,
0x01, 0xf8, 0xf9, 0xe7, 0xd1, 0xd1, 0x99, 0x19,
0x80, 0xab, 0x57, 0xaf, 0x5e, 0x0d, 0x87, 0xdf,
0x7c, 0x73, 0x66, 0x66, 0x66, 0x26, 0x1c, 0xfe,
0xe9, 0xa7, 0xbf, 0xbb, 0xfe, 0x96, 0x53, 0xe8,
0x4f, 0x7e, 0xdc, 0xd0, 0xd0, 0xd0, 0x70, 0xd7,
0x5d, 0xef, 0xbc, 0xd3, 0xd6, 0xd6, 0xd6, 0x56,
0x5e, 0x0e, 0xd0, 0xd4, 0xd4, 0xdc, 0xfc, 0xc4,
0x13, 0x7f, 0x01, 0x70, 0x1c, 0xc7, 0xc5, 0xe3,
0x00, 0x2d, 0x2d, 0x2d, 0x2d, 0x9a, 0x46, 0xa9,
0xfd, 0xdf, 0x5b, 0x6f, 0xd9, 0xfa, 0xee, 0xbb,
0xb6, 0x16, 0x93, 0x8e, 0x90, 0x5b, 0xf5, 0xe0,
0x16, 0x83, 0x29, 0x08, 0xb6, 0x8a, 0x62, 0x51,
0x5b, 0x5b, 0x5b, 0x5b, 0x77, 0xed, 0xda, 0xb3,
0xa7, 0xa7, 0xa7, 0xa7, 0x67, 0xff, 0xfe, 0xa1,
0xa1, 0xe9, 0xe9, 0xe9, 0xe9, 0x5c, 0xce, 0xef,
0xf7, 0xfb, 0x03, 0x81, 0xb2, 0x32, 0x80, 0x58,
0x2c, 0x1a, 0x4d, 0x24, 0x14, 0x65, 0xdf, 0xbe,
0x7d, 0xfb, 0x02, 0x01, 0x49, 0x3a, 0x76, 0xec,
0xd8, 0xb1, 0x4f, 0x3e, 0x69, 0x6b, 0xb3, 0x8b,
0x38, 0x91, 0xb0, 0xe7, 0xc9, 0xe7, 0x6d, 0x55,
0x55, 0x5b, 0x73, 0xb9, 0x9b, 0xc1, 0xb6, 0x0d,
0xa0, 0xa4, 0xe4, 0x66, 0x2d, 0x82, 0x78, 0xbd,
0xb6, 0x06, 0x02, 0xbd, 0xbd, 0xbd, 0xbd, 0x87,
0x0f, 0x9f, 0x3f, 0x9f, 0x4a, 0xa5, 0x52, 0xe9,
0xf4, 0xdc, 0x9c, 0xc7, 0xe3, 0xf1, 0xb8, 0xdd,
0xbb, 0x76, 0x9d, 0x39, 0x73, 0xe6, 0xcc, 0x17,
0x5f, 0x1c, 0x39, 0x62, 0x8f, 0x8b, 0xc7, 0x6d,
0x5d, 0x5f, 0xb7, 0x35, 0x95, 0xba, 0x19, 0x20,
0x99, 0xb4, 0x75, 0xe3, 0x5e, 0x79, 0x8b, 0xe5,
0xc4, 0xfc, 0x59, 0xfc, 0x3c, 0x6f, 0xab, 0xdd,
0x46, 0xfe, 0xf5, 0xce, 0x71, 0x37, 0x6b, 0x31,
0x35, 0x8a, 0x0e, 0x15, 0x6f, 0xe6, 0xe2, 0xce,
0x17, 0x2f, 0xb0, 0xad, 0x37, 0xf7, 0xff, 0x5a,
0xfb, 0x03, 0x24, 0x50, 0xc3, 0x51, 0x78, 0x54,
0xe6, 0x96, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45,
0x4e, 0x44, 0xae, 0x42, 0x60, 0x82};

View File

@@ -1,265 +0,0 @@
/* dialog_warning.png - 603 bytes */
static const unsigned char dialog_warning_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd6, 0x02, 0x10, 0x0e, 0x27, 0x2d, 0xb7,
0xee, 0x92, 0x77, 0x00, 0x00, 0x01, 0xe8, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0x95, 0x93, 0xc1,
0x4a, 0x1b, 0x61, 0x14, 0x85, 0xbf, 0x3b, 0x99,
0xce, 0x34, 0x89, 0x33, 0x83, 0x10, 0x99, 0x4a,
0xed, 0x46, 0x43, 0xc4, 0x20, 0x86, 0x41, 0x4a,
0x9a, 0x30, 0x04, 0x82, 0x48, 0x63, 0x83, 0x74,
0x17, 0xba, 0x10, 0x22, 0x5d, 0x74, 0xe7, 0x30,
0x1b, 0xf1, 0x09, 0x5c, 0x1b, 0x74, 0x65, 0xc0,
0x42, 0xc0, 0x45, 0x49, 0x56, 0x05, 0xad, 0xaf,
0x50, 0x08, 0x3e, 0x80, 0x50, 0x5c, 0x04, 0x0a,
0x85, 0x16, 0x5c, 0xd4, 0x40, 0x49, 0x31, 0x7f,
0x37, 0xd6, 0x12, 0xc8, 0xb4, 0xf6, 0xc0, 0xbd,
0x8b, 0xcb, 0xe1, 0x3b, 0x67, 0x73, 0x85, 0x08,
0x85, 0xf0, 0xc8, 0x80, 0xb7, 0x00, 0x03, 0x78,
0xdd, 0x80, 0x2f, 0xe3, 0x7c, 0x7a, 0x14, 0xc0,
0x84, 0xa3, 0x79, 0x78, 0x0e, 0x70, 0x01, 0x47,
0x40, 0x75, 0x9c, 0x4f, 0x8b, 0x48, 0xf7, 0x52,
0xb0, 0x5a, 0x58, 0x58, 0xd0, 0x9e, 0xa4, 0x52,
0x5a, 0x0a, 0x56, 0x43, 0xf0, 0xee, 0x0d, 0x30,
0x61, 0x2f, 0x0d, 0x7a, 0x62, 0x77, 0x97, 0x4c,
0xb3, 0x49, 0x1a, 0x74, 0x13, 0xf6, 0xee, 0x05,
0x08, 0xa1, 0x38, 0x05, 0xc5, 0x6c, 0xb9, 0x2c,
0x7a, 0x3e, 0x8f, 0x9e, 0xcf, 0x93, 0x2d, 0x97,
0x65, 0x0a, 0x8a, 0x21, 0x14, 0xf9, 0x97, 0x76,
0xa0, 0x7b, 0x02, 0xc3, 0x5e, 0xa7, 0xa3, 0x3c,
0xcf, 0x53, 0x9e, 0xe7, 0xa9, 0x5e, 0xa7, 0xa3,
0x4e, 0x60, 0xb8, 0x03, 0xdd, 0xbf, 0x36, 0x08,
0x61, 0xc5, 0x85, 0xa5, 0x8c, 0xef, 0x8b, 0xe1,
0xfb, 0x38, 0x8e, 0x83, 0xe3, 0x38, 0x18, 0xbe,
0x4f, 0xc6, 0xf7, 0xc5, 0x85, 0xa5, 0x10, 0x56,
0x22, 0x01, 0x26, 0xec, 0x67, 0xc1, 0x48, 0x04,
0x01, 0xa2, 0x69, 0x58, 0x96, 0x85, 0x65, 0x59,
0x88, 0xa6, 0x91, 0x08, 0x02, 0xb2, 0x60, 0x98,
0xb0, 0x3f, 0x16, 0x10, 0xc2, 0xfa, 0x34, 0xa4,
0xe7, 0x0a, 0x05, 0x8c, 0x52, 0x09, 0x11, 0xc1,
0xb6, 0x6d, 0x6c, 0xdb, 0x46, 0x44, 0x30, 0x4a,
0x25, 0xe6, 0x0a, 0x05, 0xa6, 0x21, 0x1d, 0xc2,
0xfa, 0x08, 0x20, 0x04, 0x31, 0xa0, 0xb1, 0x78,
0x9b, 0xae, 0xe9, 0x3a, 0x22, 0xf2, 0xa7, 0x81,
0x08, 0x9a, 0xae, 0x93, 0x08, 0x02, 0x16, 0xc1,
0x30, 0xa0, 0x11, 0x82, 0xc0, 0xed, 0x0a, 0xe1,
0xd5, 0x2c, 0xb4, 0x5e, 0x2c, 0x2f, 0x1b, 0x93,
0x67, 0x67, 0x10, 0x8b, 0xa1, 0x94, 0xa2, 0xdf,
0xef, 0x03, 0x90, 0x4c, 0x26, 0x11, 0x11, 0xb8,
0xb9, 0xe1, 0x6a, 0x6d, 0x8d, 0x0f, 0xe7, 0xe7,
0x83, 0x4b, 0xa8, 0x37, 0xe0, 0x9d, 0x84, 0x10,
0x7b, 0x0c, 0x57, 0x4f, 0xc1, 0x9a, 0x3f, 0x3e,
0xe6, 0x61, 0xb5, 0x8a, 0x52, 0x0a, 0xa5, 0x14,
0xb5, 0x5a, 0x0d, 0x80, 0x76, 0xbb, 0x8d, 0x88,
0x20, 0x22, 0xfc, 0x38, 0x3d, 0xe5, 0x62, 0x63,
0x83, 0x2e, 0x7c, 0xff, 0x0c, 0x93, 0x9a, 0xc0,
0x66, 0x1c, 0xcc, 0x99, 0x5c, 0x8e, 0x78, 0xa5,
0x72, 0x67, 0x14, 0x11, 0x5c, 0xd7, 0xc5, 0x75,
0xdd, 0x91, 0x5b, 0xbc, 0x52, 0x61, 0x26, 0x97,
0x23, 0x0e, 0xa6, 0xc0, 0xa6, 0x6c, 0xc3, 0xd7,
0x97, 0x90, 0x9a, 0x3d, 0x38, 0x60, 0xa2, 0x5e,
0xbf, 0x4b, 0xff, 0x3d, 0xc0, 0x08, 0x40, 0x44,
0xb8, 0x6e, 0xb5, 0xb8, 0xdc, 0xda, 0xe2, 0x3d,
0x7c, 0x93, 0x43, 0x18, 0x3e, 0x03, 0x79, 0xc0,
0xff, 0xe9, 0x27, 0xf0, 0x11, 0x94, 0xfe, 0x09,
0x0e, 0x07, 0xf0, 0x66, 0x22, 0xe2, 0x2f, 0xa2,
0x74, 0x0d, 0xc3, 0x1e, 0x34, 0x7f, 0x01, 0x97,
0xde, 0x7d, 0x08, 0x1c, 0xb4, 0xe1, 0x13, 0x00,
0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae,
0x42, 0x60, 0x82};
/* dialog_warning.png - 1456 bytes */
static const unsigned char dialog_warning_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x05,
0x3b, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xed,
0x57, 0xcd, 0x4b, 0x54, 0x5d, 0x1c, 0x7e, 0xce,
0x39, 0xf7, 0xde, 0x99, 0x3b, 0xde, 0xf9, 0xf6,
0x6b, 0x66, 0xd4, 0x66, 0x98, 0x3b, 0x63, 0x3a,
0xca, 0x54, 0x33, 0xa1, 0x92, 0xd0, 0x62, 0x54,
0x0a, 0x84, 0xd2, 0x66, 0x23, 0xe8, 0x26, 0x84,
0xc0, 0x8d, 0x8b, 0xc0, 0x45, 0x86, 0x59, 0xb8,
0x91, 0xfa, 0x0b, 0x5a, 0xb7, 0x0a, 0x42, 0x21,
0xdb, 0x04, 0x12, 0x48, 0x2d, 0x14, 0xa2, 0x31,
0xd2, 0x42, 0xb2, 0x50, 0x98, 0x04, 0x1d, 0x50,
0x52, 0xc7, 0x99, 0x1c, 0xe7, 0xbe, 0x8b, 0xd3,
0xc5, 0xf7, 0xf5, 0xa3, 0x2f, 0xf3, 0xa5, 0x17,
0xde, 0xdf, 0xe6, 0x81, 0x73, 0xcf, 0x99, 0xdf,
0xf3, 0xfc, 0x3e, 0xce, 0xf9, 0x0d, 0xf0, 0xbf,
0x1d, 0x6c, 0x6d, 0x6d, 0x00, 0xc0, 0xd8, 0x71,
0xfb, 0xa1, 0xc7, 0x43, 0xbc, 0xa1, 0xa1, 0xa6,
0x06, 0x00, 0x52, 0xa9, 0xc1, 0x41, 0x4a, 0x29,
0x5d, 0x5c, 0xe4, 0xeb, 0x7e, 0xff, 0x1f, 0x2b,
0x80, 0x13, 0x54, 0x94, 0xaa, 0x2a, 0x00, 0x78,
0xf6, 0xec, 0xcc, 0x99, 0x68, 0x34, 0x1a, 0xb5,
0xd9, 0x2a, 0x2a, 0x42, 0xa1, 0x50, 0xc8, 0xe3,
0xa9, 0xad, 0x05, 0x80, 0x17, 0x2f, 0xfe, 0x58,
0x01, 0xbc, 0x58, 0xfa, 0xfa, 0x2c, 0x16, 0xaf,
0xd7, 0xeb, 0xcd, 0xe7, 0xfd, 0x7e, 0xa3, 0xd1,
0x68, 0x04, 0xa2, 0x51, 0x97, 0xcb, 0xe5, 0xa2,
0x54, 0x92, 0x24, 0x49, 0x92, 0x1c, 0x0e, 0x2e,
0xf4, 0xd2, 0xa5, 0xdf, 0xe6, 0xf7, 0xa8, 0x3f,
0xc0, 0x09, 0x39, 0x9d, 0x55, 0x55, 0x84, 0x10,
0x32, 0x32, 0xd2, 0xd2, 0x12, 0x8d, 0x46, 0xa3,
0x46, 0x23, 0x21, 0xd3, 0xd3, 0xd3, 0xd3, 0x00,
0xb0, 0xb9, 0xb9, 0xb9, 0x09, 0x58, 0xad, 0xaa,
0xaa, 0xaa, 0x8c, 0x65, 0xb3, 0xc9, 0x64, 0x32,
0x79, 0xf1, 0xa2, 0xd3, 0x09, 0x00, 0x77, 0xef,
0xbe, 0x7b, 0x07, 0x00, 0x9a, 0xf6, 0xab, 0xfe,
0x8f, 0x9c, 0x01, 0x51, 0x04, 0x80, 0x81, 0x81,
0xc2, 0x42, 0x9f, 0xcf, 0xe7, 0xd3, 0x34, 0x59,
0x5e, 0x5b, 0x5b, 0x5b, 0x03, 0x04, 0xa1, 0xb1,
0xb1, 0xb1, 0x11, 0xa0, 0xb4, 0xbe, 0xbe, 0xbe,
0x1e, 0xf0, 0x78, 0x14, 0x45, 0x51, 0x00, 0xb3,
0x59, 0x96, 0x65, 0x59, 0x96, 0x09, 0x01, 0x80,
0xab, 0x57, 0x8f, 0xea, 0x9f, 0x1c, 0x2d, 0xf2,
0x1e, 0x4f, 0x75, 0x35, 0x21, 0x84, 0x7c, 0xfc,
0xd8, 0xda, 0x1a, 0x8b, 0xc5, 0x62, 0xa2, 0x28,
0x49, 0x89, 0x44, 0x22, 0x01, 0x98, 0xcd, 0xa3,
0xa3, 0xa3, 0xa3, 0x00, 0x20, 0x49, 0x92, 0x04,
0x6c, 0x6c, 0x74, 0x74, 0x74, 0x74, 0x00, 0xeb,
0xeb, 0x1e, 0x8f, 0xc7, 0x03, 0x3c, 0x7d, 0x3a,
0x31, 0x31, 0x31, 0xb1, 0xb5, 0x35, 0x3b, 0xcb,
0x33, 0x38, 0x32, 0x02, 0x00, 0x5b, 0x5b, 0xff,
0x5a, 0x06, 0x4e, 0x9f, 0x06, 0x80, 0x27, 0x4f,
0x4e, 0x9c, 0xb0, 0xdb, 0xed, 0x76, 0x4a, 0x65,
0x39, 0x95, 0x4a, 0xa5, 0x00, 0x83, 0x21, 0x1e,
0x8f, 0xc7, 0x01, 0xc6, 0x5c, 0x2e, 0x97, 0x0b,
0x60, 0xcc, 0xe9, 0x74, 0x3a, 0x01, 0x49, 0x6a,
0x6d, 0x6d, 0x6d, 0x05, 0x9c, 0x4e, 0x42, 0x08,
0x01, 0x8a, 0x8b, 0x15, 0x45, 0x51, 0x04, 0x81,
0xf7, 0xce, 0xf5, 0xeb, 0x47, 0xcd, 0xc4, 0x4f,
0x46, 0x5e, 0x55, 0x6f, 0xde, 0xa4, 0x94, 0xd2,
0x2f, 0x5f, 0xa6, 0xa6, 0x9a, 0x9b, 0x9b, 0x9b,
0x35, 0xed, 0xe5, 0x4b, 0xb7, 0xdb, 0xed, 0xd6,
0xb4, 0xf7, 0xef, 0x13, 0x89, 0x44, 0x42, 0xd3,
0xcc, 0x66, 0xb3, 0xd9, 0x6c, 0xd6, 0x34, 0x9f,
0x8f, 0x97, 0xd6, 0x87, 0x0f, 0x33, 0x33, 0x33,
0x33, 0x9a, 0xf6, 0xea, 0x95, 0xaa, 0xaa, 0xaa,
0xa6, 0x4d, 0x4e, 0x36, 0x35, 0x35, 0x35, 0x69,
0xda, 0x8d, 0x1b, 0x00, 0x90, 0xcd, 0xf2, 0xdf,
0x75, 0x38, 0x8e, 0x3d, 0x03, 0xa7, 0x4e, 0x01,
0xc0, 0xe3, 0xc7, 0x5e, 0x6f, 0x20, 0x10, 0x08,
0x50, 0x2a, 0x8a, 0x4b, 0x4b, 0x4b, 0x4b, 0x80,
0x2c, 0x77, 0x77, 0x77, 0x77, 0x03, 0x94, 0x5a,
0x2c, 0x16, 0x0b, 0xa0, 0x28, 0x7a, 0xcd, 0x9b,
0xcd, 0x66, 0x33, 0x40, 0x69, 0x41, 0x41, 0x41,
0x01, 0x20, 0xcb, 0x9d, 0x9d, 0x9d, 0x9d, 0x40,
0x41, 0x01, 0x6f, 0xee, 0x8a, 0x0a, 0x9b, 0xcd,
0x66, 0xa3, 0x94, 0xf7, 0xd2, 0xed, 0xdb, 0xc7,
0x26, 0x80, 0x47, 0x28, 0x1c, 0xde, 0xd9, 0x61,
0x8c, 0x31, 0xbf, 0x3f, 0x1c, 0x2e, 0x2f, 0x2f,
0x2f, 0x67, 0x4c, 0xd3, 0x32, 0x99, 0x4c, 0x06,
0x30, 0x1a, 0x39, 0x31, 0xdd, 0x74, 0x01, 0x3a,
0x12, 0xc2, 0x4b, 0x47, 0x96, 0xbb, 0xba, 0xba,
0xba, 0x80, 0xed, 0xed, 0xd5, 0xd5, 0xd5, 0x55,
0xa0, 0xae, 0xae, 0xa1, 0xa1, 0xa1, 0x41, 0x10,
0x82, 0x41, 0x42, 0x08, 0xb9, 0x76, 0x8d, 0xfb,
0xa9, 0xa8, 0xf8, 0xed, 0x02, 0xc2, 0x61, 0x00,
0x18, 0x1d, 0x55, 0xd5, 0xca, 0xca, 0xca, 0x4a,
0xc6, 0x18, 0x4b, 0x26, 0x93, 0x49, 0x40, 0x96,
0x7b, 0x7b, 0x7b, 0x7b, 0x01, 0x42, 0x44, 0x51,
0x14, 0x77, 0x89, 0xea, 0x91, 0xb7, 0x58, 0x78,
0x46, 0xf4, 0x75, 0xc6, 0x0c, 0x06, 0x83, 0x01,
0x50, 0x94, 0x9e, 0x9e, 0x9e, 0x1e, 0x40, 0x10,
0x96, 0x97, 0x97, 0x97, 0x01, 0xbf, 0xdf, 0xe9,
0x74, 0x3a, 0x19, 0x33, 0x18, 0x00, 0xe0, 0xde,
0xbd, 0xdf, 0x26, 0x80, 0x47, 0xe4, 0xdc, 0x39,
0x40, 0x10, 0x04, 0xc1, 0xe3, 0xa9, 0xae, 0xe6,
0x0f, 0x13, 0x21, 0x26, 0x93, 0xc9, 0x04, 0x18,
0x8d, 0xbc, 0x39, 0x75, 0xdb, 0x2b, 0x60, 0xb7,
0x84, 0x28, 0xa5, 0x74, 0xf7, 0xbb, 0xc9, 0xd4,
0xde, 0xde, 0xde, 0x0e, 0xe4, 0xf3, 0xf9, 0x7c,
0x3e, 0x0f, 0x9c, 0x3d, 0x5b, 0x5f, 0x5f, 0x5f,
0x4f, 0x69, 0x30, 0xc8, 0x18, 0x63, 0x97, 0x2f,
0x73, 0xbf, 0xfc, 0xfd, 0xfe, 0x96, 0x7d, 0xf7,
0x1a, 0xbd, 0x75, 0x0b, 0x00, 0x3e, 0x7d, 0x3a,
0x79, 0xb2, 0xb6, 0xb6, 0xb6, 0xd6, 0xe5, 0x0a,
0x06, 0x79, 0xc9, 0x98, 0xcd, 0x43, 0x43, 0x43,
0x43, 0x80, 0x24, 0xd5, 0xd5, 0xd5, 0xd5, 0xed,
0x17, 0x90, 0x4e, 0xa7, 0xd3, 0xe9, 0x34, 0xbf,
0x44, 0x25, 0x09, 0x30, 0x1a, 0xf9, 0xcb, 0xac,
0x7f, 0xd7, 0x31, 0x9b, 0x1d, 0x1f, 0x1f, 0x1f,
0x07, 0xd6, 0xd7, 0x87, 0x87, 0x87, 0x87, 0x81,
0xd9, 0x59, 0xc6, 0x18, 0xcb, 0xe7, 0xdf, 0xbe,
0x4d, 0x24, 0x12, 0x89, 0xc5, 0xc5, 0xc1, 0x41,
0x00, 0xf0, 0xf9, 0x7e, 0x3a, 0x03, 0x3c, 0x02,
0x17, 0x2e, 0x50, 0x2a, 0x8a, 0xa2, 0x58, 0x58,
0x18, 0x0c, 0x16, 0x15, 0x15, 0x15, 0x01, 0x8c,
0xf9, 0x7c, 0x3e, 0xdf, 0xe1, 0xc4, 0x73, 0xb9,
0x5c, 0x2e, 0x97, 0x03, 0x62, 0xb1, 0x58, 0x2c,
0x16, 0x03, 0xe2, 0x71, 0x7e, 0xad, 0xee, 0x25,
0xae, 0x67, 0xc4, 0x64, 0x6a, 0x69, 0x69, 0x69,
0x01, 0x78, 0xb1, 0x01, 0xb5, 0xb5, 0x65, 0x65,
0x65, 0x65, 0x94, 0x72, 0xbf, 0x6e, 0x37, 0xe7,
0x71, 0xfe, 0xfc, 0x0f, 0x0b, 0xe0, 0x07, 0x08,
0xe1, 0xc9, 0x7b, 0xf0, 0xa0, 0xa6, 0x26, 0x14,
0x0a, 0x85, 0x44, 0x11, 0x58, 0x58, 0x58, 0x58,
0x00, 0x14, 0xa5, 0xaf, 0xaf, 0xaf, 0xef, 0x70,
0x42, 0x82, 0x20, 0x08, 0x82, 0x00, 0x94, 0x96,
0x96, 0x96, 0x96, 0x96, 0x02, 0x25, 0x25, 0x25,
0x25, 0x25, 0x25, 0xfb, 0xf7, 0xed, 0x3d, 0x6f,
0xb7, 0xf7, 0xf7, 0xf7, 0xf7, 0x03, 0xb9, 0xdc,
0xdc, 0xdc, 0xdc, 0x1c, 0x10, 0x89, 0x44, 0x22,
0x91, 0x88, 0x24, 0x71, 0x1e, 0x0f, 0x1f, 0x1e,
0x26, 0x40, 0x38, 0x78, 0x39, 0x1e, 0x37, 0x18,
0x24, 0x49, 0x92, 0x2c, 0x16, 0xaf, 0xd7, 0x66,
0xb3, 0xd9, 0x00, 0x51, 0x74, 0xbb, 0xdd, 0x6e,
0x40, 0x14, 0x03, 0x81, 0x40, 0xe0, 0x6f, 0x11,
0xd8, 0x43, 0x48, 0x17, 0x30, 0x36, 0x36, 0x36,
0x36, 0x36, 0x76, 0x38, 0xe1, 0xbd, 0x68, 0x32,
0xf1, 0x91, 0x63, 0x75, 0xd5, 0xe1, 0x70, 0x38,
0x00, 0x55, 0xe5, 0x0f, 0xe0, 0xeb, 0xd7, 0x46,
0xa3, 0xd1, 0x68, 0xb3, 0xb5, 0xb5, 0x65, 0x32,
0x99, 0xcc, 0x95, 0x2b, 0xfc, 0xc5, 0x7e, 0xf4,
0xe8, 0xd0, 0x1e, 0x18, 0x18, 0x00, 0x80, 0x54,
0x2a, 0x12, 0x09, 0x87, 0xc3, 0x61, 0xa7, 0xb3,
0xac, 0x8c, 0xdf, 0xd7, 0x9a, 0x36, 0x3f, 0x3f,
0x3f, 0x0f, 0x00, 0x9a, 0xf6, 0xeb, 0xa3, 0xd7,
0x8f, 0x9b, 0xc1, 0x50, 0x59, 0x59, 0x59, 0x09,
0x2c, 0x2d, 0x59, 0xad, 0x56, 0x2b, 0xf0, 0xfc,
0xf9, 0xd4, 0xd4, 0xd4, 0xd4, 0xca, 0xca, 0x9d,
0x3b, 0x00, 0x50, 0x5c, 0xfc, 0x8d, 0x0c, 0x10,
0x42, 0x88, 0x28, 0x12, 0xc2, 0x9b, 0x0e, 0xb0,
0xdb, 0xed, 0x76, 0x80, 0x31, 0x55, 0x55, 0xd5,
0xdd, 0x88, 0xed, 0xad, 0x7d, 0x7d, 0x6d, 0x6f,
0x64, 0xf7, 0xef, 0xfb, 0xf6, 0xfa, 0x6e, 0xc6,
0x78, 0xa0, 0xf2, 0xf9, 0x8d, 0x8d, 0x8d, 0x0d,
0x7d, 0xf7, 0xfe, 0x7f, 0x78, 0xfb, 0x04, 0xbc,
0x79, 0xa3, 0x69, 0x9a, 0xd6, 0xd3, 0xb3, 0xb3,
0x33, 0x39, 0x39, 0x39, 0x79, 0xff, 0xbe, 0xaa,
0x02, 0x80, 0xc9, 0x74, 0xfc, 0x31, 0x3f, 0xd8,
0x78, 0xd6, 0x37, 0x36, 0x66, 0x66, 0x80, 0x83,
0xa6, 0xd7, 0x9f, 0x9c, 0x46, 0xe9, 0xd7, 0xa6,
0xb7, 0x5a, 0xff, 0x89, 0x8a, 0xc2, 0x51, 0x17,
0xca, 0x9f, 0x23, 0x7d, 0xd8, 0xde, 0x3d, 0x97,
0xcf, 0x73, 0xdc, 0xde, 0xe6, 0x98, 0xcd, 0x72,
0x4c, 0xa7, 0x39, 0x7e, 0xfe, 0xcc, 0x71, 0x65,
0x85, 0xe3, 0xf7, 0xa7, 0xd3, 0x5f, 0x1e, 0xa7,
0xbf, 0x1e, 0xff, 0x7a, 0x9e, 0x17, 0xdb, 0x2e,
0xea, 0x02, 0x74, 0xd4, 0xf7, 0xe9, 0xc4, 0xbf,
0x7c, 0x39, 0x58, 0x40, 0x2e, 0x77, 0x34, 0x3e,
0xff, 0x41, 0xfb, 0x0b, 0xe8, 0x00, 0x80, 0xf8,
0x31, 0x40, 0x4e, 0x9f, 0x00, 0x00, 0x00, 0x00,
0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};

View File

@@ -1,191 +0,0 @@
/* document_new.png - 477 bytes */
static const unsigned char document_new_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xfc, 0x00, 0xe9, 0x00, 0x4f, 0x34,
0xd7, 0xb1, 0x0d, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd5, 0x02, 0x12, 0x0e, 0x26, 0x1c, 0xd3,
0xb6, 0x19, 0x29, 0x00, 0x00, 0x01, 0x6a, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0xad, 0x90, 0x4f,
0x4b, 0x5b, 0x51, 0x10, 0xc5, 0x7f, 0x73, 0xef,
0x8d, 0x56, 0x24, 0x7d, 0x25, 0x82, 0xd0, 0xca,
0x5b, 0x16, 0xdc, 0xd4, 0xee, 0x5c, 0x66, 0xa9,
0x1b, 0xf3, 0x0d, 0xb2, 0x71, 0x59, 0xbf, 0x45,
0xde, 0xb2, 0xdd, 0x77, 0x23, 0x04, 0xc4, 0x82,
0xdf, 0xc0, 0x4d, 0x37, 0xdd, 0x2a, 0x85, 0x52,
0x4a, 0xb2, 0x52, 0x4a, 0x49, 0x5a, 0x84, 0x10,
0xff, 0x45, 0x62, 0x9b, 0xde, 0x77, 0xc7, 0x85,
0x26, 0xc6, 0x18, 0x93, 0x54, 0x7a, 0x36, 0x33,
0x0c, 0x73, 0xe6, 0x9c, 0x33, 0x52, 0x2e, 0x97,
0xb7, 0x6b, 0xb5, 0x5a, 0x91, 0x11, 0x98, 0x9d,
0xfd, 0xcb, 0xdc, 0x5c, 0x9b, 0x67, 0xd1, 0x6f,
0xf2, 0xcb, 0x9f, 0xdf, 0xe5, 0xa2, 0x6f, 0x1f,
0xe1, 0xcf, 0xbe, 0x64, 0xc3, 0x19, 0xa5, 0x52,
0x49, 0xc7, 0xe1, 0xfc, 0x78, 0x53, 0x2f, 0x4f,
0xdf, 0x68, 0xe7, 0xbc, 0xa0, 0x97, 0x27, 0x2b,
0x9d, 0x8b, 0xc6, 0xe2, 0xae, 0xb6, 0xb2, 0xeb,
0xda, 0x32, 0x33, 0xae, 0xab, 0xd2, 0x6c, 0x36,
0x09, 0x21, 0x00, 0x20, 0x22, 0x3d, 0xf5, 0x8c,
0xd9, 0x63, 0xda, 0x7e, 0x21, 0xe3, 0xbe, 0x22,
0x66, 0x09, 0xeb, 0x4c, 0x26, 0xd8, 0xf6, 0x6a,
0xc7, 0xb7, 0x5b, 0x53, 0xce, 0x57, 0x7b, 0x07,
0x06, 0xc9, 0xdd, 0x6a, 0xe4, 0x08, 0x6b, 0xea,
0x88, 0x79, 0x85, 0xb8, 0x02, 0x60, 0x31, 0x2a,
0x46, 0xd3, 0x5f, 0x8b, 0xe0, 0x5e, 0xba, 0xfe,
0xac, 0x83, 0xe4, 0xeb, 0x5e, 0x6f, 0x3a, 0x0b,
0x4c, 0x81, 0x38, 0x10, 0x0b, 0x82, 0x00, 0x17,
0x6e, 0x34, 0x59, 0x08, 0x3a, 0x4f, 0xd0, 0xe7,
0xd8, 0x50, 0x45, 0xd3, 0x69, 0x40, 0xd0, 0xb4,
0xa2, 0xde, 0x9b, 0x7a, 0xc6, 0xa6, 0x15, 0xf7,
0xd0, 0xe7, 0xbb, 0x87, 0x02, 0xaf, 0xf1, 0xe1,
0x27, 0xe0, 0xb1, 0x5a, 0x01, 0x14, 0xef, 0x5f,
0xe8, 0xe9, 0x59, 0xeb, 0xd3, 0xcc, 0xfc, 0xf7,
0x83, 0x91, 0x11, 0x44, 0x04, 0xe5, 0x29, 0x1d,
0x5d, 0x43, 0x75, 0x81, 0x34, 0xfd, 0x01, 0x3c,
0x61, 0x6b, 0xe7, 0xd0, 0x6c, 0x6c, 0x6c, 0xbf,
0x05, 0x70, 0xa3, 0xc8, 0xb7, 0x35, 0x8b, 0xd7,
0x3c, 0x22, 0x42, 0x14, 0x45, 0x34, 0x1a, 0x49,
0x4f, 0xd4, 0x30, 0x21, 0xfa, 0x7f, 0xd3, 0x8f,
0x7b, 0x11, 0x86, 0x39, 0x78, 0x88, 0x7c, 0xc7,
0xc1, 0xb0, 0xa5, 0xc1, 0xd9, 0xb0, 0x1d, 0x33,
0xa9, 0xdd, 0xb1, 0x11, 0x72, 0xb9, 0x1c, 0x8f,
0x81, 0x8b, 0xe3, 0xf8, 0x43, 0x92, 0x24, 0xc5,
0x7f, 0x21, 0xc5, 0x71, 0xfc, 0x9e, 0xff, 0x85,
0x2b, 0xcc, 0x3d, 0x99, 0x60, 0x7b, 0xac, 0x14,
0xc9, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e,
0x44, 0xae, 0x42, 0x60, 0x82};
/* document_new.png - 999 bytes */
static const unsigned char document_new_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xfc, 0x00, 0xe9, 0x00, 0x4f, 0x34,
0xd7, 0xb1, 0x0d, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x03,
0x72, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xd5,
0x57, 0xcf, 0x4f, 0x13, 0x41, 0x14, 0xfe, 0xde,
0x4c, 0xb7, 0x84, 0x12, 0x95, 0x50, 0x68, 0x6d,
0x4c, 0x3c, 0x79, 0x30, 0xc4, 0x93, 0x89, 0x11,
0x48, 0xf8, 0x07, 0xb8, 0x70, 0xe0, 0xc4, 0xcd,
0x78, 0xe5, 0x4c, 0x48, 0x8c, 0x5c, 0x8c, 0x1a,
0x7f, 0xfc, 0x13, 0x1e, 0xb8, 0x18, 0x0f, 0x86,
0xbb, 0xc1, 0x90, 0x90, 0x00, 0x25, 0x5c, 0x20,
0xc0, 0x09, 0x7a, 0x81, 0xa6, 0xd0, 0x84, 0x10,
0x52, 0x6b, 0xdb, 0xc5, 0x79, 0x1e, 0x9e, 0xe3,
0xee, 0x4e, 0xbb, 0xd8, 0x4a, 0xd5, 0xf8, 0x92,
0xed, 0xec, 0xfc, 0xd8, 0x99, 0xef, 0x7b, 0xef,
0x7b, 0x6f, 0xbb, 0xc0, 0x7f, 0x6e, 0xf4, 0xaf,
0x01, 0x58, 0xbb, 0xb8, 0x38, 0x3e, 0x9e, 0x9c,
0xa4, 0x1f, 0x78, 0x3c, 0x4f, 0x5a, 0xdf, 0x4f,
0x24, 0xb2, 0xd9, 0xc5, 0x45, 0xe6, 0x8e, 0x09,
0xbc, 0x7a, 0xf5, 0xe6, 0xcd, 0x8b, 0x17, 0xcf,
0x9e, 0x49, 0x6f, 0x7e, 0xfe, 0x4f, 0x01, 0x57,
0x8a, 0xc8, 0x18, 0x20, 0x9d, 0xee, 0xef, 0xaf,
0xd5, 0x80, 0x5c, 0x6e, 0x68, 0xa8, 0x52, 0x01,
0xb4, 0x56, 0x8a, 0x19, 0xa8, 0xd7, 0x1b, 0x0d,
0xa5, 0xde, 0xbd, 0x9b, 0x98, 0x18, 0x1f, 0x2f,
0x14, 0x66, 0x66, 0x84, 0x50, 0xb5, 0x6a, 0x9f,
0x4f, 0x5c, 0xbe, 0xfd, 0xfc, 0xfc, 0xdc, 0xdc,
0xec, 0xec, 0x93, 0x27, 0xdd, 0x07, 0xce, 0xcc,
0xec, 0xfb, 0xe2, 0xe5, 0xdd, 0x5d, 0xc0, 0x98,
0x6a, 0x75, 0x69, 0x09, 0xf0, 0x7d, 0xe6, 0x74,
0x1a, 0x60, 0x06, 0x52, 0x29, 0xe0, 0xf4, 0xf4,
0xe4, 0x64, 0x6f, 0xef, 0xd1, 0x23, 0x66, 0x40,
0xeb, 0xcf, 0x9f, 0x25, 0x52, 0xef, 0xdf, 0x0b,
0x91, 0x7a, 0x3d, 0xd1, 0xee, 0x81, 0x85, 0x42,
0xa1, 0x50, 0x28, 0x00, 0x5a, 0x6b, 0xad, 0xb5,
0x00, 0x60, 0x06, 0x88, 0x88, 0x88, 0x82, 0xd6,
0x5a, 0xdc, 0xb8, 0x80, 0x07, 0x3c, 0x8f, 0xa8,
0x58, 0x04, 0x52, 0x29, 0xa5, 0x3e, 0x7d, 0x02,
0xb4, 0xf6, 0xbc, 0xde, 0x5e, 0x80, 0x39, 0x99,
0x9c, 0x9a, 0x02, 0x88, 0xb4, 0x1e, 0x18, 0x00,
0xae, 0x5f, 0x1f, 0x1c, 0x5c, 0x5e, 0x06, 0x98,
0x8d, 0xf9, 0xf0, 0x61, 0x7a, 0x9a, 0x88, 0xf9,
0xec, 0x6c, 0x73, 0x53, 0x76, 0xda, 0xd9, 0x51,
0xed, 0x12, 0x70, 0x01, 0xb9, 0xc0, 0x2c, 0x21,
0xb9, 0x0b, 0xfa, 0xcc, 0xc6, 0xd8, 0xbe, 0x5d,
0xfb, 0xed, 0x9b, 0x48, 0xa7, 0x52, 0x91, 0x7d,
0xea, 0x75, 0x80, 0x99, 0x68, 0x70, 0x50, 0x44,
0x35, 0x30, 0x60, 0xe5, 0x25, 0x6d, 0x4f, 0x8f,
0x7d, 0x2e, 0x95, 0x92, 0xbb, 0x1b, 0x37, 0x7e,
0x4a, 0xb0, 0x5b, 0x04, 0x00, 0xdb, 0x73, 0xd7,
0x29, 0x45, 0x04, 0x28, 0x25, 0x70, 0x88, 0x88,
0xb4, 0x06, 0x8c, 0x21, 0xba, 0x76, 0x0d, 0x30,
0x06, 0x18, 0x1a, 0x02, 0x88, 0x2e, 0x2e, 0x0e,
0x0e, 0x44, 0x52, 0x2b, 0x2b, 0x00, 0x60, 0xcc,
0xf1, 0x31, 0xd0, 0x68, 0xd4, 0x6a, 0xf9, 0x3c,
0x40, 0xc4, 0xfc, 0xe5, 0xcb, 0xf6, 0xb6, 0x9c,
0x71, 0x7a, 0x7a, 0x65, 0x02, 0x4a, 0x09, 0xa4,
0xa0, 0x1f, 0xcc, 0x87, 0xc7, 0x03, 0xa2, 0x32,
0xae, 0x94, 0x25, 0x00, 0xdc, 0xbc, 0x09, 0xd4,
0x6a, 0xc0, 0xe8, 0x28, 0xd0, 0x68, 0x30, 0xdf,
0xb9, 0x03, 0x00, 0x8d, 0xc6, 0xc6, 0x06, 0x90,
0x48, 0xf8, 0xfe, 0xc7, 0x8f, 0xc0, 0xc1, 0xc1,
0xfe, 0xfe, 0xe1, 0xa1, 0xb8, 0xc7, 0x98, 0x85,
0x05, 0x41, 0x53, 0x2c, 0x5a, 0x5c, 0x6d, 0xe7,
0x80, 0x0b, 0xbc, 0x39, 0x07, 0x6c, 0x0c, 0xec,
0x6f, 0x73, 0xa4, 0xa4, 0x95, 0x88, 0x10, 0x01,
0xc9, 0xa4, 0x48, 0xe7, 0xd6, 0x2d, 0xc0, 0xf7,
0x81, 0x74, 0x5a, 0xe4, 0x35, 0x3c, 0x0c, 0xf4,
0xf6, 0xf6, 0xf5, 0x79, 0x1e, 0x90, 0xcf, 0x6f,
0x6f, 0x9f, 0x9f, 0x03, 0xf7, 0xef, 0xdf, 0xbd,
0x5b, 0x2c, 0x6e, 0x6d, 0xc9, 0x4e, 0x5f, 0xbf,
0x76, 0x1c, 0x81, 0x8d, 0x8d, 0xcd, 0xcd, 0x7c,
0x3e, 0x3e, 0x22, 0x56, 0x3a, 0x6e, 0x64, 0x9a,
0x5b, 0x7b, 0x05, 0x91, 0x92, 0xa2, 0xa0, 0x54,
0x5f, 0x1f, 0xc0, 0xac, 0xf5, 0xed, 0xdb, 0x00,
0x51, 0x32, 0x79, 0xef, 0x1e, 0x50, 0xa9, 0x54,
0xab, 0x9e, 0x07, 0xd8, 0xf2, 0xe9, 0xbe, 0x17,
0xda, 0x26, 0xf0, 0xf0, 0xe1, 0x83, 0x07, 0x23,
0x23, 0x40, 0x2e, 0x97, 0xcb, 0xe5, 0x72, 0x97,
0x6b, 0xdc, 0xb6, 0x51, 0x22, 0xd6, 0xf3, 0x61,
0xba, 0x51, 0x09, 0xca, 0xfa, 0x20, 0x9b, 0xdc,
0xec, 0x6a, 0x65, 0x1d, 0x4b, 0xa8, 0x54, 0x2a,
0x95, 0x4a, 0xa5, 0xf0, 0xc1, 0xcc, 0x16, 0xba,
0xfd, 0x75, 0xa5, 0x12, 0x7e, 0x3e, 0x48, 0xf2,
0x60, 0x3c, 0x0a, 0xf4, 0x32, 0xb8, 0x5d, 0x20,
0xe0, 0xb6, 0xcc, 0x44, 0x36, 0x17, 0x5c, 0x40,
0xad, 0xa5, 0x16, 0x47, 0xc8, 0x3a, 0xa4, 0x13,
0xf8, 0x1d, 0x10, 0x68, 0x3e, 0x58, 0xcc, 0x56,
0x9f, 0xb0, 0xf7, 0xa3, 0x52, 0x91, 0x48, 0x04,
0xf3, 0xee, 0xfa, 0xa8, 0xdf, 0xc3, 0xeb, 0xdb,
0xb1, 0xb6, 0xf9, 0xae, 0xad, 0xad, 0xaf, 0xaf,
0xae, 0xfe, 0xda, 0x83, 0xc1, 0x78, 0x6b, 0xe0,
0x71, 0x39, 0x40, 0xe4, 0x66, 0x51, 0x97, 0x09,
0x8c, 0x8e, 0x8e, 0x8c, 0x8c, 0x8d, 0x01, 0x99,
0x4c, 0x26, 0x93, 0xc9, 0xb4, 0xaa, 0xff, 0x56,
0xf3, 0x36, 0xa9, 0xe5, 0x0a, 0x27, 0xaf, 0x8d,
0x8e, 0xcc, 0xb9, 0xe3, 0xd1, 0xf9, 0x76, 0xad,
0xe3, 0x1c, 0x28, 0x97, 0xcb, 0xe5, 0x72, 0x39,
0xbe, 0x8c, 0xba, 0x11, 0x89, 0xee, 0xd1, 0x4c,
0x28, 0x2e, 0xa2, 0x5d, 0x27, 0x70, 0x19, 0x35,
0x5b, 0x2e, 0xdd, 0xe3, 0xa3, 0x80, 0xc3, 0x50,
0x5b, 0xad, 0x0b, 0xbf, 0x02, 0xff, 0x20, 0x81,
0x66, 0xcf, 0x05, 0x00, 0x5d, 0x60, 0xd1, 0xb8,
0x34, 0x03, 0x0d, 0xef, 0x47, 0xc4, 0x1c, 0x9d,
0xff, 0x4b, 0x11, 0x68, 0xae, 0x22, 0xee, 0x5f,
0x0b, 0xb7, 0xda, 0x44, 0x81, 0x87, 0x23, 0x15,
0xdd, 0xb1, 0xcb, 0x04, 0xb2, 0xd9, 0x6c, 0x36,
0x9b, 0xbd, 0x2a, 0xdd, 0xee, 0x5b, 0x2c, 0x01,
0x63, 0x8c, 0x31, 0xe6, 0xf9, 0xf3, 0xd7, 0xaf,
0xdf, 0xbe, 0x7d, 0xf9, 0xf2, 0xe9, 0xd3, 0x7f,
0x05, 0xf0, 0xe8, 0xe8, 0xf0, 0xb0, 0x58, 0x7c,
0xfc, 0x38, 0x6e, 0xfe, 0x37, 0x3f, 0xea, 0x3b,
0x7b, 0xdd, 0x5f, 0xdd, 0xe2, 0x3f, 0xea, 0xff,
0x7b, 0xfb, 0x0e, 0x30, 0x0d, 0x2c, 0x47, 0xc0,
0x05, 0x25, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x49,
0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82};

View File

@@ -1,274 +0,0 @@
/* document_open.png - 537 bytes */
static const unsigned char document_open_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd5, 0x0b, 0x15, 0x11, 0x32, 0x0d, 0x10,
0x15, 0x50, 0x0b, 0x00, 0x00, 0x01, 0xa6, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0xa5, 0x91, 0xbf,
0x4f, 0x53, 0x51, 0x14, 0xc7, 0x3f, 0x2f, 0x7d,
0xa8, 0xef, 0xd1, 0x06, 0x0b, 0x0c, 0x4d, 0x4c,
0x37, 0x19, 0x60, 0x73, 0x42, 0x13, 0x23, 0x03,
0x83, 0x7f, 0x00, 0x08, 0x46, 0x06, 0x24, 0x0c,
0x12, 0x10, 0x1c, 0xdc, 0x0c, 0x04, 0x06, 0x17,
0x07, 0x16, 0x36, 0x13, 0x7e, 0x0e, 0x04, 0xd4,
0x30, 0x03, 0xd1, 0x41, 0x47, 0x06, 0x13, 0x12,
0x0c, 0x6c, 0x84, 0x68, 0x4c, 0x84, 0x26, 0x6d,
0x6d, 0xe0, 0xbd, 0xe7, 0xed, 0xbb, 0xf7, 0x38,
0xb4, 0x69, 0xad, 0x79, 0x4d, 0x31, 0x7e, 0x72,
0x93, 0x7b, 0x4f, 0xce, 0x3d, 0xdf, 0xf3, 0xbd,
0xe7, 0x5a, 0x0f, 0x06, 0xfb, 0x66, 0x53, 0xa9,
0xd4, 0x1c, 0x7f, 0xa1, 0x94, 0x2a, 0xed, 0xbf,
0xd4, 0xd8, 0xca, 0xf2, 0xda, 0x6b, 0xea, 0x60,
0x4d, 0x3e, 0x9b, 0x90, 0x91, 0xe1, 0xd1, 0xc8,
0x64, 0x10, 0xf8, 0x2c, 0xad, 0x2c, 0x52, 0x28,
0x14, 0x1e, 0xbd, 0x7b, 0xb3, 0xb5, 0x11, 0x29,
0x30, 0xfe, 0x74, 0x4c, 0x06, 0xfa, 0x07, 0x39,
0x3c, 0x3a, 0x04, 0xc0, 0x6e, 0x8a, 0x91, 0x48,
0xc4, 0x69, 0x44, 0x2e, 0x9f, 0x7d, 0x39, 0xfe,
0x64, 0x6a, 0xc6, 0xd6, 0x5a, 0xe3, 0x38, 0x2e,
0xd7, 0x5b, 0x92, 0x25, 0xc5, 0x98, 0xe1, 0xe1,
0xc0, 0x50, 0x43, 0x81, 0xcd, 0xb7, 0xeb, 0xd3,
0xc0, 0x8c, 0xad, 0x94, 0xc2, 0xf7, 0x3d, 0xf2,
0x3f, 0x73, 0x00, 0x24, 0x5b, 0x5b, 0x00, 0xf0,
0xbc, 0x8b, 0xba, 0xc5, 0xae, 0xdb, 0x5c, 0x39,
0xdb, 0x61, 0x18, 0xd6, 0x38, 0x00, 0x53, 0x49,
0x1e, 0x95, 0x9f, 0xf5, 0x27, 0x9d, 0x9d, 0x5d,
0x35, 0xb1, 0x0d, 0x44, 0x3a, 0x88, 0xba, 0x1c,
0xc5, 0xa5, 0x1d, 0xc4, 0xe3, 0x09, 0xd2, 0xe9,
0x74, 0xb4, 0x80, 0xef, 0x7b, 0xbc, 0xff, 0x72,
0xce, 0x41, 0xc6, 0x05, 0x60, 0xfe, 0xc3, 0x7a,
0x9d, 0x7e, 0x9f, 0x6b, 0xa2, 0xde, 0x89, 0x25,
0xb1, 0x01, 0x1c, 0xc7, 0xe5, 0x20, 0xe3, 0xb2,
0xf0, 0xfc, 0x3e, 0x81, 0xd2, 0x5c, 0x86, 0x6b,
0x57, 0x62, 0x4c, 0xcd, 0xef, 0x56, 0x67, 0x00,
0xf0, 0x23, 0x17, 0x70, 0x7c, 0x76, 0xd1, 0xb0,
0x58, 0x6b, 0x43, 0xba, 0xdd, 0xad, 0x0e, 0xd1,
0x71, 0x4a, 0x81, 0x00, 0x22, 0x82, 0x65, 0x59,
0x88, 0x08, 0x22, 0x60, 0x44, 0xd0, 0x46, 0x08,
0xb5, 0x50, 0xd4, 0x06, 0x15, 0x1a, 0x42, 0x2d,
0xb4, 0x25, 0xae, 0xd6, 0xfe, 0xc2, 0xcd, 0xa4,
0x4f, 0xf6, 0x5c, 0xf1, 0x3d, 0xeb, 0x83, 0x58,
0x18, 0x84, 0xf2, 0x42, 0x04, 0x04, 0x41, 0xa4,
0x2c, 0x0c, 0x04, 0x45, 0x53, 0x15, 0x38, 0xcd,
0x9c, 0x71, 0xeb, 0xce, 0x5d, 0xf6, 0x4f, 0xf2,
0xe5, 0xa2, 0x52, 0x77, 0x11, 0x30, 0x08, 0x82,
0x05, 0x22, 0x15, 0x57, 0xdd, 0x1d, 0xad, 0xec,
0x6e, 0xef, 0x90, 0x0c, 0xbe, 0xad, 0x5a, 0xf7,
0x1e, 0xbf, 0xfa, 0xe8, 0x35, 0xdd, 0xe8, 0xe1,
0x1f, 0x69, 0x2e, 0x7e, 0xdd, 0xfb, 0xb4, 0xfa,
0xe2, 0x36, 0xff, 0xcb, 0x6f, 0x37, 0x66, 0xca,
0x8b, 0x19, 0x6f, 0x71, 0x8b, 0x00, 0x00, 0x00,
0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60,
0x82};
/* document_open.png - 1596 bytes */
static const unsigned char document_open_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x05,
0xc7, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xed,
0x56, 0x4d, 0x4c, 0x13, 0x5b, 0x14, 0xfe, 0x66,
0x5a, 0xe8, 0x74, 0xa6, 0xa5, 0x94, 0xc2, 0x00,
0xa5, 0xa0, 0x08, 0x51, 0x94, 0xbf, 0x18, 0x34,
0x28, 0x9a, 0x98, 0x98, 0xb8, 0x35, 0x31, 0x0f,
0x35, 0x2e, 0x48, 0x4c, 0x8c, 0x6b, 0x35, 0x1a,
0x77, 0x6a, 0xa2, 0x6e, 0x95, 0x9d, 0x0b, 0x5d,
0x90, 0xa0, 0xa0, 0x84, 0x9f, 0xc4, 0x44, 0x16,
0x24, 0xba, 0x70, 0x61, 0x64, 0x21, 0x7f, 0x15,
0x2a, 0x7f, 0x5a, 0x08, 0xa4, 0x2d, 0x50, 0x6a,
0x99, 0xb6, 0x40, 0x3b, 0x7f, 0x6f, 0x71, 0x33,
0x4e, 0x5b, 0x40, 0x14, 0xf5, 0xbd, 0xbc, 0xe4,
0x7d, 0x49, 0x7b, 0x67, 0xee, 0xdc, 0x33, 0x73,
0xbe, 0x73, 0xbe, 0x7b, 0xcf, 0x01, 0xfe, 0xe3,
0xa0, 0x76, 0x6a, 0xd8, 0xda, 0xfa, 0xec, 0x59,
0x4b, 0xcb, 0xb9, 0x73, 0x00, 0x45, 0x01, 0x1d,
0x1d, 0xb2, 0x2c, 0x49, 0xb2, 0x0c, 0xa8, 0x2a,
0xf9, 0xed, 0xd8, 0x21, 0x8a, 0xfc, 0xb4, 0xf7,
0xa8, 0xaa, 0xaa, 0x02, 0xf7, 0xef, 0x5f, 0xba,
0x74, 0xf1, 0xe2, 0xe5, 0xcb, 0xb7, 0x6e, 0xfd,
0x36, 0xe6, 0x9d, 0x9d, 0x3d, 0x3d, 0xcf, 0x9f,
0xab, 0x7f, 0x0c, 0x82, 0x20, 0x08, 0x82, 0xa0,
0xaa, 0xad, 0xad, 0x6d, 0x6d, 0x2d, 0x2d, 0x5b,
0x87, 0xc4, 0xa8, 0x5d, 0x34, 0x35, 0x35, 0x35,
0x35, 0x35, 0xd5, 0xd5, 0x29, 0x0a, 0x20, 0xcb,
0xbd, 0xbd, 0x14, 0x45, 0x51, 0x34, 0x9d, 0x1c,
0x17, 0xf2, 0xcf, 0xb2, 0x2c, 0x6b, 0x36, 0xd3,
0xb4, 0x24, 0x89, 0xa2, 0x2c, 0xeb, 0x2f, 0x92,
0x65, 0x59, 0x96, 0xa4, 0xe4, 0xd5, 0x3f, 0x07,
0x45, 0x51, 0x14, 0x45, 0xd1, 0xef, 0x25, 0x49,
0x92, 0x44, 0x11, 0xc8, 0xcc, 0xcc, 0xcc, 0xcc,
0xcc, 0xdc, 0xda, 0xee, 0x1b, 0x01, 0x41, 0x10,
0x84, 0x70, 0xf8, 0xf1, 0xe3, 0x2b, 0x57, 0xae,
0x5e, 0xbd, 0x76, 0x2d, 0x3f, 0x7f, 0x2b, 0x83,
0x85, 0x85, 0xc5, 0x45, 0xbf, 0x1f, 0x70, 0x3a,
0x9d, 0xce, 0xa2, 0x22, 0x7d, 0x7e, 0x68, 0x68,
0x68, 0x68, 0x68, 0x08, 0xf0, 0xf9, 0xfc, 0x7e,
0xbf, 0x1f, 0xa0, 0x69, 0x8a, 0xd2, 0x69, 0x03,
0x9b, 0x09, 0x2b, 0xf9, 0x89, 0xa2, 0x10, 0xb1,
0xd8, 0xed, 0x76, 0x7b, 0x76, 0x36, 0x50, 0x55,
0x55, 0x59, 0x59, 0x55, 0xb5, 0x91, 0xd8, 0x96,
0x04, 0x14, 0x05, 0x50, 0x55, 0x49, 0x8a, 0x46,
0xa3, 0xd1, 0x68, 0x14, 0x18, 0x1c, 0x1c, 0x18,
0x18, 0x18, 0xd0, 0x17, 0xb2, 0x2c, 0xc7, 0xb1,
0x2c, 0xe0, 0x72, 0x95, 0x94, 0x38, 0x9d, 0x40,
0x43, 0xc3, 0x91, 0x23, 0xc7, 0x8e, 0x01, 0xe1,
0x70, 0x38, 0x1c, 0x0a, 0x01, 0xe5, 0xe5, 0xe5,
0xe5, 0xe5, 0xe5, 0x40, 0x45, 0x45, 0x45, 0xc5,
0xbe, 0x7d, 0x00, 0x4d, 0xd3, 0xb4, 0xc1, 0x90,
0xec, 0xa0, 0xa2, 0x68, 0x9a, 0xd6, 0xa8, 0x24,
0xcf, 0x6b, 0xf7, 0x46, 0xa3, 0xd1, 0x68, 0x34,
0x92, 0x40, 0x04, 0x02, 0x24, 0x13, 0x5a, 0x66,
0xb7, 0x21, 0x20, 0xcb, 0x8a, 0xb2, 0xb2, 0x62,
0x32, 0x31, 0x8c, 0xcd, 0x06, 0x38, 0x1c, 0x0e,
0x47, 0x6e, 0xae, 0xbe, 0xd0, 0xe1, 0xe0, 0xf9,
0xec, 0x6c, 0xa0, 0xa1, 0xa1, 0xbe, 0xfe, 0xf8,
0x71, 0x20, 0x16, 0x8b, 0xc5, 0x62, 0x31, 0x60,
0x76, 0x76, 0x76, 0x76, 0x76, 0x16, 0xf8, 0xf0,
0x81, 0x10, 0x66, 0x18, 0xb3, 0xd9, 0x6c, 0xde,
0x3c, 0xca, 0x9a, 0x34, 0x92, 0x1d, 0x32, 0x99,
0x88, 0x44, 0x76, 0xed, 0x2a, 0x29, 0x29, 0x29,
0x01, 0x2a, 0x2b, 0x49, 0xe4, 0x17, 0x17, 0x97,
0x96, 0x02, 0x01, 0xc0, 0x62, 0xb1, 0x58, 0x2c,
0x96, 0x1f, 0x20, 0x40, 0xd3, 0x06, 0x03, 0x45,
0x71, 0x5c, 0x22, 0xb1, 0xbe, 0x2e, 0x08, 0xa2,
0xc8, 0x30, 0x0c, 0xc3, 0x30, 0x19, 0x19, 0xda,
0x8b, 0xb2, 0xb2, 0xec, 0x76, 0x8e, 0x03, 0xcc,
0x66, 0xe2, 0xa0, 0xd7, 0xeb, 0xf5, 0x4e, 0x4f,
0x03, 0xa2, 0x48, 0x1c, 0xaa, 0xae, 0xae, 0xa9,
0xa9, 0xaa, 0x02, 0x28, 0x4a, 0x55, 0x93, 0xf7,
0x00, 0x45, 0xd1, 0x34, 0x39, 0x55, 0x48, 0xa4,
0xb5, 0x9d, 0x45, 0x51, 0x44, 0x62, 0x8a, 0x22,
0xcb, 0xaa, 0x0a, 0xf0, 0x7c, 0x7e, 0x7e, 0x41,
0x01, 0x30, 0x3e, 0x3e, 0x31, 0x31, 0x31, 0x41,
0xc6, 0xf1, 0x71, 0x12, 0xc8, 0x9c, 0x9c, 0x07,
0x0f, 0xb6, 0x25, 0x40, 0x1c, 0x76, 0xbb, 0xfd,
0xfe, 0x40, 0xc0, 0xe7, 0x3b, 0x7c, 0x98, 0x65,
0xcd, 0x66, 0x8e, 0x03, 0x38, 0x8e, 0x44, 0xe0,
0xe4, 0xc9, 0x13, 0x27, 0x4e, 0x9d, 0x02, 0x82,
0xc1, 0x60, 0x70, 0x69, 0x09, 0xf8, 0xf2, 0xc5,
0xeb, 0x9d, 0x99, 0x01, 0x22, 0x91, 0x68, 0x34,
0x12, 0xd1, 0x63, 0xac, 0x1f, 0xa3, 0x44, 0xbb,
0x5a, 0xe4, 0x75, 0x52, 0x84, 0x90, 0xd1, 0x68,
0x34, 0x1a, 0x0c, 0x80, 0xd9, 0xcc, 0x30, 0x66,
0x33, 0xc0, 0xf3, 0x3c, 0xcf, 0xf3, 0xc0, 0xc7,
0x8f, 0x63, 0x63, 0x23, 0x23, 0x40, 0x4e, 0x4e,
0x4e, 0x8e, 0xdd, 0xfe, 0xf0, 0xe1, 0x99, 0x33,
0xa7, 0x4f, 0x37, 0x36, 0xde, 0xb8, 0xb1, 0x15,
0x81, 0x6f, 0xaf, 0x3d, 0x7b, 0xf6, 0xfc, 0xf9,
0xbf, 0xfe, 0xba, 0x79, 0xb3, 0xb6, 0xb6, 0xa6,
0xa6, 0xb6, 0xf6, 0xce, 0x1d, 0x97, 0xcb, 0xe5,
0x2a, 0x2e, 0x66, 0x59, 0x86, 0x61, 0xd9, 0x8c,
0x0c, 0x20, 0x3b, 0xdb, 0x6e, 0x2f, 0x2c, 0x04,
0xda, 0xdb, 0xfb, 0xfa, 0xdc, 0x6e, 0xc0, 0xe3,
0x09, 0x87, 0xf3, 0xf2, 0xb0, 0x63, 0x30, 0x8c,
0xc1, 0x90, 0x7c, 0x8a, 0xad, 0xaf, 0xcb, 0xb2,
0xb6, 0x67, 0xbe, 0x87, 0xbd, 0x7b, 0x2d, 0x96,
0x85, 0x85, 0xfe, 0xfe, 0xf6, 0xf6, 0xe6, 0xe6,
0xeb, 0xd7, 0x8f, 0x1e, 0x35, 0xa6, 0x3e, 0x9e,
0x99, 0x09, 0x85, 0x42, 0xa1, 0xaf, 0x5f, 0x45,
0xb1, 0xb4, 0xb4, 0xac, 0x6c, 0xf7, 0x6e, 0xe0,
0xe0, 0xc1, 0x9a, 0x9a, 0x43, 0x87, 0x80, 0xee,
0xee, 0x97, 0x2f, 0x7b, 0x7b, 0x81, 0xa6, 0xa6,
0x0b, 0x17, 0x48, 0xf9, 0xd2, 0x4e, 0x19, 0x5d,
0x2c, 0xda, 0x3d, 0x29, 0x46, 0xe4, 0x5e, 0x1b,
0x93, 0x37, 0x6f, 0xb2, 0x84, 0x7e, 0x16, 0xcd,
0xcd, 0x4f, 0x9e, 0x74, 0x75, 0xed, 0xdf, 0xbf,
0x41, 0x42, 0x04, 0xa1, 0x50, 0x3c, 0x1e, 0x8f,
0x27, 0x12, 0xa2, 0x28, 0xcb, 0xb2, 0x2c, 0xcb,
0x80, 0xd5, 0x6a, 0xb5, 0x5a, 0xad, 0x40, 0x7f,
0xff, 0xdc, 0x1c, 0xc3, 0x00, 0xd5, 0xd5, 0x89,
0x84, 0xa2, 0x00, 0x1e, 0x8f, 0xcf, 0x17, 0x8b,
0xed, 0x3c, 0x03, 0x3f, 0x0b, 0xa7, 0xd3, 0x6e,
0x67, 0x18, 0x20, 0x1a, 0x8d, 0xc7, 0x55, 0x55,
0x3f, 0x06, 0xe8, 0xd4, 0x65, 0x63, 0x63, 0xc1,
0x60, 0x30, 0xb8, 0xb8, 0x28, 0x8a, 0xb2, 0x4c,
0x36, 0xa7, 0xcf, 0x17, 0x08, 0xf8, 0x7c, 0x40,
0x66, 0xa6, 0xc1, 0xa0, 0x69, 0xfa, 0x57, 0x5a,
0x85, 0x9d, 0x42, 0x10, 0x42, 0xa1, 0xe5, 0x65,
0x55, 0x5d, 0x5f, 0x97, 0x24, 0x83, 0x61, 0x7e,
0x7e, 0x03, 0x81, 0xce, 0xce, 0x8e, 0x8e, 0xee,
0x6e, 0xbf, 0x9f, 0x61, 0x18, 0xc6, 0x6c, 0x56,
0x55, 0xab, 0xd5, 0x6a, 0xb5, 0xd9, 0x80, 0x68,
0x34, 0x12, 0x11, 0x04, 0xa0, 0xae, 0xee, 0xc0,
0x81, 0xa2, 0x22, 0xad, 0x37, 0xf9, 0xe7, 0x60,
0xb3, 0x91, 0x3d, 0x18, 0x8b, 0xad, 0xad, 0xc5,
0xe3, 0x8a, 0xe2, 0x72, 0xc5, 0x62, 0x6f, 0xde,
0xe8, 0x9b, 0x9a, 0x4e, 0x37, 0x10, 0x84, 0x95,
0x95, 0x95, 0x95, 0x78, 0x5c, 0x51, 0x48, 0xa2,
0x5e, 0xbc, 0x78, 0xf5, 0xea, 0xdd, 0x3b, 0xa0,
0xb0, 0x90, 0xe7, 0x1d, 0x0e, 0x20, 0x1c, 0x5e,
0x5b, 0x23, 0x4d, 0x9b, 0x76, 0xd6, 0x90, 0x2b,
0xad, 0x5e, 0x6a, 0x85, 0x29, 0x79, 0x4c, 0x9e,
0xff, 0x9e, 0x5d, 0xfa, 0xa8, 0xaa, 0x00, 0xcb,
0x9a, 0x4c, 0x06, 0x03, 0x30, 0x37, 0xe7, 0xf7,
0x07, 0x83, 0xa2, 0x48, 0xbc, 0x1c, 0x1b, 0xd3,
0xfc, 0x35, 0xa6, 0x13, 0xe0, 0x38, 0x8b, 0x85,
0xe3, 0x06, 0x06, 0x3e, 0x7f, 0x9e, 0x9a, 0xf2,
0x7a, 0x4b, 0x4b, 0x0b, 0x0b, 0x5d, 0xae, 0xb2,
0x32, 0xc0, 0x62, 0xc9, 0xcb, 0x2b, 0x29, 0x01,
0x7c, 0xbe, 0x70, 0x38, 0x91, 0x00, 0xd6, 0xd7,
0x25, 0x29, 0xb5, 0xc4, 0xa7, 0x56, 0x58, 0x72,
0xe6, 0xeb, 0x9d, 0xa5, 0x36, 0xaf, 0xcf, 0xe9,
0x25, 0x6e, 0xb3, 0x9c, 0xe6, 0xe4, 0x58, 0x2c,
0x19, 0x19, 0x80, 0x24, 0x91, 0x3a, 0xe1, 0x76,
0x7b, 0x3c, 0xd3, 0xd3, 0x73, 0x73, 0x6f, 0xdf,
0x12, 0xa5, 0x6c, 0x49, 0x80, 0x7c, 0x66, 0x68,
0x88, 0xb4, 0x14, 0x8d, 0x8d, 0x05, 0x05, 0x7b,
0xf6, 0x14, 0x17, 0x03, 0xa1, 0x50, 0x34, 0x2a,
0x49, 0x80, 0xdf, 0x1f, 0x0a, 0xc5, 0xe3, 0x9b,
0x25, 0x9b, 0xa2, 0xb4, 0x4a, 0x90, 0xdc, 0x0e,
0x53, 0x54, 0xea, 0x7c, 0xf2, 0xba, 0x54, 0x3b,
0xfd, 0xfb, 0x14, 0x05, 0x24, 0x12, 0xc4, 0xf1,
0xc1, 0xc1, 0xc1, 0x41, 0xb7, 0x5b, 0x14, 0x79,
0x7e, 0x75, 0xf5, 0xfd, 0xfb, 0x7b, 0xf7, 0xd2,
0xbf, 0x9a, 0x46, 0xc0, 0x64, 0x9a, 0x9f, 0x9f,
0x9f, 0xf7, 0xf9, 0xdc, 0x6e, 0xab, 0x35, 0x2b,
0xcb, 0x6a, 0x55, 0x94, 0xfa, 0x7a, 0xa7, 0x93,
0xe7, 0x69, 0x7a, 0x6c, 0x6c, 0x71, 0x51, 0x92,
0x36, 0x8b, 0x7c, 0x2a, 0xf5, 0xf4, 0xeb, 0xf4,
0xa3, 0x32, 0x3d, 0x2b, 0xe9, 0x76, 0x3c, 0x6f,
0xb3, 0x99, 0x4c, 0x80, 0x28, 0xca, 0xb2, 0xa2,
0x00, 0xe3, 0xe3, 0x1e, 0x8f, 0xdb, 0xbd, 0xb4,
0xf4, 0xfa, 0x75, 0x47, 0x47, 0x77, 0xf7, 0xd3,
0xa7, 0xdb, 0x10, 0xc8, 0xcd, 0x1d, 0x1d, 0x1d,
0x1d, 0x1d, 0x1d, 0xe5, 0xb8, 0x82, 0x82, 0xc2,
0xc2, 0x82, 0x02, 0x9a, 0xee, 0xeb, 0xfb, 0xf4,
0x69, 0x75, 0x15, 0x3f, 0x00, 0x22, 0x05, 0x4d,
0x26, 0xc9, 0x92, 0x49, 0x95, 0xcf, 0xc6, 0x88,
0x27, 0xdb, 0x49, 0x92, 0x24, 0x91, 0xe7, 0x91,
0x48, 0x20, 0x20, 0xcb, 0xc0, 0xea, 0xea, 0xc2,
0x42, 0x57, 0x17, 0x59, 0xab, 0x35, 0xf8, 0x7a,
0x08, 0xd3, 0x08, 0x44, 0x22, 0xc1, 0x60, 0x30,
0x18, 0x0c, 0x4e, 0x4e, 0x8e, 0x8c, 0x0c, 0x0f,
0x0f, 0x0f, 0xdf, 0xbd, 0xcb, 0x71, 0x16, 0x8b,
0xc7, 0x73, 0xfb, 0xf6, 0x8f, 0x50, 0xf8, 0x9d,
0x90, 0xa4, 0xe5, 0xe5, 0xc9, 0xc9, 0xa9, 0xa9,
0xe1, 0xe1, 0x9e, 0x9e, 0x47, 0x8f, 0xda, 0xda,
0xc8, 0xac, 0xd6, 0xd6, 0x09, 0xc2, 0xb7, 0x8c,
0x6e, 0x6e, 0xce, 0x30, 0x64, 0x64, 0xd9, 0x54,
0x43, 0x6d, 0xa4, 0x69, 0xfc, 0x51, 0x68, 0x39,
0x4a, 0x24, 0xc8, 0xa8, 0x69, 0x20, 0x14, 0x22,
0xe3, 0xda, 0xda, 0x36, 0x04, 0xb6, 0x82, 0xe6,
0xf8, 0x4e, 0x9a, 0x80, 0x5f, 0x81, 0x26, 0x99,
0x7f, 0xa3, 0x84, 0xfe, 0x8f, 0xef, 0xe3, 0x6f,
0xc7, 0x72, 0xa6, 0x5a, 0xf7, 0x8f, 0xb0, 0xcc,
0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44,
0xae, 0x42, 0x60, 0x82};

View File

@@ -1,229 +0,0 @@
/* document_print.png - 544 bytes */
static const unsigned char document_print_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x11, 0x00,
0x00, 0x0b, 0x11, 0x01, 0x7f, 0x64, 0x5f, 0x91,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd5, 0x0b, 0x15, 0x12, 0x0d, 0x2f, 0x9f,
0xed, 0x85, 0x8a, 0x00, 0x00, 0x01, 0xad, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0xa5, 0x93, 0xcd,
0x8a, 0x13, 0x41, 0x14, 0x85, 0xbf, 0x7b, 0x33,
0x8b, 0xbc, 0x40, 0x76, 0x0d, 0x59, 0xa9, 0xab,
0xd0, 0x04, 0xe3, 0x26, 0x44, 0x07, 0x1f, 0xc2,
0x9f, 0x77, 0x10, 0xc1, 0x07, 0xd0, 0x1e, 0x67,
0x40, 0x10, 0x11, 0x74, 0x44, 0x7d, 0x86, 0x49,
0xf2, 0x04, 0xc9, 0x46, 0x46, 0xc2, 0x6c, 0xb2,
0x4c, 0x56, 0x13, 0x77, 0x2a, 0x04, 0x3a, 0x7f,
0x24, 0x81, 0xe9, 0x4e, 0xa7, 0xaa, 0x5c, 0x68,
0x1a, 0xdb, 0x44, 0x47, 0xb4, 0xa0, 0x16, 0xf7,
0x52, 0xf7, 0xd4, 0xe1, 0x7c, 0x55, 0xf0, 0x9f,
0x4b, 0x7e, 0x2e, 0x1a, 0xcd, 0xfa, 0x21, 0x10,
0xfc, 0xc5, 0xdc, 0xd1, 0xdd, 0x3b, 0xf7, 0x0e,
0xb6, 0xba, 0x8d, 0x66, 0xdd, 0xc5, 0x71, 0x9c,
0xd9, 0xcf, 0x5f, 0x3c, 0xcb, 0xd4, 0x51, 0x14,
0xb9, 0x46, 0xb3, 0xee, 0x36, 0x33, 0x7b, 0xbb,
0xe4, 0xbb, 0xdd, 0x2e, 0x00, 0x9d, 0xb3, 0x53,
0x00, 0x5e, 0x1d, 0xbf, 0xa4, 0x56, 0xdd, 0x07,
0xa0, 0x52, 0xa9, 0x64, 0xce, 0xea, 0x2e, 0x81,
0x52, 0xa9, 0x94, 0x0e, 0x6f, 0x56, 0xe7, 0xec,
0x14, 0xdf, 0xf7, 0x71, 0xce, 0x65, 0xfa, 0x5b,
0x0e, 0xac, 0xb5, 0xf4, 0x7a, 0x3d, 0x6a, 0xd5,
0x7d, 0x54, 0x95, 0x8f, 0x9d, 0x0f, 0xdc, 0xaa,
0xdd, 0x46, 0x44, 0xe8, 0xf7, 0xfb, 0x94, 0xcb,
0xe5, 0x3f, 0x0b, 0x00, 0x78, 0x9e, 0x87, 0xaa,
0x22, 0xf2, 0x3d, 0xe3, 0x62, 0xb1, 0x88, 0x88,
0x20, 0x22, 0x97, 0x3b, 0x70, 0xce, 0x51, 0x28,
0x14, 0xd2, 0xfa, 0xe1, 0x83, 0x47, 0x29, 0x2c,
0x91, 0xdf, 0x60, 0x7c, 0x12, 0x3c, 0x3e, 0x04,
0x82, 0x7c, 0x3e, 0xcf, 0xd5, 0x2b, 0xd7, 0xb0,
0xd6, 0xa2, 0xba, 0x1d, 0x8f, 0xb5, 0x16, 0x11,
0x61, 0xf0, 0xe9, 0x9c, 0x28, 0x8a, 0x00, 0x8e,
0x36, 0x0e, 0x82, 0x83, 0xe0, 0x29, 0xc6, 0x18,
0x92, 0x24, 0xb9, 0xf4, 0x11, 0xcc, 0xe7, 0x35,
0x54, 0x95, 0x77, 0xef, 0xdf, 0x06, 0xe9, 0x35,
0x22, 0xc2, 0x60, 0x30, 0x20, 0x8e, 0x63, 0xda,
0xed, 0x36, 0xce, 0x39, 0xc2, 0x30, 0x64, 0x3a,
0x9d, 0x32, 0x1e, 0x8f, 0x99, 0x4c, 0x26, 0x8c,
0x46, 0x23, 0x86, 0xc3, 0x21, 0xad, 0x56, 0x8b,
0xaf, 0x5f, 0x3e, 0x67, 0x33, 0x58, 0x2c, 0x16,
0x44, 0x17, 0x17, 0xcc, 0x66, 0x33, 0x7c, 0xdf,
0x27, 0x0c, 0x43, 0x00, 0x92, 0x24, 0x49, 0xad,
0x03, 0x18, 0x63, 0x18, 0x8f, 0x42, 0xa2, 0x78,
0x95, 0x15, 0x50, 0x55, 0xe6, 0x8b, 0x05, 0xed,
0x76, 0x8b, 0xe5, 0x72, 0x09, 0xc0, 0x7a, 0xbd,
0x46, 0x45, 0xb0, 0xd6, 0xb0, 0x36, 0x06, 0xd5,
0x1c, 0x7b, 0xb9, 0x1c, 0xd5, 0xda, 0xcd, 0xdd,
0x14, 0x8c, 0x31, 0x5c, 0xaf, 0xdc, 0x48, 0x69,
0xfc, 0xe0, 0x82, 0xb5, 0x0e, 0x63, 0x0c, 0xaa,
0x9a, 0xe2, 0xdd, 0x84, 0x9c, 0x0a, 0xac, 0x56,
0x2b, 0x3c, 0xcf, 0x4b, 0xad, 0xfe, 0xca, 0x7b,
0x43, 0x41, 0x55, 0x71, 0xce, 0x61, 0xad, 0xcd,
0x08, 0x9c, 0x1c, 0xbf, 0x79, 0x7d, 0xff, 0x1f,
0x7e, 0xf3, 0xc9, 0x37, 0xc1, 0x23, 0xd9, 0x67,
0xfd, 0x0b, 0xc3, 0xc3, 0x00, 0x00, 0x00, 0x00,
0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
/* document_print.png - 1230 bytes */
static const unsigned char document_print_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x04,
0x59, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xed,
0x57, 0xcf, 0x6f, 0x12, 0x5b, 0x14, 0xfe, 0x66,
0xfa, 0x06, 0x06, 0x25, 0xa6, 0x6d, 0x5a, 0x50,
0x4c, 0x51, 0x44, 0x58, 0xb0, 0xa8, 0x0b, 0x8c,
0xd5, 0x98, 0x68, 0x6c, 0x4c, 0x34, 0xae, 0xfc,
0xd5, 0x98, 0xa6, 0xba, 0xc7, 0xbf, 0xc1, 0x68,
0x22, 0xd5, 0xa8, 0x0b, 0xd7, 0xba, 0xd1, 0x18,
0xca, 0xc2, 0x34, 0x56, 0x4c, 0x4d, 0x8c, 0xc6,
0x14, 0xd0, 0x60, 0xca, 0xa2, 0x3b, 0x96, 0x6a,
0x4d, 0x14, 0x6c, 0xc0, 0x05, 0x03, 0xc8, 0xcf,
0x61, 0xe6, 0xba, 0xb8, 0xbd, 0xef, 0x96, 0x5f,
0x85, 0xda, 0xfa, 0x5e, 0x5e, 0xf2, 0xce, 0xe6,
0xcb, 0xb9, 0x5c, 0xce, 0xfd, 0xbe, 0x73, 0xce,
0x9c, 0xb9, 0x03, 0xfc, 0x6f, 0xff, 0xae, 0x09,
0x1b, 0xfd, 0x43, 0x28, 0xf4, 0xe2, 0xc5, 0xf3,
0xe7, 0xcf, 0x9e, 0x51, 0xef, 0xc2, 0x85, 0xad,
0xa5, 0x33, 0x37, 0x77, 0xee, 0xdc, 0xd9, 0xb3,
0xe7, 0xcf, 0x5f, 0xbc, 0xf8, 0xc7, 0x14, 0x53,
0x01, 0xe4, 0x6f, 0xd3, 0x34, 0x4d, 0xd3, 0xb4,
0xdf, 0x47, 0x66, 0x2c, 0xee, 0x46, 0xf9, 0xfc,
0xb5, 0x59, 0x41, 0xc9, 0x64, 0x32, 0x99, 0x4c,
0x02, 0x99, 0x4c, 0x26, 0x93, 0xc9, 0xf0, 0xf5,
0x48, 0x24, 0x12, 0x59, 0x58, 0x00, 0x04, 0x41,
0x10, 0x04, 0x01, 0x18, 0x1f, 0x1f, 0x1f, 0x3f,
0x79, 0x92, 0xfb, 0x36, 0x9b, 0xcd, 0x66, 0xb3,
0x01, 0x56, 0xab, 0xd5, 0x6a, 0xb5, 0x36, 0x47,
0x15, 0x56, 0x3b, 0xa3, 0xbb, 0x20, 0x71, 0xab,
0x2a, 0x63, 0xb1, 0x58, 0x2c, 0x16, 0x0b, 0xb0,
0xb8, 0xb8, 0xb8, 0xf8, 0xe1, 0x03, 0x60, 0x32,
0x99, 0x4c, 0x26, 0x13, 0x20, 0xcb, 0xb2, 0x2c,
0xcb, 0x7c, 0x9d, 0x11, 0x17, 0x45, 0x51, 0x14,
0x3b, 0x9e, 0x2e, 0xf6, 0xcc, 0x6b, 0xcb, 0x04,
0xcc, 0xce, 0xce, 0xce, 0x3e, 0x7d, 0x0a, 0x54,
0xab, 0xd5, 0x6a, 0xb5, 0x0a, 0x54, 0x2a, 0x95,
0x4a, 0xa5, 0xd2, 0x8a, 0xc1, 0x60, 0x30, 0x18,
0x08, 0xf0, 0x4a, 0x6c, 0x56, 0xc0, 0xa6, 0x5b,
0x88, 0x11, 0x99, 0x9c, 0x9c, 0x9c, 0x9c, 0x9a,
0xe2, 0x7e, 0x28, 0x14, 0x0a, 0xcd, 0xcd, 0xf1,
0x7d, 0x13, 0x13, 0x13, 0x13, 0x97, 0x2e, 0xf1,
0xcc, 0xaf, 0x2f, 0x40, 0x55, 0x7b, 0x3d, 0xbf,
0x67, 0xa5, 0xd7, 0xaf, 0xdf, 0xb8, 0x71, 0xed,
0x9a, 0xd7, 0xdb, 0x9a, 0x2b, 0x4a, 0x28, 0x9d,
0x4e, 0xa7, 0xd3, 0x69, 0x8e, 0x92, 0x24, 0x49,
0x92, 0x04, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0e,
0xb6, 0x12, 0xef, 0xd4, 0x42, 0x9d, 0xce, 0xf9,
0x6d, 0x01, 0x34, 0xe0, 0xe5, 0xcb, 0xd4, 0x5b,
0x5a, 0xea, 0x54, 0x01, 0xd6, 0xdb, 0x0c, 0x47,
0x47, 0x47, 0x47, 0x0f, 0x1c, 0x00, 0x9c, 0x4e,
0xa7, 0xd3, 0xe9, 0xe4, 0x84, 0x9b, 0xb1, 0xbd,
0x2d, 0x2d, 0x35, 0x9e, 0xbb, 0x4e, 0xb3, 0xf5,
0x46, 0x7c, 0x66, 0xc6, 0xef, 0xbf, 0x79, 0xf3,
0xd6, 0x2d, 0xfe, 0x7b, 0xa1, 0x50, 0x28, 0x14,
0x0a, 0xdc, 0xd7, 0x75, 0x5d, 0xd7, 0x75, 0x80,
0x8e, 0x47, 0xc0, 0x6e, 0xb7, 0xdb, 0xf7, 0xec,
0x01, 0x46, 0x46, 0x46, 0x46, 0xec, 0x76, 0xfe,
0x0c, 0x94, 0xcb, 0xe5, 0x72, 0xb9, 0x0c, 0x14,
0x8b, 0xc5, 0x62, 0xb1, 0xd8, 0x1a, 0xc7, 0xed,
0x76, 0xb9, 0x5c, 0x2e, 0xe6, 0xcd, 0xcc, 0x50,
0x1e, 0x53, 0x53, 0xac, 0xde, 0x2d, 0x09, 0xec,
0x95, 0x78, 0x3e, 0x9f, 0xcb, 0x65, 0xb3, 0x40,
0x38, 0x1c, 0x8d, 0x46, 0xa3, 0x40, 0x24, 0x12,
0x0e, 0x87, 0xc3, 0x94, 0xb8, 0xa6, 0xf5, 0x5a,
0xf0, 0x56, 0xdb, 0xbd, 0x9b, 0x56, 0xcc, 0xe5,
0xa2, 0xc4, 0x0f, 0x1f, 0x3e, 0x72, 0xe4, 0xe8,
0x51, 0x60, 0x65, 0x65, 0x65, 0xe5, 0xfb, 0x77,
0x60, 0x7e, 0xfe, 0xe5, 0xcb, 0xf9, 0x79, 0xb6,
0xfb, 0xca, 0x95, 0xe9, 0x69, 0xbf, 0xff, 0xf6,
0xed, 0x60, 0xb0, 0x4b, 0xcb, 0x90, 0x16, 0xa3,
0x99, 0x23, 0x7f, 0xdc, 0xe8, 0x33, 0xc4, 0x31,
0x91, 0x48, 0x24, 0x12, 0x09, 0x42, 0x18, 0xaf,
0x66, 0xbe, 0x1d, 0xa7, 0x50, 0x2e, 0xa7, 0x28,
0xd9, 0x2c, 0x10, 0x8d, 0xbe, 0x7b, 0xf7, 0xfe,
0x3d, 0x30, 0x36, 0x36, 0x36, 0x76, 0xe8, 0x10,
0x30, 0x34, 0x34, 0x34, 0x34, 0x3c, 0x0c, 0xc4,
0xe3, 0xf1, 0x78, 0x3c, 0x0e, 0x78, 0x3c, 0x1e,
0x8f, 0xc7, 0x03, 0xd0, 0xe3, 0x5b, 0x7b, 0x9b,
0xb5, 0x54, 0x73, 0xa5, 0x08, 0xd1, 0x75, 0x42,
0x00, 0x41, 0x10, 0xc5, 0x76, 0x1d, 0x1e, 0x08,
0x04, 0x02, 0x4f, 0x9e, 0x00, 0x5e, 0xaf, 0xd7,
0x7b, 0xf0, 0x60, 0xe7, 0x0a, 0x76, 0x14, 0xf0,
0xed, 0x5b, 0x32, 0x99, 0x4a, 0x01, 0xa9, 0x54,
0x2a, 0x95, 0x4a, 0x01, 0x66, 0xb3, 0xd9, 0x6c,
0x36, 0x03, 0xb1, 0x58, 0x2c, 0x16, 0x8b, 0x01,
0x0e, 0x87, 0xc3, 0xb1, 0x77, 0x2f, 0x5d, 0xdf,
0xbe, 0x7d, 0xb5, 0x1f, 0xd7, 0x4c, 0x17, 0x26,
0xa8, 0x79, 0x5c, 0x6a, 0x5a, 0xbd, 0x5e, 0xaf,
0xb7, 0x9e, 0x47, 0x08, 0x21, 0xba, 0x0e, 0xd4,
0x6a, 0xb5, 0x9a, 0xaa, 0x02, 0xd9, 0x6c, 0x36,
0x9b, 0xcd, 0x52, 0xbf, 0xdd, 0xfe, 0xae, 0x02,
0xd8, 0xc1, 0x8c, 0xc8, 0xf4, 0xb4, 0xdf, 0xef,
0xf7, 0x03, 0xaa, 0x5a, 0xaf, 0xd7, 0x6a, 0x34,
0xb3, 0xba, 0xde, 0x8e, 0x28, 0x2d, 0x33, 0x21,
0x8d, 0x17, 0x01, 0x46, 0x70, 0xed, 0xca, 0xda,
0x4a, 0x18, 0x0c, 0xb2, 0x6c, 0x30, 0xf0, 0xb8,
0xec, 0x4d, 0x5e, 0xaf, 0xb7, 0x17, 0xdc, 0x55,
0x80, 0xa2, 0x28, 0x8a, 0xa2, 0x00, 0x6e, 0xb7,
0xdb, 0xed, 0x72, 0x01, 0x3b, 0x77, 0x5a, 0xad,
0x16, 0x0b, 0xa0, 0x28, 0xb9, 0x9c, 0xa2, 0xf0,
0x79, 0x40, 0xc9, 0x37, 0x12, 0x25, 0x84, 0x0a,
0x55, 0x55, 0xe0, 0xe7, 0x4f, 0x3a, 0x65, 0x4a,
0xa5, 0x52, 0xa9, 0x5c, 0x06, 0x44, 0xb1, 0xaf,
0x4f, 0x10, 0xb8, 0x60, 0x41, 0x10, 0x84, 0xb5,
0x2d, 0xc7, 0x2a, 0x68, 0x34, 0x1a, 0x0c, 0x92,
0x84, 0xae, 0xd6, 0x51, 0x00, 0x53, 0xce, 0x32,
0xc9, 0x5a, 0xc5, 0x68, 0x94, 0x65, 0xa3, 0x91,
0x8f, 0x45, 0x96, 0x49, 0x4d, 0xa3, 0x63, 0x94,
0x99, 0xae, 0xd3, 0xde, 0xef, 0xef, 0xef, 0xef,
0x1f, 0x1c, 0xe4, 0xc2, 0x08, 0xa1, 0xcf, 0x82,
0xae, 0xd3, 0x8a, 0xf0, 0x75, 0x8a, 0x6c, 0x1c,
0x13, 0x42, 0x88, 0x20, 0xf0, 0xab, 0x49, 0xa3,
0x31, 0xc9, 0xba, 0xde, 0x41, 0xc0, 0xc3, 0x87,
0x0b, 0x0b, 0xe1, 0xf0, 0xdb, 0xb7, 0x3e, 0xdf,
0xe9, 0xd3, 0xa7, 0x4e, 0x9d, 0x39, 0x03, 0xbc,
0x7e, 0xfd, 0xe6, 0xcd, 0xab, 0x57, 0xdd, 0x33,
0xb2, 0x55, 0xb6, 0x6f, 0x9f, 0xc3, 0xb1, 0x7f,
0x3f, 0xf0, 0xf9, 0xf3, 0xf2, 0xf2, 0xc7, 0x8f,
0x4c, 0x08, 0x63, 0xb0, 0x8e, 0x80, 0x5a, 0x4d,
0x55, 0x55, 0xf5, 0xf1, 0x63, 0x83, 0x41, 0x92,
0x24, 0xc9, 0xe7, 0xcb, 0xe7, 0xf3, 0x79, 0x45,
0x01, 0x8e, 0x1f, 0x3f, 0x76, 0xec, 0xc4, 0x89,
0xee, 0x57, 0x01, 0x66, 0x9a, 0xa6, 0x69, 0xac,
0x77, 0x9b, 0xa7, 0x0c, 0xcb, 0x74, 0xbb, 0xf7,
0x87, 0xaa, 0xaa, 0x6a, 0xbd, 0xce, 0x5b, 0x6e,
0x79, 0xf9, 0xcb, 0x97, 0x4f, 0x9f, 0xe8, 0x75,
0xfd, 0xc7, 0x8f, 0xfb, 0xf7, 0x79, 0x84, 0xd5,
0xd8, 0x9d, 0x08, 0xd0, 0xb9, 0xfb, 0xe0, 0x01,
0xf5, 0x7c, 0xbe, 0x7f, 0x2e, 0xf7, 0xed, 0x04,
0x3d, 0x7a, 0x74, 0xf7, 0xee, 0x9d, 0x3b, 0xf7,
0xee, 0x5d, 0xbd, 0xca, 0x56, 0xbb, 0x0a, 0x68,
0x34, 0x96, 0x43, 0x93, 0x89, 0x62, 0x7f, 0x3f,
0xc5, 0xe1, 0x61, 0x8a, 0xbb, 0x76, 0x51, 0xdc,
0xb1, 0x83, 0xe2, 0xb6, 0x6d, 0x8d, 0xc8, 0x9e,
0x0e, 0x16, 0x87, 0xf9, 0xec, 0x12, 0x91, 0x4e,
0x53, 0xfc, 0xfa, 0x95, 0x22, 0xfb, 0x34, 0x2a,
0x95, 0x28, 0xb2, 0x5a, 0x35, 0xce, 0xb1, 0x0d,
0x08, 0x68, 0x36, 0xd6, 0x3c, 0x7d, 0x7d, 0x14,
0xd9, 0xbc, 0x60, 0xbe, 0x2c, 0x37, 0xae, 0x37,
0x0b, 0x60, 0x84, 0x58, 0x26, 0xcb, 0xe5, 0x46,
0x9f, 0xed, 0xdf, 0xf8, 0x27, 0xe6, 0x7f, 0xce,
0x7e, 0x01, 0x3d, 0x5a, 0x60, 0xf5, 0xf2, 0x06,
0x15, 0x25, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45,
0x4e, 0x44, 0xae, 0x42, 0x60, 0x82};

View File

@@ -1,340 +0,0 @@
/* document_save.png - 911 bytes */
static const unsigned char document_save_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9,
0x43, 0xbb, 0x7f, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd5, 0x0b, 0x0a, 0x0d, 0x37, 0x0f, 0x9e,
0x2a, 0xd8, 0xbf, 0x00, 0x00, 0x00, 0x8c, 0x74,
0x45, 0x58, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x65,
0x6e, 0x74, 0x00, 0x4d, 0x65, 0x6e, 0x75, 0x2d,
0x73, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x69, 0x63,
0x6f, 0x6e, 0x0a, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x0a, 0x28,
0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x33, 0x20,
0x4a, 0x61, 0x6b, 0x75, 0x62, 0x20, 0x27, 0x6a,
0x69, 0x6d, 0x6d, 0x61, 0x63, 0x27, 0x20, 0x53,
0x74, 0x65, 0x69, 0x6e, 0x65, 0x72, 0x2c, 0x20,
0x0a, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f,
0x6a, 0x69, 0x6d, 0x6d, 0x61, 0x63, 0x2e, 0x6d,
0x75, 0x73, 0x69, 0x63, 0x68, 0x61, 0x6c, 0x6c,
0x2e, 0x63, 0x7a, 0x0a, 0x0a, 0x63, 0x72, 0x65,
0x61, 0x74, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74,
0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x47, 0x49,
0x4d, 0x50, 0x2c, 0x0a, 0x68, 0x74, 0x74, 0x70,
0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x67,
0x69, 0x6d, 0x70, 0x2e, 0x6f, 0x72, 0x67, 0x67,
0x8a, 0xc7, 0x47, 0x00, 0x00, 0x02, 0x84, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0x9d, 0x92, 0x4d,
0x48, 0x54, 0x61, 0x14, 0x86, 0x9f, 0xb9, 0xdd,
0xf1, 0xe6, 0xcf, 0xe4, 0x4c, 0xe0, 0xb5, 0x31,
0xcd, 0x91, 0xb2, 0x51, 0x6c, 0x51, 0x51, 0x34,
0x26, 0x14, 0xb8, 0xc8, 0x16, 0x45, 0x14, 0x2e,
0x42, 0x28, 0x2c, 0x82, 0x8a, 0xa9, 0xc1, 0x56,
0x2d, 0x2a, 0xca, 0x45, 0x11, 0x54, 0x10, 0x06,
0x52, 0xb4, 0x28, 0x0a, 0x22, 0xb0, 0x28, 0x28,
0x6a, 0x5b, 0xd0, 0x22, 0x89, 0x44, 0x8a, 0xa6,
0x45, 0x99, 0x54, 0x6a, 0x86, 0xa4, 0xe8, 0xdc,
0x9b, 0xce, 0xfd, 0xf9, 0x4e, 0x0b, 0x61, 0x6c,
0xb2, 0x36, 0xbd, 0x9b, 0xf3, 0xc1, 0xe1, 0x3c,
0x9c, 0xf7, 0x3d, 0x5f, 0xe0, 0xc8, 0xd9, 0xe3,
0x27, 0x3f, 0x5b, 0x15, 0xda, 0xd8, 0xb8, 0x33,
0x09, 0x54, 0x01, 0x5b, 0x81, 0x86, 0xa0, 0x26,
0xd9, 0xd0, 0xc2, 0x9f, 0x3f, 0x16, 0x19, 0xce,
0xcd, 0xbb, 0xe7, 0xcf, 0x9d, 0xe0, 0x1f, 0x0a,
0x34, 0x77, 0x74, 0xed, 0x8d, 0xad, 0xac, 0x8f,
0x55, 0x97, 0x9b, 0x83, 0xab, 0x6b, 0xca, 0x3a,
0xaa, 0x23, 0x85, 0x6b, 0x6d, 0xcf, 0x27, 0xfd,
0x2d, 0xc3, 0xeb, 0xde, 0xe7, 0xea, 0xc3, 0xd7,
0x51, 0xe2, 0x91, 0x37, 0xcb, 0xba, 0x3b, 0xef,
0x0c, 0xff, 0x15, 0x90, 0x3c, 0x7d, 0xbe, 0xdb,
0x9d, 0x1a, 0x3b, 0xec, 0x89, 0xc6, 0xa8, 0x1f,
0x66, 0xda, 0x28, 0x63, 0x81, 0x1e, 0xa4, 0xad,
0x65, 0x23, 0xcb, 0x2b, 0x16, 0x73, 0xf9, 0xfe,
0x0b, 0xfc, 0xa1, 0x3e, 0x62, 0x05, 0xe3, 0x7f,
0x9b, 0xef, 0x24, 0x79, 0x2c, 0x25, 0x5f, 0x46,
0x06, 0x44, 0x44, 0x64, 0xe0, 0x73, 0x5a, 0x7a,
0xd3, 0x03, 0x92, 0xba, 0xf6, 0x44, 0x12, 0x07,
0x2f, 0x48, 0xcf, 0xab, 0x2f, 0xd2, 0xf5, 0xf4,
0xad, 0xb4, 0x9e, 0xba, 0x2e, 0xef, 0x06, 0x87,
0xe5, 0x77, 0x59, 0x96, 0x25, 0xa9, 0x8e, 0xa4,
0xe8, 0x86, 0xee, 0xb3, 0xb4, 0x3c, 0xc6, 0xc4,
0xc4, 0x04, 0xe1, 0x92, 0x72, 0xb4, 0xc0, 0x24,
0x85, 0xe2, 0x00, 0xd0, 0xf7, 0x71, 0x14, 0xb3,
0x44, 0xe7, 0xfb, 0x78, 0x86, 0xf7, 0x03, 0x9f,
0x58, 0xb2, 0xa8, 0x10, 0x02, 0x00, 0x42, 0x41,
0x41, 0x01, 0x00, 0xba, 0xe7, 0x82, 0x28, 0xc1,
0x57, 0x8a, 0xed, 0x27, 0x6e, 0xcc, 0xdb, 0xb1,
0x77, 0x70, 0x02, 0xd7, 0xf3, 0xb9, 0xd8, 0xf3,
0x92, 0x8b, 0x3d, 0x2f, 0x01, 0x78, 0x7c, 0x76,
0x1f, 0xc8, 0x6c, 0x5f, 0x03, 0x50, 0xa2, 0x50,
0xbe, 0xa2, 0xeb, 0x50, 0x23, 0x00, 0xed, 0xbb,
0x77, 0xd2, 0x98, 0x58, 0xc7, 0xcc, 0x8c, 0x4d,
0x34, 0xa4, 0xd1, 0x94, 0x58, 0xcf, 0xde, 0xd6,
0xed, 0x00, 0xec, 0x69, 0x5e, 0x81, 0xf2, 0x15,
0x22, 0x32, 0x07, 0x10, 0x11, 0x22, 0x91, 0x30,
0x15, 0x65, 0x31, 0x2e, 0x1d, 0x58, 0xc7, 0xcd,
0xbb, 0x0f, 0x88, 0xc7, 0xaa, 0xd0, 0x08, 0xa0,
0x11, 0x20, 0x51, 0x5f, 0xcd, 0xad, 0x7b, 0x8f,
0x68, 0xdb, 0x5c, 0xc3, 0x8e, 0xa6, 0xf5, 0x14,
0x15, 0x17, 0xe5, 0x03, 0x00, 0x2c, 0xcb, 0xc2,
0x34, 0x4d, 0xaa, 0xa3, 0xb5, 0x39, 0x48, 0xe3,
0xaa, 0xe5, 0xd4, 0xc6, 0x2a, 0xb9, 0x7c, 0xfb,
0x21, 0x6d, 0x9b, 0x6b, 0xd8, 0xb5, 0x29, 0x81,
0x69, 0x9a, 0x38, 0x8e, 0x93, 0xb3, 0xa8, 0x03,
0x28, 0xa5, 0xb0, 0x6d, 0x1b, 0x00, 0xd3, 0x34,
0x31, 0x4d, 0x93, 0xee, 0xa3, 0x85, 0x1c, 0xbb,
0xda, 0x43, 0xd6, 0xf5, 0xd9, 0xdf, 0x52, 0x4f,
0xfb, 0xb6, 0x2d, 0x68, 0x9a, 0xc6, 0xd4, 0xd4,
0x14, 0xb6, 0x6d, 0x13, 0x0a, 0x85, 0xe6, 0x00,
0x86, 0x61, 0x50, 0x59, 0x59, 0x99, 0x17, 0xde,
0x9a, 0x86, 0x0d, 0x3c, 0xbb, 0xb2, 0x01, 0x00,
0xdb, 0xb6, 0x71, 0x1c, 0x87, 0xe9, 0xe9, 0xe9,
0x79, 0x21, 0xeb, 0x00, 0xfd, 0xfd, 0xfd, 0xb8,
0xae, 0x9b, 0xd7, 0xf0, 0x3c, 0x0f, 0x5d, 0xd7,
0x73, 0xef, 0x3f, 0x15, 0x89, 0x44, 0xf2, 0x33,
0xf0, 0x3c, 0x8f, 0x74, 0x3a, 0xcd, 0xc8, 0xc8,
0x08, 0x99, 0x4c, 0x06, 0x11, 0x41, 0x44, 0x30,
0x0c, 0x83, 0xa1, 0xa1, 0x21, 0x42, 0xa1, 0x50,
0xae, 0x5a, 0x96, 0x85, 0x65, 0x59, 0xf9, 0x57,
0x50, 0x4a, 0x51, 0x5c, 0x5c, 0x44, 0x30, 0x18,
0xcc, 0x7d, 0x12, 0x00, 0xd7, 0x75, 0x11, 0x35,
0x0b, 0x13, 0x35, 0x7b, 0x3e, 0xe5, 0xfb, 0xf9,
0x16, 0xc2, 0xe1, 0x30, 0xa5, 0xa5, 0xa5, 0x44,
0xa3, 0x51, 0x00, 0xb2, 0xd9, 0x2c, 0x40, 0x2e,
0xed, 0x78, 0x5d, 0x1c, 0xa5, 0x14, 0xf1, 0xba,
0x3a, 0x94, 0x52, 0x2c, 0x89, 0x46, 0x73, 0x96,
0x03, 0xa9, 0x8e, 0xe4, 0x19, 0xe0, 0x34, 0xff,
0xa7, 0xce, 0x5f, 0x93, 0x3b, 0x33, 0x4c, 0xd5,
0x22, 0x62, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x49,
0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82};
/* document_save.png - 1755 bytes */
static const unsigned char document_save_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x06,
0x66, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xd5,
0x56, 0x49, 0x4c, 0x13, 0x6f, 0x14, 0x7f, 0x33,
0xa5, 0x1b, 0x1d, 0x4a, 0xa7, 0x65, 0x86, 0xb6,
0x58, 0x4a, 0x01, 0x6b, 0x11, 0x64, 0x33, 0xa0,
0xb8, 0x63, 0xe2, 0x01, 0x23, 0x46, 0x2f, 0x7a,
0xd0, 0x8b, 0x41, 0x0f, 0xa2, 0x51, 0x71, 0x09,
0xc6, 0xe5, 0xa0, 0x46, 0x03, 0x1a, 0xd1, 0x10,
0xe1, 0xe0, 0x92, 0xb8, 0x81, 0x92, 0xc8, 0xc5,
0x03, 0x1a, 0x43, 0x8c, 0xc4, 0x18, 0x15, 0x12,
0xdc, 0x11, 0x43, 0xc1, 0xda, 0x14, 0x8b, 0x94,
0xb6, 0x94, 0x4e, 0xf7, 0x65, 0xfe, 0x87, 0xc9,
0x38, 0xd8, 0xda, 0xe0, 0xfa, 0x4f, 0xfc, 0x25,
0x93, 0x2f, 0xef, 0x7d, 0xdb, 0xfb, 0xbd, 0xed,
0x1b, 0x80, 0x7f, 0x1c, 0xc8, 0x4c, 0x0b, 0x76,
0xee, 0x3c, 0x79, 0xb2, 0xbe, 0xfe, 0xca, 0x95,
0x4f, 0x9f, 0x28, 0x4a, 0xad, 0x5e, 0xb7, 0xce,
0x66, 0x73, 0x38, 0x82, 0x41, 0xb9, 0x3c, 0xd1,
0x7a, 0xb1, 0x98, 0xcf, 0xa7, 0x69, 0x8f, 0x87,
0x24, 0x31, 0xcc, 0xed, 0x1e, 0x18, 0x48, 0x4f,
0x97, 0x48, 0xde, 0xbf, 0xaf, 0xab, 0x6b, 0x6e,
0x3e, 0x7a, 0xf4, 0xce, 0x9d, 0x27, 0x4f, 0xfe,
0x37, 0x02, 0x2d, 0x2d, 0xd7, 0xae, 0xd5, 0xd5,
0x15, 0x17, 0x77, 0x76, 0xbe, 0x78, 0xa1, 0xd3,
0xf5, 0xf6, 0x66, 0x65, 0xe9, 0xf5, 0x79, 0x79,
0x81, 0x80, 0x56, 0x9b, 0x9e, 0x4e, 0x92, 0x28,
0xea, 0x76, 0x87, 0x42, 0x28, 0x2a, 0x12, 0x65,
0x64, 0x48, 0xa5, 0x22, 0x11, 0x8a, 0x7e, 0xfe,
0xec, 0x76, 0x07, 0x83, 0x00, 0x0e, 0x87, 0xcf,
0x17, 0x08, 0x00, 0x4c, 0x4e, 0x7e, 0xf8, 0xd0,
0xdd, 0x3d, 0x32, 0xe2, 0xf5, 0x7a, 0x3c, 0x7e,
0xbf, 0x50, 0xa8, 0xd3, 0xe1, 0xf8, 0xe0, 0x60,
0x7d, 0x7d, 0x6b, 0xeb, 0xb1, 0x63, 0xed, 0xed,
0x6d, 0x6d, 0x7f, 0x8a, 0x00, 0x2f, 0x91, 0xe1,
0xdd, 0xdd, 0x83, 0x83, 0x2a, 0x55, 0x67, 0x67,
0x66, 0x66, 0x61, 0xe1, 0x8a, 0x15, 0x32, 0x99,
0xc9, 0x64, 0x34, 0x0e, 0x0e, 0x0a, 0x04, 0xc3,
0xc3, 0x26, 0x93, 0xc9, 0xc4, 0xe7, 0x9b, 0xcd,
0x1f, 0x3f, 0x0e, 0x0f, 0xa3, 0xa8, 0xd9, 0x3c,
0x31, 0x61, 0xb7, 0x03, 0xf0, 0xf9, 0x29, 0x29,
0x72, 0x39, 0x00, 0x8e, 0x8b, 0x44, 0x02, 0x01,
0x80, 0x48, 0x44, 0x10, 0xb9, 0xb9, 0x38, 0x3e,
0x39, 0xe9, 0xf3, 0x45, 0xa3, 0x52, 0xe9, 0xe8,
0xa8, 0xcd, 0x26, 0x12, 0x55, 0x55, 0x55, 0x57,
0xaf, 0x59, 0xa3, 0x50, 0xf4, 0xf7, 0xf7, 0xf6,
0x3e, 0x7a, 0xf4, 0xee, 0x9d, 0xd1, 0xf8, 0xbb,
0x04, 0xd0, 0x58, 0xc5, 0xf3, 0xe7, 0x43, 0x43,
0x22, 0x51, 0x63, 0xe3, 0xac, 0x59, 0x69, 0x69,
0x49, 0x49, 0x26, 0x13, 0x45, 0x19, 0x8d, 0x0f,
0x1e, 0x7c, 0xf8, 0x50, 0x5e, 0x4e, 0x10, 0xcf,
0x9e, 0x6d, 0xde, 0xdc, 0xd3, 0xd3, 0xd4, 0x54,
0x5b, 0x8b, 0xa2, 0x4b, 0x97, 0x6a, 0xb5, 0x7d,
0x7d, 0x55, 0x55, 0xa1, 0x90, 0xcb, 0x35, 0x3a,
0x3a, 0x35, 0x65, 0xb1, 0x0c, 0x0f, 0xbf, 0x7d,
0x4b, 0xd3, 0xe3, 0xe3, 0x53, 0x53, 0x6e, 0x37,
0x80, 0xdb, 0xed, 0xf1, 0x50, 0x14, 0x00, 0x8e,
0x93, 0xa4, 0x4a, 0x05, 0x20, 0x91, 0x90, 0xa4,
0x46, 0x23, 0x14, 0xbe, 0x79, 0x63, 0xb3, 0x15,
0x15, 0xdd, 0xbe, 0xbd, 0x7f, 0xff, 0x89, 0x13,
0xd5, 0xd5, 0x12, 0xc9, 0x1f, 0x27, 0xe0, 0x74,
0x7a, 0xbd, 0x62, 0x71, 0x6e, 0x2e, 0x8f, 0x17,
0x89, 0x50, 0x94, 0xcb, 0xb5, 0x6c, 0xd9, 0xec,
0xd9, 0x16, 0xcb, 0xaa, 0x55, 0xa7, 0x4e, 0xed,
0xdb, 0x77, 0xf9, 0xf2, 0xad, 0x5b, 0xec, 0xba,
0x86, 0x86, 0x03, 0x07, 0x6e, 0xde, 0xbc, 0x7f,
0xbf, 0xac, 0x4c, 0xa3, 0xb1, 0x58, 0x8e, 0x1f,
0xa7, 0x28, 0xa7, 0xd3, 0xe9, 0x44, 0x10, 0x8f,
0x67, 0x6a, 0xca, 0xe1, 0x00, 0x08, 0x06, 0xfd,
0x7e, 0xaf, 0x97, 0x3b, 0x97, 0x24, 0x35, 0x9a,
0xd9, 0xb3, 0x51, 0x94, 0x20, 0x24, 0x92, 0x60,
0xd0, 0x6c, 0x9e, 0x98, 0x08, 0x06, 0x75, 0xba,
0xd6, 0xd6, 0xdf, 0x25, 0x10, 0x57, 0x03, 0x9b,
0x36, 0x1d, 0x3a, 0xb4, 0x77, 0xef, 0xdd, 0xbb,
0x3a, 0x9d, 0x50, 0x18, 0x0a, 0xbd, 0x7e, 0x3d,
0x35, 0xe5, 0x74, 0x46, 0xa3, 0x87, 0x0f, 0x27,
0x3a, 0x40, 0x28, 0x14, 0x8b, 0x11, 0x04, 0xe0,
0xf1, 0x63, 0x87, 0x43, 0xab, 0x05, 0xc8, 0xca,
0xca, 0xcf, 0x2f, 0x2d, 0x4d, 0x7c, 0xa1, 0x4c,
0xe6, 0xf3, 0x0d, 0x0c, 0x00, 0x4c, 0x4c, 0x7c,
0xf9, 0x32, 0x36, 0x06, 0xa0, 0x56, 0x47, 0xa3,
0x93, 0x93, 0x33, 0x99, 0x59, 0x5f, 0xdf, 0xdc,
0x7c, 0xfe, 0x7c, 0x4b, 0xcb, 0xe9, 0xd3, 0xb1,
0x33, 0x49, 0xb1, 0x0a, 0x8d, 0x46, 0x2a, 0x75,
0xbb, 0xef, 0xdd, 0xf3, 0x7a, 0xed, 0x76, 0x81,
0xa0, 0xb5, 0xb5, 0xa1, 0xe1, 0xd4, 0xa9, 0x33,
0x67, 0x66, 0xf6, 0xc4, 0xca, 0x95, 0x75, 0x75,
0x2d, 0x2d, 0x33, 0xaf, 0xf3, 0xfb, 0x15, 0x8a,
0x05, 0x0b, 0x00, 0x2c, 0x96, 0x91, 0x91, 0x9e,
0x1e, 0x80, 0xeb, 0xd7, 0xcf, 0x9d, 0x4b, 0xec,
0x1e, 0x80, 0x83, 0x07, 0x0f, 0x1d, 0x3a, 0x70,
0xa0, 0xb1, 0x91, 0x91, 0xe2, 0x09, 0xc4, 0xa5,
0x90, 0xd7, 0x3b, 0x36, 0x26, 0x10, 0x0c, 0x0d,
0xe1, 0xb8, 0x4c, 0x46, 0x10, 0x00, 0x5e, 0xaf,
0xd7, 0x3b, 0x3d, 0x15, 0x3c, 0x1e, 0x8f, 0xc7,
0xe3, 0x89, 0x1f, 0xe3, 0x0d, 0xf5, 0xf9, 0xbe,
0xa7, 0xe7, 0xf1, 0xf8, 0x7c, 0x81, 0x20, 0xf1,
0x79, 0x66, 0xb3, 0xc5, 0x62, 0x36, 0x73, 0x32,
0x41, 0x10, 0x04, 0x41, 0x00, 0xec, 0xda, 0xb5,
0x67, 0xcf, 0x8e, 0x1d, 0xc5, 0xc5, 0x33, 0x46,
0x80, 0x41, 0x4e, 0x8e, 0x52, 0xa9, 0x54, 0xaa,
0x54, 0x9c, 0x86, 0xa2, 0x98, 0xa2, 0xc4, 0x30,
0x89, 0x04, 0xc3, 0x7e, 0xdc, 0xe3, 0xb1, 0xa0,
0xe9, 0x68, 0x34, 0x1a, 0xe5, 0xe4, 0xf5, 0xeb,
0x8f, 0x1f, 0x6f, 0x6f, 0x07, 0x08, 0x87, 0x83,
0xc1, 0x60, 0x10, 0xa0, 0xa3, 0xe3, 0xf0, 0xe1,
0x0d, 0x1b, 0xb8, 0x79, 0x1c, 0xc7, 0x71, 0x1c,
0x07, 0xb0, 0xd9, 0x6c, 0x36, 0x9b, 0x4d, 0xaf,
0x67, 0xb4, 0x2f, 0x5f, 0x26, 0x8c, 0x00, 0x83,
0xb5, 0x6b, 0x4b, 0x4a, 0x8a, 0x8a, 0x4a, 0x4b,
0x01, 0x7c, 0x3e, 0x9f, 0xcf, 0xe7, 0x03, 0x40,
0x10, 0xe6, 0x8b, 0xf5, 0xb8, 0xc1, 0x50, 0x56,
0xb6, 0x7c, 0x39, 0x37, 0xa6, 0xa6, 0xe2, 0x38,
0x41, 0x70, 0xf3, 0x81, 0x40, 0x20, 0xe0, 0xf7,
0x4f, 0x97, 0x7d, 0x3e, 0xb7, 0x1b, 0x20, 0x37,
0xb7, 0xb8, 0x78, 0xe1, 0x42, 0x80, 0xec, 0xec,
0x82, 0x82, 0xb2, 0x32, 0x6e, 0x3e, 0x39, 0x59,
0x2c, 0x4e, 0x4e, 0xe6, 0xe4, 0xc5, 0x8b, 0x2b,
0x2a, 0x96, 0x2c, 0x61, 0xa5, 0x79, 0xf3, 0x62,
0x2d, 0x4d, 0x40, 0x60, 0xf5, 0x6a, 0xb5, 0x5a,
0xad, 0xce, 0xc8, 0x48, 0xec, 0xc9, 0x8b, 0x17,
0x77, 0xef, 0xae, 0xac, 0x04, 0x30, 0x1a, 0x5f,
0xbd, 0x7a, 0xfa, 0x94, 0xd3, 0x5b, 0xad, 0x16,
0xcb, 0xc8, 0x08, 0xe3, 0x6b, 0x9a, 0x06, 0x88,
0x44, 0xc2, 0xe1, 0x50, 0x88, 0x4b, 0x29, 0xb7,
0xdb, 0xe5, 0x72, 0x3a, 0xb9, 0xf5, 0x23, 0x23,
0x6f, 0xdf, 0xf6, 0xf5, 0x01, 0x5c, 0xb8, 0x50,
0x5b, 0xbb, 0x68, 0x51, 0xfc, 0x3d, 0x1a, 0x8d,
0x46, 0xa3, 0xd5, 0xb2, 0xd2, 0x91, 0x23, 0x09,
0x09, 0xb0, 0x39, 0x26, 0x16, 0x33, 0x1e, 0x10,
0x08, 0x04, 0x02, 0x81, 0x00, 0x40, 0xa1, 0x50,
0x28, 0x14, 0x8a, 0xf8, 0x83, 0x55, 0x2a, 0x82,
0xd0, 0x6a, 0x01, 0x9a, 0x9a, 0x6a, 0x6a, 0xe6,
0xcf, 0x07, 0x18, 0x1c, 0xec, 0xeb, 0xeb, 0xe9,
0x01, 0x90, 0xcb, 0x09, 0x42, 0xad, 0x06, 0x88,
0x46, 0x19, 0x02, 0xd3, 0x93, 0x87, 0xa6, 0x01,
0xa4, 0x52, 0x99, 0x4c, 0xa1, 0x00, 0x30, 0x1a,
0x5f, 0xbe, 0x7c, 0xf6, 0x8c, 0xdb, 0xaf, 0xd5,
0xaa, 0xd5, 0x6c, 0x82, 0x00, 0x00, 0x48, 0x24,
0x12, 0xc9, 0xf4, 0x57, 0x02, 0xc7, 0x71, 0x5c,
0xa1, 0x88, 0xaf, 0x85, 0x98, 0x08, 0xe8, 0xf5,
0xe9, 0xe9, 0x24, 0xa9, 0x54, 0x72, 0x1a, 0xa7,
0xd3, 0xe9, 0x74, 0x3a, 0xb9, 0x03, 0xd9, 0x11,
0x45, 0x51, 0x14, 0x45, 0x01, 0x74, 0xba, 0x8c,
0x8c, 0x39, 0x73, 0x00, 0x9a, 0x9b, 0xb7, 0x6f,
0xaf, 0xa8, 0x88, 0x27, 0x82, 0xa2, 0x08, 0x82,
0x20, 0x00, 0x18, 0x96, 0x9a, 0x2a, 0x97, 0x73,
0x86, 0xb3, 0xeb, 0xd9, 0xfd, 0xb1, 0xe7, 0xb3,
0xf7, 0xb2, 0x48, 0x4d, 0x95, 0x4a, 0x53, 0x53,
0x39, 0x3b, 0x13, 0x10, 0x98, 0x37, 0x6f, 0xee,
0xdc, 0xbc, 0xbc, 0xfc, 0x7c, 0x80, 0x50, 0x28,
0x14, 0x0a, 0x85, 0x68, 0x3a, 0x29, 0x29, 0x29,
0x89, 0xc7, 0x03, 0x70, 0xb9, 0x5c, 0x2e, 0x97,
0x8b, 0x3b, 0x58, 0x2c, 0x16, 0x8b, 0xc5, 0x62,
0xee, 0xc2, 0x82, 0x02, 0xbd, 0xbe, 0xb4, 0x14,
0xe0, 0xd2, 0xa5, 0xba, 0xba, 0xca, 0x4a, 0x8e,
0x88, 0x4c, 0x96, 0x96, 0xa6, 0x52, 0x01, 0x98,
0x4c, 0x03, 0x03, 0xfd, 0xfd, 0xdc, 0x3c, 0xbb,
0x3e, 0xd6, 0x60, 0x76, 0x8c, 0x44, 0x22, 0x91,
0x70, 0x18, 0x80, 0xa2, 0x28, 0x8a, 0xa2, 0x68,
0x3a, 0x27, 0x27, 0x3b, 0x3b, 0x27, 0x87, 0xb5,
0xb3, 0xa2, 0x22, 0x8e, 0x40, 0x20, 0x10, 0x08,
0x04, 0x02, 0x85, 0x85, 0x4a, 0xa5, 0x52, 0xa9,
0x54, 0x02, 0x60, 0x18, 0x86, 0x61, 0x18, 0x82,
0x84, 0xc3, 0xe1, 0x70, 0x24, 0x02, 0x10, 0x8d,
0x7e, 0xdb, 0x3d, 0x62, 0x2f, 0x64, 0x47, 0xb9,
0x3c, 0x25, 0x45, 0xa5, 0x02, 0x68, 0x6a, 0xda,
0xb6, 0xad, 0xac, 0x8c, 0x23, 0x72, 0xf6, 0xec,
0x96, 0x2d, 0xa5, 0xa5, 0xdc, 0x7c, 0xec, 0x3e,
0x16, 0xac, 0xe1, 0x4c, 0xcb, 0x60, 0xbb, 0x10,
0x82, 0x68, 0x34, 0x1a, 0x4d, 0x66, 0x26, 0x80,
0xdf, 0xef, 0xf7, 0x07, 0x02, 0x29, 0x29, 0xec,
0xfa, 0xaf, 0x6d, 0x54, 0x28, 0x14, 0x0a, 0x85,
0xc2, 0xb5, 0x6b, 0xf5, 0x7a, 0xbd, 0x7e, 0x7a,
0x2e, 0xb2, 0x6d, 0xec, 0x67, 0x81, 0xe3, 0x38,
0x5e, 0x5e, 0x0e, 0xf0, 0xf0, 0xe1, 0xb9, 0x73,
0xe5, 0xe5, 0x3f, 0xbf, 0x3f, 0x16, 0x06, 0x83,
0xc1, 0x60, 0x30, 0x00, 0x88, 0x44, 0x22, 0x91,
0x50, 0x58, 0x53, 0xc3, 0x68, 0xb7, 0x6e, 0x8d,
0x7b, 0x07, 0x98, 0x7e, 0x0b, 0x60, 0xb7, 0xdb,
0xed, 0x76, 0xfb, 0xcf, 0x5f, 0x44, 0xd3, 0xb1,
0xc5, 0xfb, 0x67, 0xf6, 0xb1, 0x0f, 0x5a, 0x2c,
0x92, 0x12, 0x6d, 0x08, 0x06, 0x99, 0x87, 0x85,
0xed, 0x42, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d,
0x6c, 0xa4, 0x00, 0x24, 0x12, 0x0c, 0x4b, 0x4e,
0x06, 0x48, 0x49, 0xc1, 0x30, 0xa9, 0x94, 0x2b,
0x6a, 0xb6, 0x36, 0x10, 0x84, 0x29, 0x5e, 0x56,
0x66, 0x52, 0x92, 0x4b, 0x19, 0x92, 0x24, 0x49,
0x92, 0x04, 0x18, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f,
0x9f, 0x59, 0x4e, 0x44, 0x00, 0x85, 0x19, 0x10,
0x0e, 0x87, 0xc3, 0xe1, 0x30, 0x00, 0x8f, 0xc7,
0xe3, 0xf1, 0x78, 0x9c, 0xa7, 0x50, 0x14, 0x41,
0x78, 0x3c, 0xb6, 0x76, 0x38, 0xc2, 0xec, 0x3c,
0x9f, 0xcf, 0xe7, 0xf3, 0xf9, 0xbf, 0x1e, 0x91,
0x1f, 0x45, 0xc2, 0x08, 0xb0, 0x1e, 0x64, 0x5f,
0xe2, 0x92, 0x92, 0x92, 0x92, 0xe2, 0x62, 0x86,
0x50, 0x24, 0xc2, 0x11, 0x62, 0x09, 0xc6, 0x82,
0x7d, 0x47, 0xfe, 0x36, 0xe2, 0x08, 0x30, 0x21,
0xa3, 0x69, 0xa6, 0x1b, 0x21, 0xdf, 0xfc, 0x6e,
0x7f, 0xef, 0x41, 0xfb, 0x59, 0xc8, 0x64, 0x32,
0x99, 0x4c, 0xc6, 0xc9, 0x3a, 0x9d, 0x4e, 0xa7,
0xd3, 0xcd, 0x2c, 0x5b, 0xad, 0x56, 0xab, 0xd5,
0xca, 0xc6, 0x92, 0xb3, 0xeb, 0x2b, 0x01, 0xab,
0xd5, 0x6a, 0x1d, 0x1b, 0xdb, 0xb8, 0xf1, 0xc6,
0x8d, 0xb6, 0xb6, 0xab, 0x57, 0x3b, 0x3a, 0xfe,
0xbe, 0xef, 0x7e, 0x05, 0x08, 0xc2, 0xd8, 0xf9,
0xbd, 0x9f, 0x8e, 0x7f, 0x14, 0xff, 0x01, 0x85,
0x15, 0x45, 0xf6, 0x3e, 0x16, 0xe7, 0xe2, 0x00,
0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae,
0x42, 0x60, 0x82};

View File

@@ -1,332 +0,0 @@
/* document_save_as.png - 866 bytes */
static const unsigned char document_save_as_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd5, 0x0b, 0x0a, 0x0d, 0x38, 0x0f, 0x19,
0xb2, 0xc4, 0x70, 0x00, 0x00, 0x00, 0x8c, 0x74,
0x45, 0x58, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x65,
0x6e, 0x74, 0x00, 0x4d, 0x65, 0x6e, 0x75, 0x2d,
0x73, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x69, 0x63,
0x6f, 0x6e, 0x0a, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x0a, 0x28,
0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x33, 0x20,
0x4a, 0x61, 0x6b, 0x75, 0x62, 0x20, 0x27, 0x6a,
0x69, 0x6d, 0x6d, 0x61, 0x63, 0x27, 0x20, 0x53,
0x74, 0x65, 0x69, 0x6e, 0x65, 0x72, 0x2c, 0x20,
0x0a, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f,
0x6a, 0x69, 0x6d, 0x6d, 0x61, 0x63, 0x2e, 0x6d,
0x75, 0x73, 0x69, 0x63, 0x68, 0x61, 0x6c, 0x6c,
0x2e, 0x63, 0x7a, 0x0a, 0x0a, 0x63, 0x72, 0x65,
0x61, 0x74, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74,
0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x47, 0x49,
0x4d, 0x50, 0x2c, 0x0a, 0x68, 0x74, 0x74, 0x70,
0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x67,
0x69, 0x6d, 0x70, 0x2e, 0x6f, 0x72, 0x67, 0x67,
0x8a, 0xc7, 0x47, 0x00, 0x00, 0x02, 0x57, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0x9d, 0x92, 0x4f,
0x48, 0x93, 0x61, 0x1c, 0xc7, 0x3f, 0xef, 0xdb,
0xfc, 0x33, 0x73, 0xf2, 0xce, 0xe1, 0x6b, 0x5a,
0xb6, 0x89, 0x9a, 0x48, 0x1d, 0x22, 0x34, 0xb6,
0x04, 0x0d, 0x0f, 0x69, 0x90, 0x44, 0xe1, 0x21,
0x84, 0xc4, 0x22, 0xa8, 0x58, 0x8d, 0x79, 0xea,
0x60, 0x61, 0x1e, 0x0c, 0x21, 0x03, 0xf1, 0x20,
0x45, 0x87, 0xa4, 0x20, 0x84, 0x15, 0x05, 0x45,
0xdd, 0x22, 0xa1, 0x83, 0x66, 0x79, 0x28, 0xb2,
0x83, 0x9a, 0x68, 0x59, 0x86, 0xe4, 0x70, 0x6e,
0xa5, 0xdb, 0xde, 0xf7, 0xd7, 0x61, 0xb6, 0x12,
0x2d, 0xc8, 0xcf, 0xe9, 0x79, 0x9e, 0x2f, 0xcf,
0x87, 0xef, 0xf3, 0xe3, 0x51, 0xce, 0x75, 0x5c,
0xb8, 0x38, 0x15, 0xce, 0x57, 0xe7, 0xe6, 0xa3,
0x0b, 0x40, 0x01, 0x50, 0x07, 0xec, 0x4c, 0x51,
0x65, 0xd9, 0x96, 0xfe, 0xfd, 0x5b, 0x56, 0x5a,
0xb4, 0xaf, 0xbf, 0xf3, 0x4a, 0x2b, 0x7f, 0x41,
0xa9, 0xf1, 0xf7, 0x34, 0xb9, 0x76, 0x94, 0xb9,
0x9c, 0xb9, 0xfa, 0xe4, 0xee, 0xc2, 0x1c, 0xbf,
0xd3, 0x6e, 0xdd, 0x13, 0x89, 0x1b, 0x8c, 0x7e,
0x59, 0xe4, 0xf5, 0xd0, 0x80, 0x39, 0xf6, 0x71,
0x96, 0x52, 0xfb, 0x9b, 0xed, 0xbd, 0xed, 0x77,
0x67, 0xd6, 0x15, 0x78, 0xdb, 0x3a, 0x7b, 0x63,
0xa1, 0xb9, 0xb3, 0x71, 0x51, 0x99, 0x35, 0x34,
0x7e, 0xa4, 0xe5, 0xb0, 0xc9, 0x92, 0x42, 0x63,
0xed, 0x3e, 0x8a, 0xf2, 0xb3, 0xe9, 0xbe, 0xff,
0x02, 0xe3, 0xd3, 0x08, 0xae, 0xd4, 0xf9, 0xf5,
0xee, 0xb7, 0xe3, 0x6d, 0xf1, 0xc9, 0xf4, 0xe7,
0x09, 0x11, 0x11, 0x99, 0x98, 0x1a, 0x95, 0xa1,
0xd1, 0x09, 0xf1, 0xdd, 0x78, 0x22, 0xee, 0xd3,
0x57, 0x25, 0x30, 0x3c, 0x2d, 0x3d, 0x4f, 0xdf,
0x4a, 0xc3, 0xa5, 0x9b, 0xf2, 0x6e, 0x72, 0x46,
0xfe, 0x24, 0x1c, 0x0e, 0x8b, 0xcf, 0xef, 0x15,
0x4b, 0x9a, 0xc5, 0x60, 0x6b, 0xae, 0x8b, 0x60,
0x30, 0x88, 0x96, 0x99, 0x8b, 0xaa, 0x2c, 0x60,
0x95, 0x28, 0x00, 0x23, 0xe3, 0xb3, 0xe8, 0x99,
0x16, 0xbe, 0xce, 0x2f, 0xf2, 0x7e, 0xe2, 0x03,
0x5b, 0xb2, 0xac, 0xa0, 0x00, 0x08, 0xa9, 0xa9,
0xa9, 0x00, 0x58, 0xe2, 0x31, 0x10, 0x53, 0x30,
0x4c, 0x93, 0xfa, 0xd6, 0x5b, 0x6b, 0x3a, 0x0e,
0x4d, 0x06, 0x89, 0xc5, 0x0d, 0xba, 0x02, 0x83,
0x74, 0x05, 0x06, 0x01, 0x78, 0xdc, 0x71, 0x02,
0x24, 0x91, 0xab, 0x00, 0xa6, 0x98, 0x98, 0x86,
0x49, 0xcf, 0x19, 0x0f, 0x00, 0xcd, 0xc7, 0x8e,
0xe0, 0x71, 0x97, 0xb3, 0xb4, 0x14, 0x21, 0xcf,
0xa6, 0x52, 0xe9, 0xae, 0xa0, 0xa9, 0xa1, 0x1e,
0x80, 0xe3, 0x35, 0xc5, 0x98, 0x86, 0x89, 0x88,
0xfc, 0x16, 0x88, 0x08, 0x76, 0xbb, 0x46, 0x7e,
0x8e, 0x8b, 0x6b, 0xa7, 0xca, 0xe9, 0xeb, 0x7f,
0x40, 0xa9, 0xab, 0x00, 0x15, 0x05, 0x15, 0x05,
0x77, 0x99, 0x93, 0xdb, 0xf7, 0x1e, 0xd1, 0x58,
0x5d, 0xc8, 0xe1, 0xca, 0x0a, 0x32, 0x36, 0x67,
0xac, 0x16, 0x00, 0x84, 0xc3, 0x61, 0x74, 0x5d,
0xc7, 0x99, 0x57, 0x92, 0x94, 0x78, 0x76, 0x15,
0x51, 0xe2, 0xda, 0x46, 0xf7, 0x9d, 0x87, 0x34,
0x56, 0x17, 0x72, 0xb4, 0xca, 0x8d, 0xae, 0xeb,
0x44, 0xa3, 0xd1, 0xe4, 0x13, 0x2d, 0x00, 0xa6,
0x69, 0x12, 0x89, 0x44, 0x00, 0xd0, 0x75, 0x1d,
0x5d, 0xd7, 0xe9, 0x3d, 0x6f, 0xa5, 0xe5, 0x7a,
0x80, 0xe5, 0x98, 0xc1, 0xc9, 0xda, 0x32, 0x9a,
0x0f, 0x1d, 0x40, 0x55, 0x55, 0x42, 0xa1, 0x10,
0x91, 0x48, 0x04, 0x9b, 0xcd, 0x96, 0xf8, 0x07,
0x3e, 0xbf, 0x57, 0x2a, 0xca, 0xf7, 0x22, 0xac,
0x0c, 0xf8, 0x3f, 0x18, 0x7e, 0xf5, 0x32, 0xd1,
0xc0, 0xe3, 0xae, 0x04, 0x91, 0x15, 0x83, 0x92,
0x98, 0xb0, 0x22, 0x20, 0xca, 0xca, 0x36, 0xa1,
0x2f, 0x29, 0x2e, 0x66, 0x7c, 0x7c, 0x0c, 0x41,
0x41, 0xf9, 0x53, 0xe0, 0x70, 0x38, 0x78, 0x3e,
0xf0, 0x2c, 0x19, 0x08, 0xb2, 0xa6, 0xcd, 0xfe,
0xaa, 0x1a, 0x00, 0xb2, 0x1d, 0x0e, 0x10, 0x25,
0x99, 0x5b, 0x00, 0x34, 0x4d, 0x23, 0x3d, 0xdd,
0xfa, 0xcf, 0xba, 0x9a, 0x5d, 0x03, 0xc0, 0xae,
0xd9, 0x57, 0x9d, 0x5b, 0x7e, 0x2d, 0xea, 0x6a,
0x0f, 0xb2, 0x11, 0x14, 0x9f, 0xdf, 0x7b, 0x19,
0x68, 0x63, 0x63, 0xb4, 0xff, 0x04, 0x95, 0xbe,
0xf4, 0xab, 0x3f, 0x7b, 0xb6, 0x9d, 0x00, 0x00,
0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42,
0x60, 0x82};
/* document_save_as.png - 1728 bytes */
static const unsigned char document_save_as_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x06,
0x4b, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xd5,
0x57, 0x59, 0x4c, 0x13, 0x5d, 0x14, 0x3e, 0x33,
0xb4, 0xd3, 0x96, 0xd2, 0x65, 0x5a, 0xa6, 0xb4,
0xc5, 0x5a, 0x5a, 0x4a, 0x45, 0x71, 0x41, 0x4c,
0x55, 0xdc, 0x31, 0xf1, 0x41, 0xa3, 0x44, 0x5f,
0xf4, 0x41, 0x63, 0x4c, 0xf0, 0x45, 0x25, 0x42,
0xdd, 0x30, 0x2e, 0x0f, 0xee, 0xa2, 0xc6, 0x85,
0x08, 0x31, 0x2e, 0x89, 0xbb, 0x92, 0xe8, 0x8b,
0x2f, 0x1a, 0xe3, 0x83, 0xc4, 0x18, 0x91, 0x26,
0x88, 0x8a, 0xc8, 0x52, 0x6a, 0x6d, 0x8a, 0x45,
0x0a, 0x94, 0xd2, 0xe9, 0x0e, 0x9d, 0xff, 0x61,
0x32, 0xff, 0x60, 0x4b, 0xd3, 0xff, 0x47, 0xff,
0xc5, 0x2f, 0x69, 0xee, 0x9c, 0x7b, 0xcf, 0x3d,
0xf7, 0xfb, 0xce, 0x9c, 0x7b, 0xef, 0x14, 0xe0,
0x37, 0x07, 0x92, 0xca, 0xa1, 0xbc, 0xfc, 0xc4,
0x89, 0xaa, 0xaa, 0x1b, 0x37, 0xbe, 0x7e, 0x25,
0x49, 0xb5, 0x7a, 0xed, 0x5a, 0xb7, 0x7b, 0x70,
0x30, 0x12, 0x91, 0xc9, 0x92, 0xf9, 0x0b, 0x04,
0x5c, 0x2e, 0x45, 0xf9, 0xfd, 0x0a, 0x45, 0x46,
0x86, 0xcf, 0xd7, 0xd6, 0x96, 0x95, 0x25, 0x14,
0x7e, 0xfe, 0x6c, 0x36, 0xd7, 0xd4, 0x1c, 0x3e,
0xfc, 0xe8, 0xd1, 0xeb, 0xd7, 0xff, 0x9a, 0x80,
0xda, 0xda, 0x5b, 0xb7, 0xcc, 0xe6, 0xc2, 0xc2,
0xc7, 0x8f, 0xdf, 0xbd, 0xd3, 0xe9, 0x9a, 0x9a,
0x72, 0x72, 0x8c, 0xc6, 0xa9, 0x53, 0xc3, 0x61,
0xad, 0x36, 0x2b, 0x4b, 0xa1, 0x40, 0x51, 0x9f,
0x2f, 0x1a, 0x45, 0x51, 0x3e, 0x3f, 0x3b, 0x5b,
0x2c, 0xe6, 0xf3, 0x51, 0xf4, 0xdb, 0x37, 0x9f,
0x2f, 0x12, 0x01, 0x18, 0x1c, 0x0c, 0x06, 0xc3,
0x61, 0x80, 0xa1, 0xa1, 0x8e, 0x8e, 0x17, 0x2f,
0x6c, 0xb6, 0x40, 0xc0, 0xef, 0x0f, 0x85, 0x78,
0x3c, 0x9d, 0x0e, 0xc7, 0xdb, 0xdb, 0xab, 0xaa,
0xea, 0xea, 0x8e, 0x1c, 0xb9, 0x7f, 0xff, 0xde,
0xbd, 0x5f, 0x25, 0x20, 0x2d, 0x19, 0xf1, 0x17,
0x2f, 0xda, 0xdb, 0x55, 0xaa, 0xc7, 0x8f, 0x27,
0x4f, 0x9e, 0x39, 0x73, 0xd9, 0x32, 0xa9, 0xd4,
0x6e, 0xb7, 0x5a, 0xdb, 0xdb, 0x31, 0xac, 0xbb,
0xdb, 0x6e, 0xb7, 0xdb, 0xb9, 0x5c, 0x87, 0xe3,
0xcb, 0x97, 0xee, 0x6e, 0x14, 0x75, 0x38, 0xfa,
0xfb, 0x07, 0x06, 0x00, 0xb8, 0x5c, 0x91, 0x48,
0x26, 0x03, 0xc0, 0x71, 0x3e, 0x1f, 0xc3, 0x00,
0xf8, 0x7c, 0x82, 0x30, 0x18, 0x70, 0x7c, 0x68,
0x28, 0x18, 0x8c, 0xc5, 0xc4, 0xe2, 0x9e, 0x1e,
0xb7, 0x9b, 0xcf, 0x5f, 0xb9, 0x72, 0xcd, 0x9a,
0xd5, 0xab, 0xe5, 0xf2, 0xe6, 0xe6, 0xa6, 0xa6,
0x97, 0x2f, 0x3f, 0x7d, 0xb2, 0x5a, 0x7f, 0x56,
0x00, 0x1a, 0xdf, 0xf1, 0xf6, 0x6d, 0x57, 0x17,
0x9f, 0x5f, 0x5d, 0x3d, 0x69, 0x52, 0x66, 0x26,
0x87, 0x63, 0xb7, 0x93, 0xa4, 0xd5, 0xfa, 0xfc,
0x79, 0x47, 0xc7, 0xdc, 0xb9, 0x04, 0xd1, 0xd8,
0xb8, 0x69, 0x53, 0x43, 0xc3, 0xf9, 0xf3, 0xdb,
0xb7, 0xa3, 0xe8, 0xe2, 0xc5, 0x5a, 0xad, 0xc5,
0xb2, 0x72, 0x65, 0x34, 0xea, 0xf5, 0xf6, 0xf4,
0x0c, 0x0f, 0x3b, 0x9d, 0xdd, 0xdd, 0xad, 0xad,
0x14, 0xd5, 0xd7, 0x37, 0x3c, 0xec, 0xf3, 0x01,
0xf8, 0x7c, 0x7e, 0x3f, 0x49, 0x02, 0xe0, 0xb8,
0x42, 0xa1, 0x52, 0x01, 0x08, 0x85, 0x0a, 0x85,
0x46, 0xc3, 0xe3, 0x7d, 0xfc, 0xe8, 0x76, 0xcf,
0x9a, 0xf5, 0xf0, 0xe1, 0x9e, 0x3d, 0xc7, 0x8e,
0xad, 0x59, 0x23, 0x14, 0xfe, 0x72, 0x01, 0x1e,
0x4f, 0x20, 0x20, 0x10, 0x18, 0x0c, 0x69, 0x69,
0xa3, 0xa3, 0x24, 0xe9, 0xf5, 0x2e, 0x59, 0x92,
0x97, 0xe7, 0x74, 0xae, 0x58, 0x71, 0xf2, 0xe4,
0xee, 0xdd, 0xd7, 0xaf, 0x3f, 0x78, 0xc0, 0xf8,
0x9d, 0x3e, 0xbd, 0x77, 0xef, 0xdd, 0xbb, 0xcf,
0x9e, 0x99, 0x4c, 0x1a, 0x8d, 0xd3, 0x79, 0xf4,
0x28, 0x49, 0x7a, 0x3c, 0x1e, 0x0f, 0x82, 0xf8,
0xfd, 0xc3, 0xc3, 0x83, 0x83, 0x00, 0x91, 0x48,
0x28, 0x14, 0x08, 0xb0, 0x71, 0x15, 0x0a, 0x8d,
0x26, 0x2f, 0x0f, 0x45, 0x09, 0x42, 0x28, 0x8c,
0x44, 0x1c, 0x8e, 0xfe, 0xfe, 0x48, 0x44, 0xa7,
0xab, 0xab, 0xfb, 0x59, 0x01, 0x09, 0x7b, 0x60,
0xe3, 0xc6, 0x03, 0x07, 0x76, 0xed, 0x7a, 0xf2,
0x44, 0xa7, 0xe3, 0xf1, 0xa2, 0xd1, 0x0f, 0x1f,
0x86, 0x87, 0x3d, 0x9e, 0x58, 0xec, 0xe0, 0xc1,
0x64, 0x01, 0x78, 0x3c, 0x81, 0x00, 0x41, 0x00,
0x5e, 0xbd, 0x1a, 0x1c, 0xd4, 0x6a, 0x01, 0x72,
0x72, 0x0a, 0x0a, 0x8a, 0x8a, 0x92, 0x2f, 0x28,
0x95, 0x06, 0x83, 0x6d, 0x6d, 0x00, 0xfd, 0xfd,
0xdf, 0xbf, 0xf7, 0xf6, 0x02, 0xa8, 0xd5, 0xb1,
0xd8, 0xd0, 0x50, 0x2a, 0x9a, 0x55, 0x55, 0x35,
0x35, 0x17, 0x2f, 0xd6, 0xd6, 0x9e, 0x39, 0x13,
0x3f, 0xc2, 0x89, 0xef, 0xd0, 0x68, 0xc4, 0x62,
0x9f, 0xef, 0xe9, 0xd3, 0x40, 0x60, 0x60, 0x00,
0xc3, 0xea, 0xea, 0x4e, 0x9f, 0x3e, 0x79, 0xf2,
0xec, 0xd9, 0xd4, 0x99, 0x58, 0xbe, 0xdc, 0x6c,
0xae, 0xad, 0x4d, 0xed, 0x17, 0x0a, 0xc9, 0xe5,
0xf3, 0xe6, 0x01, 0x38, 0x9d, 0x36, 0x5b, 0x43,
0x03, 0xc0, 0xed, 0xdb, 0x17, 0x2e, 0x24, 0x4f,
0x0f, 0xc0, 0xfe, 0xfd, 0x07, 0x0e, 0xec, 0xdd,
0x5b, 0x5d, 0x4d, 0x5b, 0x89, 0x02, 0x12, 0x4a,
0x28, 0x10, 0xe8, 0xed, 0xc5, 0xb0, 0xae, 0x2e,
0x1c, 0x97, 0x4a, 0x09, 0x02, 0x20, 0x10, 0x08,
0x04, 0xc6, 0x96, 0x82, 0xdf, 0xef, 0xf7, 0xfb,
0xfd, 0x89, 0x6d, 0x22, 0xd1, 0x60, 0x70, 0xbc,
0xfe, 0xb4, 0x34, 0x2e, 0x17, 0xc3, 0x92, 0xc7,
0x73, 0x38, 0x9c, 0x4e, 0x87, 0x83, 0xb5, 0x09,
0x82, 0x20, 0x08, 0x02, 0x60, 0xe7, 0xce, 0xca,
0xca, 0x1d, 0x3b, 0x0a, 0x0b, 0x53, 0xbe, 0x01,
0x1a, 0xb9, 0xb9, 0x4a, 0xa5, 0x52, 0xa9, 0x52,
0xb1, 0x3d, 0x24, 0x49, 0x6f, 0xca, 0x8c, 0x0c,
0xa1, 0x30, 0x23, 0xe3, 0xaf, 0x67, 0x3c, 0x1e,
0x14, 0x15, 0x8b, 0xc5, 0x62, 0xac, 0xbd, 0x6e,
0xdd, 0xd1, 0xa3, 0xf7, 0xef, 0x03, 0x8c, 0x8c,
0x44, 0x22, 0x91, 0x08, 0x40, 0x7d, 0xfd, 0xc1,
0x83, 0xeb, 0xd7, 0xb3, 0xe3, 0x38, 0x8e, 0xe3,
0x38, 0x0e, 0xe0, 0x76, 0xbb, 0xdd, 0x6e, 0xb7,
0xd1, 0x48, 0xf7, 0xb6, 0xb4, 0x24, 0x7d, 0x03,
0x34, 0x4a, 0x4b, 0x67, 0xcf, 0x9e, 0x35, 0xab,
0xa8, 0x08, 0x20, 0x18, 0x0c, 0x06, 0x83, 0x41,
0x00, 0x04, 0xa1, 0x7f, 0xf1, 0x19, 0xcf, 0xcf,
0x37, 0x99, 0x96, 0x2e, 0x65, 0x5b, 0x89, 0x04,
0xc7, 0x09, 0x82, 0x1d, 0x0f, 0x87, 0xc3, 0xe1,
0x50, 0x68, 0xac, 0x1d, 0x0c, 0xfa, 0x7c, 0x00,
0x06, 0x43, 0x61, 0xe1, 0xfc, 0xf9, 0x00, 0x7a,
0xfd, 0xf4, 0xe9, 0x26, 0x13, 0x3b, 0x9e, 0x9e,
0x2e, 0x10, 0xa4, 0xa7, 0xb3, 0xf6, 0xc2, 0x85,
0xc5, 0xc5, 0x8b, 0x16, 0x31, 0xd6, 0x8c, 0x19,
0xf1, 0x4c, 0x93, 0x08, 0x58, 0xb5, 0x4a, 0xad,
0x56, 0xab, 0xb3, 0xb3, 0x93, 0x67, 0xf2, 0xea,
0xd5, 0x8a, 0x8a, 0x92, 0x12, 0x00, 0xab, 0xf5,
0xfd, 0xfb, 0x37, 0x6f, 0xd8, 0x7e, 0x97, 0xcb,
0xe9, 0xb4, 0xd9, 0xe8, 0x5c, 0x53, 0x14, 0xc0,
0xe8, 0xe8, 0xc8, 0x48, 0x34, 0xca, 0x96, 0x94,
0xcf, 0xe7, 0xf5, 0x7a, 0x3c, 0xac, 0xbf, 0xcd,
0xd6, 0xda, 0x6a, 0xb1, 0x00, 0x5c, 0xbe, 0xbc,
0x7d, 0xfb, 0x82, 0x05, 0x89, 0xeb, 0x68, 0x34,
0x1a, 0x8d, 0x56, 0xcb, 0x58, 0x87, 0x0e, 0x25,
0x15, 0xc0, 0xd4, 0x98, 0x40, 0x40, 0x67, 0x00,
0xc3, 0x30, 0x0c, 0xc3, 0x00, 0xe4, 0x72, 0xb9,
0x5c, 0x2e, 0x4f, 0x0c, 0xac, 0x52, 0x11, 0x84,
0x56, 0x0b, 0x70, 0xfe, 0x7c, 0x59, 0xd9, 0x9c,
0x39, 0x00, 0xed, 0xed, 0x16, 0x4b, 0x43, 0x03,
0x80, 0x4c, 0x46, 0x10, 0x6a, 0x35, 0x40, 0x2c,
0x46, 0x0b, 0x18, 0x5b, 0x3c, 0x14, 0x05, 0x20,
0x16, 0x4b, 0xa5, 0x72, 0x39, 0x80, 0xd5, 0xda,
0xd2, 0xd2, 0xd8, 0xc8, 0xce, 0xd7, 0x6a, 0xd5,
0x6a, 0xa6, 0x40, 0x00, 0x00, 0x84, 0x42, 0xa1,
0x70, 0xec, 0x2d, 0x81, 0xe3, 0x38, 0x2e, 0x97,
0x27, 0xee, 0x85, 0xb8, 0x37, 0x60, 0x34, 0x66,
0x65, 0x29, 0x14, 0x4a, 0x25, 0xdb, 0xe3, 0xf1,
0x78, 0x3c, 0x1e, 0x0f, 0x1b, 0x90, 0x69, 0x51,
0x14, 0x45, 0x51, 0x14, 0x40, 0xa7, 0xcb, 0xce,
0x9e, 0x32, 0x05, 0xa0, 0xa6, 0x66, 0xdb, 0xb6,
0xe2, 0xe2, 0x44, 0x21, 0x28, 0x8a, 0x20, 0x08,
0x02, 0x90, 0x91, 0x21, 0x91, 0xc8, 0x64, 0x2c,
0x71, 0xc6, 0x9f, 0x99, 0x1f, 0x1f, 0x9f, 0x59,
0x97, 0x81, 0x44, 0x22, 0x16, 0x4b, 0x24, 0x2c,
0xcf, 0x24, 0x02, 0x66, 0xcc, 0x98, 0x36, 0x6d,
0xea, 0xd4, 0x82, 0x02, 0x80, 0x68, 0x34, 0x1a,
0x8d, 0x46, 0x29, 0x8a, 0xc3, 0xe1, 0x70, 0xd2,
0xd2, 0x00, 0xbc, 0x5e, 0xaf, 0xd7, 0xeb, 0x65,
0x03, 0x0b, 0x04, 0x02, 0x81, 0x40, 0xc0, 0x2e,
0x38, 0x7d, 0xba, 0xd1, 0x58, 0x54, 0x04, 0x70,
0xed, 0x9a, 0xd9, 0x5c, 0x52, 0xc2, 0x0a, 0x91,
0x4a, 0x33, 0x33, 0x55, 0x2a, 0x00, 0xbb, 0xbd,
0xad, 0xad, 0xb9, 0x99, 0x1d, 0x67, 0xfc, 0xe3,
0x09, 0x33, 0xed, 0xe8, 0xe8, 0xe8, 0xe8, 0xc8,
0x08, 0x00, 0x49, 0x92, 0x24, 0x49, 0x52, 0x54,
0x6e, 0xae, 0x5e, 0x9f, 0x9b, 0xcb, 0xf0, 0x2c,
0x2e, 0x66, 0x9e, 0xfe, 0x3c, 0x85, 0xc2, 0xe1,
0x70, 0x38, 0x1c, 0x9e, 0x39, 0x53, 0xa9, 0x54,
0x2a, 0x95, 0x4a, 0x80, 0x53, 0xa7, 0xaa, 0xab,
0x8f, 0x1f, 0x47, 0x52, 0x7e, 0xad, 0x26, 0x83,
0xc9, 0x24, 0x12, 0x45, 0x22, 0x00, 0x16, 0x8b,
0xc5, 0x02, 0x00, 0x30, 0x77, 0xae, 0x48, 0xd4,
0xd9, 0x09, 0x70, 0xed, 0xda, 0x95, 0x2b, 0x9d,
0x9d, 0x7f, 0x37, 0x1a, 0x82, 0x6c, 0xd9, 0xb2,
0x79, 0x73, 0x59, 0x19, 0x40, 0x28, 0x14, 0x0a,
0x85, 0xc3, 0x22, 0x51, 0x82, 0x00, 0x1e, 0x8f,
0xc7, 0xe3, 0xf1, 0x4a, 0x4b, 0x8d, 0x46, 0xa3,
0x71, 0x6c, 0x2d, 0x56, 0x56, 0x56, 0x54, 0xec,
0xd9, 0x03, 0x80, 0x20, 0x74, 0x0d, 0x53, 0x14,
0x7d, 0x1a, 0xd1, 0x55, 0x4d, 0x07, 0xa7, 0x6d,
0x7a, 0xfc, 0x47, 0xeb, 0x47, 0x12, 0xf4, 0x49,
0xc6, 0xc6, 0x01, 0x00, 0xd0, 0xeb, 0xf5, 0x7a,
0xbd, 0x1e, 0xc0, 0x66, 0xb3, 0xd9, 0x6c, 0x36,
0x76, 0x3e, 0x3d, 0x03, 0xe0, 0xc2, 0x85, 0x4b,
0x97, 0xce, 0x9d, 0x03, 0xc8, 0xcf, 0xcf, 0xcf,
0xcf, 0xcf, 0x07, 0xe0, 0xf3, 0xf9, 0x7c, 0x1e,
0xaf, 0xac, 0x8c, 0xf6, 0xd8, 0xba, 0x35, 0xe1,
0x1e, 0xa0, 0xcf, 0x5b, 0xd6, 0x4e, 0x4f, 0xa7,
0x4b, 0xc5, 0xe1, 0x70, 0x38, 0x1c, 0x8e, 0x89,
0xbe, 0x8f, 0x44, 0x18, 0x0c, 0x06, 0x83, 0xc1,
0xc0, 0xda, 0x32, 0x99, 0x4c, 0x86, 0xe3, 0xf4,
0x33, 0x8a, 0x8e, 0x4d, 0xd0, 0xf8, 0xbc, 0x18,
0xa0, 0x90, 0x02, 0x32, 0x19, 0x8e, 0x27, 0xff,
0xfb, 0x32, 0x71, 0x30, 0x17, 0x14, 0x03, 0x89,
0x44, 0x22, 0x91, 0x4a, 0xe9, 0x56, 0x2c, 0xa6,
0x5b, 0x76, 0xd3, 0x26, 0x07, 0x27, 0x95, 0x03,
0x97, 0x8b, 0x61, 0x5c, 0x2e, 0x80, 0xc9, 0x64,
0x32, 0x8d, 0xbd, 0x70, 0xfe, 0x2f, 0x48, 0x29,
0xa0, 0xa2, 0xc2, 0x6c, 0x2e, 0x2f, 0xff, 0xe7,
0x08, 0xd0, 0xe7, 0xfa, 0xc4, 0xd7, 0x49, 0x10,
0xd0, 0xd7, 0xd7, 0xd7, 0xd7, 0xd7, 0x47, 0x51,
0xbb, 0x77, 0x9b, 0xcd, 0xfb, 0xf6, 0x4d, 0xfc,
0x14, 0xfa, 0xd5, 0x70, 0xb9, 0x5c, 0x2e, 0x97,
0x8b, 0xd9, 0x15, 0x2c, 0x2f, 0xce, 0x58, 0x87,
0xde, 0xde, 0x0d, 0x1b, 0xee, 0xdc, 0xb9, 0x77,
0xef, 0xe6, 0xcd, 0xfa, 0xfa, 0xff, 0x9a, 0xf0,
0xf8, 0x40, 0x10, 0x9a, 0xe7, 0x78, 0x1f, 0x1d,
0xbf, 0x29, 0xfe, 0x00, 0xb1, 0xc5, 0xe7, 0x75,
0x19, 0x76, 0x78, 0x24, 0x00, 0x00, 0x00, 0x00,
0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};

View File

@@ -1,193 +0,0 @@
/* drive_harddisk.png - 603 bytes */
static const unsigned char drive_harddisk_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd5, 0x04, 0x05, 0x0f, 0x35, 0x08, 0xeb,
0xcf, 0x7c, 0x77, 0x00, 0x00, 0x00, 0x8c, 0x74,
0x45, 0x58, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x65,
0x6e, 0x74, 0x00, 0x4d, 0x65, 0x6e, 0x75, 0x2d,
0x73, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x69, 0x63,
0x6f, 0x6e, 0x0a, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x0a, 0x28,
0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x33, 0x20,
0x4a, 0x61, 0x6b, 0x75, 0x62, 0x20, 0x27, 0x6a,
0x69, 0x6d, 0x6d, 0x61, 0x63, 0x27, 0x20, 0x53,
0x74, 0x65, 0x69, 0x6e, 0x65, 0x72, 0x2c, 0x20,
0x0a, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f,
0x6a, 0x69, 0x6d, 0x6d, 0x61, 0x63, 0x2e, 0x6d,
0x75, 0x73, 0x69, 0x63, 0x68, 0x61, 0x6c, 0x6c,
0x2e, 0x63, 0x7a, 0x0a, 0x0a, 0x63, 0x72, 0x65,
0x61, 0x74, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74,
0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x47, 0x49,
0x4d, 0x50, 0x2c, 0x0a, 0x68, 0x74, 0x74, 0x70,
0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x67,
0x69, 0x6d, 0x70, 0x2e, 0x6f, 0x72, 0x67, 0x67,
0x8a, 0xc7, 0x47, 0x00, 0x00, 0x01, 0x50, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0xa5, 0x93, 0x4d,
0x6e, 0xc2, 0x30, 0x10, 0x85, 0xbf, 0xa0, 0x40,
0xa4, 0x20, 0xcb, 0xc9, 0x26, 0x6a, 0x24, 0xf6,
0x70, 0x37, 0x24, 0xc4, 0x0d, 0xda, 0xde, 0x90,
0x15, 0x27, 0x40, 0x2c, 0xd8, 0x41, 0x6c, 0x10,
0xf9, 0x99, 0xe9, 0x22, 0xe0, 0x28, 0xed, 0xa2,
0x55, 0x99, 0x85, 0xed, 0x19, 0xcf, 0x7b, 0x7e,
0x33, 0xb6, 0xe1, 0x45, 0x8b, 0x36, 0xdb, 0xf5,
0x07, 0xf0, 0xfe, 0x4f, 0xfc, 0x27, 0x9b, 0xed,
0x5a, 0xff, 0x63, 0xce, 0x39, 0xdd, 0x6c, 0xd7,
0x1a, 0x03, 0x88, 0x08, 0xe7, 0xf3, 0x19, 0x55,
0x85, 0x28, 0x02, 0xd5, 0xb1, 0x4c, 0x40, 0x9f,
0x43, 0x04, 0xa0, 0xcc, 0x66, 0x33, 0x00, 0x62,
0x00, 0x15, 0xa5, 0x13, 0xe9, 0xb3, 0x45, 0x06,
0x00, 0x10, 0x11, 0x21, 0xaa, 0x7d, 0x8c, 0xa8,
0xc7, 0xf7, 0xce, 0x40, 0x20, 0x2a, 0x48, 0x27,
0x44, 0x0f, 0x90, 0x02, 0xa8, 0x3e, 0x00, 0xca,
0x53, 0x18, 0xaa, 0x3d, 0xb1, 0xd0, 0xab, 0x0d,
0x0a, 0x54, 0xc9, 0xf3, 0x8c, 0xd3, 0xe9, 0xf4,
0xa7, 0xce, 0x65, 0x59, 0x46, 0xd7, 0x75, 0x00,
0x4c, 0x9e, 0x41, 0xe7, 0x1c, 0x45, 0x51, 0xfc,
0x0a, 0x2e, 0x8a, 0x82, 0xba, 0xae, 0x83, 0x1f,
0x9a, 0xe8, 0xbd, 0x0f, 0x09, 0x00, 0xd7, 0xeb,
0x95, 0xaa, 0xaa, 0x00, 0x30, 0xc6, 0x90, 0xa6,
0x29, 0x93, 0xc9, 0x84, 0xcb, 0xe5, 0x82, 0xf7,
0x1e, 0x63, 0xcc, 0x40, 0x90, 0x24, 0x09, 0x8b,
0xc5, 0x62, 0x74, 0x92, 0xb5, 0x16, 0x6b, 0x2d,
0x00, 0xde, 0x7b, 0xea, 0xba, 0xe6, 0x76, 0xbb,
0xfd, 0x50, 0x14, 0x03, 0xec, 0x76, 0x3b, 0x9a,
0xa6, 0x19, 0x6d, 0xb4, 0x6d, 0x4b, 0x1c, 0xc7,
0x61, 0xfd, 0xdd, 0xf2, 0x3c, 0x1f, 0xf7, 0xa0,
0x6d, 0x5b, 0xf6, 0xfb, 0x3d, 0xc7, 0xe3, 0x91,
0xaa, 0xaa, 0x50, 0x55, 0x54, 0x95, 0x24, 0x49,
0x38, 0x1c, 0x0e, 0x18, 0x63, 0xc2, 0xec, 0x9c,
0xc3, 0x39, 0x37, 0x10, 0xa8, 0x2a, 0x22, 0xc2,
0x7c, 0x9e, 0x32, 0x9d, 0x4e, 0xc3, 0x23, 0x01,
0x68, 0x9a, 0x06, 0x95, 0x9e, 0x4c, 0x45, 0xfa,
0xdc, 0xc7, 0x0d, 0x84, 0x12, 0xb2, 0x2c, 0xc3,
0x5a, 0x4b, 0x59, 0x96, 0x00, 0xdc, 0xef, 0x77,
0x80, 0xd0, 0xed, 0xe5, 0x6a, 0x89, 0x88, 0xb0,
0x5c, 0xad, 0x10, 0x11, 0xde, 0xca, 0x32, 0x94,
0xfc, 0xfa, 0x67, 0x7a, 0xd5, 0xbe, 0x00, 0x97,
0x55, 0xed, 0x26, 0xb6, 0x6c, 0xb5, 0x0b, 0x00,
0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae,
0x42, 0x60, 0x82};
/* drive_harddisk.png - 881 bytes */
static const unsigned char drive_harddisk_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9,
0x43, 0xbb, 0x7f, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x02,
0xfc, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xed,
0x57, 0x4d, 0x4b, 0xeb, 0x40, 0x14, 0xbd, 0x93,
0xa4, 0x4d, 0xd3, 0xa4, 0x36, 0x21, 0xb4, 0xa6,
0x95, 0x2a, 0xb5, 0x35, 0xa4, 0x96, 0xd6, 0x8f,
0x5d, 0xd5, 0x5f, 0xe0, 0xa2, 0x5b, 0x7f, 0x80,
0x82, 0x0b, 0x41, 0xdc, 0x88, 0x22, 0xae, 0xc5,
0x8f, 0x8d, 0x08, 0x82, 0xd0, 0x8d, 0x20, 0x2e,
0xf4, 0x47, 0x89, 0x16, 0x21, 0xd2, 0x12, 0x42,
0x4b, 0xd2, 0x4f, 0xdb, 0xbc, 0x45, 0x18, 0xf3,
0x48, 0xed, 0xb3, 0x4f, 0xeb, 0xf3, 0x2d, 0x7a,
0x20, 0x24, 0x67, 0x26, 0x93, 0x39, 0xe7, 0xde,
0xb9, 0x33, 0x04, 0x60, 0x84, 0x11, 0xbe, 0x04,
0xd4, 0xaf, 0x63, 0x7b, 0x7b, 0x67, 0x67, 0x6b,
0x6b, 0x73, 0xd3, 0x66, 0x57, 0x57, 0x3f, 0x2b,
0x73, 0x6f, 0xef, 0xe2, 0xe2, 0xfc, 0xfc, 0xf2,
0xf2, 0xf4, 0xd4, 0xdd, 0x43, 0xbd, 0x2f, 0x3c,
0x12, 0xc1, 0xc2, 0x8f, 0x8f, 0x8f, 0x8e, 0xce,
0xce, 0x7e, 0x4e, 0xfa, 0xfe, 0xfe, 0xc1, 0xc1,
0xee, 0xee, 0xc9, 0x89, 0xcd, 0x7a, 0x0d, 0x10,
0xef, 0x0f, 0x4b, 0xa7, 0x43, 0xa1, 0x50, 0x28,
0x14, 0x02, 0xa8, 0xd5, 0x6a, 0xb5, 0x5a, 0xcd,
0xe9, 0x31, 0x4d, 0xd3, 0x34, 0xcd, 0xef, 0xbb,
0x17, 0x8b, 0xcf, 0xcf, 0xc5, 0xa2, 0xc3, 0xb1,
0x0e, 0x3b, 0xb0, 0xf3, 0xf3, 0x03, 0x1a, 0x48,
0x24, 0x24, 0x49, 0x92, 0x70, 0x1e, 0x00, 0x00,
0x0c, 0xc3, 0x34, 0x0d, 0x03, 0x80, 0x65, 0x59,
0x96, 0x65, 0x87, 0x1f, 0x69, 0x4d, 0xd3, 0x75,
0x4d, 0x03, 0x60, 0x18, 0x9f, 0x8f, 0x61, 0x9c,
0x76, 0x41, 0x10, 0x04, 0x41, 0xc0, 0x4c, 0x96,
0x07, 0x34, 0x90, 0xcf, 0x2f, 0x2c, 0xcc, 0xcd,
0x2d, 0x2e, 0x02, 0xd4, 0xeb, 0xf5, 0x7a, 0xbd,
0x0e, 0x80, 0x90, 0x7d, 0xe1, 0xc8, 0x0c, 0x1b,
0x3c, 0x1f, 0x0c, 0xf2, 0x3c, 0x80, 0xdf, 0xcf,
0x30, 0x7e, 0xbf, 0xd3, 0xbe, 0xbc, 0x9c, 0xcb,
0xad, 0xac, 0x60, 0x96, 0xc9, 0x0c, 0x68, 0x60,
0x75, 0x35, 0x1a, 0x8d, 0x46, 0x27, 0x26, 0x86,
0x2f, 0xb4, 0x1f, 0x48, 0x92, 0x20, 0x48, 0xb2,
0xb7, 0x3d, 0x16, 0x8b, 0xc5, 0xa6, 0xa6, 0x30,
0x3b, 0x3c, 0xec, 0x6b, 0x00, 0xaf, 0x31, 0x86,
0xb1, 0x23, 0xe0, 0xf5, 0x7a, 0xbd, 0x5e, 0x2f,
0x80, 0x28, 0x8a, 0xa2, 0x28, 0xfe, 0x3b, 0x23,
0x18, 0xee, 0xa5, 0x2a, 0x08, 0x82, 0x20, 0x8a,
0xbd, 0xb5, 0xe0, 0xca, 0x80, 0x2c, 0x8f, 0x8f,
0x87, 0xc3, 0x92, 0xe4, 0xb4, 0xe8, 0xba, 0xae,
0xeb, 0xba, 0xf3, 0x41, 0x7c, 0x27, 0x08, 0x82,
0x20, 0x08, 0x18, 0x1a, 0xdc, 0xdf, 0xc7, 0xf3,
0x62, 0x04, 0x83, 0x63, 0x63, 0xc1, 0xa0, 0xa3,
0x13, 0x3f, 0xb9, 0xb6, 0xd1, 0x4c, 0x66, 0x76,
0x36, 0x95, 0x4a, 0xa7, 0x01, 0xda, 0xed, 0x76,
0xbb, 0xdd, 0xb6, 0x2c, 0x8a, 0xa2, 0x28, 0x92,
0x44, 0xa8, 0x52, 0xa9, 0x54, 0x2a, 0x15, 0x80,
0x6e, 0xb7, 0xdb, 0xed, 0x76, 0xdd, 0xc5, 0xf5,
0x75, 0xb8, 0x05, 0x77, 0x3a, 0x9d, 0xce, 0xeb,
0x2b, 0x80, 0x61, 0x18, 0x46, 0xbb, 0x6d, 0x59,
0x89, 0xc4, 0xf4, 0x74, 0x22, 0x81, 0xd0, 0xe3,
0xe3, 0xd3, 0xd3, 0xc3, 0x43, 0x2e, 0x67, 0xbf,
0x75, 0x7f, 0xff, 0x66, 0xa0, 0xd9, 0x6c, 0x36,
0x9b, 0xcd, 0x6c, 0x56, 0x92, 0x24, 0x49, 0x92,
0x00, 0x38, 0x8e, 0xe3, 0x38, 0x0e, 0xa1, 0x6a,
0xb5, 0x5a, 0xad, 0x56, 0x3f, 0x9e, 0x70, 0x58,
0xc0, 0xc2, 0xed, 0x2d, 0x03, 0x07, 0x0a, 0xa1,
0x58, 0x2c, 0x16, 0x9b, 0x9c, 0x04, 0x68, 0x34,
0x1a, 0x8d, 0x66, 0x33, 0x10, 0xe8, 0xc9, 0x00,
0x4d, 0xd3, 0x34, 0x4d, 0xe7, 0xf3, 0xb2, 0x2c,
0xcb, 0xbf, 0x6f, 0x56, 0xc3, 0x8e, 0xf4, 0x67,
0xa1, 0x28, 0x8a, 0xa2, 0x28, 0x00, 0x3e, 0x9f,
0xcf, 0x47, 0xd3, 0xeb, 0xeb, 0x76, 0xeb, 0xc6,
0x46, 0xcf, 0x49, 0x5c, 0x2e, 0x97, 0xcb, 0xe5,
0x32, 0x80, 0xa6, 0x69, 0x9a, 0xa6, 0xfd, 0xfd,
0x44, 0x96, 0x65, 0x59, 0x96, 0x35, 0xfc, 0x71,
0xf8, 0x40, 0x73, 0x83, 0xea, 0x37, 0xa0, 0xd5,
0x6a, 0xb5, 0x5a, 0x2d, 0x80, 0x6c, 0x36, 0x9b,
0xcd, 0x66, 0x01, 0x0a, 0x85, 0x42, 0xa1, 0x50,
0xc0, 0x99, 0x02, 0x60, 0x59, 0x8e, 0xf3, 0xfb,
0x01, 0x02, 0x01, 0x8e, 0x1b, 0x1b, 0x73, 0x8a,
0x9a, 0x61, 0x18, 0x86, 0x61, 0x00, 0x10, 0x42,
0x08, 0x21, 0x87, 0xdb, 0x4b, 0xd2, 0x59, 0x7a,
0xe1, 0x70, 0x38, 0x1c, 0x0e, 0x03, 0x94, 0x4a,
0xa5, 0x52, 0xa9, 0xf4, 0x31, 0xef, 0x67, 0x60,
0xe0, 0x7d, 0x84, 0x24, 0x49, 0x92, 0x24, 0x9d,
0x48, 0x11, 0x04, 0x42, 0x24, 0x89, 0x6b, 0xc7,
0x31, 0x8c, 0xfb, 0x3d, 0x1e, 0x8f, 0xc7, 0xe3,
0xf9, 0x7c, 0x46, 0x06, 0x05, 0x35, 0xe8, 0x8b,
0xa9, 0x54, 0x2a, 0xa5, 0x28, 0xb6, 0x20, 0x00,
0x00, 0x8a, 0xa2, 0x28, 0xea, 0x0f, 0xa3, 0xf1,
0x39, 0xf2, 0xdd, 0xe8, 0x91, 0x60, 0xa7, 0xcc,
0xb2, 0x22, 0x91, 0x48, 0x24, 0x12, 0x41, 0x08,
0xd7, 0x44, 0x32, 0x99, 0x4c, 0xce, 0xcc, 0x7c,
0x7d, 0x42, 0x9e, 0xe7, 0x79, 0x9e, 0x77, 0x78,
0x3c, 0x1e, 0x8f, 0xc7, 0xe3, 0x1f, 0x73, 0x55,
0x55, 0x55, 0x55, 0xc5, 0xb9, 0x44, 0x6f, 0xbf,
0x01, 0x6f, 0x06, 0x54, 0x55, 0x55, 0x5f, 0x5e,
0xd6, 0xd6, 0x6e, 0x6e, 0x6e, 0x6f, 0xaf, 0xaf,
0xef, 0xee, 0xbe, 0x3f, 0x76, 0x9f, 0x01, 0x42,
0xb6, 0xce, 0xa5, 0xa5, 0x9f, 0x56, 0x32, 0xc2,
0x08, 0xff, 0x0b, 0x7e, 0x01, 0xa0, 0xaf, 0x82,
0x1b, 0x07, 0x0a, 0xd5, 0xef, 0x00, 0x00, 0x00,
0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60,
0x82};

View File

@@ -1,287 +0,0 @@
/* drive_optical.png - 720 bytes */
static const unsigned char drive_optical_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9,
0x43, 0xbb, 0x7f, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd5, 0x04, 0x05, 0x11, 0x07, 0x15, 0x73,
0x01, 0xca, 0xa5, 0x00, 0x00, 0x00, 0x8c, 0x74,
0x45, 0x58, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x65,
0x6e, 0x74, 0x00, 0x4d, 0x65, 0x6e, 0x75, 0x2d,
0x73, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x69, 0x63,
0x6f, 0x6e, 0x0a, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x0a, 0x28,
0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x33, 0x20,
0x4a, 0x61, 0x6b, 0x75, 0x62, 0x20, 0x27, 0x6a,
0x69, 0x6d, 0x6d, 0x61, 0x63, 0x27, 0x20, 0x53,
0x74, 0x65, 0x69, 0x6e, 0x65, 0x72, 0x2c, 0x20,
0x0a, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f,
0x6a, 0x69, 0x6d, 0x6d, 0x61, 0x63, 0x2e, 0x6d,
0x75, 0x73, 0x69, 0x63, 0x68, 0x61, 0x6c, 0x6c,
0x2e, 0x63, 0x7a, 0x0a, 0x0a, 0x63, 0x72, 0x65,
0x61, 0x74, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74,
0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x47, 0x49,
0x4d, 0x50, 0x2c, 0x0a, 0x68, 0x74, 0x74, 0x70,
0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x67,
0x69, 0x6d, 0x70, 0x2e, 0x6f, 0x72, 0x67, 0x67,
0x8a, 0xc7, 0x47, 0x00, 0x00, 0x01, 0xc5, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0x9d, 0x92, 0x4d,
0x6b, 0x13, 0x51, 0x14, 0x86, 0x9f, 0x33, 0x99,
0x66, 0x16, 0xc3, 0xe0, 0x64, 0x60, 0x16, 0x53,
0x9d, 0x2c, 0xfc, 0xf8, 0x03, 0x45, 0xd4, 0x8d,
0x28, 0x6e, 0x0a, 0x22, 0xea, 0x5a, 0x5d, 0xb8,
0x95, 0x48, 0xc8, 0x3f, 0xd0, 0x82, 0x50, 0x44,
0x84, 0x58, 0x68, 0x45, 0x41, 0x11, 0x11, 0x44,
0xff, 0x81, 0x4a, 0xd6, 0xd9, 0x68, 0x49, 0xb4,
0x26, 0xa8, 0xcb, 0x66, 0x19, 0x21, 0xd0, 0x84,
0x04, 0x92, 0xb9, 0xc7, 0xc5, 0xa4, 0xcd, 0x04,
0xe9, 0x22, 0x3d, 0xab, 0xc3, 0xb9, 0xe7, 0x3e,
0xef, 0x7b, 0xee, 0x3d, 0x52, 0xae, 0x94, 0x1e,
0x02, 0x0f, 0x38, 0x5a, 0xac, 0x51, 0xae, 0x94,
0xf4, 0x28, 0xd1, 0xef, 0xf7, 0xb5, 0x5c, 0x29,
0xa9, 0x0d, 0x60, 0x8c, 0xa1, 0xd7, 0xeb, 0x2d,
0x24, 0x9d, 0x77, 0xf2, 0x00, 0xd8, 0x00, 0x6a,
0x14, 0x35, 0x0a, 0xb2, 0x00, 0x41, 0x99, 0x01,
0x8c, 0x1a, 0x8c, 0x2a, 0xe8, 0x14, 0x32, 0x3d,
0x4c, 0xd3, 0xff, 0x0a, 0xe9, 0x7d, 0xd5, 0x8c,
0x03, 0x55, 0x8c, 0x49, 0x00, 0x41, 0xd0, 0x83,
0x4e, 0x9d, 0xf5, 0x83, 0x80, 0x98, 0x8c, 0x81,
0x2c, 0x60, 0xdf, 0x85, 0x00, 0x46, 0x01, 0x91,
0x99, 0xa0, 0xea, 0x01, 0xd8, 0x48, 0x96, 0x98,
0x1d, 0xc1, 0x18, 0x34, 0xd1, 0x54, 0x53, 0x04,
0x55, 0x45, 0x54, 0x51, 0xd9, 0x57, 0x13, 0x44,
0x14, 0xd5, 0x43, 0x46, 0x70, 0x1c, 0x87, 0xe5,
0xe3, 0xcb, 0x87, 0xbe, 0xd7, 0x60, 0x30, 0x00,
0x60, 0x38, 0x1c, 0x02, 0x30, 0x1a, 0x8d, 0xe6,
0x1d, 0x34, 0x1a, 0x0d, 0xc6, 0xe3, 0xf1, 0x42,
0xdf, 0xe8, 0x79, 0x5e, 0x0a, 0x30, 0x89, 0x21,
0x9f, 0xcf, 0xf3, 0xe6, 0xed, 0xab, 0x85, 0x00,
0x97, 0x2e, 0x5e, 0x49, 0x01, 0x62, 0x09, 0xed,
0x76, 0x0b, 0x80, 0xa7, 0x4f, 0xaa, 0x4c, 0x26,
0x13, 0x46, 0xa3, 0x21, 0xdd, 0xbf, 0x5d, 0x9a,
0xcd, 0x06, 0xb6, 0xbd, 0xc4, 0x8d, 0xeb, 0x37,
0xa9, 0xd5, 0x6a, 0x04, 0x41, 0x40, 0x14, 0x45,
0xac, 0x3f, 0x7e, 0x44, 0x10, 0x04, 0x53, 0x80,
0x08, 0xbe, 0xef, 0x13, 0x86, 0x21, 0xdb, 0xdb,
0x5f, 0x59, 0x59, 0x39, 0x8b, 0xef, 0x17, 0xf0,
0xfd, 0x02, 0xa7, 0x4f, 0x9d, 0x01, 0xa0, 0x5e,
0xaf, 0xe3, 0xba, 0x2e, 0x61, 0x18, 0xf2, 0xf9,
0xcb, 0x27, 0x1c, 0xc7, 0xc1, 0x75, 0x5d, 0x00,
0x72, 0xe7, 0x2f, 0x9c, 0x93, 0xdf, 0x7f, 0x7e,
0x5d, 0xde, 0xdb, 0xeb, 0xb3, 0xf3, 0xf3, 0x07,
0xbe, 0xef, 0x53, 0x8c, 0x8b, 0x00, 0x74, 0x3a,
0x1d, 0xba, 0xdd, 0x2e, 0x9e, 0xe7, 0x11, 0x45,
0x11, 0x1f, 0x3e, 0xbe, 0xa7, 0xd5, 0xde, 0x21,
0x49, 0x12, 0x9a, 0xdf, 0x1b, 0x88, 0xc8, 0xda,
0xdc, 0xf2, 0x96, 0xee, 0xdf, 0xbb, 0x96, 0xb3,
0xad, 0x67, 0xf1, 0x89, 0xf8, 0xe4, 0xea, 0xea,
0x55, 0x8a, 0x71, 0x8c, 0x65, 0xe5, 0xd8, 0xed,
0xec, 0x9a, 0x17, 0x2f, 0xb7, 0x2c, 0xa0, 0x05,
0xac, 0x6f, 0x54, 0x37, 0xdf, 0x65, 0xf6, 0x8b,
0x6c, 0x6e, 0xdd, 0xbe, 0x73, 0x6b, 0xa9, 0x10,
0x1c, 0x7b, 0x6e, 0x59, 0xd6, 0xdd, 0xb9, 0xd5,
0x57, 0x7d, 0x2d, 0x22, 0x5b, 0x1b, 0xd5, 0xcd,
0x6f, 0xd9, 0xfa, 0x3f, 0xbd, 0x90, 0xec, 0xc4,
0x00, 0x9c, 0x8f, 0x27, 0x00, 0x00, 0x00, 0x00,
0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
/* drive_optical.png - 1513 bytes */
static const unsigned char drive_optical_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xeb, 0x00, 0xeb, 0x00, 0xeb, 0x34,
0x28, 0x49, 0x00, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x05,
0x74, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xed,
0x57, 0x5b, 0x6b, 0x13, 0x5b, 0x14, 0xfe, 0x26,
0x99, 0x5c, 0x66, 0xd2, 0x26, 0xe6, 0xd6, 0x26,
0x29, 0x69, 0x92, 0xb6, 0x84, 0x6a, 0x5b, 0x6f,
0x4f, 0x4d, 0xeb, 0x4b, 0xab, 0xad, 0x20, 0x28,
0x22, 0x88, 0xb4, 0x8a, 0x2f, 0x0a, 0x2a, 0x15,
0xf1, 0x45, 0x14, 0xf1, 0x41, 0x11, 0xc4, 0xcb,
0x8b, 0x88, 0xb5, 0x7d, 0x54, 0x6a, 0x43, 0xfc,
0x01, 0x82, 0x94, 0xb6, 0x5e, 0x1a, 0x6b, 0xbd,
0x80, 0xa5, 0x22, 0x48, 0x93, 0xa7, 0x48, 0x8d,
0x26, 0x0d, 0x3a, 0x6d, 0x9a, 0xa6, 0xb9, 0x9e,
0x87, 0xed, 0x76, 0xa6, 0x4d, 0x7a, 0x1a, 0x7b,
0x0e, 0xc8, 0x81, 0xb3, 0x20, 0xec, 0xcc, 0xde,
0xd9, 0xb3, 0xbf, 0x6f, 0xad, 0x6f, 0xad, 0xbd,
0x02, 0xfc, 0xc7, 0x8d, 0x59, 0x6d, 0xe1, 0xcc,
0x99, 0xb3, 0x67, 0x7b, 0x7a, 0x4e, 0x9c, 0x20,
0x4f, 0xfd, 0xfd, 0x7f, 0x16, 0xe6, 0xf9, 0xf3,
0x77, 0xee, 0xdc, 0xbe, 0xdd, 0xdb, 0x7b, 0xf3,
0xe6, 0xca, 0x15, 0xb6, 0x38, 0x70, 0xab, 0x95,
0x02, 0xbf, 0x7e, 0xfd, 0xda, 0xb5, 0x5b, 0xb7,
0x80, 0x6c, 0x36, 0x9b, 0xcd, 0x66, 0x81, 0x7c,
0x3e, 0x9f, 0xcf, 0xe7, 0x4b, 0xf0, 0x0c, 0xc3,
0x30, 0xe2, 0xf7, 0xdf, 0x87, 0x2c, 0x97, 0xcb,
0xe5, 0x72, 0x39, 0x70, 0xe1, 0xc2, 0xc5, 0x8b,
0xe7, 0xce, 0xdd, 0xb8, 0x41, 0x66, 0x0b, 0x09,
0xc8, 0x8a, 0x6f, 0x6f, 0x68, 0x30, 0x9b, 0xcd,
0x66, 0xb3, 0x19, 0x48, 0x24, 0x12, 0x89, 0x44,
0x02, 0x58, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x04,
0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0xd6, 0x1e,
0x93, 0xc9, 0x64, 0x92, 0x8e, 0xc9, 0x64, 0xe9,
0x23, 0x3d, 0x6f, 0x61, 0x61, 0x61, 0x61, 0x61,
0x01, 0xa0, 0x38, 0x88, 0x63, 0xb7, 0x6e, 0x2d,
0x91, 0x40, 0x6d, 0xad, 0xc5, 0x62, 0xb1, 0xd0,
0x38, 0x00, 0x40, 0x2e, 0x97, 0xcb, 0xe5, 0x72,
0xd2, 0x08, 0x90, 0xb1, 0xf0, 0x53, 0x4a, 0x7c,
0xfe, 0x3e, 0x72, 0x0c, 0x23, 0x9e, 0xa3, 0xd7,
0xeb, 0xf5, 0x7a, 0x3d, 0x5d, 0x75, 0xbb, 0x4b,
0x24, 0xb0, 0x6f, 0xdf, 0xb6, 0x6d, 0x5b, 0xb6,
0x6c, 0xdf, 0x2e, 0x7a, 0x5e, 0x04, 0x48, 0x88,
0xe4, 0x72, 0xf9, 0x3c, 0x21, 0x44, 0x89, 0x89,
0x04, 0xa5, 0xeb, 0x94, 0x78, 0x2e, 0x97, 0xcb,
0xe5, 0xf3, 0x64, 0x5e, 0xfa, 0x1e, 0x0a, 0x74,
0x35, 0x69, 0xb6, 0xb6, 0x7a, 0x3c, 0x3b, 0x76,
0xd0, 0xa7, 0xa6, 0xa6, 0x12, 0x09, 0xec, 0xd9,
0x63, 0xb3, 0xd9, 0x6c, 0x55, 0x55, 0xd2, 0x39,
0xf2, 0x7a, 0x72, 0xa8, 0x14, 0x08, 0x8d, 0x87,
0x08, 0x90, 0x12, 0xa2, 0xeb, 0x52, 0x62, 0x52,
0x82, 0xe4, 0xf7, 0x22, 0xc1, 0x62, 0xfb, 0xec,
0x76, 0xbb, 0xdd, 0xe1, 0xa0, 0x18, 0x2e, 0x5d,
0x5a, 0x95, 0x00, 0xd5, 0x18, 0xc7, 0x71, 0x1c,
0xcf, 0x03, 0x4a, 0xa5, 0x52, 0xa9, 0x54, 0x02,
0x2a, 0x95, 0x5a, 0xad, 0x52, 0x49, 0x01, 0xd0,
0x03, 0xc4, 0x51, 0x0a, 0x88, 0x52, 0x12, 0x23,
0xb0, 0xdc, 0xc3, 0x52, 0x29, 0xae, 0x8c, 0x80,
0x74, 0x9e, 0x61, 0x64, 0x32, 0x99, 0xc4, 0xbd,
0x7a, 0xbd, 0x5e, 0x6f, 0x34, 0x16, 0xe6, 0xc2,
0x8a, 0x08, 0xb8, 0xdd, 0x95, 0x95, 0x15, 0x15,
0x16, 0x8b, 0x38, 0x93, 0x4a, 0xa5, 0x52, 0xa9,
0xd4, 0x72, 0xcf, 0xd0, 0x6a, 0xb4, 0xdc, 0x73,
0xc5, 0x9f, 0x45, 0x82, 0xb9, 0x5c, 0x36, 0x4b,
0x63, 0xb5, 0x9c, 0xe0, 0xf2, 0x88, 0x90, 0xe7,
0x4c, 0x26, 0x9d, 0x4e, 0xa7, 0x45, 0x1c, 0x3a,
0x9d, 0x56, 0xab, 0xd3, 0x15, 0xe6, 0xc2, 0x0a,
0x02, 0x4d, 0x4d, 0x9b, 0x36, 0x6d, 0xdc, 0xd8,
0xd0, 0x00, 0xa4, 0xd3, 0xe9, 0x74, 0x3a, 0x2d,
0x8a, 0x44, 0xaa, 0x69, 0x22, 0xa5, 0xc2, 0x5c,
0x90, 0x7a, 0xba, 0x30, 0x52, 0x62, 0x04, 0x8a,
0x45, 0x50, 0x2a, 0x41, 0xe9, 0x18, 0x8f, 0xc7,
0xe3, 0xf1, 0x78, 0x3e, 0x5f, 0x5b, 0x5b, 0x53,
0x53, 0x5b, 0x4b, 0x71, 0x7a, 0x3c, 0x05, 0x04,
0x48, 0xf9, 0xdb, 0xbc, 0xd9, 0x62, 0xb1, 0x58,
0x2c, 0x16, 0x80, 0xe7, 0x79, 0x9e, 0xe7, 0x19,
0xa6, 0x58, 0x72, 0x15, 0x4b, 0x36, 0x69, 0x25,
0xa2, 0x42, 0x5a, 0x59, 0x9d, 0xc4, 0x35, 0xe9,
0x3e, 0x51, 0x78, 0xc5, 0x92, 0x5b, 0xa7, 0xd3,
0xe9, 0x74, 0x3a, 0x86, 0xb1, 0xdb, 0xed, 0xf6,
0xea, 0x6a, 0x5a, 0x9e, 0xcb, 0xcb, 0xe9, 0xfe,
0x5f, 0x17, 0x99, 0x4a, 0xa5, 0x52, 0xa9, 0x54,
0xfb, 0xf6, 0xb9, 0xdd, 0x6e, 0xb7, 0xb4, 0x58,
0x19, 0x8d, 0x46, 0xa3, 0xc9, 0x84, 0x3f, 0x6e,
0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0x80, 0x5a,
0xad, 0x56, 0xab, 0x54, 0xc7, 0x8e, 0x91, 0xd9,
0xe3, 0xc7, 0x0b, 0x6e, 0xe2, 0x68, 0x34, 0x1a,
0x8d, 0x46, 0x81, 0x58, 0x2c, 0x16, 0x8b, 0xc5,
0x7e, 0xff, 0xa0, 0x52, 0x6f, 0xea, 0xdf, 0xdd,
0x47, 0x2f, 0xb4, 0x95, 0xc6, 0xae, 0xb6, 0x81,
0x26, 0xaf, 0xd7, 0xeb, 0xf3, 0x0d, 0x0c, 0xfc,
0xfb, 0x1e, 0x2d, 0xd5, 0x0e, 0x1c, 0xd8, 0xbf,
0xff, 0xe0, 0xc1, 0x75, 0x10, 0x90, 0xfa, 0x86,
0x61, 0x80, 0xce, 0xce, 0xce, 0xce, 0xdd, 0xbb,
0xc5, 0x2b, 0x3f, 0x93, 0xc9, 0x64, 0x32, 0x19,
0xe0, 0xc7, 0x0f, 0x41, 0xf8, 0xfe, 0x1d, 0x30,
0x18, 0xf4, 0x7a, 0x83, 0x01, 0x98, 0x98, 0x98,
0x98, 0x78, 0xf5, 0x0a, 0xa8, 0xa9, 0x21, 0x49,
0xc7, 0x30, 0x0c, 0x23, 0x93, 0x01, 0x81, 0x40,
0x30, 0x38, 0x3d, 0x0d, 0xb4, 0xb7, 0xb7, 0xb5,
0xed, 0xdc, 0x09, 0x4c, 0x4f, 0x4f, 0x4f, 0x7f,
0xfa, 0x44, 0xca, 0xa3, 0xc1, 0x00, 0xc8, 0x64,
0x32, 0x99, 0x5c, 0x4e, 0x72, 0x8f, 0xe3, 0x00,
0xbf, 0xdf, 0xef, 0xf7, 0xfb, 0xd7, 0x46, 0xb7,
0x26, 0x01, 0x83, 0xc1, 0x60, 0x30, 0x1a, 0x81,
0xc6, 0xc6, 0xc6, 0xc6, 0xa6, 0x26, 0x31, 0xc9,
0x68, 0xcf, 0x33, 0x3b, 0x1b, 0x8b, 0xcd, 0xce,
0x02, 0x1a, 0x8d, 0x46, 0x53, 0x56, 0x06, 0x68,
0xb5, 0x5a, 0xed, 0x86, 0x0d, 0xc0, 0xd0, 0xd0,
0xd0, 0xd0, 0x93, 0x27, 0xa4, 0x9e, 0x33, 0x0c,
0xb0, 0x6b, 0x57, 0x7b, 0x7b, 0x47, 0x07, 0x60,
0x36, 0x57, 0x54, 0x54, 0x54, 0x90, 0x5e, 0x27,
0x1e, 0x07, 0x4c, 0x26, 0xa3, 0xd1, 0x6c, 0x06,
0x14, 0x0a, 0x85, 0x42, 0xa9, 0x04, 0x38, 0x8e,
0xe3, 0xd4, 0x6a, 0x60, 0x6a, 0x6a, 0x6a, 0x6a,
0x6a, 0x6a, 0x1d, 0x04, 0x22, 0x91, 0x48, 0x24,
0x12, 0xc9, 0xe7, 0xad, 0x56, 0xab, 0xd5, 0x6a,
0x65, 0x98, 0xaa, 0x2a, 0x9b, 0xcd, 0x66, 0x03,
0xb2, 0xd9, 0x4c, 0x26, 0x9b, 0x05, 0xaa, 0xab,
0xab, 0xab, 0x69, 0x35, 0x48, 0x26, 0x01, 0x93,
0xc9, 0x64, 0x32, 0x99, 0x80, 0x48, 0x24, 0x1a,
0xfd, 0xf6, 0x0d, 0xf0, 0x78, 0x9a, 0x9b, 0x3d,
0x1e, 0xe2, 0xe9, 0xf6, 0x76, 0xf1, 0xbd, 0xa1,
0x50, 0x28, 0x14, 0x0a, 0x01, 0xa3, 0xa3, 0x4f,
0x9f, 0x0e, 0x0f, 0x03, 0x2e, 0x97, 0xd3, 0x59,
0x53, 0x43, 0x00, 0xf3, 0x3c, 0xad, 0x36, 0x80,
0x20, 0xcc, 0xcd, 0x09, 0x02, 0xe0, 0x74, 0x3a,
0x1c, 0x4e, 0x27, 0xe0, 0x72, 0xb9, 0x5c, 0x2e,
0x17, 0x10, 0x0e, 0x87, 0xc3, 0xe1, 0x30, 0xcd,
0x12, 0xb1, 0xbf, 0xfd, 0x45, 0x20, 0x1c, 0x0e,
0x87, 0xbf, 0x7e, 0x3d, 0x74, 0x68, 0x60, 0x60,
0x70, 0xf0, 0xfe, 0xfd, 0x47, 0x8f, 0x44, 0x01,
0x91, 0xe4, 0x0a, 0x85, 0x3e, 0x7f, 0x0e, 0x85,
0x80, 0x2b, 0x57, 0x2e, 0x5f, 0xbe, 0x7a, 0x95,
0x54, 0x03, 0xb5, 0x1a, 0x60, 0x59, 0x96, 0x65,
0x59, 0xc0, 0x6a, 0x25, 0xed, 0x2f, 0x25, 0x12,
0x0c, 0x06, 0x83, 0x81, 0x80, 0xd8, 0x55, 0xb2,
0x2c, 0xcb, 0x2a, 0x14, 0x22, 0x70, 0x2a, 0x2d,
0x7a, 0x9f, 0x50, 0x47, 0xf8, 0x7c, 0x3e, 0x9f,
0xd7, 0x0b, 0xcc, 0xcd, 0xc5, 0xe3, 0x82, 0x00,
0x7c, 0xf8, 0xf0, 0xf1, 0xa3, 0x18, 0x09, 0x86,
0x21, 0x38, 0x5b, 0x5a, 0x7e, 0xcd, 0x94, 0x9a,
0x4c, 0x3d, 0x3d, 0xa7, 0x4f, 0x9f, 0x3a, 0xd5,
0xd7, 0xd7, 0xd5, 0xd5, 0xd5, 0xd5, 0xdd, 0xbd,
0x77, 0xaf, 0xc7, 0xd3, 0xdc, 0xdc, 0xd2, 0x52,
0x55, 0x45, 0x01, 0xd0, 0x9c, 0xa0, 0xed, 0xb0,
0x20, 0x08, 0x82, 0x20, 0xac, 0xde, 0x36, 0xcf,
0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0x03, 0x75, 0x75,
0x75, 0x75, 0x75, 0x75, 0xc0, 0xe4, 0xe4, 0xe4,
0xe4, 0xfb, 0xf7, 0x82, 0x30, 0x32, 0x32, 0x3a,
0x3a, 0x3c, 0xec, 0xf3, 0xdd, 0xbb, 0xd7, 0xdb,
0xdb, 0xdf, 0x7f, 0xf2, 0xe4, 0x5a, 0xb8, 0xe4,
0xa5, 0x12, 0x78, 0xfb, 0xf6, 0xcd, 0x9b, 0x77,
0xef, 0x1e, 0x3f, 0xe6, 0x38, 0x9e, 0x57, 0xab,
0x3b, 0x3a, 0x88, 0xe6, 0x4d, 0x26, 0x87, 0xc3,
0xe1, 0x70, 0x38, 0xd4, 0x6a, 0x99, 0x8c, 0xf4,
0x2e, 0xb4, 0x7a, 0x15, 0xb6, 0xdf, 0xc4, 0x38,
0x8e, 0xe3, 0x38, 0x0e, 0x20, 0xfb, 0x80, 0xf1,
0xf1, 0xf1, 0xf1, 0x97, 0x2f, 0x53, 0xa9, 0xe7,
0xcf, 0x5f, 0xbc, 0x78, 0xf6, 0x6c, 0x6c, 0x8c,
0x00, 0xef, 0xea, 0xfa, 0x09, 0x4f, 0x4e, 0x75,
0xf0, 0x8f, 0x09, 0x2c, 0x27, 0x32, 0x38, 0x58,
0x56, 0x56, 0x5e, 0xce, 0xf3, 0x4e, 0xa7, 0xdf,
0xef, 0xf7, 0x8f, 0x8d, 0xb9, 0x5c, 0x95, 0x95,
0x95, 0x95, 0x16, 0x8b, 0x52, 0x49, 0xa4, 0x25,
0x93, 0x69, 0xb5, 0x5a, 0xad, 0x56, 0x2b, 0x02,
0xa6, 0x36, 0x33, 0xf3, 0xe5, 0xcb, 0xcc, 0x4c,
0x36, 0xeb, 0xf5, 0x7a, 0xbd, 0x0f, 0x1f, 0x26,
0x12, 0x81, 0x40, 0x30, 0x18, 0x08, 0x3c, 0x78,
0xd0, 0xdb, 0x7b, 0xf7, 0x6e, 0x5f, 0x1f, 0x05,
0x2e, 0x0a, 0x78, 0x2d, 0x3c, 0xeb, 0xf8, 0xb3,
0x07, 0x88, 0x49, 0xc4, 0xb2, 0x87, 0x0f, 0x1f,
0x39, 0xd2, 0xdd, 0xdd, 0xda, 0xaa, 0xd1, 0x68,
0x34, 0x3c, 0x7f, 0xf4, 0x28, 0xcb, 0xca, 0xe5,
0x2c, 0xdb, 0xd6, 0x46, 0xaa, 0x8f, 0xdd, 0xce,
0xfc, 0x34, 0x12, 0x91, 0x99, 0x19, 0x22, 0xb5,
0x91, 0x11, 0x85, 0x42, 0xa1, 0x50, 0x28, 0xfa,
0xfb, 0x09, 0xf0, 0xd7, 0xaf, 0xd7, 0x87, 0xe3,
0x7f, 0xfb, 0xf3, 0xf6, 0x17, 0xf1, 0x8b, 0x66,
0xcc, 0x3d, 0xb8, 0xf4, 0x62, 0x00, 0x00, 0x00,
0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60,
0x82};

View File

@@ -1,178 +0,0 @@
/* drive_removable_media.png - 510 bytes */
static const unsigned char drive_removable_media_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd5, 0x0a, 0x11, 0x12, 0x00, 0x1d, 0x50,
0x96, 0x14, 0xa0, 0x00, 0x00, 0x00, 0x8c, 0x74,
0x45, 0x58, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x65,
0x6e, 0x74, 0x00, 0x4d, 0x65, 0x6e, 0x75, 0x2d,
0x73, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x69, 0x63,
0x6f, 0x6e, 0x0a, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x0a, 0x28,
0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x33, 0x20,
0x4a, 0x61, 0x6b, 0x75, 0x62, 0x20, 0x27, 0x6a,
0x69, 0x6d, 0x6d, 0x61, 0x63, 0x27, 0x20, 0x53,
0x74, 0x65, 0x69, 0x6e, 0x65, 0x72, 0x2c, 0x20,
0x0a, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f,
0x6a, 0x69, 0x6d, 0x6d, 0x61, 0x63, 0x2e, 0x6d,
0x75, 0x73, 0x69, 0x63, 0x68, 0x61, 0x6c, 0x6c,
0x2e, 0x63, 0x7a, 0x0a, 0x0a, 0x63, 0x72, 0x65,
0x61, 0x74, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74,
0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x47, 0x49,
0x4d, 0x50, 0x2c, 0x0a, 0x68, 0x74, 0x74, 0x70,
0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x67,
0x69, 0x6d, 0x70, 0x2e, 0x6f, 0x72, 0x67, 0x67,
0x8a, 0xc7, 0x47, 0x00, 0x00, 0x00, 0xf3, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0xad, 0x93, 0xbf,
0x4a, 0xc3, 0x50, 0x14, 0xc6, 0x7f, 0x29, 0xc9,
0x62, 0xb9, 0x90, 0x0c, 0xf6, 0x21, 0xb2, 0x16,
0xb1, 0x20, 0x76, 0x2f, 0x3a, 0x14, 0x9f, 0xa0,
0x14, 0x9c, 0x94, 0xd2, 0x37, 0x88, 0xbe, 0x85,
0xd2, 0xa1, 0x20, 0x9d, 0x4a, 0xe9, 0x33, 0x48,
0xe9, 0x03, 0x84, 0x90, 0x59, 0x3a, 0x79, 0xa7,
0x2c, 0x81, 0x90, 0xbf, 0x70, 0x3b, 0x48, 0xc8,
0x20, 0x15, 0xd2, 0xeb, 0x37, 0x9f, 0xef, 0x77,
0xbe, 0x73, 0x38, 0x07, 0x34, 0x65, 0xcc, 0xe6,
0x4f, 0x2f, 0x80, 0x77, 0xa6, 0xff, 0xd5, 0x04,
0xbc, 0xe9, 0xe4, 0xb1, 0xb5, 0xb3, 0xaa, 0x2a,
0x3e, 0x56, 0x4b, 0xcf, 0x04, 0x50, 0x4a, 0x11,
0x04, 0x41, 0x2b, 0x80, 0xeb, 0xba, 0x00, 0x74,
0x74, 0x77, 0xd0, 0xa9, 0x13, 0x68, 0x01, 0xce,
0x51, 0xdd, 0x54, 0x7b, 0x04, 0x13, 0xe0, 0x70,
0xf8, 0x42, 0xca, 0xef, 0x56, 0xc6, 0x6e, 0xf7,
0xa2, 0x01, 0x8c, 0xc7, 0x0f, 0x18, 0x86, 0x71,
0xb2, 0x38, 0x49, 0x12, 0x00, 0xd2, 0x34, 0x05,
0x20, 0xcb, 0x32, 0x84, 0x10, 0xec, 0xf6, 0x9f,
0x3f, 0x00, 0xdf, 0xf7, 0x29, 0xcb, 0xb2, 0x55,
0x02, 0x21, 0x44, 0x93, 0xa0, 0xd6, 0x66, 0xbb,
0xa6, 0x77, 0xd9, 0xfb, 0xd3, 0x38, 0xb8, 0x1e,
0xd0, 0xef, 0x5f, 0x11, 0x86, 0x61, 0x03, 0xa8,
0x37, 0x3a, 0x7b, 0x9e, 0x03, 0x60, 0x59, 0xd6,
0x49, 0x80, 0xe3, 0x38, 0xbc, 0x2f, 0xde, 0xb8,
0x1b, 0xdd, 0x37, 0x00, 0xdb, 0xb6, 0x51, 0x4a,
0x91, 0xe7, 0x39, 0x00, 0x71, 0x1c, 0x03, 0x50,
0x14, 0xc5, 0x2f, 0x80, 0x94, 0x92, 0xdb, 0x9b,
0x21, 0x51, 0x14, 0xfd, 0xcf, 0x33, 0xe9, 0x9e,
0x01, 0x47, 0x57, 0x47, 0x4e, 0xf4, 0x9c, 0x50,
0x7b, 0x51, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45,
0x4e, 0x44, 0xae, 0x42, 0x60, 0x82};
/* drive_removable_media.png - 862 bytes */
static const unsigned char drive_removable_media_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x02,
0xe9, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xed,
0x57, 0xbf, 0x4f, 0xea, 0x50, 0x14, 0x3e, 0x85,
0x16, 0x88, 0xe5, 0x57, 0x42, 0x69, 0xa9, 0xd8,
0xa1, 0x92, 0xb2, 0x18, 0x89, 0xac, 0xfe, 0x09,
0x0e, 0x26, 0xc6, 0x44, 0x47, 0x37, 0x1d, 0x4c,
0x8c, 0x83, 0x11, 0x4d, 0xfc, 0x07, 0x74, 0x32,
0x26, 0x26, 0x2e, 0x2f, 0xc1, 0x18, 0x07, 0x1d,
0x4d, 0x8c, 0xff, 0x06, 0x23, 0x0b, 0x91, 0x09,
0xa4, 0x50, 0x03, 0x05, 0x6d, 0xf8, 0x51, 0xfa,
0x86, 0xfb, 0x2e, 0x85, 0x42, 0x95, 0x97, 0xf7,
0x84, 0x85, 0x6f, 0xe0, 0xde, 0x7b, 0xce, 0xb9,
0xf0, 0x7d, 0xe7, 0x9c, 0xdb, 0x5b, 0x00, 0x66,
0x98, 0xe1, 0x9f, 0x40, 0xd8, 0x39, 0x0e, 0x0e,
0x0e, 0x0f, 0xf7, 0xf7, 0xf7, 0xf6, 0xd0, 0xea,
0xe6, 0x66, 0xba, 0x34, 0x53, 0xa9, 0xab, 0xab,
0xcb, 0xcb, 0xeb, 0xeb, 0x8b, 0x0b, 0xab, 0x87,
0x1c, 0x4d, 0x9c, 0xe7, 0x31, 0xf1, 0xcd, 0xcd,
0x8d, 0x8d, 0xad, 0x2d, 0x00, 0x8a, 0xa2, 0x28,
0x8a, 0x9a, 0x3c, 0xf5, 0xe7, 0xe7, 0x97, 0x97,
0xa7, 0xa7, 0xf3, 0x73, 0xb4, 0x1a, 0x43, 0x00,
0xc2, 0xd2, 0x52, 0x2c, 0xb6, 0xb8, 0x28, 0x49,
0xa6, 0x25, 0x9b, 0xcd, 0x66, 0xb3, 0xd9, 0xc9,
0x11, 0x17, 0x04, 0x41, 0x10, 0x04, 0x00, 0x9f,
0xcf, 0xe7, 0xf3, 0xfb, 0x71, 0x62, 0x57, 0x56,
0x50, 0x25, 0x32, 0x19, 0x1c, 0xe7, 0x18, 0xbd,
0x3d, 0x16, 0xa3, 0x69, 0x9a, 0xf6, 0x7a, 0x27,
0x47, 0xd8, 0x8a, 0x56, 0xab, 0xd5, 0x6a, 0xb5,
0x00, 0x82, 0xc1, 0x40, 0x20, 0x18, 0xc4, 0xd6,
0x78, 0xdc, 0x1a, 0x67, 0x23, 0x60, 0x7d, 0x9d,
0xe3, 0x38, 0x8e, 0xe3, 0x00, 0x1a, 0x8d, 0x46,
0xa3, 0xd1, 0x98, 0xbc, 0x80, 0x66, 0xb3, 0xd9,
0x6c, 0x36, 0x01, 0x78, 0x3e, 0x12, 0x89, 0x46,
0x01, 0xc2, 0x61, 0x86, 0xe1, 0xb8, 0x9d, 0x9d,
0x6f, 0x05, 0xcc, 0xcf, 0xf3, 0x7c, 0x34, 0xba,
0xb6, 0xe6, 0x72, 0x51, 0x94, 0xcb, 0x05, 0xa0,
0xaa, 0xaa, 0xaa, 0xaa, 0xd3, 0x13, 0xa0, 0xeb,
0xba, 0xae, 0xeb, 0x00, 0x9d, 0x4e, 0xa7, 0xd3,
0x6e, 0x2f, 0x2f, 0xdb, 0x0a, 0xc0, 0x3d, 0x46,
0xd3, 0x73, 0x73, 0x5e, 0x2f, 0x80, 0xc7, 0xe3,
0xf1, 0x78, 0x3c, 0x00, 0x9a, 0xa6, 0x69, 0x9a,
0x36, 0x79, 0x01, 0xf8, 0x77, 0xdd, 0x6e, 0xb7,
0xdb, 0xed, 0x06, 0x60, 0x98, 0x50, 0x88, 0x65,
0x05, 0x01, 0xf3, 0xc4, 0x71, 0x96, 0x43, 0x1c,
0x8f, 0xfb, 0xfd, 0x7e, 0x7f, 0x20, 0x00, 0x50,
0xaf, 0xd7, 0xeb, 0xf5, 0x3a, 0x52, 0xde, 0xe9,
0x4c, 0x5e, 0x00, 0x86, 0x61, 0x18, 0x86, 0x61,
0x00, 0xd0, 0x34, 0x4d, 0xd3, 0xb4, 0xc9, 0x13,
0x8d, 0x99, 0x4c, 0x4f, 0x00, 0xee, 0x31, 0xdc,
0xfb, 0xf8, 0x10, 0x95, 0xcb, 0xe5, 0xb2, 0x2c,
0x4f, 0x4f, 0x40, 0xb7, 0x6b, 0x18, 0xba, 0x0e,
0x10, 0x89, 0x70, 0x1c, 0xcf, 0xe3, 0x4a, 0xec,
0xee, 0x22, 0xef, 0xe3, 0x63, 0x4f, 0x00, 0x49,
0x3a, 0x9d, 0x24, 0x99, 0x48, 0x48, 0x92, 0x24,
0x49, 0x12, 0x00, 0xc3, 0x30, 0x0c, 0xc3, 0x00,
0x24, 0x93, 0xc9, 0xa4, 0x59, 0xb0, 0x71, 0x40,
0x10, 0x04, 0x81, 0x73, 0x67, 0xef, 0x45, 0xf3,
0xd1, 0x51, 0xc8, 0x82, 0x22, 0xbd, 0x5e, 0xf4,
0x34, 0x2c, 0x14, 0x0a, 0x85, 0x42, 0x01, 0x20,
0x97, 0xcb, 0xe5, 0x72, 0xb9, 0x44, 0xa2, 0xc7,
0x1b, 0x4f, 0x3e, 0x3f, 0x35, 0xed, 0xe3, 0x63,
0x61, 0x81, 0xe7, 0x79, 0x1e, 0x5f, 0x63, 0x00,
0x00, 0xa1, 0x50, 0x28, 0xc4, 0x30, 0xd3, 0xab,
0x00, 0x86, 0x28, 0x8a, 0xa2, 0x28, 0x02, 0x54,
0xab, 0xb5, 0xda, 0xfb, 0x7b, 0x38, 0x3c, 0x24,
0xa0, 0x56, 0x53, 0xd5, 0x6a, 0x15, 0xb5, 0x4c,
0xb9, 0x0c, 0xa0, 0x28, 0x8a, 0xa2, 0x28, 0x83,
0xb9, 0xc3, 0x9f, 0x04, 0xd1, 0x6f, 0x75, 0x38,
0xf0, 0x7a, 0xd0, 0x87, 0x32, 0x68, 0xb7, 0x36,
0xe7, 0xd8, 0x3e, 0x58, 0x99, 0xfe, 0x35, 0x80,
0xf5, 0x0c, 0x98, 0xb0, 0xb9, 0x89, 0x87, 0x91,
0x4e, 0xdf, 0xde, 0xfe, 0xfa, 0xf5, 0x73, 0x19,
0x3e, 0x3e, 0x3e, 0x3a, 0x3a, 0x3d, 0xfd, 0xfe,
0xb1, 0x8d, 0x13, 0xfd, 0x17, 0x02, 0x50, 0x2e,
0x4e, 0x4e, 0x52, 0xa9, 0xb3, 0xb3, 0xc1, 0xec,
0x0f, 0x47, 0x0e, 0x67, 0x6e, 0x94, 0x1f, 0x77,
0x7d, 0x7f, 0x64, 0xa5, 0xa2, 0x28, 0x95, 0x8a,
0xd9, 0xf3, 0x18, 0xf9, 0x7c, 0x3e, 0xff, 0xfa,
0x8a, 0x2a, 0x20, 0x8a, 0xc3, 0xdf, 0xf9, 0x85,
0x80, 0xc1, 0x92, 0x97, 0x4a, 0xa5, 0x52, 0xa9,
0x34, 0xba, 0x05, 0xcc, 0xe8, 0x7e, 0x62, 0xd6,
0x96, 0xb1, 0xf7, 0x63, 0x61, 0x04, 0x61, 0x12,
0x1e, 0x17, 0x43, 0x02, 0x64, 0x59, 0x96, 0x65,
0xd9, 0x30, 0x58, 0x96, 0x65, 0x59, 0xf6, 0xab,
0x7c, 0xff, 0x0c, 0xec, 0x32, 0x5d, 0x2c, 0x16,
0x8b, 0xc5, 0xe2, 0x70, 0xed, 0xc8, 0xfe, 0x80,
0xb7, 0xb7, 0xed, 0xed, 0xbb, 0xbb, 0xfb, 0xfb,
0x74, 0xfa, 0xe1, 0x61, 0xd2, 0xc4, 0xc7, 0x03,
0x41, 0x20, 0x9e, 0xab, 0xab, 0x3d, 0xcb, 0x77,
0x1b, 0xd0, 0xe8, 0xf8, 0xf3, 0xca, 0xe1, 0x74,
0xa2, 0x11, 0xff, 0x33, 0xb0, 0x8e, 0x24, 0x39,
0x18, 0x67, 0xad, 0x20, 0xce, 0xa0, 0xae, 0xa3,
0x11, 0xdf, 0xf1, 0xed, 0xf6, 0xe8, 0x11, 0xc7,
0x75, 0xbb, 0x83, 0xfb, 0x67, 0x98, 0xe1, 0xbf,
0xe1, 0x37, 0x5a, 0x8c, 0x28, 0xe4, 0xc5, 0xfe,
0xbe, 0x74, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45,
0x4e, 0x44, 0xae, 0x42, 0x60, 0x82};

View File

@@ -1,197 +0,0 @@
/* edit_copy.png - 498 bytes */
static const unsigned char edit_copy_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9,
0x43, 0xbb, 0x7f, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd5, 0x0a, 0x1a, 0x14, 0x08, 0x2f, 0x83,
0x14, 0x34, 0x9b, 0x00, 0x00, 0x01, 0x7f, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0x95, 0x93, 0x4b,
0x4b, 0x02, 0x51, 0x18, 0x86, 0xdf, 0x23, 0x33,
0x63, 0xda, 0x80, 0xfd, 0x0a, 0xcf, 0x08, 0xdd,
0x16, 0xfd, 0x8f, 0x08, 0x5a, 0xb6, 0x88, 0xa0,
0x75, 0x17, 0xf0, 0x42, 0xb6, 0xb0, 0x45, 0x91,
0x76, 0xdb, 0x44, 0x44, 0x44, 0x1b, 0xb1, 0x36,
0x05, 0xfe, 0x04, 0x31, 0xb3, 0x36, 0x81, 0x65,
0x30, 0xa3, 0xbf, 0xa0, 0x9a, 0x30, 0x05, 0x37,
0xcd, 0xed, 0xb4, 0x69, 0x74, 0x46, 0x47, 0xb1,
0x6f, 0xf5, 0x9d, 0xc3, 0x79, 0x1f, 0xde, 0xf7,
0xe3, 0x3b, 0xe4, 0xe8, 0x24, 0x33, 0xaf, 0xeb,
0xfa, 0x2c, 0x46, 0x28, 0xc1, 0xcf, 0xbd, 0x6d,
0xae, 0xc5, 0xef, 0x9c, 0x77, 0x9c, 0x61, 0x18,
0xd3, 0xf1, 0xe8, 0xd6, 0x28, 0x7a, 0xa4, 0x0f,
0xf6, 0x26, 0x01, 0xb8, 0x01, 0x76, 0xd3, 0x6a,
0x35, 0xc1, 0x18, 0xeb, 0x13, 0x11, 0x42, 0x00,
0x00, 0xa1, 0xd0, 0x84, 0x27, 0x94, 0x73, 0x1e,
0x6a, 0xb5, 0x1a, 0x5e, 0xab, 0x95, 0x85, 0xc6,
0x77, 0x63, 0x66, 0x90, 0x8b, 0xfd, 0xcc, 0x6e,
0xca, 0xee, 0x79, 0x9e, 0xbf, 0x75, 0x01, 0x24,
0x49, 0x42, 0xb1, 0x54, 0x98, 0xfa, 0x47, 0xa4,
0x45, 0x17, 0x40, 0x51, 0x94, 0x4e, 0x8c, 0x56,
0xab, 0x39, 0x54, 0x6c, 0x47, 0x72, 0x01, 0x28,
0xa5, 0x28, 0x96, 0x0a, 0x9d, 0xb3, 0x2c, 0xcb,
0x9e, 0xe2, 0x48, 0x24, 0xd2, 0x3f, 0x03, 0xc6,
0x18, 0x64, 0x59, 0x76, 0x0d, 0xd2, 0xf9, 0x70,
0x50, 0xb9, 0x00, 0x94, 0x52, 0x94, 0xca, 0xc5,
0xa1, 0x0e, 0x7a, 0xa1, 0x9c, 0x2d, 0xb6, 0x2c,
0x06, 0x45, 0x19, 0xcd, 0x41, 0x30, 0x38, 0x8e,
0x76, 0xbb, 0xdd, 0x05, 0xe8, 0xba, 0x0e, 0xc6,
0x18, 0xc2, 0x61, 0x8a, 0xf2, 0x53, 0x69, 0xa8,
0x03, 0x4a, 0x25, 0x98, 0xa6, 0x81, 0xca, 0x4b,
0xa5, 0x0b, 0xd0, 0xb4, 0x1f, 0x04, 0x02, 0x63,
0xb0, 0x2c, 0x36, 0xd4, 0xee, 0xe5, 0xd5, 0x05,
0x1e, 0x1e, 0xef, 0xdd, 0x11, 0x04, 0x9e, 0xaf,
0x9e, 0x9d, 0x9f, 0xba, 0x16, 0x87, 0x31, 0xcb,
0xd3, 0xb6, 0x28, 0x8a, 0x58, 0x59, 0x5e, 0x85,
0x65, 0x99, 0x50, 0xbf, 0x54, 0xe4, 0xae, 0xb3,
0xe0, 0x36, 0xd6, 0xa3, 0x79, 0x00, 0x79, 0xc7,
0x72, 0x6c, 0x1b, 0x86, 0xe1, 0xeb, 0x15, 0x3b,
0x4b, 0x55, 0x55, 0xe4, 0x6e, 0xb2, 0x00, 0xf0,
0xec, 0xf3, 0x1a, 0x92, 0xa6, 0xe9, 0xf0, 0xfb,
0xfd, 0x10, 0x04, 0x01, 0xa2, 0x28, 0x82, 0x10,
0x82, 0x7a, 0xbd, 0x0e, 0x80, 0xe0, 0xe3, 0xf3,
0xdd, 0x16, 0xa7, 0x12, 0xb1, 0xe4, 0x1c, 0xe9,
0x15, 0x1f, 0x1e, 0xa7, 0xb3, 0xa6, 0x69, 0x2e,
0x79, 0x7d, 0xac, 0xbf, 0x2a, 0x00, 0x28, 0x24,
0x62, 0xc9, 0x1d, 0x00, 0xf8, 0x05, 0x42, 0x59,
0xa6, 0x03, 0x15, 0x88, 0xf7, 0xd8, 0x00, 0x00,
0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42,
0x60, 0x82};
/* edit_copy.png - 1020 bytes */
static const unsigned char edit_copy_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0x88, 0x00, 0x8a, 0x00, 0x85, 0x09,
0xa5, 0xa9, 0xd5, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x03,
0x87, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xd5,
0x57, 0xbb, 0x4e, 0xe3, 0x40, 0x14, 0xbd, 0x33,
0xb6, 0xf3, 0x70, 0x41, 0xba, 0x7c, 0x81, 0x13,
0xdb, 0xfc, 0x07, 0x42, 0x08, 0x1a, 0x2a, 0x24,
0x4a, 0x6a, 0x8a, 0x44, 0x40, 0x10, 0x88, 0x1a,
0x29, 0x84, 0x37, 0x12, 0x20, 0x14, 0x89, 0x9a,
0x86, 0x96, 0x0a, 0x09, 0x45, 0x10, 0x84, 0x40,
0x3c, 0x24, 0x20, 0xc1, 0xd4, 0x50, 0x00, 0x05,
0x89, 0x08, 0x8a, 0x3d, 0x7e, 0x6c, 0xe1, 0x9d,
0xb5, 0xd7, 0x8e, 0x93, 0x40, 0x82, 0xb4, 0x3b,
0x95, 0x67, 0x3c, 0x73, 0xee, 0x39, 0xf7, 0xdc,
0x19, 0x8f, 0x01, 0xfe, 0xf3, 0x86, 0xe8, 0xc3,
0xd2, 0xd2, 0xea, 0x6a, 0x2e, 0x37, 0x32, 0x62,
0x59, 0xa6, 0x69, 0x9a, 0x92, 0xf4, 0xe3, 0x81,
0x11, 0xc6, 0x18, 0x97, 0xcb, 0x13, 0x13, 0xa9,
0xd4, 0xd4, 0xd4, 0xde, 0xde, 0x77, 0x71, 0x58,
0xfa, 0x40, 0x88, 0xa6, 0x69, 0x9a, 0x28, 0x4e,
0x4f, 0x4f, 0x4d, 0xcd, 0xce, 0xfe, 0x7c, 0xe6,
0xd6, 0xd6, 0xd6, 0xd7, 0x97, 0x97, 0x45, 0xb1,
0x53, 0x9c, 0x3f, 0x02, 0x30, 0xc6, 0x18, 0x21,
0xe7, 0x45, 0xa5, 0x52, 0xa9, 0xbc, 0xbf, 0x77,
0x9f, 0x78, 0x4f, 0x4f, 0x4f, 0x4f, 0x2c, 0x06,
0x80, 0x10, 0x42, 0xee, 0x78, 0x1d, 0x0b, 0xf8,
0x6e, 0xb3, 0x2c, 0xcb, 0xb2, 0x2c, 0x84, 0x34,
0x4d, 0xd3, 0x34, 0x8d, 0x61, 0x9a, 0xcf, 0x03,
0x08, 0x85, 0x42, 0xa1, 0x70, 0x98, 0xf6, 0x2d,
0xeb, 0xc7, 0x05, 0x28, 0x8a, 0xa2, 0x3c, 0x3e,
0x06, 0x13, 0xbf, 0xbc, 0xbc, 0xbe, 0xbe, 0xb8,
0x18, 0x1d, 0xad, 0xd5, 0x6a, 0xb5, 0x8f, 0x0f,
0x41, 0xa0, 0x6f, 0x1b, 0x61, 0x21, 0x64, 0x67,
0xde, 0x2d, 0x68, 0x71, 0x71, 0x79, 0x39, 0x9b,
0x6d, 0xb7, 0x68, 0xd1, 0xef, 0x76, 0x70, 0x30,
0x31, 0x91, 0x4e, 0x67, 0x32, 0x43, 0x43, 0x2d,
0x05, 0x24, 0x93, 0xc9, 0x64, 0x22, 0xe1, 0x1f,
0x57, 0x55, 0x55, 0x55, 0x55, 0x86, 0x39, 0x3a,
0x2a, 0x14, 0x0e, 0x0f, 0x05, 0x21, 0x93, 0x99,
0x9c, 0x9c, 0x99, 0x41, 0x88, 0x0a, 0xeb, 0x34,
0xb3, 0x8d, 0xa9, 0x03, 0x2c, 0x2d, 0xad, 0xac,
0x2c, 0x2c, 0x0c, 0x0c, 0x74, 0xec, 0x00, 0x21,
0xba, 0x4e, 0x88, 0xe3, 0x07, 0x0d, 0x53, 0xad,
0x56, 0xab, 0x95, 0x4a, 0xb7, 0xe9, 0x3b, 0x7b,
0xe7, 0xef, 0x78, 0x6d, 0x08, 0x08, 0x72, 0xa0,
0x5e, 0xaf, 0xd7, 0xeb, 0x75, 0x80, 0x93, 0x93,
0x62, 0xb1, 0x50, 0xe8, 0x3e, 0x61, 0x87, 0x6a,
0xf3, 0x9d, 0xf2, 0x25, 0x07, 0xdc, 0x40, 0x84,
0x10, 0xa2, 0x69, 0xc1, 0x01, 0x4a, 0xa5, 0x52,
0xa9, 0x54, 0xea, 0x9c, 0xb8, 0x24, 0x49, 0x92,
0x2c, 0x77, 0x20, 0x20, 0x91, 0x48, 0x24, 0x04,
0xc1, 0x06, 0x74, 0xc0, 0xdd, 0x0e, 0x9c, 0x9e,
0x1e, 0x1f, 0xfb, 0xd7, 0x49, 0x92, 0x24, 0x7d,
0xe5, 0x73, 0xe8, 0x4d, 0x04, 0xed, 0x7f, 0xdb,
0x01, 0xba, 0x50, 0x51, 0x14, 0x45, 0x51, 0xfc,
0x02, 0x08, 0x21, 0x84, 0x90, 0xe0, 0x00, 0xe5,
0x72, 0xb9, 0x5c, 0x2e, 0xb7, 0x4f, 0xbc, 0x11,
0x8a, 0x65, 0x01, 0xc8, 0xb2, 0x2c, 0xf7, 0xf6,
0xb6, 0x21, 0xc0, 0x0b, 0x40, 0x81, 0x05, 0x41,
0x10, 0x1a, 0x3b, 0xa0, 0xaa, 0xaa, 0x0a, 0x70,
0x7a, 0x7a, 0x76, 0x76, 0x72, 0xe2, 0x07, 0x96,
0x65, 0x59, 0x6e, 0x64, 0x7d, 0xb3, 0x4c, 0xbb,
0xf1, 0xe9, 0xa9, 0xd3, 0x15, 0x07, 0xdc, 0x7b,
0x80, 0x8e, 0x13, 0x42, 0x88, 0xae, 0xb7, 0x76,
0x20, 0x88, 0x70, 0x50, 0xe2, 0x64, 0x59, 0x96,
0x25, 0xc9, 0x19, 0x0f, 0x87, 0xc3, 0xe1, 0x70,
0xf8, 0x0b, 0x02, 0x4c, 0xd3, 0x34, 0x4d, 0xd3,
0xef, 0x80, 0x5b, 0x00, 0x80, 0xfd, 0x1d, 0xa8,
0xd7, 0x01, 0xce, 0xce, 0xce, 0xcf, 0x8b, 0x45,
0x3f, 0xb0, 0x28, 0x8a, 0xa2, 0x28, 0xfa, 0x33,
0xdb, 0xca, 0x01, 0x84, 0x10, 0xc2, 0x18, 0x80,
0x65, 0x59, 0x96, 0x61, 0x9c, 0x52, 0xa5, 0xbc,
0x5a, 0x0a, 0x30, 0x0c, 0xc3, 0x30, 0x8c, 0x60,
0x6b, 0x69, 0x3f, 0x28, 0xf3, 0x74, 0xfc, 0xfe,
0xfe, 0xfe, 0xde, 0x7b, 0x0a, 0x35, 0xc3, 0xe3,
0x79, 0x9e, 0xe7, 0x79, 0x80, 0x58, 0x2c, 0x16,
0x73, 0xce, 0x7b, 0x80, 0x78, 0x3c, 0x1e, 0x8f,
0xc7, 0xfd, 0xbc, 0xda, 0x12, 0xe0, 0x25, 0xea,
0xcd, 0x54, 0xa3, 0xef, 0x2d, 0x9d, 0x2f, 0x8a,
0xa2, 0x98, 0x4c, 0x06, 0x13, 0xa6, 0x7d, 0x8c,
0x31, 0x66, 0x18, 0x00, 0x86, 0x61, 0x18, 0x86,
0x71, 0x32, 0x8d, 0x31, 0xc6, 0x18, 0xfb, 0x2b,
0x23, 0xd0, 0x01, 0x77, 0x6d, 0x13, 0x02, 0x10,
0x8d, 0x46, 0xa3, 0xd1, 0xa8, 0xbf, 0xa4, 0x28,
0x71, 0x8e, 0xe3, 0x38, 0x8e, 0x0b, 0x16, 0x60,
0x8b, 0xb4, 0xe7, 0x37, 0x3a, 0x65, 0xe8, 0x7a,
0x5a, 0x32, 0x74, 0x1d, 0xcb, 0xb2, 0x2c, 0xcb,
0xfa, 0x37, 0x71, 0xb1, 0x68, 0x1f, 0xd7, 0x5e,
0x21, 0xac, 0x03, 0x18, 0x0a, 0x85, 0x42, 0x0f,
0x0f, 0x9b, 0x9b, 0xdb, 0xdb, 0x1b, 0x1b, 0xed,
0x9f, 0xe0, 0x34, 0x90, 0x57, 0x68, 0x50, 0xe6,
0x69, 0x66, 0x29, 0x71, 0xba, 0x6e, 0x67, 0x27,
0x9f, 0xdf, 0xda, 0x6a, 0x37, 0xea, 0xf5, 0xb5,
0x4f, 0xc0, 0x77, 0xff, 0x8c, 0xb2, 0xd9, 0x5c,
0x6e, 0x7e, 0x7e, 0x66, 0xa6, 0xd5, 0xde, 0xf1,
0x96, 0x0a, 0x9d, 0xe7, 0x94, 0x8e, 0x3d, 0x6f,
0x60, 0xa0, 0xaf, 0x6f, 0x70, 0xd0, 0xc1, 0x7f,
0x7d, 0x7d, 0x7b, 0x7b, 0x79, 0x01, 0xb8, 0xbc,
0xbc, 0xba, 0xba, 0xb8, 0x00, 0xb0, 0x2f, 0x8a,
0xdb, 0xdb, 0x3e, 0x01, 0x9d, 0xb6, 0xa0, 0xbd,
0xc3, 0x71, 0x1c, 0xc7, 0xb2, 0x36, 0x51, 0xd6,
0x15, 0xcd, 0xed, 0x04, 0x42, 0x8e, 0x10, 0xda,
0x9e, 0x9e, 0x9e, 0x9f, 0x9f, 0x9e, 0x00, 0x6e,
0x6f, 0xef, 0xee, 0x6e, 0x6e, 0x00, 0x22, 0x11,
0x9e, 0xe7, 0xf9, 0x8d, 0x8d, 0x54, 0x6a, 0x7c,
0x3c, 0x9d, 0xce, 0xe7, 0xbb, 0x2e, 0x80, 0xee,
0x9d, 0x48, 0x24, 0x12, 0x89, 0x44, 0x82, 0xaf,
0x02, 0x94, 0xa8, 0xd7, 0x09, 0xc3, 0x30, 0x0c,
0xd3, 0x74, 0x32, 0x4e, 0x89, 0x03, 0x60, 0x8c,
0xd0, 0xd8, 0x98, 0x4d, 0x7c, 0x77, 0xd7, 0x1b,
0xb7, 0xe3, 0x7b, 0xbb, 0x7d, 0x3f, 0xdf, 0xdf,
0xd7, 0x75, 0x5d, 0xd7, 0xf5, 0xe1, 0x61, 0x3a,
0xde, 0xee, 0xff, 0x96, 0x2d, 0x92, 0x5e, 0x14,
0x4d, 0xd3, 0x76, 0xa5, 0x58, 0xb4, 0x4b, 0xaa,
0xbf, 0x7f, 0x76, 0x36, 0x93, 0x99, 0x9b, 0xfb,
0xfc, 0xec, 0x56, 0xa2, 0xff, 0xb9, 0xf6, 0x0b,
0xd9, 0xe5, 0x3d, 0x1c, 0x7d, 0xfc, 0xfa, 0x4e,
0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44,
0xae, 0x42, 0x60, 0x82};

View File

@@ -1,333 +0,0 @@
/* edit_cut.png - 807 bytes */
static const unsigned char edit_cut_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9,
0x43, 0xbb, 0x7f, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd5, 0x0a, 0x1c, 0x16, 0x1d, 0x31, 0x68,
0x41, 0x64, 0x5e, 0x00, 0x00, 0x02, 0xb4, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0x85, 0x93, 0x5d,
0x48, 0x93, 0x51, 0x18, 0xc7, 0x9f, 0x73, 0xde,
0x77, 0xaf, 0xaf, 0xdb, 0xd4, 0x7d, 0xa5, 0xdb,
0x6c, 0xf8, 0x15, 0x68, 0x78, 0xd1, 0x55, 0x10,
0x74, 0x61, 0x94, 0x49, 0x57, 0x45, 0xde, 0x64,
0x22, 0x11, 0x68, 0x69, 0x96, 0x58, 0xa8, 0x69,
0x81, 0x90, 0x04, 0x95, 0xa5, 0x7d, 0x81, 0x88,
0x10, 0x94, 0x18, 0xe8, 0x10, 0xf4, 0x4a, 0x90,
0x24, 0xba, 0x0c, 0x02, 0xb5, 0x30, 0x6d, 0x33,
0x36, 0xf2, 0x63, 0xef, 0x36, 0x75, 0x9b, 0xee,
0x75, 0x5f, 0xef, 0x76, 0xce, 0xdb, 0x4d, 0xce,
0x61, 0x5a, 0xe7, 0xee, 0xfc, 0xff, 0x0f, 0x3f,
0xfe, 0xcf, 0xf3, 0x9c, 0x83, 0x20, 0xe5, 0x3c,
0xeb, 0x7d, 0x72, 0x0e, 0x00, 0xde, 0xf3, 0x3c,
0xef, 0x6d, 0xba, 0x79, 0xbb, 0x74, 0x8f, 0xd7,
0xcf, 0xb2, 0xec, 0xa5, 0x3b, 0xcd, 0xad, 0xba,
0x54, 0x1d, 0xa7, 0x5e, 0x18, 0x86, 0x19, 0xbb,
0xd5, 0xd8, 0xac, 0x8d, 0x46, 0xa3, 0xcb, 0x7d,
0xfd, 0xaf, 0x3b, 0x53, 0x3d, 0x05, 0xab, 0xb8,
0x70, 0xe6, 0x74, 0xb9, 0xe6, 0xc5, 0xab, 0x9e,
0x4f, 0x07, 0x02, 0x08, 0x21, 0xfc, 0x4f, 0x87,
0x1d, 0xd7, 0xd5, 0xd6, 0x57, 0x10, 0x42, 0x8e,
0xed, 0xe8, 0x4f, 0x7b, 0x1e, 0x97, 0x99, 0x73,
0xcd, 0xa6, 0xed, 0x90, 0x88, 0x28, 0xa5, 0x27,
0x0e, 0x04, 0x60, 0x8c, 0x43, 0x4b, 0x4b, 0xbf,
0x80, 0x4f, 0x4b, 0x43, 0xb1, 0x58, 0xac, 0x74,
0x27, 0x05, 0xcb, 0xb2, 0x53, 0x85, 0x85, 0x85,
0xe0, 0x71, 0x7b, 0x28, 0xa5, 0xd4, 0xf1, 0xaf,
0x04, 0x15, 0x36, 0x9b, 0x0d, 0x56, 0x5d, 0x2b,
0xa8, 0xae, 0xb6, 0xbe, 0x38, 0x91, 0x48, 0x9c,
0xea, 0x79, 0xde, 0x3d, 0x50, 0x52, 0x52, 0xa2,
0x40, 0x80, 0xc1, 0xe1, 0x74, 0x00, 0x00, 0x58,
0x0f, 0x04, 0xdc, 0x6d, 0xbd, 0xf7, 0x19, 0x63,
0xbc, 0xbc, 0xb8, 0x68, 0x07, 0x3e, 0x8d, 0x47,
0x92, 0x24, 0x1d, 0xd7, 0xeb, 0xf4, 0xd7, 0x64,
0x0a, 0xb0, 0xbe, 0xb1, 0x46, 0x01, 0x60, 0xa2,
0xad, 0xa5, 0xe3, 0xe1, 0x81, 0x00, 0x00, 0x00,
0x4a, 0x69, 0xe5, 0xc2, 0x8f, 0x05, 0x79, 0x6d,
0xcd, 0x03, 0x8d, 0x37, 0x9a, 0x54, 0xf1, 0x44,
0x1c, 0x89, 0x62, 0x10, 0xe6, 0xe6, 0xe6, 0x24,
0x00, 0xe8, 0xda, 0x5b, 0xff, 0x17, 0xa0, 0xad,
0xa5, 0x63, 0x1a, 0x63, 0x3c, 0x64, 0x5f, 0xb4,
0xd1, 0x60, 0x70, 0x0b, 0x6b, 0x34, 0x1a, 0x10,
0xdc, 0x82, 0x2c, 0xcb, 0xf2, 0xbb, 0xb6, 0x96,
0x8e, 0xe9, 0xff, 0x02, 0xfe, 0xa4, 0x98, 0x9a,
0x9d, 0x99, 0xc6, 0x4e, 0xa7, 0x03, 0xd2, 0x39,
0x1e, 0x32, 0xdf, 0x0e, 0x46, 0x10, 0x42, 0x6f,
0xf6, 0xab, 0x45, 0x7b, 0x85, 0x31, 0xa3, 0xb1,
0x97, 0x50, 0x7a, 0x3d, 0xbe, 0xb9, 0xa9, 0x26,
0xe5, 0x65, 0x32, 0x33, 0xf9, 0x11, 0x15, 0x18,
0x73, 0x40, 0x20, 0x74, 0x0b, 0x21, 0x34, 0x50,
0xe9, 0xf1, 0xb4, 0xef, 0x0b, 0x18, 0x33, 0x99,
0x3a, 0xe3, 0x7e, 0xff, 0x83, 0xa3, 0x26, 0x13,
0x24, 0x28, 0x45, 0xde, 0xad, 0x4d, 0xd9, 0x17,
0xde, 0x1e, 0x66, 0x65, 0x54, 0x55, 0x90, 0x9d,
0xc3, 0xf0, 0x1c, 0x47, 0x25, 0x59, 0x06, 0xe7,
0xfa, 0x3a, 0x28, 0xb2, 0xb2, 0xae, 0x56, 0xba,
0xdd, 0x43, 0xc9, 0x16, 0xc6, 0xcd, 0xe6, 0x1a,
0xc9, 0xe7, 0xeb, 0x2a, 0x36, 0x1a, 0xe9, 0xc2,
0xca, 0xca, 0x54, 0x30, 0x12, 0x96, 0x02, 0x41,
0x11, 0xd7, 0xc4, 0x69, 0x4d, 0x94, 0x23, 0x3a,
0x96, 0xc1, 0x34, 0x10, 0x12, 0x13, 0x8e, 0xd5,
0xd5, 0x0f, 0x47, 0xf4, 0x7a, 0x12, 0xf3, 0xf9,
0x06, 0xc7, 0xcd, 0xe6, 0xdd, 0x97, 0x3a, 0x6a,
0x30, 0x08, 0xf3, 0x45, 0x45, 0x64, 0x84, 0x61,
0xee, 0x03, 0x00, 0xcc, 0x58, 0x2c, 0x21, 0xab,
0x52, 0x99, 0xd8, 0xf1, 0x47, 0x18, 0x86, 0x7c,
0xc9, 0x35, 0x07, 0x01, 0x00, 0x86, 0x31, 0x6e,
0xff, 0x96, 0x9f, 0x4f, 0x46, 0x0d, 0x06, 0x61,
0x77, 0x88, 0xb1, 0x98, 0x5e, 0x92, 0x24, 0x52,
0x45, 0xc8, 0xa3, 0x09, 0x95, 0xea, 0xa5, 0x82,
0x65, 0x79, 0x84, 0xb1, 0x3d, 0x39, 0x69, 0x8e,
0x9b, 0x51, 0xf3, 0xe9, 0xaa, 0xc9, 0x8c, 0x8c,
0xbe, 0xcb, 0x94, 0x76, 0x83, 0x2c, 0x53, 0x20,
0xc4, 0xb0, 0x0b, 0xe0, 0x38, 0x41, 0xad, 0x54,
0x32, 0x5f, 0xf3, 0xf2, 0x62, 0x26, 0x9d, 0xae,
0x69, 0x5e, 0x10, 0xbc, 0x8a, 0xcc, 0xcc, 0x2b,
0xc9, 0x8f, 0xa4, 0xd5, 0x36, 0x7c, 0x77, 0xb9,
0x36, 0x0e, 0x1f, 0x3a, 0xd4, 0x30, 0x6b, 0xb1,
0xc4, 0x08, 0xa5, 0x18, 0x30, 0x0e, 0x00, 0x00,
0x30, 0x00, 0x00, 0xd5, 0x5a, 0xad, 0xcf, 0xe5,
0xf7, 0x9f, 0xf4, 0x4b, 0x12, 0x1b, 0x00, 0x90,
0x39, 0xb5, 0xfa, 0xec, 0x45, 0x41, 0x48, 0xee,
0xdc, 0x2a, 0x8a, 0xee, 0xea, 0xec, 0x6c, 0x8f,
0x37, 0x10, 0xc8, 0xf1, 0x87, 0xc3, 0x1a, 0x5f,
0x24, 0xe2, 0x53, 0xa8, 0x54, 0xe7, 0xad, 0xa2,
0xe8, 0xfe, 0x0d, 0xa0, 0xf3, 0x3a, 0x07, 0xdc,
0x34, 0xc1, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x49,
0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82};
/* edit_cut.png - 1800 bytes */
static const unsigned char edit_cut_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x1c, 0x20, 0x00,
0x00, 0x1c, 0x20, 0x01, 0xcd, 0x0f, 0x9b, 0x9e,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x06,
0x93, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xdd,
0x56, 0x5b, 0x48, 0x54, 0x5b, 0x18, 0xfe, 0xd7,
0xde, 0x6b, 0xcf, 0xac, 0x49, 0xad, 0xd4, 0x99,
0xcc, 0x66, 0x1c, 0x27, 0xe8, 0x32, 0x51, 0x99,
0x15, 0x35, 0x26, 0x1a, 0x95, 0x16, 0x15, 0x3d,
0x44, 0x20, 0x45, 0x44, 0xbd, 0x04, 0x49, 0x76,
0x91, 0x1e, 0x2a, 0x28, 0x0a, 0x83, 0xa0, 0x1b,
0x64, 0x44, 0x10, 0x15, 0x3d, 0x44, 0x84, 0x97,
0x30, 0x33, 0xa2, 0xc2, 0x92, 0xec, 0x82, 0xd9,
0x43, 0x16, 0xd9, 0x4d, 0x4a, 0xcc, 0xb4, 0xa9,
0xa6, 0xd1, 0xc6, 0xb9, 0xed, 0xd9, 0xb7, 0x75,
0x1e, 0x56, 0xeb, 0x98, 0x9e, 0xe3, 0xc9, 0xcc,
0xf3, 0x70, 0xce, 0xff, 0xb2, 0x58, 0x7b, 0xad,
0xff, 0xfb, 0xff, 0xef, 0xfb, 0xff, 0xb5, 0xd7,
0x02, 0xf8, 0x8f, 0x1b, 0x1a, 0xec, 0xc6, 0xe3,
0xc7, 0x4f, 0x9c, 0x38, 0x76, 0xac, 0xa1, 0xc1,
0x30, 0x0c, 0xc3, 0x30, 0xb2, 0xb2, 0x54, 0x55,
0x55, 0x55, 0x35, 0x37, 0x77, 0xf7, 0xee, 0x9d,
0x3b, 0xf7, 0xec, 0x79, 0xf0, 0xe0, 0x57, 0x03,
0x1f, 0x3a, 0x74, 0xe4, 0xc8, 0xc1, 0x83, 0xc5,
0xc5, 0x1c, 0x9d, 0x10, 0x42, 0x2c, 0x96, 0xce,
0xce, 0xe2, 0xe2, 0x6d, 0xdb, 0x76, 0xec, 0x70,
0x38, 0x06, 0x8b, 0x23, 0x0c, 0x36, 0x90, 0x20,
0x08, 0x82, 0x20, 0x78, 0x3c, 0x73, 0xe6, 0xcc,
0x99, 0xe3, 0xf1, 0x00, 0x58, 0xad, 0xc9, 0xc9,
0x56, 0x6b, 0x6d, 0xed, 0x50, 0x95, 0x23, 0x84,
0x10, 0x42, 0x8e, 0x1e, 0x5d, 0xbe, 0x7c, 0xd9,
0xb2, 0x15, 0x2b, 0x00, 0x18, 0xbe, 0xdd, 0xce,
0xe2, 0x5d, 0xb9, 0x32, 0x6c, 0x04, 0xe2, 0xe2,
0xe2, 0xe2, 0xe2, 0xe2, 0x36, 0x6f, 0x5e, 0xb2,
0x64, 0xf1, 0xe2, 0xa5, 0x4b, 0x11, 0x72, 0xb9,
0x9c, 0xce, 0xf1, 0xe3, 0x01, 0x44, 0x51, 0x10,
0x44, 0x91, 0x90, 0xb3, 0x67, 0xcf, 0x9d, 0x3b,
0x7d, 0xba, 0xa4, 0x64, 0xb0, 0x01, 0x4f, 0x9e,
0x3c, 0x75, 0xaa, 0xb4, 0xb4, 0xac, 0xcc, 0x6e,
0x1f, 0x37, 0xce, 0x6e, 0xc7, 0x38, 0x31, 0x71,
0xf4, 0xe8, 0xa4, 0x24, 0x80, 0xf9, 0xf3, 0x73,
0x73, 0x17, 0x2c, 0x00, 0x18, 0x3b, 0x36, 0x25,
0x65, 0xec, 0xd8, 0xe9, 0xd3, 0x87, 0x8d, 0x80,
0xa6, 0x69, 0x9a, 0xa6, 0xd9, 0xed, 0x56, 0x6b,
0x72, 0xb2, 0xcd, 0xd6, 0xfb, 0x3d, 0x37, 0x77,
0xfe, 0xfc, 0x05, 0x0b, 0xf8, 0x6c, 0xcf, 0x9e,
0x9f, 0xe1, 0x30, 0x65, 0xd3, 0xd3, 0x63, 0xb1,
0x58, 0x2c, 0x16, 0x5b, 0xbd, 0x3a, 0x2b, 0xcb,
0xe3, 0xc9, 0xce, 0x06, 0xd0, 0x75, 0x5d, 0xd7,
0x75, 0x5e, 0x11, 0x80, 0x70, 0x38, 0x12, 0x09,
0x87, 0xd3, 0xd2, 0x86, 0x8d, 0x00, 0x0b, 0xd8,
0xd2, 0x52, 0x53, 0x73, 0xed, 0xda, 0x95, 0x2b,
0x86, 0x61, 0x32, 0x99, 0x4c, 0x26, 0x13, 0x80,
0x24, 0x61, 0x2c, 0x49, 0x00, 0x29, 0x29, 0x29,
0x29, 0xa9, 0xa9, 0xa2, 0x78, 0xf1, 0xe2, 0xa5,
0x4b, 0x17, 0x2e, 0xd4, 0xd5, 0x0d, 0x84, 0x93,
0x90, 0x90, 0x90, 0x90, 0x90, 0x50, 0x5d, 0x3d,
0x6f, 0x5e, 0x56, 0x56, 0x76, 0x36, 0x13, 0x46,
0xd7, 0x79, 0xeb, 0x00, 0xdc, 0xbd, 0x5b, 0x5f,
0x7f, 0xe7, 0x0e, 0x40, 0x30, 0x18, 0x0c, 0x06,
0x83, 0xbb, 0x76, 0x0d, 0x1b, 0x01, 0x66, 0x2b,
0x57, 0xfa, 0x7c, 0x5f, 0xbf, 0xfa, 0x7c, 0x08,
0xc9, 0xb2, 0x2c, 0x47, 0xa3, 0x00, 0x94, 0x52,
0x4a, 0x29, 0x40, 0x46, 0xc6, 0xf4, 0xe9, 0x33,
0x66, 0x00, 0x84, 0x42, 0xa1, 0x50, 0x30, 0xb8,
0x70, 0xe1, 0xdf, 0x2b, 0x9f, 0x93, 0xc3, 0x94,
0xce, 0xcc, 0x74, 0x38, 0xec, 0x76, 0xa7, 0xb3,
0xd7, 0xff, 0xf3, 0xe7, 0x2f, 0x5f, 0x3e, 0x7f,
0x66, 0x42, 0x29, 0xca, 0xb7, 0x6f, 0xec, 0xa7,
0x50, 0x5a, 0x3a, 0x6c, 0x04, 0x18, 0xe0, 0xfb,
0xf7, 0x6c, 0x76, 0xfe, 0x7c, 0x75, 0x75, 0x4d,
0x4d, 0x55, 0x15, 0xa5, 0xec, 0x6c, 0xf4, 0x26,
0x32, 0x73, 0xe6, 0x8c, 0x19, 0xb3, 0x67, 0x03,
0x54, 0x54, 0x54, 0x56, 0x96, 0x95, 0xbd, 0x79,
0xc3, 0xfd, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3,
0xaf, 0x5f, 0x5f, 0xb4, 0x68, 0xe1, 0xc2, 0xfc,
0x7c, 0xde, 0x92, 0x00, 0x18, 0x63, 0x8c, 0x31,
0x40, 0x7d, 0xfd, 0xbd, 0x7b, 0x75, 0x75, 0x00,
0xd1, 0x68, 0x34, 0x1a, 0x89, 0x64, 0x66, 0x0e,
0x36, 0xf1, 0x5f, 0xac, 0x00, 0x27, 0xb2, 0x71,
0xa3, 0x2c, 0xcb, 0xb2, 0x2c, 0x07, 0x02, 0xaf,
0x5e, 0xbd, 0x7e, 0xfd, 0xe2, 0x05, 0xa5, 0x08,
0x21, 0x84, 0x10, 0x80, 0xd5, 0x6a, 0xb5, 0xda,
0x6c, 0xac, 0x05, 0x7a, 0x7a, 0x26, 0x4d, 0x3a,
0x77, 0xee, 0xfc, 0xf9, 0x33, 0x67, 0x4a, 0x4b,
0x47, 0x8f, 0x1e, 0x35, 0x2a, 0x31, 0x71, 0xe4,
0x48, 0x42, 0xcc, 0x66, 0x8b, 0xa5, 0x97, 0x70,
0x53, 0xd3, 0xd3, 0xa7, 0x4f, 0x9e, 0x00, 0x98,
0xcd, 0x66, 0xb3, 0xd9, 0x5c, 0x5e, 0xde, 0x57,
0xa8, 0x7f, 0x81, 0x40, 0x5f, 0x2b, 0x2c, 0x7c,
0xf4, 0xa8, 0xb1, 0xb1, 0xa1, 0x01, 0xa1, 0x11,
0x23, 0x46, 0x8c, 0xf8, 0x31, 0xb1, 0x79, 0xf3,
0xb2, 0xb2, 0x72, 0x72, 0x78, 0xcf, 0x6f, 0xdf,
0x9e, 0x96, 0xe6, 0x74, 0xa6, 0xa7, 0xf7, 0xae,
0x0b, 0x82, 0x20, 0x20, 0x04, 0xd0, 0xd1, 0xd1,
0xd9, 0xd9, 0xde, 0xae, 0x28, 0x5b, 0xb7, 0x16,
0x15, 0x15, 0x17, 0xaf, 0x59, 0x33, 0xb4, 0x3c,
0x86, 0x40, 0x80, 0x29, 0x55, 0x5e, 0xce, 0x2e,
0xb4, 0xfa, 0xfa, 0xfb, 0xf7, 0x1f, 0x3c, 0xb8,
0x77, 0xcf, 0x30, 0x44, 0x51, 0x14, 0x45, 0x11,
0x40, 0x92, 0x24, 0x49, 0x92, 0x98, 0xb2, 0x84,
0x00, 0xe8, 0x3a, 0x6b, 0x19, 0x5e, 0xa9, 0x5b,
0xb7, 0x6a, 0x6b, 0x6f, 0xde, 0xe4, 0x87, 0x35,
0x2f, 0x6f, 0xa8, 0x89, 0xff, 0x66, 0x05, 0xb8,
0x6d, 0xd8, 0xf0, 0xee, 0x5d, 0x6b, 0xeb, 0xdb,
0xb7, 0x94, 0x02, 0x20, 0x44, 0x69, 0xaf, 0xd2,
0x6e, 0xf7, 0xa4, 0x49, 0x53, 0xa6, 0x00, 0x84,
0xc3, 0xe1, 0x70, 0x28, 0x04, 0xd0, 0xda, 0xda,
0xd6, 0xd6, 0xda, 0x0a, 0x80, 0xb1, 0x28, 0x8a,
0xe2, 0xcb, 0x97, 0x43, 0xbd, 0xc1, 0xfb, 0x9b,
0x38, 0x54, 0xc7, 0xdb, 0xb7, 0x6b, 0x6b, 0xeb,
0xea, 0x02, 0x81, 0xbc, 0xbc, 0xfc, 0xfc, 0x45,
0x8b, 0x2c, 0x96, 0x4f, 0x9f, 0x5a, 0x5a, 0x5a,
0x5a, 0x72, 0x72, 0xdc, 0xee, 0x8c, 0x8c, 0xcc,
0x4c, 0x00, 0xf6, 0xd4, 0x00, 0x50, 0x14, 0x45,
0x51, 0x14, 0x00, 0xbf, 0xff, 0xd5, 0xab, 0x97,
0x2f, 0x01, 0xd6, 0xaf, 0x2f, 0x2c, 0x2c, 0x2a,
0x1a, 0x33, 0xe6, 0x77, 0x13, 0x1f, 0xa6, 0x0a,
0x00, 0xb8, 0xdd, 0x7b, 0xf7, 0x96, 0x94, 0x28,
0x4a, 0x2c, 0xd6, 0xd6, 0xd6, 0xd6, 0x06, 0xd0,
0xdc, 0xfc, 0xec, 0x59, 0x53, 0x13, 0x80, 0xdb,
0xed, 0x76, 0xbb, 0xdd, 0x08, 0x45, 0xa3, 0xc1,
0x60, 0x30, 0x08, 0xe0, 0xf3, 0xb5, 0xb4, 0xbc,
0x79, 0x03, 0x50, 0x5d, 0x6d, 0x32, 0x99, 0x4c,
0x83, 0xbf, 0xb9, 0x7f, 0x66, 0x83, 0x7e, 0xcc,
0x5d, 0xbc, 0x08, 0x00, 0xe0, 0x72, 0x8d, 0x1a,
0x45, 0x08, 0x21, 0x25, 0x25, 0x82, 0x80, 0x10,
0x42, 0x05, 0x05, 0xb1, 0x98, 0xa6, 0x69, 0x1a,
0x21, 0xd3, 0xa6, 0x4d, 0x9b, 0x36, 0x75, 0x2a,
0x42, 0x7e, 0xbf, 0xc5, 0x62, 0xb1, 0x00, 0x7c,
0xf8, 0xd0, 0xd8, 0xf8, 0xf8, 0x31, 0x40, 0x5a,
0x9a, 0xc7, 0x33, 0x77, 0x2e, 0x40, 0x72, 0x72,
0x34, 0x1a, 0x8d, 0x02, 0x34, 0x37, 0x37, 0x37,
0xbf, 0x78, 0x41, 0xa9, 0xd9, 0x8c, 0x31, 0xc6,
0xb2, 0x6c, 0x18, 0x94, 0x52, 0x5a, 0x59, 0x19,
0x08, 0xc8, 0xb2, 0x2c, 0xef, 0xdf, 0xbf, 0x6e,
0x1d, 0x00, 0x40, 0x5b, 0xdb, 0xb0, 0x11, 0x60,
0x8a, 0x15, 0x16, 0x4a, 0x92, 0x28, 0x8a, 0xe2,
0xbe, 0x7d, 0xe9, 0xe9, 0x89, 0x89, 0x89, 0x89,
0xa9, 0xa9, 0x84, 0xb0, 0xc3, 0x2a, 0x49, 0xec,
0x26, 0xe5, 0xd6, 0xd8, 0xd8, 0xde, 0xde, 0xde,
0x4e, 0xe9, 0x77, 0xf8, 0xef, 0xf8, 0x94, 0x7a,
0x3c, 0x4e, 0xa7, 0xd3, 0x89, 0xfe, 0x8c, 0xa7,
0xaa, 0x86, 0x61, 0x18, 0x00, 0xb2, 0xcc, 0x5a,
0xed, 0xfd, 0xfb, 0xee, 0xee, 0xee, 0x6e, 0xaf,
0x57, 0x55, 0x75, 0x5d, 0xd7, 0x0f, 0x1c, 0x58,
0xb9, 0x52, 0x51, 0x14, 0xe5, 0xf4, 0xe9, 0x9f,
0xe5, 0x37, 0x60, 0x0b, 0x55, 0x55, 0x39, 0x1c,
0x76, 0x7b, 0x7e, 0xbe, 0xae, 0x53, 0x4a, 0xe9,
0xae, 0x5d, 0x93, 0x27, 0xdb, 0x6c, 0x36, 0x5b,
0x6a, 0xea, 0xb7, 0x6f, 0xd1, 0x68, 0x34, 0xea,
0xf7, 0x37, 0x37, 0x7b, 0xbd, 0x5e, 0x6f, 0x77,
0xb7, 0xdf, 0x1f, 0x89, 0x44, 0x22, 0x00, 0x5f,
0xbe, 0x84, 0x42, 0xa1, 0x10, 0x80, 0xa2, 0xe8,
0xba, 0xae, 0x1f, 0x3e, 0x8c, 0x71, 0x41, 0xc1,
0xaa, 0x55, 0x67, 0xce, 0xf0, 0x39, 0x5f, 0xe7,
0xfb, 0xb9, 0x3f, 0xc7, 0xe3, 0xf8, 0x3c, 0x1e,
0x8f, 0x3f, 0x64, 0x02, 0x00, 0x91, 0x48, 0x24,
0xb2, 0x71, 0x63, 0x76, 0xb6, 0xcb, 0xe5, 0x72,
0xb9, 0x5c, 0x7e, 0x7f, 0x38, 0x1c, 0x0e, 0xf3,
0x44, 0x2b, 0x2a, 0x58, 0x62, 0xa7, 0x4e, 0x59,
0x2c, 0xac, 0x12, 0x1f, 0x3f, 0xf6, 0xf4, 0xf4,
0xf4, 0x00, 0x18, 0x06, 0x00, 0xc0, 0xd3, 0xa7,
0xab, 0x56, 0x95, 0x95, 0x55, 0x56, 0x6e, 0xda,
0xc4, 0xb0, 0x9a, 0x9a, 0xf8, 0x3a, 0xdf, 0xcf,
0xfd, 0x39, 0x1e, 0xc7, 0xe7, 0xf1, 0x78, 0xfc,
0xdf, 0x20, 0xa0, 0xaa, 0xaa, 0x3a, 0x61, 0x02,
0x21, 0xec, 0xca, 0x0f, 0x87, 0x15, 0x45, 0x51,
0x34, 0xcd, 0xe7, 0xd3, 0x75, 0x5d, 0xaf, 0xa9,
0x61, 0x3d, 0xbc, 0x69, 0x53, 0x5c, 0x1c, 0x7b,
0xdc, 0xb1, 0x33, 0xd1, 0xd9, 0xb9, 0x7e, 0x3d,
0x00, 0xc0, 0xb5, 0x6b, 0x0c, 0x83, 0x10, 0xd6,
0xd3, 0x57, 0xaf, 0xf2, 0x75, 0xbe, 0x9f, 0xfb,
0x73, 0x3c, 0x8e, 0xcf, 0xe3, 0x51, 0xaa, 0x28,
0x8a, 0x32, 0x71, 0x62, 0xdf, 0x56, 0xfc, 0xab,
0xe1, 0x01, 0x78, 0x09, 0x08, 0xa9, 0xaa, 0xa6,
0x39, 0x1c, 0x3d, 0x3d, 0xb2, 0x2c, 0xcb, 0x00,
0x23, 0x47, 0xb2, 0xe7, 0x6e, 0x46, 0x06, 0xc6,
0x18, 0xdf, 0xb8, 0xe1, 0x70, 0x24, 0x25, 0x25,
0x25, 0x31, 0x6d, 0x3f, 0x7e, 0xf4, 0xf9, 0xda,
0xdb, 0x35, 0x4d, 0xd3, 0x2a, 0x2a, 0x98, 0xbf,
0xdd, 0xce, 0x7b, 0x9f, 0x23, 0xb2, 0xf5, 0xf2,
0x72, 0x00, 0xaf, 0xd7, 0xeb, 0x5d, 0xb7, 0x6e,
0xd6, 0x2c, 0x87, 0xc3, 0xe1, 0x18, 0x33, 0xa6,
0xa3, 0xa3, 0xab, 0xab, 0xab, 0xeb, 0xc6, 0x0d,
0x49, 0xc2, 0x18, 0x63, 0x4d, 0xe3, 0xf1, 0x04,
0x41, 0xd3, 0x74, 0x9d, 0xe3, 0x10, 0xc2, 0x45,
0x65, 0xa3, 0xae, 0x73, 0xfc, 0x7e, 0x15, 0xe0,
0x4c, 0x05, 0xc1, 0x64, 0xc2, 0x18, 0xe3, 0x0b,
0x17, 0x3a, 0x3a, 0x02, 0x81, 0x40, 0x00, 0x20,
0x3e, 0x5e, 0x92, 0x24, 0x09, 0x63, 0x8b, 0xc5,
0x6c, 0x36, 0x9b, 0x01, 0x9e, 0x3f, 0xf7, 0x7a,
0xbd, 0x5e, 0x80, 0xae, 0x2e, 0x4a, 0x29, 0x7d,
0xf8, 0x70, 0xcb, 0x16, 0x4d, 0xd3, 0xb4, 0xca,
0x4a, 0xe6, 0x9f, 0x94, 0xd4, 0x77, 0xb4, 0xd9,
0x8a, 0x8a, 0x34, 0x4d, 0xd3, 0x2e, 0x5f, 0xfe,
0xfa, 0x95, 0x52, 0x4a, 0x1b, 0x1a, 0xb8, 0x3f,
0xc7, 0xe3, 0xf8, 0x3c, 0x9e, 0x61, 0x60, 0x8c,
0x71, 0x59, 0x19, 0xf3, 0x37, 0x9b, 0xd9, 0x28,
0x8a, 0xfd, 0x2b, 0x32, 0x40, 0x69, 0xf8, 0x46,
0x8c, 0x2f, 0x5f, 0x26, 0x84, 0x90, 0x9d, 0x3b,
0x05, 0x81, 0x52, 0x4a, 0xf3, 0xf2, 0xd8, 0x6f,
0x0f, 0x21, 0xaf, 0x97, 0x52, 0x4a, 0x6f, 0xdf,
0xde, 0xba, 0x55, 0x55, 0x55, 0xb5, 0xaa, 0xaa,
0xaf, 0x1f, 0x3b, 0x09, 0x3f, 0x14, 0xba, 0x5f,
0xa5, 0x35, 0xed, 0xf8, 0x71, 0x8c, 0x31, 0x2e,
0x28, 0x18, 0x37, 0x4e, 0x10, 0x04, 0x21, 0x2f,
0x0f, 0x63, 0x84, 0x10, 0xd2, 0xf5, 0x58, 0x0c,
0x21, 0x84, 0xee, 0xde, 0x5d, 0xbb, 0x56, 0x96,
0x65, 0xf9, 0xd8, 0x31, 0xbe, 0x7f, 0xa0, 0x0a,
0xfc, 0xe4, 0x37, 0xca, 0x99, 0xf6, 0x56, 0xa6,
0xef, 0xc8, 0x13, 0x93, 0xa4, 0x7f, 0xee, 0x55,
0xbe, 0x9f, 0xaf, 0x73, 0x82, 0x3c, 0x31, 0x9e,
0x50, 0xff, 0x39, 0x37, 0xde, 0x8a, 0xfd, 0x85,
0xf9, 0x1f, 0xd8, 0x1f, 0x0f, 0x81, 0xaf, 0x1e,
0x56, 0x80, 0xb3, 0xac, 0x00, 0x00, 0x00, 0x00,
0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};

View File

@@ -1,339 +0,0 @@
/* edit_delete.png - 680 bytes */
static const unsigned char edit_delete_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0x8d, 0x00, 0x8e, 0x00, 0x8b, 0x21,
0xf4, 0xa3, 0x7e, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd6, 0x06, 0x13, 0x0f, 0x1d, 0x09, 0x48,
0xb3, 0xcb, 0xc6, 0x00, 0x00, 0x00, 0x0f, 0x74,
0x45, 0x58, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x65,
0x6e, 0x74, 0x00, 0x69, 0x64, 0x20, 0x6c, 0x6f,
0x67, 0x6f, 0x86, 0xc6, 0x77, 0xb9, 0x00, 0x00,
0x02, 0x1a, 0x49, 0x44, 0x41, 0x54, 0x38, 0xcb,
0xa5, 0x90, 0xbf, 0x4f, 0x13, 0x71, 0x18, 0xc6,
0x9f, 0xfb, 0xa5, 0x77, 0x2d, 0xb4, 0xa5, 0xd7,
0xd6, 0x5a, 0x2a, 0x14, 0xa2, 0x0c, 0xb4, 0x0e,
0x6e, 0x6e, 0x50, 0x28, 0x83, 0xec, 0x9a, 0x38,
0x69, 0x6a, 0x7f, 0x80, 0x11, 0x4d, 0x4d, 0xdc,
0x1a, 0xe9, 0x60, 0x52, 0x07, 0x93, 0x42, 0xd4,
0x34, 0xc5, 0x46, 0x05, 0x37, 0x27, 0x75, 0x31,
0x31, 0xb6, 0x16, 0xf9, 0x03, 0x64, 0x30, 0xba,
0xb5, 0x8b, 0xa9, 0x18, 0x13, 0x38, 0xae, 0x72,
0x57, 0xee, 0x7a, 0x77, 0x0e, 0x72, 0x17, 0x43,
0x89, 0x51, 0x7c, 0xa7, 0xf7, 0xfb, 0xe6, 0x79,
0x3e, 0xef, 0xfb, 0x7c, 0x09, 0xec, 0xd5, 0xe2,
0xfd, 0xc2, 0x3b, 0x59, 0x96, 0xc6, 0xf1, 0x17,
0xc5, 0x71, 0xb6, 0xda, 0x8d, 0xb9, 0x4c, 0x14,
0x00, 0x68, 0x73, 0x28, 0xcb, 0xd2, 0xf8, 0x6c,
0xfa, 0x1a, 0x14, 0x45, 0xb1, 0x84, 0x86, 0x61,
0x74, 0x99, 0x0d, 0xc3, 0xc0, 0x93, 0xe5, 0xb2,
0xb5, 0x88, 0x0e, 0x4d, 0xe7, 0xe7, 0x01, 0xe4,
0x00, 0x1d, 0x92, 0x24, 0x41, 0x10, 0x84, 0x2e,
0xa3, 0xf9, 0x66, 0x18, 0x06, 0x24, 0x49, 0x02,
0x00, 0x42, 0xd3, 0x79, 0x03, 0x40, 0x8e, 0x06,
0x90, 0xcb, 0x66, 0x2e, 0xa0, 0xbe, 0xba, 0x04,
0x51, 0x14, 0xd1, 0x6c, 0x36, 0x0f, 0x34, 0x03,
0x00, 0x45, 0x51, 0x20, 0x08, 0x02, 0xa2, 0x28,
0x22, 0x9b, 0x49, 0xe1, 0x4e, 0xe1, 0x79, 0xce,
0x8a, 0xf0, 0xb1, 0xd1, 0x82, 0x20, 0x08, 0x68,
0x34, 0x1a, 0x7f, 0x8c, 0x60, 0x6a, 0x87, 0xc7,
0xf6, 0x22, 0x98, 0xc3, 0xba, 0x1c, 0x44, 0xfc,
0x6e, 0xa5, 0x4b, 0x4c, 0x10, 0x07, 0x21, 0x82,
0x56, 0x67, 0x01, 0x22, 0x67, 0x63, 0x38, 0x4c,
0x59, 0x80, 0xd8, 0x19, 0xfe, 0xff, 0x00, 0x9f,
0xbe, 0x88, 0xff, 0x64, 0x1c, 0x0d, 0x3a, 0x7e,
0x45, 0x0c, 0x9d, 0xcb, 0xd7, 0x40, 0x60, 0xec,
0x50, 0xeb, 0x0d, 0xac, 0x5a, 0x5f, 0x34, 0x77,
0xfd, 0xaa, 0x71, 0xf9, 0x52, 0x5c, 0x7d, 0x54,
0x2e, 0x29, 0x93, 0x93, 0x53, 0xcc, 0xda, 0xda,
0x7b, 0x26, 0x1a, 0x9d, 0xd0, 0xaa, 0xd5, 0x0a,
0x19, 0x8b, 0x4d, 0x69, 0xb5, 0x5a, 0x95, 0x9a,
0x88, 0xc6, 0xf4, 0xb7, 0x95, 0x37, 0xe4, 0xe2,
0xc2, 0x03, 0xaa, 0x2b, 0x02, 0xcb, 0xb2, 0xaa,
0xda, 0x51, 0xb7, 0x79, 0xaf, 0x47, 0x6b, 0xb5,
0x7e, 0x10, 0x43, 0xa1, 0xe1, 0x5e, 0x5d, 0x37,
0xe4, 0xc1, 0xc1, 0x21, 0x5a, 0xd3, 0x74, 0xc9,
0xe1, 0x70, 0xf8, 0x69, 0x86, 0xd9, 0xe4, 0x38,
0x9b, 0xed, 0xf7, 0x23, 0x48, 0xb3, 0xe1, 0x79,
0x7e, 0x87, 0x24, 0xc9, 0xd7, 0x36, 0x9b, 0x0d,
0x23, 0xa7, 0x46, 0x20, 0xed, 0xee, 0x28, 0x03,
0x03, 0x27, 0x74, 0x97, 0xcb, 0x29, 0xbb, 0xfb,
0xdc, 0x6d, 0x00, 0x88, 0x84, 0xc3, 0x47, 0xbd,
0x5e, 0xaf, 0xda, 0x05, 0x28, 0x2c, 0xdc, 0x2b,
0x01, 0xd0, 0x22, 0xe1, 0xd3, 0x17, 0x7d, 0x1e,
0xdf, 0xb1, 0x8d, 0x6f, 0x5f, 0x7d, 0x00, 0x64,
0x9e, 0xf7, 0x90, 0x24, 0x49, 0xd4, 0x7b, 0x1d,
0x3d, 0x9d, 0xfe, 0xfe, 0x20, 0x58, 0x96, 0xd3,
0xed, 0x76, 0xbb, 0x54, 0x2c, 0x3e, 0x4c, 0xef,
0xbf, 0x20, 0x71, 0x33, 0x73, 0x8b, 0x5f, 0x5e,
0x79, 0xac, 0x03, 0xf8, 0xbc, 0xb5, 0xb5, 0x29,
0xf0, 0x6e, 0xde, 0xef, 0x72, 0x3a, 0xe9, 0x5d,
0xa5, 0xcd, 0xac, 0xaf, 0x7f, 0x38, 0x09, 0x00,
0x2b, 0xcf, 0x9e, 0x3a, 0xd3, 0xa9, 0xd9, 0xb6,
0xda, 0x51, 0xce, 0xef, 0x07, 0x94, 0x4b, 0x4b,
0x45, 0xf8, 0xfd, 0xc7, 0x8f, 0x24, 0x13, 0xe9,
0xd1, 0x64, 0x22, 0xdd, 0xa7, 0x28, 0x0a, 0x5e,
0xbe, 0x7a, 0xd1, 0x43, 0x51, 0x74, 0xe0, 0x4a,
0x3c, 0x49, 0xa4, 0x92, 0x33, 0x44, 0x20, 0x10,
0x98, 0xb9, 0x3d, 0x9f, 0xfd, 0xce, 0xb2, 0xdc,
0x86, 0x09, 0xf8, 0x09, 0xe4, 0xcc, 0xc3, 0x08,
0xa5, 0xf7, 0x2c, 0x65, 0x00, 0x00, 0x00, 0x00,
0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
/* edit_delete.png - 1974 bytes */
static const unsigned char edit_delete_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9,
0x43, 0xbb, 0x7f, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x07,
0x1d, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xd5,
0x57, 0x5b, 0x6c, 0x1b, 0x45, 0x14, 0xbd, 0xfb,
0x74, 0xd6, 0x8e, 0x1f, 0xb1, 0x9d, 0x87, 0xdd,
0x92, 0x6c, 0x1c, 0x6c, 0x13, 0xda, 0x12, 0xb5,
0xc2, 0x90, 0xa2, 0x44, 0x46, 0x6a, 0xe9, 0x07,
0x20, 0xa0, 0x20, 0x0a, 0x02, 0xc1, 0x07, 0x08,
0x02, 0x12, 0x7c, 0x20, 0x95, 0x47, 0xc5, 0xab,
0x08, 0xaa, 0x56, 0xfc, 0x54, 0xa8, 0x52, 0x45,
0x29, 0x42, 0xe2, 0x07, 0xd1, 0x26, 0x4a, 0x0b,
0x12, 0x01, 0x84, 0x50, 0x88, 0x1c, 0xa7, 0x02,
0x82, 0x84, 0xab, 0x52, 0xa2, 0xa6, 0xf1, 0x5a,
0x89, 0xb1, 0x63, 0xa7, 0x8e, 0x9d, 0xdd, 0xc4,
0xeb, 0xf5, 0x7a, 0x67, 0xf9, 0x18, 0x2d, 0x4e,
0x93, 0x9a, 0x24, 0x02, 0xf1, 0x38, 0x3f, 0x57,
0x77, 0xe6, 0xee, 0xec, 0x39, 0x73, 0xf7, 0xce,
0xdc, 0x05, 0xf8, 0x9f, 0x83, 0x58, 0x2b, 0xe0,
0xbd, 0xf7, 0x8e, 0x1d, 0x3b, 0x7a, 0x74, 0x78,
0x58, 0x96, 0x65, 0xb9, 0x58, 0xbc, 0xfd, 0xf6,
0x7f, 0x8a, 0x18, 0x45, 0x91, 0x24, 0x49, 0x7e,
0xf0, 0xc1, 0x8b, 0x2f, 0xee, 0xdf, 0x7f, 0xe0,
0x40, 0x5f, 0x5f, 0xad, 0x38, 0x7a, 0xad, 0x85,
0x0c, 0xe2, 0xcf, 0x3e, 0xdb, 0xd7, 0xf7, 0xdc,
0x73, 0x00, 0xe5, 0x72, 0xb9, 0x5c, 0x2e, 0xaf,
0x8e, 0xd3, 0x75, 0x5d, 0xd7, 0xf5, 0xb5, 0x89,
0xad, 0x8c, 0x23, 0x08, 0x82, 0x20, 0x96, 0x6d,
0x23, 0xc3, 0x30, 0x0c, 0xc3, 0x00, 0x9c, 0x38,
0x71, 0xf2, 0xe4, 0xf1, 0xe3, 0x4f, 0x3f, 0x8d,
0x47, 0xd7, 0x21, 0x80, 0xe7, 0xef, 0xbc, 0xf3,
0xf0, 0xe1, 0x37, 0xdf, 0xc4, 0xde, 0xc1, 0x83,
0xcb, 0x83, 0x10, 0x02, 0x28, 0x16, 0x8b, 0xc5,
0x62, 0x11, 0xa0, 0x50, 0x28, 0x14, 0x0a, 0x85,
0xb5, 0x09, 0xaf, 0x9c, 0x37, 0x88, 0x91, 0x24,
0x49, 0x92, 0x64, 0xed, 0x38, 0x87, 0xc3, 0xe1,
0x70, 0x38, 0xaa, 0x3e, 0xe6, 0xb5, 0xf2, 0x4d,
0x07, 0x0f, 0x26, 0x12, 0x43, 0x43, 0x07, 0x0e,
0xbc, 0xf5, 0x16, 0xbd, 0x72, 0xe2, 0xb5, 0xd7,
0x5e, 0x78, 0x61, 0xdf, 0x3e, 0x80, 0x8b, 0x17,
0x93, 0x49, 0x51, 0x04, 0x10, 0xc5, 0xa9, 0xa9,
0x4f, 0x3f, 0x05, 0x10, 0x45, 0x51, 0x14, 0x45,
0x80, 0x54, 0x2a, 0x95, 0x4a, 0xa5, 0xd6, 0x4f,
0xdc, 0x00, 0x45, 0x51, 0x14, 0x45, 0x55, 0x77,
0x9c, 0xe3, 0x38, 0x8e, 0xe3, 0x56, 0xc7, 0x21,
0x84, 0x10, 0x42, 0xd5, 0xf7, 0xdd, 0x7f, 0xff,
0x83, 0x0f, 0x3e, 0xfc, 0x70, 0x75, 0x7e, 0x70,
0xb0, 0xbf, 0xff, 0xab, 0xaf, 0x8c, 0x0d, 0x5e,
0x25, 0xa0, 0x8a, 0xe9, 0xe9, 0x74, 0x5a, 0x96,
0x01, 0xca, 0x65, 0x41, 0x90, 0xa4, 0xea, 0xce,
0x0b, 0x82, 0x20, 0x08, 0xc2, 0xfa, 0x89, 0xd7,
0xc2, 0xca, 0x4c, 0x18, 0xf0, 0xf9, 0x7c, 0x3e,
0x9f, 0x0f, 0x60, 0x7a, 0x7a, 0x76, 0x56, 0x92,
0x00, 0x34, 0xcd, 0x66, 0x53, 0x55, 0x00, 0x8f,
0xa7, 0xb1, 0x91, 0x61, 0x56, 0xc7, 0xd7, 0x14,
0xc0, 0x30, 0x34, 0x4d, 0xd3, 0x00, 0xbf, 0xfe,
0x5a, 0x2c, 0x6e, 0xde, 0x0c, 0xf0, 0xc4, 0x13,
0x47, 0x8e, 0x7c, 0xfb, 0x6d, 0x6d, 0x42, 0x57,
0x7f, 0xc9, 0x7f, 0x0d, 0x99, 0x0c, 0xb6, 0x9b,
0x37, 0x03, 0x6c, 0xdd, 0xfa, 0xe7, 0xdb, 0x52,
0x53, 0x80, 0xf1, 0xd8, 0xb6, 0x6d, 0x3b, 0x77,
0xee, 0xde, 0xfd, 0x77, 0x51, 0xdb, 0x38, 0xf6,
0xec, 0xf9, 0xe8, 0xa3, 0xe7, 0x9f, 0x07, 0xb8,
0x70, 0xe1, 0xe5, 0x97, 0xdf, 0x7f, 0x7f, 0x03,
0x02, 0x76, 0xef, 0xde, 0xbe, 0xdd, 0xe5, 0xfa,
0xf7, 0x88, 0x1b, 0x40, 0xe8, 0xd8, 0xb1, 0x4f,
0x3e, 0x01, 0x00, 0xc0, 0x35, 0xb9, 0x6e, 0x01,
0x46, 0x11, 0xff, 0xd7, 0xb1, 0x4c, 0x80, 0xae,
0x03, 0x8c, 0x8c, 0xbc, 0xf3, 0xce, 0xd1, 0xa3,
0xa7, 0x4f, 0x87, 0xc3, 0xff, 0x36, 0xb1, 0x5a,
0xd0, 0x75, 0x00, 0x5d, 0x8f, 0x46, 0x0d, 0x7f,
0x55, 0xe1, 0x1d, 0x39, 0xf2, 0xee, 0xbb, 0x87,
0x0e, 0xe9, 0xfa, 0x43, 0x0f, 0xed, 0xdb, 0xf7,
0xc8, 0x23, 0x57, 0xae, 0xcc, 0xcf, 0xe7, 0x72,
0xb9, 0x9c, 0xdd, 0x7e, 0xf2, 0xe4, 0x87, 0x1f,
0x9e, 0x38, 0x51, 0x2e, 0xef, 0xda, 0xb5, 0x6b,
0xd7, 0x1d, 0x77, 0x30, 0xcc, 0xf8, 0xf8, 0xf8,
0xf8, 0x8f, 0x3f, 0x02, 0x74, 0x77, 0x77, 0x77,
0xef, 0xdc, 0x49, 0x92, 0x91, 0x48, 0x24, 0x12,
0x89, 0x28, 0x4a, 0x38, 0x1c, 0x0e, 0x87, 0xc3,
0x2c, 0x1b, 0x8b, 0x9d, 0x3f, 0xff, 0xf3, 0xcf,
0xaa, 0xba, 0x7d, 0x7b, 0x57, 0xd7, 0x8e, 0x1d,
0x2c, 0x1b, 0x8d, 0x9e, 0x3b, 0x17, 0x8d, 0x2a,
0x4a, 0x28, 0x74, 0xf3, 0xcd, 0xa1, 0x10, 0xc3,
0xc4, 0x62, 0xb1, 0x58, 0x2c, 0x56, 0x2e, 0x77,
0x75, 0x75, 0x75, 0x75, 0x75, 0xb1, 0x6c, 0x36,
0x9b, 0xcd, 0xce, 0xcd, 0x21, 0x74, 0xe1, 0xc2,
0x2f, 0xbf, 0x9c, 0x3f, 0x5f, 0xa9, 0x3c, 0xf6,
0xd8, 0xa3, 0x8f, 0x3e, 0xfe, 0x38, 0xc7, 0x39,
0x9d, 0x4e, 0xa7, 0xd3, 0x99, 0xcf, 0x0f, 0x0e,
0x9e, 0x3d, 0x3b, 0x30, 0xe0, 0x76, 0xbf, 0xf2,
0xca, 0x4b, 0x2f, 0xbd, 0xfa, 0x6a, 0xf5, 0xc0,
0x20, 0x6b, 0x29, 0x25, 0x49, 0x92, 0x24, 0x88,
0x4a, 0x45, 0x55, 0x2b, 0x15, 0x55, 0x5d, 0x58,
0x70, 0xb9, 0x1a, 0x1b, 0xdd, 0xee, 0xc5, 0x45,
0x49, 0x92, 0xa4, 0xc5, 0xc5, 0x42, 0xa1, 0xa5,
0xa5, 0xb9, 0xd9, 0xe3, 0xd1, 0x34, 0x84, 0x10,
0xd2, 0x75, 0x51, 0xf4, 0x7a, 0xbd, 0xde, 0x4d,
0x9b, 0x34, 0x4d, 0xd3, 0x34, 0x0d, 0xa1, 0x5c,
0xae, 0xa1, 0xa1, 0xa1, 0xc1, 0xe9, 0xd4, 0x34,
0x9a, 0x66, 0x18, 0x86, 0x29, 0x14, 0x3c, 0x9e,
0xe6, 0x66, 0xaf, 0x77, 0x61, 0x41, 0x96, 0x8b,
0x45, 0x59, 0xce, 0x64, 0x30, 0x31, 0x00, 0x4d,
0xab, 0x54, 0x10, 0x9a, 0x9b, 0xf3, 0x78, 0x3c,
0x1e, 0x8f, 0x47, 0xd7, 0x6d, 0x36, 0x9b, 0xcd,
0x6a, 0xcd, 0xe5, 0x6c, 0x36, 0x87, 0xc3, 0x6e,
0x5f, 0x58, 0x30, 0x99, 0x4c, 0xa6, 0xba, 0xba,
0xda, 0x27, 0x5c, 0xcd, 0x1a, 0xa0, 0x69, 0x8a,
0x62, 0x18, 0x4d, 0x1b, 0x1b, 0xfb, 0xfe, 0xfb,
0xd1, 0xd1, 0x6f, 0xbe, 0x71, 0xb9, 0x9c, 0x4e,
0x97, 0x6b, 0xcf, 0x9e, 0x40, 0xc0, 0xef, 0x0f,
0x04, 0x00, 0x12, 0x89, 0xe9, 0x69, 0x41, 0x28,
0x97, 0x5b, 0x5b, 0x5b, 0x5b, 0xaf, 0xbb, 0x0e,
0xa1, 0x7c, 0x3e, 0x9f, 0x9f, 0x9f, 0x97, 0x65,
0xa7, 0xb3, 0xa1, 0xc1, 0xe9, 0x2c, 0x95, 0x24,
0x49, 0x92, 0x44, 0x91, 0xe3, 0x5a, 0x5a, 0x5a,
0x5a, 0x9a, 0x9b, 0x11, 0x5a, 0x5a, 0x5a, 0x5a,
0x5a, 0x5a, 0x42, 0x08, 0xfb, 0x04, 0x41, 0x10,
0x24, 0x09, 0x40, 0x10, 0x3c, 0xdf, 0xde, 0xce,
0xf3, 0x14, 0xd5, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4,
0x44, 0x92, 0x33, 0x33, 0xc9, 0x64, 0x22, 0x81,
0x10, 0x16, 0x88, 0x10, 0xc7, 0x99, 0x4c, 0x1c,
0x77, 0xad, 0x1b, 0x60, 0xcd, 0x0c, 0x50, 0x14,
0x49, 0xaa, 0x2a, 0x6e, 0x24, 0x42, 0xa1, 0x9e,
0x9e, 0xdb, 0x6e, 0xeb, 0xed, 0xcd, 0xe5, 0xdc,
0xee, 0xc6, 0x46, 0xb7, 0x5b, 0x55, 0x79, 0xbe,
0xad, 0xad, 0xbd, 0x5d, 0x96, 0x5d, 0x2e, 0x97,
0xcb, 0xed, 0xc6, 0xd7, 0x12, 0x41, 0xc4, 0xe3,
0x56, 0xab, 0xcd, 0x56, 0x5f, 0x5f, 0xa9, 0x60,
0x21, 0xb2, 0x6c, 0xb3, 0x59, 0xad, 0x76, 0xbb,
0xa6, 0x79, 0xbd, 0x5e, 0xaf, 0xc7, 0x33, 0x3f,
0x8f, 0xe3, 0x09, 0x02, 0x21, 0x5d, 0x47, 0x08,
0x21, 0xbb, 0xdd, 0x66, 0xb3, 0xdb, 0x35, 0xcd,
0x62, 0xb1, 0x58, 0x2c, 0x16, 0x84, 0xf0, 0x3c,
0xc0, 0xc4, 0xc4, 0xc4, 0xc4, 0xc5, 0x8b, 0x14,
0x85, 0x79, 0x54, 0x2a, 0x1b, 0x16, 0x40, 0x10,
0x00, 0x04, 0xa1, 0xaa, 0x14, 0x45, 0xd3, 0x14,
0x05, 0x10, 0x08, 0x04, 0x83, 0xc1, 0x20, 0xcf,
0x5f, 0xbe, 0x3c, 0x39, 0x79, 0xe9, 0xd2, 0xc4,
0x04, 0xcf, 0xb7, 0xb5, 0xf1, 0xbc, 0xaa, 0x3a,
0x1c, 0x76, 0xbb, 0xdd, 0x4e, 0xd3, 0xd9, 0x6c,
0x2e, 0x97, 0xc9, 0xc4, 0x62, 0x98, 0x80, 0xd9,
0xcc, 0xf3, 0x3c, 0xcf, 0xf3, 0x8b, 0x8b, 0xf8,
0x93, 0xa0, 0x28, 0x41, 0x10, 0x84, 0x78, 0xfc,
0xa6, 0x9b, 0xc6, 0xc7, 0xc7, 0xc7, 0x7f, 0xf8,
0x61, 0xd3, 0x26, 0x96, 0x65, 0x59, 0x86, 0x01,
0xb0, 0x5a, 0xad, 0xd6, 0xfa, 0x7a, 0x4d, 0x9b,
0x9c, 0xbc, 0x7c, 0x79, 0x72, 0x92, 0xe3, 0xf6,
0xee, 0xbd, 0xef, 0xbe, 0x07, 0x1e, 0x68, 0x6f,
0x4f, 0xa7, 0x53, 0xa9, 0x74, 0xba, 0xa1, 0x21,
0x93, 0xc9, 0x64, 0x66, 0x67, 0x15, 0x65, 0xc3,
0x02, 0x8a, 0x45, 0x59, 0x2e, 0x16, 0xb3, 0x59,
0x86, 0xa1, 0x69, 0x86, 0xd1, 0xf5, 0xfe, 0xfe,
0x81, 0x81, 0x53, 0xa7, 0xf2, 0xf9, 0x72, 0xb9,
0x52, 0x51, 0x94, 0x78, 0x5c, 0x14, 0x45, 0xb1,
0x50, 0xc8, 0xe7, 0x07, 0x06, 0x06, 0x07, 0x4f,
0x9f, 0x16, 0xc5, 0xfa, 0x7a, 0xb3, 0xb9, 0xbe,
0x3e, 0x14, 0x9a, 0x9f, 0xcf, 0xe5, 0xe6, 0xe6,
0x12, 0x09, 0xdc, 0xf3, 0x14, 0x8b, 0x5f, 0x7e,
0xf9, 0xf5, 0xd7, 0x5f, 0x7c, 0x41, 0x92, 0x37,
0xde, 0xb8, 0x65, 0x4b, 0x67, 0x27, 0xc0, 0xd6,
0xad, 0xdb, 0xb6, 0x6d, 0xd9, 0x02, 0x50, 0x2a,
0x95, 0x4a, 0x8a, 0xa2, 0x28, 0xd9, 0xec, 0xdc,
0x5c, 0x36, 0x9b, 0x4e, 0x27, 0x12, 0x82, 0x30,
0x35, 0x05, 0x30, 0x36, 0x36, 0x36, 0x16, 0x8d,
0x02, 0xdc, 0x7b, 0xef, 0x3d, 0xf7, 0xec, 0xdd,
0xbb, 0xb0, 0x80, 0x5b, 0x18, 0xaf, 0x77, 0xc3,
0x35, 0x80, 0x0f, 0xac, 0x72, 0x39, 0x10, 0xe8,
0xec, 0x0c, 0x04, 0xce, 0x9d, 0x2b, 0x95, 0x64,
0x59, 0x96, 0x93, 0xc9, 0xa9, 0xa9, 0xc9, 0xc9,
0x78, 0xfc, 0xee, 0xbb, 0x05, 0x21, 0x1e, 0x17,
0x04, 0x4d, 0x6b, 0x6b, 0xf3, 0xf9, 0x5a, 0x5b,
0x3f, 0xfe, 0x98, 0xa6, 0x69, 0x9a, 0xa6, 0x75,
0x7d, 0x64, 0x64, 0x74, 0x74, 0x64, 0xe4, 0xae,
0xbb, 0x70, 0x6f, 0x84, 0xd0, 0x0d, 0x37, 0x74,
0x76, 0x06, 0x83, 0xc7, 0x8f, 0x63, 0xff, 0x8d,
0x37, 0x8c, 0x66, 0xce, 0x62, 0xb1, 0x5a, 0xcd,
0xe6, 0xb3, 0x67, 0x23, 0x91, 0x68, 0x74, 0x64,
0x64, 0xc7, 0x0e, 0x9c, 0xf1, 0x9f, 0x7e, 0x62,
0xd9, 0xba, 0x3a, 0x96, 0xad, 0x54, 0x3e, 0xfb,
0xec, 0xf3, 0xcf, 0xcf, 0x9c, 0xb9, 0xf5, 0xd6,
0xde, 0xde, 0xde, 0xde, 0x70, 0x78, 0x74, 0x14,
0x73, 0xea, 0xe9, 0x59, 0xb7, 0x00, 0x84, 0x10,
0xd2, 0x34, 0x55, 0x45, 0x48, 0x51, 0x10, 0xe2,
0x38, 0x4c, 0x80, 0x24, 0x3b, 0x3a, 0xfc, 0x7e,
0x9f, 0x6f, 0x68, 0xa8, 0xd6, 0x73, 0xd7, 0x5f,
0xef, 0xf7, 0x77, 0x74, 0x54, 0xe7, 0xf1, 0xb9,
0x44, 0x51, 0xbf, 0xfd, 0x96, 0x4e, 0x27, 0x93,
0x87, 0x0e, 0x19, 0xe3, 0x26, 0x93, 0xc9, 0xc4,
0xb2, 0x00, 0xed, 0xed, 0x3e, 0x1f, 0xcf, 0x0f,
0x0d, 0xe1, 0x2a, 0xd2, 0x75, 0xab, 0xd5, 0x6a,
0x75, 0x38, 0x1a, 0x1b, 0x83, 0x41, 0xbf, 0x3f,
0x18, 0x34, 0x9b, 0x15, 0x05, 0x67, 0x6a, 0x9d,
0x19, 0xa0, 0xff, 0xf0, 0x23, 0x91, 0x68, 0x34,
0x12, 0x31, 0x9b, 0xfd, 0x7e, 0xbf, 0x3f, 0x10,
0xe8, 0xe9, 0xa1, 0x69, 0x45, 0x31, 0x99, 0x00,
0x4a, 0x25, 0x45, 0x29, 0x95, 0x8c, 0x0c, 0x2d,
0xaf, 0x19, 0x0c, 0x5c, 0xcc, 0xd5, 0xe6, 0xce,
0xe8, 0x51, 0x97, 0x8f, 0x13, 0x44, 0xb5, 0x7b,
0x35, 0xba, 0x52, 0x8a, 0xa2, 0x28, 0x9a, 0x06,
0xb0, 0x58, 0x4c, 0x26, 0xb3, 0x19, 0x40, 0x96,
0x97, 0x96, 0x64, 0x99, 0x24, 0x87, 0x87, 0xbf,
0xfb, 0x6e, 0x78, 0x18, 0xbf, 0xb1, 0x0a, 0x93,
0x09, 0x5b, 0x45, 0x59, 0x21, 0xc0, 0x62, 0x49,
0xa7, 0xd3, 0xe9, 0xd9, 0xd9, 0xb7, 0xdf, 0xc6,
0xfe, 0xeb, 0xaf, 0x77, 0x77, 0xdf, 0x72, 0x4b,
0x77, 0x77, 0x2e, 0x67, 0x74, 0xf1, 0x92, 0x24,
0x49, 0x92, 0x04, 0xa0, 0xaa, 0xaa, 0xaa, 0xaa,
0x55, 0x22, 0xb8, 0xdf, 0xd7, 0x75, 0x4d, 0xd3,
0x34, 0x5d, 0x07, 0xd0, 0x34, 0x84, 0x34, 0x6d,
0x59, 0xb1, 0x91, 0xf8, 0xe0, 0xa4, 0x28, 0x8a,
0xba, 0x96, 0x00, 0xfc, 0x09, 0x02, 0xb0, 0x2c,
0xcb, 0xd6, 0xd5, 0x01, 0x24, 0x93, 0xc9, 0xe4,
0xcc, 0x4c, 0x3e, 0x3f, 0x3b, 0x9b, 0xc9, 0xa4,
0x52, 0xa1, 0x50, 0x3e, 0x9f, 0xcf, 0xe7, 0xf3,
0x67, 0xce, 0xe0, 0xd5, 0x3c, 0x1e, 0x6c, 0x13,
0x89, 0x15, 0x17, 0x84, 0xf1, 0x8b, 0xe1, 0xf5,
0x3e, 0xf5, 0x54, 0x5f, 0xdf, 0x93, 0x4f, 0xee,
0xdf, 0xdf, 0xd1, 0xd1, 0xd1, 0xe1, 0xf3, 0x3d,
0xf3, 0x4c, 0xed, 0x4a, 0xb9, 0xfa, 0x3f, 0x60,
0x2d, 0xbf, 0x16, 0x8c, 0xcc, 0xac, 0xb4, 0xf8,
0x86, 0x1e, 0x1a, 0xea, 0xef, 0x3f, 0x75, 0x6a,
0x60, 0xe0, 0xf0, 0xe1, 0x99, 0x99, 0x99, 0x99,
0x64, 0xf2, 0xd2, 0x25, 0xfc, 0x54, 0x36, 0x4b,
0xac, 0x5c, 0x06, 0x5b, 0x96, 0xc5, 0xd6, 0xe8,
0x47, 0xed, 0xf6, 0xab, 0xc7, 0x8d, 0x5f, 0x11,
0x23, 0xde, 0xb0, 0x08, 0x19, 0xb4, 0xaf, 0xbd,
0xae, 0x31, 0x6e, 0x58, 0x23, 0x47, 0xc6, 0x3c,
0x45, 0x5d, 0x3d, 0x6e, 0x58, 0xe3, 0x13, 0xba,
0x72, 0x05, 0x5b, 0x59, 0xc6, 0x56, 0x55, 0xd7,
0xde, 0x9a, 0xff, 0x38, 0x7e, 0x07, 0x0e, 0xaf,
0xa6, 0xde, 0x03, 0x83, 0xf8, 0x4f, 0x00, 0x00,
0x00, 0x18, 0x7a, 0x54, 0x58, 0x74, 0x43, 0x6f,
0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x00, 0x00, 0x78,
0xda, 0xcb, 0x4c, 0x51, 0xc8, 0xc9, 0x4f, 0xcf,
0x07, 0x00, 0x0a, 0x18, 0x02, 0x9f, 0xc3, 0x06,
0x77, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45,
0x4e, 0x44, 0xae, 0x42, 0x60, 0x82};

View File

@@ -1,309 +0,0 @@
/* edit_find.png - 617 bytes */
static const unsigned char edit_find_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xf0, 0x00, 0xf0, 0x00, 0xef, 0x34,
0x06, 0x67, 0x1b, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd5, 0x0b, 0x05, 0x10, 0x0f, 0x05, 0x25,
0xfd, 0xad, 0x2f, 0x00, 0x00, 0x01, 0xf6, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0x9d, 0x92, 0x4d,
0x6b, 0x13, 0x51, 0x18, 0x85, 0x9f, 0x3b, 0xc9,
0x24, 0x4d, 0x9a, 0x66, 0x86, 0x4a, 0x52, 0x0a,
0x0a, 0xb5, 0x5d, 0x68, 0x1a, 0x45, 0x14, 0xc1,
0x85, 0xb8, 0x14, 0x0a, 0x55, 0x77, 0xe2, 0x26,
0xbf, 0xc0, 0x6f, 0xa9, 0xf4, 0x1f, 0x88, 0xb6,
0x24, 0x41, 0x44, 0x14, 0x74, 0x59, 0x77, 0x55,
0x10, 0xc5, 0x4d, 0xa8, 0x3b, 0x41, 0xec, 0xa2,
0x54, 0x28, 0xa4, 0x89, 0x56, 0xab, 0x96, 0x50,
0x35, 0x8d, 0xcd, 0x47, 0x27, 0x4d, 0x32, 0x33,
0xd7, 0x45, 0x48, 0x49, 0x42, 0x52, 0xaa, 0x67,
0x77, 0x0f, 0xef, 0x3d, 0xef, 0xe1, 0xbc, 0x47,
0x3c, 0x79, 0xfa, 0x78, 0x31, 0xf7, 0x27, 0x77,
0x8c, 0x3d, 0x40, 0x55, 0xd5, 0xe7, 0x13, 0xb7,
0x26, 0x2f, 0xb6, 0x90, 0xd3, 0xd1, 0xbb, 0x96,
0xdc, 0x23, 0xee, 0x4d, 0xdf, 0x91, 0xed, 0xa2,
0x4e, 0x29, 0xeb, 0x5c, 0x3e, 0xbf, 0xb9, 0xeb,
0x76, 0x4d, 0xd3, 0x3b, 0xf2, 0x4e, 0x21, 0xc4,
0xce, 0x23, 0x99, 0x4c, 0x76, 0x1c, 0x0a, 0x85,
0x42, 0x5d, 0x85, 0x77, 0x1c, 0xb4, 0x0f, 0x66,
0x32, 0x19, 0x66, 0x5f, 0xcc, 0x02, 0x90, 0x98,
0x4b, 0x00, 0xd0, 0xb4, 0x6b, 0x77, 0x07, 0xdf,
0xbe, 0xaf, 0x92, 0x4a, 0xa7, 0x39, 0x7a, 0x6a,
0x8c, 0x6d, 0xc5, 0x8b, 0x69, 0x2b, 0xb8, 0x64,
0x85, 0xd4, 0xfc, 0x6b, 0x26, 0x6e, 0xdf, 0x8c,
0xc4, 0xa2, 0xf7, 0x9f, 0x35, 0xfe, 0x28, 0xed,
0x0e, 0x34, 0x5d, 0x23, 0x95, 0x4e, 0x73, 0xe8,
0xe4, 0x18, 0x9f, 0x0b, 0x5e, 0x06, 0x07, 0x02,
0x8c, 0x1c, 0x08, 0x52, 0x12, 0x3e, 0xb4, 0xd1,
0x71, 0xfc, 0x9a, 0x3e, 0x73, 0xed, 0xc6, 0x95,
0xe3, 0x5d, 0x1d, 0x24, 0xe6, 0x12, 0x0c, 0x87,
0x4f, 0xb3, 0x52, 0x70, 0x73, 0xe9, 0xcc, 0x10,
0xbe, 0x1e, 0x15, 0xd3, 0xb6, 0x51, 0x1d, 0x0a,
0xef, 0x96, 0x25, 0xc1, 0x23, 0xe3, 0x36, 0x4b,
0x6f, 0x16, 0x00, 0x01, 0xa0, 0x74, 0x0a, 0x4b,
0x7a, 0x03, 0x0c, 0x0d, 0xe8, 0x58, 0xb6, 0x64,
0xdb, 0x34, 0xa9, 0xd4, 0x2c, 0xca, 0x55, 0x8b,
0x7e, 0x9f, 0x9b, 0x5f, 0x65, 0xb5, 0x25, 0x09,
0x45, 0x4a, 0x89, 0x94, 0x76, 0x4b, 0x30, 0x6e,
0xb7, 0x0b, 0x84, 0xa0, 0x5c, 0xb5, 0xa8, 0xd6,
0x24, 0x9b, 0x5b, 0x35, 0xdc, 0xaa, 0x83, 0xfd,
0xfd, 0x1e, 0xa4, 0x10, 0x2d, 0x5d, 0x70, 0x02,
0xb6, 0x69, 0x9a, 0x2d, 0x4e, 0x6c, 0x63, 0x83,
0x35, 0xa3, 0x8a, 0xdf, 0xa3, 0xa2, 0xf7, 0xb9,
0xb0, 0x2d, 0x89, 0xdf, 0xe3, 0xe4, 0xd3, 0x46,
0x81, 0x7d, 0x3d, 0x96, 0x9d, 0x6b, 0x72, 0xae,
0xd4, 0x2b, 0xea, 0x42, 0xd3, 0x74, 0x34, 0x4d,
0xe7, 0xc2, 0xb9, 0xf3, 0xa4, 0x17, 0xde, 0x12,
0xec, 0x13, 0x7c, 0xf9, 0x99, 0x27, 0x9b, 0x2b,
0x91, 0x37, 0x2a, 0x7c, 0x5c, 0x59, 0xa7, 0x54,
0xae, 0x90, 0x5b, 0x7a, 0xe5, 0x2c, 0x15, 0x8b,
0x3f, 0x1a, 0x02, 0x22, 0x1a, 0x9f, 0x9a, 0xb1,
0x2c, 0x2b, 0xd2, 0x7c, 0x0d, 0xc3, 0x30, 0x70,
0x38, 0x54, 0x4e, 0x9c, 0x8d, 0xb0, 0xbc, 0x56,
0x64, 0xcb, 0x54, 0x18, 0xec, 0x95, 0xac, 0x2f,
0xbe, 0x64, 0xf8, 0xe0, 0x08, 0x00, 0x1f, 0xe6,
0xdf, 0xa7, 0x1e, 0x3e, 0x78, 0x74, 0x58, 0x74,
0x6b, 0xd8, 0xd5, 0xeb, 0x97, 0xa7, 0x02, 0x81,
0xe0, 0x64, 0x33, 0xe7, 0xeb, 0xf5, 0x11, 0x1e,
0x0d, 0xf3, 0x3b, 0x9b, 0xad, 0xf7, 0x65, 0xf5,
0x2b, 0x82, 0x7f, 0x44, 0x2c, 0x1e, 0x95, 0x0d,
0x91, 0xff, 0x12, 0x00, 0x94, 0x58, 0x3c, 0x6a,
0x01, 0x94, 0x0d, 0x83, 0xbf, 0x06, 0x8c, 0xf6,
0xd3, 0x7f, 0x33, 0xe7, 0x2e, 0x00, 0x00, 0x00,
0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60,
0x82};
/* edit_find.png - 1797 bytes */
static const unsigned char edit_find_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x06,
0x90, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xed,
0x57, 0x6b, 0x4c, 0x53, 0x67, 0x18, 0x7e, 0xce,
0xb5, 0x2d, 0x15, 0x2a, 0xd8, 0x23, 0x68, 0x14,
0xc9, 0x60, 0xb4, 0x04, 0xab, 0x46, 0x64, 0x2e,
0xa8, 0x40, 0xcc, 0xa6, 0x01, 0xa7, 0xdb, 0x62,
0x16, 0x17, 0x4d, 0xf6, 0x63, 0xfc, 0xda, 0x88,
0xb7, 0x68, 0x96, 0x45, 0x8d, 0xc6, 0x0c, 0xd8,
0xd8, 0xbc, 0x10, 0x37, 0xe6, 0x66, 0xb6, 0x69,
0x62, 0xc6, 0x94, 0x2c, 0x9a, 0x99, 0xa0, 0x59,
0x26, 0x64, 0xba, 0x8d, 0x59, 0x27, 0xde, 0x20,
0x14, 0x6f, 0x28, 0xa4, 0x55, 0x0b, 0xd8, 0x1e,
0x0e, 0xa5, 0xf4, 0x9c, 0xd3, 0x73, 0xce, 0x7e,
0x7c, 0x6b, 0x60, 0x68, 0x37, 0x99, 0xb2, 0xfd,
0xd9, 0xfb, 0xe7, 0xcd, 0xe9, 0xf7, 0x9d, 0xef,
0x7b, 0x9e, 0xf7, 0x79, 0x2f, 0xa7, 0xc0, 0xff,
0xf6, 0xdf, 0x1a, 0x15, 0x6f, 0x61, 0xff, 0xfe,
0xcf, 0x3f, 0xaf, 0xad, 0xbd, 0x7e, 0x7d, 0x70,
0x70, 0x70, 0x30, 0x14, 0xca, 0xca, 0x22, 0xbf,
0x1a, 0xc6, 0x23, 0x0f, 0xa1, 0x00, 0x8a, 0xa2,
0x28, 0xb2, 0xc3, 0x30, 0x86, 0x77, 0x3d, 0x7a,
0xff, 0xa3, 0x4e, 0x20, 0x76, 0xea, 0xd4, 0xa6,
0x4d, 0x1b, 0x37, 0xbe, 0xf3, 0xce, 0x4b, 0x2f,
0x3d, 0x31, 0xb3, 0xea, 0xea, 0x8f, 0x3e, 0xaa,
0xaa, 0xd2, 0x75, 0xe3, 0x0f, 0xd3, 0x75, 0x5d,
0xd7, 0xf5, 0xa7, 0xef, 0x63, 0xb6, 0x6b, 0xd7,
0x9e, 0x3d, 0xd5, 0xd5, 0x9a, 0x36, 0x56, 0x9c,
0xec, 0x5f, 0x2f, 0xc7, 0x22, 0x48, 0x51, 0x92,
0x24, 0x49, 0xfd, 0xfd, 0x4f, 0x1c, 0x97, 0x87,
0x2c, 0x29, 0x29, 0x29, 0xc9, 0x66, 0x1b, 0x7d,
0xdf, 0xe3, 0x1b, 0x1d, 0x6f, 0x81, 0x48, 0xfa,
0xf4, 0x01, 0x0f, 0x43, 0x1d, 0x99, 0x6a, 0xff,
0xdc, 0xe2, 0x2a, 0x10, 0xef, 0x02, 0x8f, 0xc7,
0xe3, 0xf1, 0x78, 0x9e, 0x1c, 0xb8, 0xd3, 0xe9,
0x74, 0xe6, 0xe4, 0x8c, 0x23, 0x81, 0x78, 0x0a,
0x38, 0x9d, 0x4e, 0xa7, 0xd3, 0x39, 0x76, 0xc0,
0xa3, 0x9f, 0xff, 0x33, 0x05, 0x3a, 0x3a, 0x3a,
0x3a, 0x3a, 0x3a, 0xfe, 0xfe, 0x60, 0xb7, 0xfb,
0xb7, 0xdf, 0xdc, 0x6e, 0xa0, 0xbb, 0xbb, 0xab,
0xeb, 0xce, 0x1d, 0x80, 0x14, 0x2d, 0x40, 0x0a,
0x18, 0x60, 0x59, 0x96, 0x65, 0x59, 0x60, 0xd1,
0xa2, 0x45, 0x8b, 0x8a, 0x8a, 0xc6, 0x81, 0x40,
0x3c, 0x05, 0x72, 0x72, 0x72, 0x72, 0x1e, 0x25,
0x7d, 0x57, 0x57, 0x77, 0x77, 0x57, 0x17, 0x70,
0xf0, 0xe0, 0xa1, 0x43, 0x07, 0x0f, 0x02, 0x6b,
0xd6, 0xac, 0x5e, 0xbd, 0x66, 0x0d, 0x50, 0x5a,
0x5a, 0x52, 0xb2, 0x7c, 0x39, 0xa0, 0x28, 0xaa,
0xaa, 0x69, 0x80, 0xa6, 0x91, 0xb0, 0xf0, 0x3c,
0xc3, 0x50, 0x14, 0x30, 0x30, 0x20, 0x49, 0xc1,
0x20, 0xd0, 0xd4, 0xd4, 0xd4, 0xd4, 0xd8, 0xc8,
0x30, 0x5b, 0xb6, 0x6c, 0xdb, 0xf6, 0xee, 0xbb,
0x05, 0x05, 0x55, 0x55, 0x15, 0x15, 0x1f, 0x7c,
0xd0, 0xdc, 0x3c, 0x6e, 0x0a, 0xc4, 0xd6, 0xfb,
0xfb, 0xfb, 0xfb, 0x45, 0x11, 0x38, 0x75, 0xea,
0xfb, 0xef, 0x4f, 0x9e, 0x04, 0xca, 0xcb, 0xdf,
0x7e, 0x7b, 0xfd, 0x7a, 0xa0, 0xb1, 0xf1, 0xe2,
0xc5, 0xbb, 0x77, 0x81, 0xeb, 0xd7, 0x45, 0xd1,
0xef, 0x07, 0x78, 0xde, 0x62, 0x49, 0x48, 0x00,
0x54, 0x95, 0x50, 0xd0, 0x34, 0x59, 0x0e, 0x87,
0x81, 0x59, 0xb3, 0x26, 0x4f, 0x36, 0x0c, 0x60,
0xe3, 0xc6, 0xf5, 0xeb, 0x37, 0x6d, 0x02, 0x6a,
0x6a, 0xf6, 0xed, 0xdb, 0xbd, 0xfb, 0xa7, 0x9f,
0x2a, 0x2a, 0x2a, 0x2b, 0x77, 0xee, 0x9c, 0x37,
0x6f, 0xdb, 0xb6, 0xad, 0x5b, 0x77, 0xec, 0xb8,
0x74, 0xe9, 0xa9, 0x29, 0xe0, 0x70, 0x38, 0x1c,
0x0e, 0x07, 0x21, 0x00, 0x00, 0xef, 0xbd, 0x57,
0x59, 0xb9, 0x73, 0x27, 0x50, 0x5e, 0xfe, 0xd6,
0x5b, 0xeb, 0xd6, 0x01, 0xdf, 0x7d, 0x77, 0xe1,
0x42, 0x4f, 0x0f, 0x70, 0xef, 0x5e, 0x24, 0x92,
0x94, 0x04, 0xbc, 0xfe, 0x7a, 0x71, 0xf1, 0xb4,
0x69, 0xc0, 0xd4, 0xa9, 0x29, 0x29, 0x16, 0x0b,
0x10, 0x8d, 0x92, 0x54, 0xf2, 0x78, 0xbc, 0x5e,
0x49, 0x02, 0x1a, 0x1b, 0xaf, 0x5e, 0xed, 0xe9,
0x01, 0x44, 0xd1, 0xed, 0xf6, 0xf9, 0x80, 0xb5,
0x6b, 0xcb, 0xcb, 0x37, 0x6c, 0xa0, 0xe9, 0x9a,
0x9a, 0x7d, 0xfb, 0xf6, 0xec, 0x39, 0x7b, 0x96,
0xdc, 0x9a, 0x98, 0x18, 0x0f, 0x27, 0x13, 0x6f,
0xe1, 0xc5, 0x17, 0x97, 0x2c, 0x79, 0xe1, 0x85,
0x1d, 0x3b, 0x16, 0x2c, 0x28, 0x28, 0x58, 0xb8,
0x90, 0xa2, 0x22, 0x91, 0x48, 0x64, 0x68, 0x08,
0x68, 0x6f, 0x6f, 0x6f, 0xf7, 0x78, 0x80, 0xf3,
0xe7, 0x49, 0x8e, 0x4f, 0x9f, 0x3e, 0x7d, 0x7a,
0x7a, 0x3a, 0xd0, 0xd9, 0x19, 0x08, 0xb0, 0x2c,
0xd0, 0xd9, 0x19, 0x0a, 0x59, 0x2c, 0xc0, 0x9b,
0x6f, 0x16, 0x17, 0xa7, 0xa7, 0x03, 0x93, 0x27,
0xdb, 0x6c, 0x66, 0x33, 0x60, 0x36, 0x73, 0x1c,
0xc3, 0x00, 0x9a, 0xa6, 0xeb, 0x00, 0x60, 0xb1,
0x98, 0x4c, 0x2c, 0x0b, 0x58, 0xad, 0x66, 0x33,
0xcb, 0x02, 0xad, 0xad, 0x77, 0xef, 0x2a, 0x0a,
0x60, 0x32, 0xe9, 0x7a, 0x38, 0xac, 0x28, 0xa9,
0xa9, 0xc9, 0xc9, 0x66, 0x33, 0x45, 0xcd, 0x9a,
0x35, 0x7b, 0xb6, 0xcb, 0x15, 0x0a, 0x9d, 0x39,
0xf3, 0xe3, 0x8f, 0x67, 0xcf, 0xba, 0xdd, 0xa3,
0x71, 0xc6, 0x9d, 0x03, 0xf1, 0x52, 0xca, 0xe1,
0x70, 0x38, 0xb2, 0xb3, 0x81, 0xe6, 0xe6, 0x5f,
0x7f, 0xfd, 0xf9, 0x67, 0x20, 0x2f, 0x6f, 0xee,
0xdc, 0xbc, 0x3c, 0xe0, 0xdc, 0xb9, 0xae, 0x2e,
0x55, 0x05, 0x16, 0x2c, 0x70, 0x38, 0x04, 0x01,
0xe0, 0x38, 0x8e, 0x63, 0x59, 0x12, 0x71, 0x00,
0x88, 0x44, 0x48, 0x0d, 0x90, 0xe9, 0x0b, 0xa8,
0x6a, 0x34, 0xaa, 0x69, 0x80, 0xd7, 0xdb, 0xd7,
0x37, 0x34, 0x04, 0x30, 0x8c, 0xae, 0x2b, 0x0a,
0xd0, 0xd6, 0x46, 0x12, 0xee, 0xb9, 0xe7, 0xf2,
0xf3, 0xe7, 0xcf, 0x37, 0x9b, 0x7b, 0x7a, 0x7a,
0x7a, 0xfc, 0xfe, 0x9a, 0x9a, 0x78, 0xb8, 0xc6,
0x4c, 0x80, 0xa4, 0x17, 0x01, 0xc8, 0x71, 0x80,
0xae, 0x03, 0x34, 0x0d, 0x58, 0xad, 0x64, 0xa2,
0x4e, 0x9a, 0x94, 0x98, 0xc8, 0x71, 0x80, 0x2c,
0xab, 0x6a, 0x34, 0x3a, 0xec, 0x15, 0x85, 0x50,
0x19, 0x1a, 0x52, 0x14, 0x4d, 0x03, 0xfa, 0xfa,
0x44, 0x31, 0x1c, 0x06, 0x9c, 0xce, 0x69, 0xd3,
0x12, 0x13, 0x01, 0x93, 0x49, 0x96, 0x7d, 0x3e,
0x40, 0x14, 0x55, 0x95, 0x65, 0x01, 0x8b, 0x85,
0xd4, 0x0c, 0xb9, 0x27, 0x7e, 0xc3, 0xfd, 0xdb,
0x22, 0x8e, 0xb5, 0xbf, 0x91, 0xfd, 0x7b, 0xe4,
0x3e, 0x93, 0x89, 0x44, 0x9a, 0xe3, 0x68, 0xda,
0x30, 0x80, 0xde, 0x5e, 0x51, 0x8c, 0x44, 0x86,
0xbb, 0x4c, 0xcc, 0x64, 0x59, 0x96, 0xa3, 0x51,
0xa0, 0xb7, 0x57, 0x92, 0x64, 0x19, 0x20, 0x6f,
0x01, 0x34, 0xcd, 0x30, 0x0c, 0x43, 0x82, 0xa2,
0xeb, 0x80, 0xa6, 0x45, 0xa3, 0xaa, 0xaa, 0x69,
0xb2, 0x2c, 0xcb, 0xb2, 0xcc, 0x30, 0xe4, 0x7e,
0x55, 0x1d, 0x33, 0x81, 0x18, 0x0d, 0x4d, 0xd3,
0x34, 0x4d, 0x7b, 0x98, 0x40, 0x6e, 0x6e, 0x6e,
0xee, 0xcc, 0x99, 0x80, 0xcf, 0xe7, 0xf3, 0xf9,
0x7c, 0xc0, 0xc4, 0x89, 0x3c, 0xcf, 0xf3, 0xc0,
0xcd, 0x9b, 0x3e, 0x5f, 0x30, 0x18, 0x7b, 0x1b,
0xb0, 0x58, 0x78, 0x9e, 0xa2, 0x80, 0x09, 0x13,
0x48, 0xae, 0xc7, 0xda, 0xa9, 0xd5, 0xca, 0xf3,
0x2c, 0x0b, 0x18, 0x06, 0x21, 0x1a, 0x08, 0x84,
0xc3, 0x14, 0x05, 0xcc, 0x98, 0x21, 0x08, 0x34,
0x4d, 0x51, 0x81, 0x40, 0x20, 0xf0, 0xe0, 0x81,
0x2c, 0xa7, 0xa5, 0xa5, 0xa5, 0x4d, 0x99, 0x72,
0xee, 0xdc, 0x3f, 0x4e, 0xa1, 0x91, 0x04, 0x46,
0x2a, 0xe3, 0x72, 0xcd, 0x9c, 0xe9, 0x72, 0x01,
0xe7, 0xcf, 0x5f, 0xb8, 0xe0, 0x76, 0x03, 0xcb,
0x96, 0xe5, 0xe5, 0xa5, 0xa6, 0x02, 0xbd, 0xbd,
0x43, 0x43, 0x24, 0xe2, 0x24, 0x65, 0x0c, 0xc3,
0x30, 0x48, 0x74, 0x75, 0xdd, 0x30, 0x86, 0x6b,
0x21, 0x1a, 0x25, 0xcf, 0xa2, 0x18, 0x0a, 0x45,
0x22, 0x80, 0xd9, 0x2c, 0x08, 0x99, 0x99, 0x40,
0x49, 0xc9, 0x9c, 0x39, 0x82, 0x40, 0xd3, 0x5f,
0x7d, 0x75, 0xe8, 0xd0, 0x97, 0x5f, 0x4a, 0x92,
0x28, 0x8a, 0x62, 0x30, 0xd8, 0xd4, 0x34, 0x46,
0x02, 0xc3, 0xe2, 0x9b, 0x4c, 0x26, 0x93, 0xc9,
0x04, 0xd8, 0xed, 0x76, 0xbb, 0xdd, 0x0e, 0x08,
0x82, 0x20, 0x08, 0x02, 0xf0, 0xfc, 0xf3, 0xf3,
0xe7, 0x17, 0x14, 0x00, 0x7e, 0xbf, 0xdf, 0xef,
0xf7, 0x03, 0xb7, 0x6e, 0xb5, 0xb7, 0xb7, 0xb4,
0x00, 0x4b, 0x97, 0xe6, 0xe6, 0x26, 0x25, 0x01,
0x17, 0x2f, 0xde, 0xb9, 0x23, 0x49, 0x40, 0x73,
0x73, 0x6b, 0x2b, 0x99, 0xc4, 0x14, 0xc5, 0x30,
0xc0, 0xc0, 0x80, 0x2c, 0x1b, 0x06, 0xd0, 0xd0,
0xf0, 0xcb, 0x2f, 0xd7, 0xae, 0x01, 0xa7, 0x4f,
0xb7, 0xb6, 0xf6, 0xf6, 0x02, 0x2b, 0x57, 0xba,
0x5c, 0x2c, 0x0b, 0x9c, 0x39, 0x73, 0xfa, 0xf4,
0x89, 0x13, 0x86, 0x31, 0x63, 0x46, 0x7a, 0x7a,
0x46, 0x86, 0xd5, 0x1a, 0x0a, 0x0d, 0x0c, 0x0c,
0x0e, 0x6e, 0xde, 0xfc, 0xda, 0x6b, 0xab, 0x56,
0xad, 0x5c, 0x39, 0x65, 0xca, 0x43, 0x48, 0xe3,
0x31, 0x23, 0xdf, 0xe7, 0xc7, 0x8f, 0x13, 0x05,
0x5e, 0x79, 0x65, 0x74, 0x6d, 0x8c, 0x36, 0xaf,
0xd7, 0xeb, 0xf5, 0x7a, 0x81, 0xac, 0xac, 0xcc,
0xcc, 0xec, 0x6c, 0x60, 0xd9, 0xb2, 0x57, 0x5f,
0x5d, 0xbd, 0x1a, 0xf8, 0xe1, 0x87, 0x2b, 0x57,
0xfc, 0x7e, 0xa0, 0xbb, 0xfb, 0xc1, 0x03, 0x45,
0x01, 0x14, 0xc5, 0x30, 0x68, 0x1a, 0x78, 0xf6,
0x59, 0x41, 0xe0, 0x38, 0xa0, 0xb0, 0xd0, 0xe9,
0x4c, 0x4e, 0x06, 0x6a, 0x6b, 0xf7, 0xee, 0xad,
0xa8, 0xd0, 0xf5, 0x15, 0x2b, 0x96, 0x2f, 0x7f,
0xf9, 0x65, 0x9a, 0x6e, 0x69, 0xb9, 0x74, 0xa9,
0xa5, 0x05, 0x08, 0x06, 0x83, 0xc1, 0x40, 0x40,
0xd7, 0x25, 0x49, 0x92, 0x24, 0xa9, 0xaf, 0x8f,
0xe7, 0x39, 0x8e, 0xe7, 0x97, 0x2e, 0xfd, 0xe4,
0x93, 0x8f, 0x3f, 0xfe, 0xf4, 0xd3, 0xcb, 0x97,
0x1f, 0xf3, 0x83, 0x99, 0xfd, 0xa3, 0x56, 0xac,
0x56, 0xe2, 0x63, 0x83, 0x25, 0xe6, 0x27, 0x4c,
0x28, 0x2a, 0x2a, 0x2e, 0x2e, 0x2c, 0x74, 0xb9,
0x1c, 0x0e, 0xa7, 0x33, 0x3b, 0xbb, 0xba, 0xda,
0x6e, 0x4f, 0x49, 0xb1, 0xdb, 0x15, 0x65, 0xe2,
0xc4, 0xe4, 0xe4, 0x94, 0x14, 0x8e, 0xcb, 0xcf,
0x9f, 0x37, 0x2f, 0x3f, 0xdf, 0x6a, 0xcd, 0xc8,
0xc8, 0xc8, 0xc8, 0xc8, 0x48, 0x48, 0xa8, 0xab,
0xfb, 0xe6, 0x9b, 0xba, 0xba, 0xdb, 0xb7, 0x6f,
0xdd, 0xea, 0xec, 0xbc, 0x71, 0x83, 0xe7, 0x43,
0x21, 0x49, 0x0a, 0x87, 0xab, 0xaa, 0x52, 0x53,
0xd3, 0xd2, 0x04, 0xa1, 0xb6, 0xb6, 0xb4, 0xb4,
0xa4, 0xa4, 0xb4, 0x14, 0xb8, 0x7a, 0xb5, 0xad,
0xad, 0xb5, 0x15, 0x28, 0x2c, 0x5c, 0xb8, 0xb0,
0xa8, 0x48, 0xd7, 0xbf, 0xfe, 0xba, 0xae, 0xee,
0xf0, 0x61, 0x9a, 0x26, 0x04, 0x28, 0xea, 0x31,
0xdb, 0x68, 0x34, 0x4a, 0xbc, 0x24, 0x11, 0x7f,
0xff, 0x3e, 0xf1, 0x37, 0x6f, 0x12, 0xdf, 0xd6,
0x46, 0x06, 0xcd, 0x91, 0x23, 0x07, 0x0e, 0x7c,
0xf6, 0xd9, 0x17, 0x5f, 0x3c, 0xf3, 0x0c, 0x4d,
0xb3, 0x2c, 0x45, 0x55, 0x56, 0xaa, 0x6a, 0x34,
0x1a, 0x89, 0x5c, 0xbe, 0xfc, 0xed, 0xb7, 0xc7,
0x8e, 0x1d, 0x3d, 0x4a, 0x51, 0xbb, 0x77, 0xef,
0xdd, 0xfb, 0xe1, 0x87, 0xa4, 0xfb, 0x18, 0xc6,
0xb5, 0x6b, 0x59, 0x59, 0x59, 0x59, 0x99, 0x99,
0xdb, 0xb7, 0xd7, 0xd7, 0xd7, 0xd7, 0xd7, 0xd7,
0xef, 0xdf, 0xaf, 0xeb, 0x9a, 0x06, 0xbc, 0xff,
0x7e, 0x43, 0xc3, 0xc9, 0x93, 0x0d, 0x0d, 0xc0,
0xe2, 0xc5, 0xc5, 0xc5, 0x8b, 0x17, 0x03, 0x36,
0x9b, 0xcd, 0x66, 0xb3, 0xd1, 0x0f, 0xe1, 0x1d,
0xc7, 0xbf, 0x2c, 0x00, 0x99, 0x10, 0x23, 0x7d,
0xac, 0xb6, 0x46, 0x7f, 0xa4, 0xc4, 0x9e, 0x87,
0x93, 0xb3, 0xac, 0xac, 0xac, 0xac, 0xac, 0xec,
0x8d, 0x37, 0x2c, 0x96, 0x84, 0x04, 0x93, 0xe9,
0xc0, 0x81, 0x3f, 0xef, 0x5b, 0xb5, 0x8a, 0x28,
0x50, 0x5f, 0x3f, 0xbe, 0xf8, 0xff, 0x05, 0xfb,
0x1d, 0x75, 0xcb, 0xe2, 0xbb, 0xec, 0x47, 0x44,
0xaf, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e,
0x44, 0xae, 0x42, 0x60, 0x82};

View File

@@ -1,315 +0,0 @@
/* edit_find_replace.png - 776 bytes */
static const unsigned char edit_find_replace_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd6, 0x01, 0x06, 0x16, 0x04, 0x03, 0xf5,
0x76, 0x68, 0x82, 0x00, 0x00, 0x02, 0x95, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0xad, 0x93, 0x4d,
0x6c, 0x0c, 0x61, 0x18, 0xc7, 0x7f, 0x33, 0xb3,
0xb3, 0xb5, 0x48, 0xb7, 0xcc, 0x2c, 0xc1, 0x81,
0x56, 0xd0, 0x89, 0xe0, 0xa0, 0x89, 0x83, 0xa0,
0xb8, 0x34, 0x71, 0x20, 0x52, 0x49, 0x89, 0xaf,
0x63, 0x4b, 0x8a, 0x5a, 0x41, 0xa4, 0x44, 0x10,
0x82, 0x8a, 0x22, 0x71, 0xad, 0x44, 0x13, 0xc4,
0x36, 0x12, 0xd1, 0x83, 0x4b, 0x7d, 0xb4, 0x44,
0x48, 0x89, 0x8f, 0x9d, 0xa5, 0x45, 0x62, 0x5b,
0x95, 0xd4, 0x6e, 0x77, 0x67, 0x3f, 0xba, 0x5d,
0xbb, 0x3b, 0xaf, 0x03, 0x3b, 0x69, 0x2f, 0x4e,
0xfe, 0xc9, 0x93, 0x3c, 0xef, 0x9b, 0xfc, 0x7f,
0x79, 0x9e, 0x37, 0xff, 0x57, 0x62, 0x9c, 0xf6,
0x1d, 0x68, 0xd4, 0x34, 0x4d, 0x8b, 0x14, 0xcf,
0xd1, 0x68, 0x54, 0xbf, 0xda, 0x7a, 0x2d, 0xca,
0x3f, 0x24, 0x15, 0x1b, 0xff, 0xa1, 0x03, 0x6b,
0x4b, 0xbd, 0x65, 0x5d, 0x4b, 0x56, 0xd4, 0x88,
0x14, 0x53, 0x25, 0x55, 0x8c, 0x89, 0xbe, 0x97,
0x0f, 0xa4, 0x84, 0x15, 0x5f, 0x77, 0xa9, 0xa5,
0xf5, 0xd1, 0x3f, 0x01, 0x8d, 0xfb, 0xf7, 0x6a,
0xba, 0xee, 0x8b, 0x2c, 0xac, 0xaa, 0x61, 0x20,
0xed, 0x61, 0xe5, 0xe2, 0x59, 0x98, 0xe1, 0x18,
0xe9, 0x64, 0x02, 0x2b, 0xd4, 0x89, 0xcb, 0xa5,
0xa0, 0x28, 0xb2, 0x63, 0x52, 0x55, 0x35, 0xe0,
0x6f, 0x3a, 0xbc, 0x05, 0xc0, 0x05, 0xa0, 0xeb,
0xbe, 0x48, 0xf9, 0xe2, 0x95, 0x7c, 0xb1, 0x4a,
0xa8, 0x5b, 0x5d, 0xce, 0x24, 0xb7, 0x82, 0xaa,
0xc8, 0x74, 0x87, 0x04, 0x33, 0x96, 0x6c, 0x60,
0xf8, 0x7d, 0x27, 0xc7, 0x8e, 0x36, 0x3b, 0x80,
0xf3, 0x17, 0xcf, 0xd6, 0x16, 0x7b, 0x97, 0x73,
0x3b, 0xd9, 0xc7, 0xbc, 0xe9, 0xa5, 0x14, 0x6c,
0x41, 0x36, 0x57, 0x20, 0x9b, 0xb3, 0xf1, 0x95,
0x96, 0xf0, 0x75, 0x68, 0x0c, 0x09, 0xb0, 0xac,
0x38, 0x00, 0x5e, 0x6f, 0x19, 0x25, 0x6f, 0x8e,
0x73, 0x79, 0xab, 0x2c, 0x80, 0x1d, 0xce, 0x5c,
0x6a, 0x21, 0xc1, 0xe0, 0x70, 0x82, 0x70, 0x24,
0x43, 0x3c, 0x9d, 0x67, 0x8e, 0xe6, 0xc1, 0x2d,
0x17, 0xd0, 0xa7, 0xd8, 0x00, 0x84, 0x42, 0x21,
0x00, 0x5a, 0xb7, 0x29, 0xec, 0xba, 0xd2, 0x43,
0x75, 0xed, 0x7e, 0x80, 0x9b, 0x32, 0x40, 0xc2,
0x8a, 0xaf, 0xeb, 0x7b, 0xdd, 0xc5, 0xcc, 0x52,
0x09, 0x73, 0x60, 0x84, 0x91, 0xd4, 0x18, 0x2f,
0xcc, 0xef, 0xc4, 0x52, 0x19, 0xa2, 0xef, 0xef,
0xb3, 0x69, 0xe3, 0x26, 0x0c, 0xc3, 0xa0, 0xad,
0x41, 0x63, 0xf7, 0xd5, 0x67, 0x0c, 0x3e, 0x6d,
0xe7, 0x9d, 0x39, 0x58, 0x00, 0x90, 0x01, 0xa6,
0x95, 0x4d, 0xef, 0xaa, 0x28, 0x9f, 0x4f, 0xf8,
0xd5, 0x3d, 0x2a, 0x7c, 0x25, 0xf4, 0x84, 0x7e,
0x92, 0x1c, 0xcd, 0x32, 0xfc, 0xba, 0x03, 0x5d,
0xd3, 0x18, 0x4d, 0x8f, 0x3a, 0xe6, 0x81, 0x27,
0x37, 0x79, 0xd7, 0x1f, 0x65, 0xc4, 0xec, 0x50,
0x80, 0x2a, 0xe9, 0xcc, 0x99, 0x53, 0x62, 0xee,
0xbc, 0x72, 0x7c, 0xba, 0x4e, 0xd0, 0x0c, 0x92,
0x4a, 0xa7, 0x9c, 0x67, 0x59, 0xb6, 0x74, 0x19,
0xd5, 0x6b, 0xaa, 0x69, 0x6b, 0xd0, 0xd8, 0x79,
0xa9, 0x9b, 0x70, 0x4f, 0x3b, 0x6f, 0x3f, 0x45,
0x89, 0x99, 0x01, 0x80, 0xaa, 0xa6, 0x5b, 0x76,
0xaf, 0x0b, 0x70, 0xcc, 0x07, 0x9b, 0xfc, 0x58,
0x56, 0xdc, 0xd9, 0x17, 0xf8, 0x63, 0x6e, 0x79,
0x4a, 0xff, 0xc3, 0x36, 0x3e, 0x7e, 0x4f, 0x12,
0x33, 0x03, 0xfc, 0x5a, 0x54, 0xcf, 0x91, 0x93,
0xd7, 0x7b, 0x01, 0x49, 0x6e, 0x6e, 0x3e, 0x21,
0x05, 0xcd, 0x20, 0xf9, 0xc2, 0x2f, 0xbb, 0x68,
0x32, 0x0c, 0x03, 0xc3, 0x30, 0xa8, 0xac, 0xac,
0xe4, 0x9b, 0xbc, 0x82, 0xe0, 0xf3, 0xe7, 0xf4,
0x0f, 0x59, 0xc4, 0x82, 0x77, 0xa9, 0x3b, 0xfd,
0x02, 0xdb, 0x33, 0xdb, 0xc9, 0x90, 0x0c, 0xe0,
0x3f, 0x78, 0x48, 0x02, 0x10, 0xc2, 0x61, 0x20,
0x84, 0xe0, 0xc6, 0x1e, 0x9d, 0xcf, 0x3f, 0xa2,
0xdc, 0x09, 0x04, 0x88, 0x7c, 0xe8, 0x60, 0x55,
0x7d, 0x07, 0x93, 0xb4, 0x05, 0xe4, 0x72, 0xb9,
0x62, 0x04, 0x84, 0x3c, 0x2e, 0x95, 0x76, 0x3e,
0x9f, 0x9f, 0x00, 0x68, 0xba, 0x65, 0xb3, 0x7e,
0xe6, 0x67, 0x6a, 0x36, 0xef, 0x66, 0x79, 0xc3,
0x63, 0xc4, 0xe4, 0x39, 0x24, 0x93, 0x49, 0x72,
0xb9, 0x3c, 0x80, 0x32, 0x31, 0x48, 0x80, 0xaa,
0xba, 0xf1, 0x7a, 0xdd, 0x0e, 0x20, 0x93, 0xc9,
0x90, 0x48, 0x24, 0xc8, 0x66, 0xb3, 0x28, 0x8a,
0x82, 0xaa, 0xaa, 0x7f, 0xcb, 0x05, 0x60, 0x4f,
0x00, 0x28, 0x8a, 0x72, 0xfb, 0x42, 0xcb, 0xb9,
0xed, 0x42, 0x88, 0x09, 0x53, 0x14, 0x4b, 0x92,
0x9c, 0x7f, 0x87, 0xc7, 0xe3, 0x69, 0x07, 0x72,
0xfc, 0x0f, 0xfd, 0x06, 0x79, 0xcd, 0x1b, 0x0c,
0xce, 0xbd, 0xad, 0x59, 0x00, 0x00, 0x00, 0x00,
0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
/* edit_find_replace.png - 1681 bytes */
static const unsigned char edit_find_replace_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9,
0x43, 0xbb, 0x7f, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x06,
0x1c, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xed,
0x97, 0x5b, 0x48, 0x14, 0x5f, 0x1c, 0xc7, 0xbf,
0x73, 0x66, 0x6f, 0xee, 0x96, 0x9b, 0x79, 0x89,
0x2c, 0xf2, 0x92, 0xed, 0xa6, 0xa8, 0x50, 0x69,
0x14, 0xf4, 0x90, 0xa5, 0x50, 0xd8, 0x43, 0x42,
0x0f, 0x45, 0xd0, 0xed, 0x51, 0x34, 0x33, 0x23,
0x08, 0xa4, 0x42, 0x7c, 0xe8, 0xa2, 0x48, 0x51,
0x44, 0xbd, 0x14, 0x8a, 0x58, 0xd8, 0x15, 0x31,
0x0b, 0xba, 0x90, 0xd6, 0x4b, 0x4a, 0x98, 0xe8,
0xae, 0x25, 0xa9, 0x69, 0xdb, 0x65, 0xd5, 0xbd,
0x39, 0xeb, 0xde, 0x67, 0xfe, 0x0f, 0xd3, 0xf9,
0x8f, 0xbb, 0x36, 0xec, 0xf6, 0xff, 0x3f, 0xf4,
0xd2, 0xef, 0xe5, 0xc7, 0xcc, 0x99, 0x39, 0xe7,
0xf3, 0x3d, 0xbf, 0xcb, 0x9c, 0x01, 0xfe, 0xda,
0x9f, 0x35, 0x46, 0x6e, 0xe0, 0xda, 0xb5, 0xeb,
0xd7, 0xaf, 0x5e, 0xfd, 0xf8, 0xd1, 0xed, 0x76,
0xbb, 0x39, 0x2e, 0x2b, 0xcb, 0xef, 0xf7, 0xfb,
0xfd, 0x7e, 0x41, 0x08, 0x04, 0x02, 0x81, 0x50,
0x88, 0x10, 0xb9, 0xf7, 0x94, 0x4a, 0xa5, 0x92,
0x65, 0x79, 0x5e, 0xa5, 0x52, 0xa9, 0x54, 0x2a,
0x41, 0x88, 0x11, 0xe3, 0xa7, 0x75, 0x75, 0xd5,
0xd4, 0x54, 0x57, 0x9f, 0x3c, 0xb9, 0x6b, 0x57,
0xac, 0x02, 0x14, 0x72, 0x03, 0x2e, 0x97, 0xcb,
0xe5, 0x74, 0x66, 0x65, 0x6d, 0xdf, 0x5e, 0x54,
0x54, 0x52, 0xc2, 0x30, 0x9d, 0x9d, 0x5d, 0x5d,
0x9d, 0x9d, 0x0c, 0x93, 0x9f, 0xbf, 0x69, 0xd3,
0x8e, 0x1d, 0x80, 0xc7, 0xc3, 0x30, 0x5a, 0x2d,
0x10, 0x0c, 0xf2, 0x3c, 0x21, 0x80, 0x4a, 0x25,
0x08, 0x3e, 0x1f, 0xf0, 0xe1, 0xc3, 0xdb, 0xb7,
0x1d, 0x1d, 0x84, 0x94, 0x94, 0x14, 0x17, 0x17,
0x15, 0x01, 0x1b, 0x36, 0xac, 0x5f, 0x5f, 0x50,
0x10, 0x0d, 0x1d, 0x68, 0x6c, 0x6c, 0x6a, 0xba,
0x70, 0x61, 0xe7, 0xce, 0xdf, 0x8d, 0x80, 0xac,
0x00, 0xba, 0xe3, 0x14, 0xdc, 0x60, 0x28, 0x28,
0xd8, 0xb1, 0x03, 0x18, 0x19, 0x71, 0x3a, 0xe3,
0xe2, 0x80, 0x82, 0x02, 0x83, 0x21, 0x29, 0x09,
0x50, 0xab, 0x95, 0x4a, 0x85, 0x02, 0x30, 0x99,
0x26, 0x26, 0x6c, 0x36, 0x40, 0xaf, 0xcf, 0xc9,
0x29, 0x2d, 0x05, 0x1e, 0x3f, 0xee, 0xea, 0xea,
0xec, 0x04, 0x74, 0x3a, 0x9d, 0x4e, 0xa7, 0x03,
0x52, 0x53, 0x97, 0x2f, 0x4f, 0x4d, 0x5d, 0xb8,
0x4e, 0x7c, 0x7c, 0x7c, 0xbc, 0x5e, 0x4f, 0xaf,
0xa2, 0x45, 0x8c, 0x61, 0x22, 0x9f, 0x93, 0x4d,
0x05, 0x9e, 0xe7, 0x79, 0x80, 0x90, 0xcc, 0xcc,
0xdc, 0xdc, 0x2d, 0x5b, 0x80, 0xd1, 0x51, 0xa7,
0x53, 0xad, 0x06, 0xca, 0xca, 0x36, 0x6f, 0x4e,
0x4f, 0x07, 0xb2, 0xb3, 0x57, 0xae, 0x5c, 0xb2,
0x04, 0x48, 0x4b, 0x4b, 0x4e, 0xd6, 0x6a, 0x81,
0xbc, 0xbc, 0xb4, 0xb4, 0xa5, 0x4b, 0x81, 0x60,
0x90, 0x65, 0x75, 0x3a, 0x20, 0x25, 0x25, 0x2f,
0xaf, 0xb4, 0x14, 0x68, 0x6f, 0xbf, 0x7b, 0xb7,
0xbd, 0x7d, 0xe1, 0xfc, 0x82, 0x20, 0x08, 0xb1,
0x24, 0x58, 0x53, 0xd3, 0xbe, 0x7d, 0x84, 0x08,
0x82, 0xe8, 0x79, 0x3e, 0x72, 0x9c, 0x44, 0x9b,
0x40, 0x10, 0xe2, 0xe2, 0x92, 0x92, 0x80, 0xb4,
0xb4, 0x65, 0xcb, 0xe2, 0xe3, 0x01, 0xaf, 0xd7,
0xe7, 0xf3, 0xfb, 0x01, 0x97, 0x8b, 0xe3, 0xe6,
0xe6, 0x00, 0xb7, 0xdb, 0xe3, 0xf1, 0xfb, 0x81,
0x6f, 0xdf, 0xac, 0xd6, 0x99, 0x19, 0x80, 0x65,
0x83, 0x41, 0x8f, 0x07, 0xf8, 0xfa, 0xd5, 0xe5,
0x62, 0xe6, 0x55, 0x98, 0xd9, 0x6c, 0x36, 0x9b,
0xcd, 0x80, 0xc9, 0x64, 0x32, 0x99, 0x4c, 0xa2,
0x80, 0x58, 0xc0, 0x0f, 0x1e, 0xbc, 0x74, 0xe9,
0xf5, 0x6b, 0x60, 0xeb, 0xd6, 0x3d, 0x7b, 0xaa,
0xaa, 0xa4, 0xfb, 0x51, 0x53, 0x88, 0x9a, 0x5a,
0xad, 0x56, 0xab, 0x54, 0x80, 0xcf, 0x27, 0x2e,
0xe9, 0xf5, 0x06, 0x83, 0x82, 0x00, 0x10, 0x42,
0x08, 0xc3, 0x00, 0xb3, 0xb3, 0xa2, 0x00, 0xbd,
0x7e, 0xf1, 0x62, 0x9d, 0x0e, 0xc8, 0xca, 0x52,
0xa9, 0x34, 0x1a, 0xa0, 0xaf, 0x6f, 0x74, 0xd4,
0xe1, 0x90, 0xe6, 0x31, 0x1a, 0x8d, 0x46, 0xa3,
0x51, 0xda, 0x79, 0xb9, 0x08, 0x50, 0xc0, 0x43,
0x87, 0x2e, 0x5f, 0x7e, 0xf3, 0x06, 0x98, 0x9c,
0x7c, 0xf5, 0xaa, 0xa5, 0x05, 0x18, 0x18, 0x30,
0x9b, 0xa7, 0xa6, 0x42, 0x21, 0xf1, 0x29, 0x96,
0x8d, 0x59, 0x80, 0x20, 0xcc, 0xcd, 0xcd, 0xcc,
0x00, 0x16, 0x0b, 0xc7, 0xe9, 0x74, 0x80, 0xc7,
0xe3, 0x72, 0xd9, 0x6c, 0x80, 0x56, 0xab, 0x52,
0x89, 0xe3, 0x62, 0x58, 0x35, 0x1a, 0xa5, 0x92,
0xe7, 0x81, 0xc9, 0x49, 0xbb, 0x3d, 0x18, 0x04,
0x12, 0x13, 0x35, 0x1a, 0x8d, 0x06, 0xb0, 0xdb,
0xa5, 0x08, 0x0c, 0x0f, 0xd3, 0x39, 0x81, 0xec,
0xec, 0xec, 0xec, 0x9c, 0x1c, 0x69, 0x1d, 0x96,
0xed, 0xed, 0x3d, 0x75, 0x8a, 0x65, 0x17, 0x82,
0x8f, 0x8c, 0xcc, 0xcc, 0x00, 0x36, 0x9b, 0xc9,
0x74, 0xef, 0x1e, 0xcb, 0x56, 0x57, 0xb7, 0xb5,
0xf1, 0xbc, 0x14, 0x5b, 0x59, 0x01, 0x73, 0x73,
0x6e, 0xb7, 0xdb, 0x0d, 0x7c, 0xf8, 0xf0, 0xee,
0xdd, 0xf3, 0xe7, 0xc0, 0xaa, 0x55, 0x85, 0x85,
0x65, 0x65, 0x80, 0xcd, 0xe6, 0xf1, 0x28, 0x14,
0x80, 0x5e, 0xaf, 0xd1, 0xa8, 0x54, 0x00, 0xcb,
0x8a, 0x45, 0x6c, 0xb7, 0x3b, 0x9d, 0x1c, 0x07,
0xc4, 0xc5, 0xe9, 0x74, 0x84, 0x00, 0x53, 0x53,
0xfd, 0xfd, 0xf7, 0xef, 0x03, 0xdb, 0xb6, 0x15,
0x15, 0x6d, 0xdb, 0x06, 0xac, 0x5d, 0xbb, 0x76,
0xad, 0xd1, 0x28, 0x75, 0x1d, 0x1a, 0x81, 0x4b,
0x97, 0xf6, 0xef, 0x57, 0x28, 0x00, 0x9a, 0x2a,
0xe3, 0xe3, 0x2f, 0x5f, 0x36, 0x37, 0x03, 0x7d,
0x7d, 0x83, 0x83, 0xdf, 0xbf, 0x03, 0x1c, 0x37,
0x32, 0xf2, 0xe8, 0x11, 0x10, 0x09, 0x2e, 0x5b,
0x03, 0x15, 0x15, 0x47, 0x8f, 0x96, 0x97, 0x0f,
0x0f, 0xe7, 0xe6, 0xe6, 0xe6, 0xe6, 0xe7, 0x03,
0x99, 0x99, 0x19, 0x19, 0xab, 0x57, 0x03, 0x13,
0x13, 0xbd, 0xbd, 0x0f, 0x1e, 0x00, 0x06, 0xc3,
0xf2, 0xe5, 0x5a, 0x2d, 0x30, 0x36, 0x66, 0xb5,
0xce, 0xce, 0x02, 0xfd, 0xfd, 0xe3, 0xe3, 0x0e,
0x87, 0x58, 0xf4, 0x82, 0x20, 0x81, 0x27, 0x24,
0x24, 0x24, 0x24, 0x24, 0x00, 0x84, 0x30, 0x0c,
0xcb, 0x86, 0x83, 0x03, 0x40, 0x73, 0x73, 0x45,
0x45, 0x72, 0xf2, 0x7c, 0xf0, 0x67, 0xcf, 0x9a,
0x9b, 0x81, 0xfe, 0xfe, 0xe1, 0xe1, 0xa9, 0xa9,
0xe8, 0xe0, 0xd4, 0xfe, 0x1d, 0xa8, 0xaf, 0xaf,
0xaf, 0xaf, 0xab, 0x13, 0x84, 0xb4, 0xb4, 0xf4,
0xf4, 0x8c, 0x0c, 0xe9, 0x81, 0xe4, 0xe4, 0xa4,
0xa4, 0xa4, 0x24, 0x60, 0x68, 0xc8, 0x64, 0x1a,
0x1a, 0x02, 0x38, 0xce, 0xed, 0xe6, 0x38, 0xf9,
0x94, 0x33, 0x18, 0xd6, 0xac, 0x31, 0x18, 0x80,
0x92, 0x92, 0xe2, 0xe2, 0x92, 0x12, 0x09, 0x58,
0xa1, 0x50, 0x28, 0x14, 0x0a, 0xe0, 0xd6, 0xad,
0xf2, 0xf2, 0xc4, 0x44, 0xe0, 0xe0, 0xc1, 0xa6,
0x26, 0x11, 0xfc, 0xc5, 0x8b, 0xe6, 0x66, 0xc0,
0x64, 0xfa, 0xfc, 0xd9, 0x6e, 0x07, 0xa6, 0xa6,
0x06, 0x06, 0xda, 0xdb, 0xa3, 0x83, 0x47, 0x4d,
0xa1, 0x48, 0xf0, 0x23, 0x47, 0x0e, 0x1f, 0x3e,
0x72, 0x44, 0xec, 0x22, 0x66, 0x73, 0x64, 0x9d,
0x84, 0x77, 0x15, 0x41, 0x90, 0x72, 0x5e, 0xab,
0xd5, 0x6a, 0xb5, 0x5a, 0xa0, 0xbb, 0xbb, 0xa1,
0xa1, 0xb0, 0x50, 0x02, 0x1f, 0x1b, 0xeb, 0xe9,
0xb9, 0x73, 0x07, 0x18, 0x1a, 0x1a, 0x1b, 0xb3,
0xd9, 0x80, 0x99, 0x99, 0xc1, 0xc1, 0xbb, 0x77,
0x63, 0x07, 0x97, 0x15, 0x60, 0xb5, 0x5a, 0xad,
0x3f, 0x7e, 0x48, 0xfe, 0xd8, 0xb1, 0xaa, 0xaa,
0xea, 0x6a, 0xc0, 0xe9, 0x74, 0x3a, 0x1d, 0x0e,
0xb1, 0x9b, 0x18, 0x0c, 0x0b, 0x81, 0x23, 0xaf,
0x09, 0x21, 0x84, 0x65, 0x81, 0x96, 0x96, 0xca,
0xca, 0x94, 0x14, 0xe0, 0xc0, 0x81, 0xc6, 0xc6,
0x9e, 0x1e, 0xe0, 0xd3, 0xa7, 0xa7, 0x4f, 0x6f,
0xde, 0x04, 0xcc, 0xe6, 0x2f, 0x5f, 0x1c, 0x0e,
0x11, 0xfc, 0xde, 0x3d, 0xc0, 0xe3, 0x59, 0xb7,
0xae, 0xae, 0x0e, 0x00, 0xda, 0xda, 0x6a, 0x6b,
0x63, 0xc5, 0x9f, 0x57, 0x03, 0xb5, 0xb5, 0xb5,
0xb5, 0xa7, 0x4f, 0x33, 0x4c, 0x4d, 0xcd, 0xf1,
0xe3, 0x27, 0x4e, 0x30, 0x4c, 0x28, 0xc4, 0xf3,
0x81, 0x00, 0xcf, 0x13, 0x42, 0x08, 0x21, 0xe1,
0x6d, 0x8f, 0x61, 0xc4, 0x9c, 0xfe, 0xd5, 0x84,
0x4a, 0xa5, 0x52, 0xa9, 0x54, 0xce, 0x07, 0x6f,
0x68, 0xe8, 0xee, 0x06, 0x46, 0x46, 0x44, 0xf0,
0xc1, 0xc1, 0xf1, 0x71, 0xbb, 0x5d, 0x02, 0xaf,
0xaa, 0x6a, 0x6d, 0x0d, 0x06, 0x63, 0x07, 0x8e,
0x39, 0x85, 0x28, 0x30, 0xcf, 0x8b, 0xdf, 0xe4,
0xf9, 0xfd, 0xfb, 0x57, 0x3b, 0x4f, 0x8b, 0x94,
0x16, 0xf3, 0xd8, 0x18, 0xb0, 0x71, 0x23, 0xf0,
0xfe, 0x7d, 0x4f, 0x4f, 0x4f, 0x0f, 0x30, 0x31,
0x31, 0x39, 0x69, 0xb7, 0x8b, 0xed, 0xf0, 0xfe,
0x7d, 0xe0, 0xc0, 0x81, 0x2b, 0x57, 0xac, 0x56,
0x69, 0x7e, 0xea, 0x45, 0xa3, 0x7d, 0x9e, 0xf6,
0xfd, 0xff, 0x20, 0x80, 0x22, 0x86, 0x42, 0xa1,
0x50, 0x28, 0x24, 0x2f, 0x80, 0x61, 0x18, 0x86,
0x10, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01, 0xe0,
0xc6, 0x8d, 0xf2, 0xf2, 0x15, 0x2b, 0x80, 0xc1,
0xc1, 0x1f, 0x3f, 0xd2, 0xd3, 0x01, 0x87, 0xa3,
0xb5, 0xf5, 0xf6, 0x6d, 0x20, 0x33, 0x93, 0x90,
0x81, 0x01, 0x60, 0xef, 0xde, 0xf3, 0xe7, 0xcd,
0x66, 0x31, 0x25, 0x9d, 0x4e, 0x80, 0x65, 0x59,
0x96, 0x65, 0x81, 0x40, 0xc0, 0xef, 0x0f, 0x04,
0xe8, 0xcc, 0xf4, 0x74, 0xe4, 0x72, 0x85, 0x0b,
0x59, 0xf8, 0xe9, 0x8b, 0xfa, 0x21, 0x9b, 0x2f,
0x60, 0x7e, 0x64, 0x94, 0x4a, 0xb1, 0xff, 0x53,
0x01, 0x1c, 0xc7, 0x71, 0x1c, 0x07, 0x9c, 0x3d,
0xfb, 0xf0, 0xa1, 0x20, 0x00, 0x95, 0x95, 0xc5,
0xc5, 0xe3, 0xe3, 0xc0, 0xae, 0x5d, 0x15, 0x15,
0x4f, 0x9e, 0x48, 0xa9, 0x35, 0x3d, 0x3d, 0x3d,
0x3d, 0x3d, 0x0d, 0x88, 0xc7, 0x6d, 0xb1, 0x56,
0x08, 0x01, 0x7c, 0x3e, 0x9f, 0xcf, 0xe7, 0xa3,
0xab, 0x26, 0x26, 0x8a, 0x9e, 0xde, 0xf1, 0x78,
0x7e, 0x53, 0x80, 0x94, 0xdf, 0x6a, 0xb5, 0x5a,
0xad, 0x56, 0x4b, 0x5e, 0x2e, 0xd5, 0x28, 0x90,
0xc5, 0x62, 0xb1, 0x58, 0x2c, 0x80, 0xd7, 0xeb,
0xf5, 0x7a, 0xbd, 0x12, 0x20, 0xf5, 0xb4, 0x9d,
0xd2, 0x9d, 0xa7, 0x9e, 0xbe, 0x1f, 0x0e, 0x4c,
0xab, 0x43, 0xfe, 0xdc, 0x24, 0x23, 0x40, 0x10,
0xc4, 0x89, 0x3b, 0x3a, 0x2e, 0x5e, 0x6c, 0x6c,
0x3c, 0x77, 0x6e, 0xf7, 0xee, 0x48, 0x60, 0x39,
0x21, 0x52, 0xed, 0x88, 0x87, 0x0c, 0x9e, 0x17,
0xef, 0xd0, 0x5f, 0x16, 0x69, 0x8b, 0xc2, 0xdb,
0x40, 0x5d, 0xdd, 0x99, 0x33, 0xf5, 0xf5, 0xf4,
0x70, 0x41, 0x4f, 0x51, 0x34, 0xa9, 0xe4, 0x05,
0xc4, 0xd8, 0x6f, 0x15, 0x3f, 0x85, 0xea, 0x74,
0xa2, 0x5f, 0xbc, 0x38, 0xdc, 0x2f, 0x5a, 0x14,
0x3e, 0x4e, 0xff, 0xd8, 0x68, 0x31, 0x52, 0x00,
0x0a, 0x44, 0x77, 0x98, 0x9e, 0x94, 0x68, 0xae,
0xbb, 0xdd, 0xe1, 0xe3, 0xb4, 0xac, 0xff, 0xb7,
0x00, 0x69, 0xdf, 0xc2, 0xc1, 0xe8, 0x35, 0x15,
0x18, 0x39, 0x4e, 0x85, 0x50, 0x80, 0x48, 0x21,
0x34, 0x45, 0xe4, 0x40, 0x63, 0xfd, 0x25, 0xfd,
0x6b, 0x7f, 0xce, 0xfe, 0x01, 0xc9, 0xa7, 0x95,
0x94, 0xde, 0x64, 0xc1, 0x5d, 0x00, 0x00, 0x00,
0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60,
0x82};

View File

@@ -1,229 +0,0 @@
/* edit_paste.png - 561 bytes */
static const unsigned char edit_paste_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59,
0x73, 0x00, 0x00, 0x0b, 0x13, 0x00, 0x00, 0x0b,
0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18, 0x00, 0x00,
0x00, 0x07, 0x74, 0x49, 0x4d, 0x45, 0x07, 0xd5,
0x0a, 0x0e, 0x00, 0x1c, 0x15, 0xaf, 0xe2, 0xf1,
0x18, 0x00, 0x00, 0x01, 0xd0, 0x49, 0x44, 0x41,
0x54, 0x38, 0xcb, 0x95, 0x93, 0xb1, 0x6b, 0x53,
0x51, 0x14, 0xc6, 0x7f, 0xf7, 0xbd, 0x34, 0x82,
0x24, 0x31, 0x8d, 0xd4, 0x94, 0x0c, 0x85, 0x22,
0x06, 0x5c, 0x5c, 0xb4, 0x6a, 0x62, 0x04, 0xd1,
0x12, 0x70, 0x76, 0xd0, 0x21, 0x38, 0x14, 0x45,
0x6d, 0x1d, 0xc4, 0xc5, 0x41, 0x97, 0x82, 0x38,
0x08, 0x8e, 0xfa, 0x0f, 0x34, 0x83, 0xbb, 0x9b,
0xa8, 0x4b, 0xd5, 0x2e, 0xba, 0x38, 0x29, 0x91,
0x52, 0xa8, 0xd1, 0x48, 0x42, 0x5e, 0x6f, 0x6c,
0xd0, 0x46, 0xef, 0x39, 0x0e, 0xa1, 0x31, 0x2f,
0x6d, 0x20, 0x7e, 0xdb, 0xfd, 0xce, 0x3d, 0x3f,
0xce, 0xf9, 0xe0, 0x18, 0x06, 0x54, 0x2a, 0x95,
0x8c, 0xef, 0x7b, 0xcf, 0x9d, 0x93, 0xd9, 0x7e,
0xdf, 0xf7, 0xbd, 0x17, 0xce, 0x49, 0xb1, 0x5c,
0x2e, 0x6b, 0xbf, 0x6f, 0x00, 0x6e, 0xce, 0x9a,
0x2b, 0x06, 0x1e, 0x2a, 0x8c, 0x2b, 0x1e, 0x76,
0xf2, 0x12, 0xb9, 0xdc, 0x11, 0x3c, 0xcf, 0x00,
0x20, 0xa2, 0xac, 0xac, 0x7c, 0x60, 0x5f, 0xed,
0x29, 0x06, 0x01, 0x68, 0xaa, 0xea, 0xad, 0xc7,
0x2f, 0x59, 0x32, 0xf3, 0x67, 0x89, 0xf8, 0x9e,
0x09, 0x2e, 0x9c, 0x39, 0x18, 0xfb, 0xd2, 0xc9,
0xf0, 0x2e, 0xc8, 0xd2, 0xb4, 0x1d, 0xa6, 0xa7,
0xa7, 0x30, 0x66, 0x1b, 0x20, 0xac, 0xad, 0xad,
0x93, 0x4c, 0x44, 0x39, 0x9a, 0xfc, 0xcc, 0xa4,
0xbf, 0xce, 0xb3, 0xd7, 0xab, 0x56, 0x54, 0x53,
0x11, 0x20, 0xe6, 0x79, 0x66, 0x2c, 0x1a, 0xf1,
0x79, 0x5f, 0xcf, 0xb2, 0x78, 0xff, 0x11, 0x41,
0x10, 0x50, 0xa9, 0x54, 0x42, 0xab, 0xcd, 0xcd,
0x1d, 0x22, 0x95, 0x4a, 0x71, 0xef, 0xee, 0x6d,
0x2e, 0x66, 0xbe, 0x21, 0xaa, 0x31, 0x20, 0x1a,
0xe9, 0xff, 0xd4, 0xde, 0x82, 0x44, 0x22, 0x81,
0xaa, 0x30, 0x33, 0x73, 0x6c, 0x30, 0x1e, 0xe2,
0xf1, 0x38, 0x5b, 0x7f, 0xc0, 0xa9, 0xe9, 0x79,
0x3d, 0x80, 0x6a, 0x28, 0x1b, 0x96, 0xdf, 0xbc,
0x0d, 0xbd, 0x0b, 0xf9, 0x1c, 0xbb, 0x29, 0xc2,
0x10, 0x9d, 0x3e, 0x95, 0xe7, 0x1f, 0x5c, 0x10,
0x71, 0xc3, 0x01, 0xba, 0x4b, 0x61, 0x7b, 0x02,
0x55, 0x45, 0x45, 0xc8, 0x9d, 0x3c, 0xfe, 0x7f,
0x13, 0x14, 0xf2, 0x39, 0x44, 0x04, 0x11, 0x41,
0x55, 0xb0, 0xd6, 0x32, 0x31, 0x91, 0x1e, 0x0d,
0xd0, 0xdf, 0x28, 0xd2, 0x6d, 0x6e, 0xfd, 0x68,
0x8d, 0x3e, 0x81, 0x88, 0xeb, 0x41, 0xaa, 0x5f,
0xab, 0x34, 0x1a, 0xf5, 0x1d, 0x21, 0x87, 0x01,
0x03, 0x35, 0xe7, 0xba, 0x80, 0x56, 0xcb, 0xd2,
0xa8, 0xd7, 0x29, 0x16, 0xcf, 0x0f, 0xdb, 0x14,
0x6f, 0xd8, 0x04, 0xd6, 0x6e, 0x50, 0xfb, 0x5e,
0x43, 0x44, 0x7a, 0xfe, 0xf5, 0xf9, 0xab, 0x5c,
0x9e, 0x5a, 0x1e, 0xbe, 0xc2, 0xde, 0x31, 0xa5,
0x19, 0x34, 0x49, 0xa7, 0x33, 0xa4, 0xd3, 0x19,
0xb2, 0xd9, 0xc3, 0x58, 0xbb, 0x81, 0xaa, 0x70,
0x63, 0xe1, 0x5a, 0xaf, 0xd9, 0x37, 0x1a, 0x02,
0x6c, 0x8a, 0xe8, 0xef, 0xf6, 0x2f, 0xb7, 0xe7,
0x44, 0xf2, 0x23, 0x0f, 0x16, 0xef, 0xf0, 0xd3,
0xed, 0x8c, 0xa6, 0xb0, 0xff, 0x13, 0xab, 0xed,
0x03, 0x00, 0x24, 0xb5, 0x8a, 0x31, 0x66, 0x53,
0x55, 0x3b, 0x06, 0x60, 0xe1, 0x5c, 0xf7, 0x1a,
0x31, 0x8c, 0x33, 0x82, 0x54, 0xbb, 0xd7, 0xf8,
0xe4, 0x15, 0x4b, 0x7f, 0x01, 0x4f, 0xe6, 0xe1,
0x98, 0x78, 0x69, 0xc4, 0xda, 0x00, 0x00, 0x00,
0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60,
0x82};
/* edit_paste.png - 1209 bytes */
static const unsigned char edit_paste_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x09,
0x58, 0xf7, 0xdc, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x04,
0x44, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xd5,
0x57, 0x4d, 0x68, 0x53, 0x4b, 0x14, 0xfe, 0xee,
0xcd, 0x4d, 0x34, 0xda, 0x34, 0x7f, 0xe6, 0xa7,
0x86, 0x80, 0x10, 0x68, 0xb1, 0x3b, 0xa9, 0x5d,
0x74, 0x23, 0x51, 0x4c, 0x4a, 0x70, 0x61, 0x8d,
0x6e, 0x84, 0xb8, 0xeb, 0x4e, 0xec, 0xd6, 0xb8,
0x10, 0x8a, 0x86, 0xe2, 0xc6, 0xb8, 0x10, 0x05,
0x69, 0x05, 0xc1, 0x80, 0x5b, 0xdd, 0x24, 0x3b,
0xcd, 0x42, 0x83, 0x60, 0xb3, 0x28, 0x42, 0x41,
0x41, 0x90, 0x5a, 0x69, 0xfe, 0xcc, 0xcf, 0xcd,
0x4d, 0x62, 0xd2, 0x64, 0xc6, 0xc5, 0x70, 0xb1,
0x49, 0xee, 0x7d, 0x4d, 0x7c, 0x6d, 0x9f, 0xef,
0x6c, 0x0e, 0x33, 0x73, 0xe6, 0xcc, 0xf9, 0xce,
0x77, 0xce, 0xdc, 0xb9, 0xc0, 0xff, 0x5c, 0xb8,
0xbd, 0x72, 0x14, 0x0a, 0x85, 0x42, 0xa1, 0xd0,
0x9b, 0x37, 0x6c, 0xe4, 0xf5, 0xfe, 0xb3, 0x75,
0x32, 0x19, 0x8b, 0xc5, 0x62, 0xb1, 0xd8, 0xd9,
0xb3, 0xfb, 0x0e, 0x60, 0x71, 0x71, 0x71, 0x11,
0xe0, 0xf9, 0xaf, 0x5f, 0x93, 0x49, 0x40, 0xa7,
0x93, 0xe7, 0x5b, 0x2d, 0x87, 0xe3, 0xe2, 0xc5,
0x53, 0xa7, 0x04, 0xe1, 0xd0, 0xa1, 0xd1, 0xd1,
0x57, 0xaf, 0x08, 0x21, 0x84, 0x52, 0x9b, 0x6d,
0x6a, 0x6a, 0x6a, 0x6a, 0x62, 0x02, 0xe0, 0x38,
0x8e, 0xe3, 0x76, 0x78, 0xa7, 0x94, 0x52, 0x4a,
0x81, 0x74, 0x3a, 0x9d, 0xfe, 0xf4, 0x09, 0xe0,
0x79, 0x9e, 0xe7, 0xb8, 0x7c, 0xbe, 0xdd, 0x6e,
0x36, 0xab, 0xd5, 0x60, 0x50, 0xa7, 0xcb, 0x66,
0x5f, 0xbe, 0x5c, 0x5d, 0x95, 0xed, 0x4f, 0x9c,
0xf0, 0x7a, 0x81, 0x56, 0x8b, 0x9d, 0x4f, 0xc8,
0xd0, 0x00, 0x16, 0x16, 0x7c, 0x3e, 0x8d, 0xe6,
0xda, 0x35, 0x4a, 0x01, 0x42, 0x1e, 0x3e, 0x24,
0x84, 0x10, 0x60, 0x64, 0x44, 0x5e, 0xff, 0xf9,
0xd3, 0x6c, 0x9e, 0x99, 0xe1, 0x79, 0x87, 0x63,
0x7c, 0x7c, 0x66, 0x86, 0xe3, 0xdc, 0x6e, 0xb7,
0xdb, 0xe1, 0x18, 0x3c, 0x73, 0x9b, 0x9b, 0x9b,
0x9b, 0xf9, 0x3c, 0x90, 0xc9, 0x7c, 0xfe, 0x9c,
0x4a, 0x51, 0x7a, 0xf8, 0x70, 0xb1, 0x98, 0x4a,
0x11, 0x42, 0x29, 0x5b, 0xe7, 0x79, 0x8e, 0x03,
0x24, 0x89, 0x52, 0x42, 0x78, 0xfe, 0xc6, 0x8d,
0x47, 0x8f, 0x5e, 0xbf, 0xee, 0x74, 0x9e, 0x3f,
0xef, 0xf5, 0x23, 0xa8, 0x65, 0xbc, 0x54, 0x7a,
0xf7, 0x8e, 0x90, 0x07, 0x0f, 0x82, 0xc1, 0x33,
0x67, 0x3c, 0x1e, 0xa3, 0x31, 0x9b, 0xdd, 0xde,
0xb6, 0xdb, 0x81, 0x0f, 0x1f, 0x44, 0x71, 0x72,
0x12, 0x68, 0x34, 0x44, 0xb1, 0xd3, 0x01, 0xac,
0x56, 0xab, 0xd5, 0x66, 0x03, 0x3c, 0x1e, 0x8f,
0x67, 0x7c, 0xbc, 0x27, 0x3b, 0x1c, 0x63, 0x42,
0x69, 0xdc, 0x6c, 0x36, 0x9b, 0x00, 0x90, 0xc9,
0x64, 0x32, 0x13, 0x13, 0x1c, 0xa7, 0xd7, 0xbb,
0x5c, 0x27, 0x4f, 0x6a, 0x34, 0xd3, 0xd3, 0xa3,
0xa3, 0xeb, 0xeb, 0x80, 0xd1, 0x08, 0x64, 0xb3,
0x46, 0x63, 0x3c, 0x9e, 0x4a, 0x7d, 0xf9, 0x12,
0x8d, 0x32, 0x0f, 0x03, 0x00, 0x90, 0x4b, 0xc5,
0x60, 0x10, 0x04, 0xc0, 0x64, 0xd2, 0x6a, 0xb5,
0x5a, 0x9e, 0x07, 0x56, 0x57, 0x8b, 0xc5, 0xc9,
0x49, 0x20, 0x1c, 0xbe, 0x7d, 0xfb, 0xde, 0x3d,
0xa0, 0x52, 0x29, 0x97, 0x2b, 0x15, 0x20, 0x1a,
0x8d, 0x46, 0xef, 0xdf, 0x07, 0xd6, 0xd6, 0xd6,
0xd6, 0xd6, 0xd7, 0x07, 0x67, 0xc0, 0x60, 0x30,
0x18, 0x46, 0x46, 0x80, 0x70, 0x38, 0x1c, 0xbe,
0x75, 0x0b, 0x30, 0x9b, 0x2d, 0x16, 0xb3, 0x19,
0x58, 0x5a, 0xba, 0x73, 0xe7, 0xe6, 0x4d, 0x20,
0x18, 0x74, 0x3a, 0x0b, 0x05, 0x80, 0x10, 0x4a,
0x39, 0xee, 0xd8, 0x31, 0x56, 0x86, 0xfd, 0x7e,
0x84, 0xdd, 0x0e, 0xe2, 0x38, 0x4a, 0x19, 0x99,
0x2c, 0x63, 0x56, 0xab, 0xc5, 0x62, 0xb5, 0x02,
0x82, 0xa0, 0xd1, 0x68, 0x34, 0x40, 0x24, 0x12,
0x89, 0x44, 0x22, 0x40, 0xbb, 0xdd, 0x6e, 0xb7,
0xdb, 0x83, 0x03, 0x10, 0x04, 0x41, 0x10, 0x84,
0xdf, 0xbd, 0x62, 0x34, 0x1a, 0x8d, 0x26, 0x13,
0x50, 0xaf, 0xb7, 0x5a, 0x8c, 0xa9, 0x01, 0xfd,
0x0c, 0x7e, 0xa4, 0x1a, 0x40, 0x16, 0x80, 0x56,
0xab, 0xd5, 0x6a, 0xb5, 0xc3, 0xef, 0x97, 0x9b,
0x5b, 0x69, 0x65, 0x4f, 0x01, 0xa8, 0xb9, 0x4b,
0x24, 0x12, 0x89, 0x44, 0xe2, 0xcf, 0x02, 0x07,
0x80, 0xd9, 0xd9, 0xd9, 0x59, 0xbf, 0x7f, 0xf8,
0xfd, 0x43, 0x03, 0x50, 0x93, 0x40, 0x20, 0x10,
0x08, 0x04, 0x06, 0x0b, 0x98, 0xd2, 0x6e, 0x4d,
0x08, 0x40, 0x08, 0xbb, 0xdf, 0x0e, 0x00, 0x80,
0x32, 0x07, 0xbb, 0x31, 0xa0, 0x14, 0xb8, 0xec,
0x89, 0x52, 0xc0, 0xe7, 0xf3, 0xf9, 0x7c, 0xbe,
0x03, 0x01, 0xa0, 0x2c, 0xbd, 0x0c, 0x28, 0x65,
0x78, 0xe7, 0xb8, 0x17, 0x88, 0x28, 0x8a, 0x62,
0xa5, 0x02, 0xd8, 0xed, 0x76, 0xbb, 0xd3, 0xb9,
0x0f, 0x00, 0x76, 0x6b, 0xa5, 0x78, 0x3c, 0x1e,
0x97, 0x19, 0x50, 0xca, 0xb4, 0x1c, 0xb8, 0xdf,
0xef, 0xf7, 0xfb, 0xfd, 0xfd, 0xf3, 0xa2, 0x58,
0xad, 0x8a, 0xe2, 0xf0, 0xe7, 0x0e, 0xc5, 0x80,
0x92, 0x33, 0xb9, 0x76, 0xe5, 0x26, 0x54, 0xcb,
0xb0, 0x6c, 0x27, 0xeb, 0x5e, 0xbb, 0x7c, 0x3e,
0x97, 0xcb, 0xe7, 0x87, 0xcf, 0xfc, 0x50, 0x00,
0x94, 0x44, 0x2d, 0x20, 0xb5, 0x12, 0xda, 0xda,
0xda, 0xda, 0xfa, 0xfe, 0x1d, 0x90, 0x24, 0x49,
0xaa, 0xd5, 0x80, 0x7a, 0xbd, 0x5e, 0xaf, 0xd7,
0x7f, 0xdb, 0xfd, 0x55, 0x00, 0x76, 0x8e, 0x65,
0x00, 0x1b, 0x1b, 0x1b, 0x1b, 0xdf, 0xbe, 0x01,
0x73, 0x73, 0x73, 0x73, 0x97, 0x2f, 0xf7, 0xfb,
0xab, 0x54, 0x2a, 0x95, 0x72, 0xf9, 0x80, 0x01,
0x74, 0x3a, 0xea, 0x81, 0xf7, 0x97, 0x50, 0x77,
0xa6, 0xe5, 0x80, 0x45, 0x51, 0x14, 0x45, 0x91,
0x31, 0x53, 0xad, 0xfe, 0x47, 0x0c, 0x28, 0x35,
0x65, 0xad, 0x26, 0x49, 0x92, 0x04, 0xe4, 0x72,
0xb9, 0x5c, 0x2e, 0x07, 0x50, 0xda, 0x7d, 0xdf,
0xcb, 0x81, 0x67, 0xb3, 0xd9, 0x6c, 0x26, 0x03,
0x2c, 0x2f, 0x3f, 0x7d, 0xba, 0xbc, 0x0c, 0x5c,
0xb8, 0xe0, 0x74, 0xa6, 0xd3, 0x7b, 0x00, 0xa0,
0xb7, 0x71, 0x8f, 0x1e, 0xd5, 0xe9, 0x08, 0x01,
0xf2, 0xf9, 0x42, 0x21, 0x9f, 0x07, 0xc6, 0xc6,
0xc6, 0xc6, 0x5c, 0xae, 0xfe, 0x7d, 0x4a, 0x73,
0x3b, 0x45, 0xce, 0xbc, 0x5a, 0xe0, 0x56, 0xab,
0x4e, 0x57, 0xab, 0xed, 0x03, 0x03, 0x6e, 0x37,
0x21, 0x1f, 0x3f, 0x02, 0x4b, 0x4b, 0x77, 0xef,
0x86, 0xc3, 0xec, 0xd1, 0xc5, 0xf3, 0x7f, 0x44,
0x5e, 0x97, 0x5c, 0xb9, 0xe2, 0x72, 0xbd, 0x7f,
0x0f, 0x1c, 0x39, 0xa2, 0xd1, 0xb4, 0x5a, 0xc3,
0xef, 0xef, 0x03, 0xf0, 0xec, 0x59, 0x32, 0x09,
0x34, 0x9b, 0x0b, 0x0b, 0xe7, 0xcf, 0x03, 0xc5,
0xa2, 0x24, 0x35, 0x1a, 0xed, 0xb6, 0xcd, 0x76,
0xfa, 0xf4, 0xf1, 0xe3, 0x95, 0x0a, 0x30, 0x3d,
0x4d, 0xe9, 0xdb, 0xb7, 0xea, 0x0e, 0x07, 0xbd,
0xbf, 0xd5, 0x85, 0xbd, 0x43, 0xcb, 0x65, 0x49,
0x92, 0x5f, 0xb7, 0x94, 0xe6, 0x72, 0xaa, 0xd6,
0x6a, 0x0b, 0xd7, 0xaf, 0x9f, 0x3b, 0x07, 0x5c,
0xba, 0xc4, 0x71, 0x3c, 0xcf, 0xf3, 0x8f, 0x1f,
0xb3, 0x2a, 0xb7, 0xd9, 0x94, 0x0e, 0x53, 0x0b,
0x62, 0x70, 0xe9, 0x87, 0x4d, 0x29, 0xc0, 0x71,
0xa5, 0x12, 0x21, 0x7a, 0xbd, 0xc3, 0x11, 0x89,
0x6c, 0x6f, 0x3b, 0x9d, 0x5e, 0xef, 0x93, 0x27,
0x2b, 0x2b, 0x2b, 0x2b, 0x2f, 0x5e, 0x34, 0x1a,
0xbb, 0x02, 0xe8, 0x95, 0xf9, 0xf9, 0xf9, 0xf9,
0xab, 0x57, 0xf5, 0x7a, 0x36, 0x32, 0x99, 0x98,
0xb6, 0x58, 0x98, 0x66, 0x3f, 0x1c, 0x80, 0x0c,
0xd0, 0x6e, 0xef, 0x9e, 0x37, 0x18, 0x98, 0xae,
0xd7, 0x99, 0x2e, 0x95, 0x98, 0x2e, 0x14, 0x98,
0x96, 0x3f, 0x65, 0x3f, 0x7e, 0x30, 0x5d, 0x2c,
0x76, 0x8f, 0xab, 0x55, 0x16, 0xf8, 0xbf, 0xf9,
0x62, 0xfc, 0xa5, 0xf2, 0x0b, 0xaf, 0xc4, 0x0e,
0xdb, 0x06, 0x1b, 0x53, 0xf5, 0x00, 0x00, 0x00,
0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60,
0x82};

View File

@@ -1,235 +0,0 @@
/* edit_redo.png - 591 bytes */
static const unsigned char edit_redo_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd6, 0x07, 0x1a, 0x0a, 0x27, 0x15, 0x3f,
0xb8, 0xed, 0x21, 0x00, 0x00, 0x01, 0xdc, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0x9d, 0x93, 0x4d,
0x6b, 0x13, 0x51, 0x18, 0x85, 0x9f, 0x3b, 0x5f,
0x4d, 0x8c, 0xa4, 0x42, 0x4c, 0x63, 0x83, 0x1f,
0x6d, 0x36, 0xd5, 0x76, 0xd3, 0xd2, 0x2a, 0x7e,
0x54, 0x63, 0x0d, 0x42, 0xa9, 0x38, 0x6e, 0x44,
0x2b, 0x82, 0xb8, 0x1a, 0x70, 0xad, 0x3b, 0xc1,
0xbf, 0xe0, 0x7e, 0x56, 0xdd, 0x75, 0x29, 0x44,
0x0a, 0x85, 0x8a, 0xc5, 0x52, 0xba, 0x6a, 0xa4,
0xa8, 0x1b, 0xc1, 0x4d, 0x75, 0x21, 0x29, 0x62,
0x4c, 0x26, 0x4d, 0x9a, 0xc9, 0x64, 0xc6, 0xcd,
0x18, 0x27, 0x9d, 0x41, 0x82, 0x67, 0xf9, 0x5e,
0x9e, 0xc3, 0xb9, 0xe7, 0xbe, 0x17, 0xfa, 0x90,
0x6e, 0x6a, 0x9e, 0x6e, 0x6a, 0xd3, 0x51, 0x67,
0x12, 0xfd, 0x6b, 0x5b, 0x37, 0xb5, 0xc2, 0x7f,
0x1b, 0x3c, 0x7e, 0x60, 0x00, 0xbc, 0xd1, 0x4d,
0x6d, 0x2e, 0x38, 0x17, 0x11, 0x71, 0x07, 0x80,
0x3c, 0xb0, 0x08, 0x4c, 0x01, 0x93, 0x01, 0x03,
0x96, 0x96, 0x4d, 0x80, 0x1b, 0x45, 0xc3, 0x5e,
0x0f, 0x19, 0xe8, 0xa6, 0x76, 0x01, 0x78, 0x3e,
0x27, 0xb4, 0x54, 0xb6, 0x70, 0x75, 0x58, 0x4d,
0x8d, 0xe6, 0x10, 0x02, 0x55, 0x8e, 0x61, 0xd9,
0x3f, 0x29, 0x7d, 0x5b, 0xe1, 0xca, 0xe8, 0xbd,
0x1e, 0x13, 0x11, 0x80, 0x17, 0x80, 0x17, 0x8f,
0xf2, 0xf9, 0xf3, 0xf2, 0x50, 0x4e, 0xaa, 0xd9,
0x65, 0xbc, 0xda, 0xa7, 0x9e, 0x74, 0x1f, 0x9b,
0x35, 0x80, 0xae, 0xc9, 0xb9, 0x3d, 0x7b, 0x56,
0xf8, 0xf0, 0x04, 0xf0, 0xf2, 0xe1, 0xb5, 0xeb,
0x37, 0x63, 0x99, 0x33, 0x58, 0x95, 0x75, 0x2c,
0x4f, 0x23, 0xee, 0xda, 0x00, 0x0c, 0x3a, 0x0d,
0x36, 0xdb, 0xce, 0xdf, 0xe2, 0x84, 0xc4, 0xa5,
0x91, 0xbb, 0x2c, 0x2d, 0x9b, 0x28, 0xfe, 0xec,
0xe9, 0x9d, 0xb3, 0xe3, 0x93, 0xb1, 0x74, 0x96,
0xfa, 0xaf, 0x77, 0x24, 0x5a, 0x0d, 0x12, 0x34,
0x18, 0x6e, 0x55, 0x78, 0x45, 0x02, 0x47, 0xea,
0xed, 0x3a, 0x3d, 0x78, 0xb2, 0x7b, 0x0d, 0x05,
0x60, 0x40, 0xd5, 0x66, 0x8f, 0x8f, 0x4d, 0xa7,
0xe3, 0xd6, 0x7b, 0xb2, 0xfb, 0x55, 0x76, 0xa4,
0x04, 0x9a, 0x22, 0xa8, 0x1d, 0x89, 0x33, 0xee,
0x43, 0x17, 0x15, 0x30, 0xeb, 0x16, 0x99, 0x63,
0xa7, 0xd9, 0x5c, 0xfd, 0xd0, 0xed, 0x40, 0x01,
0xe8, 0xb8, 0x6e, 0x46, 0xc8, 0x82, 0x54, 0xc3,
0x62, 0xab, 0x54, 0xf7, 0xd6, 0x5a, 0x95, 0xd0,
0xeb, 0x4c, 0x5c, 0x3e, 0x11, 0x82, 0xbb, 0x7b,
0xe0, 0x74, 0x9c, 0xe4, 0xd1, 0xc6, 0x57, 0xb6,
0x77, 0x76, 0x59, 0x6b, 0xb5, 0x2d, 0xe0, 0x19,
0x30, 0x55, 0x34, 0x6c, 0x51, 0x34, 0x6c, 0x01,
0xf0, 0x36, 0x39, 0x14, 0x82, 0x81, 0x6e, 0x07,
0xec, 0x37, 0xab, 0xee, 0x4a, 0x5d, 0x48, 0xc0,
0xfd, 0xa2, 0x61, 0xaf, 0x1e, 0x4e, 0xe0, 0xc3,
0x33, 0x45, 0xc3, 0x2e, 0x45, 0x6e, 0xa2, 0xaa,
0xc8, 0x07, 0x80, 0x17, 0x05, 0xfb, 0x0a, 0xc1,
0xc1, 0x04, 0x1b, 0xcd, 0xbd, 0xb2, 0x5a, 0x90,
0xbd, 0x18, 0xa6, 0x36, 0x7f, 0xd8, 0xe4, 0xcf,
0x35, 0xa2, 0x24, 0x03, 0x8c, 0xdd, 0x96, 0xdd,
0x2f, 0x07, 0xed, 0xfa, 0xad, 0x99, 0xdc, 0x8f,
0xd4, 0x6e, 0xf9, 0x94, 0xd0, 0xd5, 0xad, 0xcf,
0xaf, 0x3b, 0x76, 0x3f, 0x7f, 0x24, 0xb8, 0x89,
0x23, 0xc0, 0x02, 0x50, 0x05, 0x36, 0x9e, 0x24,
0xdd, 0xef, 0x02, 0xbc, 0xf9, 0x45, 0xa7, 0xf3,
0x2f, 0x83, 0xdf, 0xd7, 0x4b, 0xba, 0x05, 0x5e,
0xcf, 0x35, 0xde, 0x00, 0x00, 0x00, 0x00, 0x49,
0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82};
/* edit_redo.png - 1234 bytes */
static const unsigned char edit_redo_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x04,
0x5d, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xed,
0x96, 0x4d, 0x6b, 0x13, 0x5d, 0x14, 0xc7, 0xcf,
0xbd, 0x33, 0x93, 0x69, 0x4c, 0x6d, 0x8d, 0x69,
0xe3, 0x18, 0x2b, 0x36, 0x8a, 0x88, 0x52, 0x2d,
0x58, 0x15, 0x0a, 0x62, 0xa5, 0xa2, 0x34, 0x55,
0xba, 0x10, 0x44, 0x04, 0x57, 0x22, 0x7e, 0x06,
0x97, 0x7e, 0x01, 0x17, 0xea, 0xae, 0x1b, 0x17,
0xfa, 0x09, 0x5c, 0xf8, 0x52, 0x10, 0x14, 0x14,
0x71, 0x51, 0x6c, 0xbb, 0x10, 0x4b, 0x4d, 0xb0,
0x96, 0xa4, 0x79, 0xc1, 0x4c, 0x9a, 0x97, 0x49,
0x66, 0x32, 0xf7, 0x9e, 0x67, 0x71, 0xb9, 0x84,
0x4e, 0x33, 0x4f, 0x9b, 0xd6, 0x07, 0x11, 0x9e,
0xb3, 0x39, 0x9c, 0x70, 0xce, 0x9d, 0xdf, 0xff,
0x9c, 0x33, 0x37, 0x03, 0xf0, 0xbf, 0x6d, 0xcd,
0xa6, 0xa6, 0xa6, 0xa7, 0x03, 0x01, 0x44, 0xe1,
0x77, 0xef, 0xfe, 0x5d, 0xe7, 0xd2, 0x3f, 0x23,
0xa7, 0x5c, 0x16, 0x42, 0xc2, 0xe1, 0xbf, 0x4e,
0xc0, 0xf9, 0xf3, 0x13, 0x13, 0xa7, 0x4e, 0xc9,
0xa8, 0x58, 0xdc, 0xa9, 0x90, 0x3f, 0x34, 0x81,
0xdf, 0x27, 0x84, 0xec, 0x14, 0x44, 0x3c, 0x38,
0x14, 0x12, 0xd1, 0x9d, 0x3b, 0xc2, 0x3f, 0x7e,
0xbc, 0x19, 0x78, 0xb9, 0xdc, 0x6c, 0xe6, 0xf3,
0x00, 0x3d, 0x3d, 0x9a, 0x16, 0x8d, 0x02, 0x7c,
0xf8, 0xf0, 0xfa, 0xf5, 0xc2, 0x82, 0xcc, 0xda,
0xbb, 0xf7, 0xc5, 0x8b, 0x7b, 0xf7, 0x1c, 0xc7,
0x34, 0xff, 0x33, 0x01, 0x02, 0x3c, 0x91, 0x10,
0xd1, 0xcb, 0x97, 0x89, 0x44, 0x20, 0x10, 0x8b,
0x2d, 0x2c, 0x30, 0x76, 0xee, 0xdc, 0xc0, 0xc0,
0x89, 0x13, 0x96, 0xd5, 0xdd, 0xdd, 0x68, 0xa8,
0xaa, 0xb7, 0xae, 0xd9, 0x6c, 0x36, 0x5d, 0x17,
0xa0, 0x5a, 0x75, 0x9c, 0x62, 0x11, 0xc0, 0xb6,
0x2b, 0x15, 0xce, 0x01, 0x0c, 0xc3, 0x30, 0x0c,
0xa3, 0x73, 0x21, 0x1d, 0x0b, 0x10, 0xe0, 0x57,
0xae, 0x88, 0xe8, 0xcd, 0x9b, 0x6b, 0xd7, 0xc6,
0xc7, 0x47, 0x47, 0x01, 0x6a, 0xb5, 0x60, 0x90,
0x31, 0x80, 0xb5, 0xb5, 0x52, 0xc9, 0x34, 0x01,
0x1c, 0x07, 0xb1, 0x5e, 0x07, 0xa0, 0x94, 0x52,
0x42, 0x00, 0x08, 0x51, 0x55, 0x42, 0x00, 0x1c,
0xc7, 0xb6, 0x6d, 0x1b, 0x80, 0x52, 0x11, 0x9b,
0x66, 0x36, 0x5b, 0xab, 0x01, 0x10, 0x42, 0x29,
0x00, 0x40, 0x3c, 0x1e, 0x8f, 0xc7, 0xe3, 0x5e,
0x21, 0xa1, 0x90, 0x10, 0x62, 0x59, 0xdb, 0x16,
0x20, 0xc0, 0x0f, 0x1f, 0x16, 0x51, 0x32, 0x79,
0xe9, 0xd2, 0xd5, 0xab, 0xa3, 0xa3, 0x00, 0xcd,
0x26, 0xa2, 0x65, 0x01, 0x14, 0x0a, 0xa6, 0x99,
0xcd, 0xae, 0x3b, 0x9a, 0x00, 0x00, 0x70, 0xee,
0xba, 0x88, 0x00, 0x94, 0x2a, 0x0a, 0x21, 0x00,
0x88, 0x9a, 0x66, 0xdb, 0xa2, 0xf3, 0x88, 0x00,
0xb6, 0x5d, 0xad, 0x72, 0xde, 0x12, 0x20, 0xad,
0xbd, 0x10, 0x4d, 0x13, 0x42, 0x5c, 0x57, 0xfe,
0xa2, 0x42, 0x47, 0xf6, 0xe4, 0xc9, 0x85, 0x0b,
0x67, 0xcf, 0x1e, 0x3b, 0x66, 0xdb, 0xa2, 0xab,
0xba, 0x9e, 0xcf, 0x9b, 0xe6, 0xea, 0x2a, 0x00,
0x22, 0x63, 0xff, 0x56, 0xc9, 0x18, 0x21, 0xb6,
0x0d, 0xa0, 0xaa, 0x42, 0x88, 0xeb, 0xda, 0x36,
0xe7, 0x1b, 0xf3, 0xda, 0x83, 0xcb, 0x55, 0x6a,
0x81, 0x6f, 0x53, 0xc0, 0xe4, 0x24, 0x62, 0x7f,
0xbf, 0xae, 0x03, 0x64, 0xb3, 0xd5, 0x6a, 0x2a,
0x05, 0xa0, 0x28, 0x8a, 0x42, 0x29, 0x40, 0x24,
0x12, 0x0e, 0xef, 0xdb, 0x27, 0xb2, 0x28, 0x05,
0xd0, 0x34, 0x42, 0x74, 0x1d, 0x00, 0x71, 0xfd,
0x09, 0x88, 0x00, 0x8c, 0x01, 0x94, 0xcb, 0x9c,
0x2f, 0x2e, 0x02, 0x04, 0x02, 0xa1, 0x10, 0x21,
0x00, 0x03, 0x03, 0x86, 0x31, 0x38, 0xd8, 0xf9,
0x3b, 0xd0, 0xa1, 0x00, 0x01, 0x16, 0x0c, 0x02,
0x28, 0x0a, 0x21, 0xaa, 0x0a, 0xd0, 0xdb, 0xdb,
0xd7, 0xd7, 0xd3, 0x03, 0xa0, 0x69, 0xb9, 0x9c,
0x65, 0x01, 0xbc, 0x7d, 0xfb, 0xe9, 0xd3, 0xd2,
0x92, 0x7f, 0xfd, 0xc5, 0x8b, 0x93, 0x93, 0x67,
0xce, 0x00, 0xa8, 0x6a, 0x57, 0x17, 0xc0, 0xf6,
0xc1, 0xa5, 0x6d, 0xeb, 0x7f, 0x80, 0x10, 0x80,
0xee, 0xee, 0xde, 0xde, 0x60, 0x10, 0x20, 0x97,
0x2b, 0x14, 0x32, 0x19, 0x44, 0x01, 0x5e, 0x2a,
0x89, 0x8c, 0xe3, 0xc7, 0x05, 0x00, 0x21, 0xd2,
0xcb, 0x5a, 0x45, 0x21, 0x44, 0xd3, 0x76, 0x0e,
0xbe, 0x6d, 0x01, 0x8a, 0x02, 0xa0, 0xaa, 0x00,
0x86, 0xa1, 0x28, 0x43, 0x43, 0x88, 0x8b, 0x8b,
0x1f, 0x3f, 0x96, 0x4a, 0x72, 0xff, 0x6f, 0xdc,
0x10, 0x00, 0xdf, 0xbe, 0xf9, 0xd5, 0xdb, 0x36,
0x63, 0xb5, 0x9a, 0x17, 0xfc, 0xe0, 0xc1, 0x4e,
0xc1, 0xa5, 0x75, 0xbc, 0x42, 0xb6, 0x8d, 0x58,
0xa9, 0x30, 0xd6, 0x68, 0x20, 0xaa, 0xaa, 0x7c,
0xa9, 0x74, 0xfd, 0xe8, 0xd1, 0x4c, 0xc6, 0x71,
0xbe, 0x7e, 0x6d, 0xcd, 0xa8, 0xbd, 0xb5, 0x07,
0x4f, 0xa7, 0x3b, 0xe5, 0x90, 0xb6, 0xc5, 0x09,
0x48, 0xa0, 0x54, 0xea, 0xc0, 0x81, 0xb9, 0x39,
0xc6, 0x2a, 0x95, 0xb5, 0xb5, 0x46, 0xa3, 0x50,
0x68, 0x65, 0x3c, 0x7c, 0xf8, 0xe0, 0x01, 0x80,
0xbc, 0x48, 0xe5, 0x95, 0x28, 0xeb, 0x5a, 0x82,
0x1c, 0xa7, 0x56, 0x43, 0x3c, 0x74, 0x48, 0x80,
0x67, 0x32, 0x7e, 0x79, 0x5b, 0xb5, 0x4d, 0x26,
0xd0, 0x3a, 0x18, 0x11, 0x11, 0xf1, 0xf3, 0xe7,
0x5f, 0xbf, 0x4c, 0x73, 0x7e, 0x7e, 0x62, 0x82,
0x10, 0x80, 0xe1, 0x61, 0xef, 0x45, 0xa8, 0x28,
0x7e, 0x27, 0x09, 0xe0, 0x40, 0xc0, 0xd3, 0x3f,
0x4f, 0x03, 0xe5, 0x9d, 0xe5, 0xe7, 0xb7, 0x3c,
0x01, 0x6f, 0x47, 0x28, 0xad, 0x56, 0x57, 0x57,
0x01, 0xee, 0xdf, 0x9f, 0x99, 0xa9, 0xd7, 0x15,
0x25, 0x1c, 0x76, 0x5d, 0xc6, 0x1c, 0x07, 0x51,
0x55, 0x1b, 0x0d, 0x5d, 0x2f, 0x95, 0x12, 0x89,
0x47, 0x8f, 0x34, 0xed, 0xd6, 0xad, 0xf5, 0x42,
0xe4, 0xa7, 0x84, 0x9f, 0xd7, 0xb4, 0xf5, 0xb1,
0xac, 0xf3, 0x9f, 0xa0, 0xd7, 0x7c, 0x3a, 0xd6,
0x02, 0x97, 0xfe, 0xc7, 0x8f, 0x77, 0xef, 0x38,
0xb7, 0xac, 0x23, 0x47, 0x2e, 0x5f, 0xa6, 0x34,
0x9f, 0xcf, 0x64, 0x96, 0x97, 0x8b, 0xc5, 0xa9,
0xa9, 0xd3, 0xa7, 0xc7, 0xc7, 0xe3, 0x71, 0xce,
0xb3, 0xd9, 0x74, 0xba, 0x58, 0x1c, 0x1b, 0x33,
0xcd, 0x54, 0x0a, 0x71, 0x7a, 0xda, 0xb2, 0x0a,
0x85, 0xd6, 0x39, 0x12, 0xcc, 0xcf, 0xb7, 0x9e,
0xd3, 0x1e, 0xd8, 0x7f, 0x02, 0x9b, 0x08, 0xd8,
0xe8, 0x97, 0x96, 0x5e, 0xbd, 0xe2, 0xfc, 0xcb,
0x97, 0xc1, 0xc1, 0xb1, 0x31, 0x4a, 0x67, 0x67,
0xf3, 0xf9, 0x6c, 0xd6, 0x34, 0x6f, 0xdf, 0x8e,
0xc5, 0x22, 0x91, 0x5d, 0xbb, 0x56, 0x56, 0x7a,
0x7a, 0x86, 0x86, 0x18, 0xbb, 0x79, 0x73, 0xff,
0xfe, 0x91, 0x11, 0x4a, 0xbf, 0x7f, 0x5f, 0x5e,
0x7e, 0xff, 0x9e, 0x73, 0xb9, 0xeb, 0x5e, 0x50,
0x2f, 0xb0, 0x14, 0x24, 0x81, 0xe5, 0x8a, 0xfa,
0xaf, 0xd2, 0x26, 0x02, 0xfc, 0x05, 0x25, 0x93,
0x33, 0x33, 0x9c, 0x27, 0x93, 0x7b, 0xf6, 0xc4,
0xe3, 0x84, 0x3c, 0x7d, 0xea, 0x38, 0xaa, 0xea,
0xba, 0x9a, 0x26, 0x32, 0x08, 0x21, 0x84, 0x52,
0x42, 0x2a, 0x15, 0xc3, 0x18, 0x1e, 0xa6, 0xd4,
0xb6, 0x43, 0xa1, 0xfe, 0x7e, 0x42, 0x5c, 0xb7,
0x54, 0xfa, 0xf9, 0x13, 0xd1, 0xb6, 0x39, 0x77,
0xdd, 0x8d, 0x60, 0x5e, 0x60, 0x3f, 0x01, 0x2d,
0x3e, 0x9f, 0xdd, 0xf2, 0x0a, 0xf0, 0x76, 0xca,
0x6f, 0x47, 0x29, 0x1d, 0x19, 0xb9, 0x7b, 0x57,
0x51, 0x22, 0x91, 0x68, 0xf4, 0xe4, 0x49, 0x4a,
0xaf, 0x5f, 0x17, 0x1f, 0x69, 0xd1, 0xa8, 0xf8,
0x56, 0xca, 0xe5, 0xe6, 0xe7, 0x9f, 0x3d, 0x63,
0xec, 0xf9, 0x73, 0xce, 0x19, 0x43, 0xe4, 0xbc,
0xaf, 0x8f, 0x73, 0x45, 0xe1, 0xdc, 0x30, 0x62,
0x31, 0x42, 0x54, 0x55, 0xd7, 0xbb, 0xba, 0x10,
0x39, 0x4f, 0xa7, 0x57, 0x56, 0x10, 0xeb, 0xf5,
0xb9, 0xb9, 0xd9, 0x59, 0xc6, 0xe4, 0x75, 0xed,
0x15, 0xb6, 0xe5, 0xaf, 0x51, 0xff, 0x95, 0x6a,
0xef, 0xfd, 0x1a, 0xe1, 0x67, 0x7e, 0xb7, 0xce,
0xe6, 0x2b, 0xf4, 0xd7, 0xdb, 0x3f, 0xc6, 0xc6,
0x73, 0xce, 0xcc, 0x6b, 0x02, 0xd3, 0x00, 0x00,
0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42,
0x60, 0x82};

View File

@@ -1,287 +0,0 @@
/* edit_undo.png - 650 bytes */
static const unsigned char edit_undo_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd6, 0x07, 0x1a, 0x0a, 0x0e, 0x00, 0x16,
0x23, 0x96, 0x21, 0x00, 0x00, 0x02, 0x17, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0x95, 0x93, 0x4f,
0x68, 0x92, 0x61, 0x1c, 0xc7, 0xbf, 0xcf, 0xf3,
0xbe, 0xcf, 0xd4, 0xe5, 0xfe, 0xe8, 0xc6, 0x1a,
0xd2, 0x88, 0xd6, 0xc1, 0xf2, 0x10, 0x14, 0x84,
0x41, 0x83, 0x15, 0x04, 0x42, 0xb0, 0x43, 0x78,
0x08, 0x82, 0x62, 0x44, 0x50, 0x5d, 0x3b, 0x8c,
0x3c, 0x78, 0x28, 0xc7, 0x8c, 0x1d, 0x22, 0xba,
0x74, 0xa9, 0x58, 0x41, 0x10, 0x34, 0xe9, 0x50,
0x2c, 0x16, 0xc1, 0x52, 0x8c, 0x5a, 0x76, 0x8a,
0x94, 0xb4, 0x68, 0x0d, 0x72, 0x13, 0x5c, 0xbe,
0x3a, 0xe7, 0x86, 0xef, 0xeb, 0xf3, 0x3c, 0x1d,
0xc2, 0xa5, 0x9b, 0x96, 0x7d, 0x6f, 0xcf, 0x17,
0xbe, 0x9f, 0xe7, 0x79, 0x7e, 0xcf, 0xf7, 0x01,
0x9a, 0x28, 0x3a, 0x05, 0x89, 0x16, 0xa4, 0x6e,
0x35, 0xe6, 0xee, 0xa1, 0x97, 0x29, 0xc8, 0xa2,
0x45, 0xd1, 0xda, 0x85, 0xdf, 0xc7, 0x6c, 0x4c,
0x41, 0xd6, 0xed, 0x0d, 0xb5, 0x9a, 0xff, 0x73,
0x02, 0xbf, 0x8f, 0xd9, 0x3c, 0x4e, 0x23, 0xe7,
0xf6, 0x86, 0x80, 0xc2, 0xd5, 0xcd, 0x6b, 0xe8,
0xa4, 0x27, 0xc3, 0x05, 0xcd, 0x80, 0xb6, 0xc5,
0xc3, 0xc9, 0xec, 0xc5, 0xf1, 0x09, 0xbd, 0x54,
0x0b, 0x20, 0x5b, 0xc3, 0x46, 0x6e, 0x1c, 0x2a,
0xd5, 0x00, 0x8b, 0x17, 0x90, 0x15, 0x70, 0x2e,
0x01, 0x88, 0xf2, 0x9b, 0xd9, 0xc7, 0x5f, 0x19,
0x05, 0x79, 0x95, 0x28, 0x78, 0x02, 0x41, 0xe3,
0x47, 0x15, 0xa0, 0xf8, 0x7d, 0xac, 0xdd, 0xe3,
0x34, 0x56, 0xdd, 0xde, 0x10, 0x8c, 0x9f, 0xd7,
0x41, 0x28, 0x45, 0xb9, 0x0c, 0x80, 0x2f, 0x42,
0x5f, 0x4f, 0x41, 0x5b, 0x89, 0x41, 0xca, 0x92,
0x3a, 0xe8, 0x3a, 0xd1, 0x67, 0xb6, 0x28, 0xbd,
0x36, 0xe4, 0x4f, 0x0f, 0xec, 0xab, 0xbc, 0x8e,
0x44, 0xc5, 0x32, 0x00, 0x28, 0x13, 0x17, 0x84,
0x5e, 0x0d, 0x53, 0xaa, 0xfc, 0xa6, 0xaa, 0x0c,
0x52, 0x4a, 0x08, 0xc1, 0x21, 0x84, 0x80, 0xe0,
0x6b, 0x28, 0xaf, 0xa7, 0x60, 0xb2, 0x98, 0xc8,
0x8e, 0xae, 0x5d, 0x9d, 0x9d, 0x62, 0xed, 0xd0,
0xee, 0xfd, 0xfa, 0xa3, 0x48, 0x54, 0x18, 0xf4,
0x65, 0x92, 0xd9, 0xe7, 0x43, 0x5e, 0xb0, 0x8e,
0x93, 0x00, 0x00, 0xce, 0x75, 0x2c, 0x7c, 0xfb,
0x88, 0xc5, 0xef, 0x71, 0xa4, 0xd3, 0x5f, 0xea,
0x06, 0x56, 0xd4, 0xe2, 0xb0, 0xf7, 0xbb, 0x60,
0x6e, 0x67, 0x07, 0x86, 0x9d, 0xdd, 0xe1, 0xed,
0x33, 0x18, 0x19, 0xc3, 0x42, 0xe2, 0x26, 0xf6,
0xb8, 0xae, 0x40, 0xf0, 0x62, 0x5d, 0x58, 0x14,
0xef, 0x22, 0x93, 0x65, 0x28, 0xeb, 0x1c, 0x3d,
0x8e, 0x4b, 0xf8, 0xf4, 0x76, 0xba, 0x74, 0xfc,
0x6c, 0xda, 0xaa, 0x02, 0x40, 0x20, 0x68, 0x68,
0xf0, 0x31, 0x3b, 0x30, 0x99, 0x73, 0x8f, 0x8c,
0x01, 0x00, 0x62, 0x33, 0x77, 0xea, 0xdf, 0xcb,
0x42, 0xe0, 0x3a, 0x72, 0x19, 0x85, 0xcc, 0x03,
0x98, 0xcc, 0x3a, 0x08, 0x91, 0x6a, 0x5d, 0x0f,
0x02, 0x41, 0x43, 0x9b, 0x4d, 0x32, 0xfb, 0xfc,
0xb3, 0xc9, 0xcd, 0xcc, 0xd0, 0x28, 0xc8, 0xd0,
0x28, 0x08, 0x80, 0x83, 0xa5, 0xbc, 0x3c, 0x95,
0x98, 0xbb, 0xfd, 0xbe, 0x6f, 0xe0, 0x1c, 0xb8,
0xe8, 0x00, 0x91, 0xd2, 0x84, 0xbf, 0xd5, 0xb8,
0x51, 0x95, 0xc3, 0xf7, 0xe1, 0x78, 0x37, 0x4d,
0xe5, 0xea, 0xf2, 0x0d, 0x11, 0x79, 0x68, 0x93,
0xdb, 0x9a, 0x58, 0xbb, 0x73, 0x23, 0x7f, 0xf8,
0x3c, 0x96, 0x14, 0x61, 0x95, 0x1b, 0xc5, 0x38,
0x84, 0x6a, 0xcf, 0x37, 0x05, 0x34, 0x83, 0x44,
0xa7, 0x30, 0xd8, 0xed, 0x38, 0x2c, 0xb4, 0xec,
0x12, 0x00, 0xdc, 0x6a, 0xf8, 0x99, 0xfe, 0xa1,
0xa3, 0x5d, 0x3b, 0xf7, 0xce, 0x7c, 0x8e, 0x3d,
0xa9, 0x1c, 0x3b, 0xa3, 0x5d, 0xfb, 0x6f, 0x80,
0x6c, 0xeb, 0xb7, 0xa6, 0x3e, 0x3c, 0x7f, 0x41,
0x75, 0xed, 0x69, 0xd5, 0xfb, 0x05, 0x05, 0x16,
0xe2, 0x25, 0x2b, 0xbe, 0x24, 0x14, 0x00, 0x00,
0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42,
0x60, 0x82};
/* edit_undo.png - 1586 bytes */
static const unsigned char edit_undo_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x05,
0xbd, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xe5,
0x97, 0x4b, 0x68, 0x13, 0x5d, 0x18, 0x86, 0xdf,
0x33, 0x97, 0x4c, 0xe2, 0x34, 0x69, 0x53, 0x13,
0x9b, 0x34, 0xf6, 0x6a, 0xac, 0xf5, 0xb6, 0xd0,
0x8d, 0x88, 0x56, 0xb0, 0x8a, 0x8a, 0x22, 0x16,
0x75, 0x53, 0x91, 0x22, 0x52, 0xa1, 0xab, 0x2e,
0x15, 0x37, 0x0a, 0xe2, 0x65, 0x29, 0x2a, 0xba,
0x50, 0x90, 0xd2, 0x8d, 0xa5, 0x22, 0x28, 0x8a,
0x20, 0xda, 0x68, 0x6b, 0xb5, 0x76, 0xd1, 0x6a,
0xa5, 0x82, 0x56, 0xeb, 0x25, 0xbd, 0x25, 0xd6,
0xa4, 0x21, 0xd7, 0x49, 0xe6, 0xf6, 0x2f, 0xe6,
0x1f, 0x42, 0x52, 0x63, 0x6a, 0x15, 0x85, 0xff,
0x3f, 0x9b, 0x97, 0x99, 0x9c, 0x73, 0xe6, 0x7d,
0xbe, 0xf3, 0x7d, 0xe7, 0x9c, 0x00, 0xff, 0xf7,
0xd6, 0xd5, 0xd5, 0xd1, 0x51, 0x5d, 0xdd, 0xdc,
0xdc, 0xdb, 0xdb, 0xd6, 0x06, 0xa8, 0xea, 0x9f,
0xfe, 0x3e, 0x35, 0xdf, 0x81, 0xb7, 0x6f, 0x5f,
0xbf, 0x5e, 0x56, 0xb6, 0x79, 0x33, 0xc7, 0x09,
0xc2, 0xc7, 0x8f, 0xd7, 0xae, 0xfd, 0x69, 0xe3,
0xf3, 0x06, 0xd0, 0x8d, 0xdb, 0x6c, 0x14, 0x35,
0x36, 0xe6, 0xf1, 0xac, 0x5b, 0xb7, 0x63, 0xc7,
0xf6, 0xed, 0x7f, 0xcb, 0xfe, 0x4f, 0x00, 0xcc,
0x36, 0xbe, 0x75, 0xeb, 0xd2, 0xa5, 0x00, 0x20,
0xcb, 0xe3, 0xe3, 0x7f, 0x0f, 0x80, 0x99, 0xaf,
0x71, 0x51, 0x54, 0xd5, 0x8a, 0x0a, 0x80, 0x65,
0x19, 0x66, 0xc1, 0x02, 0xad, 0xef, 0x9b, 0x37,
0x80, 0x5e, 0x0b, 0xc9, 0xa4, 0x28, 0x02, 0x43,
0x43, 0x82, 0x20, 0x8a, 0xc0, 0xcb, 0x97, 0xc9,
0xa4, 0xa2, 0x10, 0xd2, 0xd9, 0x39, 0x38, 0x38,
0x39, 0xc9, 0xb2, 0x3d, 0x3d, 0xa7, 0x4f, 0x9f,
0x3d, 0x9b, 0x4a, 0xc5, 0x62, 0xbf, 0x0a, 0x40,
0xff, 0xac, 0x71, 0x55, 0x95, 0xa4, 0x2f, 0x5f,
0x00, 0xc0, 0x60, 0x58, 0xbb, 0x16, 0x20, 0x84,
0x10, 0x49, 0x02, 0x4a, 0x4b, 0x2b, 0x2b, 0x79,
0x1e, 0x70, 0xb9, 0xaa, 0xab, 0x5d, 0x2e, 0xc0,
0x6e, 0x77, 0xb9, 0x9c, 0x4e, 0x87, 0xa3, 0xa8,
0xc8, 0x62, 0xa1, 0xe9, 0x68, 0x34, 0x14, 0x0a,
0x04, 0xc2, 0xe1, 0x25, 0x4b, 0x56, 0xac, 0x58,
0xb4, 0x48, 0x96, 0xf7, 0xee, 0x75, 0xb9, 0x96,
0x2f, 0x67, 0xd9, 0xe7, 0xcf, 0x7b, 0x7a, 0x7a,
0x7b, 0x15, 0x25, 0x1c, 0xfe, 0x6d, 0x00, 0xf7,
0xef, 0xb7, 0xb7, 0x57, 0x54, 0x6c, 0xd8, 0x60,
0xb5, 0x02, 0x5e, 0x6f, 0x77, 0xb7, 0x6e, 0x3c,
0x91, 0x10, 0xc5, 0xea, 0x6a, 0x80, 0xa2, 0x8c,
0xc6, 0x35, 0x6b, 0xd2, 0xfd, 0x55, 0x15, 0x60,
0x59, 0x00, 0xa0, 0x28, 0xa7, 0x53, 0x53, 0x9b,
0x0d, 0x60, 0x18, 0x8e, 0x2b, 0x2d, 0x05, 0x78,
0xbe, 0xa0, 0x40, 0x51, 0xca, 0xcb, 0x2b, 0x2b,
0x6b, 0x6a, 0x96, 0x2d, 0x5b, 0xb9, 0x92, 0x65,
0x39, 0x4e, 0x92, 0x6a, 0x6b, 0x6d, 0x36, 0x55,
0x9d, 0x99, 0xd9, 0xb4, 0x49, 0x03, 0x19, 0x18,
0xd0, 0x40, 0xa6, 0xa6, 0xe6, 0x0d, 0xd0, 0xd5,
0x75, 0xe3, 0xc6, 0x92, 0x25, 0x4d, 0x4d, 0x3c,
0x2f, 0x49, 0x9f, 0x3e, 0xdd, 0xbd, 0xab, 0x1b,
0x8f, 0xc7, 0x45, 0xb1, 0xa2, 0x02, 0xa0, 0x28,
0x42, 0x18, 0x06, 0xa0, 0x69, 0x86, 0xe1, 0xb8,
0xef, 0x4f, 0x26, 0xcb, 0x80, 0x28, 0xa6, 0x52,
0x91, 0x08, 0x90, 0x4c, 0x26, 0x12, 0x7e, 0x3f,
0x30, 0x36, 0xe6, 0xf5, 0xf6, 0xf5, 0x69, 0xa0,
0x46, 0x23, 0xc0, 0xf3, 0x16, 0x8b, 0xc5, 0x42,
0x88, 0xc5, 0x62, 0xb7, 0x97, 0x97, 0xbb, 0x5c,
0x46, 0x63, 0x2c, 0xe6, 0xf5, 0xca, 0x72, 0x65,
0xe5, 0xaa, 0x55, 0x2c, 0xfb, 0xe4, 0x89, 0x06,
0x22, 0x8a, 0x73, 0x05, 0x20, 0xd9, 0x2f, 0xee,
0xdc, 0xd1, 0x52, 0x67, 0xe1, 0xc2, 0xcc, 0xd4,
0x11, 0x04, 0x49, 0x72, 0xbb, 0xb5, 0x3e, 0xda,
0xf4, 0x84, 0x18, 0x8d, 0x40, 0x3c, 0x1e, 0x8d,
0x4e, 0x4e, 0x02, 0x81, 0xc0, 0xf4, 0xf4, 0xeb,
0xd7, 0xf9, 0x3f, 0xc8, 0x30, 0x0c, 0x03, 0x00,
0x25, 0x25, 0x8b, 0x17, 0x6f, 0xdb, 0x06, 0x0c,
0x0e, 0x3e, 0x7b, 0xf6, 0xe2, 0xc5, 0xab, 0x57,
0x89, 0x44, 0x24, 0x12, 0x0c, 0xf6, 0xf7, 0xef,
0xdc, 0xd9, 0xd2, 0x02, 0xb4, 0xb4, 0xcc, 0x1b,
0x40, 0x6f, 0xb9, 0x6a, 0xc0, 0xef, 0xff, 0xfa,
0x35, 0x95, 0x02, 0xc2, 0xe1, 0x70, 0x78, 0x62,
0x02, 0x58, 0xba, 0xd4, 0xed, 0xae, 0xaa, 0x02,
0x00, 0x9a, 0x76, 0x38, 0xd2, 0xe3, 0x05, 0x41,
0x10, 0x12, 0x09, 0x20, 0x16, 0x8b, 0x46, 0x7d,
0x3e, 0x40, 0x10, 0xa2, 0xd1, 0x60, 0x10, 0x20,
0x84, 0x61, 0x08, 0x01, 0x0c, 0x06, 0x93, 0xa9,
0xac, 0x0c, 0x48, 0x26, 0x45, 0xb1, 0xb6, 0x16,
0x18, 0x1d, 0x1d, 0x18, 0xb8, 0x7d, 0x7b, 0x78,
0x78, 0xcb, 0x96, 0xe6, 0x66, 0x60, 0xf5, 0xea,
0xb9, 0x02, 0xe4, 0xdc, 0x85, 0x1a, 0x1a, 0x0e,
0x1f, 0x1e, 0x1b, 0x7b, 0xfc, 0x58, 0x03, 0xa9,
0xaf, 0xef, 0xeb, 0xf3, 0x78, 0xa6, 0xa6, 0x3c,
0x9e, 0xf5, 0xeb, 0xeb, 0xeb, 0x9d, 0x4e, 0x20,
0x1e, 0xcf, 0xdc, 0x41, 0xfa, 0xfb, 0x1f, 0x3c,
0x78, 0xfa, 0x74, 0xf6, 0x3c, 0xe1, 0xb0, 0xaa,
0x16, 0x14, 0x00, 0x0e, 0x87, 0xd3, 0x59, 0x5e,
0xae, 0xaa, 0x85, 0x85, 0x45, 0x45, 0x13, 0x13,
0x84, 0x00, 0xc9, 0x64, 0x38, 0xac, 0xd5, 0x88,
0x24, 0x01, 0x80, 0xc1, 0x60, 0xb7, 0x57, 0x56,
0x02, 0xc0, 0xf4, 0xf4, 0x5c, 0xed, 0xcf, 0xe1,
0x1c, 0xd0, 0x41, 0x82, 0x41, 0x49, 0xb2, 0x5a,
0xeb, 0xeb, 0xfb, 0xfb, 0x1f, 0x3d, 0x7a, 0xff,
0x1e, 0xa8, 0xaa, 0xaa, 0xaa, 0xd2, 0x22, 0x9f,
0xd9, 0x36, 0x6e, 0x3c, 0x74, 0x08, 0x20, 0x44,
0xd7, 0x60, 0x30, 0x12, 0x31, 0x1a, 0x1b, 0x1b,
0x43, 0xa1, 0x40, 0xe0, 0xdb, 0xb7, 0xe9, 0xe9,
0x44, 0x22, 0x16, 0x2b, 0x29, 0x51, 0x55, 0x59,
0x96, 0x24, 0x59, 0xd6, 0x6a, 0x43, 0x14, 0x01,
0x51, 0x54, 0x14, 0x9a, 0x2e, 0x28, 0x90, 0x24,
0xbf, 0x7f, 0xcf, 0x1e, 0xa7, 0x53, 0xd7, 0x5f,
0x06, 0xc8, 0x04, 0x79, 0xf2, 0x64, 0x7c, 0x3c,
0x91, 0x70, 0x3a, 0x77, 0xed, 0xd2, 0x41, 0x00,
0x86, 0xa9, 0xae, 0x9e, 0x35, 0x2d, 0xa5, 0xeb,
0xc1, 0x83, 0xad, 0xad, 0xdf, 0xbe, 0x75, 0x76,
0xfa, 0x7c, 0xc1, 0x20, 0x21, 0x47, 0x8e, 0x4c,
0x4c, 0x4c, 0x4c, 0x84, 0x42, 0x00, 0xc7, 0x99,
0x4c, 0x85, 0x85, 0xaa, 0x2a, 0x49, 0xa2, 0x18,
0x08, 0xa8, 0xaa, 0xa2, 0xc8, 0xb2, 0x20, 0x00,
0x92, 0xa4, 0x28, 0x46, 0x63, 0x5a, 0x7f, 0x53,
0xd3, 0x0d, 0xd1, 0xff, 0xee, 0x5a, 0x2c, 0xdb,
0xde, 0x7e, 0xf1, 0xa2, 0xc3, 0xb1, 0x7b, 0xb7,
0x7e, 0x70, 0x65, 0x5e, 0xe6, 0x0c, 0x86, 0xef,
0x2b, 0xcb, 0x3e, 0x7c, 0xd8, 0xd6, 0x66, 0xb5,
0x86, 0x42, 0x81, 0xc0, 0xbb, 0x77, 0xab, 0x56,
0xc9, 0xf2, 0x87, 0x0f, 0xfd, 0xfd, 0x0e, 0x87,
0x24, 0xdd, 0xbf, 0x7f, 0xf5, 0xaa, 0xd9, 0xac,
0x8f, 0x27, 0x64, 0x2e, 0xae, 0x7e, 0xb0, 0x02,
0xfa, 0x04, 0xe9, 0x48, 0x6a, 0xca, 0x30, 0xba,
0xa1, 0xa6, 0xa6, 0xd6, 0x56, 0x9f, 0xcf, 0xe3,
0x19, 0x1e, 0xf6, 0xfb, 0x4b, 0x4a, 0xf6, 0xed,
0xcb, 0x1c, 0x9f, 0x0b, 0x80, 0xe3, 0x68, 0x9a,
0x10, 0x55, 0x05, 0x28, 0x8a, 0xa2, 0x58, 0x36,
0x95, 0x0a, 0x87, 0x23, 0x91, 0x05, 0x0b, 0x52,
0x29, 0x59, 0x96, 0xe5, 0x64, 0x52, 0x3f, 0x07,
0xf4, 0x40, 0x51, 0x79, 0x33, 0x24, 0x47, 0x11,
0x67, 0x03, 0x68, 0x47, 0x55, 0x7a, 0x62, 0x1d,
0x84, 0xa2, 0x5a, 0x5a, 0x8e, 0x1d, 0xf3, 0xfb,
0xbb, 0xbb, 0xb5, 0x67, 0x9b, 0x4d, 0x53, 0x7d,
0xf1, 0x67, 0x47, 0x32, 0x91, 0x50, 0x14, 0x8e,
0xf3, 0xf9, 0x08, 0x61, 0x18, 0x9e, 0x77, 0x3a,
0x23, 0x91, 0x40, 0xe0, 0xed, 0x5b, 0x8a, 0x12,
0x45, 0x49, 0x22, 0x44, 0x3b, 0xe3, 0xd3, 0xc0,
0x5a, 0x79, 0xa7, 0x55, 0x51, 0xf2, 0x00, 0xe8,
0x1f, 0xcc, 0xb7, 0x02, 0xba, 0x66, 0x47, 0x2a,
0xfb, 0x7d, 0x7a, 0xbe, 0x6b, 0xd7, 0x4e, 0x9f,
0x2e, 0x2c, 0x6c, 0x68, 0x30, 0x9b, 0xcd, 0x66,
0x42, 0x1c, 0x8e, 0x54, 0x4a, 0x92, 0x58, 0x76,
0x72, 0x72, 0x7c, 0x7c, 0x6a, 0x4a, 0x51, 0xec,
0xf6, 0x58, 0x2c, 0x14, 0x4a, 0x26, 0x3b, 0x3a,
0xb4, 0xfe, 0xfa, 0xed, 0x2a, 0x91, 0xc8, 0x34,
0xae, 0xa7, 0x58, 0xfa, 0x7f, 0x47, 0x9e, 0xcb,
0x5c, 0x36, 0x50, 0x2e, 0x30, 0x7d, 0x85, 0xb2,
0x57, 0x8a, 0xa6, 0xcd, 0x66, 0xb3, 0x19, 0x60,
0x18, 0xb7, 0xbb, 0xa6, 0x86, 0xe7, 0x8f, 0x1f,
0xaf, 0xaa, 0x72, 0xbb, 0xe3, 0x71, 0x9f, 0xef,
0xd6, 0xad, 0x9b, 0x37, 0xbb, 0xbb, 0x59, 0xf6,
0xeb, 0x57, 0xbf, 0x5f, 0x55, 0xcf, 0x9c, 0x39,
0x79, 0xf2, 0xc2, 0x05, 0xe0, 0xde, 0x3d, 0x6d,
0x9c, 0x7e, 0xd6, 0xeb, 0x27, 0xb2, 0xae, 0xd9,
0x20, 0x39, 0x2f, 0x73, 0xb9, 0x0c, 0xd3, 0x79,
0xfa, 0xa7, 0x23, 0xef, 0x76, 0xbb, 0xdd, 0x14,
0xc5, 0xf3, 0xed, 0xed, 0xe7, 0xcf, 0x5b, 0xad,
0x97, 0x2f, 0x5b, 0xad, 0x45, 0x45, 0x82, 0x10,
0x89, 0x78, 0x3c, 0xdd, 0xdd, 0xd1, 0xa8, 0x2c,
0x4f, 0x4e, 0x7e, 0xf9, 0xa2, 0x28, 0x27, 0x4e,
0x9c, 0x3a, 0x75, 0xe5, 0x0a, 0xd0, 0xd3, 0x93,
0x99, 0x2a, 0xd9, 0xc6, 0xb3, 0x53, 0x28, 0x0d,
0x40, 0x7e, 0x6c, 0x28, 0x57, 0x6a, 0xa4, 0x9f,
0x59, 0x96, 0x65, 0x01, 0x86, 0xa9, 0xab, 0xdb,
0xb0, 0x81, 0xe3, 0xac, 0xd6, 0xba, 0xba, 0x35,
0x6b, 0x68, 0xda, 0xe9, 0xb4, 0x58, 0x78, 0x5e,
0x51, 0x8a, 0x8b, 0x8d, 0x46, 0x8e, 0x93, 0xe5,
0xe5, 0xcb, 0x63, 0xb1, 0x78, 0x5c, 0x92, 0x28,
0xea, 0xe8, 0xd1, 0x73, 0xe7, 0x54, 0xb5, 0xad,
0x2d, 0xd3, 0x88, 0x2c, 0x67, 0x6a, 0x2a, 0x95,
0xa9, 0x3a, 0x80, 0xfe, 0x7b, 0xba, 0x16, 0x72,
0xd4, 0x00, 0x70, 0xe0, 0x40, 0x63, 0xa3, 0xc1,
0x40, 0x88, 0xc9, 0x64, 0x32, 0xa9, 0xaa, 0xc1,
0x20, 0x08, 0x82, 0xc0, 0x30, 0x84, 0x8c, 0x8c,
0x8c, 0x8c, 0x28, 0x8a, 0xa2, 0xc8, 0xb2, 0x2c,
0x2b, 0x0a, 0x21, 0x9a, 0x09, 0x59, 0xde, 0xbf,
0xbf, 0xae, 0x4e, 0x14, 0x79, 0xbe, 0xb8, 0xb8,
0xb8, 0x58, 0x51, 0xec, 0xf6, 0xd1, 0x51, 0xaf,
0x57, 0x14, 0xbd, 0xde, 0xcf, 0x9f, 0x47, 0x47,
0x81, 0xa1, 0xa1, 0x4b, 0x97, 0x6e, 0xdc, 0x00,
0x66, 0x66, 0xb2, 0x23, 0x98, 0x69, 0x48, 0xd7,
0x6c, 0xa0, 0xd9, 0x91, 0xcf, 0xb3, 0x02, 0xf9,
0x52, 0x2a, 0x57, 0x8a, 0x65, 0xef, 0x3a, 0xf9,
0x9e, 0xb3, 0x8b, 0x52, 0xd7, 0x6c, 0xa0, 0xd9,
0xc5, 0xfb, 0x9f, 0x69, 0xff, 0x00, 0xcd, 0x22,
0xea, 0x2d, 0xd8, 0x5b, 0x2a, 0x93, 0x00, 0x00,
0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42,
0x60, 0x82};

View File

@@ -1,197 +0,0 @@
/* folder.png - 498 bytes */
static const unsigned char folder_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9,
0x43, 0xbb, 0x7f, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd5, 0x0b, 0x0a, 0x12, 0x39, 0x0d, 0xf9,
0xdd, 0x70, 0x50, 0x00, 0x00, 0x01, 0x7f, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0xa5, 0x91, 0x4d,
0x88, 0x52, 0x51, 0x18, 0x86, 0x9f, 0x63, 0x2a,
0xfe, 0x40, 0xa6, 0x8b, 0x10, 0x5a, 0x04, 0x41,
0xb4, 0x0e, 0x82, 0x99, 0x20, 0x9a, 0xe5, 0x2c,
0xe3, 0x62, 0x11, 0xb4, 0xa9, 0x88, 0x20, 0x88,
0xfe, 0x98, 0xdd, 0x6c, 0x66, 0xb6, 0xb3, 0x08,
0xa2, 0x5d, 0x50, 0x33, 0xce, 0x2a, 0x44, 0xa4,
0x65, 0x49, 0x50, 0xb6, 0x6c, 0x17, 0x18, 0x46,
0x9b, 0x88, 0x22, 0x28, 0x05, 0x0b, 0xb1, 0x7b,
0x8f, 0x47, 0xcf, 0xfd, 0x66, 0x71, 0xed, 0x0a,
0xe2, 0x05, 0xcd, 0x97, 0x0f, 0x0e, 0x9c, 0xc3,
0xf7, 0xbc, 0x2f, 0xef, 0x51, 0x97, 0x2e, 0x97,
0xb6, 0x8a, 0xc5, 0xe2, 0x36, 0x53, 0x32, 0xc6,
0x04, 0xe7, 0xc0, 0xdc, 0xda, 0xdb, 0xdd, 0x7f,
0x42, 0x84, 0xd4, 0x9d, 0x7b, 0xb7, 0xe5, 0xfa,
0xd5, 0x1b, 0x33, 0x1f, 0xb5, 0xf6, 0x78, 0xb6,
0xf7, 0x94, 0x5e, 0xaf, 0x77, 0xa5, 0x5a, 0xa9,
0x3d, 0x8f, 0x04, 0x94, 0x9c, 0x8b, 0xb4, 0x3e,
0xb5, 0xa2, 0x4c, 0x78, 0xdb, 0x78, 0x33, 0x7d,
0xf5, 0xa8, 0x5a, 0xa9, 0x3d, 0x00, 0x88, 0x03,
0xa4, 0xd3, 0x19, 0x8e, 0xe4, 0xf2, 0x91, 0x00,
0xe7, 0x42, 0x29, 0x70, 0x53, 0x0a, 0xa5, 0x14,
0xb5, 0x17, 0xd5, 0xfb, 0x40, 0x00, 0x30, 0xc6,
0xe0, 0x79, 0x2e, 0xaf, 0x3f, 0xf6, 0x69, 0x76,
0x32, 0xcc, 0xa5, 0xc3, 0x0e, 0x67, 0x6e, 0x3a,
0x52, 0x48, 0xe9, 0xcf, 0x61, 0x82, 0x66, 0x27,
0xc3, 0xe3, 0x8d, 0x75, 0xb4, 0xb1, 0x73, 0x31,
0x52, 0xc9, 0x43, 0xdc, 0x7d, 0x58, 0x3f, 0x15,
0x07, 0xf0, 0x3c, 0x17, 0x80, 0x9f, 0xbf, 0x35,
0x5f, 0xda, 0x7f, 0xe7, 0x02, 0x9c, 0x38, 0x9a,
0x05, 0x20, 0xa6, 0xb5, 0x26, 0x9d, 0x9e, 0x33,
0xfa, 0x0c, 0xc5, 0x5c, 0xd7, 0x0d, 0x13, 0xfc,
0x17, 0xe0, 0x5f, 0x07, 0x4b, 0x01, 0x16, 0x4d,
0x60, 0xad, 0x8f, 0x1e, 0x06, 0x65, 0x87, 0xbf,
0x90, 0x88, 0xf9, 0x08, 0x20, 0x22, 0x28, 0xa5,
0x10, 0x11, 0x44, 0xc0, 0x17, 0xc1, 0x5a, 0x61,
0x68, 0x7d, 0xcc, 0x48, 0x18, 0x8c, 0x2c, 0x43,
0x2b, 0xe4, 0xb2, 0xc9, 0x09, 0xc0, 0xf3, 0x5c,
0x8e, 0xe7, 0x06, 0x74, 0xfb, 0x86, 0x1f, 0x5d,
0x0f, 0x44, 0xe1, 0x23, 0x8c, 0x07, 0x11, 0x10,
0x04, 0x91, 0x31, 0x18, 0x18, 0x59, 0x99, 0x00,
0x7e, 0x75, 0xda, 0x9c, 0x3e, 0x7b, 0x8e, 0x0f,
0x5f, 0xff, 0x8c, 0x97, 0x02, 0x77, 0x11, 0xf0,
0x11, 0x04, 0x05, 0x22, 0x61, 0xaa, 0x95, 0x93,
0x05, 0xea, 0x2f, 0x5f, 0x91, 0xd7, 0xdf, 0xcb,
0xea, 0xfc, 0xb5, 0x9d, 0x86, 0x9b, 0x38, 0xb6,
0xb6, 0x68, 0x79, 0xd9, 0xe1, 0xb7, 0xf7, 0xef,
0xca, 0x9b, 0xab, 0x2c, 0xab, 0x03, 0xc2, 0x87,
0xb4, 0xca, 0xa7, 0xb0, 0xe2, 0xf8, 0x00, 0x00,
0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42,
0x60, 0x82};
/* folder.png - 1019 bytes */
static const unsigned char folder_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9,
0x43, 0xbb, 0x7f, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x03,
0x86, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xed,
0x57, 0xcd, 0x4b, 0x1b, 0x41, 0x14, 0x7f, 0x3b,
0x9b, 0x68, 0x22, 0x46, 0x8a, 0x8a, 0xa0, 0x05,
0x7b, 0x4f, 0xed, 0xc9, 0x42, 0xb1, 0x20, 0xfa,
0x67, 0xf4, 0xaa, 0x12, 0x24, 0x88, 0x44, 0x2f,
0xbd, 0xb4, 0x16, 0x0a, 0x3d, 0xb5, 0xb4, 0x9e,
0x64, 0xb5, 0x22, 0x08, 0x8a, 0xf8, 0x41, 0xcf,
0xde, 0x5a, 0x0f, 0x82, 0xa0, 0xf8, 0x95, 0x48,
0x89, 0xf1, 0xd0, 0x43, 0x5b, 0x13, 0x4d, 0x4d,
0x4c, 0x36, 0xd9, 0xec, 0xe7, 0x4c, 0x0f, 0xeb,
0xeb, 0x26, 0x9b, 0x6c, 0x35, 0xb4, 0xa8, 0x07,
0x7f, 0x97, 0x37, 0xef, 0xcd, 0xce, 0xcc, 0xfb,
0xbd, 0xdf, 0xce, 0xbe, 0x04, 0xe0, 0x0e, 0x77,
0xf8, 0x27, 0x70, 0xf6, 0xc0, 0xc8, 0xc8, 0xe8,
0x68, 0x28, 0xf4, 0xfa, 0xb5, 0x61, 0x50, 0xaa,
0xeb, 0xaf, 0x5e, 0x5d, 0xb6, 0x81, 0xaa, 0xaa,
0xaa, 0xaa, 0x5a, 0x3e, 0xa5, 0x86, 0x41, 0xe9,
0xb3, 0x67, 0xd3, 0xd3, 0x1f, 0x3f, 0xce, 0xcc,
0x2c, 0x2d, 0x5d, 0x3b, 0x81, 0xe1, 0xe1, 0x50,
0x68, 0x68, 0x88, 0xb1, 0x81, 0x81, 0xbe, 0xbe,
0x40, 0xa0, 0xfa, 0x0d, 0x05, 0x61, 0x6a, 0x6a,
0x62, 0x02, 0x20, 0x95, 0x4a, 0xa5, 0x52, 0xa9,
0xc7, 0x8f, 0x57, 0x56, 0x96, 0x96, 0x3e, 0x7d,
0xda, 0xde, 0xbe, 0x76, 0x02, 0x5d, 0x5d, 0x4f,
0x9e, 0x3c, 0x7d, 0x0a, 0x90, 0x48, 0x24, 0x12,
0x89, 0x44, 0xf5, 0x1b, 0xef, 0xee, 0xee, 0xef,
0xef, 0xec, 0x00, 0x68, 0x9a, 0xa6, 0x69, 0x1a,
0x00, 0x63, 0x8c, 0x31, 0x56, 0x6e, 0x11, 0x4d,
0x4d, 0x8d, 0x8d, 0xcd, 0xcd, 0xcf, 0x9f, 0x4f,
0x4e, 0x0a, 0xc2, 0xd4, 0xd4, 0xbb, 0x77, 0x57,
0x3d, 0xc7, 0xe5, 0x34, 0xe1, 0xf7, 0xfb, 0xfd,
0x0f, 0x1f, 0x02, 0x10, 0x42, 0x08, 0xcf, 0x57,
0x4f, 0xa0, 0xad, 0xad, 0xad, 0xed, 0xfe, 0x7d,
0xe7, 0x79, 0x42, 0x08, 0x21, 0x04, 0x80, 0xe7,
0x79, 0x9e, 0xe7, 0x01, 0x16, 0x17, 0x97, 0x97,
0x17, 0x16, 0xde, 0xbe, 0x0d, 0x06, 0x83, 0xc1,
0x60, 0x70, 0x72, 0x52, 0x10, 0x04, 0x41, 0x10,
0x44, 0xb1, 0x6a, 0x05, 0x06, 0x07, 0x83, 0xc1,
0x40, 0x80, 0xb1, 0x9e, 0x9e, 0xee, 0xee, 0xde,
0x5e, 0x80, 0xcf, 0x9f, 0x63, 0x31, 0xc6, 0x00,
0xf6, 0xf6, 0x7e, 0xfe, 0xac, 0x9e, 0xc6, 0xff,
0x83, 0xdb, 0xad, 0x69, 0x67, 0x67, 0x6f, 0xde,
0x6c, 0x6c, 0xcc, 0xce, 0x86, 0x42, 0x63, 0x63,
0x18, 0x77, 0x54, 0xa0, 0xa3, 0xa3, 0xa3, 0xe3,
0xd1, 0x23, 0x80, 0x0f, 0x1f, 0xbe, 0x7c, 0x09,
0x87, 0x01, 0x5e, 0xbc, 0xe8, 0xef, 0xef, 0xe9,
0x01, 0x90, 0x65, 0x4d, 0x33, 0x8c, 0xeb, 0x27,
0xf0, 0xfe, 0xfd, 0xdc, 0xdc, 0xfa, 0xfa, 0xcb,
0x97, 0xa6, 0x77, 0x05, 0x02, 0x07, 0x07, 0x07,
0x07, 0x91, 0x88, 0xe5, 0xa7, 0xd3, 0xf9, 0xbc,
0xaa, 0x02, 0x24, 0x93, 0xd9, 0xac, 0xa2, 0x5c,
0x5f, 0xe2, 0xed, 0xed, 0xcd, 0xcd, 0x75, 0x75,
0xce, 0xf3, 0xc4, 0x1e, 0x90, 0x65, 0x59, 0x96,
0x65, 0x4b, 0x81, 0x9b, 0x46, 0xa1, 0xa0, 0xaa,
0x7f, 0x53, 0x9c, 0x38, 0x4d, 0xd8, 0x15, 0xb8,
0xad, 0x28, 0x23, 0x20, 0x49, 0x92, 0x24, 0x49,
0xb7, 0x49, 0x81, 0x42, 0xa1, 0x50, 0x40, 0xef,
0xe8, 0xe8, 0x52, 0x02, 0x88, 0xdb, 0xa2, 0x40,
0x26, 0x93, 0xc9, 0x64, 0x32, 0x00, 0x84, 0xe8,
0x7a, 0x36, 0x9b, 0xcb, 0x5d, 0x99, 0x80, 0x5d,
0x01, 0xaf, 0xb7, 0xa6, 0xa6, 0x52, 0x3f, 0xc0,
0x66, 0x54, 0xdc, 0xa0, 0x00, 0x00, 0x28, 0x35,
0x47, 0x94, 0x52, 0x6a, 0xfa, 0x94, 0xa2, 0xcf,
0x18, 0x80, 0x61, 0x94, 0x5a, 0x5d, 0xaf, 0x6c,
0x25, 0x49, 0x96, 0x15, 0x05, 0x80, 0x10, 0xc6,
0x0c, 0x23, 0x16, 0xb3, 0x9f, 0x6f, 0xfb, 0x0a,
0x71, 0x7f, 0xfa, 0x82, 0x5d, 0x01, 0x5d, 0x37,
0x0c, 0x4a, 0x01, 0x14, 0x45, 0xd7, 0xcd, 0x94,
0xcc, 0x44, 0x8b, 0x09, 0xe0, 0x0e, 0x26, 0x11,
0xdc, 0xcb, 0xea, 0xb8, 0x66, 0x1c, 0x4f, 0xc1,
0x28, 0xc7, 0xe1, 0x4e, 0xd6, 0x5a, 0x80, 0xfa,
0x7a, 0x8f, 0xc7, 0xe5, 0x02, 0x38, 0x3d, 0x4d,
0xa7, 0xd3, 0x69, 0x4d, 0x23, 0xc4, 0x30, 0x24,
0x29, 0x9f, 0xbf, 0xa8, 0xfb, 0x45, 0xe1, 0x29,
0x75, 0x24, 0x80, 0x0a, 0x74, 0x76, 0x46, 0xa3,
0x9b, 0x9b, 0x00, 0x84, 0xf0, 0x3c, 0x21, 0x00,
0x8a, 0xa2, 0x69, 0x94, 0x16, 0xa7, 0x65, 0x25,
0x5a, 0x9c, 0xd6, 0x65, 0x09, 0x16, 0x13, 0xaa,
0xa4, 0x69, 0x63, 0xa3, 0xcf, 0x47, 0x08, 0xc0,
0xc9, 0xc9, 0xaf, 0x5f, 0xd9, 0x2c, 0xc7, 0x11,
0x22, 0xcb, 0xc9, 0xe4, 0xda, 0xda, 0x45, 0xdd,
0x2f, 0xf2, 0x56, 0x55, 0x1b, 0x01, 0xb7, 0x1b,
0x47, 0x91, 0xc8, 0xd7, 0xaf, 0xd1, 0x28, 0x40,
0x43, 0xc3, 0xbd, 0x7b, 0x2d, 0x2d, 0x00, 0x89,
0xc4, 0xf9, 0xb9, 0xa2, 0x00, 0xc8, 0x72, 0xa9,
0x02, 0xf6, 0x74, 0xcb, 0x89, 0x38, 0x8d, 0xad,
0x51, 0x71, 0x09, 0x7c, 0x3e, 0xaf, 0xd7, 0xe5,
0xb2, 0x0a, 0x95, 0x4c, 0x9e, 0x9f, 0x8b, 0xa2,
0x61, 0xb8, 0x5c, 0x67, 0x67, 0x5b, 0x5b, 0xb8,
0xa2, 0xa6, 0xc6, 0x81, 0x80, 0xd5, 0x32, 0x3c,
0x9e, 0xd6, 0x56, 0xbf, 0x1f, 0xe0, 0xc1, 0x03,
0x9f, 0x8f, 0xe7, 0x01, 0xa2, 0xd1, 0x78, 0x3c,
0x9f, 0xb7, 0x0e, 0x33, 0x49, 0x54, 0xa6, 0x60,
0x8f, 0x97, 0xbe, 0x3a, 0xc5, 0xda, 0x98, 0xe3,
0xe2, 0x82, 0xd4, 0xd6, 0xba, 0xdd, 0x94, 0x02,
0xfc, 0xf8, 0x71, 0x74, 0x74, 0x78, 0xc8, 0x98,
0x28, 0x8a, 0x62, 0x3e, 0x2f, 0x8a, 0xdf, 0xbf,
0x47, 0xa3, 0xb1, 0x18, 0x5e, 0x62, 0xaf, 0xd7,
0xb4, 0xb9, 0x9c, 0x8d, 0x40, 0xa1, 0x10, 0x0e,
0x87, 0xc3, 0x91, 0x48, 0x20, 0xf0, 0xed, 0xdb,
0xfc, 0xfc, 0xde, 0xde, 0xf4, 0x34, 0xdc, 0x28,
0x38, 0x2e, 0x97, 0x3b, 0x3c, 0x5c, 0x5d, 0x1d,
0x1f, 0x8f, 0xc7, 0x8f, 0x8f, 0xe3, 0xf1, 0xe3,
0xe3, 0xb2, 0x27, 0x4a, 0x5d, 0xfc, 0xce, 0x78,
0x3c, 0xa6, 0xf5, 0xf9, 0x4a, 0x19, 0x63, 0x1c,
0x25, 0xc4, 0xcb, 0x84, 0xb5, 0xb5, 0xd7, 0xb8,
0x3c, 0xa1, 0xca, 0xcf, 0xa1, 0xc5, 0x9e, 0x8b,
0x16, 0xff, 0x2a, 0xa1, 0xc5, 0x8e, 0x90, 0xcd,
0xa2, 0xcf, 0x55, 0x3e, 0x00, 0x89, 0xe0, 0x65,
0x41, 0x8b, 0x77, 0xc4, 0x9e, 0xb8, 0x7d, 0xbd,
0x9d, 0x80, 0xd3, 0x73, 0x08, 0x7c, 0x21, 0x71,
0x1d, 0xfa, 0xba, 0x5e, 0xd9, 0xe2, 0xfc, 0x4d,
0xfc, 0xac, 0xbc, 0x43, 0x29, 0x7e, 0x03, 0xc4,
0x0c, 0x3e, 0x03, 0x1d, 0xa3, 0x8f, 0xcb, 0x00,
0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae,
0x42, 0x60, 0x82};

View File

@@ -1,251 +0,0 @@
/* folder_new.png - 635 bytes */
static const unsigned char folder_new_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9,
0x43, 0xbb, 0x7f, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
0x07, 0xd5, 0x0b, 0x11, 0x0f, 0x07, 0x00, 0x55,
0x4f, 0xf7, 0x2d, 0x00, 0x00, 0x02, 0x08, 0x49,
0x44, 0x41, 0x54, 0x38, 0xcb, 0xa5, 0x90, 0x3d,
0x68, 0x53, 0x61, 0x14, 0x86, 0x9f, 0xef, 0xf6,
0xde, 0x96, 0x7b, 0x53, 0x49, 0xdb, 0xb4, 0x24,
0xa4, 0xb5, 0x0a, 0x56, 0x5c, 0x15, 0x07, 0x15,
0xfc, 0x9d, 0xc4, 0xc9, 0x4a, 0x14, 0x45, 0x07,
0x15, 0x17, 0x41, 0xc4, 0xc1, 0x4d, 0x10, 0x5d,
0x9d, 0x04, 0x11, 0x41, 0x50, 0x5b, 0x27, 0x11,
0x71, 0x70, 0xb2, 0x45, 0xb0, 0x95, 0x2e, 0xba,
0xd4, 0x40, 0x25, 0x0e, 0x2d, 0x41, 0x2d, 0x42,
0xdb, 0x68, 0xab, 0x21, 0xbd, 0xf7, 0xe6, 0xbb,
0x3f, 0xc7, 0x21, 0x21, 0xad, 0xa5, 0x41, 0xc5,
0x87, 0x0f, 0xbe, 0xe1, 0x9c, 0xf3, 0x9e, 0xf7,
0xbc, 0xea, 0xc4, 0xc9, 0xdc, 0x8d, 0x4c, 0x26,
0x73, 0x93, 0x35, 0x68, 0xad, 0x6b, 0x7f, 0x55,
0x5f, 0x1c, 0x7a, 0xf4, 0xf8, 0x3e, 0x4d, 0x50,
0x97, 0xaf, 0x5c, 0x92, 0xf3, 0x67, 0x2f, 0xac,
0x5b, 0xf4, 0x7d, 0x8f, 0x87, 0x43, 0x0f, 0x28,
0x97, 0xcb, 0xa7, 0x9f, 0x3d, 0x7d, 0xfe, 0x24,
0x9c, 0x3f, 0xaa, 0x00, 0x0b, 0x08, 0xcc, 0xf4,
0x0b, 0x69, 0x08, 0xe4, 0x8e, 0x1d, 0xa7, 0xf0,
0xb1, 0xd0, 0x6c, 0x09, 0x63, 0xe3, 0xaf, 0x69,
0x31, 0x84, 0xde, 0x0c, 0x0c, 0x6c, 0x16, 0xfa,
0x32, 0x32, 0x76, 0xe4, 0xa0, 0x5c, 0x07, 0xde,
0x9b, 0x00, 0xb6, 0xed, 0xd0, 0x91, 0xec, 0x6c,
0x2a, 0x90, 0x1b, 0x1c, 0xa4, 0xbb, 0xe3, 0x1b,
0x03, 0x1b, 0x67, 0xe9, 0x48, 0xf5, 0x10, 0x84,
0xd6, 0xa1, 0xd8, 0x28, 0xde, 0x55, 0xf1, 0xdc,
0x6d, 0x53, 0x6b, 0x8d, 0xe7, 0xb9, 0xbc, 0xfa,
0x50, 0x61, 0xaa, 0xe4, 0xac, 0x33, 0x2e, 0x0c,
0xa4, 0x7f, 0x72, 0x66, 0x5f, 0x11, 0xab, 0xbd,
0x17, 0xc3, 0x3e, 0x85, 0x63, 0x76, 0xb1, 0xec,
0x4d, 0x6c, 0x2f, 0x7e, 0x1e, 0xbd, 0xd7, 0x70,
0x30, 0x55, 0x72, 0xb8, 0x73, 0xf5, 0x30, 0xbe,
0x8e, 0x7e, 0x0f, 0x89, 0x90, 0x64, 0xeb, 0x34,
0x59, 0xbb, 0x84, 0xed, 0x64, 0x69, 0x31, 0x53,
0x28, 0x65, 0x60, 0x99, 0x36, 0xa1, 0x48, 0xc2,
0x04, 0xf0, 0x3c, 0x17, 0x80, 0xb9, 0x25, 0x9f,
0xe2, 0xc2, 0xf2, 0x1a, 0x81, 0x98, 0x94, 0x03,
0x41, 0xf7, 0x06, 0xb2, 0xd1, 0x34, 0xed, 0x6a,
0x02, 0xcb, 0xda, 0x46, 0xa8, 0x27, 0x29, 0xce,
0xb5, 0x62, 0xfa, 0xbe, 0x8f, 0x6d, 0x3b, 0x4d,
0xef, 0x17, 0x0c, 0x96, 0xbc, 0x1e, 0x0a, 0xa5,
0x9d, 0x54, 0xf4, 0x0c, 0xfd, 0xfa, 0x2d, 0x76,
0x5b, 0x1e, 0x37, 0x48, 0x30, 0x92, 0xef, 0xc7,
0x74, 0x5d, 0xb7, 0xe1, 0xa0, 0x19, 0x91, 0x98,
0x7c, 0xf7, 0xd2, 0x54, 0x74, 0x92, 0xd9, 0xf2,
0x16, 0xda, 0x5a, 0x7c, 0x92, 0xed, 0x7d, 0xcc,
0xcc, 0x4f, 0xd2, 0xc8, 0xe0, 0xcf, 0x18, 0x54,
0x23, 0x87, 0xaa, 0x5b, 0xeb, 0x6d, 0xb3, 0x6d,
0xaa, 0x81, 0x89, 0xb1, 0x3a, 0x83, 0xbf, 0x25,
0x8a, 0x62, 0xfc, 0x40, 0x00, 0x56, 0x1c, 0x58,
0x46, 0x8c, 0x00, 0x22, 0x82, 0x52, 0x0a, 0x11,
0x41, 0x04, 0x62, 0x11, 0xa2, 0x48, 0x08, 0xa2,
0x18, 0x1d, 0x0a, 0xd5, 0x30, 0x22, 0x88, 0x84,
0x64, 0xa2, 0x75, 0x45, 0xc0, 0xf3, 0x5c, 0x36,
0x25, 0xab, 0x2c, 0x56, 0x34, 0x5f, 0x17, 0x3d,
0x10, 0x45, 0x8c, 0x50, 0x7f, 0x88, 0x80, 0x20,
0x88, 0xd4, 0x85, 0x81, 0x30, 0x5a, 0xe5, 0x60,
0xbe, 0xb4, 0xc0, 0x8e, 0x3d, 0x7b, 0xc9, 0x7f,
0xfa, 0x51, 0x1f, 0xaa, 0x6d, 0x17, 0x81, 0x18,
0x41, 0x50, 0x20, 0xd2, 0x70, 0xb5, 0x6b, 0x6b,
0x17, 0xa3, 0x2f, 0x47, 0xe8, 0xf4, 0x67, 0x87,
0xd5, 0xfe, 0x73, 0xb7, 0xc6, 0x5d, 0xab, 0xf7,
0x00, 0xff, 0x48, 0x22, 0xf8, 0xf2, 0xee, 0xcd,
0xf0, 0xb5, 0xdd, 0xfc, 0x2f, 0xbf, 0x00, 0x5c,
0xb6, 0xf8, 0x8a, 0x37, 0xe1, 0x9a, 0xa9, 0x00,
0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae,
0x42, 0x60, 0x82};
/* folder_new.png - 1316 bytes */
static const unsigned char folder_new_24x24_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x10, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xe7, 0xe1,
0xbb, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9,
0x43, 0xbb, 0x7f, 0x00, 0x00, 0x00, 0x09, 0x70,
0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67,
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
0x00, 0x78, 0x4c, 0xa5, 0xa6, 0x00, 0x00, 0x04,
0xaf, 0x49, 0x44, 0x41, 0x54, 0x58, 0xc3, 0xed,
0x57, 0x4b, 0x6b, 0x53, 0x4d, 0x18, 0x7e, 0xce,
0x9c, 0x49, 0x9a, 0xc4, 0xa6, 0x37, 0x6d, 0x4b,
0x2b, 0x54, 0x21, 0x42, 0xa1, 0xd6, 0x85, 0xa6,
0x20, 0x16, 0x44, 0xff, 0x81, 0x3b, 0x29, 0xb8,
0xf2, 0xd2, 0x95, 0x48, 0xed, 0x5a, 0x28, 0xf8,
0x07, 0xcc, 0x4a, 0x44, 0x8b, 0x3b, 0x37, 0x41,
0x5c, 0xe8, 0x46, 0x57, 0x2a, 0x64, 0x21, 0x28,
0xd6, 0xda, 0x1b, 0x49, 0xeb, 0x05, 0x69, 0x6d,
0x4e, 0x92, 0xe6, 0xd2, 0x5c, 0x4e, 0x4e, 0xce,
0x65, 0xe6, 0x5b, 0x9c, 0x4e, 0x93, 0x9e, 0x24,
0xf4, 0x8b, 0x97, 0xef, 0xdb, 0xf4, 0xdd, 0xbc,
0xf3, 0xce, 0x9c, 0x79, 0xe7, 0x79, 0xde, 0x4b,
0x66, 0x02, 0x1c, 0xc8, 0x81, 0xfc, 0x96, 0x48,
0xce, 0x89, 0xdb, 0xb7, 0xa7, 0xa7, 0xa7, 0xa6,
0xee, 0xde, 0xb5, 0x2c, 0xc6, 0x4c, 0x73, 0x66,
0x66, 0x3f, 0x07, 0xba, 0xae, 0xeb, 0xba, 0x5e,
0xb5, 0x19, 0xb3, 0x2c, 0xc6, 0x26, 0x26, 0x66,
0x67, 0x1f, 0x3d, 0x7a, 0xfc, 0x38, 0x1c, 0xfe,
0xcf, 0x09, 0xdc, 0xba, 0x35, 0x35, 0x75, 0xf3,
0x26, 0xe7, 0xd7, 0xaf, 0x5f, 0xbd, 0x3a, 0x39,
0xd9, 0xba, 0xc3, 0x07, 0x0f, 0x1e, 0x3e, 0xbc,
0x7f, 0x1f, 0xc8, 0x64, 0x32, 0x99, 0x4c, 0x66,
0x6c, 0xec, 0xe9, 0xd3, 0x70, 0xf8, 0xd9, 0xb3,
0x8f, 0x1f, 0xf7, 0xdb, 0x67, 0x9a, 0x89, 0xc4,
0xa5, 0x4b, 0xd2, 0x0e, 0x1e, 0x97, 0xcb, 0xd6,
0x86, 0x41, 0x69, 0x7f, 0xff, 0xf3, 0xe7, 0x9c,
0xb7, 0x4c, 0xe0, 0xdc, 0xb9, 0xb3, 0x67, 0xc7,
0xc7, 0x01, 0x45, 0x51, 0x14, 0x45, 0x69, 0x9d,
0xc8, 0xa7, 0x4f, 0x9f, 0x3f, 0xcf, 0xcd, 0x01,
0x86, 0x61, 0x18, 0x86, 0x01, 0x70, 0xce, 0x39,
0xe7, 0xf5, 0x5a, 0x96, 0x09, 0xe1, 0x1c, 0xb8,
0x78, 0x71, 0x7c, 0xdc, 0xef, 0x0f, 0x85, 0x6e,
0xdc, 0xb8, 0x7c, 0x39, 0x97, 0x8b, 0x46, 0x6d,
0x2f, 0x6e, 0xb7, 0xf0, 0x26, 0xb4, 0x4d, 0x48,
0x55, 0xc5, 0x39, 0xb4, 0x19, 0x80, 0x91, 0x91,
0x91, 0x91, 0x93, 0x27, 0x01, 0x42, 0x08, 0x91,
0xe5, 0xd6, 0x09, 0x0c, 0x0e, 0x0e, 0x0e, 0x1e,
0x3d, 0xda, 0x7c, 0x5d, 0x96, 0x65, 0x99, 0x73,
0xa0, 0xaf, 0xaf, 0xbb, 0x3b, 0x9d, 0x06, 0x5c,
0x2e, 0xc6, 0x22, 0x91, 0xe9, 0x69, 0x5d, 0x97,
0xe5, 0xb1, 0xb1, 0x54, 0x0a, 0x90, 0xa4, 0x8e,
0x0e, 0x4a, 0x29, 0x65, 0x2c, 0x16, 0xfb, 0xf1,
0x43, 0x92, 0x18, 0x53, 0x94, 0x50, 0xc8, 0xce,
0x54, 0x38, 0x6c, 0x13, 0xa9, 0x54, 0xea, 0x08,
0x88, 0x9a, 0x5e, 0x59, 0x59, 0x59, 0x59, 0x5e,
0x06, 0x5e, 0xbf, 0x5e, 0x5d, 0xe5, 0x1c, 0x98,
0x9f, 0xff, 0xf9, 0xb3, 0x75, 0x1a, 0x8d, 0x85,
0x73, 0xe0, 0xc4, 0x89, 0xfe, 0xfe, 0xed, 0x6d,
0xe0, 0xca, 0x95, 0xf3, 0xe7, 0x63, 0x31, 0xe0,
0xcc, 0x99, 0xe1, 0xe1, 0xd3, 0xa7, 0x01, 0xd3,
0xa4, 0x74, 0x62, 0xa2, 0xb7, 0x57, 0x96, 0x29,
0xed, 0xe9, 0x01, 0x4a, 0xa5, 0x72, 0x39, 0x12,
0xe9, 0xee, 0x4e, 0x26, 0x13, 0x89, 0x17, 0x2f,
0x66, 0x66, 0x02, 0x81, 0xfe, 0x7e, 0x45, 0x11,
0x25, 0xb9, 0xbc, 0xdc, 0x34, 0x03, 0xa3, 0xa3,
0xa3, 0xa3, 0xa7, 0x4e, 0x01, 0xf7, 0xee, 0xbd,
0x79, 0xb3, 0xb0, 0x00, 0xdc, 0xb9, 0x73, 0xed,
0xda, 0x85, 0x0b, 0x80, 0xa6, 0x19, 0x86, 0x65,
0xfd, 0x3a, 0x78, 0x42, 0x00, 0xd3, 0x04, 0x8e,
0x1c, 0xf1, 0xf9, 0xbe, 0x7e, 0x05, 0x02, 0x81,
0xae, 0x2e, 0x45, 0x01, 0x7c, 0x3e, 0xaf, 0x77,
0x60, 0x00, 0x90, 0x65, 0x4a, 0x0f, 0x1f, 0x06,
0x24, 0x49, 0x92, 0x08, 0x01, 0x28, 0x95, 0x65,
0xaf, 0x17, 0xc8, 0xe5, 0xca, 0x65, 0xb7, 0x3b,
0x10, 0xb0, 0xbd, 0x74, 0x76, 0x0a, 0x7f, 0x4d,
0x09, 0x2c, 0x2d, 0x2d, 0x2d, 0x2d, 0x2e, 0x56,
0xed, 0x6c, 0xb6, 0x54, 0xd2, 0x75, 0x20, 0x95,
0xca, 0xe7, 0x2b, 0x95, 0x5f, 0x27, 0x20, 0x49,
0x00, 0x63, 0x40, 0xb1, 0xe8, 0xf3, 0x51, 0x0a,
0x1c, 0x3a, 0x44, 0x48, 0x67, 0x27, 0x40, 0x88,
0x24, 0xad, 0xad, 0x01, 0x7e, 0xbf, 0x2c, 0x47,
0x22, 0x80, 0xcb, 0xe5, 0x72, 0x0d, 0x0f, 0x03,
0xa6, 0x69, 0x18, 0x73, 0x73, 0xc0, 0xb7, 0x6f,
0x8a, 0xe2, 0x76, 0x03, 0xc1, 0xe0, 0xf1, 0xe3,
0x40, 0x26, 0xb3, 0x1b, 0x10, 0xe7, 0x01, 0x9a,
0xa6, 0x69, 0x9a, 0x56, 0xcd, 0xc0, 0x9f, 0x16,
0xce, 0xed, 0x2c, 0x64, 0xb3, 0xe5, 0x72, 0x6f,
0x2f, 0xb0, 0xbc, 0x9c, 0x4c, 0x06, 0x83, 0x40,
0x2c, 0x96, 0x4a, 0x0d, 0x0d, 0x01, 0xa9, 0xd4,
0xd6, 0xd6, 0xbb, 0x77, 0x40, 0x2e, 0x97, 0xc9,
0x84, 0xc3, 0xc0, 0xc6, 0x46, 0x3a, 0x4d, 0x08,
0xf0, 0xea, 0xd5, 0xfc, 0xfc, 0xd0, 0x90, 0xf0,
0xb2, 0xb9, 0xd9, 0x72, 0x06, 0xfe, 0xb4, 0x58,
0x16, 0xe7, 0x94, 0x02, 0x5b, 0x5b, 0xaa, 0xda,
0xd7, 0x07, 0x14, 0x8b, 0xba, 0xde, 0xd1, 0x01,
0xac, 0xaf, 0xe7, 0x72, 0x81, 0x00, 0xd0, 0xd6,
0x46, 0x69, 0xb9, 0x6c, 0x97, 0xd4, 0xc0, 0x00,
0xf0, 0xe5, 0x4b, 0x22, 0x51, 0xc5, 0x53, 0x28,
0x34, 0x25, 0xa0, 0xaa, 0xaa, 0xaa, 0xaa, 0xb5,
0x19, 0xb0, 0x7b, 0xe0, 0x6f, 0x0a, 0x21, 0x80,
0xa6, 0x99, 0xa6, 0xcf, 0x57, 0xd5, 0x42, 0xda,
0xdb, 0x5d, 0x2e, 0xd3, 0x04, 0x2a, 0x15, 0xc3,
0xa0, 0x74, 0x6d, 0xcd, 0x79, 0x2f, 0x90, 0x66,
0x4e, 0xff, 0x76, 0x06, 0xfe, 0xad, 0x6c, 0x6f,
0x6f, 0x6f, 0x17, 0x0a, 0x00, 0x21, 0xa6, 0x99,
0xcf, 0x17, 0x8b, 0x75, 0xe4, 0x9b, 0x6d, 0x74,
0xf6, 0x80, 0xd7, 0xeb, 0x76, 0x37, 0xba, 0x0f,
0x44, 0x2c, 0x6a, 0x2f, 0x28, 0x00, 0x60, 0xcc,
0x1e, 0x31, 0xc6, 0x98, 0x6d, 0x33, 0x26, 0x6c,
0xce, 0x01, 0xcb, 0xda, 0xab, 0x4d, 0xb3, 0xb1,
0x56, 0x55, 0x4d, 0xab, 0x54, 0x00, 0x42, 0x38,
0xb7, 0xac, 0xd5, 0x55, 0xe7, 0xf9, 0x8e, 0x12,
0x92, 0x76, 0x6f, 0x66, 0x67, 0x06, 0x4c, 0xd3,
0xb2, 0x18, 0x03, 0x2a, 0x15, 0xd3, 0xb4, 0x21,
0xd9, 0x40, 0x6b, 0x09, 0x08, 0x0f, 0x36, 0x11,
0xe1, 0x4b, 0xac, 0x88, 0x79, 0x71, 0x8a, 0x98,
0x95, 0x24, 0xe1, 0xa9, 0xba, 0x17, 0x68, 0x6f,
0xf7, 0x78, 0x28, 0x05, 0x92, 0xc9, 0x6c, 0x36,
0x9b, 0x35, 0x0c, 0x42, 0x2c, 0x4b, 0x55, 0x4b,
0xa5, 0x9d, 0xb8, 0xef, 0x04, 0x9e, 0xb1, 0xa6,
0x04, 0x44, 0x06, 0x82, 0xc1, 0x68, 0xf4, 0xfd,
0x7b, 0x80, 0x10, 0x59, 0x26, 0xc4, 0xae, 0x45,
0xc6, 0x6a, 0x61, 0x55, 0x81, 0xd6, 0xc2, 0xda,
0x0f, 0x60, 0x2d, 0xa1, 0x46, 0x39, 0xed, 0xe9,
0xf1, 0xfb, 0x09, 0x01, 0x12, 0x89, 0xad, 0xad,
0x7c, 0x5e, 0x92, 0x08, 0xd1, 0xb4, 0x54, 0xea,
0xed, 0xdb, 0x9d, 0xb8, 0xef, 0xe0, 0xd6, 0x75,
0x07, 0x01, 0xf1, 0x88, 0x02, 0x16, 0x17, 0x57,
0x56, 0xa2, 0x51, 0xa0, 0xa3, 0xa3, 0xab, 0xab,
0xaf, 0x0f, 0x50, 0x94, 0x5c, 0xae, 0x52, 0xb1,
0x9b, 0xac, 0x36, 0x03, 0x4e, 0xb8, 0xf5, 0x44,
0x9a, 0x8d, 0xab, 0xa3, 0xda, 0x10, 0xf8, 0xfd,
0x5e, 0x2f, 0xa5, 0xd5, 0x40, 0xa5, 0x52, 0xb9,
0x5c, 0xa1, 0x60, 0x59, 0x94, 0xa6, 0xd3, 0x1f,
0x3e, 0x88, 0x1d, 0xe2, 0x8d, 0x54, 0x47, 0xa0,
0xda, 0xff, 0x1e, 0xcf, 0xc0, 0xc0, 0xc8, 0x08,
0x70, 0xec, 0x98, 0xdf, 0x2f, 0xcb, 0x40, 0x34,
0x1a, 0x8f, 0x97, 0x4a, 0xd5, 0xc3, 0x6c, 0x12,
0x8d, 0x29, 0x38, 0xe7, 0xf7, 0x96, 0x4e, 0x6d,
0x6e, 0xec, 0x71, 0x6d, 0x40, 0xda, 0xda, 0x5c,
0x2e, 0xc6, 0x80, 0x8d, 0x8d, 0xb5, 0xb5, 0x58,
0x8c, 0xf3, 0x42, 0xa1, 0x50, 0x28, 0x95, 0x0a,
0x85, 0xf5, 0xf5, 0x68, 0x74, 0x75, 0x55, 0x34,
0xb1, 0xd7, 0x6b, 0xeb, 0x62, 0xd1, 0x41, 0xa0,
0x5c, 0x5e, 0x58, 0x58, 0x58, 0x58, 0x5c, 0x9c,
0x9c, 0xfc, 0xfe, 0xfd, 0xc9, 0x93, 0xf9, 0xf9,
0xd9, 0x59, 0xfc, 0xaf, 0x22, 0x49, 0xc5, 0x62,
0x2c, 0xf6, 0xf2, 0x65, 0x28, 0x14, 0x8f, 0x6f,
0x6e, 0xc6, 0xe3, 0xd5, 0x0b, 0x6c, 0xf7, 0x8b,
0xbd, 0xa6, 0xf8, 0x9d, 0xf1, 0x78, 0x6c, 0xed,
0xf7, 0xef, 0x65, 0x2c, 0xe6, 0x45, 0x0a, 0x45,
0x33, 0x89, 0xd8, 0x3a, 0x63, 0x5c, 0x0f, 0xa8,
0xf1, 0x77, 0x42, 0x8b, 0x57, 0x96, 0xd0, 0xe2,
0xaf, 0x92, 0xd0, 0xe5, 0xb2, 0xad, 0xf3, 0x79,
0x61, 0x4b, 0x8d, 0x0f, 0x10, 0x44, 0x44, 0xb3,
0x08, 0x2d, 0x7a, 0xc4, 0x09, 0xdc, 0xb9, 0xdf,
0x49, 0xa0, 0xd9, 0x77, 0x42, 0x44, 0x41, 0x8a,
0x7d, 0xc2, 0x36, 0xcd, 0xc6, 0x5a, 0xac, 0xff,
0xce, 0xb3, 0xf2, 0x40, 0xfe, 0x8c, 0xfc, 0x03,
0x43, 0x77, 0xd7, 0xb0, 0xfa, 0xd8, 0xe9, 0xe0,
0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44,
0xae, 0x42, 0x60, 0x82};

Some files were not shown because too many files have changed in this diff Show More