summaryrefslogtreecommitdiffstats
path: root/meta-gnome
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-06-10 11:07:02 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2009-06-10 11:07:02 +0100
commit5f37dfd98b624111d573bcdadfad0ee82c999cbe (patch)
tree76b32d8c557eff2d90889371a0d93c4217e386c9 /meta-gnome
parentd10060c3305a6c1307878f723cd7b28045ed2a2b (diff)
downloadpoky-5f37dfd98b624111d573bcdadfad0ee82c999cbe.tar.gz
Add meta-gnome overlay information for gnome packages which aren't part of standard Poky (based on OE.dev but with additions/modifications)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta-gnome')
-rw-r--r--meta-gnome/packages/gnome/files/acinclude.m490
-rw-r--r--meta-gnome/packages/gnome/files/gtk-doc.m453
-rw-r--r--meta-gnome/packages/gnome/files/gtk-doc.make148
-rw-r--r--meta-gnome/packages/gnome/files/tasn.m4161
-rw-r--r--meta-gnome/packages/gnome/gnome-desktop.inc16
-rw-r--r--meta-gnome/packages/gnome/gnome-desktop_2.26.0.bb8
-rw-r--r--meta-gnome/packages/gnome/gnome-doc-utils.inc16
-rw-r--r--meta-gnome/packages/gnome/gnome-doc-utils_0.12.0.bb3
-rw-r--r--meta-gnome/packages/gnome/libbonobo.inc64
-rw-r--r--meta-gnome/packages/gnome/libbonobo/configure-gthread.patch11
-rw-r--r--meta-gnome/packages/gnome/libbonobo_2.22.0.bb6
-rw-r--r--meta-gnome/packages/gnome/libbonoboui_2.18.0.bb59
-rw-r--r--meta-gnome/packages/gnome/libgnome_2.24.0.bb19
-rw-r--r--meta-gnome/packages/gnome/libgnomeui/gnome-stock-pixbufs.h4030
-rw-r--r--meta-gnome/packages/gnome/libgnomeui/no-pixbuf-csource.patch11
-rw-r--r--meta-gnome/packages/gnome/libgnomeui_2.24.0.bb24
-rw-r--r--meta-gnome/packages/gnome/orbit2-native_2.14.12.bb23
-rw-r--r--meta-gnome/packages/gnome/orbit2/configure-lossage.patch35
-rw-r--r--meta-gnome/packages/gnome/orbit2/pkgconfig-fix.patch12
-rw-r--r--meta-gnome/packages/gnome/orbit2_2.14.16.bb46
-rw-r--r--meta-gnome/packages/gthumb/gthumb_2.10.11.bb15
21 files changed, 4850 insertions, 0 deletions
diff --git a/meta-gnome/packages/gnome/files/acinclude.m4 b/meta-gnome/packages/gnome/files/acinclude.m4
new file mode 100644
index 0000000000..53518fb2eb
--- /dev/null
+++ b/meta-gnome/packages/gnome/files/acinclude.m4
@@ -0,0 +1,90 @@
1## this one is commonly used with AM_PATH_PYTHONDIR ...
2dnl AM_CHECK_PYMOD(MODNAME [,SYMBOL [,ACTION-IF-FOUND [,ACTION-IF-NOT-FOUND]]])
3dnl Check if a module containing a given symbol is visible to python.
4AC_DEFUN(AM_CHECK_PYMOD,
5[AC_REQUIRE([AM_PATH_PYTHON])
6py_mod_var=`echo $1['_']$2 | sed 'y%./+-%__p_%'`
7AC_MSG_CHECKING(for ifelse([$2],[],,[$2 in ])python module $1)
8AC_CACHE_VAL(py_cv_mod_$py_mod_var, [
9ifelse([$2],[], [prog="
10import sys
11try:
12 import $1
13except ImportError:
14 sys.exit(1)
15except:
16 sys.exit(0)
17sys.exit(0)"], [prog="
18import $1
19$1.$2"])
20if $PYTHON -c "$prog" 1>&AC_FD_CC 2>&AC_FD_CC
21 then
22 eval "py_cv_mod_$py_mod_var=yes"
23 else
24 eval "py_cv_mod_$py_mod_var=no"
25 fi
26])
27py_val=`eval "echo \`echo '$py_cv_mod_'$py_mod_var\`"`
28if test "x$py_val" != xno; then
29 AC_MSG_RESULT(yes)
30 ifelse([$3], [],, [$3
31])dnl
32else
33 AC_MSG_RESULT(no)
34 ifelse([$4], [],, [$4
35])dnl
36fi
37])
38
39dnl a macro to check for ability to create python extensions
40dnl AM_CHECK_PYTHON_HEADERS([ACTION-IF-POSSIBLE], [ACTION-IF-NOT-POSSIBLE])
41dnl function also defines PYTHON_INCLUDES
42AC_DEFUN([AM_CHECK_PYTHON_HEADERS],
43[AC_REQUIRE([AM_PATH_PYTHON])
44AC_MSG_CHECKING(for headers required to compile python extensions)
45dnl deduce PYTHON_INCLUDES
46AC_ARG_WITH(python-includes,
47 [ --with-python-includes=DIR path to Python includes], py_exec_prefix=$withval)
48if test x$py_exec_prefix != x; then
49PYTHON_INCLUDES="-I${py_exec_prefix}/include/python${PYTHON_VERSION}"
50else
51py_prefix=`$PYTHON -c "import sys; print sys.prefix"`
52py_exec_prefix=`$PYTHON -c "import sys; print sys.exec_prefix"`
53PYTHON_INCLUDES="-I${py_prefix}/include/python${PYTHON_VERSION}"
54if test "$py_prefix" != "$py_exec_prefix"; then
55 PYTHON_INCLUDES="$PYTHON_INCLUDES -I${py_exec_prefix}/include/python${PYTHON_VERSION}"
56fi
57fi
58AC_SUBST(PYTHON_INCLUDES)
59dnl check if the headers exist:
60save_CPPFLAGS="$CPPFLAGS"
61CPPFLAGS="$CPPFLAGS $PYTHON_INCLUDES"
62AC_TRY_CPP([#include <Python.h>],dnl
63[AC_MSG_RESULT(found)
64$1],dnl
65[AC_MSG_RESULT(not found)
66$2])
67CPPFLAGS="$save_CPPFLAGS"
68])
69
70dnl
71dnl JH_ADD_CFLAG(FLAG)
72dnl checks whether the C compiler supports the given flag, and if so, adds
73dnl it to $CFLAGS. If the flag is already present in the list, then the
74dnl check is not performed.
75AC_DEFUN([JH_ADD_CFLAG],
76[
77case " $CFLAGS " in
78*@<:@\ \ @:>@$1@<:@\ \ @:>@*)
79 ;;
80*)
81 save_CFLAGS="$CFLAGS"
82 CFLAGS="$CFLAGS $1"
83 AC_MSG_CHECKING([whether [$]CC understands $1])
84 AC_TRY_COMPILE([], [], [jh_has_option=yes], [jh_has_option=no])
85 AC_MSG_RESULT($jh_has_option)
86 if test $jh_has_option = no; then
87 CFLAGS="$save_CFLAGS"
88 fi
89 ;;
90esac])
diff --git a/meta-gnome/packages/gnome/files/gtk-doc.m4 b/meta-gnome/packages/gnome/files/gtk-doc.m4
new file mode 100644
index 0000000000..3ec41666b2
--- /dev/null
+++ b/meta-gnome/packages/gnome/files/gtk-doc.m4
@@ -0,0 +1,53 @@
1dnl -*- mode: autoconf -*-
2
3# serial 1
4
5dnl Usage:
6dnl GTK_DOC_CHECK([minimum-gtk-doc-version])
7AC_DEFUN([GTK_DOC_CHECK],
8[
9 AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
10 AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
11 dnl for overriding the documentation installation directory
12 AC_ARG_WITH(html-dir,
13 AC_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),,
14 [with_html_dir='${datadir}/gtk-doc/html'])
15 HTML_DIR="$with_html_dir"
16 AC_SUBST(HTML_DIR)
17
18 dnl enable/disable documentation building
19 AC_ARG_ENABLE(gtk-doc,
20 AC_HELP_STRING([--enable-gtk-doc],
21 [use gtk-doc to build documentation [default=no]]),,
22 enable_gtk_doc=no)
23
24 have_gtk_doc=no
25 if test -z "$PKG_CONFIG"; then
26 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
27 fi
28 if test "$PKG_CONFIG" != "no" && $PKG_CONFIG --exists gtk-doc; then
29 have_gtk_doc=yes
30 fi
31
32 dnl do we want to do a version check?
33ifelse([$1],[],,
34 [gtk_doc_min_version=$1
35 if test "$have_gtk_doc" = yes; then
36 AC_MSG_CHECKING([gtk-doc version >= $gtk_doc_min_version])
37 if $PKG_CONFIG --atleast-version $gtk_doc_min_version gtk-doc; then
38 AC_MSG_RESULT(yes)
39 else
40 AC_MSG_RESULT(no)
41 have_gtk_doc=no
42 fi
43 fi
44])
45 if test x$enable_gtk_doc = xyes; then
46 if test "$have_gtk_doc" != yes; then
47 enable_gtk_doc=no
48 fi
49 fi
50
51 AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)
52 AM_CONDITIONAL(GTK_DOC_USE_LIBTOOL, test -n "$LIBTOOL")
53])
diff --git a/meta-gnome/packages/gnome/files/gtk-doc.make b/meta-gnome/packages/gnome/files/gtk-doc.make
new file mode 100644
index 0000000000..c319e7ad7c
--- /dev/null
+++ b/meta-gnome/packages/gnome/files/gtk-doc.make
@@ -0,0 +1,148 @@
1# -*- mode: makefile -*-
2
3####################################
4# Everything below here is generic #
5####################################
6
7if GTK_DOC_USE_LIBTOOL
8GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS)
9GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS)
10else
11GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS)
12GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS)
13endif
14
15# We set GPATH here; this gives us semantics for GNU make
16# which are more like other make's VPATH, when it comes to
17# whether a source that is a target of one rule is then
18# searched for in VPATH/GPATH.
19#
20GPATH = $(srcdir)
21
22TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)
23
24EXTRA_DIST = \
25 $(content_files) \
26 $(HTML_IMAGES) \
27 $(DOC_MAIN_SGML_FILE) \
28 $(DOC_MODULE).types \
29 $(DOC_MODULE)-sections.txt \
30 $(DOC_MODULE)-overrides.txt
31
32DOC_STAMPS=scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \
33 $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp
34
35SCANOBJ_FILES = \
36 $(DOC_MODULE).args \
37 $(DOC_MODULE).hierarchy \
38 $(DOC_MODULE).interfaces \
39 $(DOC_MODULE).prerequisites \
40 $(DOC_MODULE).signals
41
42CLEANFILES = $(SCANOBJ_FILES) $(DOC_MODULE)-scan.o $(DOC_MODULE)-unused.txt $(DOC_STAMPS)
43
44if ENABLE_GTK_DOC
45all-local: html-build.stamp
46
47#### scan ####
48
49scan-build.stamp: $(HFILE_GLOB)
50 @echo '*** Scanning header files ***'
51 @-chmod -R u+w $(srcdir)
52 if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \
53 CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \
54 else \
55 cd $(srcdir) ; \
56 for i in $(SCANOBJ_FILES) ; do \
57 test -f $$i || touch $$i ; \
58 done \
59 fi
60 cd $(srcdir) && \
61 gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES)
62 touch scan-build.stamp
63
64$(DOC_MODULE)-decl.txt $(SCANOBJ_FILES): scan-build.stamp
65 @true
66
67#### templates ####
68
69tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt
70 @echo '*** Rebuilding template files ***'
71 @-chmod -R u+w $(srcdir)
72 cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE)
73 touch tmpl-build.stamp
74
75tmpl.stamp: tmpl-build.stamp
76 @true
77
78#### xml ####
79
80sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml
81 @echo '*** Building XML ***'
82 @-chmod -R u+w $(srcdir)
83 cd $(srcdir) && \
84 gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml $(MKDB_OPTIONS)
85 touch sgml-build.stamp
86
87sgml.stamp: sgml-build.stamp
88 @true
89
90#### html ####
91
92html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
93 @echo '*** Building HTML ***'
94 @-chmod -R u+w $(srcdir)
95 rm -rf $(srcdir)/html
96 mkdir $(srcdir)/html
97 cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
98 test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html )
99 @echo '-- Fixing Crossreferences'
100 cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
101 touch html-build.stamp
102endif
103
104##############
105
106clean-local:
107 rm -f *~ *.bak
108
109maintainer-clean-local: clean
110 cd $(srcdir) && rm -rf xml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
111
112install-data-local:
113 $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
114 (installfiles=`echo $(srcdir)/html/*`; \
115 if test "$$installfiles" = '$(srcdir)/html/*'; \
116 then echo '-- Nothing to install' ; \
117 else \
118 for i in $$installfiles; do \
119 echo '-- Installing '$$i ; \
120 $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
121 done; \
122 echo '-- Installing $(srcdir)/html/index.sgml' ; \
123 $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR) || :; \
124 fi)
125
126uninstall-local:
127 rm -f $(DESTDIR)$(TARGET_DIR)/*
128
129#
130# Require gtk-doc when making dist
131#
132if ENABLE_GTK_DOC
133dist-check-gtkdoc:
134else
135dist-check-gtkdoc:
136 @echo "*** gtk-doc must be installed and enabled in order to make dist"
137 @false
138endif
139
140dist-hook: dist-check-gtkdoc dist-hook-local
141 mkdir $(distdir)/tmpl
142 mkdir $(distdir)/xml
143 mkdir $(distdir)/html
144 -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl
145 -cp $(srcdir)/xml/*.xml $(distdir)/xml
146 -cp $(srcdir)/html/* $(distdir)/html
147
148.PHONY : dist-hook-local
diff --git a/meta-gnome/packages/gnome/files/tasn.m4 b/meta-gnome/packages/gnome/files/tasn.m4
new file mode 100644
index 0000000000..6df32085a8
--- /dev/null
+++ b/meta-gnome/packages/gnome/files/tasn.m4
@@ -0,0 +1,161 @@
1dnl Autoconf macros for libtasn1
2dnl $id$
3
4# Modified for LIBTASN1 -- nmav
5# Configure paths for LIBGCRYPT
6# Shamelessly stolen from the one of XDELTA by Owen Taylor
7# Werner Koch 99-12-09
8
9dnl AM_PATH_LIBTASN1([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND ]]])
10dnl Test for libtasn1, and define LIBTASN1_CFLAGS and LIBTASN1_LIBS
11dnl
12AC_DEFUN([AM_PATH_LIBTASN1],
13[dnl
14dnl Get the cflags and libraries from the libtasn1-config script
15dnl
16AC_ARG_WITH(libtasn1-prefix,
17 [ --with-libtasn1-prefix=PFX Prefix where libtasn1 is installed (optional)],
18 libtasn1_config_prefix="$withval", libtasn1_config_prefix="")
19
20 if test x$libtasn1_config_prefix != x ; then
21 if test x${LIBTASN1_CONFIG+set} != xset ; then
22 LIBTASN1_CONFIG=$libtasn1_config_prefix/bin/libtasn1-config
23 fi
24 fi
25
26 AC_PATH_PROG(LIBTASN1_CONFIG, libtasn1-config, no)
27 min_libtasn1_version=ifelse([$1], ,0.1.0,$1)
28 AC_MSG_CHECKING(for libtasn1 - version >= $min_libtasn1_version)
29 no_libtasn1=""
30 if test "$LIBTASN1_CONFIG" = "no" ; then
31 no_libtasn1=yes
32 else
33 LIBTASN1_CFLAGS=`$LIBTASN1_CONFIG $libtasn1_config_args --cflags`
34 LIBTASN1_LIBS=`$LIBTASN1_CONFIG $libtasn1_config_args --libs`
35 libtasn1_config_version=`$LIBTASN1_CONFIG $libtasn1_config_args --version`
36
37
38 ac_save_CFLAGS="$CFLAGS"
39 ac_save_LIBS="$LIBS"
40 CFLAGS="$CFLAGS $LIBTASN1_CFLAGS"
41 LIBS="$LIBS $LIBTASN1_LIBS"
42dnl
43dnl Now check if the installed libtasn1 is sufficiently new. Also sanity
44dnl checks the results of libtasn1-config to some extent
45dnl
46 rm -f conf.libtasn1test
47 AC_TRY_RUN([
48#include <stdio.h>
49#include <stdlib.h>
50#include <string.h>
51#include <libtasn1.h>
52
53int
54main ()
55{
56 system ("touch conf.libtasn1test");
57
58 if( strcmp( asn1_check_version(NULL), "$libtasn1_config_version" ) )
59 {
60 printf("\n*** 'libtasn1-config --version' returned %s, but LIBTASN1 (%s)\n",
61 "$libtasn1_config_version", asn1_check_version(NULL) );
62 printf("*** was found! If libtasn1-config was correct, then it is best\n");
63 printf("*** to remove the old version of LIBTASN1. You may also be able to fix the error\n");
64 printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
65 printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
66 printf("*** required on your system.\n");
67 printf("*** If libtasn1-config was wrong, set the environment variable LIBTASN1_CONFIG\n");
68 printf("*** to point to the correct copy of libtasn1-config, and remove the file config.cache\n");
69 printf("*** before re-running configure\n");
70 }
71 else if ( strcmp(asn1_check_version(NULL), LIBTASN1_VERSION ) )
72 {
73 printf("\n*** LIBTASN1 header file (version %s) does not match\n", LIBTASN1_VERSION);
74 printf("*** library (version %s)\n", asn1_check_version(NULL) );
75 }
76 else
77 {
78 if ( asn1_check_version( "$min_libtasn1_version" ) )
79 {
80 return 0;
81 }
82 else
83 {
84 printf("no\n*** An old version of LIBTASN1 (%s) was found.\n",
85 asn1_check_version(NULL) );
86 printf("*** You need a version of LIBTASN1 newer than %s. The latest version of\n",
87 "$min_libtasn1_version" );
88 printf("*** LIBTASN1 is always available from ftp://gnutls.hellug.gr/pub/gnutls/libtasn1.\n");
89 printf("*** \n");
90 printf("*** If you have already installed a sufficiently new version, this error\n");
91 printf("*** probably means that the wrong copy of the libtasn1-config shell script is\n");
92 printf("*** being found. The easiest way to fix this is to remove the old version\n");
93 printf("*** of LIBTASN1, but you can also set the LIBTASN1_CONFIG environment to point to the\n");
94 printf("*** correct copy of libtasn1-config. (In this case, you will have to\n");
95 printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
96 printf("*** so that the correct libraries are found at run-time))\n");
97 }
98 }
99 return 0;
100}
101],, no_libtasn1=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
102 CFLAGS="$ac_save_CFLAGS"
103 LIBS="$ac_save_LIBS"
104 fi
105
106 if test "x$no_libtasn1" = x ; then
107 AC_MSG_RESULT(yes)
108 ifelse([$2], , :, [$2])
109 else
110 if test -f conf.libtasn1test ; then
111 :
112 else
113 AC_MSG_RESULT(no)
114 fi
115 if test "$LIBTASN1_CONFIG" = "no" ; then
116 echo "*** The libtasn1-config script installed by LIBTASN1 could not be found"
117 echo "*** If LIBTASN1 was installed in PREFIX, make sure PREFIX/bin is in"
118 echo "*** your path, or set the LIBTASN1_CONFIG environment variable to the"
119 echo "*** full path to libtasn1-config."
120 else
121 if test -f conf.libtasn1test ; then
122 :
123 else
124 echo "*** Could not run libtasn1 test program, checking why..."
125 CFLAGS="$CFLAGS $LIBTASN1_CFLAGS"
126 LIBS="$LIBS $LIBTASN1_LIBS"
127 AC_TRY_LINK([
128#include <stdio.h>
129#include <stdlib.h>
130#include <string.h>
131#include <libtasn1.h>
132], [ return !!asn1_check_version(NULL); ],
133 [ echo "*** The test program compiled, but did not run. This usually means"
134 echo "*** that the run-time linker is not finding LIBTASN1 or finding the wrong"
135 echo "*** version of LIBTASN1. If it is not finding LIBTASN1, you'll need to set your"
136 echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
137 echo "*** to the installed location Also, make sure you have run ldconfig if that"
138 echo "*** is required on your system"
139 echo "***"
140 echo "*** If you have an old version installed, it is best to remove it, although"
141 echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
142 echo "***" ],
143 [ echo "*** The test program failed to compile or link. See the file config.log for the"
144 echo "*** exact error that occured. This usually means LIBTASN1 was incorrectly installed"
145 echo "*** or that you have moved LIBTASN1 since it was installed. In the latter case, you"
146 echo "*** may want to edit the libtasn1-config script: $LIBTASN1_CONFIG" ])
147 CFLAGS="$ac_save_CFLAGS"
148 LIBS="$ac_save_LIBS"
149 fi
150 fi
151 LIBTASN1_CFLAGS=""
152 LIBTASN1_LIBS=""
153 ifelse([$3], , :, [$3])
154 fi
155 rm -f conf.libtasn1test
156 AC_SUBST(LIBTASN1_CFLAGS)
157 AC_SUBST(LIBTASN1_LIBS)
158])
159
160dnl *-*wedit:notab*-* Please keep this as the last line.
161
diff --git a/meta-gnome/packages/gnome/gnome-desktop.inc b/meta-gnome/packages/gnome/gnome-desktop.inc
new file mode 100644
index 0000000000..aeabf4f41e
--- /dev/null
+++ b/meta-gnome/packages/gnome/gnome-desktop.inc
@@ -0,0 +1,16 @@
1DESCRIPTION = "GNOME library for reading .desktop files"
2SECTION = "x11/gnome"
3LICENSE = "GPL"
4DEPENDS = "gnome-common libgnomeui"
5
6EXTRA_OECONF = "--disable-scrollkeeper"
7
8do_configure_prepend () {
9 cp ${STAGING_DATADIR}/gnome-common/data/omf.make ${S}
10}
11
12do_stage () {
13 autotools_stage_all
14}
15
16FILES_${PN} += "${datadir}/gnome-about"
diff --git a/meta-gnome/packages/gnome/gnome-desktop_2.26.0.bb b/meta-gnome/packages/gnome/gnome-desktop_2.26.0.bb
new file mode 100644
index 0000000000..52c0e6d3e6
--- /dev/null
+++ b/meta-gnome/packages/gnome/gnome-desktop_2.26.0.bb
@@ -0,0 +1,8 @@
1require gnome-desktop.inc
2
3inherit gnome pkgconfig
4
5DEPENDS += "gnome-doc-utils gnome-vfs libxrandr"
6
7SRC_URI += " \
8 file://no-desktop-docs.patch;patch=1;pnum=0"
diff --git a/meta-gnome/packages/gnome/gnome-doc-utils.inc b/meta-gnome/packages/gnome/gnome-doc-utils.inc
new file mode 100644
index 0000000000..ff62257aa8
--- /dev/null
+++ b/meta-gnome/packages/gnome/gnome-doc-utils.inc
@@ -0,0 +1,16 @@
1LICENSE = "GPL LGPL"
2DEPENDS = "libxml2 libxslt libxslt-native"
3
4PR = "r1"
5
6inherit gnome
7
8EXTRA_OECONF = "--disable-scrollkeeper"
9
10do_stage() {
11 mkdir -p ${STAGING_DATADIR}/xml/gnome/xslt/
12 cp -pPr ${S}/xslt/* ${STAGING_DATADIR}/xml/gnome/xslt/
13 autotools_stage_all
14}
15
16FILES_${PN} += "${datadir}/xml*"
diff --git a/meta-gnome/packages/gnome/gnome-doc-utils_0.12.0.bb b/meta-gnome/packages/gnome/gnome-doc-utils_0.12.0.bb
new file mode 100644
index 0000000000..2499ac36e4
--- /dev/null
+++ b/meta-gnome/packages/gnome/gnome-doc-utils_0.12.0.bb
@@ -0,0 +1,3 @@
1require gnome-doc-utils.inc
2
3PR = "r1"
diff --git a/meta-gnome/packages/gnome/libbonobo.inc b/meta-gnome/packages/gnome/libbonobo.inc
new file mode 100644
index 0000000000..9f3642b80b
--- /dev/null
+++ b/meta-gnome/packages/gnome/libbonobo.inc
@@ -0,0 +1,64 @@
1DESCRIPTION = "Bonobo CORBA interfaces library"
2LICENSE = "GPL"
3SECTION = "x11/gnome/libs"
4DEPENDS = "glib-2.0 orbit2 intltool-native libxml2"
5
6inherit gnome
7
8SRC_URI += "file://gtk-doc.m4 \
9 file://gtk-doc.make \
10 "
11
12ORBIT_IDL_SRC = "${STAGING_BINDIR_NATIVE}/orbit-idl-2"
13
14FILES_${PN} += "${libdir}/orbit-2.0/*.so ${libdir}/bonobo/monikers/*.so"
15FILES_${PN}-dbg += "${libdir}/bonobo/monikers/.debug \
16 ${libdir}/bonobo-2.0/samples/.debug ${libdir}/orbit-2.0/.debug"
17FILES_${PN}-dev += "${libdir}/orbit-2.0/* ${libdir}/bonobo/monikers/* \
18 ${libdir}/bonobo-2.0/samples"
19
20LEAD_SONAME = "libbonobo-2.so"
21
22PARALLEL_MAKE = ""
23
24do_configure_prepend() {
25 install -d m4
26 install ${WORKDIR}/gtk-doc.m4 m4/
27 install ${WORKDIR}/gtk-doc.make ./
28}
29
30ACTIVATION_HEADERS = "Bonobo_Unknown.h Bonobo_GenericFactory.h Bonobo_Activation_types.h \
31 bonobo-activation.h bonobo-activation-async.h bonobo-activation-activate.h \
32 bonobo-activation-init.h bonobo-activation-shlib.h bonobo-activation-register.h \
33 bonobo-activation-server-info.h bonobo-activation-version.h"
34
35BONOBO_HEADERS = "Bonobo.h bonobo-arg.h bonobo-context.h bonobo-event-source.h bonobo-exception.h \
36 bonobo-generic-factory.h bonobo-item-container.h bonobo-item-handler.h \
37 bonobo-listener.h bonobo-main.h bonobo-macros.h bonobo-moniker-extender.h \
38 bonobo-moniker-simple.h bonobo-moniker-util.h bonobo-moniker.h bonobo-object.h \
39 bonobo-foreign-object.h bonobo-persist-file.h bonobo-persist-stream.h \
40 bonobo-persist.h bonobo-persist-client.h bonobo-property-bag.h \
41 bonobo-property-bag-client.h bonobo-shlib-factory.h bonobo-storage.h \
42 bonobo-stream.h bonobo-stream-client.h bonobo-stream-memory.h \
43 bonobo-storage-memory.h bonobo-xobject.h bonobo-i18n.h bonobo-types.h \
44 bonobo-app-client.h bonobo-application.h"
45
46do_compile() {
47 oe_runmake ORBIT_IDL="${ORBIT_IDL_SRC}"
48}
49
50do_stage() {
51 install -d ${STAGING_INCDIR}/bonobo-activation-2.0/bonobo-activation
52 for i in ${ACTIVATION_HEADERS}; do install -m 0644 bonobo-activation/$i ${STAGING_INCDIR}/bonobo-activation-2.0/bonobo-activation/; done
53 install -d ${STAGING_INCDIR}/libbonobo-2.0/bonobo
54 for i in ${BONOBO_HEADERS}; do install -m 0644 bonobo/$i ${STAGING_INCDIR}/libbonobo-2.0/bonobo/; done
55 install -m 0644 libbonobo.h ${STAGING_INCDIR}/libbonobo-2.0/
56 install -d ${STAGING_DATADIR}/idl/bonobo-activation-2.0/
57 install idl/*.idl ${STAGING_DATADIR}/idl/bonobo-activation-2.0/
58 oe_libinstall -so -C bonobo libbonobo-2 ${STAGING_LIBDIR}
59 oe_libinstall -so -C bonobo-activation libbonobo-activation ${STAGING_LIBDIR}
60}
61
62do_install() {
63 oe_runmake ORBIT_IDL="${ORBIT_IDL_SRC}" DESTDIR="${D}" install
64}
diff --git a/meta-gnome/packages/gnome/libbonobo/configure-gthread.patch b/meta-gnome/packages/gnome/libbonobo/configure-gthread.patch
new file mode 100644
index 0000000000..005fa6760a
--- /dev/null
+++ b/meta-gnome/packages/gnome/libbonobo/configure-gthread.patch
@@ -0,0 +1,11 @@
1--- libbonobo-2.14.0/configure.in.orig 2006-09-04 09:21:54.000000000 +0100
2+++ libbonobo-2.14.0/configure.in 2006-09-04 09:22:58.000000000 +0100
3@@ -166,7 +166,7 @@
4 AC_MSG_RESULT(no)
5 AC_MSG_ERROR(
6 [No working gthread-2.0 support found, using --disable-threads IS DISCOURAGED])
7- ]
8+ ],[AC_MSG_RESULT(yes)]
9 )
10 CFLAGS=$libbonobo_save_CFLAGS
11 LIBS=$libbonobo_save_LIBS
diff --git a/meta-gnome/packages/gnome/libbonobo_2.22.0.bb b/meta-gnome/packages/gnome/libbonobo_2.22.0.bb
new file mode 100644
index 0000000000..feecaf590a
--- /dev/null
+++ b/meta-gnome/packages/gnome/libbonobo_2.22.0.bb
@@ -0,0 +1,6 @@
1require libbonobo.inc
2
3PR = "r0"
4
5SRC_URI += "file://configure-gthread.patch;patch=1"
6
diff --git a/meta-gnome/packages/gnome/libbonoboui_2.18.0.bb b/meta-gnome/packages/gnome/libbonoboui_2.18.0.bb
new file mode 100644
index 0000000000..53380c6fa0
--- /dev/null
+++ b/meta-gnome/packages/gnome/libbonoboui_2.18.0.bb
@@ -0,0 +1,59 @@
1LICENSE = "GPL"
2SECTION = "x11/gnome/libs"
3PR = "r1"
4
5inherit gnome pkgconfig
6
7FILES_${PN} += "${libdir}/libglade/2.0/*.so"
8FILES_${PN}-dev += "${libdir}/libglade/2.0/* ${datadir}/gnome-2.0/ui \
9 ${libdir}/bonobo-2.0/samples"
10FILES_${PN}-dbg += "${libdir}/bonobo-2.0/samples/.debug \
11 ${libdir}/libglade/2.0/.debug"
12
13DEPENDS = "libgnomecanvas libbonobo libgnome glib-2.0 gtk-doc gconf libxml2 libglade"
14
15EXTRA_OECONF = "--disable-gtk-doc"
16
17HEADERS = " \
18bonobo/bonobo-zoomable.h \
19bonobo/bonobo-ui-component.h \
20bonobo/bonobo-dock-layout.h \
21bonobo/bonobo-ui-type-builtins.h \
22bonobo/bonobo-canvas-component.h \
23bonobo/bonobo-widget.h \
24bonobo/bonobo-ui-engine.h \
25bonobo/bonobo-window.h \
26bonobo/bonobo-ui-toolbar.h \
27bonobo/bonobo-dock-band.h \
28bonobo/bonobo-ui-toolbar-item.h \
29bonobo/bonobo-control.h \
30bonobo/bonobo-dock-item.h \
31bonobo/bonobo-ui-config-widget.h \
32bonobo/bonobo-zoomable-frame.h \
33bonobo/bonobo-control-frame.h \
34bonobo/bonobo-dock.h \
35bonobo/bonobo-ui-main.h \
36bonobo/bonobo-canvas-item.h \
37bonobo/bonobo-ui-node.h \
38bonobo/bonobo-socket.h \
39bonobo/bonobo-selector.h \
40bonobo/bonobo-ui-sync.h \
41bonobo/bonobo-ui-util.h \
42bonobo/bonobo-plug.h \
43bonobo/bonobo-ui-toolbar-button-item.h \
44bonobo/bonobo-ui-toolbar-toggle-button-item.h \
45bonobo/bonobo-ui-container.h \
46bonobo/bonobo-file-selector-util.h \
47bonobo/bonobo-property-control.h \
48bonobo/bonobo-selector-widget.h \
49libbonoboui.h \
50bonobo.h \
51"
52
53do_stage() {
54 install -d ${STAGING_INCDIR}/libbonoboui-2.0/bonobo
55 for i in ${HEADERS}; do
56 install -m 0644 $i ${STAGING_INCDIR}/libbonoboui-2.0/$i
57 done
58 oe_libinstall -C bonobo -a -so libbonoboui-2 ${STAGING_LIBDIR}
59}
diff --git a/meta-gnome/packages/gnome/libgnome_2.24.0.bb b/meta-gnome/packages/gnome/libgnome_2.24.0.bb
new file mode 100644
index 0000000000..549cda2855
--- /dev/null
+++ b/meta-gnome/packages/gnome/libgnome_2.24.0.bb
@@ -0,0 +1,19 @@
1DESCRIPTION = "Gnome application programming libraries"
2LICENSE = "GPL"
3SECTION = "x11/gnome/libs"
4PR = "r0"
5
6inherit gnome lib_package
7
8DEPENDS = "gconf-native gnome-vfs libbonobo esound"
9
10EXTRA_OECONF = "--disable-gtk-doc"
11
12FILES_${PN} += "${libdir}/bonobo/servers ${libdir}/bonobo/monikers/*.so \
13 ${datadir}/gnome-background-properties ${datadir}/pixmaps"
14FILES_${PN}-dev += "${libdir}/bonobo/monikers/*a"
15FILES_${PN}-dbg += "${libdir}/bonobo/monikers/.debug"
16
17do_stage() {
18 autotools_stage_all
19}
diff --git a/meta-gnome/packages/gnome/libgnomeui/gnome-stock-pixbufs.h b/meta-gnome/packages/gnome/libgnomeui/gnome-stock-pixbufs.h
new file mode 100644
index 0000000000..953a8aeb06
--- /dev/null
+++ b/meta-gnome/packages/gnome/libgnomeui/gnome-stock-pixbufs.h
@@ -0,0 +1,4030 @@
1/* gnome stock icons in GdmPixbuf usable rgb data
2 *
3 * Copyright (C) 1997 the Free Software Foundation
4 *
5 * the pixmaps for button_cancel, save_as, trash, mail_receive, stop
6 * right_arrow, home, save, book_blue, trash_full, undo, search, mail_forward
7 * revert, mail_compose, mic, copy, jump_to, convert, button_apply, timer
8 * mail, book_red, book_yellow, help, redo, new, mail_send, button_yes, cut
9 * properties, print, mail_reply, refresh, search_replace, open, preferences
10 * left_arrow, undelete, close, volume, button_no, exit, book_green
11 * book_open, paste, line_in, spellcheck, timer_stopped
12 * are Copyright (C) 1998 Tuomas Kuosmanen
13 */
14
15/* GdkPixbuf RGBA C-Source image dump */
16
17#ifdef __SUNPRO_C
18#pragma align 4 (stock_attach)
19#endif
20#ifdef __GNUC__
21static const guint8 stock_attach[] __attribute__ ((__aligned__ (4))) =
22#else
23static const guint8 stock_attach[] =
24#endif
25{ ""
26 /* Pixbuf magic (0x47646b50) */
27 "GdkP"
28 /* length: header (24) + pixel_data (2304) */
29 "\0\0\11\30"
30 /* pixdata_type (0x1010002) */
31 "\1\1\0\2"
32 /* rowstride (96) */
33 "\0\0\0`"
34 /* width (24) */
35 "\0\0\0\30"
36 /* height (24) */
37 "\0\0\0\30"
38 /* pixel_data: */
39 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
40 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
41 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
42 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0c\0\0\0\377"
43 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\21\0\0\0\2\0\0\0\0\0\0"
44 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
45 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\26\0"
46 "\0\0\"\0\0\0$\0\0\0%\0\0\0%\0\0\0\377\0\0\0l\0\0\0\377\0\0\0\377\0\0"
47 "\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
48 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\"\0\0\0\20\0"
49 "\0\0$\0\0\0~\1\1\1\377QQQ\377\232\232\232\377\317\317\317\377ooo\377"
50 "\0\0\0\377\0\0\0\16\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
51 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0x\0\0\0"
52 "\377FFF\377\245\245\245\377\342\342\342\377\377\377\377\377\377\377\377"
53 "\377\366\366\366\377\212\212\212\377999\377\0\0\0(\0\0\0\10\0\0\0\0\0"
54 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\0\0\0"
55 "B\0\0\0\377\34\34\34\377\213\213\213\377\346\346\346\377\356\356\356"
56 "\377\341\341\341\377\377\377\377\377\370\370\370\377\367\367\367\377"
57 "\366\366\366\377\314\314\314\377VVV\377\0\0\0^\0\0\0\12\0\0\0\0\0\0\0"
58 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0\0\0\377>>>\377\201\201\201"
59 "\377\324\324\324\377\34\34\34\377\347\347\347\377\327\327\327\377\372"
60 "\372\372\377\371\371\371\377\370\370\370\377\302\302\302\377\313\313"
61 "\313\377\365\365\365\377\331\331\331\377\201\201\201\377\0\0\0\377\0"
62 "\0\0\25\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0:\3\3\3\377TTT\377\346\346"
63 "\346\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\327"
64 "\327\327\377\336\336\336\377\263\263\263\377yyy\377\0\0\0\377\342\342"
65 "\342\377\366\366\366\377\365\365\365\377\364\364\364\377\235\235\235"
66 "\377(((\377\0\0\0)\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\366\366"
67 "\366\377\377\377\377\377\377\377\377\377\372\372\372\377\372\372\372"
68 "\377\373\373\373\377\0\0\0\377\246\246\246\377\305\305\305\377\360\360"
69 "\360\377\370\370\370\377\0\0\0\377\342\342\342\377\302\302\302\377\312"
70 "\312\312\377\364\364\364\377\307\307\307\377VVV\377\0\0\0^\0\0\0\12\0"
71 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\362\362\362\377\370\370\370\377\371"
72 "\371\371\377\316\316\316\377\304\304\304\377\305\305\305\377\0\0\0\377"
73 "\325\325\325\377\371\371\371\377\370\370\370\377\370\370\370\377\0\0"
74 "\0\377\263\263\263\377\332\332\332\377\364\364\364\377\363\363\363\377"
75 "\363\363\363\377yyy\377\0\0\0\377\0\0\0\25\0\0\0\3\0\0\0\0\0\0\0\0\0"
76 "\0\0h\205\205\205\377\377\377\377\377\370\370\370\377\276\276\276\377"
77 "\371\371\371\377\371\371\371\377\0\0\0\377\323\323\323\377\334\334\334"
78 "\377\302\302\302\377\302\302\302\377\0\0\0\377\342\342\342\377\365\365"
79 "\365\377\364\364\364\377\363\363\363\377\362\362\362\377\234\234\234"
80 "\377(((\377\0\0\0)\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\40HHH\377\377\377\377"
81 "\377\367\367\367\377\367\367\367\377\370\370\370\377\370\370\370\377"
82 "\0\0\0\377\247\247\247\377\326\326\326\377\367\367\367\377\366\366\366"
83 "\377\0\0\0\377\342\342\342\377\364\364\364\377\304\304\304\377\310\310"
84 "\310\377\362\362\362\377\306\306\306\377LLL\377\0\0\0^\0\0\0\12\0\0\0"
85 "\0\0\0\0\0\0\0\0\1\0\0\0\377\352\352\352\377\377\377\377\377\366\366"
86 "\366\377\276\276\276\377\302\302\302\377\0\0\0\377\345\345\345\377\330"
87 "\330\330\377\366\366\366\377\365\365\365\377\0\0\0\377\255\255\255\377"
88 "\274\274\274\377\352\352\352\377\340\340\340\377\361\361\361\377\352"
89 "\352\352\377\220\220\220\377\0\0\0\377\0\0\0\25\0\0\0\3\0\0\0\0\0\0\0"
90 "\0\0\0\0ihhh\377\377\377\377\377\365\365\365\377\366\366\366\377\366"
91 "\366\366\377\242\242\242\377\0\0\0\377\300\300\300\377\301\301\301\377"
92 "\0\0\0\377xxx\377\326\326\326\377\363\363\363\377\362\362\362\377\361"
93 "\361\361\377\361\361\361\377\325\325\325\377\256\256\256\377\25\25\25"
94 "\377\0\0\0)\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4""999\377\377\377\377\377"
95 "\364\364\364\377\365\365\365\377\365\365\365\377\332\332\332\377\232"
96 "\232\232\377\0\0\0\377\0\0\0\377yyy\377\326\326\326\377\362\362\362\377"
97 "\362\362\362\377\361\361\361\377\326\326\326\377\320\320\320\377\227"
98 "\227\227\377rrr\377JJJ\377\0\0\0.\0\0\0\11\0\0\0\0\0\0\0\0\0\0\0\0\0"
99 "\0\0\377\354\354\354\377\377\377\377\377\364\364\364\377\254\254\254"
100 "\377\272\272\272\377\335\335\335\377\363\363\363\377\316\316\316\377"
101 "\333\333\333\377\354\354\354\377\327\327\327\377\326\326\326\377\261"
102 "\261\261\377\201\201\201\377VVV\377###\377\0\0\0\377\0\0\0q\0\0\0)\0"
103 "\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0hiii\377\377\377\377\377\363\363"
104 "\363\377\363\363\363\377\363\363\363\377\363\363\363\377\362\362\362"
105 "\377\362\362\362\377\327\327\327\377\267\267\267\377\202\202\202\377"
106 "@@@\377###\377\0\0\0\377\0\0\0\204\0\0\0""2\0\0\0.\0\0\0)\0\0\0\25\0"
107 "\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4(((\377\377\377\377\377\363\363"
108 "\363\377\362\362\362\377\362\362\362\377\327\327\327\377\276\276\276"
109 "\377\226\226\226\377222\377###\377\0\0\0\377\0\0\0u\0\0\0H\0\0\0/\0\0"
110 "\0*\0\0\0\31\0\0\0\13\0\0\0\10\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
111 "\0\0\0\0\0\0\0\0\377\346\346\346\377\350\350\350\377\314\314\314\377"
112 "\232\232\232\377@@@\377###\377\0\0\0\377\0\0\0\221\0\0\0I\0\0\0/\0\0"
113 "\0*\0\0\0\30\0\0\0\16\0\0\0\11\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
114 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0;999\377\202\202\202\377999\377"
115 "\22\22\22\377\0\0\0\204\0\0\0I\0\0\0/\0\0\0*\0\0\0\33\0\0\0\16\0\0\0"
116 "\11\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
117 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\377\0\0\0\377\0\0\0u\0\0"
118 "\0""1\0\0\0*\0\0\0\31\0\0\0\16\0\0\0\11\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0"
119 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
120 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\11\0\0\0&\0\0\0)\0\0\0\27\0\0\0"
121 "\12\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
122 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
123 "\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\7\0\0\0\10\0\0\0\3\0\0\0\0\0\0\0\0\0"
124 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
125 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
126 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
127 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
128 "\0\0\0\0\0\0\0\0\0\0\0"};
129
130
131/* GdkPixbuf RGBA C-Source image dump */
132
133#ifdef __SUNPRO_C
134#pragma align 4 (stock_book_blue)
135#endif
136#ifdef __GNUC__
137static const guint8 stock_book_blue[] __attribute__ ((__aligned__ (4))) =
138#else
139static const guint8 stock_book_blue[] =
140#endif
141{ ""
142 /* Pixbuf magic (0x47646b50) */
143 "GdkP"
144 /* length: header (24) + pixel_data (2304) */
145 "\0\0\11\30"
146 /* pixdata_type (0x1010002) */
147 "\1\1\0\2"
148 /* rowstride (96) */
149 "\0\0\0`"
150 /* width (24) */
151 "\0\0\0\30"
152 /* height (24) */
153 "\0\0\0\30"
154 /* pixel_data: */
155 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
156 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
157 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
158 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0""9\0\0\0\302\0\0\0\377\0\0"
159 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
160 "\0\0\377\0\0\0\357\0\0\0\356\0\0\0\346\0\0\0\342\0\0\0w\0\0\0\13\0\0"
161 "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32\21\26\35\377\227"
162 "\250\276\377}\223\254\377s\212\243\377l\204\234\377d|\226\377^v\217\377"
163 "Wo\210\377Pi\202\377Pi\202\377Pi\202\377Pi\202\377Pi\202\377Vn\206\377"
164 "IXi\377\21\30\"\376\0\0\0.\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
165 "\0\0\0\0\0\0\273v\213\242\377\216\242\270\377v\215\247\377Vr\220\377"
166 "Nj\210\377Fb\200\377=Zx\3775Rp\3771Nk\3771Nk\3776Ro\3776Ro\377<Ws\377"
167 "6Ro\3773@O\377\25\34%\372\0\0\0N\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
168 "\0\0\0\0\0\22\12\15\21\377\231\254\300\377\200\226\256\377[v\224\377"
169 "So\215\377Jg\205\377B_}\377:Wu\3772Om\3771Nk\3771Nk\3771Nk\3771Nk\377"
170 ";Wr\377-D\\\377#/6\377\0\0\0^\0\0\0D\0\0\0\16\0\0\0\0\0\0\0\0\0\0\0\0"
171 "\0\0\0\0\0\0\0\255[iy\377\231\254\300\377u\215\246\377Ws\221\377Ok\210"
172 "\377Gc\201\377\77[y\3776Sq\3771Nk\3771Nk\3771Nk\3771Nk\3774Pm\377;Wr"
173 "\377)\77V\3775<A\375\0\0\0\377\0\0\0%\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0"
174 "\0\0\0\21\0\0\0\377\231\254\300\377\200\227\260\377\\x\226\377Tp\216"
175 "\377Kh\206\377C`~\377;Xv\3773Pn\3771Nk\3771Nk\3773Pk\3771Nk\3779Uq\377"
176 "-D\\\377\27\",\377~\202\205\377578\377\0\0\0F\0\0\0\15\0\0\0\0\0\0\0"
177 "\0\0\0\0\0\0\0\0\232[iy\377\217\243\271\377u\215\246\377Xt\222\377Pl"
178 "\212\377Hd\202\377@\\z\3778Tr\3771Nk\3771Nk\3771Nk\3771Nk\3772Ol\377"
179 "=Yt\377)\77V\377!'.\376JLM\377\216\220\222\377\0\0\0Q\0\0\0\20\0\0\0"
180 "\0\0\0\0\0\0\0\0\20\0\0\0\377\230\253\277\375\177\226\257\377]y\227\377"
181 "Uq\217\377Mi\207\377Da\177\377<Yw\3774Qo\3771Nk\3771Nk\3771Nk\3771Nk"
182 "\3778Tp\377/F]\377\30$-\377TWY\366eij\377334\377\0\0\0Q\0\0\0\20\0\0"
183 "\0\0\0\0\0\0\0\0\0\335eu\203\377\215\242\271\377v\215\247\377Zu\223\377"
184 "Qm\213\377Ie\203\377A]{\3779Us\3771Nk\3771Nk\3771Nk\3771Nk\3771Nk\377"
185 "<Ws\377*BZ\377#+2\377FHJ\377\220\222\225\377\0\0\0\377\0\0\0c\0\0\0\21"
186 "\0\0\0\0\0\0\0!\0\0\0\377\233\254\273\377\207\234\264\377c~\233\377V"
187 "r\220\377Nj\210\377Fb\200\377=Zx\3775Rp\3771Nk\3771Nk\3771Nk\3771Nk\377"
188 "5Rn\3774Kb\377\31$-\377dhk\377mop\3770G]\377\0\0\0\373\0\0\0R\0\0\0\25"
189 "\0\0\0\0\0\0\0\245ep}\377\221\245\274\377q\213\246\377\\x\226\377Tp\216"
190 "\377Kh\206\377C`~\377;Xv\3773Pn\3771Nk\3771Nk\3771Nk\3771Nk\377=Yt\377"
191 ")\77V\377&.3\377WXY\377\213\217\225\377\11\15\21\372\0\0\0\234\0\0\0"
192 "I\0\0\0\17\0\0\0\13\0\0\0\377~\216\237\337\212\237\266\377l\205\241\377"
193 "Xt\222\377Pl\212\377Hd\202\377@\\z\3778Tr\3771Nk\3771Nk\3771Nk\3771N"
194 "k\3771Nk\3775Lc\377\32%0\377HLN\377suv\377C[s\370\0\0\0\364\0\0\0U\0"
195 "\0\0+\0\0\0\7\0\0\0\206uww\377\275\306\323\375\256\276\314\377\247\266"
196 "\306\377\243\262\302\377\236\255\275\377\232\252\271\377\220\240\260"
197 "\377{\217\241\377y\214\237\377y\214\237\377y\214\237\377y\214\237\377"
198 "p\204\231\377Ufy\37725;\377[^a\377\216\223\230\377\12\16\21\372\0\0\0"
199 "\233\0\0\0G\0\0\0\21\0\0\0\1\2\7\11\331\260\272\304\377,>Q\377$6J\377"
200 "$6J\377$6J\377$6J\377$6J\377$6J\377$6J\377$6J\377$6J\377$6J\377$6J\377"
201 "$6J\377+5\77\377^bh\377wxz\377F`z\377\0\0\0\365\0\0\0U\0\0\0*\0\0\0\6"
202 "\0\0\0\0\15\17\21\377\207\223\235\377@AE\377_``\373ttt\377\226\226\226"
203 "\377\261\261\261\377\257\257\260\377\305\305\306\377\316\316\317\377"
204 "\264\273\301\377\274\302\311\377\275\304\312\377\304\313\322\377\313"
205 "\322\331\377\326\332\336\377\220\226\233\377\205\212\217\377\24\33!\371"
206 "\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0\0\0\0\14\16\17\377k{\213\377WWW"
207 "\377}~\200\377\342\344\346\377\342\344\346\377\341\341\341\377\337\337"
208 "\340\377\337\337\340\377\362\362\362\377\375\375\376\377\361\363\365"
209 "\377\361\363\365\377\361\363\365\377\247\250\252\377\262\265\271\377"
210 "imq\377F`z\377\0\1\2\370\0\0\0U\0\0\0*\0\0\0\6\0\0\0\0\0\0\0\0$%'\377"
211 "cr\201\377i|\216\377Tk\203\377E]x\377\326\334\341\377\347\352\355\377"
212 "\355\357\361\377\355\357\362\377\345\346\347\377\336\336\337\377\341"
213 "\341\342\377\341\341\342\377\337\337\340\377\341\342\343\377rz\203\377"
214 "\213\217\224\377\25\33!\367\0\0\0\234\0\0\0I\0\0\0\22\0\0\0\1\0\0\0\0"
215 "\0\0\0\0\0\0\0""9\0\0\0\377\4\6\12\3548J]\363Mbx\351Th\177\357Sj\202"
216 "\377Wo\206\377\207\227\247\377\327\335\341\377\342\346\351\377\351\354"
217 "\356\377\370\371\372\377\370\371\372\377\201\205\212\377\245\247\250"
218 "\377\234\242\250\377\1\2\3\370\0\0\0U\0\0\0*\0\0\0\7\0\0\0\0\0\0\0\0"
219 "\0\0\0\0\0\0\0\0\0\0\0&\0\0\0e\0\0\0\276\0\0\0\346\0\0\0\360\0\0\0\363"
220 ";K^\371DVi\371Tg}\367Uk\200\366Vl\203\377\254\270\303\377\334\341\345"
221 "\377\350\353\355\377\237\243\246\377\25\35$\373\0\0\0\234\0\0\0H\0\0"
222 "\0\22\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\17\0\0\0"
223 "\34\0\0\0""4\0\0\0C\0\0\0g\0\0\0\251\0\0\0\344\0\0\0\361\0\0\0\3560>"
224 "M\365=N`\371O_s\372Se{\367Lc|\357\1\3\5\367\0\0\0U\0\0\0+\0\0\0\7\0\0"
225 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\12"
226 "\0\0\0\15\0\0\0\20\0\0\0\33\0\0\0""0\0\0\0C\0\0\0_\0\0\0\235\0\0\0\327"
227 "\0\0\0\356\0\0\0\354\0\0\0\347\0\0\0{\0\0\0F\0\0\0\21\0\0\0\1\0\0\0\0"
228 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
229 "\0\0\0\0\0\0\0\0\0\3\0\0\0\10\0\0\0\15\0\0\0\20\0\0\0\30\0\0\0,\0\0\0"
230 "\77\0\0\0H\0\0\0H\0\0\0@\0\0\0\37\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
231 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
232 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\7\0\0\0\13\0\0\0\16\0"
233 "\0\0\16\0\0\0\14\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
234 "\0\0"};
235
236
237/* GdkPixbuf RGBA C-Source image dump */
238
239#ifdef __SUNPRO_C
240#pragma align 4 (stock_book_green)
241#endif
242#ifdef __GNUC__
243static const guint8 stock_book_green[] __attribute__ ((__aligned__ (4))) =
244#else
245static const guint8 stock_book_green[] =
246#endif
247{ ""
248 /* Pixbuf magic (0x47646b50) */
249 "GdkP"
250 /* length: header (24) + pixel_data (2304) */
251 "\0\0\11\30"
252 /* pixdata_type (0x1010002) */
253 "\1\1\0\2"
254 /* rowstride (96) */
255 "\0\0\0`"
256 /* width (24) */
257 "\0\0\0\30"
258 /* height (24) */
259 "\0\0\0\30"
260 /* pixel_data: */
261 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
262 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
263 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
264 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0""9\0\0\0\302\0\0\0\377\0\0"
265 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
266 "\0\0\377\0\0\0\357\0\0\0\356\0\0\0\346\0\0\0\342\0\0\0w\0\0\0\13\0\0"
267 "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32\21\34\21\377\225"
268 "\276\225\377y\255y\377n\246n\377e\241e\377^\233^\377Y\222Y\377S\212S"
269 "\377O\202O\377O\202O\377O\202O\377O\202O\377O\202O\377R\210R\377CnC\377"
270 "\22\36\22\376\0\0\0.\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
271 "\0\0\0\273o\247o\377\214\271\214\377r\251r\377V\216V\377P\204P\377Jz"
272 "J\377CoC\377=e=\377:`:\377:`:\377=e=\377=e=\377AkA\377=e=\3770P0\377"
273 "\26#\26\372\0\0\0N\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22"
274 "\11\17\11\377\227\277\227\377}\260}\377Y\223Y\377T\213T\377M\177M\377"
275 "GuG\377AkA\377;a;\377:`:\377:`:\377:`:\377:`:\377@j@\3773T3\377!6!\377"
276 "\0\0\0^\0\0\0D\0\0\0\16\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255O\203"
277 "O\377\227\277\227\377q\250q\377W\217W\377P\204P\377K|K\377ErE\377>f>"
278 "\377:`:\377:`:\377:`:\377:`:\377<c<\377@j@\377/N/\377,I,\375\0\0\0\377"
279 "\0\0\0%\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0\0\377\227\277\227"
280 "\377~\260~\377[\226[\377U\214U\377N\201N\377HwH\377BmB\377<c<\377:`:"
281 "\377:`:\377;a;\377:`:\377@i@\3773T3\377\30(\30\377\201\201\201\377(B"
282 "(\377\0\0\0F\0\0\0\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\232O\203O\377\215"
283 "\271\215\377q\250q\377X\221X\377R\207R\377L}L\377FsF\377@i@\377:`:\377"
284 ":`:\377:`:\377:`:\377;a;\377BmB\377/N/\377\35""0\35\376KKK\377\220\220"
285 "\220\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0\377\226\277\226"
286 "\375}\260}\377\\\227\\\377V\215V\377O\203O\377IxI\377CnC\377=d=\377:"
287 "`:\377:`:\377:`:\377:`:\377\77h\77\3774V4\377\31*\31\377VVV\366ggg\377"
288 "333\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\335W\217W\377\214\271\214"
289 "\377r\251r\377Y\222Y\377R\210R\377L~L\377FtF\377@j@\377:`:\377:`:\377"
290 ":`:\377:`:\377:`:\377AkA\3771Q1\377\37""3\37\377HHH\377w\254w\377\0\0"
291 "\0\377\0\0\0c\0\0\0\21\0\0\0\0\0\0\0!\0\0\0\377\226\277\226\377\204\264"
292 "\204\377_\235_\377V\216V\377P\204P\377JzJ\377CoC\377=e=\377:`:\377:`"
293 ":\377:`:\377:`:\377=d=\3778]8\377\32+\32\377ggg\377nnn\3774V4\377\0\0"
294 "\0\373\0\0\0R\0\0\0\25\0\0\0\0\0\0\0\245U\214U\377\220\273\220\377n\246"
295 "n\377[\226[\377U\214U\377N\201N\377HwH\377BmB\377<c<\377:`:\377:`:\377"
296 ":`:\377:`:\377BmB\377/N/\377!6!\377XXX\377t\253t\377\11\17\11\372\0\0"
297 "\0\234\0\0\0I\0\0\0\17\0\0\0\13\0\0\0\377t\247t\337\210\266\210\377h"
298 "\243h\377X\221X\377R\207R\377L}L\377FsF\377@i@\377:`:\377:`:\377:`:\377"
299 ":`:\377:`:\3779^9\377\33.\33\377KKK\377ttt\377EpE\370\0\0\0\364\0\0\0"
300 "U\0\0\0+\0\0\0\7\0\0\0\206Y\222Y\377\272\325\272\375\254\314\254\377"
301 "\243\307\243\377\237\304\237\377\230\300\230\377\223\275\223\377\210"
302 "\266\210\377r\251r\377o\247o\377o\247o\377o\247o\377o\247o\377e\241e"
303 "\377M\177M\377(B(\377^^^\377x\255x\377\11\17\11\372\0\0\0\233\0\0\0G"
304 "\0\0\0\21\0\0\0\1\3\5\3\331\250\312\250\377.L.\377)D)\377)D)\377)D)\377"
305 ")D)\377)D)\377)D)\377)D)\377)D)\377)D)\377)D)\377)D)\377)D)\377'A'\377"
306 "ccc\377xxx\377HwH\377\0\0\0\365\0\0\0U\0\0\0*\0\0\0\6\0\0\0\0\13\22\13"
307 "\377w\254w\3771Q1\377___\373ttt\377\226\226\226\377\261\261\261\377\257"
308 "\257\257\377\305\305\305\377\316\316\316\377\272\272\272\377\302\302"
309 "\302\377\303\303\303\377\313\313\313\377\322\322\322\377\332\332\332"
310 "\377\225\225\225\377m\246m\377\23\37\23\371\0\0\0\234\0\0\0H\0\0\0\22"
311 "\0\0\0\1\0\0\0\0\11\17\11\377\\\230\\\377AkA\377~~~\377\344\344\344\377"
312 "\344\344\344\377\341\341\341\377\337\337\337\377\337\337\337\377\362"
313 "\362\362\377\375\375\375\377\363\363\363\377\363\363\363\377\363\363"
314 "\363\377\250\250\250\377\265\265\265\377mmm\377HwH\377\0\1\0\370\0\0"
315 "\0U\0\0\0*\0\0\0\6\0\0\0\0\0\0\0\0\33.\33\377V\215V\377\\\230\\\377P"
316 "\204P\377FtF\377\333\333\333\377\352\352\352\377\357\357\357\377\357"
317 "\357\357\377\346\346\346\377\336\336\336\377\341\341\341\377\341\341"
318 "\341\377\337\337\337\377\342\342\342\377zzz\377s\252s\377\24\40\24\367"
319 "\0\0\0\234\0\0\0I\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0""9\0\0\0\377"
320 "\5\10\5\3548[8\363MxM\351Q\200Q\357O\203O\377R\210R\377\227\227\227\377"
321 "\334\334\334\377\345\345\345\377\353\353\353\377\371\371\371\377\371"
322 "\371\371\377\205\205\205\377\246\246\246\377\213\270\213\377\1\2\1\370"
323 "\0\0\0U\0\0\0*\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0e"
324 "\0\0\0\276\0\0\0\346\0\0\0\360\0\0\0\3639]9\371AjA\371O\200O\367Q\203"
325 "Q\366Q\206Q\377\245\310\245\377\340\340\340\377\352\352\352\377\213\270"
326 "\213\377\25\"\25\373\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0"
327 "\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\17\0\0\0\34\0\0\0""4\0\0\0C\0\0\0g\0"
328 "\0\0\251\0\0\0\344\0\0\0\361\0\0\0\356/L/\365;a;\371HvH\372M}M\367Lz"
329 "L\357\2\3\2\367\0\0\0U\0\0\0+\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
330 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\12\0\0\0\15\0\0\0\20\0\0\0\33"
331 "\0\0\0""0\0\0\0C\0\0\0_\0\0\0\235\0\0\0\327\0\0\0\356\0\0\0\354\0\0\0"
332 "\347\0\0\0{\0\0\0F\0\0\0\21\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
333 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0"
334 "\10\0\0\0\15\0\0\0\20\0\0\0\30\0\0\0,\0\0\0\77\0\0\0H\0\0\0H\0\0\0@\0"
335 "\0\0\37\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
336 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
337 "\0\0\0\0\0\0\2\0\0\0\7\0\0\0\13\0\0\0\16\0\0\0\16\0\0\0\14\0\0\0\5\0"
338 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"};
339
340
341/* GdkPixbuf RGBA C-Source image dump */
342
343#ifdef __SUNPRO_C
344#pragma align 4 (stock_book_open)
345#endif
346#ifdef __GNUC__
347static const guint8 stock_book_open[] __attribute__ ((__aligned__ (4))) =
348#else
349static const guint8 stock_book_open[] =
350#endif
351{ ""
352 /* Pixbuf magic (0x47646b50) */
353 "GdkP"
354 /* length: header (24) + pixel_data (2304) */
355 "\0\0\11\30"
356 /* pixdata_type (0x1010002) */
357 "\1\1\0\2"
358 /* rowstride (96) */
359 "\0\0\0`"
360 /* width (24) */
361 "\0\0\0\30"
362 /* height (24) */
363 "\0\0\0\30"
364 /* pixel_data: */
365 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3OOOD\0\0\0\377\4\5\6"
366 "\377\0\0\0;\0\0\0\20\0\0\0\6\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
367 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
368 "\0\0\0\0\0\0\0\0\0\0\0\0\0\3NNNE\13\17\22\377\225\237\252\377\303\306"
369 "\312\356\0\0\0\377\0\0\0&\0\0\0\22\0\0\0\5\0\0\0\1\0\0\0\0\0\0\0\0\0"
370 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
371 "\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0.\13\17\22\377\202\220\236\377\361\361"
372 "\361\377\325\327\330\377\12\15\20\377\0\0\0_\0\0\0\40\0\0\0\13\0\0\0"
373 "\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
374 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0.\21\27\34\377\206\223\240"
375 "\377\357\360\360\377\336\336\336\377\325\325\325\377\233\237\244\324"
376 "\0\0\0\377\0\0\0/\0\0\0\24\0\0\0\5\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0"
377 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0"
378 ".\16\23\27\377\205\222\237\377\357\360\360\377\333\333\333\377\312\312"
379 "\312\377\310\310\310\377\310\311\312\377\14\17\23\377\0\0\0[\0\0\0\40"
380 "\0\0\0\13\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
381 "\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0.\24\32\40\377y\210\225\370\361\361"
382 "\361\377\325\325\325\377\312\312\312\377\322\322\322\377\303\303\303"
383 "\377\315\315\315\377ty~\275\0\0\0\377\0\0\0-\0\0\0\24\0\0\0\6\0\0\0\2"
384 "\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
385 "\0-\27\37&\377\177\215\232\361\357\360\360\377\332\332\332\377\323\323"
386 "\323\377\304\304\304\377\316\316\316\377\300\300\300\377\312\312\312"
387 "\377\261\261\261\336\15\21\25\377\0\0\0Y\0\0\0#\0\0\0\22\0\0\0\14\0\0"
388 "\0\12\0\0\0\12\0\0\0\12\0\0\0\11\0\0\0\7\0\0\0\4\0\0\0\1\0\0\0\0\0\0"
389 "\0\377v\205\222\350\356\357\357\377\331\331\331\377\323\323\323\377\320"
390 "\320\320\377\302\302\302\377\313\313\313\377\311\311\311\377\274\274"
391 "\274\377\244\247\251\344hkl\351333\377\0\0\0\377\0\0\0\377\0\0\0\377"
392 "\0\0\0\377\0\0\0\377\0\0\0\352\0\0\0\177\0\0\0=\0\0\0\20\0\0\0\6\0\0"
393 "\0\1AO]\377\255\265\274\363\352\352\352\377\322\322\322\377\277\277\277"
394 "\377\315\315\315\377\313\313\313\377\275\275\275\377\306\306\306\377"
395 "\265\266\267\365\211\220\226\370\270\270\270\377\377\377\377\377\377"
396 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
397 "\377\377\377\377\377\377@AB\342\0\0\0\177\0\0\0%\0\0\0\20\0\0\0\4\0\0"
398 "\0\377M`t\340\353\353\353\377\321\321\321\377\303\303\303\377\301\301"
399 "\301\377\310\310\310\377\267\267\267\377\303\303\303\377\227\237\247"
400 "\347\241\243\244\376\374\375\375\377\363\364\364\377\353\354\355\377"
401 "\352\353\354\377\351\352\353\377\356\357\361\377\366\367\370\377\344"
402 "\345\346\376\222\223\225\375\0\0\0\377\0\0\0""9\0\0\0\33\0\0\0\7\0\0"
403 "\0=2AO\377\214\230\242\362\347\347\347\377\311\311\311\377\273\273\273"
404 "\377\304\304\304\377\302\302\302\377\244\247\253\346\223\226\231\375"
405 "\327\330\330\377\374\375\375\377\372\374\374\377\371\372\373\377\370"
406 "\371\372\377\367\370\371\377\365\366\370\377\367\367\371\377\306\307"
407 "\307\377O^j\375\0\0\0\360\0\0\0B\0\0\0\37\0\0\0\11\0\0\0\23\0\0\0\377"
408 "L_r\340\350\350\350\377\306\306\306\377\276\276\276\377\270\270\270\377"
409 "\265\265\266\361\227\236\244\356\250\250\250\377\375\376\376\377\365"
410 "\366\366\377\347\351\351\377\353\354\355\377\352\353\354\377\360\361"
411 "\362\377\370\371\372\377\340\342\343\377\217\226\235\376\25\34\"\377"
412 "\0\0\0\201\0\0\0>\0\0\0\34\0\0\0\10\0\0\0\13\0\0\0A5DS\377\215\231\242"
413 "\363\343\343\343\377\301\301\301\377\276\276\276\377\216\224\232\316"
414 "\235\237\237\376\377\377\377\377\375\376\376\377\374\375\375\377\372"
415 "\374\374\377\362\363\364\377\361\362\363\377\367\370\371\377\366\366"
416 "\367\377\246\250\253\377s\177\212\376\4\5\6\377\0\0\0P\0\0\0""1\0\0\0"
417 "\24\0\0\0\5\0\0\0\5\0\0\0\24\0\0\0\377K_q\340\345\345\345\377\301\301"
418 "\301\377\236\237\240\326\227\231\233\375\331\331\331\377\377\377\377"
419 "\377\347\350\350\377\356\357\357\377\364\365\365\377\371\372\373\377"
420 "\370\371\372\377\373\373\373\377\330\330\332\377\223\233\243\377\17\24"
421 "\30\377\0\0\0t\0\0\0B\0\0\0\"\0\0\0\14\0\0\0\3\0\0\0\2\0\0\0\13\0\0\0"
422 "A9IW\377\202\217\227\360\333\333\333\370\212\216\222\347\264\264\264"
423 "\377\377\377\377\377\377\377\377\377\375\376\376\377\365\366\366\377"
424 "\354\356\356\377\346\347\350\377\372\372\373\377\365\365\367\377\256"
425 "\262\266\377\\l|\377\0\0\0\377\0\0\0P\0\0\0""1\0\0\0\25\0\0\0\6\0\0\0"
426 "\1\0\0\0\0\0\0\0\5\0\0\0\24\0\0\0\377J]p\336\273\273\273\321\253\253"
427 "\253\377\377\377\377\377\370\370\370\377\361\361\361\377\357\360\360"
428 "\377\374\375\375\377\372\373\373\377\371\372\373\377\373\374\374\377"
429 "\336\341\343\377\235\246\256\377\12\15\20\377\0\0\0t\0\0\0A\0\0\0\"\0"
430 "\0\0\13\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\13\0\0\0A$/:\377imq\346"
431 "wxy\377\362\363\363\377\377\377\377\377\377\377\377\377\377\377\377\377"
432 "\360\360\360\377\363\363\363\377\373\374\374\377\371\371\372\377\273"
433 "\277\304\377Vgy\377\0\0\0\377\0\0\0P\0\0\0""1\0\0\0\25\0\0\0\6\0\0\0"
434 "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0\24\0\0\0\377J_t\3701>K\376\263"
435 "\275\306\375\321\327\335\377\331\336\343\377\366\367\367\377\365\365"
436 "\365\377\377\377\377\377\377\377\377\377\321\322\324\377\232\243\254"
437 "\377\4\5\6\377\0\0\0t\0\0\0A\0\0\0!\0\0\0\13\0\0\0\2\0\0\0\0\0\0\0\0"
438 "\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\13\0\0\0""7\0\0\0\256+4<\366)2;\377O_"
439 "p\377^q\204\376\221\236\253\375\237\253\266\375\277\307\320\377\350\354"
440 "\356\377\262\270\276\377q}\210\376\0\0\0\377\0\0\0P\0\0\0""1\0\0\0\25"
441 "\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"
442 "\0\22\0\0\0&\0\0\0:\0\0\0Y\0\0\0\200\0\0\0\301%-5\377Qar\377Vgy\375z"
443 "\206\225\375v\205\224\374\0\0\0\377\0\0\0r\0\0\0\77\0\0\0!\0\0\0\13\0"
444 "\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0"
445 "\6\0\0\0\20\0\0\0\34\0\0\0%\0\0\0-\0\0\0""8\0\0\0X\0\0\0\200\0\0\0\275"
446 ",4=\377!'.\377\0\0\0p\0\0\0D\0\0\0*\0\0\0\23\0\0\0\5\0\0\0\1\0\0\0\0"
447 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0"
448 "\0\10\0\0\0\14\0\0\0\21\0\0\0\31\0\0\0\"\0\0\0,\0\0\0""7\0\0\0A\0\0\0"
449 "C\0\0\0;\0\0\0)\0\0\0\26\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
450 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2"
451 "\0\0\0\4\0\0\0\6\0\0\0\13\0\0\0\20\0\0\0\30\0\0\0\37\0\0\0\40\0\0\0\33"
452 "\0\0\0\21\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
453 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
454 "\0\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\6\0\0\0\10\0\0\0\11\0\0\0\7\0\0\0\4"
455 "\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"};
456
457
458/* GdkPixbuf RGBA C-Source image dump */
459
460#ifdef __SUNPRO_C
461#pragma align 4 (stock_book_red)
462#endif
463#ifdef __GNUC__
464static const guint8 stock_book_red[] __attribute__ ((__aligned__ (4))) =
465#else
466static const guint8 stock_book_red[] =
467#endif
468{ ""
469 /* Pixbuf magic (0x47646b50) */
470 "GdkP"
471 /* length: header (24) + pixel_data (2304) */
472 "\0\0\11\30"
473 /* pixdata_type (0x1010002) */
474 "\1\1\0\2"
475 /* rowstride (96) */
476 "\0\0\0`"
477 /* width (24) */
478 "\0\0\0\30"
479 /* height (24) */
480 "\0\0\0\30"
481 /* pixel_data: */
482 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
483 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
484 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
485 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0""9\0\0\0\302\0\0\0\377\0\0"
486 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
487 "\0\0\377\0\0\0\357\0\0\0\356\0\0\0\346\0\0\0\342\0\0\0w\0\0\0\13\0\0"
488 "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32\37\21\16\377\310"
489 "\225\213\377\272ym\377\264n`\377\260fW\377\252^O\377\240YK\377\226SF"
490 "\377\216OC\377\216OC\377\216OC\377\216OC\377\216OC\377\225RF\377xC8\377"
491 "!\22\17\376\0\0\0.\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
492 "\0\0\273\265pb\377\303\214\201\377\266re\377\234WI\377\221PD\377\206"
493 "J>\377zD9\377o>4\377i;1\377i;1\377o>4\377o>4\377vA7\377o>4\377X0)\377"
494 "'\26\22\372\0\0\0N\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22"
495 "\21\11\10\377\311\227\215\377\274}q\377\241ZK\377\230TG\377\214MA\377"
496 "\201G<\377vA7\377k;2\377i;1\377i;1\377i;1\377i;1\377tA6\377\\3+\377;"
497 "!\33\377\0\0\0^\0\0\0D\0\0\0\16\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
498 "\255\217OC\377\311\227\215\377\265qc\377\235WI\377\221PD\377\210K\77"
499 "\377|E:\377p>4\377i;1\377i;1\377i;1\377i;1\377l<3\377tA6\377U/(\377O"
500 ",%\375\0\0\0\377\0\0\0%\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0"
501 "\0\377\311\227\215\377\275~r\377\244[L\377\231UH\377\215NB\377\202H<"
502 "\377wB8\377l<3\377i;1\377i;1\377k;2\377i;1\377s@6\377\\3+\377,\30\24"
503 "\377\201\201\201\377I(\"\377\0\0\0F\0\0\0\15\0\0\0\0\0\0\0\0\0\0\0\0"
504 "\0\0\0\232\217OC\377\304\215\202\377\265qc\377\237XJ\377\223RE\377\211"
505 "L@\377~F;\377s@6\377i;1\377i;1\377i;1\377i;1\377k;2\377wB8\377U/(\377"
506 "4\35\30\376KKK\377\220\220\220\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0\0\0"
507 "\0\0\20\0\0\0\377\310\226\214\375\274}q\377\245\\M\377\232VH\377\217"
508 "OC\377\203I=\377xC8\377m=3\377i;1\377i;1\377i;1\377i;1\377q\77""5\377"
509 "_4,\377-\31\25\377VVV\366ggg\377333\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0"
510 "\0\0\0\0\335\235WI\377\303\214\201\377\266re\377\240YK\377\225RF\377"
511 "\212L@\377\177G;\377tA6\377i;1\377i;1\377i;1\377i;1\377i;1\377vA7\377"
512 "Y1)\3778\37\32\377HHH\377\270wj\377\0\0\0\377\0\0\0c\0\0\0\21\0\0\0\0"
513 "\0\0\0!\0\0\0\377\310\226\214\377\300\205y\377\254`P\377\234WI\377\221"
514 "PD\377\206J>\377zD9\377o>4\377i;1\377i;1\377i;1\377i;1\377m=3\377f8/"
515 "\377/\32\26\377ggg\377nnn\377_4,\377\0\0\0\373\0\0\0R\0\0\0\25\0\0\0"
516 "\0\0\0\0\245\231UH\377\305\220\205\377\264n`\377\244[L\377\231UH\377"
517 "\215NB\377\202H<\377wB8\377l<3\377i;1\377i;1\377i;1\377i;1\377wB8\377"
518 "U/(\377;!\33\377XXX\377\267tg\377\21\11\10\372\0\0\0\234\0\0\0I\0\0\0"
519 "\17\0\0\0\13\0\0\0\377\262th\337\302\210}\377\261hY\377\237XJ\377\223"
520 "RE\377\211L@\377~F;\377s@6\377i;1\377i;1\377i;1\377i;1\377i;1\377g90"
521 "\3772\33\27\377KKK\377ttt\377zE:\370\0\0\0\364\0\0\0U\0\0\0+\0\0\0\7"
522 "\0\0\0\206\240YK\377\333\272\264\375\324\254\244\377\320\243\233\377"
523 "\315\237\226\377\312\231\217\377\307\224\211\377\302\210}\377\266re\377"
524 "\265pb\377\265pb\377\265pb\377\265pb\377\260fW\377\214MA\377I(\"\377"
525 "^^^\377\271xk\377\21\11\10\372\0\0\0\233\0\0\0G\0\0\0\21\0\0\0\1\6\3"
526 "\3\331\322\250\240\377T.'\377J)#\377J)#\377J)#\377J)#\377J)#\377J)#\377"
527 "J)#\377J)#\377J)#\377J)#\377J)#\377J)#\377G'!\377ccc\377xxx\377\202H"
528 "<\377\0\0\0\365\0\0\0U\0\0\0*\0\0\0\6\0\0\0\0\24\13\11\377\270wj\377"
529 "Y1)\377___\373ttt\377\226\226\226\377\261\261\261\377\257\257\257\377"
530 "\305\305\305\377\316\316\316\377\272\272\272\377\302\302\302\377\303"
531 "\303\303\377\313\313\313\377\322\322\322\377\332\332\332\377\225\225"
532 "\225\377\264m_\377\"\23\20\371\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0\0"
533 "\0\0\21\11\10\377\247]N\377vA7\377~~~\377\344\344\344\377\344\344\344"
534 "\377\341\341\341\377\337\337\337\377\337\337\337\377\362\362\362\377"
535 "\375\375\375\377\363\363\363\377\363\363\363\377\363\363\363\377\250"
536 "\250\250\377\265\265\265\377mmm\377\202H<\377\1\0\0\370\0\0\0U\0\0\0"
537 "*\0\0\0\6\0\0\0\0\0\0\0\0""2\33\27\377\232VH\377\247]N\377\221PD\377"
538 "\177G;\377\333\333\333\377\352\352\352\377\357\357\357\377\357\357\357"
539 "\377\346\346\346\377\336\336\336\377\341\341\341\377\341\341\341\377"
540 "\337\337\337\377\342\342\342\377zzz\377\267sf\377$\24\21\367\0\0\0\234"
541 "\0\0\0I\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0""9\0\0\0\377\11\5\4\354"
542 "c80\363\203MB\351\214QE\357\217OC\377\225RF\377\227\227\227\377\334\334"
543 "\334\377\345\345\345\377\353\353\353\377\371\371\371\377\371\371\371"
544 "\377\205\205\205\377\246\246\246\377\303\213\200\377\2\1\1\370\0\0\0"
545 "U\0\0\0*\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0e\0\0\0"
546 "\276\0\0\0\346\0\0\0\360\0\0\0\363f:1\371sA7\371\214OC\367\217QE\366"
547 "\222QD\377\320\245\234\377\340\340\340\377\352\352\352\377\303\213\200"
548 "\377%\25\21\373\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0\0\0\0"
549 "\0\0\0\0\0\0\0\0\0\6\0\0\0\17\0\0\0\34\0\0\0""4\0\0\0C\0\0\0g\0\0\0\251"
550 "\0\0\0\344\0\0\0\361\0\0\0\356S/(\365j;2\371\201I=\372\211MB\367\205"
551 "LA\357\3\2\1\367\0\0\0U\0\0\0+\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
552 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\12\0\0\0\15\0\0\0\20\0\0\0\33"
553 "\0\0\0""0\0\0\0C\0\0\0_\0\0\0\235\0\0\0\327\0\0\0\356\0\0\0\354\0\0\0"
554 "\347\0\0\0{\0\0\0F\0\0\0\21\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
555 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0"
556 "\10\0\0\0\15\0\0\0\20\0\0\0\30\0\0\0,\0\0\0\77\0\0\0H\0\0\0H\0\0\0@\0"
557 "\0\0\37\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
558 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
559 "\0\0\0\0\0\0\2\0\0\0\7\0\0\0\13\0\0\0\16\0\0\0\16\0\0\0\14\0\0\0\5\0"
560 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"};
561
562
563/* GdkPixbuf RGBA C-Source image dump */
564
565#ifdef __SUNPRO_C
566#pragma align 4 (stock_book_yellow)
567#endif
568#ifdef __GNUC__
569static const guint8 stock_book_yellow[] __attribute__ ((__aligned__ (4))) =
570#else
571static const guint8 stock_book_yellow[] =
572#endif
573{ ""
574 /* Pixbuf magic (0x47646b50) */
575 "GdkP"
576 /* length: header (24) + pixel_data (2304) */
577 "\0\0\11\30"
578 /* pixdata_type (0x1010002) */
579 "\1\1\0\2"
580 /* rowstride (96) */
581 "\0\0\0`"
582 /* width (24) */
583 "\0\0\0\30"
584 /* height (24) */
585 "\0\0\0\30"
586 /* pixel_data: */
587 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
588 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
589 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
590 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0""9\0\0\0\302\0\0\0\377\0\0"
591 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
592 "\0\0\377\0\0\0\357\0\0\0\356\0\0\0\346\0\0\0\342\0\0\0w\0\0\0\13\0\0"
593 "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32(\40\5\377\352\315"
594 "i\377\344\300C\377\342\2733\377\341\267&\377\333\261\36\377\317\247\34"
595 "\377\303\235\32\377\270\224\31\377\270\224\31\377\270\224\31\377\270"
596 "\224\31\377\270\224\31\377\301\234\32\377\234~\25\377*\"\6\376\0\0\0"
597 ".\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\273\343\274"
598 "4\377\350\311]\377\343\2758\377\312\243\33\377\273\227\32\377\255\214"
599 "\30\377\236\177\25\377\220t\23\377\211n\22\377\211n\22\377\220t\23\377"
600 "\220t\23\377\230{\25\377\220t\23\377r\\\17\3771(\7\372\0\0\0N\0\0\0\20"
601 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22\26\22\3\377\352\316m\377\345"
602 "\302H\377\321\250\34\377\304\236\33\377\264\222\31\377\246\206\27\377"
603 "\230{\25\377\212p\23\377\211n\22\377\211n\22\377\211n\22\377\211n\22"
604 "\377\227y\24\377w`\20\377M>\12\377\0\0\0^\0\0\0D\0\0\0\16\0\0\0\0\0\0"
605 "\0\0\0\0\0\0\0\0\0\0\0\0\0\255\272\226\31\377\352\316m\377\343\2746\377"
606 "\313\244\34\377\273\227\32\377\257\215\30\377\241\202\26\377\221u\24"
607 "\377\211n\22\377\211n\22\377\211n\22\377\211n\22\377\214q\23\377\227"
608 "y\24\377nY\17\377fR\16\375\0\0\0\377\0\0\0%\0\0\0\5\0\0\0\0\0\0\0\0\0"
609 "\0\0\0\0\0\0\21\0\0\0\377\352\316m\377\345\303J\377\324\253\35\377\306"
610 "\240\33\377\266\223\31\377\250\210\27\377\232|\25\377\214q\23\377\211"
611 "n\22\377\211n\22\377\212p\23\377\211n\22\377\225x\24\377w`\20\3779.\10"
612 "\377\201\201\201\377^L\15\377\0\0\0F\0\0\0\15\0\0\0\0\0\0\0\0\0\0\0\0"
613 "\0\0\0\232\272\226\31\377\350\312_\377\343\2746\377\315\245\34\377\277"
614 "\232\32\377\261\217\30\377\243\203\26\377\225x\24\377\211n\22\377\211"
615 "n\22\377\211n\22\377\211n\22\377\212p\23\377\232|\25\377nY\17\377C6\11"
616 "\376KKK\377\220\220\220\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\20"
617 "\0\0\0\377\351\315k\375\345\302H\377\326\255\35\377\310\241\33\377\272"
618 "\226\31\377\252\211\27\377\234~\25\377\216r\23\377\211n\22\377\211n\22"
619 "\377\211n\22\377\211n\22\377\223w\24\377zc\21\377;0\10\377VVV\366ggg"
620 "\377333\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\335\313\244\34\377"
621 "\350\311]\377\343\2758\377\317\247\34\377\301\234\32\377\263\220\30\377"
622 "\245\205\26\377\227y\24\377\211n\22\377\211n\22\377\211n\22\377\211n"
623 "\22\377\211n\22\377\230{\25\377s]\20\377I;\12\377HHH\377\344\277\77\377"
624 "\0\0\0\377\0\0\0c\0\0\0\21\0\0\0\0\0\0\0!\0\0\0\377\352\316k\377\347"
625 "\306R\377\337\264\36\377\312\243\33\377\273\227\32\377\255\214\30\377"
626 "\236\177\25\377\220t\23\377\211n\22\377\211n\22\377\211n\22\377\211n"
627 "\22\377\216r\23\377\203j\22\377=1\10\377ggg\377nnn\377zc\21\377\0\0\0"
628 "\373\0\0\0R\0\0\0\25\0\0\0\0\0\0\0\245\306\240\33\377\351\313b\377\342"
629 "\2733\377\324\253\35\377\306\240\33\377\266\223\31\377\250\210\27\377"
630 "\232|\25\377\214q\23\377\211n\22\377\211n\22\377\211n\22\377\211n\22"
631 "\377\232|\25\377nY\17\377M>\12\377XXX\377\344\276;\377\25\21\3\372\0"
632 "\0\0\234\0\0\0I\0\0\0\17\0\0\0\13\0\0\0\377\326\266D\337\347\307X\377"
633 "\341\270*\377\315\245\34\377\277\232\32\377\261\217\30\377\243\203\26"
634 "\377\225x\24\377\211n\22\377\211n\22\377\211n\22\377\211n\22\377\211"
635 "n\22\377\205k\22\377A4\10\377KKK\377ttt\377\234\177\30\370\0\0\0\364"
636 "\0\0\0U\0\0\0+\0\0\0\7\0\0\0\206\317\247\34\377\360\336\236\375\356\330"
637 "\213\377\355\324~\377\354\322w\377\353\317n\377\352\314g\377\347\307"
638 "X\377\343\2758\377\343\2744\377\343\2744\377\343\2744\377\343\2744\377"
639 "\341\267&\377\264\222\31\377^L\15\377^^^\377\344\300A\377\25\21\3\372"
640 "\0\0\0\233\0\0\0G\0\0\0\21\0\0\0\1\7\6\1\331\356\326\205\377lW\17\377"
641 "`N\15\377`N\15\377`N\15\377`N\15\377`N\15\377`N\15\377`N\15\377`N\15"
642 "\377`N\15\377`N\15\377`N\15\377`N\15\377]K\14\377ccc\377xxx\377\250\210"
643 "\27\377\0\0\0\365\0\0\0U\0\0\0*\0\0\0\6\0\0\0\0\32\25\3\377\344\277\77"
644 "\377s]\20\377___\373ttt\377\226\226\226\377\261\261\261\377\257\257\257"
645 "\377\305\305\305\377\316\316\316\377\272\272\272\377\302\302\302\377"
646 "\303\303\303\377\313\313\313\377\322\322\322\377\332\332\332\377\225"
647 "\225\225\377\342\2721\377,#\6\371\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0"
648 "\0\0\0\26\22\3\377\330\256\35\377\230{\25\377~~~\377\344\344\344\377"
649 "\344\344\344\377\341\341\341\377\337\337\337\377\337\337\337\377\362"
650 "\362\362\377\375\375\375\377\363\363\363\377\363\363\363\377\363\363"
651 "\363\377\250\250\250\377\265\265\265\377mmm\377\250\210\27\377\1\1\0"
652 "\370\0\0\0U\0\0\0*\0\0\0\6\0\0\0\0\0\0\0\0A4\10\377\310\241\33\377\330"
653 "\256\35\377\273\227\32\377\245\205\26\377\333\333\333\377\352\352\352"
654 "\377\357\357\357\377\357\357\357\377\346\346\346\377\336\336\336\377"
655 "\341\341\341\377\341\341\341\377\337\337\337\377\342\342\342\377zzz\377"
656 "\343\275:\377-%\7\367\0\0\0\234\0\0\0I\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0"
657 "\0\0\0\0""9\0\0\0\377\13\10\1\354~e\25\363\243\206!\351\260\220\40\357"
658 "\272\226\31\377\301\234\32\377\227\227\227\377\334\334\334\377\345\345"
659 "\345\377\353\353\353\377\371\371\371\377\371\371\371\377\205\205\205"
660 "\377\246\246\246\377\350\310[\377\2\2\0\370\0\0\0U\0\0\0*\0\0\0\7\0\0"
661 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0e\0\0\0\276\0\0\0\346\0\0\0"
662 "\360\0\0\0\363\202i\24\371\224w\26\371\262\220\35\367\266\224\36\366"
663 "\275\231\32\377\355\325\200\377\340\340\340\377\352\352\352\377\350\310"
664 "[\3770&\6\373\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0"
665 "\0\0\0\0\0\0\0\0\6\0\0\0\17\0\0\0\34\0\0\0""4\0\0\0C\0\0\0g\0\0\0\251"
666 "\0\0\0\344\0\0\0\361\0\0\0\356iU\21\365\207n\25\371\245\206\31\372\257"
667 "\215\33\367\250\211\36\357\4\3\0\367\0\0\0U\0\0\0+\0\0\0\7\0\0\0\0\0"
668 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\12\0\0\0"
669 "\15\0\0\0\20\0\0\0\33\0\0\0""0\0\0\0C\0\0\0_\0\0\0\235\0\0\0\327\0\0"
670 "\0\356\0\0\0\354\0\0\0\347\0\0\0{\0\0\0F\0\0\0\21\0\0\0\1\0\0\0\0\0\0"
671 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
672 "\0\0\0\0\0\0\0\3\0\0\0\10\0\0\0\15\0\0\0\20\0\0\0\30\0\0\0,\0\0\0\77"
673 "\0\0\0H\0\0\0H\0\0\0@\0\0\0\37\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
674 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
675 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\7\0\0\0\13\0\0\0\16\0\0"
676 "\0\16\0\0\0\14\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
677 "\0"};
678
679
680/* GdkPixbuf RGBA C-Source image dump */
681
682#ifdef __SUNPRO_C
683#pragma align 4 (stock_line_in)
684#endif
685#ifdef __GNUC__
686static const guint8 stock_line_in[] __attribute__ ((__aligned__ (4))) =
687#else
688static const guint8 stock_line_in[] =
689#endif
690{ ""
691 /* Pixbuf magic (0x47646b50) */
692 "GdkP"
693 /* length: header (24) + pixel_data (2304) */
694 "\0\0\11\30"
695 /* pixdata_type (0x1010002) */
696 "\1\1\0\2"
697 /* rowstride (96) */
698 "\0\0\0`"
699 /* width (24) */
700 "\0\0\0\30"
701 /* height (24) */
702 "\0\0\0\30"
703 /* pixel_data: */
704 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
705 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
706 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
707 "\0\0\0\0\0\0\0\0\0\0-..\257###\377\10\10\10x\0\0\0\0\0\0\0\0\0\0\0\0"
708 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
709 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
710 "\0\0\0\0\25\25\25\377\345\345\346\377###\377\0\0\0\0\0\0\0\0\0\0\0\0"
711 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
712 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
713 "\0\0\0\0fff\315\356\356\356\377MMM\217\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
714 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
715 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
716 "\0\2\2\2\337\277\277\277\377\3\3\3\325\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
717 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\33\0\0\0i\0\0\0s\0\0\0_\0\0"
718 "\0=\0\0\0!\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21"
719 "\21\22\377\354\354\355\377\22\22\22\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
720 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0\0\0\262\216\216\216\260\210\210\210"
721 "\233TTT\210$$$v\0\0\0b\0\0\0F\0\0\0&\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
722 "\0\0\0\0$$%\243\273\273\273\377\0\0\0O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
723 "\0\0\0\0\0\0\0\0\0\0\0\0\212lll\326\316\316\316\311\245\245\245\274\0"
724 "\0\0\242\0\0\0\214\0\0\0v\0\0\0U\0\0\0;\0\0\0+\0\0\0\"\0\0\0\0\0\0\0"
725 "\0\0\0\0\0\0\0\0\0\0\0\0\377\352\352\352\377\0\0\0\377\0\0\0\0\0\0\0"
726 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\230mmm\347\316\316\316\345\10\10\10"
727 "\313\10\10\10\231\0\0\0G\0\0\0=\0\0\0""1\0\0\0:\0\0\0""2\0\0\0#\0\0\0"
728 "\37\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377RRR\377\332\332\334\377===\377\0"
729 "\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\343\265\265\265\363KK"
730 "K\351\0\0\0M\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\33"
731 "\0\0\0\35\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\373\373\373\377\234\233"
732 "\234\377\324\324\324\377\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\231"
733 "GGG\361\244\244\244\365\0\0\0\242\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
734 "\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\31\0\0\0\0\0\0\0\0\0\0\0\377\221\221"
735 "\221\377===\377===\377\36\36\36\377\77\77\77\377\0\0\0\377\0\0\0\0\0"
736 "\0\0\0\0\0\0\331___\367###\362\0\0\0B\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
737 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\377\221"
738 "\221\221\377===\377===\377\36\36\36\377BBB\377\0\0\0\377\0\0\0\0\0\0"
739 "\0\0\0\0\0\342SSS\355\0\0\0\353\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
740 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377"
741 "\221\221\221\377===\377===\377\36\36\36\377BBB\377\0\0\0\377\0\0\0\0"
742 "\0\0\0\0\0\0\0\330SSS\353\0\0\0\355\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
743 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
744 "\377\221\221\221\377===\377===\377\36\36\36\377BBB\377\0\0\0\377\0\0"
745 "\0\0\0\0\0\0\0\0\0\262'''\332\"\"\"\367\0\0\0<\0\0\0\0\0\0\0\0\0\0\0"
746 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
747 "\0\0\377\221\221\221\377===\377===\377\36\36\36\377BBB\377\0\0\0\377"
748 "\0\0\0\0\0\0\0\0\0\0\0D\0\0\0\315UUU\362\0\0\0\313\0\0\0\0\0\0\0\0\0"
749 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
750 "\0\0\0\0\377\221\221\221\377===\377===\377\36\36\36\377EEE\377\0\0\0"
751 "\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\241LLL\322FFF\336\0\0\0\234\0\0\0"
752 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
753 "\0\0\0\0\0\0\377AAA\377ddd\377%%%\377,,,\377<<<\377\0\0\0\377\0\0\0\0"
754 "\0\0\0\0\0\0\0\0\0\0\0\35\0\0\0\236XXX\257FFF\273\0\0\0q\0\0\0\0\0\0"
755 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
756 "\0\0\0\377\25\25\25\377\7\7\7\377(((\377\0\0\0\377\0\0\0\0\0\0\0\0\0"
757 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0""9\0\0\0\205ZZZ\233\0\0\0\236\0\0\0b\0\0"
758 "\0\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
759 "\0\0\0\0\0\0\0\377+++\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
760 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0\0\0cXXX{\0\0\0{\0\0\0""3\0\0\0%\0\0\0"
761 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\324"
762 "+++\324\0\0\0\324\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
763 "\0\0\0\0\0\0\0\0\0""7\0\0\0T\0\0\0_\0\0\0^\0\0\0#\0\0\0\0\0\0\0\0\0\0"
764 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\252+++\252\0\0\0\252"
765 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
766 "\0\13\0\0\0@\0\0\0F\0\0\0J\0\0\0""2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
767 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\177+++\177\0\0\0\177\0\0\0\0\0\0"
768 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""1"
769 "\0\0\0:\7\7\7@\0\0\0,\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
770 "\0\0\0\0\0\0\0\0\0\0\0U+++U\0\0\0U\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
771 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\27\0\0\0/\0\0\0""2\10\10\10""5\0"
772 "\0\0+\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
773 "\0\0\0*+++*\0\0\0*\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
774 "\0\0\0\0\0\0\23\0\0\0""0\0\0\0-\14\14\14-\0\0\0+\0\0\0\0\0\0\0\0\0\0"
775 "\0\0\0\0\0\0\0\0\0\0"};
776
777
778/* GdkPixbuf RGBA C-Source image dump */
779
780#ifdef __SUNPRO_C
781#pragma align 4 (stock_mail)
782#endif
783#ifdef __GNUC__
784static const guint8 stock_mail[] __attribute__ ((__aligned__ (4))) =
785#else
786static const guint8 stock_mail[] =
787#endif
788{ ""
789 /* Pixbuf magic (0x47646b50) */
790 "GdkP"
791 /* length: header (24) + pixel_data (2304) */
792 "\0\0\11\30"
793 /* pixdata_type (0x1010002) */
794 "\1\1\0\2"
795 /* rowstride (96) */
796 "\0\0\0`"
797 /* width (24) */
798 "\0\0\0\30"
799 /* height (24) */
800 "\0\0\0\30"
801 /* pixel_data: */
802 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
803 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
804 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
805 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
806 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
807 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
808 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
809 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
810 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
811 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
812 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
813 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2"
814 "\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0"
815 "\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0"
816 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
817 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
818 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0m\0"
819 "\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\377SSS\377\377\377\377"
820 "\377\377\377\377\377\377\377\377\377\377\377\377\377\376\376\376\377"
821 "\375\375\375\377\374\374\374\377\373\373\373\377\371\371\371\377\370"
822 "\370\370\377\367\367\367\377\366\366\366\377\365\365\365\377\364\364"
823 "\364\377\343\343\343\377SSS\377\0\0\0\377\0\0\0\31\0\0\0\10\0\0\0\1\0"
824 "\0\0\0\0\0\0\2\0\0\0\377\356\356\356\377OOO\377\377\377\377\377\365\365"
825 "\365\377\364\364\364\377\363\363\363\377\362\362\362\377\362\362\362"
826 "\377\361\361\361\377\360\360\360\377\360\360\360\377\357\357\357\377"
827 "\356\356\356\377\355\355\355\377\343\343\343\377OOO\377\256\256\256\377"
828 "\0\0\0\377\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377"
829 "\377\377\344\344\344\377CCC\377\375\375\375\377\363\363\363\377\362\362"
830 "\362\377\362\362\362\377\361\361\361\377\360\360\360\377\357\357\357"
831 "\377\356\356\356\377\356\356\356\377\355\355\355\377\343\343\343\377"
832 "OOO\377\254\254\254\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0"
833 "\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\344\344"
834 "\344\377OOO\377\373\373\373\377\361\361\361\377\360\360\360\377\360\360"
835 "\360\377\357\357\357\377\356\356\356\377\355\355\355\377\355\355\355"
836 "\377\343\343\343\377CCC\377\240\240\240\377\324\324\324\377\310\310\310"
837 "\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377"
838 "\377\377\377\373\373\373\377\365\365\365\377\344\344\344\377CCC\377\370"
839 "\370\370\377\360\360\360\377\357\357\357\377\356\356\356\377\355\355"
840 "\355\377\354\354\354\377\343\343\343\377OOO\377\225\225\225\377\324\324"
841 "\324\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0"
842 "\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365"
843 "\365\365\377\365\365\365\377\344\344\344\377>>>\377\365\365\365\377\356"
844 "\356\356\377\355\355\355\377\354\354\354\377\343\343\343\377MMM\377\201"
845 "\201\201\377\306\306\306\377\344\344\344\377\344\344\344\377\310\310"
846 "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377"
847 "\377\377\377\377\373\373\373\377\365\365\365\377\365\365\365\377\344"
848 "\344\344\377jjj\377CCC\377\363\363\363\377\354\354\354\377\343\343\343"
849 "\377OOO\377jjj\377\306\306\306\377\306\306\306\377\365\365\365\377\344"
850 "\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0"
851 "\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365\365\365\377"
852 "\344\344\344\377ccc\377\377\377\377\377\271\271\271\377OOO\377\360\360"
853 "\360\377OOO\377\225\225\225\377\306\306\306\377sss\377\306\306\306\377"
854 "\365\365\365\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0"
855 "\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377"
856 "\344\344\344\377ccc\377\377\377\377\377\365\365\365\377\344\344\344\377"
857 "\324\324\324\377OOO\377\254\254\254\377\306\306\306\377\344\344\344\377"
858 "\344\344\344\377|||\377\344\344\344\377\344\344\344\377\310\310\310\377"
859 "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377"
860 "\377\377\344\344\344\377sss\377\377\377\377\377\365\365\365\377\365\365"
861 "\365\377\365\365\365\377\365\365\365\377\344\344\344\377\344\344\344"
862 "\377\365\365\365\377\365\365\365\377\365\365\365\377\344\344\344\377"
863 "|||\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0"
864 "\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377|||\377\377\377\377\377"
865 "\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377\344"
866 "\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377\344\344"
867 "\344\377\344\344\344\377\344\344\344\377\344\344\344\377|||\377\310\310"
868 "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377"
869 "sss\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377"
870 "\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274"
871 "\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274"
872 "\274\377\274\274\274\377\274\274\274\377ccc\377\0\0\0\377\0\0\0-\0\0"
873 "\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0m\0\0\0\377\0\0\0\377\0\0\0\377\0"
874 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
875 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
876 "\0\0\0\207\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\1\0\0\0\10\0\0\0\31"
877 "\0\0\0(\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0"
878 "-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0(\0\0\0\31\0\0\0\10"
879 "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0\16\0\0\0\21\0\0\0\21"
880 "\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0"
881 "\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\16\0\0\0\10\0"
882 "\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0"
883 "\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0"
884 "\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0"
885 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
886 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
887 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
888 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
889 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
890 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"};
891
892
893/* GdkPixbuf RGBA C-Source image dump */
894
895#ifdef __SUNPRO_C
896#pragma align 4 (stock_mail_compose)
897#endif
898#ifdef __GNUC__
899static const guint8 stock_mail_compose[] __attribute__ ((__aligned__ (4))) =
900#else
901static const guint8 stock_mail_compose[] =
902#endif
903{ ""
904 /* Pixbuf magic (0x47646b50) */
905 "GdkP"
906 /* length: header (24) + pixel_data (2304) */
907 "\0\0\11\30"
908 /* pixdata_type (0x1010002) */
909 "\1\1\0\2"
910 /* rowstride (96) */
911 "\0\0\0`"
912 /* width (24) */
913 "\0\0\0\30"
914 /* height (24) */
915 "\0\0\0\30"
916 /* pixel_data: */
917 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
918 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0"
919 "\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
920 "\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
921 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\321\257"
922 "a\377\361\343\254\377\373\251\17\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
923 "\0\0V\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377"
924 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
925 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\265\265"
926 "\265\377\240k\11\377\361\343\254\377\373\251\17\377\201`\0\377\0\0\0"
927 "\377\340\340\340\377\301\301\301\377\0\0\0\377\0\0\0D\0\0\0\0\0\0\0\0"
928 "\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\364\364\364\377\377\377\377"
929 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
930 "\375\375\375\377\375\375\375\377\0\0\0\377\346\303p\377\361\323\207\377"
931 "\325\217\14\377\0\0\0\377\262\262\262\377\303\303\303\377\373\373\373"
932 "\377\250\250\250\377\0\0\0\377\0\0\0V\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377"
933 "\377\377\377\377\366\366\366\377\377\377\377\377\377\377\377\377\377"
934 "\377\377\377\375\375\375\377\375\375\375\377\375\375\375\377\263\263"
935 "\263\377\240k\11\377\361\343\254\377\373\251\17\377\201`\0\377\0\0\0"
936 "\377\372\372\372\377\255\255\255\377vvv\377]]]\377@@@\377\0\0\0\377\0"
937 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\366\366\366\377\377"
938 "\377\377\377\373\373\373\377\373\373\373\377\373\373\373\377\373\373"
939 "\373\377\370\370\370\377\0\0\0\377\346\303p\377\361\320~\377\325\217"
940 "\14\377\0\0\0\377\254\254\254\377\370\370\366\377\342\342\342\377\205"
941 "\205\205\377KKI\377\26\26\26\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0"
942 "\0\0\377\377\377\377\377\364\364\364\377\375\375\375\377\375\375\375"
943 "\377\373\373\373\377\373\373\373\377\373\373\372\377}}}\377\240k\11\377"
944 "\361\343\254\377\373\251\17\377\201`\0\377\0\0\0\377\364\364\364\377"
945 "\362\362\362\377\360\360\360\377\357\357\357\377\325\325\325\377\255"
946 "\255\255\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377"
947 "\377\362\362\362\377\371\371\371\377\366\366\366\377\366\366\366\377"
948 "\366\366\363\377\363\363\363\377\0\0\0\377\346\303p\377\361\320~\377"
949 "\325\217\14\377\0\0\0\377\207\207\206\377\345\345\345\377\342\342\342"
950 "\377\337\337\337\377\353\353\353\377\342\342\342\377\301\301\301\377"
951 "\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\360\360"
952 "\360\377\370\370\370\377\370\370\370\377\370\370\370\377\370\370\366"
953 "\377\256\256\256\377{S\7\377\361\343\254\377\373\251\17\377\201`\0\377"
954 "\0\0\0\377\355\355\355\377\353\353\353\377\353\353\351\377\351\351\347"
955 "\377\351\351\347\377\340\340\336\377\277\277\277\377\0\0\0\377\0\0\0"
956 "\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\357\357\357\377\363\363"
957 "\363\377\360\360\360\377\360\360\355\377\355\355\355\377\0\0\0\377\346"
958 "\303p\377\361\322\204\377\312\207\13\377\0\0\0\377\236\236\234\377\334"
959 "\334\331\377\331\331\331\377\331\331\326\377\326\326\324\377\345\345"
960 "\344\377\331\331\327\377\272\272\272\377\0\0\0\377\0\0\0\0\0\0\0\0\0"
961 "\0\0\0\0\0\0\377\377\377\377\377\355\355\355\377\364\364\364\377\364"
962 "\364\364\377\362\362\362\377\252\252\252\377\240k\11\377\361\343\254"
963 "\377\373\251\17\377\201`\0\377\0\0\0\377\347\347\345\377\345\345\344"
964 "\377\345\345\344\377\344\344\342\377\340\340\336\377\342\342\340\377"
965 "\331\331\327\377\272\272\272\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0"
966 "\0\0\377\377\377\377\377\353\353\353\377\356\356\354\377\347\347\345"
967 "\377\345\345\345\377\0\0\0\377\346\303p\377\361\322\204\377\312\207\13"
968 "\377\0\0\0\377\227\227\226\377\324\324\321\377\342\342\340\377\340\340"
969 "\336\377\336\336\334\377\336\336\333\377\336\336\334\377\331\331\327"
970 "\377\275\275\274\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377"
971 "\377\377\377\347\347\347\377\357\357\355\377\353\353\353\377\246\246"
972 "\245\377\272|\12\377\373\251\17\377\373\251\17\377z[\0\377\0\0\0\377"
973 "\342\342\340\377\340\340\336\377\336\336\334\377\336\336\333\377\334"
974 "\334\331\377\333\333\331\377\333\333\331\377\325\325\323\377\274\274"
975 "\274\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377"
976 "\345\345\345\377\343\343\343\377\331\331\331\377\0\0\0\377\362\346\266"
977 "\377{{{\377pK\5\377\0\0\0\377ggd\377\313\313\307\377\311\311\307\377"
978 "\334\334\331\377\333\333\327\377\331\331\327\377\327\327\325\377\331"
979 "\331\327\377\327\327\323\377\264\264\264\377\0\0\0\377\0\0\0\0\0\0\0"
980 "\0\0\0\0\0\0\0\0\377\377\377\377\377\342\342\340\377\345\345\344\377"
981 "\344\344\344\377\0\0\0\377\333\325\301\377~oW\377uX\0\377\0\0\0\377\334"
982 "\334\331\377\333\333\331\377\333\333\327\377\331\331\325\377\327\327"
983 "\323\377\325\325\323\377\325\325\321\377\327\327\323\377\320\320\316"
984 "\377\272\272\270\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377"
985 "\377\377\377\336\336\334\377\335\335\333\377\321\321\317\377\16\16\16"
986 "\377SSS\377\0\0\0\377\0\0\0\377\215\215\213\377\304\304\301\377\304\304"
987 "\277\377\301\301\274\377\325\325\321\377\325\325\321\377\323\323\320"
988 "\377\321\321\320\377\323\323\320\377\320\320\316\377\272\272\270\377"
989 "\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\334\334"
990 "\333\377\340\340\334\377\335\335\333\377\0\0\0\377\0\0\0\377\211\211"
991 "\207\377\311\311\306\377\315\315\312\377\320\320\315\377\316\316\313"
992 "\377\320\320\315\377\320\320\315\377\320\320\315\377\320\320\315\377"
993 "\317\317\314\377\320\320\315\377\320\320\314\377\266\266\266\377\0\0"
994 "\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\333\333\331"
995 "\377\324\324\320\377\303\303\300\377[[[\377\221\221\215\377\221\221\217"
996 "\377\237\237\235\377\257\257\254\377\271\271\266\377\276\276\273\377"
997 "\303\303\300\377\305\305\302\377\310\310\305\377\312\312\307\377\313"
998 "\313\310\377\314\314\311\377\314\314\310\377\262\262\262\377\0\0\0\377"
999 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\322\322\320\377\322"
1000 "\322\317\377\317\317\314\377\277\277\275\377\237\237\234\377\210\210"
1001 "\206\377\207\207\205\377\214\214\212\377\225\225\223\377\234\234\232"
1002 "\377\250\250\245\377\261\261\256\377\265\265\263\377\273\273\270\377"
1003 "\276\276\273\377\277\277\274\377\302\302\276\377\262\262\262\377\0\0"
1004 "\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\321\321\316"
1005 "\377\320\320\314\377\314\314\311\377\317\317\314\377\303\303\300\377"
1006 "\256\256\253\377\235\235\232\377\227\227\224\377\227\227\224\377\224"
1007 "\224\221\377\232\232\227\377\237\237\234\377\243\243\240\377\250\250"
1008 "\245\377\252\252\247\377\260\260\254\377\270\270\265\377\260\260\256"
1009 "\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\322"
1010 "\322\317\377\321\321\316\377\321\321\316\377\321\321\316\377\317\317"
1011 "\315\377\313\313\310\377\276\276\274\377\264\264\260\377\254\254\250"
1012 "\377\244\244\242\377\240\240\234\377\240\240\234\377\244\244\240\377"
1013 "\244\244\242\377\250\250\246\377\253\253\247\377\262\262\256\377\244"
1014 "\244\244\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377"
1015 "\377\321\321\320\377\321\321\316\377\320\320\316\377\316\316\314\377"
1016 "\316\316\312\377\316\316\312\377\314\314\310\377\306\306\302\377\274"
1017 "\274\271\377\263\263\257\377\264\264\260\377\253\253\251\377\246\246"
1018 "\243\377\240\240\235\377\246\246\243\377\252\252\247\377\254\254\251"
1019 "\377\241\241\241\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377"
1020 "\377\377\377\261\261\257\377\264\264\263\377\264\264\261\377\264\264"
1021 "\261\377\264\264\261\377\263\263\261\377\263\263\261\377\262\262\256"
1022 "\377\256\256\252\377\247\247\244\377\242\242\240\377\245\245\241\377"
1023 "\245\245\241\377\231\231\227\377\222\222\220\377\224\224\220\377\235"
1024 "\235\233\377\205\205\203\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1025 "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
1026 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
1027 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0r\0\0"
1028 "\0\0"};
1029
1030
1031/* GdkPixbuf RGBA C-Source image dump */
1032
1033#ifdef __SUNPRO_C
1034#pragma align 4 (stock_mail_forward)
1035#endif
1036#ifdef __GNUC__
1037static const guint8 stock_mail_forward[] __attribute__ ((__aligned__ (4))) =
1038#else
1039static const guint8 stock_mail_forward[] =
1040#endif
1041{ ""
1042 /* Pixbuf magic (0x47646b50) */
1043 "GdkP"
1044 /* length: header (24) + pixel_data (2304) */
1045 "\0\0\11\30"
1046 /* pixdata_type (0x1010002) */
1047 "\1\1\0\2"
1048 /* rowstride (96) */
1049 "\0\0\0`"
1050 /* width (24) */
1051 "\0\0\0\30"
1052 /* height (24) */
1053 "\0\0\0\30"
1054 /* pixel_data: */
1055 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1056 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1057 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1058 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1059 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1060 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1"
1061 "\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0"
1062 "\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2"
1063 "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0\377\0\0\0\377\0"
1064 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
1065 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
1066 "\0\0\0\377\0\0\0m\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\377"
1067 "SSS\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1068 "\376\376\376\377\375\375\375\377\374\374\374\377\373\373\373\377\371"
1069 "\371\371\377\370\370\370\377\367\367\367\377\366\366\366\377\365\365"
1070 "\365\377\364\364\364\377\343\343\343\377SSS\377\0\0\0\377\0\0\0\31\0"
1071 "\0\0\10\0\0\0\1\0\0\0\0\0\0\0\2\0\0\0\377\356\356\356\377OOO\377\377"
1072 "\377\377\377\365\365\365\377\364\364\364\377\363\363\363\377\362\362"
1073 "\362\377\362\362\362\377\361\361\361\377\360\360\360\377\360\360\360"
1074 "\377\357\357\357\377\356\356\356\377\355\355\355\377\343\343\343\377"
1075 "OOO\377\256\256\256\377\0\0\0\377\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0"
1076 "\0\2\0\0\0\377\377\377\377\377\344\344\344\377CCC\377\375\375\375\377"
1077 "\363\363\363\377\362\362\362\377\362\362\362\377\361\361\361\377\360"
1078 "\360\360\377\357\357\357\377\356\356\356\377\356\356\356\377\355\355"
1079 "\355\377\343\343\343\377OOO\377\254\254\254\377\310\310\310\377\0\0\0"
1080 "\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377"
1081 "\365\365\365\377\344\344\344\377OOO\377\373\373\373\377\361\361\361\377"
1082 "\360\360\360\377\360\360\360\377\357\357\357\377\356\356\356\377\355"
1083 "\355\355\377\355\355\355\377\343\343\343\377CCC\377\240\240\240\377\324"
1084 "\324\324\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0"
1085 "\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377\365\365\365\377"
1086 "\344\344\344\377CCC\377\370\370\370\377\360\360\360\377\357\357\357\377"
1087 "\356\356\356\377\355\355\355\377\354\354\354\377\343\343\343\377OOO\377"
1088 "\225\225\225\377\324\324\324\377\344\344\344\377\310\310\310\377\0\0"
1089 "\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377"
1090 "\377\365\365\365\377\365\365\365\377\365\365\365\377\344\344\344\377"
1091 ">>>\377\365\365\365\377\356\356\356\377\355\355\355\377\354\354\354\377"
1092 "\343\343\343\377MMM\377\201\201\201\377\306\306\306\377\344\344\344\377"
1093 "\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0"
1094 "\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377\365\365\365"
1095 "\377\365\365\365\377\344\344\344\377jjj\377CCC\377\363\363\363\377\354"
1096 "\354\354\377\343\343\343\377OOO\377jjj\377\306\306\306\377\306\306\306"
1097 "\377\365\365\365\377\0\0\0\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0"
1098 "\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377"
1099 "\365\365\365\377\344\344\344\377ccc\377\377\377\377\377\271\271\271\377"
1100 "OOO\377\360\360\360\377OOO\377\225\225\225\377\306\306\306\377sss\377"
1101 "\306\306\306\377\365\365\365\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0"
1102 "-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373"
1103 "\373\377\344\344\344\377ccc\377\377\377\377\377\365\365\365\377\344\344"
1104 "\344\377\324\324\324\377OOO\377\254\254\254\377\306\306\306\377\344\344"
1105 "\344\377\344\344\344\377|||\377\344\344\344\377\0\0\0\377[\210\262\377"
1106 "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377"
1107 "\377\377\344\344\344\377sss\377\377\377\377\377\365\365\365\377\365\365"
1108 "\365\377\365\365\365\377\365\365\365\377\344\344\344\377\0\0\0\377\0"
1109 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\236\270\321"
1110 "\377P\200\255\377\0\0\0\377\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377"
1111 "\377\377\377\377|||\377\377\377\377\377\344\344\344\377\344\344\344\377"
1112 "\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377\0\0"
1113 "\0\377\265\311\334\377\257\305\332\377\262\307\333\377\266\312\335\377"
1114 "\266\312\335\377\266\312\335\377\244\275\325\377\234\267\321\377P\200"
1115 "\255\377\10\15\21\377\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377sss\377\274\274"
1116 "\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274"
1117 "\377\274\274\274\377\274\274\274\377\274\274\274\377\0\0\0\377\233\266"
1118 "\320\377\240\272\323\377\234\267\321\377\234\267\321\377\233\266\320"
1119 "\377\232\265\317\377\240\272\323\377\234\267\321\377\227\263\316\377"
1120 "_\213\264\377\0\0\0\377\0\0\0\0\0\0\0\2\0\0\0m\0\0\0\377\0\0\0\377\0"
1121 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
1122 "\0\0\0\377\221\260\314\377\236\270\321\377\232\265\317\377\232\265\317"
1123 "\377\233\266\320\377\234\267\321\377\234\267\321\377\234\267\321\377"
1124 "\240\272\323\377\225\262\316\377Ly\243\377\0\0\0\377\0\0\0\1\0\0\0\10"
1125 "\0\0\0\31\0\0\0(\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0"
1126 "\0\377It\234\377\77e\210\377\77e\210\377\77e\210\377\77e\210\377\77e"
1127 "\210\377\77e\210\377\77e\210\377\77e\210\377*C[\377\0\0\0\377\0\0\0\0"
1128 "\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0\16\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21"
1129 "\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\377Eo\226\3777Yx\3777Yx\3777Yx\377"
1130 "7Yx\3777Yx\377\77e\210\377\77e\210\377*C[\377\0\0\0\377\0\0\0\0\0\0\0"
1131 "\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0"
1132 "\0\0\2\0\0\0\2\0\0\0\2\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0"
1133 "\377\0\0\0\377\0\0\0\377\77e\210\377*C[\377\0\0\0\377\0\0\0\0\0\0\0\0"
1134 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1135 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1136 "\0\0\0\0\0\0\0\377*C[\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1137 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1138 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1139 "\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1140 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1141 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377"
1142 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1143 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1144 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1145 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"};
1146
1147
1148/* GdkPixbuf RGBA C-Source image dump */
1149
1150#ifdef __SUNPRO_C
1151#pragma align 4 (stock_mail_receive)
1152#endif
1153#ifdef __GNUC__
1154static const guint8 stock_mail_receive[] __attribute__ ((__aligned__ (4))) =
1155#else
1156static const guint8 stock_mail_receive[] =
1157#endif
1158{ ""
1159 /* Pixbuf magic (0x47646b50) */
1160 "GdkP"
1161 /* length: header (24) + pixel_data (2304) */
1162 "\0\0\11\30"
1163 /* pixdata_type (0x1010002) */
1164 "\1\1\0\2"
1165 /* rowstride (96) */
1166 "\0\0\0`"
1167 /* width (24) */
1168 "\0\0\0\30"
1169 /* height (24) */
1170 "\0\0\0\30"
1171 /* pixel_data: */
1172 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1173 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
1174 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1175 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1176 "\0\0\377\311\333\307\377\311\332\307\377\311\332\307\377\201\232y\377"
1177 "XuM\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1178 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1179 "\0\0\0\0\0\0\0\0\0\0\0\377\262\311\260\377\251\304\247\377\255\310\253"
1180 "\377[yP\377MgD\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1181 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1182 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\273\320\271\377\256\307\254\377"
1183 "\256\307\254\377[yP\377MgD\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1184 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1185 "\0\0\0\0\0\0\0\0\0\0\0\324\0\0\0\377\0\0\0\377\0\0\0\377\271\316\267"
1186 "\377\256\307\254\377\252\307\250\377[yP\377MgD\377\0\0\0\377\0\0\0\377"
1187 "\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1188 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\315\336\313"
1189 "\377\261\311\260\377\265\316\265\377\260\311\260\377\255\306\253\377"
1190 "[yP\377[yP\377[yP\377MhD\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1191 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0"
1192 "\0\0\2\0\0\0\2\0\0\0\377\315\336\313\377\264\313\262\377\263\312\261"
1193 "\377\255\306\253\377[yP\377[yP\377MhD\377\0\0\0\377\0\0\0\2\0\0\0\2\0"
1194 "\0\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1195 "f\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\315\336"
1196 "\313\377\252\307\250\377\260\307\256\377[yP\377MhD\377\0\0\0\377\0\0"
1197 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0m\0\0\0\10\0\0\0"
1198 "\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\377SSS\377\377\377\377\377\377\377\377"
1199 "\377\377\377\377\377\377\377\377\377\376\376\376\377\0\0\0\377\315\336"
1200 "\313\377\255\310\253\377TqJ\377\0\0\0\377\367\367\367\377\366\366\366"
1201 "\377\365\365\365\377\364\364\364\377\343\343\343\377SSS\377\0\0\0\377"
1202 "\0\0\0\31\0\0\0\10\0\0\0\1\0\0\0\0\0\0\0\2\0\0\0\377\356\356\356\377"
1203 "OOO\377\377\377\377\377\365\365\365\377\364\364\364\377\363\363\363\377"
1204 "\362\362\362\377\0\0\0\377\317\337\314\377\0\0\0\377\360\360\360\377"
1205 "\357\357\357\377\356\356\356\377\355\355\355\377\343\343\343\377OOO\377"
1206 "\256\256\256\377\0\0\0\377\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\2\0"
1207 "\0\0\377\377\377\377\377\344\344\344\377CCC\377\375\375\375\377\363\363"
1208 "\363\377\362\362\362\377\362\362\362\377\361\361\361\377---\377\357\357"
1209 "\357\377\356\356\356\377\356\356\356\377\355\355\355\377\343\343\343"
1210 "\377OOO\377\254\254\254\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21"
1211 "\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\344"
1212 "\344\344\377OOO\377\373\373\373\377\361\361\361\377\360\360\360\377\360"
1213 "\360\360\377\357\357\357\377\356\356\356\377\355\355\355\377\355\355"
1214 "\355\377\343\343\343\377CCC\377\240\240\240\377\324\324\324\377\310\310"
1215 "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377"
1216 "\377\377\377\377\373\373\373\377\365\365\365\377\344\344\344\377CCC\377"
1217 "\370\370\370\377\360\360\360\377\357\357\357\377\356\356\356\377\355"
1218 "\355\355\377\354\354\354\377\343\343\343\377OOO\377\225\225\225\377\324"
1219 "\324\324\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21"
1220 "\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365"
1221 "\365\365\377\365\365\365\377\344\344\344\377>>>\377\365\365\365\377\356"
1222 "\356\356\377\355\355\355\377\354\354\354\377\343\343\343\377MMM\377\201"
1223 "\201\201\377\306\306\306\377\344\344\344\377\344\344\344\377\310\310"
1224 "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377"
1225 "\377\377\377\377\373\373\373\377\365\365\365\377\365\365\365\377\344"
1226 "\344\344\377jjj\377CCC\377\363\363\363\377\354\354\354\377\343\343\343"
1227 "\377OOO\377jjj\377\306\306\306\377\306\306\306\377\365\365\365\377\344"
1228 "\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0"
1229 "\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365\365\365\377"
1230 "\344\344\344\377ccc\377\377\377\377\377\271\271\271\377OOO\377\360\360"
1231 "\360\377OOO\377\225\225\225\377\306\306\306\377sss\377\306\306\306\377"
1232 "\365\365\365\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0"
1233 "\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377"
1234 "\344\344\344\377ccc\377\377\377\377\377\365\365\365\377\344\344\344\377"
1235 "\324\324\324\377OOO\377\254\254\254\377\306\306\306\377\344\344\344\377"
1236 "\344\344\344\377|||\377\344\344\344\377\344\344\344\377\310\310\310\377"
1237 "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377"
1238 "\377\377\344\344\344\377sss\377\377\377\377\377\365\365\365\377\365\365"
1239 "\365\377\365\365\365\377\365\365\365\377\344\344\344\377\344\344\344"
1240 "\377\365\365\365\377\365\365\365\377\365\365\365\377\344\344\344\377"
1241 "|||\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0"
1242 "\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377|||\377\377\377\377\377"
1243 "\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377\344"
1244 "\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377\344\344"
1245 "\344\377\344\344\344\377\344\344\344\377\344\344\344\377|||\377\310\310"
1246 "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377"
1247 "sss\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377"
1248 "\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274"
1249 "\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274"
1250 "\274\377\274\274\274\377\274\274\274\377ccc\377\0\0\0\377\0\0\0-\0\0"
1251 "\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0m\0\0\0\377\0\0\0\377\0\0\0\377\0"
1252 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
1253 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
1254 "\0\0\0\207\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\1\0\0\0\10\0\0\0\31"
1255 "\0\0\0(\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0"
1256 "-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0(\0\0\0\31\0\0\0\10"
1257 "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0\16\0\0\0\21\0\0\0\21"
1258 "\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0"
1259 "\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\16\0\0\0\10\0"
1260 "\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0"
1261 "\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0"
1262 "\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0"
1263 "\0"};
1264
1265
1266/* GdkPixbuf RGBA C-Source image dump */
1267
1268#ifdef __SUNPRO_C
1269#pragma align 4 (stock_mail_reply)
1270#endif
1271#ifdef __GNUC__
1272static const guint8 stock_mail_reply[] __attribute__ ((__aligned__ (4))) =
1273#else
1274static const guint8 stock_mail_reply[] =
1275#endif
1276{ ""
1277 /* Pixbuf magic (0x47646b50) */
1278 "GdkP"
1279 /* length: header (24) + pixel_data (2304) */
1280 "\0\0\11\30"
1281 /* pixdata_type (0x1010002) */
1282 "\1\1\0\2"
1283 /* rowstride (96) */
1284 "\0\0\0`"
1285 /* width (24) */
1286 "\0\0\0\30"
1287 /* height (24) */
1288 "\0\0\0\30"
1289 /* pixel_data: */
1290 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1291 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1292 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1293 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1294 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1295 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1296 "\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0"
1297 "\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2"
1298 "\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0"
1299 "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
1300 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
1301 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0m\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0"
1302 "\0\0\0\1\0\0\0\377SSS\377\377\377\377\377\377\377\377\377\377\377\377"
1303 "\377\377\377\377\377\376\376\376\377\375\375\375\377\374\374\374\377"
1304 "\373\373\373\377\371\371\371\377\370\370\370\377\367\367\367\377\366"
1305 "\366\366\377\365\365\365\377\364\364\364\377\343\343\343\377SSS\377\0"
1306 "\0\0\377\0\0\0\31\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\356\356"
1307 "\356\377OOO\377\377\377\377\377\365\365\365\377\364\364\364\377\363\363"
1308 "\363\377\362\362\362\377\362\362\362\377\361\361\361\377\360\360\360"
1309 "\377\360\360\360\377\357\357\357\377\356\356\356\377\355\355\355\377"
1310 "\343\343\343\377OOO\377\256\256\256\377\0\0\0\377\0\0\0(\0\0\0\17\0\0"
1311 "\0\0\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\344\344\344\377CCC\377"
1312 "\375\375\375\377\363\363\363\377\362\362\362\377\362\362\362\377\361"
1313 "\361\361\377\360\360\360\377\357\357\357\377\356\356\356\377\356\356"
1314 "\356\377\355\355\355\377\343\343\343\377OOO\377\254\254\254\377\310\310"
1315 "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377"
1316 "\377\377\377\377\365\365\365\377\344\344\344\377OOO\377\373\373\373\377"
1317 "\361\361\361\377\360\360\360\377\360\360\360\377\357\357\357\377\356"
1318 "\356\356\377\355\355\355\377\355\355\355\377\343\343\343\377CCC\377\240"
1319 "\240\240\377\324\324\324\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21"
1320 "\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377\365"
1321 "\365\365\377\344\344\344\377CCC\377\370\370\370\377\360\360\360\377\357"
1322 "\357\357\377\356\356\356\377\355\355\355\377\354\354\354\377\343\343"
1323 "\343\377OOO\377\225\225\225\377\324\324\324\377\344\344\344\377\310\310"
1324 "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377"
1325 "\377\377\377\377\365\365\365\377\365\365\365\377\365\365\365\377\344"
1326 "\344\344\377>>>\377\365\365\365\377\356\356\356\377\355\355\355\377\354"
1327 "\354\354\377\343\343\343\377MMM\377\201\201\201\377\306\306\306\377\344"
1328 "\344\344\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21"
1329 "\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377=\32"
1330 "\23\377\365\365\365\377\344\344\344\377jjj\377CCC\377\363\363\363\377"
1331 "\354\354\354\377\343\343\343\377OOO\377jjj\377\306\306\306\377\306\306"
1332 "\306\377\365\365\365\377\344\344\344\377\310\310\310\377\0\0\0\377\0"
1333 "\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\0\0"
1334 "\0\377\0\0\0\377\344\344\344\377ccc\377\377\377\377\377\271\271\271\377"
1335 "OOO\377\360\360\360\377OOO\377\225\225\225\377\306\306\306\377sss\377"
1336 "\306\306\306\377\365\365\365\377\344\344\344\377\310\310\310\377\0\0"
1337 "\0\377\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\0\0\0\377\352"
1338 "\300\272\377\0\0\0\377ccc\377\377\377\377\377\365\365\365\377\344\344"
1339 "\344\377\324\324\324\377OOO\377\254\254\254\377\306\306\306\377\344\344"
1340 "\344\377\344\344\344\377|||\377\344\344\344\377\344\344\344\377\310\310"
1341 "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377"
1342 "\352\300\272\377\337\236\225\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0"
1343 "\377\0\0\0\377\0\0\0\377\0\0\0\377\344\344\344\377\365\365\365\377\365"
1344 "\365\365\377\365\365\365\377\344\344\344\377|||\377\344\344\344\377\310"
1345 "\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\377\352"
1346 "\300\272\377\340\241\230\377\341\245\235\377\342\247\236\377\343\253"
1347 "\243\377\342\247\236\377\343\252\242\377\337\236\225\377\314bS\377\0"
1348 "\0\0\377\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344"
1349 "\377\344\344\344\377\344\344\344\377|||\377\310\310\310\377\0\0\0\377"
1350 "\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\377\352\300\272\377\335\227\215\377\337"
1351 "\237\227\377\337\236\225\377\336\232\220\377\335\226\214\377\335\226"
1352 "\214\377\336\232\220\377\335\224\212\377\261C4\377\0\0\0\377\274\274"
1353 "\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274"
1354 "\377\274\274\274\377\274\274\274\377ccc\377\0\0\0\377\0\0\0-\0\0\0\21"
1355 "C\31\23\377\352\302\274\377\336\232\220\377\337\234\222\377\335\231\217"
1356 "\377\335\231\217\377\335\227\215\377\336\232\220\377\336\232\220\377"
1357 "\336\232\220\377\336\232\220\377\265E5\377\0\0\0\377\0\0\0\377\0\0\0"
1358 "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
1359 "\0\207\0\0\0(\0\0\0\17\0\0\0\0\0\0\0\377e&\35\377\230:,\377\230:,\377"
1360 "\230:,\377\230:,\377\230:,\377\230:,\377\230:,\377\230:,\377|/$\377\0"
1361 "\0\0\377\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0"
1362 "\0(\0\0\0\31\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\377e&\35\377\230:,\377\230"
1363 ":,\377c%\35\377c%\35\377c%\35\377c%\35\377c%\35\377l)\37\377\0\0\0\377"
1364 "\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0"
1365 "\21\0\0\0\16\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377e&\35"
1366 "\377\230:,\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
1367 "\0\377\0\0\0\377\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0"
1368 "\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1369 "\0\0\0\377e&\35\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1370 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1371 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1372 "\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1373 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1374 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1375 "\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1376 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1377 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1378 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1379 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"};
1380
1381
1382/* GdkPixbuf RGBA C-Source image dump */
1383
1384#ifdef __SUNPRO_C
1385#pragma align 4 (stock_mail_send)
1386#endif
1387#ifdef __GNUC__
1388static const guint8 stock_mail_send[] __attribute__ ((__aligned__ (4))) =
1389#else
1390static const guint8 stock_mail_send[] =
1391#endif
1392{ ""
1393 /* Pixbuf magic (0x47646b50) */
1394 "GdkP"
1395 /* length: header (24) + pixel_data (2304) */
1396 "\0\0\11\30"
1397 /* pixdata_type (0x1010002) */
1398 "\1\1\0\2"
1399 /* rowstride (96) */
1400 "\0\0\0`"
1401 /* width (24) */
1402 "\0\0\0\30"
1403 /* height (24) */
1404 "\0\0\0\30"
1405 /* pixel_data: */
1406 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1407 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1408 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1409 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1410 "\0\0\0\0O\77\12\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1411 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1412 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377"
1413 "\364\346\265\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1414 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1415 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\364\345"
1416 "\263\377\355\326\204\377u_\20\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0"
1417 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1418 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\364\345"
1419 "\263\377\355\325\200\377\356\326\205\377\257\215\30\377u_\20\377\0\0"
1420 "\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1421 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1422 "\0\0\377\364\345\263\377\357\331\214\377\356\330\213\377\355\325\202"
1423 "\377\257\215\30\377\257\215\30\377u_\20\377\0\0\0\377\0\0\0\0\0\0\0\0"
1424 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1425 "\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\377\364\345\263\377\356\330\211\377"
1426 "\357\332\222\377\356\330\211\377\355\325\202\377\257\215\30\377\257\215"
1427 "\30\377\257\215\30\377u_\20\377\0\0\0\377\0\0\0\2\0\0\0\2\0\0\0\2\0\0"
1428 "\0\2\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0\377\0\0\0\377"
1429 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\360\333\223\377\355\326\204"
1430 "\377\355\325\200\377\257\215\30\377s]\20\377\0\0\0\377\0\0\0\377\0\0"
1431 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0m\0\0\0\10\0\0\0\2\0\0\0\0"
1432 "\0\0\0\0\0\0\0\1\0\0\0\377SSS\377\377\377\377\377\377\377\377\377\377"
1433 "\377\377\377\377\377\377\377\0\0\0\377\360\334\227\377\355\326\204\377"
1434 "\355\326\204\377\257\215\30\377s]\20\377\0\0\0\377\366\366\366\377\365"
1435 "\365\365\377\364\364\364\377\343\343\343\377SSS\377\0\0\0\377\0\0\0\31"
1436 "\0\0\0\10\0\0\0\1\0\0\0\0\0\0\0\2\0\0\0\377\356\356\356\377OOO\377\377"
1437 "\377\377\377\365\365\365\377\364\364\364\377\0\0\0\377\356\330\211\377"
1438 "\355\323|\377\355\326\204\377\257\215\30\377s]\20\377\0\0\0\377\356\356"
1439 "\356\377\355\355\355\377\343\343\343\377OOO\377\256\256\256\377\0\0\0"
1440 "\377\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377"
1441 "\344\344\344\377CCC\377\375\375\375\377\363\363\363\377\0\0\0\377\344"
1442 "\277=\377\313\244\34\377\321\250\34\377\220t\23\377|d\21\377\0\0\0\377"
1443 "\355\355\355\377\343\343\343\377OOO\377\254\254\254\377\310\310\310\377"
1444 "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377"
1445 "\377\377\365\365\365\377\344\344\344\377OOO\377\373\373\373\377\0\0\0"
1446 "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\343"
1447 "\343\343\377CCC\377\240\240\240\377\324\324\324\377\310\310\310\377\0"
1448 "\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377"
1449 "\377\373\373\373\377\365\365\365\377\344\344\344\377CCC\377\370\370\370"
1450 "\377\360\360\360\377\357\357\357\377\356\356\356\377\355\355\355\377"
1451 "\354\354\354\377\343\343\343\377OOO\377\225\225\225\377\324\324\324\377"
1452 "\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0"
1453 "\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365\365\365"
1454 "\377\365\365\365\377\344\344\344\377>>>\377\365\365\365\377\356\356\356"
1455 "\377\355\355\355\377\354\354\354\377\343\343\343\377MMM\377\201\201\201"
1456 "\377\306\306\306\377\344\344\344\377\344\344\344\377\310\310\310\377"
1457 "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377"
1458 "\377\377\373\373\373\377\365\365\365\377\365\365\365\377\344\344\344"
1459 "\377jjj\377CCC\377\363\363\363\377\354\354\354\377\343\343\343\377OO"
1460 "O\377jjj\377\306\306\306\377\306\306\306\377\365\365\365\377\344\344"
1461 "\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0"
1462 "\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365\365\365\377\344"
1463 "\344\344\377ccc\377\377\377\377\377\271\271\271\377OOO\377\360\360\360"
1464 "\377OOO\377\225\225\225\377\306\306\306\377sss\377\306\306\306\377\365"
1465 "\365\365\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21"
1466 "\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377\344"
1467 "\344\344\377ccc\377\377\377\377\377\365\365\365\377\344\344\344\377\324"
1468 "\324\324\377OOO\377\254\254\254\377\306\306\306\377\344\344\344\377\344"
1469 "\344\344\377|||\377\344\344\344\377\344\344\344\377\310\310\310\377\0"
1470 "\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377"
1471 "\377\344\344\344\377sss\377\377\377\377\377\365\365\365\377\365\365\365"
1472 "\377\365\365\365\377\365\365\365\377\344\344\344\377\344\344\344\377"
1473 "\365\365\365\377\365\365\365\377\365\365\365\377\344\344\344\377|||\377"
1474 "\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0"
1475 "\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377|||\377\377\377\377\377\344\344"
1476 "\344\377\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344"
1477 "\377\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377"
1478 "\344\344\344\377\344\344\344\377\344\344\344\377|||\377\310\310\310\377"
1479 "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377sss\377\274"
1480 "\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274"
1481 "\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274"
1482 "\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377"
1483 "\274\274\274\377\274\274\274\377ccc\377\0\0\0\377\0\0\0-\0\0\0\21\0\0"
1484 "\0\2\0\0\0\0\0\0\0\2\0\0\0m\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
1485 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
1486 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\207"
1487 "\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\1\0\0\0\10\0\0\0\31\0\0\0(\0\0"
1488 "\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0"
1489 "\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0(\0\0\0\31\0\0\0\10\0\0\0\1\0"
1490 "\0\0\0\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0\16\0\0\0\21\0\0\0\21\0\0\0\21\0"
1491 "\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21"
1492 "\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\16\0\0\0\10\0\0\0\2\0\0\0"
1493 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0"
1494 "\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0"
1495 "\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0\0"};
1496
1497
1498/* GdkPixbuf RGBA C-Source image dump */
1499
1500#ifdef __SUNPRO_C
1501#pragma align 4 (stock_menu_about)
1502#endif
1503#ifdef __GNUC__
1504static const guint8 stock_menu_about[] __attribute__ ((__aligned__ (4))) =
1505#else
1506static const guint8 stock_menu_about[] =
1507#endif
1508{ ""
1509 /* Pixbuf magic (0x47646b50) */
1510 "GdkP"
1511 /* length: header (24) + pixel_data (1024) */
1512 "\0\0\4\30"
1513 /* pixdata_type (0x1010002) */
1514 "\1\1\0\2"
1515 /* rowstride (64) */
1516 "\0\0\0@"
1517 /* width (16) */
1518 "\0\0\0\20"
1519 /* height (16) */
1520 "\0\0\0\20"
1521 /* pixel_data: */
1522 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1523 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1524 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1525 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1526 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1527 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1528 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0!\"\10\0\0\0\0\0\0\0\0\0\0\0"
1529 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1530 "\0\0\0\0\0\0\0\0\0\0\0\0LN\23l\0\0\0\377\25\26\6#\0\0\0\0\0\0\0\0\0\0"
1531 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1532 "\0\0\0\0\0\0\0\11\0\0\0\377\356\366>\377\0\0\0\377\0\0\0\0\0\0\0\0\0"
1533 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\20\21\4\7dg\32"
1534 "x\0\0\0\377\0\0\0\377\352\361=\377\360\370\77\377\313\3225\370\0\0\0"
1535 "\377\0\0\0\377JL\23k\0\0\0\0\20\21\4\0dg\32\0\0\0\0\0\0\0\0\0\0\0\0\0"
1536 "\34\35\7\0\0\0\0\377\360\370\77\377\360\370\77\377\360\370\77\377\360"
1537 "\370\77\377\360\370\77\377\360\370\77\377\351\360=\377\0\0\0\377\0\0"
1538 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\37\37\10%\0\0\0"
1539 "\377\360\370\77\377\360\370\77\377\360\370\77\377\360\370\77\377\345"
1540 "\354<\377\0\0\0\377\5\5\1\7\0\0\0\0\0\0\0\0\37\37\10\0\0\0\0\0\0\0\0"
1541 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\350\360=\377\360\370\77\377\360"
1542 "\370\77\377\360\370\77\377\253\260-\372\0\0\0\377\0\0\0\0\0\0\0\0\0\0"
1543 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\360\370"
1544 "\77\377\354\363>\377\0\0\0\377\357\367\77\377\316\3266\377\0\0\0\377"
1545 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1546 "\0\0\0\0\0\377\264\272/\363\0\0\0\377\30\30\6\77\0\0\0\377\315\3245\375"
1547 "\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1548 "\0\0\0\0\0\0\0\36\37\10g\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377"
1549 "\26\27\5F\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1550 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1551 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1552 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1553 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1554 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1555 "\0\0\0\0\0\0\0\0"};
1556
1557
1558/* GdkPixbuf RGBA C-Source image dump */
1559
1560#ifdef __SUNPRO_C
1561#pragma align 4 (stock_menu_blank)
1562#endif
1563#ifdef __GNUC__
1564static const guint8 stock_menu_blank[] __attribute__ ((__aligned__ (4))) =
1565#else
1566static const guint8 stock_menu_blank[] =
1567#endif
1568{ ""
1569 /* Pixbuf magic (0x47646b50) */
1570 "GdkP"
1571 /* length: header (24) + pixel_data (1024) */
1572 "\0\0\4\30"
1573 /* pixdata_type (0x1010002) */
1574 "\1\1\0\2"
1575 /* rowstride (64) */
1576 "\0\0\0@"
1577 /* width (16) */
1578 "\0\0\0\20"
1579 /* height (16) */
1580 "\0\0\0\20"
1581 /* pixel_data: */
1582 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1583 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1584 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1585 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1586 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1587 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1588 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1589 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1590 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1591 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1592 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1593 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1594 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1595 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1596 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1597 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1598 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1599 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1600 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1601 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1602 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1603 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1604 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1605 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1606 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1607 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1608 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1609 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1610 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1611 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1612 "\0\0\0\0"};
1613
1614
1615/* GdkPixbuf RGBA C-Source image dump */
1616
1617#ifdef __SUNPRO_C
1618#pragma align 4 (stock_scores)
1619#endif
1620#ifdef __GNUC__
1621static const guint8 stock_scores[] __attribute__ ((__aligned__ (4))) =
1622#else
1623static const guint8 stock_scores[] =
1624#endif
1625{ ""
1626 /* Pixbuf magic (0x47646b50) */
1627 "GdkP"
1628 /* length: header (24) + pixel_data (2304) */
1629 "\0\0\11\30"
1630 /* pixdata_type (0x1010002) */
1631 "\1\1\0\2"
1632 /* rowstride (96) */
1633 "\0\0\0`"
1634 /* width (24) */
1635 "\0\0\0\30"
1636 /* height (24) */
1637 "\0\0\0\30"
1638 /* pixel_data: */
1639 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1640 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1641 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1642 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1643 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1644 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1645 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1646 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1647 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1648 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1649 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1650 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1651 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\4\0\0\0\4\0\0"
1652 "\0\3\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1653 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1654 "\0\0\0\0\0\215\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
1655 "\0\227\0\0\0\22\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1656 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1657 "\0\0\2\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1658 "\377\377\377\341\341\341\377\0\0\0\377\0\0\0""2\0\0\0\22\0\0\0\2\0\0"
1659 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1660 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\377\377\377\377\377\353"
1661 "\353\353\377\0\0\0\377\355\355\355\377\322\322\322\377\0\0\0\377\0\0"
1662 "\0L\0\0\0\34\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1663 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"
1664 "\0\377\377\377\377\377\0\0\0\377\0\0\0\377\356\356\356\377\322\322\322"
1665 "\377\0\0\0\377\0\0\0T\0\0\0\40\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1666 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\3\0"
1667 "\0\0\4\0\0\0\10\0\0\0\377\377\377\377\377\355\355\355\377\0\0\0\377\357"
1668 "\357\357\377\323\323\323\377\0\0\0\377\0\0\0U\0\0\0\40\0\0\0\4\0\0\0"
1669 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1670 "\0\0\215\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\377\377\377"
1671 "\377\356\356\356\377\0\0\0\377\360\360\360\377\324\324\324\377\0\0\0"
1672 "\377\0\0\0W\0\0\0$\0\0\0\10\0\0\0\4\0\0\0\3\0\0\0\2\0\0\0\0\0\0\0\0\0"
1673 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\377\377\377"
1674 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1675 "\0\0\0\377\0\0\0\377\0\0\0\377\325\325\325\377\0\0\0\377\0\0\0\377\0"
1676 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\205\0\0\0\20\0\0\0\5\0\0\0\0\0\0\0"
1677 "\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\377\377\377\377\377\0\0\0\377\0\0\0"
1678 "\377\0\0\0\377\355\355\355\377\356\356\356\377\357\357\357\377\361\361"
1679 "\361\377\362\362\362\377\363\363\363\377\377\377\377\377\377\377\377"
1680 "\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0"
1681 "1\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\377\377\377"
1682 "\377\377\353\353\353\377\354\354\354\377\0\0\0\377\356\356\356\377\357"
1683 "\357\357\377\360\360\360\377\361\361\361\377\363\363\363\377\364\364"
1684 "\364\377\365\365\365\377\0\0\0\377\0\0\0\377\0\0\0\377\333\333\333\377"
1685 "\0\0\0\377\0\0\0K\0\0\0\34\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0"
1686 "\0\0\377\377\377\377\377\0\0\0\377\0\0\0\377\0\0\0\377\357\357\357\377"
1687 "\360\360\360\377\361\361\361\377\362\362\362\377\363\363\363\377\365"
1688 "\365\365\377\366\366\366\377\367\367\367\377\370\370\370\377\0\0\0\377"
1689 "\334\334\334\377\0\0\0\377\0\0\0T\0\0\0\40\0\0\0\4\0\0\0\0\0\0\0\0\0"
1690 "\0\0\0\0\0\0\4\0\0\0\377\377\377\377\377\0\0\0\377\356\356\356\377\357"
1691 "\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363"
1692 "\363\377\364\364\364\377\365\365\365\377\367\367\367\377\370\370\370"
1693 "\377\0\0\0\377\0\0\0\377\335\335\335\377\0\0\0\377\0\0\0U\0\0\0\40\0"
1694 "\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\377\377\377\377\377\0\0"
1695 "\0\377\0\0\0\377\0\0\0\377\361\361\361\377\362\362\362\377\363\363\363"
1696 "\377\364\364\364\377\365\365\365\377\366\366\366\377\367\367\367\377"
1697 "\371\371\371\377\372\372\372\377\0\0\0\377\336\336\336\377\0\0\0\377"
1698 "\0\0\0U\0\0\0\40\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\377\377"
1699 "\377\377\377\357\357\357\377\360\360\360\377\361\361\361\377\362\362"
1700 "\362\377\363\363\363\377\364\364\364\377\365\365\365\377\366\366\366"
1701 "\377\367\367\367\377\370\370\370\377\0\0\0\377\0\0\0\377\0\0\0\377\337"
1702 "\337\337\377\0\0\0\377\0\0\0U\0\0\0\40\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0"
1703 "\0\0\0\0\4\0\0\0\377\341\341\341\377\323\323\323\377\324\324\324\377"
1704 "\325\325\325\377\326\326\326\377\327\327\327\377\330\330\330\377\331"
1705 "\331\331\377\331\331\331\377\332\332\332\377\333\333\333\377\334\334"
1706 "\334\377\335\335\335\377\337\337\337\377\340\340\340\377\0\0\0\377\0"
1707 "\0\0T\0\0\0\40\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\254\0\0"
1708 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
1709 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
1710 "\0\0\0\377\0\0\0\273\0\0\0L\0\0\0\34\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0"
1711 "\0\0\0\2\0\0\0\23\0\0\0""5\0\0\0M\0\0\0T\0\0\0U\0\0\0U\0\0\0U\0\0\0U"
1712 "\0\0\0U\0\0\0U\0\0\0U\0\0\0U\0\0\0U\0\0\0U\0\0\0U\0\0\0T\0\0\0L\0\0\0"
1713 "2\0\0\0\22\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\23\0"
1714 "\0\0\35\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40"
1715 "\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\37\0\0\0\34\0\0\0"
1716 "\22\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0"
1717 "\0\0\3\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0"
1718 "\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\3\0\0\0\2\0\0\0\0\0"
1719 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1720 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1721 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1722 "\0"};
1723
1724
1725/* GdkPixbuf RGBA C-Source image dump */
1726
1727#ifdef __SUNPRO_C
1728#pragma align 4 (stock_mic)
1729#endif
1730#ifdef __GNUC__
1731static const guint8 stock_mic[] __attribute__ ((__aligned__ (4))) =
1732#else
1733static const guint8 stock_mic[] =
1734#endif
1735{ ""
1736 /* Pixbuf magic (0x47646b50) */
1737 "GdkP"
1738 /* length: header (24) + pixel_data (2304) */
1739 "\0\0\11\30"
1740 /* pixdata_type (0x1010002) */
1741 "\1\1\0\2"
1742 /* rowstride (96) */
1743 "\0\0\0`"
1744 /* width (24) */
1745 "\0\0\0\30"
1746 /* height (24) */
1747 "\0\0\0\30"
1748 /* pixel_data: */
1749 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1750 "\0<\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0<\0\0\0\0"
1751 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1752 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0<RRR\377\332"
1753 "\332\333\377\372\372\373\377\361\361\363\377\370\370\371\377\335\334"
1754 "\335\377\0\0\0\377\0\0\0E\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1755 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1756 "\0\0\0\0\0\0\0\377\332\331\332\377\363\362\365\377\326\325\334\377\350"
1757 "\350\353\377\267\265\275\377\324\322\327\377ifl\377\0\0\0\377\0\0\0\13"
1758 "\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1759 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\372\372\373\377"
1760 "\334\334\342\377\354\353\356\377\301\277\307\377\330\326\333\377\220"
1761 "\217\226\377\214\212\217\377\0\0\0\377\0\0\0\26\0\0\0\4\0\0\0\0\0\0\0"
1762 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1763 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\363\361\364\377\357\357\362\377\312"
1764 "\307\321\377\337\336\343\377\235\234\244\377\275\273\301\377CBF\377\0"
1765 "\0\0\377\0\0\0\31\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1766 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0I\0\0\0]\0\0\0\1\0\0\0\377"
1767 "\372\372\372\377\324\322\331\377\350\346\353\377\261\260\272\377\311"
1768 "\307\316\377tqz\377qpv\377\0\0\0\377\0\0\0\31\0\0\0_\0\0\0J\0\0\0\1\0"
1769 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1770 "]\0\0\0\377\0\0\0\377\0\0\0\377\361\360\363\377\355\354\360\377\303\301"
1771 "\312\377\330\326\335\377\214\211\225\377\250\246\257\377226\377\0\0\0"
1772 "\377\0\0\0\377\0\0\0\377\0\0\0b\0\0\0\7\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0"
1773 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\377\0\0\0\26\0\0\0\377"
1774 "\371\371\372\377\317\316\326\377\344\342\347\377\250\247\261\377\303"
1775 "\301\310\377ebl\377aae\377\0\0\0\377\0\0\0\34\0\0\0\377\0\0\0\27\0\0"
1776 "\0\12\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1777 "\0\0\0\0\0\0\0\377\0\0\0\25\0\0\0\377\360\356\361\377\353\352\356\377"
1778 "\276\273\306\377\325\324\332\377\204\200\214\377\236\235\246\377-,0\377"
1779 "\0\0\0\377\0\0\0\32\0\0\0\377\0\0\0\25\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0"
1780 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\24"
1781 "\0\0\0\377\370\370\371\377\312\307\321\377\337\336\342\377\234\232\244"
1782 "\377\270\266\276\377YW_\377][a\377\0\0\0\377\0\0\0\31\0\0\0\377\0\0\0"
1783 "\24\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1784 "\0\0\0\0\0\0\0\0\0\0\377\0\0\0\24\0\0\0\377\354\352\355\377\343\342\346"
1785 "\377\250\247\260\377\307\305\314\377rqx\377\222\220\231\377(&*\377\0"
1786 "\0\0\377\0\0\0\31\0\0\0\377\0\0\0\24\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0"
1787 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\24\0"
1788 "\0\0\377\350\347\352\377\265\263\272\377\314\314\322\377\205\204\212"
1789 "\377\245\244\253\377JIO\377MLQ\377\0\0\0\377\0\0\0\31\0\0\0\377\0\0\0"
1790 "\24\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1791 "\0\0\0\0\0\0\0\0\0\0\377\0\0\0\24\0\0\0C\0\0\0\377\206\204\210\37776"
1792 ":\377aac\377$#&\377DDI\377\0\0\0\377\0\0\0\232\0\0\0\30\0\0\0\377\0\0"
1793 "\0\24\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1794 "\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\24\0\0\0\6\0\0\0D\0\0\0\377\0\0\0\377"
1795 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\232\0\0\0\32\0\0\0\17\0\0\0\377"
1796 "\0\0\0\24\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1797 "\0\0\0\0\0\0\0\0\0\0\0\0\0k\0\0\0\206\0\0\0\6\0\0\0\3\0\0\0\13\0\0\0"
1798 "\26\0\0\0{\0\0\0\32\0\0\0\31\0\0\0\27\0\0\0\17\0\0\0\200\0\0\0m\0\0\0"
1799 "\22\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1800 "\0\0\0\0\0\0\0\0\0\0\2\0\0\0o\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
1801 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0m\0\0\0\13\0"
1802 "\0\0\13\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1803 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\13\0\0\0\22\0\0\0\24KKK\377"
1804 "aaa\377\0\0\0\377\0\0\0\30\0\0\0\25\0\0\0\24\0\0\0\22\0\0\0\13\0\0\0"
1805 "\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1806 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\4\0\0\0\5KKK\377\177\177"
1807 "\177\377\0\0\0\377\0\0\0m\0\0\0;\0\0\0\6\0\0\0\5\0\0\0\2\0\0\0\33\0\0"
1808 "\0]\0\0\0\34\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1809 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0KKK\377\177\177\177\377"
1810 "\0\0\0\377\0\0\0\32\0\0\0\12\0\0\0L\0\0\0\2\0\0\0\0\0\0\0I\0\0\0\4\0"
1811 "\0\0M\0\0\0\37\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1812 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""3\40\40\40\377hhh\377\0\0\0"
1813 "\377\0\0\0G\0\0\0\7\0\0\0\2\0\0\0k\0\0\0]\0\0\0\2\0\0\0\5\0\0\0\3\0\0"
1814 "\0l\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\\\0\0\0\377\0\0\0\377"
1815 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377gd[\377\0\0\0\377VRH\377\0\0"
1816 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0`\0\0\0"
1817 "\2\0\0\0o\0\0\0\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\33\33\33\377\257\255"
1818 "\251\377\205\202{\377wtl\377VRH\377VRH\377VRH\377VRH\377VRH\377VRH\377"
1819 "VRH\377VRH\377VRH\377LI@\377;:2\377\40\37\32\377\0\0\0\377\0\0\0\14\0"
1820 "\0\0\37\0\0\0\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0"
1821 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
1822 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
1823 "\0\0\0\377\0\0\0\27\0\0\0\5\0\0\0K\0\0\0W\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1824 "\0\4\0\0\0\25\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0"
1825 "\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31"
1826 "\0\0\0\31\0\0\0\25\0\0\0\4\0\0\0\1\0\0\0\5"};
1827
1828
1829/* GdkPixbuf RGBA C-Source image dump */
1830
1831#ifdef __SUNPRO_C
1832#pragma align 4 (stock_multiple_file)
1833#endif
1834#ifdef __GNUC__
1835static const guint8 stock_multiple_file[] __attribute__ ((__aligned__ (4))) =
1836#else
1837static const guint8 stock_multiple_file[] =
1838#endif
1839{ ""
1840 /* Pixbuf magic (0x47646b50) */
1841 "GdkP"
1842 /* length: header (24) + pixel_data (4096) */
1843 "\0\0\20\30"
1844 /* pixdata_type (0x1010002) */
1845 "\1\1\0\2"
1846 /* rowstride (128) */
1847 "\0\0\0\200"
1848 /* width (32) */
1849 "\0\0\0\40"
1850 /* height (32) */
1851 "\0\0\0\40"
1852 /* pixel_data: */
1853 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1854 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1855 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1856 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377"
1857 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
1858 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
1859 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\33\0\0\0\14\0\0\0\2\0\0\0\0\0\0"
1860 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1861 "\0\0\0\0\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1862 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1863 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1864 "\377\377\377\377\377\377\377\377\377\377\377\377\377\340\340\340\377"
1865 "\301\301\301\377\0\0\0\377\0\0\0+\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\0\0"
1866 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1867 "\377\377\377\377\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
1868 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
1869 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0-\0"
1870 "\0\0\16\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1871 "\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377"
1872 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1873 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1874 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1875 "\377\377\377\377\377\340\340\340\377\301\301\301\377\0\0\0\377\0\0\0"
1876 "-\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
1877 "\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377\377"
1878 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1879 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1880 "\377\377\377\377\377\377\377\377\377\375\375\375\377\373\373\373\377"
1881 "\372\372\371\377\303\303\303\377\373\373\373\377\250\250\250\377\0\0"
1882 "\0\377\0\0\0-\0\0\0\20\0\0\0\6\0\0\0\4\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0"
1883 "\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377"
1884 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0"
1885 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
1886 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
1887 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\33\0\0\0\14\0\0\0\2\0"
1888 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377"
1889 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1890 "\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1891 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1892 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1893 "\377\377\377\377\377\377\377\377\377\377\377\340\340\340\377\301\301"
1894 "\301\377\0\0\0\377\0\0\0+\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\377"
1895 "\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377"
1896 "\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377"
1897 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1898 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1899 "\377\377\377\377\377\377\377\377\375\375\375\377\373\373\373\377\372"
1900 "\372\371\377\303\303\303\377\373\373\373\377\250\250\250\377\0\0\0\377"
1901 "\0\0\0-\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377"
1902 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1903 "\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\321\321\321\377"
1904 "\252\252\252\377\323\323\323\377\377\377\377\377\323\323\323\377\377"
1905 "\377\377\377\252\252\252\377\252\252\252\377\375\375\375\377\320\320"
1906 "\320\377\372\372\372\377\371\371\370\377\367\367\366\377\255\255\255"
1907 "\377vvv\377]]]\377@@@\377\0\0\0\377\0\0\0+\0\0\0\14\0\0\0\0\0\0\0\377"
1908 "\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377"
1909 "\377\375\375\375\377\374\374\374\377\0\0\0\377\377\377\377\377\377\377"
1910 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1911 "\377\377\377\377\377\377\377\377\377\376\376\376\377\374\374\374\377"
1912 "\373\373\372\377\371\371\371\377\367\367\367\377\366\366\365\377\364"
1913 "\364\364\377\342\342\342\377\205\205\205\377KKI\377\26\26\26\377\0\0"
1914 "\0\377\0\0\0N\0\0\0\33\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377"
1915 "\377\377\377\376\376\376\377\374\374\374\377\373\373\372\377\371\371"
1916 "\371\377\0\0\0\377\377\377\377\377\377\377\377\377\252\252\252\377\271"
1917 "\271\271\377\323\323\323\377\323\323\323\377\376\376\376\377\250\250"
1918 "\250\377\236\236\236\377\235\235\235\377\245\245\244\377\366\366\366"
1919 "\377\243\243\242\377\311\311\310\377\362\362\361\377\360\360\357\377"
1920 "\356\356\355\377\355\355\353\377\235\235\235\377\0\0\0\377\0\0\0]\0\0"
1921 "\0#\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377\373\373"
1922 "\373\377\371\371\371\377\370\370\367\377\366\366\366\377\0\0\0\377\377"
1923 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
1924 "\377\377\375\375\375\377\373\373\373\377\372\372\371\377\370\370\370"
1925 "\377\367\367\366\377\365\365\364\377\364\364\363\377\362\362\361\377"
1926 "\360\360\357\377\357\357\356\377\355\355\354\377\354\354\352\377\352"
1927 "\352\350\377\244\244\243\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377"
1928 "\377\377\377\377\0\0\0\377\377\377\377\377\370\370\370\377\367\367\366"
1929 "\377\365\365\364\377\364\364\363\377\0\0\0\377\377\377\377\377\377\377"
1930 "\377\377\252\252\252\377\321\321\321\377\374\374\374\377\316\316\316"
1931 "\377\371\371\370\377\244\244\244\377\243\243\243\377\232\232\231\377"
1932 "\257\257\256\377\361\361\360\377\237\237\236\377rrq\377\225\225\224\377"
1933 "\223\223\223\377\351\351\347\377\347\347\346\377\244\244\244\377\0\0"
1934 "\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377"
1935 "\377\377\377\365\365\365\377\364\364\363\377\362\362\361\377\361\361"
1936 "\360\377\0\0\0\377\377\377\377\377\376\376\376\377\374\374\374\377\373"
1937 "\373\372\377\371\371\371\377\367\367\367\377\366\366\365\377\364\364"
1938 "\364\377\363\363\362\377\361\361\360\377\360\360\356\377\356\356\355"
1939 "\377\354\354\353\377\353\353\351\377\351\351\350\377\350\350\346\377"
1940 "\346\346\344\377\345\345\343\377\242\242\242\377\0\0\0\377\0\0\0_\0\0"
1941 "\0$\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377\363\363"
1942 "\362\377\361\361\360\377\360\360\356\377\356\356\355\377\0\0\0\377\377"
1943 "\377\377\377\373\373\373\377\264\264\264\377\263\263\263\377\366\366"
1944 "\366\377\261\261\261\377\260\260\257\377\230\230\230\377\227\227\226"
1945 "\377\356\356\355\377oon\377nnn\377nnm\377mml\377llk\377kkj\377\343\343"
1946 "\341\377\342\342\340\377\242\242\242\377\0\0\0\377\0\0\0_\0\0\0$\0\0"
1947 "\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377\360\360\357"
1948 "\377\356\356\355\377\355\355\353\377\353\353\352\377\0\0\0\377\377\377"
1949 "\377\377\370\370\370\377\367\367\366\377\365\365\364\377\364\364\363"
1950 "\377\362\362\361\377\360\360\357\377\357\357\356\377\355\355\354\377"
1951 "\354\354\352\377nnm\377\207\226\245\377\206\226\244\377\205\225\243\377"
1952 "\205\224\243\377jji\377\341\341\336\377\337\337\335\377\243\243\242\377"
1953 "\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377"
1954 "\377\377\377\377\355\355\354\377\354\354\352\377\352\352\350\377\351"
1955 "\351\347\377\0\0\0\377\377\377\377\377\365\365\365\377\261\261\260\377"
1956 "\230\230\230\377\307\307\306\377\305\305\304\377\356\356\354\377\303"
1957 "\303\302\377\301\301\300\377\351\351\347\377lll\377\217\236\254\377\275"
1958 "\270\225\377p|i\377\214\233\252\377iih\377\336\336\333\377\334\334\332"
1959 "\377\243\243\242\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\377\377"
1960 "\377\377\0\0\0\377\377\377\377\377\352\352\351\377\351\351\347\377\347"
1961 "\347\346\377\346\346\344\377\0\0\0\377\377\377\377\377\363\363\362\377"
1962 "\361\361\360\377\360\360\356\377\356\356\355\377\354\354\353\377\353"
1963 "\353\351\377\351\351\350\377\350\350\346\377\346\346\344\377kkj\377\226"
1964 "\245\264\377\323\307\215\377\237\234d\377o\177w\377hhf\377\333\333\330"
1965 "\377\332\332\327\377\240\240\237\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0"
1966 "\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377\350\350\346\377"
1967 "\346\346\344\377\345\345\343\377\343\343\341\377\0\0\0\377\377\377\377"
1968 "\377\360\360\357\377\243\243\242\377\225\225\224\377\224\224\223\377"
1969 "\251\251\250\377\232\232\231\377\247\247\246\377\275\275\273\377\343"
1970 "\343\341\377jji\377\235\254\273\377\315\304\226\377fsW\377\233\252\271"
1971 "\377ffe\377\330\330\325\377\327\327\324\377\242\242\241\377\0\0\0\377"
1972 "\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377"
1973 "\377\345\345\343\377\343\343\341\377\342\342\340\377\340\340\336\377"
1974 "\0\0\0\377\377\377\377\377\355\355\354\377\354\354\352\377\352\352\350"
1975 "\377\351\351\347\377\347\347\345\377\345\345\343\377\344\344\342\377"
1976 "\342\342\340\377\341\341\336\377hhh\377\245\264\303\377\313\305\235\377"
1977 "l}o\377o\200s\377eec\377\326\326\322\377\324\324\321\377\242\242\241"
1978 "\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0"
1979 "\377\377\377\377\377\342\342\340\377\341\341\336\377\337\337\335\377"
1980 "\336\336\333\377\0\0\0\377\377\377\377\377\352\352\351\377\233\233\232"
1981 "\377\215\215\214\377\346\346\344\377\274\274\273\377\217\217\215\377"
1982 "\216\216\214\377\271\271\266\377\336\336\333\377ggf\377gge\377ffd\377"
1983 "eed\377ddc\377ddb\377\323\323\320\377\321\321\316\377\241\241\240\377"
1984 "\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\320\320\320\377\0\0\0\377"
1985 "\377\377\377\377\340\340\335\377\336\336\333\377\334\334\332\377\333"
1986 "\333\330\377\0\0\0\377\377\377\377\377\350\350\346\377\346\346\344\377"
1987 "\345\345\343\377\343\343\341\377\341\341\337\377\340\340\336\377\336"
1988 "\336\334\377\335\335\332\377\333\333\330\377\332\332\327\377\330\330"
1989 "\325\377\326\326\323\377\325\325\322\377\323\323\320\377\322\322\316"
1990 "\377\320\320\315\377\317\317\313\377\240\240\237\377\0\0\0\377\0\0\0"
1991 "_\0\0\0$\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\377\377\377\377\335\335"
1992 "\332\377\333\333\330\377\332\332\327\377\330\330\325\377\0\0\0\377\377"
1993 "\377\377\377\345\345\343\377\227\227\226\377\216\216\215\377\215\215"
1994 "\214\377\214\214\212\377\335\335\333\377\222\222\220\377\236\236\233"
1995 "\377\234\234\232\377\207\207\205\377\325\325\322\377\257\257\254\377"
1996 "\230\230\226\377\213\213\210\377\253\253\247\377\315\315\312\377\314"
1997 "\314\310\377\242\242\241\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\40"
1998 "\0\0\0T\0\0\0\377\320\320\320\377\261\261\257\377\264\264\263\377\264"
1999 "\264\261\377\240\240\235\377\0\0\0\377\377\377\377\377\342\342\340\377"
2000 "\341\341\336\377\337\337\335\377\336\336\333\377\334\334\331\377\332"
2001 "\332\330\377\331\331\326\377\327\327\324\377\326\326\322\377\324\324"
2002 "\321\377\323\323\317\377\321\321\315\377\317\317\314\377\316\316\312"
2003 "\377\314\314\310\377\314\314\307\377\314\314\307\377\242\242\240\377"
2004 "\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\12\0\0\0\37\0\0\0\377\0\0\0\377"
2005 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\377\377\377\377\340"
2006 "\340\335\377\224\224\222\377\266\266\264\377\333\333\330\377\235\235"
2007 "\233\377\210\210\206\377\326\326\323\377\325\325\321\377\214\214\212"
2008 "\377\217\217\215\377\203\203\200\377\316\316\312\377\224\224\221\377"
2009 "\224\224\220\377\314\314\307\377\314\314\307\377\314\314\307\377\237"
2010 "\237\237\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0%"
2011 "\0\0\0T\0\0\0j\0\0\0m\0\0\0m\0\0\0o\0\0\0\377\377\377\377\377\335\335"
2012 "\332\377\333\333\330\377\332\332\327\377\330\330\325\377\326\326\323"
2013 "\377\325\325\322\377\323\323\320\377\322\322\316\377\320\320\315\377"
2014 "\317\317\313\377\315\315\311\377\314\314\307\377\314\314\307\377\314"
2015 "\314\307\377\314\314\307\377\314\314\307\377\314\314\307\377\240\240"
2016 "\237\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\13\0\0"
2017 "\0\34\0\0\0&\0\0\0(\0\0\0(\0\0\0,\0\0\0\377\320\320\320\377\261\261\257"
2018 "\377\264\264\263\377\264\264\261\377\240\240\235\377\240\240\235\377"
2019 "\237\237\235\377\237\237\235\377\237\237\233\377\231\231\225\377\215"
2020 "\215\211\377\213\213\211\377\213\213\211\377\213\213\211\377\211\211"
2021 "\211\377\211\211\211\377\203\203\177\377\204\204\202\377]]\\\377\0\0"
2022 "\0\377\0\0\0^\0\0\0$\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\4\0\0\0\6"
2023 "\0\0\0\7\0\0\0\7\0\0\0\13\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
2024 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
2025 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2026 "\0\0\0\377\0\0\0\377\0\0\0\263\0\0\0T\0\0\0\37\0\0\0\0\0\0\0\0\0\0\0"
2027 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0!\0\0\0S\0\0"
2028 "\0i\0\0\0m\0\0\0m\0\0\0m\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0"
2029 "\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0l\0\0\0`\0\0\0:"
2030 "\0\0\0\23\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2031 "\0\0\0\0\0\1\0\0\0\12\0\0\0\34\0\0\0&\0\0\0(\0\0\0(\0\0\0(\0\0\0)\0\0"
2032 "\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0"
2033 "\0\0)\0\0\0)\0\0\0(\0\0\0#\0\0\0\25\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0"
2034 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\4\0\0\0"
2035 "\6\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0"
2036 "\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0"
2037 "\7\0\0\0\6\0\0\0\4\0\0\0\1"};
2038
2039
2040/* GdkPixbuf RGBA C-Source image dump */
2041
2042#ifdef __SUNPRO_C
2043#pragma align 4 (stock_not)
2044#endif
2045#ifdef __GNUC__
2046static const guint8 stock_not[] __attribute__ ((__aligned__ (4))) =
2047#else
2048static const guint8 stock_not[] =
2049#endif
2050{ ""
2051 /* Pixbuf magic (0x47646b50) */
2052 "GdkP"
2053 /* length: header (24) + pixel_data (2304) */
2054 "\0\0\11\30"
2055 /* pixdata_type (0x1010002) */
2056 "\1\1\0\2"
2057 /* rowstride (96) */
2058 "\0\0\0`"
2059 /* width (24) */
2060 "\0\0\0\30"
2061 /* height (24) */
2062 "\0\0\0\30"
2063 /* pixel_data: */
2064 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2065 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2066 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2067 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0b\0\0\0\260\0\0\0\342"
2068 "\0\0\0\373\0\0\0\373\0\0\0\343\0\0\0\263\0\0\0j\0\0\0\13\0\0\0\5\0\0"
2069 "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2070 "\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0b\0\0\0\341n\35\15\377\2670\25\377\315"
2071 "4\27\377\3173\27\377\3152\26\377\310/\25\377\260(\22\377h\27\12\377\0"
2072 "\0\0\345\0\0\0o\0\0\0\14\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2073 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\225K\24\11\377\3105\27\377"
2074 "\3237\31\377\3215\30\377\3173\27\377\3151\26\377\3140\25\377\312.\25"
2075 "\377\310,\24\377\306+\23\377\270'\21\377D\16\5\377\0\0\0\243\0\0\0\24"
2076 "\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"
2077 "\0\225o\36\15\377\3238\31\377\3236\30\377\331_H\377\361\317\311\377\371"
2078 "\364\363\377\371\371\371\377\364\353\352\377\350\273\265\377\325vj\377"
2079 "\307\77-\377\302'\21\377\300%\21\377c\22\10\377\0\0\0\246\0\0\0\26\0"
2080 "\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0bK\24\11\377\323"
2081 "8\31\377\3226\30\377\353\261\246\377\372\372\372\377\372\372\372\377"
2082 "\372\372\372\377\371\371\371\377\370\370\370\377\370\370\370\377\355"
2083 "\324\320\377\277#\20\377\277#\20\377\276#\20\377\274!\17\377B\13\5\377"
2084 "\0\0\0|\0\0\0\24\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\341\307"
2085 "4\27\377\3226\30\377\353\261\246\377\373\373\373\377\372\372\372\377"
2086 "\372\372\372\377\371\371\371\377\370\370\370\377\370\370\370\377\355"
2087 "\324\320\377\277#\20\377\277#\20\377\277#\20\377\277#\20\377\272\37\16"
2088 "\377\255\34\14\377\0\0\0\351\0\0\0(\0\0\0\14\0\0\0\1\0\0\0\0\0\0\0\0"
2089 "\0\0\0bm\34\14\377\3225\30\377\326WA\377\372\372\372\377\372\372\372"
2090 "\377\372\372\372\377\371\371\371\377\370\370\370\377\370\370\370\377"
2091 "\355\324\320\377\277#\20\377\277#\20\377\277#\20\377\277#\20\377\277"
2092 "#\20\377\303C6\377\266\34\14\377^\16\5\377\0\0\0\204\0\0\0\31\0\0\0\5"
2093 "\0\0\0\0\0\0\0\1\0\0\0\260\266.\24\377\3173\27\377\341\232\220\377\372"
2094 "\372\372\377\371\371\371\377\371\371\371\377\370\370\370\377\370\370"
2095 "\370\377\355\324\320\377\277#\20\377\277#\20\377\277#\20\377\277#\20"
2096 "\377\277#\20\377\347\306\302\377\335\247\242\377\264\32\13\377\233\25"
2097 "\11\377\0\0\0\304\0\0\0'\0\0\0\13\0\0\0\1\0\0\0\2\0\0\0\342\3132\26\377"
2098 "\3151\26\377\353\306\302\377\371\371\371\377\371\371\371\377\370\370"
2099 "\370\377\367\367\367\377\355\324\320\377\277#\20\377\277#\20\377\277"
2100 "#\20\377\277#\20\377\277#\20\377\347\306\302\377\362\362\362\377\347"
2101 "\312\306\377\262\30\12\377\255\26\12\377\0\0\0\352\0\0\0""4\0\0\0\22"
2102 "\0\0\0\2\0\0\0\3\0\0\0\373\3141\26\377\313/\25\377\361\337\335\377\371"
2103 "\371\371\377\370\370\370\377\367\367\367\377\355\324\320\377\277#\20"
2104 "\377\277#\20\377\277#\20\377\277#\20\377\277#\20\377\347\306\302\377"
2105 "\362\362\362\377\361\361\361\377\355\343\342\377\260\26\12\377\256\24"
2106 "\11\377\0\0\0\374\0\0\0<\0\0\0\26\0\0\0\3\0\0\0\3\0\0\0\373\312/\25\377"
2107 "\311-\24\377\361\337\335\377\370\370\370\377\367\367\367\377\355\324"
2108 "\320\377\277#\20\377\277#\20\377\277#\20\377\277#\20\377\277#\20\377"
2109 "\347\306\302\377\362\362\362\377\361\361\361\377\361\361\361\377\351"
2110 "\327\325\377\256\24\11\377\254\22\10\377\0\0\0\374\0\0\0A\0\0\0\30\0"
2111 "\0\0\3\0\0\0\3\0\0\0\343\305,\23\377\307+\23\377\347\272\265\377\367"
2112 "\367\367\377\355\324\320\377\277#\20\377\277#\20\377\277#\20\377\277"
2113 "#\20\377\277#\20\377\347\306\302\377\362\362\362\377\361\361\361\377"
2114 "\361\361\361\377\360\360\360\377\346\321\316\377\255\22\10\377\247\20"
2115 "\7\377\0\0\0\353\0\0\0A\0\0\0\30\0\0\0\3\0\0\0\3\0\0\0\263\255%\20\377"
2116 "\305)\22\377\335\226\215\377\352\310\304\377\277#\20\377\277#\20\377"
2117 "\277#\20\377\277#\20\377\277#\20\377\347\306\302\377\362\362\362\377"
2118 "\361\361\361\377\361\361\361\377\360\360\360\377\357\357\357\377\333"
2119 "\254\250\377\253\20\7\377\223\14\5\377\0\0\0\310\0\0\0=\0\0\0\26\0\0"
2120 "\0\3\0\0\0\2\0\0\0jf\25\11\377\302'\21\377\307A1\377\277#\20\377\277"
2121 "#\20\377\277#\20\377\277#\20\377\277#\20\377\347\305\301\377\362\362"
2122 "\362\377\361\361\361\377\360\360\360\377\360\360\360\377\357\357\357"
2123 "\377\356\356\356\377\267:3\377\250\16\6\377V\6\2\377\0\0\0\222\0\0\0"
2124 "4\0\0\0\22\0\0\0\2\0\0\0\1\0\0\0\13\0\0\0\345\264#\20\377\277#\20\377"
2125 "\277#\20\377\277#\20\377\277#\20\377\277#\20\377\347\305\301\377\362"
2126 "\362\362\377\361\361\361\377\360\360\360\377\360\360\360\377\357\357"
2127 "\357\377\356\356\356\377\321\223\217\377\250\16\6\377\233\13\5\377\0"
2128 "\0\0\353\0\0\0I\0\0\0'\0\0\0\13\0\0\0\1\0\0\0\0\0\0\0\5\0\0\0oC\14\5"
2129 "\377\274!\17\377\273\40\16\377\277#\20\377\277#\20\377\344\273\266\377"
2130 "\362\362\362\377\361\361\361\377\360\360\360\377\360\360\360\377\357"
2131 "\357\357\377\355\355\355\377\321\223\217\377\247\15\6\377\245\13\5\377"
2132 "9\3\1\377\0\0\0\224\0\0\0;\0\0\0\31\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\1\0"
2133 "\0\0\14\0\0\0\243a\20\7\377\270\36\15\377\267\34\14\377\300=1\377\326"
2134 "\212\201\377\337\255\246\377\344\303\276\377\354\343\341\377\346\321"
2135 "\316\377\332\253\247\377\26780\377\247\15\5\377\244\13\5\377U\5\1\377"
2136 "\0\0\0\267\0\0\0F\0\0\0(\0\0\0\14\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2137 "\0\4\0\0\0\24\0\0\0\246@\12\3\377\251\31\12\377\263\30\13\377\261\26"
2138 "\12\377\257\25\11\377\255\23\10\377\253\21\10\377\252\20\7\377\250\16"
2139 "\6\377\246\14\5\377\232\12\4\3779\3\1\377\0\0\0\267\0\0\0I\0\0\0/\0\0"
2140 "\0\24\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\6\0\0\0\26"
2141 "\0\0\0|\0\0\0\351\\\13\5\377\230\22\10\377\252\23\10\377\253\21\7\377"
2142 "\251\17\7\377\244\16\6\377\221\13\4\377U\5\2\377\0\0\0\353\0\0\0\224"
2143 "\0\0\0F\0\0\0/\0\0\0\26\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2144 "\0\0\0\0\0\0\0\0\1\0\0\0\6\0\0\0\24\0\0\0(\0\0\0\204\0\0\0\304\0\0\0"
2145 "\352\0\0\0\374\0\0\0\374\0\0\0\353\0\0\0\310\0\0\0\222\0\0\0I\0\0\0;"
2146 "\0\0\0(\0\0\0\24\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2147 "\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\14\0\0\0\31\0\0\0'\0\0\0""4"
2148 "\0\0\0<\0\0\0A\0\0\0A\0\0\0<\0\0\0""4\0\0\0'\0\0\0\31\0\0\0\14\0\0\0"
2149 "\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2150 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\13\0\0\0\22\0\0\0\26\0\0"
2151 "\0\30\0\0\0\30\0\0\0\26\0\0\0\22\0\0\0\13\0\0\0\5\0\0\0\1\0\0\0\0\0\0"
2152 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2153 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\3\0\0"
2154 "\0\3\0\0\0\3\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2155 "\0\0\0\0\0\0\0\0\0\0\0\0"};
2156
2157
2158/* GdkPixbuf RGBA C-Source image dump */
2159
2160#ifdef __SUNPRO_C
2161#pragma align 4 (stock_table_borders)
2162#endif
2163#ifdef __GNUC__
2164static const guint8 stock_table_borders[] __attribute__ ((__aligned__ (4))) =
2165#else
2166static const guint8 stock_table_borders[] =
2167#endif
2168{ ""
2169 /* Pixbuf magic (0x47646b50) */
2170 "GdkP"
2171 /* length: header (24) + pixel_data (2304) */
2172 "\0\0\11\30"
2173 /* pixdata_type (0x1010002) */
2174 "\1\1\0\2"
2175 /* rowstride (96) */
2176 "\0\0\0`"
2177 /* width (24) */
2178 "\0\0\0\30"
2179 /* height (24) */
2180 "\0\0\0\30"
2181 /* pixel_data: */
2182 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2183 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2184 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2185 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
2186 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2187 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2188 "\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\377\377\377\377\377\377\377\377\377\377"
2189 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
2190 "\377\377\377\377\377\377\377\377\377\377\375\375\375\377\377\377\377"
2191 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
2192 "\377\377\377\377\377\377\377\377\377\377\377\377\336\336\336\377\0\0"
2193 "\0\377\0\0\0E\0\0\0\16\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360"
2194 "\377\360\360\360\377\360\360\360\377\360\360\360\377\360\360\360\377"
2195 "\360\360\360\377\360\360\360\377\362\362\362\377nnn\377\363\363\363\377"
2196 "\363\363\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366"
2197 "\366\366\377\366\366\366\377\367\367\367\377\346\346\346\377\0\0\0\377"
2198 "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360\377\360"
2199 "\360\360\377\360\360\360\377\360\360\360\377\360\360\360\377\360\360"
2200 "\360\377\360\360\360\377\362\362\362\377\362\362\362\377\363\363\363"
2201 "\377\363\363\363\377\364\364\364\377\365\365\365\377\365\365\365\377"
2202 "\366\366\366\377\366\366\366\377\367\367\367\377\346\346\346\377\0\0"
2203 "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360"
2204 "\377\360\360\360\377\360\360\360\377\360\360\360\377\360\360\360\377"
2205 "\360\360\360\377\361\361\361\377\362\362\362\377jjj\377\363\363\363\377"
2206 "\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366\377\366"
2207 "\366\366\377\367\367\367\377\367\367\367\377\347\347\347\377\0\0\0\377"
2208 "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360\377\360"
2209 "\360\360\377\360\360\360\377\360\360\360\377\360\360\360\377\361\361"
2210 "\361\377\362\362\362\377\363\363\363\377\363\363\363\377\364\364\364"
2211 "\377\365\365\365\377\365\365\365\377\366\366\366\377\366\366\366\377"
2212 "\367\367\367\377\367\367\367\377\370\370\370\377\350\350\350\377\0\0"
2213 "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360"
2214 "\377\360\360\360\377\360\360\360\377\360\360\360\377\361\361\361\377"
2215 "\362\362\362\377\362\362\362\377\363\363\363\377kkk\377\365\365\365\377"
2216 "\365\365\365\377\366\366\366\377\366\366\366\377\367\367\367\377\367"
2217 "\367\367\377\370\370\370\377\371\371\371\377\350\350\350\377\0\0\0\377"
2218 "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360\377\360"
2219 "\360\360\377\360\360\360\377\361\361\361\377\362\362\362\377\362\362"
2220 "\362\377\363\363\363\377\364\364\364\377\365\365\365\377\365\365\365"
2221 "\377\366\366\366\377\366\366\366\377\367\367\367\377\367\367\367\377"
2222 "\370\370\370\377\371\371\371\377\371\371\371\377\351\351\351\377\0\0"
2223 "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360"
2224 "\377\360\360\360\377\361\361\361\377\362\362\362\377\362\362\362\377"
2225 "\363\363\363\377\363\363\363\377\365\365\365\377kkk\377\366\366\366\377"
2226 "\366\366\366\377\367\367\367\377\367\367\367\377\370\370\370\377\371"
2227 "\371\371\377\371\371\371\377\372\372\372\377\351\351\351\377\0\0\0\377"
2228 "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\361\361\361\377\361"
2229 "\361\361\377\362\362\362\377\362\362\362\377\363\363\363\377\363\363"
2230 "\363\377\364\364\364\377\365\365\365\377\366\366\366\377\366\366\366"
2231 "\377\367\367\367\377\367\367\367\377\370\370\370\377\371\371\371\377"
2232 "\371\371\371\377\372\372\372\377\372\372\372\377\352\352\352\377\0\0"
2233 "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\376\376\376\377kkk\377\362\362"
2234 "\362\377jjj\377\363\363\363\377jjj\377\364\364\364\377kkk\377\366\366"
2235 "\366\377lll\377\367\367\367\377lll\377\370\370\370\377mmm\377\371\371"
2236 "\371\377mmm\377\372\372\372\377nnn\377\353\353\353\377\0\0\0\377\0\0"
2237 "\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\362\362\362\377\362\362"
2238 "\362\377\363\363\363\377\363\363\363\377\364\364\364\377\365\365\365"
2239 "\377\365\365\365\377\366\366\366\377\367\367\367\377\367\367\367\377"
2240 "\370\370\370\377\371\371\371\377\371\371\371\377\372\372\372\377\372"
2241 "\372\372\377\373\373\373\377\374\374\374\377\353\353\353\377\0\0\0\377"
2242 "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\363\363\363\377\363"
2243 "\363\363\377\363\363\363\377\364\364\364\377\365\365\365\377\365\365"
2244 "\365\377\366\366\366\377\367\367\367\377lll\377\370\370\370\377\371\371"
2245 "\371\377\371\371\371\377\372\372\372\377\372\372\372\377\373\373\373"
2246 "\377\374\374\374\377\374\374\374\377\354\354\354\377\0\0\0\377\0\0\0"
2247 "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\363\363\363\377\363\363"
2248 "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366"
2249 "\377\366\366\366\377\367\367\367\377\370\370\370\377\371\371\371\377"
2250 "\371\371\371\377\372\372\372\377\372\372\372\377\373\373\373\377\374"
2251 "\374\374\377\374\374\374\377\375\375\375\377\354\354\354\377\0\0\0\377"
2252 "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\364\364\364\377\364"
2253 "\364\364\377\365\365\365\377\365\365\365\377\366\366\366\377\366\366"
2254 "\366\377\367\367\367\377\370\370\370\377mmm\377\371\371\371\377\372\372"
2255 "\372\377\372\372\372\377\373\373\373\377\374\374\374\377\374\374\374"
2256 "\377\375\375\375\377\375\375\375\377\355\355\355\377\0\0\0\377\0\0\0"
2257 "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\365\365\365\377\365\365"
2258 "\365\377\365\365\365\377\366\366\366\377\366\366\366\377\367\367\367"
2259 "\377\367\367\367\377\371\371\371\377\371\371\371\377\372\372\372\377"
2260 "\372\372\372\377\373\373\373\377\374\374\374\377\374\374\374\377\375"
2261 "\375\375\377\375\375\375\377\376\376\376\377\356\356\356\377\0\0\0\377"
2262 "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\365\365\365\377\365"
2263 "\365\365\377\366\366\366\377\366\366\366\377\367\367\367\377\367\367"
2264 "\367\377\370\370\370\377\371\371\371\377mmm\377\372\372\372\377\373\373"
2265 "\373\377\374\374\374\377\374\374\374\377\375\375\375\377\375\375\375"
2266 "\377\376\376\376\377\377\377\377\377\356\356\356\377\0\0\0\377\0\0\0"
2267 "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\366\366\366\377\366\366"
2268 "\366\377\366\366\366\377\367\367\367\377\367\367\367\377\370\370\370"
2269 "\377\371\371\371\377\372\372\372\377\372\372\372\377\373\373\373\377"
2270 "\374\374\374\377\374\374\374\377\375\375\375\377\375\375\375\377\376"
2271 "\376\376\377\377\377\377\377\377\377\377\377\356\356\356\377\0\0\0\377"
2272 "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\366\366\366\377\366"
2273 "\366\366\377\367\367\367\377\367\367\367\377\370\370\370\377\371\371"
2274 "\371\377\371\371\371\377\372\372\372\377nnn\377\374\374\374\377\374\374"
2275 "\374\377\375\375\375\377\375\375\375\377\376\376\376\377\377\377\377"
2276 "\377\377\377\377\377\377\377\377\377\356\356\356\377\0\0\0\377\0\0\0"
2277 "R\0\0\0\20\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2278 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2279 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2280 "\0\0\0\377\0\0\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\0\0\0\377\0\0"
2281 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
2282 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2283 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0R\0\0\0\20\0"
2284 "\0\0\0\0\0\0\15\0\0\0D\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0"
2285 "\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0"
2286 "\0\0R\0\0\0R\0\0\0R\0\0\0E\0\0\0\16\0\0\0\0\0\0\0\2\0\0\0\15\0\0\0\20"
2287 "\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0"
2288 "\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0"
2289 "\0\0\20\0\0\0\20\0\0\0\20\0\0\0\16\0\0\0\3"};
2290
2291
2292/* GdkPixbuf RGBA C-Source image dump */
2293
2294#ifdef __SUNPRO_C
2295#pragma align 4 (stock_table_fill)
2296#endif
2297#ifdef __GNUC__
2298static const guint8 stock_table_fill[] __attribute__ ((__aligned__ (4))) =
2299#else
2300static const guint8 stock_table_fill[] =
2301#endif
2302{ ""
2303 /* Pixbuf magic (0x47646b50) */
2304 "GdkP"
2305 /* length: header (24) + pixel_data (2304) */
2306 "\0\0\11\30"
2307 /* pixdata_type (0x1010002) */
2308 "\1\1\0\2"
2309 /* rowstride (96) */
2310 "\0\0\0`"
2311 /* width (24) */
2312 "\0\0\0\30"
2313 /* height (24) */
2314 "\0\0\0\30"
2315 /* pixel_data: */
2316 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2317 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2318 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2319 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
2320 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2321 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2322 "\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\377\262\262\262\377\262\262\262\377\262"
2323 "\262\262\377\262\262\262\377\262\262\262\377\262\262\262\377\262\262"
2324 "\262\377\262\262\262\377\262\262\262\377\260\260\260\377\377\377\377"
2325 "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
2326 "\377\377\377\377\377\377\377\377\377\377\377\377\336\336\336\377\0\0"
2327 "\0\377\0\0\0E\0\0\0\16\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247"
2328 "\377\247\247\247\377\247\247\247\377\247\247\247\377\247\247\247\377"
2329 "\247\247\247\377\247\247\247\377\250\250\250\377LLL\377\363\363\363\377"
2330 "\363\363\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366"
2331 "\366\366\377\366\366\366\377\367\367\367\377\346\346\346\377\0\0\0\377"
2332 "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247\377\247"
2333 "\247\247\377\247\247\247\377\247\247\247\377\247\247\247\377\247\247"
2334 "\247\377\247\247\247\377\250\250\250\377\250\250\250\377\363\363\363"
2335 "\377\363\363\363\377\364\364\364\377\365\365\365\377\365\365\365\377"
2336 "\366\366\366\377\366\366\366\377\367\367\367\377\346\346\346\377\0\0"
2337 "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247"
2338 "\377\247\247\247\377\247\247\247\377\247\247\247\377\247\247\247\377"
2339 "\247\247\247\377\250\250\250\377\250\250\250\377III\377\363\363\363\377"
2340 "\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366\377\366"
2341 "\366\366\377\367\367\367\377\367\367\367\377\347\347\347\377\0\0\0\377"
2342 "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247\377\247"
2343 "\247\247\377\247\247\247\377\247\247\247\377\247\247\247\377\250\250"
2344 "\250\377\250\250\250\377\251\251\251\377\251\251\251\377\364\364\364"
2345 "\377\365\365\365\377\365\365\365\377\366\366\366\377\366\366\366\377"
2346 "\367\367\367\377\367\367\367\377\370\370\370\377\350\350\350\377\0\0"
2347 "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247"
2348 "\377\247\247\247\377\247\247\247\377\247\247\247\377\250\250\250\377"
2349 "\250\250\250\377\250\250\250\377\251\251\251\377JJJ\377\365\365\365\377"
2350 "\365\365\365\377\366\366\366\377\366\366\366\377\367\367\367\377\367"
2351 "\367\367\377\370\370\370\377\371\371\371\377\350\350\350\377\0\0\0\377"
2352 "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247\377\247"
2353 "\247\247\377\247\247\247\377\250\250\250\377\250\250\250\377\250\250"
2354 "\250\377\251\251\251\377\252\252\252\377\253\253\253\377\365\365\365"
2355 "\377\366\366\366\377\366\366\366\377\367\367\367\377\367\367\367\377"
2356 "\370\370\370\377\371\371\371\377\371\371\371\377\351\351\351\377\0\0"
2357 "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247"
2358 "\377\247\247\247\377\250\250\250\377\250\250\250\377\250\250\250\377"
2359 "\251\251\251\377\251\251\251\377\253\253\253\377JJJ\377\366\366\366\377"
2360 "\366\366\366\377\367\367\367\377\367\367\367\377\370\370\370\377\371"
2361 "\371\371\377\371\371\371\377\372\372\372\377\351\351\351\377\0\0\0\377"
2362 "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\250\250\250\377\250"
2363 "\250\250\377\250\250\250\377\250\250\250\377\251\251\251\377\251\251"
2364 "\251\377\252\252\252\377\253\253\253\377\253\253\253\377\366\366\366"
2365 "\377\367\367\367\377\367\367\367\377\370\370\370\377\371\371\371\377"
2366 "\371\371\371\377\372\372\372\377\372\372\372\377\352\352\352\377\0\0"
2367 "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\261\261\261\377JJJ\377\250\250"
2368 "\250\377III\377\251\251\251\377III\377\252\252\252\377JJJ\377\253\253"
2369 "\253\377KKK\377\254\254\254\377KKK\377\255\255\255\377LLL\377\255\255"
2370 "\255\377LLL\377\256\256\256\377LLL\377\244\244\244\377\0\0\0\377\0\0"
2371 "\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\362\362\362\377\362\362"
2372 "\362\377\363\363\363\377\363\363\363\377\364\364\364\377\365\365\365"
2373 "\377\365\365\365\377\366\366\366\377\254\254\254\377\254\254\254\377"
2374 "\255\255\255\377\255\255\255\377\255\255\255\377\256\256\256\377\256"
2375 "\256\256\377\257\257\257\377\257\257\257\377\244\244\244\377\0\0\0\377"
2376 "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\363\363\363\377\363"
2377 "\363\363\377\363\363\363\377\364\364\364\377\365\365\365\377\365\365"
2378 "\365\377\366\366\366\377\367\367\367\377KKK\377\255\255\255\377\255\255"
2379 "\255\377\255\255\255\377\256\256\256\377\256\256\256\377\257\257\257"
2380 "\377\257\257\257\377\257\257\257\377\244\244\244\377\0\0\0\377\0\0\0"
2381 "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\363\363\363\377\363\363"
2382 "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366"
2383 "\377\366\366\366\377\367\367\367\377\255\255\255\377\255\255\255\377"
2384 "\255\255\255\377\256\256\256\377\256\256\256\377\257\257\257\377\257"
2385 "\257\257\377\257\257\257\377\260\260\260\377\244\244\244\377\0\0\0\377"
2386 "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\364\364\364\377\364"
2387 "\364\364\377\365\365\365\377\365\365\365\377\366\366\366\377\366\366"
2388 "\366\377\367\367\367\377\370\370\370\377LLL\377\255\255\255\377\256\256"
2389 "\256\377\256\256\256\377\257\257\257\377\257\257\257\377\257\257\257"
2390 "\377\260\260\260\377\260\260\260\377\245\245\245\377\0\0\0\377\0\0\0"
2391 "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\365\365\365\377\365\365"
2392 "\365\377\365\365\365\377\366\366\366\377\366\366\366\377\367\367\367"
2393 "\377\367\367\367\377\371\371\371\377\255\255\255\377\256\256\256\377"
2394 "\256\256\256\377\257\257\257\377\257\257\257\377\257\257\257\377\260"
2395 "\260\260\377\260\260\260\377\261\261\261\377\246\246\246\377\0\0\0\377"
2396 "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\365\365\365\377\365"
2397 "\365\365\377\366\366\366\377\366\366\366\377\367\367\367\377\367\367"
2398 "\367\377\370\370\370\377\371\371\371\377LLL\377\256\256\256\377\257\257"
2399 "\257\377\257\257\257\377\257\257\257\377\260\260\260\377\260\260\260"
2400 "\377\261\261\261\377\262\262\262\377\246\246\246\377\0\0\0\377\0\0\0"
2401 "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\366\366\366\377\366\366"
2402 "\366\377\366\366\366\377\367\367\367\377\367\367\367\377\370\370\370"
2403 "\377\371\371\371\377\372\372\372\377\256\256\256\377\257\257\257\377"
2404 "\257\257\257\377\257\257\257\377\260\260\260\377\260\260\260\377\261"
2405 "\261\261\377\262\262\262\377\262\262\262\377\246\246\246\377\0\0\0\377"
2406 "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\366\366\366\377\366"
2407 "\366\366\377\367\367\367\377\367\367\367\377\370\370\370\377\371\371"
2408 "\371\377\371\371\371\377\372\372\372\377LLL\377\257\257\257\377\257\257"
2409 "\257\377\260\260\260\377\260\260\260\377\261\261\261\377\262\262\262"
2410 "\377\262\262\262\377\262\262\262\377\246\246\246\377\0\0\0\377\0\0\0"
2411 "R\0\0\0\20\0\0\0\0\0\0\0\377\356\356\356\377\346\346\346\377\346\346"
2412 "\346\377\346\346\346\377\347\347\347\377\350\350\350\377\350\350\350"
2413 "\377\351\351\351\377\352\352\352\377\244\244\244\377\244\244\244\377"
2414 "\244\244\244\377\244\244\244\377\245\245\245\377\246\246\246\377\246"
2415 "\246\246\377\246\246\246\377\246\246\246\377\232\232\232\377\0\0\0\377"
2416 "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
2417 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
2418 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2419 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\15\0\0\0"
2420 "D\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0"
2421 "\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0"
2422 "\0\0E\0\0\0\16\0\0\0\0\0\0\0\2\0\0\0\15\0\0\0\20\0\0\0\20\0\0\0\20\0"
2423 "\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20"
2424 "\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0"
2425 "\20\0\0\0\16\0\0\0\3"};
2426
2427
2428/* GdkPixbuf RGBA C-Source image dump */
2429
2430#ifdef __SUNPRO_C
2431#pragma align 4 (stock_text_bulleted_list)
2432#endif
2433#ifdef __GNUC__
2434static const guint8 stock_text_bulleted_list[] __attribute__ ((__aligned__ (4))) =
2435#else
2436static const guint8 stock_text_bulleted_list[] =
2437#endif
2438{ ""
2439 /* Pixbuf magic (0x47646b50) */
2440 "GdkP"
2441 /* length: header (24) + pixel_data (2304) */
2442 "\0\0\11\30"
2443 /* pixdata_type (0x1010002) */
2444 "\1\1\0\2"
2445 /* rowstride (96) */
2446 "\0\0\0`"
2447 /* width (24) */
2448 "\0\0\0\30"
2449 /* height (24) */
2450 "\0\0\0\30"
2451 /* pixel_data: */
2452 "\0\0\0\27\0\0\0\224\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2453 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2454 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\232"
2455 "\0\0\0'\0\0\0\6\0\0\0\1\0\0\0\224\342\342\342\377\362\362\362\377\362"
2456 "\362\362\377\362\362\362\377\362\362\362\377\363\363\363\377\363\363"
2457 "\363\377\363\363\363\377\364\364\364\377\364\364\364\377\364\364\364"
2458 "\377\365\365\365\377\365\365\365\377\365\365\365\377\366\366\366\377"
2459 "\366\366\366\377\367\367\367\377\367\367\367\377\364\364\364\377\333"
2460 "\333\333\377\0\0\0\243\0\0\0\25\0\0\0\6\0\0\0\377\360\360\360\377\340"
2461 "\340\340\377\340\340\340\377\341\341\341\377\342\342\342\377\343\343"
2462 "\343\377\344\344\344\377\345\345\345\377\346\346\346\377\347\347\347"
2463 "\377\350\350\350\377\350\350\350\377\351\351\351\377\352\352\352\377"
2464 "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357"
2465 "\357\357\377\355\355\355\377\0\0\0\377\0\0\0)\0\0\0\16\0\0\0\377\362"
2466 "\362\362\377\341\341\341\377\341\341\341\377\342\342\342\377\343\343"
2467 "\343\377\344\344\344\377\345\345\345\377\346\346\346\377\347\347\347"
2468 "\377\350\350\350\377\351\351\351\377\352\352\352\377\352\352\352\377"
2469 "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357"
2470 "\357\357\377\360\360\360\377\361\361\361\377\0\0\0\377\0\0\0""8\0\0\0"
2471 "\25\0\0\0\377\362\362\362\377\342\342\342\377\343\343\343\377\236\236"
2472 "\236\377mmm\377\237\237\237\377\346\346\346\377\347\347\347\377ooo\377"
2473 "ppp\377ppp\377qqq\377qqq\377qqq\377rrr\377rrr\377sss\377\360\360\360"
2474 "\377\361\361\361\377\362\362\362\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0"
2475 "\377\363\363\363\377\343\343\343\377\344\344\344\377nnn\377nnn\377nn"
2476 "n\377\347\347\347\377\350\350\350\377\351\351\351\377\352\352\352\377"
2477 "\353\353\353\377\354\354\354\377\355\355\355\377\355\355\355\377\356"
2478 "\356\356\377\357\357\357\377\360\360\360\377\361\361\361\377\362\362"
2479 "\362\377\363\363\363\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363"
2480 "\363\377\344\344\344\377\345\345\345\377\240\240\240\377ooo\377\241\241"
2481 "\241\377\350\350\350\377\351\351\351\377ppp\377qqq\377qqq\377rrr\377"
2482 "rrr\377sss\377sss\377sss\377ttt\377\362\362\362\377\363\363\363\377\364"
2483 "\364\364\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\345"
2484 "\345\345\377\346\346\346\377\347\347\347\377\350\350\350\377\351\351"
2485 "\351\377\351\351\351\377\352\352\352\377\353\353\353\377\354\354\354"
2486 "\377\355\355\355\377\356\356\356\377\357\357\357\377\360\360\360\377"
2487 "\356\356\356\377\360\360\360\377\361\361\361\377\363\363\363\377\364"
2488 "\364\364\377\365\365\365\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364"
2489 "\364\364\377\346\346\346\377\347\347\347\377\350\350\350\377\351\351"
2490 "\351\377\352\352\352\377\352\352\352\377\353\353\353\377qqq\377rrr\377"
2491 "rrr\377sss\377sss\377ttt\377\362\362\362\377\363\363\363\377\363\363"
2492 "\363\377\364\364\364\377\365\365\365\377\366\366\366\377\0\0\0\377\0"
2493 "\0\0=\0\0\0\27\0\0\0\377\364\364\364\377\347\347\347\377\350\350\350"
2494 "\377\351\351\351\377\352\352\352\377\353\353\353\377\354\354\354\377"
2495 "\354\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377\360"
2496 "\360\360\377\361\361\361\377\362\362\362\377\363\363\363\377\364\364"
2497 "\364\377\365\365\365\377\365\365\365\377\366\366\366\377\367\367\367"
2498 "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\350\350\350"
2499 "\377\351\351\351\377\352\352\352\377\353\353\353\377\354\354\354\377"
2500 "\355\355\355\377\356\356\356\377\356\356\356\377\357\357\357\377\360"
2501 "\360\360\377\361\361\361\377\362\362\362\377\363\363\363\377\364\364"
2502 "\364\377\365\365\365\377\366\366\366\377\367\367\367\377\367\367\367"
2503 "\377\370\370\370\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365"
2504 "\377\351\351\351\377\352\352\352\377\353\353\353\377\354\354\354\377"
2505 "\355\355\355\377\356\356\356\377\357\357\357\377\360\360\360\377\360"
2506 "\360\360\377\361\361\361\377\362\362\362\377\363\363\363\377\364\364"
2507 "\364\377\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370"
2508 "\377\370\370\370\377\371\371\371\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0"
2509 "\377\365\365\365\377\352\352\352\377\353\353\353\377\354\354\354\377"
2510 "\355\355\355\377\356\356\356\377\357\357\357\377\360\360\360\377\361"
2511 "\361\361\377\362\362\362\377\362\362\362\377\363\363\363\377\364\364"
2512 "\364\377\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370"
2513 "\377\371\371\371\377\372\372\372\377\372\372\372\377\0\0\0\377\0\0\0"
2514 "=\0\0\0\27\0\0\0\377\366\366\366\377\353\353\353\377\354\354\354\377"
2515 "\303\303\303\377rrr\377\304\304\304\377\360\360\360\377\361\361\361\377"
2516 "ttt\377uuu\377\203\203\203\377uuu\377vvv\377vvv\377www\377www\377xxx"
2517 "\377\372\372\372\377\373\373\373\377\374\374\374\377\0\0\0\377\0\0\0"
2518 "=\0\0\0\27\0\0\0\377\367\367\367\377\355\355\355\377\355\355\355\377"
2519 "rrr\377sss\377sss\377\361\361\361\377\362\362\362\377\363\363\363\377"
2520 "\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366\377\367"
2521 "\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377\373\373"
2522 "\373\377\374\374\374\377\375\375\375\377\0\0\0\377\0\0\0=\0\0\0\27\0"
2523 "\0\0\377\367\367\367\377\356\356\356\377\357\357\357\377\304\304\304"
2524 "\377sss\377\306\306\306\377\362\362\362\377\363\363\363\377uuu\377vv"
2525 "v\377vvv\377www\377www\377www\377xxx\377xxx\377\373\373\373\377\374\374"
2526 "\374\377\375\375\375\377\376\376\376\377\0\0\0\377\0\0\0=\0\0\0\27\0"
2527 "\0\0\377\370\370\370\377\360\360\360\377\361\361\361\377\362\362\362"
2528 "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377"
2529 "\366\366\366\377\367\367\367\377\370\370\370\377\371\371\371\377\372"
2530 "\372\372\377\373\373\373\377\373\373\373\377\374\374\374\377\375\375"
2531 "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\0\0\0\377\0"
2532 "\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\361\361\361\377\362\362\362"
2533 "\377\363\363\363\377\364\364\364\377\364\364\364\377\365\365\365\377"
2534 "\366\366\366\377\367\367\367\377\370\370\370\377\371\371\371\377\372"
2535 "\372\372\377\373\373\373\377\374\374\374\377\375\375\375\377\375\375"
2536 "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377"
2537 "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\362\362\362\377\362\362\362"
2538 "\377\363\363\363\377\364\364\364\377\365\365\365\377\366\366\366\377"
2539 "\366\366\366\377\367\367\367\377\370\370\370\377\371\371\371\377\372"
2540 "\372\372\377\373\373\373\377\374\374\374\377\375\375\375\377\376\376"
2541 "\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
2542 "\377\354\354\354\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\232\311\311\311"
2543 "\377\355\355\355\377\370\370\370\377\365\365\365\377\366\366\366\377"
2544 "\367\367\367\377\370\370\370\377\370\370\370\377\371\371\371\377\372"
2545 "\372\372\377\373\373\373\377\374\374\374\377\375\375\375\377\376\376"
2546 "\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
2547 "\377\356\356\356\377\275\275\275\377\0\0\0\324\0\0\0:\0\0\0\26\0\0\0"
2548 "\34\0\0\0\243\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0"
2549 "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
2550 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\324\0"
2551 "\0\0Y\0\0\0-\0\0\0\20\0\0\0\6\0\0\0\24\0\0\0)\0\0\0""8\0\0\0<\0\0\0="
2552 "\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0"
2553 "=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0""9\0\0\0-\0\0\0\31\0\0\0\7\0\0\0"
2554 "\1\0\0\0\6\0\0\0\16\0\0\0\24\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0"
2555 "\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27"
2556 "\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\25\0\0\0\20\0\0\0\7\0\0\0"
2557 "\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0"
2558 "\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0"
2559 "\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\2\0\0\0\1\0\0\0\0"};
2560
2561
2562/* GdkPixbuf RGBA C-Source image dump */
2563
2564#ifdef __SUNPRO_C
2565#pragma align 4 (stock_text_indent)
2566#endif
2567#ifdef __GNUC__
2568static const guint8 stock_text_indent[] __attribute__ ((__aligned__ (4))) =
2569#else
2570static const guint8 stock_text_indent[] =
2571#endif
2572{ ""
2573 /* Pixbuf magic (0x47646b50) */
2574 "GdkP"
2575 /* length: header (24) + pixel_data (2304) */
2576 "\0\0\11\30"
2577 /* pixdata_type (0x1010002) */
2578 "\1\1\0\2"
2579 /* rowstride (96) */
2580 "\0\0\0`"
2581 /* width (24) */
2582 "\0\0\0\30"
2583 /* height (24) */
2584 "\0\0\0\30"
2585 /* pixel_data: */
2586 "\0\0\0\27\0\0\0\224\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2587 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2588 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\232"
2589 "\0\0\0'\0\0\0\6\0\0\0\1\0\0\0\224\342\342\342\377\362\362\362\377\362"
2590 "\362\362\377\362\362\362\377\362\362\362\377\363\363\363\377\363\363"
2591 "\363\377\363\363\363\377\364\364\364\377\364\364\364\377\364\364\364"
2592 "\377\365\365\365\377\365\365\365\377\365\365\365\377\366\366\366\377"
2593 "\366\366\366\377\367\367\367\377\367\367\367\377\364\364\364\377\333"
2594 "\333\333\377\0\0\0\243\0\0\0\25\0\0\0\6\0\0\0\377\360\360\360\377\340"
2595 "\340\340\377\340\340\340\377\341\341\341\377\342\342\342\377\343\343"
2596 "\343\377\344\344\344\377\345\345\345\377\256\256\256\377\347\347\347"
2597 "\377\350\350\350\377\350\350\350\377\351\351\351\377\352\352\352\377"
2598 "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357"
2599 "\357\357\377\343\343\343\377\0\0\0\377\0\0\0)\0\0\0\16\0\0\0\377\362"
2600 "\362\362\377\341\341\341\377\341\341\341\377\342\342\342\377\343\343"
2601 "\343\377\344\344\344\377\345\345\345\377\346\346\346\377\347\347\347"
2602 "\377\350\350\350\377\351\351\351\377\352\352\352\377\352\352\352\377"
2603 "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357"
2604 "\357\357\377\360\360\360\377\347\347\347\377\0\0\0\377\0\0\0""8\0\0\0"
2605 "\25\0\0\0\377\362\362\362\377\342\342\342\377\254\254\254\377\254\254"
2606 "\254\377\255\255\255\377\256\256\256\377\256\256\256\377\257\257\257"
2607 "\377\260\260\260\377\261\261\261\377\262\262\262\377\262\262\262\377"
2608 "\263\263\263\377\263\263\263\377\264\264\264\377\265\265\265\377\265"
2609 "\265\265\377\266\266\266\377\361\361\361\377\350\350\350\377\0\0\0\377"
2610 "\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\343\343\343\377\344\344\344"
2611 "\377\345\345\345\377\345\345\345\377\346\346\346\377\347\347\347\377"
2612 "\350\350\350\377\351\351\351\377\352\352\352\377\353\353\353\377\354"
2613 "\354\354\377\355\355\355\377\355\355\355\377\356\356\356\377\357\357"
2614 "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\351\351\351"
2615 "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\344\344\344"
2616 "\377\345\345\345\377\346\346\346\377\347\347\347\377\347\347\347\377"
2617 "\350\350\350\377\351\351\351\377\352\352\352\377\353\353\353\377\354"
2618 "\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377\357\357"
2619 "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363\363"
2620 "\377\352\352\352\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363"
2621 "\377\345\345\345\377\346\346\346\377\347\347\347\377\350\350\350\377"
2622 "\351\351\351\377\351\351\351\377\352\352\352\377uuu\377vvv\377vvv\377"
2623 "www\377www\377xxx\377xxx\377xxx\377yyy\377yyy\377\364\364\364\377\353"
2624 "\353\353\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364\364\364\377\346"
2625 "\346\346\377\347\347\347\377\350\350\350\377\252\252\252\377\352\352"
2626 "\352\377\352\352\352\377\353\353\353\377\354\354\354\377\355\355\355"
2627 "\377\356\356\356\377\357\357\357\377\360\360\360\377\361\361\361\377"
2628 "\362\362\362\377\363\363\363\377\363\363\363\377\364\364\364\377\365"
2629 "\365\365\377\354\354\354\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364"
2630 "\364\364\377\347\347\347\377\350\350\350\377\351\351\351\377\0\0\0\377"
2631 "\254\254\254\377\354\354\354\377\354\354\354\377vvv\377www\377www\377"
2632 "xxx\377xxx\377yyy\377yyy\377zzz\377zzz\377zzz\377\366\366\366\377\355"
2633 "\355\355\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\0\0"
2634 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\255\255\255\377\356\356"
2635 "\356\377\356\356\356\377\357\357\357\377\360\360\360\377\361\361\361"
2636 "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377"
2637 "\366\366\366\377\367\367\367\377\367\367\367\377\356\356\356\377\0\0"
2638 "\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\351\351\351\377\352"
2639 "\352\352\377\353\353\353\377\0\0\0\377\255\255\255\377\356\356\356\377"
2640 "\357\357\357\377xxx\377xxx\377xxx\377yyy\377yyy\377zzz\377zzz\377{{{"
2641 "\377{{{\377|||\377\370\370\370\377\357\357\357\377\0\0\0\377\0\0\0=\0"
2642 "\0\0\27\0\0\0\377\365\365\365\377\352\352\352\377\353\353\353\377\354"
2643 "\354\354\377\255\255\255\377\356\356\356\377\357\357\357\377\360\360"
2644 "\360\377\361\361\361\377\362\362\362\377\362\362\362\377\363\363\363"
2645 "\377\364\364\364\377\365\365\365\377\366\366\366\377\367\367\367\377"
2646 "\370\370\370\377\371\371\371\377\372\372\372\377\360\360\360\377\0\0"
2647 "\0\377\0\0\0=\0\0\0\27\0\0\0\377\366\366\366\377\353\353\353\377\354"
2648 "\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377\360\360"
2649 "\360\377\361\361\361\377yyy\377yyy\377zzz\377zzz\377zzz\377\366\366\366"
2650 "\377\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377"
2651 "\373\373\373\377\362\362\362\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377"
2652 "\367\367\367\377\355\355\355\377\355\355\355\377\356\356\356\377\357"
2653 "\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363"
2654 "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366"
2655 "\377\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377"
2656 "\373\373\373\377\374\374\374\377\363\363\363\377\0\0\0\377\0\0\0=\0\0"
2657 "\0\27\0\0\0\377\367\367\367\377\356\356\356\377\357\357\357\377\357\357"
2658 "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363\363"
2659 "\377\364\364\364\377\365\365\365\377\366\366\366\377\367\367\367\377"
2660 "\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377\373"
2661 "\373\373\377\374\374\374\377\375\375\375\377\364\364\364\377\0\0\0\377"
2662 "\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\360\360\360\377\267\267\267"
2663 "\377\270\270\270\377\270\270\270\377\270\270\270\377\271\271\271\377"
2664 "\272\272\272\377\273\273\273\377\273\273\273\377\274\274\274\377\275"
2665 "\275\275\377\276\276\276\377\276\276\276\377\276\276\276\377\277\277"
2666 "\277\377\300\300\300\377\301\301\301\377\377\377\377\377\365\365\365"
2667 "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\361\361\361"
2668 "\377\362\362\362\377\363\363\363\377\364\364\364\377\364\364\364\377"
2669 "\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370\377\371"
2670 "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375"
2671 "\375\377\375\375\375\377\376\376\376\377\377\377\377\377\377\377\377"
2672 "\377\365\365\365\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\362\362\362"
2673 "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377"
2674 "\366\366\366\377\366\366\366\377\367\367\367\377\274\274\274\377\371"
2675 "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375"
2676 "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377"
2677 "\377\377\377\377\377\331\331\331\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0"
2678 "\232\311\311\311\377\332\332\332\377\356\356\356\377\353\353\353\377"
2679 "\354\354\354\377\355\355\355\377\356\356\356\377\356\356\356\377\357"
2680 "\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363"
2681 "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\365\365\365"
2682 "\377\365\365\365\377\344\344\344\377\275\275\275\377\0\0\0\324\0\0\0"
2683 ":\0\0\0\26\0\0\0\34\0\0\0\243\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2684 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2685 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2686 "\0\0\0\324\0\0\0Y\0\0\0-\0\0\0\20\0\0\0\6\0\0\0\24\0\0\0)\0\0\0""8\0"
2687 "\0\0<\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0="
2688 "\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0""9\0\0\0-\0\0\0\31\0"
2689 "\0\0\7\0\0\0\1\0\0\0\6\0\0\0\16\0\0\0\24\0\0\0\27\0\0\0\27\0\0\0\27\0"
2690 "\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27"
2691 "\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\25\0\0\0\20\0\0\0"
2692 "\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\3\0\0\0\3\0"
2693 "\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0"
2694 "\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\2\0\0\0\1\0\0\0\0"};
2695
2696
2697/* GdkPixbuf RGBA C-Source image dump */
2698
2699#ifdef __SUNPRO_C
2700#pragma align 4 (stock_text_numbered_list)
2701#endif
2702#ifdef __GNUC__
2703static const guint8 stock_text_numbered_list[] __attribute__ ((__aligned__ (4))) =
2704#else
2705static const guint8 stock_text_numbered_list[] =
2706#endif
2707{ ""
2708 /* Pixbuf magic (0x47646b50) */
2709 "GdkP"
2710 /* length: header (24) + pixel_data (2304) */
2711 "\0\0\11\30"
2712 /* pixdata_type (0x1010002) */
2713 "\1\1\0\2"
2714 /* rowstride (96) */
2715 "\0\0\0`"
2716 /* width (24) */
2717 "\0\0\0\30"
2718 /* height (24) */
2719 "\0\0\0\30"
2720 /* pixel_data: */
2721 "\0\0\0\27\0\0\0\224\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2722 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2723 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\232"
2724 "\0\0\0'\0\0\0\6\0\0\0\1\0\0\0\224\342\342\342\377\362\362\362\377\362"
2725 "\362\362\377\362\362\362\377\362\362\362\377\363\363\363\377\363\363"
2726 "\363\377\363\363\363\377\364\364\364\377\364\364\364\377\364\364\364"
2727 "\377\365\365\365\377\365\365\365\377\365\365\365\377\366\366\366\377"
2728 "\366\366\366\377\367\367\367\377\367\367\367\377\364\364\364\377\333"
2729 "\333\333\377\0\0\0\243\0\0\0\25\0\0\0\6\0\0\0\377\360\360\360\377\340"
2730 "\340\340\377\340\340\340\377\341\341\341\377\342\342\342\377\343\343"
2731 "\343\377\344\344\344\377\345\345\345\377\346\346\346\377\347\347\347"
2732 "\377\350\350\350\377\350\350\350\377\351\351\351\377\352\352\352\377"
2733 "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357"
2734 "\357\357\377\355\355\355\377\0\0\0\377\0\0\0)\0\0\0\16\0\0\0\377\362"
2735 "\362\362\377\341\341\341\377\341\341\341\377\314\314\314\377mmm\377\344"
2736 "\344\344\377\345\345\345\377\346\346\346\377\347\347\347\377\350\350"
2737 "\350\377\351\351\351\377\352\352\352\377\352\352\352\377\353\353\353"
2738 "\377\354\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377"
2739 "\360\360\360\377\361\361\361\377\0\0\0\377\0\0\0""8\0\0\0\25\0\0\0\377"
2740 "\362\362\362\377\342\342\342\377\315\315\315\377mmm\377mmm\377\345\345"
2741 "\345\377\346\346\346\377\347\347\347\377ooo\377ppp\377ppp\377qqq\377"
2742 "qqq\377qqq\377rrr\377rrr\377sss\377\360\360\360\377\361\361\361\377\362"
2743 "\362\362\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\343"
2744 "\343\343\377\344\344\344\377\345\345\345\377nnn\377\346\346\346\377\347"
2745 "\347\347\377\350\350\350\377\351\351\351\377\352\352\352\377\353\353"
2746 "\353\377\354\354\354\377\355\355\355\377\355\355\355\377\356\356\356"
2747 "\377\357\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377"
2748 "\363\363\363\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377"
2749 "\344\344\344\377\345\345\345\377\346\346\346\377ooo\377\347\347\347\377"
2750 "\350\350\350\377\351\351\351\377ppp\377qqq\377qqq\377rrr\377rrr\377s"
2751 "ss\377sss\377sss\377ttt\377\362\362\362\377\363\363\363\377\364\364\364"
2752 "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\345\345\345"
2753 "\377\346\346\346\377\347\347\347\377ooo\377\351\351\351\377\351\351\351"
2754 "\377\352\352\352\377\353\353\353\377\354\354\354\377\355\355\355\377"
2755 "\356\356\356\377\357\357\357\377\360\360\360\377\356\356\356\377\360"
2756 "\360\360\377\361\361\361\377\363\363\363\377\364\364\364\377\365\365"
2757 "\365\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364\364\364\377\346\346"
2758 "\346\377\347\347\347\377\350\350\350\377\351\351\351\377\352\352\352"
2759 "\377\352\352\352\377\353\353\353\377\206\206\206\377rrr\377rrr\377ss"
2760 "s\377sss\377ttt\377\362\362\362\377\363\363\363\377\363\363\363\377\364"
2761 "\364\364\377\365\365\365\377\366\366\366\377\0\0\0\377\0\0\0=\0\0\0\27"
2762 "\0\0\0\377\364\364\364\377\347\347\347\377\350\350\350\377\351\351\351"
2763 "\377\352\352\352\377\353\353\353\377\354\354\354\377\354\354\354\377"
2764 "\355\355\355\377\356\356\356\377\357\357\357\377\360\360\360\377\361"
2765 "\361\361\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365"
2766 "\365\377\365\365\365\377\366\366\366\377\367\367\367\377\0\0\0\377\0"
2767 "\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\350\350\350\377\351\351\351"
2768 "\377\352\352\352\377\353\353\353\377\354\354\354\377\355\355\355\377"
2769 "\356\356\356\377\356\356\356\377\357\357\357\377\360\360\360\377\361"
2770 "\361\361\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365"
2771 "\365\377\366\366\366\377\367\367\367\377\367\367\367\377\370\370\370"
2772 "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\351\351\351"
2773 "\377\352\352\352\377\353\353\353\377\354\354\354\377\355\355\355\377"
2774 "\356\356\356\377\357\357\357\377\360\360\360\377\360\360\360\377\361"
2775 "\361\361\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365"
2776 "\365\377\366\366\366\377\367\367\367\377\370\370\370\377\370\370\370"
2777 "\377\371\371\371\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365"
2778 "\377\352\352\352\377\353\353\353\377\303\303\303\377rrr\377\327\327\327"
2779 "\377\357\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377"
2780 "\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377\366"
2781 "\366\366\377\367\367\367\377\370\370\370\377\371\371\371\377\372\372"
2782 "\372\377\372\372\372\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\366\366"
2783 "\366\377\353\353\353\377\354\354\354\377rrr\377\356\356\356\377sss\377"
2784 "\360\360\360\377\361\361\361\377ttt\377uuu\377\203\203\203\377uuu\377"
2785 "vvv\377vvv\377www\377www\377xxx\377\372\372\372\377\373\373\373\377\374"
2786 "\374\374\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\367\367\367\377\355"
2787 "\355\355\377\355\355\355\377\356\356\356\377\330\330\330\377sss\377\361"
2788 "\361\361\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365"
2789 "\365\377\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370"
2790 "\377\371\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377"
2791 "\375\375\375\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\367\367\367\377"
2792 "\356\356\356\377\357\357\357\377\330\330\330\377sss\377\332\332\332\377"
2793 "\362\362\362\377\363\363\363\377uuu\377vvv\377vvv\377www\377www\377w"
2794 "ww\377xxx\377xxx\377\373\373\373\377\374\374\374\377\375\375\375\377"
2795 "\376\376\376\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377"
2796 "\360\360\360\377\361\361\361\377ttt\377ttt\377uuu\377\364\364\364\377"
2797 "\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370\377\371"
2798 "\371\371\377\372\372\372\377\373\373\373\377\373\373\373\377\374\374"
2799 "\374\377\375\375\375\377\376\376\376\377\377\377\377\377\377\377\377"
2800 "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\361\361\361"
2801 "\377\362\362\362\377\363\363\363\377\364\364\364\377\364\364\364\377"
2802 "\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370\377\371"
2803 "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375"
2804 "\375\377\375\375\375\377\376\376\376\377\377\377\377\377\377\377\377"
2805 "\377\377\377\377\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\362\362\362"
2806 "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377"
2807 "\366\366\366\377\366\366\366\377\367\367\367\377\370\370\370\377\371"
2808 "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375"
2809 "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377"
2810 "\377\377\377\377\377\354\354\354\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0"
2811 "\232\311\311\311\377\355\355\355\377\370\370\370\377\365\365\365\377"
2812 "\366\366\366\377\367\367\367\377\370\370\370\377\370\370\370\377\371"
2813 "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375"
2814 "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377"
2815 "\377\377\377\377\377\356\356\356\377\275\275\275\377\0\0\0\324\0\0\0"
2816 ":\0\0\0\26\0\0\0\34\0\0\0\243\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2817 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2818 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2819 "\0\0\0\324\0\0\0Y\0\0\0-\0\0\0\20\0\0\0\6\0\0\0\24\0\0\0)\0\0\0""8\0"
2820 "\0\0<\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0="
2821 "\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0""9\0\0\0-\0\0\0\31\0"
2822 "\0\0\7\0\0\0\1\0\0\0\6\0\0\0\16\0\0\0\24\0\0\0\27\0\0\0\27\0\0\0\27\0"
2823 "\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27"
2824 "\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\25\0\0\0\20\0\0\0"
2825 "\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\3\0\0\0\3\0"
2826 "\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0"
2827 "\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\2\0\0\0\1\0\0\0\0"};
2828
2829
2830/* GdkPixbuf RGBA C-Source image dump */
2831
2832#ifdef __SUNPRO_C
2833#pragma align 4 (stock_text_unindent)
2834#endif
2835#ifdef __GNUC__
2836static const guint8 stock_text_unindent[] __attribute__ ((__aligned__ (4))) =
2837#else
2838static const guint8 stock_text_unindent[] =
2839#endif
2840{ ""
2841 /* Pixbuf magic (0x47646b50) */
2842 "GdkP"
2843 /* length: header (24) + pixel_data (2304) */
2844 "\0\0\11\30"
2845 /* pixdata_type (0x1010002) */
2846 "\1\1\0\2"
2847 /* rowstride (96) */
2848 "\0\0\0`"
2849 /* width (24) */
2850 "\0\0\0\30"
2851 /* height (24) */
2852 "\0\0\0\30"
2853 /* pixel_data: */
2854 "\0\0\0\27\0\0\0\224\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2855 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2856 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\232"
2857 "\0\0\0'\0\0\0\6\0\0\0\1\0\0\0\224\342\342\342\377\362\362\362\377\362"
2858 "\362\362\377\362\362\362\377\362\362\362\377\363\363\363\377\363\363"
2859 "\363\377\363\363\363\377\364\364\364\377\364\364\364\377\364\364\364"
2860 "\377\365\365\365\377\365\365\365\377\365\365\365\377\366\366\366\377"
2861 "\366\366\366\377\367\367\367\377\367\367\367\377\364\364\364\377\333"
2862 "\333\333\377\0\0\0\243\0\0\0\25\0\0\0\6\0\0\0\377\360\360\360\377\340"
2863 "\340\340\377\340\340\340\377\341\341\341\377\342\342\342\377\343\343"
2864 "\343\377\344\344\344\377\345\345\345\377\256\256\256\377\347\347\347"
2865 "\377\350\350\350\377\350\350\350\377\351\351\351\377\352\352\352\377"
2866 "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357"
2867 "\357\357\377\343\343\343\377\0\0\0\377\0\0\0)\0\0\0\16\0\0\0\377\362"
2868 "\362\362\377\341\341\341\377\341\341\341\377\342\342\342\377\343\343"
2869 "\343\377\344\344\344\377\345\345\345\377\346\346\346\377\347\347\347"
2870 "\377\350\350\350\377\351\351\351\377\352\352\352\377\352\352\352\377"
2871 "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357"
2872 "\357\357\377\360\360\360\377\347\347\347\377\0\0\0\377\0\0\0""8\0\0\0"
2873 "\25\0\0\0\377\362\362\362\377\342\342\342\377\254\254\254\377\254\254"
2874 "\254\377\255\255\255\377\256\256\256\377\256\256\256\377\257\257\257"
2875 "\377\260\260\260\377\261\261\261\377\262\262\262\377\262\262\262\377"
2876 "\263\263\263\377\263\263\263\377\264\264\264\377\265\265\265\377\265"
2877 "\265\265\377\266\266\266\377\361\361\361\377\350\350\350\377\0\0\0\377"
2878 "\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\343\343\343\377\344\344\344"
2879 "\377\345\345\345\377\345\345\345\377\346\346\346\377\347\347\347\377"
2880 "\350\350\350\377\351\351\351\377\352\352\352\377\353\353\353\377\354"
2881 "\354\354\377\355\355\355\377\355\355\355\377\356\356\356\377\357\357"
2882 "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\351\351\351"
2883 "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\344\344\344"
2884 "\377\345\345\345\377\346\346\346\377\347\347\347\377\347\347\347\377"
2885 "\350\350\350\377\351\351\351\377\352\352\352\377\353\353\353\377\354"
2886 "\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377\357\357"
2887 "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363\363"
2888 "\377\352\352\352\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363"
2889 "\377\345\345\345\377\346\346\346\377\347\347\347\377\350\350\350\377"
2890 "\351\351\351\377\351\351\351\377\352\352\352\377uuu\377vvv\377vvv\377"
2891 "www\377www\377xxx\377xxx\377xxx\377yyy\377yyy\377\364\364\364\377\353"
2892 "\353\353\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364\364\364\377\346"
2893 "\346\346\377\347\347\347\377\252\252\252\377\351\351\351\377\352\352"
2894 "\352\377\352\352\352\377\353\353\353\377\354\354\354\377\355\355\355"
2895 "\377\356\356\356\377\357\357\357\377\360\360\360\377\361\361\361\377"
2896 "\362\362\362\377\363\363\363\377\363\363\363\377\364\364\364\377\365"
2897 "\365\365\377\354\354\354\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364"
2898 "\364\364\377\347\347\347\377\252\252\252\377\0\0\0\377\352\352\352\377"
2899 "\353\353\353\377\354\354\354\377\354\354\354\377vvv\377www\377www\377"
2900 "xxx\377xxx\377yyy\377yyy\377zzz\377zzz\377zzz\377\366\366\366\377\355"
2901 "\355\355\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\252"
2902 "\252\252\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\356\356"
2903 "\356\377\356\356\356\377\357\357\357\377\360\360\360\377\361\361\361"
2904 "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377"
2905 "\366\366\366\377\367\367\367\377\367\367\367\377\356\356\356\377\0\0"
2906 "\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\351\351\351\377\253"
2907 "\253\253\377\0\0\0\377\354\354\354\377\355\355\355\377\356\356\356\377"
2908 "\357\357\357\377xxx\377xxx\377xxx\377yyy\377yyy\377zzz\377zzz\377{{{"
2909 "\377{{{\377|||\377\370\370\370\377\357\357\357\377\0\0\0\377\0\0\0=\0"
2910 "\0\0\27\0\0\0\377\365\365\365\377\352\352\352\377\353\353\353\377\255"
2911 "\255\255\377\355\355\355\377\356\356\356\377\357\357\357\377\360\360"
2912 "\360\377\361\361\361\377\362\362\362\377\362\362\362\377\363\363\363"
2913 "\377\364\364\364\377\365\365\365\377\366\366\366\377\367\367\367\377"
2914 "\370\370\370\377\371\371\371\377\372\372\372\377\360\360\360\377\0\0"
2915 "\0\377\0\0\0=\0\0\0\27\0\0\0\377\366\366\366\377\353\353\353\377\354"
2916 "\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377\360\360"
2917 "\360\377\361\361\361\377yyy\377yyy\377zzz\377zzz\377zzz\377\366\366\366"
2918 "\377\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377"
2919 "\373\373\373\377\362\362\362\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377"
2920 "\367\367\367\377\355\355\355\377\355\355\355\377\356\356\356\377\357"
2921 "\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363"
2922 "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366"
2923 "\377\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377"
2924 "\373\373\373\377\374\374\374\377\363\363\363\377\0\0\0\377\0\0\0=\0\0"
2925 "\0\27\0\0\0\377\367\367\367\377\356\356\356\377\357\357\357\377\357\357"
2926 "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363\363"
2927 "\377\364\364\364\377\365\365\365\377\366\366\366\377\367\367\367\377"
2928 "\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377\373"
2929 "\373\373\377\374\374\374\377\375\375\375\377\364\364\364\377\0\0\0\377"
2930 "\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\360\360\360\377\267\267\267"
2931 "\377\270\270\270\377\270\270\270\377\270\270\270\377\271\271\271\377"
2932 "\272\272\272\377\273\273\273\377\273\273\273\377\274\274\274\377\275"
2933 "\275\275\377\276\276\276\377\276\276\276\377\276\276\276\377\277\277"
2934 "\277\377\300\300\300\377\301\301\301\377\377\377\377\377\365\365\365"
2935 "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\361\361\361"
2936 "\377\362\362\362\377\363\363\363\377\364\364\364\377\364\364\364\377"
2937 "\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370\377\371"
2938 "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375"
2939 "\375\377\375\375\375\377\376\376\376\377\377\377\377\377\377\377\377"
2940 "\377\365\365\365\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\362\362\362"
2941 "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377"
2942 "\366\366\366\377\366\366\366\377\367\367\367\377\274\274\274\377\371"
2943 "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375"
2944 "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377"
2945 "\377\377\377\377\377\331\331\331\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0"
2946 "\232\311\311\311\377\332\332\332\377\356\356\356\377\353\353\353\377"
2947 "\354\354\354\377\355\355\355\377\356\356\356\377\356\356\356\377\357"
2948 "\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363"
2949 "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\365\365\365"
2950 "\377\365\365\365\377\344\344\344\377\275\275\275\377\0\0\0\324\0\0\0"
2951 ":\0\0\0\26\0\0\0\34\0\0\0\243\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2952 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2953 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
2954 "\0\0\0\324\0\0\0Y\0\0\0-\0\0\0\20\0\0\0\6\0\0\0\24\0\0\0)\0\0\0""8\0"
2955 "\0\0<\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0="
2956 "\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0""9\0\0\0-\0\0\0\31\0"
2957 "\0\0\7\0\0\0\1\0\0\0\6\0\0\0\16\0\0\0\24\0\0\0\27\0\0\0\27\0\0\0\27\0"
2958 "\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27"
2959 "\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\25\0\0\0\20\0\0\0"
2960 "\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\3\0\0\0\3\0"
2961 "\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0"
2962 "\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\2\0\0\0\1\0\0\0\0"};
2963
2964
2965/* GdkPixbuf RGBA C-Source image dump */
2966
2967#ifdef __SUNPRO_C
2968#pragma align 4 (stock_timer)
2969#endif
2970#ifdef __GNUC__
2971static const guint8 stock_timer[] __attribute__ ((__aligned__ (4))) =
2972#else
2973static const guint8 stock_timer[] =
2974#endif
2975{ ""
2976 /* Pixbuf magic (0x47646b50) */
2977 "GdkP"
2978 /* length: header (24) + pixel_data (2304) */
2979 "\0\0\11\30"
2980 /* pixdata_type (0x1010002) */
2981 "\1\1\0\2"
2982 /* rowstride (96) */
2983 "\0\0\0`"
2984 /* width (24) */
2985 "\0\0\0\30"
2986 /* height (24) */
2987 "\0\0\0\30"
2988 /* pixel_data: */
2989 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\23\0"
2990 "\0\0o\0\0\0\266\0\0\0\344\0\0\0\373\0\0\0\373\0\0\0\345\0\0\0\270\0\0"
2991 "\0t\0\0\0\31\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2992 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\205\0\0\0"
2993 "\373\207\207\207\377\300\300\300\377\323\323\323\377\326\326\326\377"
2994 "\325\325\325\377\322\322\322\377\275\275\275\377\204\204\204\377\0\0"
2995 "\0\374\0\0\0\217\0\0\0\10\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
2996 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377[\210\262\377\0\0\0\377\324\324"
2997 "\324\377\342\342\342\377\365\365\365\377\374\374\374\377\374\374\374"
2998 "\377\374\374\374\377\373\373\373\377\363\363\363\377\354\354\354\377"
2999 "\341\341\341\377\220\220\220\377\0\0\0\324\0\0\0""6\0\0\0\3\0\0\0\0\0"
3000 "\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\236"
3001 "\270\321\377P\200\255\377\0\0\0\377\375\375\375\377\375\375\375\377\375"
3002 "\375\375\377\316\316\316\377\310\310\310\377\374\374\374\377\373\373"
3003 "\373\377\373\373\373\377\367\367\367\377\350\350\350\377\272\272\272"
3004 "\377\0\0\0\352\0\0\0\77\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\377\277\321\341"
3005 "\377\257\305\332\377\262\307\333\377\266\312\335\377\244\275\325\377"
3006 "\234\267\321\377P\200\255\377\10\15\21\377\375\375\375\377\375\375\375"
3007 "\377\277\277\277\377\270\270\270\377\373\373\373\377\373\373\373\377"
3008 "\372\372\372\377\371\371\371\377\370\370\370\377\350\350\350\377\301"
3009 "\301\301\377\0\0\0\330\0\0\0\32\0\0\0\4\0\0\0\0\0\0\0\377\302\322\341"
3010 "\377\240\272\323\377\234\267\321\377\232\265\317\377\240\272\323\377"
3011 "\234\267\321\377\227\263\316\377_\213\264\377\0\0\0\377\375\375\375\377"
3012 "\260\260\260\377\251\251\251\377\373\373\373\377\373\373\373\377\371"
3013 "\371\371\377\371\371\371\377\367\367\367\377\366\366\366\377\345\345"
3014 "\345\377\217\217\217\377\0\0\0\242\0\0\0\20\0\0\0\1\0\0\0\377\310\326"
3015 "\344\377\236\270\321\377\232\265\317\377\234\267\321\377\234\267\321"
3016 "\377\234\267\321\377\240\272\323\377\225\262\316\377Ly\243\377\0\0\0"
3017 "\377\241\241\241\377\231\231\231\377\373\373\373\377\372\372\372\377"
3018 "\371\371\371\377\370\370\370\377\367\367\367\377\365\365\365\377\363"
3019 "\363\363\377\350\350\350\377\0\0\0\374\0\0\0>\0\0\0\11\0\0\0\377g\213"
3020 "\254\377\77e\210\377\77e\210\377\77e\210\377\77e\210\377\77e\210\377"
3021 "\77e\210\377*C[\377\0\0\0\377\375\375\375\377\221\221\221\377\212\212"
3022 "\212\377\373\373\373\377\372\372\372\377\371\371\371\377\370\370\370"
3023 "\377\366\366\366\377\365\365\365\377\363\363\363\377\355\355\355\377"
3024 "\216\216\216\377\0\0\0\227\0\0\0\25\0\0\0\377d\207\247\3777Yx\3777Yx"
3025 "\3777Yx\377\77e\210\377\77e\210\377*C[\377\0\0\0\377\377\377\377\377"
3026 "\376\376\376\377\201\201\201\377zzz\377\373\373\373\377\371\371\371\377"
3027 "\370\370\370\377\367\367\367\377\365\365\365\377\364\364\364\377\362"
3028 "\362\362\377\357\357\357\377\323\323\323\377\0\0\0\314\0\0\0(\0\0\0\377"
3029 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\77e\210\377*C[\377\0\0\0\377"
3030 "\375\375\375\377\376\376\376\377\375\375\375\377rrr\377kkk\377\356\356"
3031 "\356\377\371\371\371\377\370\370\370\377\366\366\366\377\364\364\364"
3032 "\377\363\363\363\377\361\361\361\377\357\357\357\377\367\367\367\377"
3033 "\0\0\0\354\0\0\0""9\0\0\0\0\0\0\0\373\350\350\350\377\372\372\372\377"
3034 "\0\0\0\377*C[\377\0\0\0\377\374\374\374\377\374\374\374\377\374\374\374"
3035 "\377\374\374\374\377ccc\377[[[\377\313\313\313\377\345\345\345\377\367"
3036 "\367\367\377\365\365\365\377\364\364\364\377\362\362\362\377\273\273"
3037 "\273\377\356\356\356\377\370\370\370\377\0\0\0\374\0\0\0D\0\0\0\0\0\0"
3038 "\0\373\336\336\336\377\371\371\371\377\0\0\0\377\0\0\0\377\373\373\373"
3039 "\377\373\373\373\377\373\373\373\377\373\373\373\377\373\373\373\377"
3040 "\221\221\221\377LLL\377EEE\377bbb\377\300\300\300\377\335\335\335\377"
3041 "\362\362\362\377\361\361\361\377\265\265\265\377\355\355\355\377\370"
3042 "\370\370\377\0\0\0\374\0\0\0J\0\0\0\0\0\0\0\346\332\332\332\377\370\370"
3043 "\370\377\0\0\0\377\371\371\371\377\371\371\371\377\371\371\371\377\372"
3044 "\372\372\377\372\372\372\377\372\372\372\377\352\352\352\377\276\276"
3045 "\276\377ddd\377...\377'''\377III\377\361\361\361\377\357\357\357\377"
3046 "\355\355\355\377\371\371\371\377\367\367\367\377\0\0\0\355\0\0\0J\0\0"
3047 "\0\0\0\0\0\273\275\275\275\377\365\365\365\377\367\367\367\377\370\370"
3048 "\370\377\370\370\370\377\370\370\370\377\370\370\370\377\370\370\370"
3049 "\377\370\370\370\377\367\367\367\377\366\366\366\377\335\335\335\377"
3050 "\276\276\276\377WWW\377xxx\377\357\357\357\377\356\356\356\377\354\354"
3051 "\354\377\371\371\371\377\323\323\323\377\0\0\0\316\0\0\0D\0\0\0\0\0\0"
3052 "\0t\177\177\177\377\341\341\341\377\366\366\366\377\366\366\366\377\366"
3053 "\366\366\377\366\366\366\377\367\367\367\377\366\366\366\377\366\366"
3054 "\366\377\365\365\365\377\364\364\364\377\364\364\364\377\362\362\362"
3055 "\377\361\361\361\377\357\357\357\377\356\356\356\377\355\355\355\377"
3056 "\364\364\364\377\370\370\370\377\214\214\214\377\0\0\0\237\0\0\0""9\0"
3057 "\0\0\0\0\0\0\31\0\0\0\374\320\320\320\377\353\353\353\377\364\364\364"
3058 "\377\364\364\364\377\365\365\365\377\364\364\364\377\364\364\364\377"
3059 "\364\364\364\377\363\363\363\377\362\362\362\377\361\361\361\377\360"
3060 "\360\360\377\357\357\357\377\356\356\356\377\355\355\355\377\354\354"
3061 "\354\377\370\370\370\377\361\361\361\377\0\0\0\374\0\0\0_\0\0\0(\0\0"
3062 "\0\0\0\0\0\2\0\0\0\217\211\211\211\377\324\324\324\377\362\362\362\377"
3063 "\362\362\362\377\362\362\362\377\362\362\362\377\362\362\362\377\361"
3064 "\361\361\377\361\361\361\377\360\360\360\377\360\360\360\377\357\357"
3065 "\357\377\356\356\356\377\355\355\355\377\354\354\354\377\371\371\371"
3066 "\377\370\370\370\377\230\230\230\377\0\0\0\260\0\0\0H\0\0\0\25\0\0\0"
3067 "\0\0\0\0\0\0\0\0\10\0\0\0\324\253\253\253\377\323\323\323\377\360\360"
3068 "\360\377\360\360\360\377\360\360\360\377\360\360\360\377\360\360\360"
3069 "\377\357\357\357\377\357\357\357\377\356\356\356\377\356\356\356\377"
3070 "\355\355\355\377\354\354\354\377\371\371\371\377\370\370\370\377\304"
3071 "\304\304\377\0\0\0\335\0\0\0Q\0\0\0.\0\0\0\11\0\0\0\0\0\0\0\0\0\0\0\1"
3072 "\0\0\0""6\0\0\0\352\253\253\253\377\322\322\322\377\344\344\344\377\356"
3073 "\356\356\377\356\356\356\377\356\356\356\377\256\256\256\377\255\255"
3074 "\255\377\355\355\355\377\354\354\354\377\353\353\353\377\370\370\370"
3075 "\377\370\370\370\377\302\302\302\377\0\0\0\355\0\0\0p\0\0\0<\0\0\0\20"
3076 "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\77\0\0\0\330\202\202\202"
3077 "\377\315\315\315\377\331\331\331\377\354\354\354\377\354\354\354\377"
3078 "\354\354\354\377\354\354\354\377\353\353\353\377\364\364\364\377\370"
3079 "\370\370\377\367\367\367\377\214\214\214\377\0\0\0\335\0\0\0q\0\0\0B"
3080 "\0\0\0\32\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"
3081 "\0\32\0\0\0\242\0\0\0\374\210\210\210\377\310\310\310\377\335\335\335"
3082 "\377\370\370\370\377\370\370\370\377\367\367\367\377\361\361\361\377"
3083 "\300\300\300\377\0\0\0\374\0\0\0\260\0\0\0Q\0\0\0<\0\0\0\32\0\0\0\5\0"
3084 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0"
3085 "\20\0\0\0>\0\0\0\227\0\0\0\314\0\0\0\354\0\0\0\374\0\0\0\374\0\0\0\355"
3086 "\0\0\0\316\0\0\0\237\0\0\0_\0\0\0H\0\0\0.\0\0\0\20\0\0\0\4\0\0\0\0\0"
3087 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3088 "\1\0\0\0\10\0\0\0\25\0\0\0(\0\0\0""9\0\0\0D\0\0\0J\0\0\0J\0\0\0D\0\0"
3089 "\0""9\0\0\0(\0\0\0\25\0\0\0\10\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3090 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3091 "\0\0\1\0\0\0\6\0\0\0\12\0\0\0\15\0\0\0\17\0\0\0\17\0\0\0\15\0\0\0\12"
3092 "\0\0\0\6\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"};
3093
3094
3095/* GdkPixbuf RGBA C-Source image dump */
3096
3097#ifdef __SUNPRO_C
3098#pragma align 4 (stock_timer_stopped)
3099#endif
3100#ifdef __GNUC__
3101static const guint8 stock_timer_stopped[] __attribute__ ((__aligned__ (4))) =
3102#else
3103static const guint8 stock_timer_stopped[] =
3104#endif
3105{ ""
3106 /* Pixbuf magic (0x47646b50) */
3107 "GdkP"
3108 /* length: header (24) + pixel_data (2304) */
3109 "\0\0\11\30"
3110 /* pixdata_type (0x1010002) */
3111 "\1\1\0\2"
3112 /* rowstride (96) */
3113 "\0\0\0`"
3114 /* width (24) */
3115 "\0\0\0\30"
3116 /* height (24) */
3117 "\0\0\0\30"
3118 /* pixel_data: */
3119 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\23\0\0"
3120 "\0o\0\0\0\266\0\0\0\344\0\0\0\373\0\0\0\373\0\0\0\345\0\0\0\270\0\0\0"
3121 "t\0\0\0\31\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3122 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\205\0\0\0\373\207"
3123 "\207\207\377\300\300\300\377\323\323\323\377\326\326\326\377\325\325"
3124 "\325\377\322\322\322\377\275\275\275\377\204\204\204\377\0\0\0\374\0"
3125 "\0\0\217\0\0\0\10\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3126 "\0\0\0\0\0\0\0\0\0\0\0\0\0)\0\0\0\314\223\223\223\377\324\324\324\377"
3127 "\342\342\342\377\365\365\365\377\374\374\374\377\374\374\374\377\374"
3128 "\374\374\377\373\373\373\377\363\363\363\377\354\354\354\377\341\341"
3129 "\341\377\220\220\220\377\0\0\0\324\0\0\0""6\0\0\0\3\0\0\0\0\0\0\0\0\0"
3130 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0)\0\0\0\344\277\277\277\377\336\336"
3131 "\336\377\360\360\360\377\375\375\375\377\375\375\375\377\375\375\375"
3132 "\377\316\316\316\377\310\310\310\377\374\374\374\377\373\373\373\377"
3133 "\373\373\373\377\367\367\367\377\350\350\350\377\272\272\272\377\0\0"
3134 "\0\352\0\0\0\77\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3135 "\314\267\267\267\377\342\342\342\377\373\373\373\377\375\375\375\377"
3136 "\375\375\375\377\375\375\375\377\375\375\375\377\277\277\277\377\270"
3137 "\270\270\377\373\373\373\377\373\373\373\377\372\372\372\377\371\371"
3138 "\371\377\370\370\370\377\350\350\350\377\301\301\301\377\0\0\0\330\0"
3139 "\0\0\32\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\205\207\207\207\377\336"
3140 "\336\336\377\373\373\373\377\375\375\375\377\375\375\375\377\375\375"
3141 "\375\377\375\375\375\377\375\375\375\377\260\260\260\377\251\251\251"
3142 "\377\373\373\373\377\373\373\373\377\371\371\371\377\371\371\371\377"
3143 "\367\367\367\377\366\366\366\377\345\345\345\377\217\217\217\377\0\0"
3144 "\0\242\0\0\0\20\0\0\0\1\0\0\0\0\0\0\0\23\0\0\0\373\324\324\324\377\367"
3145 "\367\367\377\375\375\375\377\375\375\375\377\375\375\375\377\375\375"
3146 "\375\377\375\375\375\377\375\375\375\377\241\241\241\377\231\231\231"
3147 "\377\373\373\373\377\372\372\372\377\371\371\371\377\370\370\370\377"
3148 "\367\367\367\377\365\365\365\377\363\363\363\377\350\350\350\377\0\0"
3149 "\0\374\0\0\0>\0\0\0\11\0\0\0\0\0\0\0o\207\207\207\377\342\342\342\377"
3150 "\374\374\374\377\375\375\375\377\375\375\375\377\375\375\375\377\375"
3151 "\375\375\377\376\376\376\377\375\375\375\377\221\221\221\377\212\212"
3152 "\212\377\373\373\373\377\372\372\372\377\371\371\371\377\370\370\370"
3153 "\377\366\366\366\377\365\365\365\377\363\363\363\377\355\355\355\377"
3154 "\216\216\216\377\0\0\0\227\0\0\0\25\0\0\0\0\0\0\0\266\300\300\300\377"
3155 "\364\364\364\377\374\374\374\377\374\374\374\377\375\375\375\377\375"
3156 "\375\375\377\376\376\376\377\377\377\377\377\376\376\376\377\201\201"
3157 "\201\377zzz\377\373\373\373\377\371\371\371\377\370\370\370\377\367\367"
3158 "\367\377\365\365\365\377\364\364\364\377\362\362\362\377\357\357\357"
3159 "\377\323\323\323\377\0\0\0\314\0\0\0(\0\0\0\0\0\0\0\346\323\323\323\377"
3160 "\372\372\372\377\373\373\373\377\374\374\374\377\374\374\374\377\375"
3161 "\375\375\377\375\375\375\377\376\376\376\377\375\375\375\377rrr\377k"
3162 "kk\377\356\356\356\377\371\371\371\377\370\370\370\377\366\366\366\377"
3163 "\364\364\364\377\363\363\363\377\361\361\361\377\357\357\357\377\367"
3164 "\367\367\377\0\0\0\354\0\0\0""9\0\0\0\0\0\0\0\373\350\350\350\377\372"
3165 "\372\372\377\337\337\337\377\373\373\373\377\374\374\374\377\374\374"
3166 "\374\377\374\374\374\377\374\374\374\377\374\374\374\377ccc\377[[[\377"
3167 "\313\313\313\377\345\345\345\377\367\367\367\377\365\365\365\377\364"
3168 "\364\364\377\362\362\362\377\273\273\273\377\356\356\356\377\370\370"
3169 "\370\377\0\0\0\374\0\0\0D\0\0\0\0\0\0\0\373\336\336\336\377\371\371\371"
3170 "\377\332\332\332\377\372\372\372\377\373\373\373\377\373\373\373\377"
3171 "\373\373\373\377\373\373\373\377\373\373\373\377\221\221\221\377LLL\377"
3172 "EEE\377bbb\377\300\300\300\377\335\335\335\377\362\362\362\377\361\361"
3173 "\361\377\265\265\265\377\355\355\355\377\370\370\370\377\0\0\0\374\0"
3174 "\0\0J\0\0\0\0\0\0\0\346\332\332\332\377\370\370\370\377\371\371\371\377"
3175 "\371\371\371\377\371\371\371\377\371\371\371\377\372\372\372\377\372"
3176 "\372\372\377\372\372\372\377\352\352\352\377\276\276\276\377ddd\377."
3177 "..\377'''\377III\377\361\361\361\377\357\357\357\377\355\355\355\377"
3178 "\371\371\371\377\367\367\367\377\0\0\0\355\0\0\0J\0\0\0\0\0\0\0\273\275"
3179 "\275\275\377\365\365\365\377\367\367\367\377\370\370\370\377\370\370"
3180 "\370\377\370\370\370\377\370\370\370\377\370\370\370\377\370\370\370"
3181 "\377\367\367\367\377\366\366\366\377\335\335\335\377\276\276\276\377"
3182 "WWW\377xxx\377\357\357\357\377\356\356\356\377\354\354\354\377\371\371"
3183 "\371\377\323\323\323\377\0\0\0\316\0\0\0D\0\0\0\0\0\0\0t\177\177\177"
3184 "\377\341\341\341\377\366\366\366\377\366\366\366\377\366\366\366\377"
3185 "\366\366\366\377\367\367\367\377\366\366\366\377\366\366\366\377\365"
3186 "\365\365\377\364\364\364\377\364\364\364\377yyy\377\0\0\0\377\0\0\0\377"
3187 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\234"
3188 "\0\0\0\0\0\0\0\31\0\0\0\374\320\320\320\377\353\353\353\377\364\364\364"
3189 "\377\364\364\364\377\365\365\365\377\364\364\364\377\364\364\364\377"
3190 "\364\364\364\377\363\363\363\377\362\362\362\377\361\361\361\377\0\0"
3191 "\0\377\351\\\23\377\362g\37\377\356b\32\377\345Y\23\377\333T\22\377\322"
3192 "S\27\377\312R\33\377\276D\17\377\0\0\0\377\0\0\0\0\0\0\0\2\0\0\0\217"
3193 "\211\211\211\377\324\324\324\377\362\362\362\377\362\362\362\377\362"
3194 "\362\362\377\362\362\362\377\362\362\362\377\361\361\361\377\361\361"
3195 "\361\377\360\360\360\377\360\360\360\377\0\0\0\377\353a\33\377\376\362"
3196 "\353\377\374\346\333\377\350k,\377\337e)\377\370\342\330\377\373\361"
3197 "\355\377\300K\30\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\324\253"
3198 "\253\253\377\323\323\323\377\360\360\360\377\360\360\360\377\360\360"
3199 "\360\377\360\360\360\377\360\360\360\377\357\357\357\377\357\357\357"
3200 "\377\356\356\356\377\0\0\0\377\345[\26\377\372\337\322\377\377\377\377"
3201 "\377\372\346\334\377\372\344\331\377\377\377\377\377\364\334\322\377"
3202 "\275G\23\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0""6\0\0\0\352\253"
3203 "\253\253\377\322\322\322\377\344\344\344\377\356\356\356\377\356\356"
3204 "\356\377\356\356\356\377\256\256\256\377\255\255\255\377\355\355\355"
3205 "\377\0\0\0\377\335U\22\377\342d%\377\371\340\324\377\377\377\377\377"
3206 "\377\377\377\377\365\336\323\377\307U\"\377\271B\16\377\0\0\0\377\0\0"
3207 "\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\77\0\0\0\330\202\202\202\377\315\315"
3208 "\315\377\331\331\331\377\354\354\354\377\354\354\354\377\354\354\354"
3209 "\377\354\354\354\377\353\353\353\377\0\0\0\377\323O\21\377\332a)\377"
3210 "\371\343\331\377\377\377\377\377\377\377\377\377\366\344\333\377\304"
3211 "W(\377\265@\16\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5"
3212 "\0\0\0\32\0\0\0\242\0\0\0\374\210\210\210\377\310\310\310\377\335\335"
3213 "\335\377\370\370\370\377\370\370\370\377\367\367\367\377\0\0\0\377\312"
3214 "N\23\377\367\341\327\377\377\377\377\377\364\335\323\377\364\335\323"
3215 "\377\377\377\377\377\364\342\332\377\262B\23\377\0\0\0\377\0\0\0\0\0"
3216 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\20\0\0\0>\0\0\0\227\0\0"
3217 "\0\314\0\0\0\354\0\0\0\374\0\0\0\374\0\0\0\355\0\0\0\377\302K\26\377"
3218 "\370\353\345\377\363\333\321\377\304S\"\377\300R\"\377\361\332\320\377"
3219 "\367\353\347\377\255A\25\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3220 "\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\10\0\0\0\25\0\0\0(\0\0\0""9\0\0\0D\0"
3221 "\0\0J\0\0\0J\0\0\0\377\267@\16\377\272E\23\377\270C\21\377\266@\16\377"
3222 "\263>\15\377\260>\20\377\253\77\23\377\2447\14\377\0\0\0\377\0\0\0\0"
3223 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"
3224 "\0\6\0\0\0\12\0\0\0\15\0\0\0\17\0\0\0\17\0\0\0\206\0\0\0\377\0\0\0\377"
3225 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\177"};
3226
3227
3228/* GdkPixbuf RGBA C-Source image dump */
3229
3230#ifdef __SUNPRO_C
3231#pragma align 4 (stock_trash)
3232#endif
3233#ifdef __GNUC__
3234static const guint8 stock_trash[] __attribute__ ((__aligned__ (4))) =
3235#else
3236static const guint8 stock_trash[] =
3237#endif
3238{ ""
3239 /* Pixbuf magic (0x47646b50) */
3240 "GdkP"
3241 /* length: header (24) + pixel_data (2304) */
3242 "\0\0\11\30"
3243 /* pixdata_type (0x1010002) */
3244 "\1\1\0\2"
3245 /* rowstride (96) */
3246 "\0\0\0`"
3247 /* width (24) */
3248 "\0\0\0\30"
3249 /* height (24) */
3250 "\0\0\0\30"
3251 /* pixel_data: */
3252 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3253 "\0R\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0"
3254 "X\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3255 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0\220\34\34"
3256 "\34\377vvv\377\346\346\346\377\323\323\323\377\303\303\303\377\220\220"
3257 "\220\377III\377\0\0\0\377\0\0\0\276\0\0\0,\0\0\0\0\0\0\0\0\0\0\0\0\0"
3258 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0E\0\0\0\240\0\0\0"
3259 "\377\0\0\0\377HG=\377\272\270\246\377\342\342\337\377\361\361\360\377"
3260 "\352\351\346\377\362\362\356\377\353\352\345\377\301\300\265\377WVJ\377"
3261 "RQF\377\0\0\0\377\0\0\0\377\0\0\0\227\0\0\0""3\0\0\0\0\0\0\0\0\0\0\0"
3262 "\0\0\0\0\0\0\0\0\0\0\0\0T\0\0\0\377\250\246\217\377\275\273\241\377\300"
3263 "\276\243\377\243\241\212\377ml\\\377||r\377LLI\377EE\77\377DC:\377oo"
3264 "g\377\306\305\271\377\266\265\233\377ml]\377\263\261\233\377\247\246"
3265 "\216\377\220\217z\377\0\0\0\377\0\0\0E\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3266 "\0\0\0\0\377\252\251\223\377\314\313\265\377\320\316\272\377\325\323"
3267 "\301\377\256\255\243\377\224\223\212\377EDB\377##!\377541\377)(#\377"
3268 "\36\36\32\377SRF\377\255\254\223\377\222\221\211\377\302\301\257\377"
3269 "\261\257\226\377\254\252\222\377\223\222}\377\0\0\0\377\0\0\0\0\0\0\0"
3270 "\0\0\0\0\0\0\0\0\0\10\10\10\377\321\320\301\377\314\313\265\377\326\325"
3271 "\304\377\337\336\321\377\316\315\300\377\254\254\246\377\220\217\212"
3272 "\377~}w\377\\\\U\377GF>\377edV\377wve\377\200~o\377\276\275\247\377\265"
3273 "\263\232\377\266\265\233\377\265\263\232\377\241\237\210\377\0\0\0\377"
3274 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\331\330\314\377\366\365\362"
3275 "\377\333\332\321\377\332\331\316\377\345\344\331\377\320\317\303\377"
3276 "\323\323\311\377\312\311\274\377\267\266\246\377\270\266\241\377\260"
3277 "\257\226\377\241\237\210\377\271\270\235\377\271\267\235\377\270\266"
3278 "\234\377\304\302\251\377\257\255\227\377\213\211v\377\0\0\0\377\0\0\0"
3279 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\252\251\230\377\266\266\262\377"
3280 "\371\371\367\377\372\372\370\377\364\364\360\377\342\341\332\377\331"
3281 "\331\316\377\333\332\317\377\325\323\301\377\323\321\276\377\304\302"
3282 "\251\377\300\276\243\377\305\304\254\377\326\325\303\377\315\314\277"
3283 "\377\273\272\255\377|zi\377qp`\377\0\0\0\336\0\0\0\0\0\0\0\0\0\0\0\0"
3284 "\0\0\0\0\23\23\23\316\231\230\202\377\257\256\235\377\303\303\276\377"
3285 "\336\336\334\377\351\351\350\377\373\373\372\377\375\375\374\377\375"
3286 "\375\375\377\374\373\372\377\371\371\367\377\362\362\357\377\352\351"
3287 "\343\377\333\332\321\377\300\277\261\377\225\224\204\377xwf\377nm]\377"
3288 "[[M\377\0\0\0\315\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\222]\\O\377\223"
3289 "\222}\377\243\242\223\377\270\267\246\377\330\327\320\377\333\333\324"
3290 "\377\323\322\312\377\310\310\303\377\306\305\275\377\275\274\255\377"
3291 "\272\270\250\377\237\236\213\377\216\214x\377\214\213w\377\216\214x\377"
3292 "zyh\377lk]\377NME\377\0\0\0y\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""2"
3293 "\0\0\0\377BBB\377{{s\377\237\237\226\377\322\321\307\377\334\333\322"
3294 "\377\314\313\276\377\321\320\302\377\304\303\266\377\261\257\226\377"
3295 "\261\257\226\377\261\257\226\377\232\230\203\377\200\177m\377}|k\377"
3296 "ji^\377@@>\377\0\0\0\377\0\0\0""3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3297 "\0\0\0\0\0\37777-\377\17\17\17\377874\377xxu\377\231\230\223\377\212"
3298 "\211~\377\263\262\244\377\252\252\236\377\243\241\212\377\207\206s\377"
3299 "\217\215y\377baU\377TTQ\37711.\377\0\0\0\377++#\377\0\0\0\377\0\0\0\17"
3300 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377qq]\377WWK\377BB:\377"
3301 "&&\40\377!!!\377\33\33\33\377\0\0\0\377$$$\377\0\0\0\377\0\0\0\377\0"
3302 "\0\0\377\0\0\0\377\26\26\23\377**\"\37700'\377\77\77""4\377\0\0\0\377"
3303 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377zze\377[[Q"
3304 "\377\205\205v\377vvk\377\230\230\216\377uuk\377QQF\377\177\177t\377j"
3305 "jX\377@@5\377bbQ\377TTE\377>>3\377UUF\37744+\377QQC\377\0\0\0\377\0\0"
3306 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\205\205n\377]"
3307 "]T\377\221\221\202\377\202\202x\377\252\252\243\377zzq\377NNE\377\212"
3308 "\212\200\377||m\377BB7\377``R\377ZZJ\377<<2\377NNA\37755,\377TTE\377"
3309 "\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\3\0\0\0\377"
3310 "\205\205n\377[[Q\377\254\254\234\377\205\205{\377\273\273\263\377\243"
3311 "\243\232\377TTK\377\223\223\212\377\221\221\205\377BB7\377``R\377hhV"
3312 "\377AA6\377jjX\377CC7\377jjX\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0"
3313 "\0\0\1\0\0\0\5\0\0\0\10\0\0\0\377\205\205n\377[[Q\377\244\244\223\377"
3314 "\205\205{\377\301\301\266\377\261\261\242\377kk_\377\261\261\242\377"
3315 "\235\235\213\377TTE\377\204\204p\377qq^\377CC7\377jjX\377CC7\377jjX\377"
3316 "\0\0\0\377\0\0\0\6\0\0\0\3\0\0\0\0\0\0\0\2\0\0\0\12\0\0\0\24\0\0\0\377"
3317 "\205\205n\377[[Q\377\245\245\224\377\205\205{\377\302\302\267\377\261"
3318 "\261\242\377kk_\377\261\261\242\377\235\235\213\377TTE\377\204\204p\377"
3319 "qq^\377CC7\377jjX\377CC7\377jjX\377\0\0\0\377\0\0\0\26\0\0\0\13\0\0\0"
3320 "\2\0\0\0\3\0\0\0\26\0\0\0+\0\0\0\377\205\205n\377[[Q\377\235\235\213"
3321 "\377\205\205{\377\301\301\266\377\261\261\242\377kk_\377\261\261\242"
3322 "\377\235\235\213\377TTE\377\204\204p\377qq^\377CC7\377jjX\377CC7\377"
3323 "jjX\377\0\0\0\377\0\0\0""1\0\0\0\32\0\0\0\4\0\0\0\7\0\0\0#\0\0\0I\0\0"
3324 "\0\377{{e\377[[Q\377\244\244\223\377\205\205{\377\301\301\266\377\261"
3325 "\261\242\377kk_\377\261\261\242\377\235\235\213\377TTE\377\204\204p\377"
3326 "qq^\377CC7\377jjX\377CC7\377__O\377\0\0\0\377\0\0\0H\0\0\0*\0\0\0\7\0"
3327 "\0\0\12\0\0\0,\0\0\0X\0\0\0\377ffT\377[[Q\377\244\244\223\377\202\202"
3328 "x\377\301\301\266\377\261\261\242\377kk_\377\261\261\242\377\235\235"
3329 "\213\377TTE\377\204\204p\377qq^\377CC7\377jjX\377II<\377WWH\377\0\0\0"
3330 "\377\0\0\0P\0\0\0*\0\0\0\7\0\0\0\6\0\0\0\35\0\0\0C\0\0\0r\0\0\0\377W"
3331 "WJ\377}}m\377vvi\377\263\263\250\377\241\241\224\377mma\377\263\263\245"
3332 "\377\235\235\213\377TTE\377\204\204p\377iiW\377AA5\377VVG\377DD8\377"
3333 "\0\0\0\377\0\0\0\177\0\0\0C\0\0\0\35\0\0\0\4\0\0\0\1\0\0\0\13\0\0\0\34"
3334 "\0\0\0""2\0\0\0g\0\0\0\320\0\0\0\377\0\0\0\377YYQ\377XXI\377NN@\377t"
3335 "tg\377aaS\377NNA\377II<\377II<\377\0\0\0\377\0\0\0\377\0\0\0\304\0\0"
3336 "\0t\0\0\0>\0\0\0%\0\0\0\11\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\6\0\0\0\17\0"
3337 "\0\0\31\0\0\0\37\0\0\0r\0\0\0\264\0\0\0\302\0\0\0\377\0\0\0\377\0\0\0"
3338 "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\271\0\0\0\217\0\0\0S\0\0\0,"
3339 "\0\0\0*\0\0\0\33\0\0\0\10\0\0\0\1\0\0\0\0"};
3340
3341
3342/* GdkPixbuf RGBA C-Source image dump */
3343
3344#ifdef __SUNPRO_C
3345#pragma align 4 (stock_trash_full)
3346#endif
3347#ifdef __GNUC__
3348static const guint8 stock_trash_full[] __attribute__ ((__aligned__ (4))) =
3349#else
3350static const guint8 stock_trash_full[] =
3351#endif
3352{ ""
3353 /* Pixbuf magic (0x47646b50) */
3354 "GdkP"
3355 /* length: header (24) + pixel_data (2304) */
3356 "\0\0\11\30"
3357 /* pixdata_type (0x1010002) */
3358 "\1\1\0\2"
3359 /* rowstride (96) */
3360 "\0\0\0`"
3361 /* width (24) */
3362 "\0\0\0\30"
3363 /* height (24) */
3364 "\0\0\0\30"
3365 /* pixel_data: */
3366 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3367 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3368 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3369 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3370 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\10"
3371 "\10\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3372 "\0\0\0\0\0\6\6\6\21\6\6\6K\16\16\16\377BBB\377JJJ\377>>>\377,,,\377\0"
3373 "\0\0\377\6\6\6>\6\6\6!\0\0\0\0\0\0\0\0\0\0\0\0\10\10\10\377\10\10\10"
3374 "\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3375 "\6\6\6:\0\0\0\377\0\0\0\377\205\203q\377\360\355\330\377\362\361\351"
3376 "\377\356\355\344\377\307\306\272\377SRF\377\0\0\0\377\0\0\0\377\6\6\6"
3377 "K\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3378 "\0\0\0\0\0\0\0\0\0\0\6\6\6>\20\20\20\377\302\300\245\377\301\277\245"
3379 "\377zyg\377HG@\377''%\37765.\377\207\205r\377\240\236\210\377\243\241"
3380 "\212\377\245\243\214\377\0\0\0\377\6\6\6!\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3381 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0+++\377\323\321\274"
3382 "\377\334\332\304\377\342\340\317\377\271\267\242\377db[\377986\377<<"
3383 "3\377a`S\377\232\230\203\377\267\265\233\377\263\262\230\377\244\242"
3384 "\213\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\10\10\377"
3385 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\350\344\323\377\364\361\351"
3386 "\377\362\361\344\377\352\351\332\377\345\342\322\377\325\322\276\377"
3387 "\303\301\247\377\257\255\224\377\300\276\244\377\306\304\254\377\270"
3388 "\266\234\377ywf\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3389 "\10\10\10\377\10\10\10\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\212\211"
3390 "u\377\361\355\322\377\373\370\351\377\371\365\355\377\370\367\356\377"
3391 "\370\367\354\377\365\363\346\377\354\352\331\377\336\335\313\377\0\0"
3392 "\0\377\0\0\0\377BA8\377\0\0\0\377\0\0\0\0\0\0\0>\0\0\0\377\0\0\0W\0\0"
3393 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\202RQF\377sqe\377"
3394 "\237\235\221\377\344\341\310\377\351\345\317\377\342\340\313\377\321"
3395 "\321\313\377\216\215\177\377\0\0\0\377\377\377\377\377\301\301\301\377"
3396 "\0\0\0\377\0\0\0\240\0\0\0L\0\0\0\377\377\377\377\377\0\0\0\377\0\0\0"
3397 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\37\37\33\377440\377"
3398 "KID\377hgb\377pof\377kkd\377nl]\377XWK\377++%\377\0\0\0\377\377\377\377"
3399 "\377\222\222\222\377\2\2\2\377\0\0\0\377\346\346\346\377\0\0\0\377\0"
3400 "\0\0>\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0**#\377"
3401 "\240\240\225\377MM@\377660\377**&\377//*\377\17\17\15\377\13\13\11\377"
3402 "\20\20\15\377(($\377\0\0\0\377\274\274\274\377nnn\377\355\355\355\377"
3403 "\0\0\0\377\0\0\0L\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3404 "\0\0\0\0\0\0++$\377\245\244\231\377\267\266\256\377qpg\377\241\241\222"
3405 "\377tsc\377@@5\377ii[\377%%\36\377\34\34\34\377\354\354\354\377\317\317"
3406 "\317\377ooo\377\257\257\257\377\0\0\0\377\0\0\0!\0\0\0\0\0\0\0\0\0\0"
3407 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0,,%\377\255\255\243\377\331"
3408 "\331\322\377\213\213\177\377\326\325\316\377\210\210{\377XWO\377\177"
3409 "\177u\377\0\0\0\377\336\336\336\377\377\377\377\377\336\336\336\377\336"
3410 "\336\336\377\311\311\311\377\0\0\0\377\0\0\0\77\0\0\0\1\0\0\0\1\0\0\0"
3411 "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\6,,%\377\255\255\243\377\332"
3412 "\332\323\377\217\216\201\377\335\335\324\377\254\253\231\377]]R\377i"
3413 "i`\377mmm\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
3414 "\377\377\347\347\347\377\223\223\223\377\0\0\0\377\0\0\0+\0\0\0\13\0"
3415 "\0\0\7\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\5\0\0\0\21++$\377~~u\377\330\330"
3416 "\321\377\215\215\200\377\335\335\323\377\254\253\231\377PPG\377\30\30"
3417 "\30\377\311\311\311\377\307\340\307\377x\265x\377\233\310\233\377\377"
3418 "\377\377\377\347\347\347\377\306\306\306\377\0\0\0\377\0\0\0U\0\0\0\35"
3419 "\0\0\0\27\0\0\0\15\0\0\0\3\0\0\0\1\0\0\0\11\0\0\0\34''!\377CC=\377\216"
3420 "\216\206\377^^U\377\332\332\320\377\254\253\231\37755.\377]]]\377\324"
3421 "\347\324\377]\246]\377\307\340\307\377\377\377\377\377]\246]\377\215"
3422 "\272\215\377\345\345\345\377\206\206\206\377\0\0\0\377\0\0\0G\0\0\0'"
3423 "\0\0\0\31\0\0\0\10\0\0\0\1\0\0\0\11\0\0\0\34\4\4\4k\6\6\6\377\6\6\6\377"
3424 "BA:\377\217\217{\377zzl\377\0\0\0\377\304\304\304\377s\262s\377\307\340"
3425 "\307\377\377\377\377\377\377\377\377\377x\265x\377n\253n\377\345\345"
3426 "\345\377\220\220\220\377\0\0\0\377\0\0\0w\0\0\0.\0\0\0\"\0\0\0\16\0\0"
3427 "\0\1\0\0\0\5\0\0\0\23\0\0\0&\0\0\0""0\4\4\4y\6\6\6\377\0\0\0\377\17\17"
3428 "\17\377\0\0\0\377\327\327\327\377\377\377\377\377\377\377\377\377\377"
3429 "\377\377\377\377\377\377\377\377\377\377\377\364\364\364\377S\235S\377"
3430 "\277\277\277\377JJJ\377\0\0\0\377\0\0\0""1\0\0\0(\0\0\0\23\0\0\0\0\0"
3431 "\0\0\1\0\0\0\6\0\0\0\23\0\0\0\40\0\0\0)\0\0\0-\0\0\0.\0\0\0""0\0\0\0"
3432 "\377\354\354\354\377x\265x\377\377\377\377\377\377\377\377\377\307\340"
3433 "\307\377\377\377\377\377\272\323\272\377\212\270\212\377\212\267\212"
3434 "\377qqq\377\0\0\0\377\0\0\0""2\0\0\0*\0\0\0\27\0\0\0\0\0\0\0\0\0\0\0"
3435 "\1\0\0\0\3\0\0\0\12\0\0\0\21\0\0\0\26\0\0\0\33\0\0\0\"\0\0\0\377\254"
3436 "\254\254\377\354\354\354\377o\254o\377o\254o\377n\253n\377T\235T\377"
3437 "\262\314\262\377\212\270\212\377\222\222\222\377aaa\377\0\0\0\377\0\0"
3438 "\0""1\0\0\0'\0\0\0\23\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1"
3439 "\0\0\0\2\0\0\0\10\0\0\0\22\0\0\0U\0\0\0\377\0\0\0\377iii\377\200\200"
3440 "\200\377}\220}\377\241\241\241\377\203\203\203\377zzz\377CCC\377\0\0"
3441 "\0\377\0\0\0w\0\0\0*\0\0\0\34\0\0\0\12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3442 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\7\0\0\0\21\0\0\0""9\0\0\0p\0"
3443 "\0\0\234\0\0\0\304\0\0\0\377\0\0\0\377\0\0\0\377(((\377444\263888q\0"
3444 "\0\0#\0\0\0\32\0\0\0\13\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3445 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\6\0\0\0\14\0\0\0\21\0\0\0\23"
3446 "\0\0\0\24\0\0\0\26\0\0\0\26\0\0\0\26\0\0\0\25\0\0\0\25\0\0\0\24\0\0\0"
3447 "\17\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3448 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\6\0\0"
3449 "\0\6\0\0\0\7\0\0\0\10\0\0\0\7\0\0\0\6\0\0\0\6\0\0\0\4\0\0\0\2\0\0\0\1"
3450 "\0\0\0\0\0\0\0\0"};
3451
3452
3453/* GdkPixbuf RGBA C-Source image dump */
3454
3455#ifdef __SUNPRO_C
3456#pragma align 4 (stock_volume)
3457#endif
3458#ifdef __GNUC__
3459static const guint8 stock_volume[] __attribute__ ((__aligned__ (4))) =
3460#else
3461static const guint8 stock_volume[] =
3462#endif
3463{ ""
3464 /* Pixbuf magic (0x47646b50) */
3465 "GdkP"
3466 /* length: header (24) + pixel_data (2304) */
3467 "\0\0\11\30"
3468 /* pixdata_type (0x1010002) */
3469 "\1\1\0\2"
3470 /* rowstride (96) */
3471 "\0\0\0`"
3472 /* width (24) */
3473 "\0\0\0\30"
3474 /* height (24) */
3475 "\0\0\0\30"
3476 /* pixel_data: */
3477 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3478 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3479 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3480 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3481 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3482 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3483 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3484 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3485 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3486 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3487 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3488 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3489 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3490 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3491 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3492 "\0\0\0\0\0\0\0\0\0,\0\0\0\377\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3493 "\0\0\0\0\0\0\0\0I@f\320I@f+\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3494 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0-\0\0\0\377"
3495 "\0\0\0\377\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0I@f\377I@f+\0\0\0\0I@f+I@f"
3496 "\252I@f+\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3497 "\0\0\0\0\0\0\0\0\0\0\0\0\0-\0\0\0\377\256\253\237\377\0\0\0\377\0\0\0"
3498 "\21\0\0\0\2\0\0\0\0\0\0\0\0I@f+I@f\377I@f+\0\0\0\0I@f\213I@fO\0\0\0\0"
3499 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\377\0\0\0\377\0\0\0\377"
3500 "\0\0\0o\0\0\0\377\256\253\237\377\334\331\323\377\0\0\0\377\0\0\0\221"
3501 "\0\0\0\4I@f\377I@f+\0\0\0\0I@f\252I@fO\0\0\0\0I@fcI@f\213\0\0\0\0\0\0"
3502 "\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\7\0\0\0\377\233\230\212\377\200~r"
3503 "\377\0\0\0\377\256\253\237\377\342\341\334\377\362\362\360\377\0\0\0"
3504 "\377\0\0\0\347\0\0\0\12I@f+I@f\377\0\0\0\0I@fOI@f\252\0\0\0\0I@f@I@f"
3505 "\252\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\22\0\0\0\377\343\342"
3506 "\335\377\266\266\261\377\0\0\0\377\356\355\352\377\352\352\346\377\305"
3507 "\301\267\377\0\0\0\377III\377\0\0\0\24\0\0\0\0I@f\377\0\0\0\0I@f+I@f"
3508 "\320\0\0\0\0I@f#I@f\320\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0"
3509 "\30\0\0\0\377\260\254\234\377\222\216\201\377\0\0\0\377\315\312\301\377"
3510 "\270\264\246\377\277\273\257\377\0\0\0\377\11\11\11\377\0\0\0\30\0\0"
3511 "\0\0I@f\377\0\0\0\0\0\0\0\0I@f\377\0\0\0\0\0\0\0\0I@f\377\0\0\0\0\0\0"
3512 "\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\31\0\0\0\377\233\230\212\377\200~"
3513 "r\377\0\0\0\377\236\232\214\377\260\254\234\377\260\254\234\377\0\0\0"
3514 "\377+++\377\0\0\0\27\0\0\0\0I@f\377\0\0\0\0I@f+I@f\320\0\0\0\0I@f#I@"
3515 "f\320\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\31\0\0\0\377yvl\377"
3516 "dbY\377\0\0\0\377\236\232\214\377\236\232\214\377\236\232\214\377\0\0"
3517 "\0\377\10\10\10\376\0\0\0\27I@f+I@f\377\0\0\0\0I@fOI@f\252\0\0\0\0I@"
3518 "f@I@f\252\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\31\0\0\0\377"
3519 "\0\0\0\377\0\0\0\377\0\0\0\240\0\0\0\377\215\212}\377\236\232\214\377"
3520 "\0\0\0\377\0\0\0\300\0\0\0\30I@f\377I@f+\0\0\0\0I@f\252I@fO\0\0\0\0I"
3521 "@fYI@f\213\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\30\0\0\0>\0"
3522 "\0\0S\0\0\0S\0\0\0Q\0\0\0r\0\0\0\377~{p\377\0\0\0\377\0\0\0=\0\0\0\32"
3523 "\0\0\0\0\0\0\0\0I@f+I@f\320I@f+\0\0\0\0I@f\213I@fO\0\0\0\0\0\0\0\0\0"
3524 "\0\0\0\0\0\0\0\0\0\0\2\0\0\0\22\0\0\0/\0\0\0=\0\0\0;\0\0\0""8\0\0\0C"
3525 "\0\0\0o\0\0\0\377\0\0\0\377\0\0\0""1\0\0\0\26\0\0\0\0\0\0\0\0I@f\377"
3526 "I@f+\0\0\0\0I@f+I@f\213I@f+\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0"
3527 "\0\0\7\0\0\0\22\0\0\0\27\0\0\0\26\0\0\0\26\0\0\0%\0\0\0>\0\0\0l\0\0\0"
3528 "\377\0\0\0\"\0\0\0\13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0I@f\320"
3529 "I@f+\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2"
3530 "\0\0\0\3\0\0\0\3\0\0\0\4\0\0\0\15\0\0\0#\0\0\0;\0\0\0""8\0\0\0\30\0\0"
3531 "\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3532 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3533 "\0\0\0\0\0\0\0\0\0\3\0\0\0\15\0\0\0\37\0\0\0%\0\0\0\21\0\0\0\2\0\0\0"
3534 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3535 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3536 "\0\0\0\0\0\0\0\0\3\0\0\0\11\0\0\0\15\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0"
3537 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3538 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3539 "\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3540 "\0\0\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3541 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3542 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3543 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3544 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3545 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3546 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"};
3547
3548
3549/* GdkPixbuf RGBA C-Source image dump */
3550
3551#ifdef __SUNPRO_C
3552#pragma align 4 (stock_midi)
3553#endif
3554#ifdef __GNUC__
3555static const guint8 stock_midi[] __attribute__ ((__aligned__ (4))) =
3556#else
3557static const guint8 stock_midi[] =
3558#endif
3559{ ""
3560 /* Pixbuf magic (0x47646b50) */
3561 "GdkP"
3562 /* length: header (24) + pixel_data (2304) */
3563 "\0\0\11\30"
3564 /* pixdata_type (0x1010002) */
3565 "\1\1\0\2"
3566 /* rowstride (96) */
3567 "\0\0\0`"
3568 /* width (24) */
3569 "\0\0\0\30"
3570 /* height (24) */
3571 "\0\0\0\30"
3572 /* pixel_data: */
3573 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3574 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3575 "\0\0\0\0\0\0\0\24\0\0\0n\0\0\0\24\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3576 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3577 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\36\0\0"
3578 "\0\206\0\0\0$\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3579 "\0\0\0\0\0\0\0$\0\0\0^\0\0\0u\0\0\0\231\0\0\0\231\0\0\0Q\0\0\0<\0\0\0"
3580 "(\0\0\0\17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0.\0\0\0\276\0\0\0X\0\0\0\0\0"
3581 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3582 "^\0\0\0C\0\0\0u\0\0\0$\0\0\0\24\0\0\0E\0\0\0w\0\0\0}\0\0\0X\0\0\0""7"
3583 "\0\0\0\15\0\0\0A\0\0\0\225\0\0\0""8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3584 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\271\0\0\0$\0\0\0"
3585 "\177\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0!\0\0\0>\0\0\0\201\0\0\0\311"
3586 "\0\0\0\200\0\0\0G\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3587 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0E\0\0\0\364\0\0\0b\0\0\0\362\0\0\0"
3588 "U\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3589 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3590 "\0\0\0\0\0\0\0\0\0\0\0\355\377\377\377\377\0\0\0\355\377\377\377\377"
3591 "\0\0\0\356\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3592 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3593 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\376\250\250\250\377\0\0\0\355\267\267"
3594 "\267\377\0\0\0\356\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3595 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3596 "\0\0\0\0\0\0\0\0{\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
3597 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
3598 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
3599 "\0\0\0\377\0\0\0z\0\0\0\0\0\0\0\0\0\0\0\377\323\321\316\377\274\272\265"
3600 "\377\254\252\244\377\230\226\217\377\230\226\217\377\230\226\217\377"
3601 "\230\226\217\377\230\226\217\377\230\226\217\377\230\226\217\377\230"
3602 "\226\217\377\230\226\217\377\230\226\217\377\230\226\217\377\230\226"
3603 "\217\377\230\226\217\377\230\226\217\377zxr\377b`[\377USO\377\0\0\0\377"
3604 "\0\0\0\23\0\0\0\0\0\0\0\377\257\255\251\377\234\232\225\377\204\202|"
3605 "\377fd]\377fd]\377fd]\377fd]\377fd]\377fd]\377fd]\377fd]\377fd]\377f"
3606 "d]\377fd]\377fd]\377fd]\377fd]\377RPJ\377RPJ\377A@;\377\0\0\0\377\0\0"
3607 "\0,\0\0\0\3\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
3608 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
3609 "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
3610 "\0\0\0\377\0\0\0\377\0\0\0""6\0\0\0\7\0\0\0\377\315\315\315\377VVV\377"
3611 "\0\0\0\377\312\312\312\377VVV\377\0\0\0\377\310\310\310\377VVV\377\0"
3612 "\0\0\377\305\305\305\377\302\302\302\377\271\271\271\377\303\303\303"
3613 "\377VVV\377\0\0\0\377\300\300\300\377VVV\377\0\0\0\377\276\276\276\377"
3614 "\270\270\270\377\0\0\0\377\0\0\0\77\0\0\0\14\0\0\0\377\377\377\377\377"
3615 "kkk\377\0\0\0\377\374\374\374\377kkk\377\0\0\0\377\370\370\370\377kk"
3616 "k\377\0\0\0\377\366\366\366\377\361\361\361\377\346\346\346\377\362\362"
3617 "\362\377kkk\377\0\0\0\377\360\360\360\377kkk\377\0\0\0\377\355\355\355"
3618 "\377\346\346\346\377\0\0\0\377\0\0\0E\0\0\0\22\0\0\0\377\377\377\377"
3619 "\377kkk\377\0\0\0\377\373\373\373\377kkk\377\0\0\0\377\367\367\367\377"
3620 "kkk\377\0\0\0\377\365\365\365\377\361\361\361\377\345\345\345\377\362"
3621 "\362\362\377kkk\377\0\0\0\377\357\357\357\377kkk\377\0\0\0\377\354\354"
3622 "\354\377\345\345\345\377\0\0\0\377\0\0\0D\0\0\0\23\0\0\0\377\377\377"
3623 "\377\377kkk\377\0\0\0\377\372\372\372\377kkk\377\0\0\0\377\367\367\367"
3624 "\377kkk\377\0\0\0\377\365\365\365\377\360\360\360\377\344\344\344\377"
3625 "\362\362\362\377kkk\377\0\0\0\377\356\356\356\377kkk\377\0\0\0\377\353"
3626 "\353\353\377\344\344\344\377\0\0\0\377\0\0\0D\0\0\0\20\0\0\0\377\376"
3627 "\376\376\377NNN\377\0\0\0\377\372\372\372\377NNN\377\0\0\0\377\366\366"
3628 "\366\377NNN\377\0\0\0\377\365\365\365\377\357\357\357\377\344\344\344"
3629 "\377\361\361\361\377NNN\377\0\0\0\377\356\356\356\377NNN\377\0\0\0\377"
3630 "\353\353\353\377\343\343\343\377\0\0\0\377\0\0\0D\0\0\0\16\0\0\0\377"
3631 "\375\375\375\377\374\374\374\377\360\360\360\377\372\372\372\377\367"
3632 "\367\367\377\354\354\354\377\366\366\366\377\363\363\363\377\347\347"
3633 "\347\377\364\364\364\377\356\356\356\377\343\343\343\377\360\360\360"
3634 "\377\352\352\352\377\336\336\336\377\356\356\356\377\346\346\346\377"
3635 "\332\332\332\377\353\353\353\377\343\343\343\377\0\0\0\377\0\0\0D\0\0"
3636 "\0\16\0\0\0\377\374\374\374\377\373\373\373\377\357\357\357\377\372\372"
3637 "\372\377\366\366\366\377\353\353\353\377\366\366\366\377\362\362\362"
3638 "\377\347\347\347\377\363\363\363\377\356\356\356\377\342\342\342\377"
3639 "\360\360\360\377\351\351\351\377\336\336\336\377\355\355\355\377\345"
3640 "\345\345\377\331\331\331\377\352\352\352\377\342\342\342\377\0\0\0\377"
3641 "\0\0\0D\0\0\0\16\0\0\0\377\374\374\374\377\373\373\373\377\370\370\370"
3642 "\377\373\373\373\377\373\373\373\377\366\366\366\377\373\373\373\377"
3643 "\371\371\371\377\366\366\366\377\371\371\371\377\370\370\370\377\363"
3644 "\363\363\377\370\370\370\377\366\366\366\377\361\361\361\377\370\370"
3645 "\370\377\364\364\364\377\360\360\360\377\370\370\370\377\341\341\341"
3646 "\377\0\0\0\377\0\0\0D\0\0\0\16\0\0\0\377\301\301\301\377\300\300\300"
3647 "\377\267\267\267\377\301\301\301\377\275\275\275\377\270\270\270\377"
3648 "\275\275\275\377\272\272\272\377\264\264\264\377\272\272\272\377\270"
3649 "\270\270\377\251\251\251\377\272\272\272\377\263\263\263\377\251\251"
3650 "\251\377\266\266\266\377\257\257\257\377\246\246\246\377\264\264\264"
3651 "\377\255\255\255\377\0\0\0\377\0\0\0D\0\0\0\16\0\0\0n\0\0\0\377\0\0\0"
3652 "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
3653 "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
3654 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\227\0\0\0\77\0"
3655 "\0\0\14\0\0\0\6\0\0\0#\0\0\0>\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0"
3656 "\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0"
3657 "\0\0D\0\0\0D\0\0\0D\0\0\0\77\0\0\0#\0\0\0\6\0\0\0\1\0\0\0\6\0\0\0\14"
3658 "\0\0\0\15\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0"
3659 "\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0"
3660 "\0\0\16\0\0\0\16\0\0\0\16\0\0\0\14\0\0\0\6\0\0\0\1"};
3661
3662
3663/* GdkPixbuf RGBA C-Source image dump */
3664
3665#ifdef __SUNPRO_C
3666#pragma align 4 (stock_authentication)
3667#endif
3668#ifdef __GNUC__
3669static const guint8 stock_authentication[] __attribute__ ((__aligned__ (4))) =
3670#else
3671static const guint8 stock_authentication[] =
3672#endif
3673{ ""
3674 /* Pixbuf magic (0x47646b50) */
3675 "GdkP"
3676 /* length: header (24) + pixel_data (9216) */
3677 "\0\0$\30"
3678 /* pixdata_type (0x1010002) */
3679 "\1\1\0\2"
3680 /* rowstride (192) */
3681 "\0\0\0\300"
3682 /* width (48) */
3683 "\0\0\0""0"
3684 /* height (48) */
3685 "\0\0\0""0"
3686 /* pixel_data: */
3687 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3688 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3689 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3690 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3691 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3692 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3693 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3694 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3695 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3696 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3697 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3698 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3699 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3700 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\3"
3701 "\0\0\0\4\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\4\0\0\0\3\0\0\0\2\0\0\0\1\0\0"
3702 "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3703 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3704 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3705 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3706 "\0\1\0\0\0\2\0\0\0\4\0\0\0\7\0\0\0\12\0\0\0\16\0\0\0\21\0\0\0\23\0\0"
3707 "\0\23\0\0\0\23\0\0\0\21\0\0\0\16\0\0\0\12\0\0\0\7\0\0\0\4\0\0\0\2\0\0"
3708 "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3709 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3710 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3711 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\10\0\0"
3712 "\0\16\0\0\0g\0\0\0\253\0\0\0\332\0\0\0\366\1\1\1\377\0\0\0\366\0\0\0"
3713 "\334\0\0\0\260\0\0\0q\0\0\0\36\0\0\0\25\0\0\0\16\0\0\0\10\0\0\0\4\0\0"
3714 "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3715 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3716 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3717 "\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\5\0\0\0\14\0\0\0\203\0\0\0\354"
3718 "\1\1\1\377\233\233\233\377\320\320\320\377\343\343\343\377\351\351\351"
3719 "\377\335\335\335\377\306\306\306\377\221\221\221\377\1\1\1\377\0\0\0"
3720 "\356\0\0\0\221\0\0\0#\0\0\0\27\0\0\0\15\0\0\0\5\0\0\0\2\0\0\0\1\0\0\0"
3721 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3722 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3723 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0"
3724 "\0\0\7\0\0\0>\0\0\0\320\1\1\1\377\276\276\276\377\352\352\352\377\361"
3725 "\361\361\377\363\363\363\377\361\361\361\377\355\355\355\377\352\352"
3726 "\352\377\346\346\346\377\342\342\342\377\330\330\330\377\234\234\234"
3727 "\377\1\1\1\377\0\0\0\330\0\0\0W\0\0\0\36\0\0\0\20\0\0\0\7\0\0\0\2\0\0"
3728 "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3729 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3730 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\7"
3731 "\0\0\0R\0\0\0\366```\377\343\343\343\377\363\363\363\377\360\360\360"
3732 "\377\354\354\354\377\346\346\346\377\344\344\344\377\343\343\343\377"
3733 "\342\342\342\377\342\342\342\377\342\342\342\377\341\341\341\377\326"
3734 "\326\326\377\267\267\267\377EEE\377\0\0\0\367\0\0\0m\0\0\0\"\0\0\0\22"
3735 "\0\0\0\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3736 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3737 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"
3738 "\0\5\0\0\0>\0\0\0\366\205\205\205\377\354\354\354\377\363\363\363\377"
3739 "\352\352\352\377\343\343\343\377\331\331\331\377\316\316\316\377\302"
3740 "\302\302\377\302\302\302\377\314\314\314\377\325\325\325\377\334\334"
3741 "\334\377\340\340\340\377\335\335\335\377\310\310\310\377\271\271\271"
3742 "\377bbb\377\0\0\0\370\0\0\0Y\0\0\0!\0\0\0\17\0\0\0\5\0\0\0\1\0\0\0\0"
3743 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3744 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3745 "\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\15\0\0\0\320^^^\377\354\354\354"
3746 "\377\363\363\363\377\350\350\350\377\334\334\334\377\274\274\274\370"
3747 "XXX\360\24\24\24\341\0\0\0\333\0\0\0\326\0\0\0\324{{{\352\276\276\276"
3748 "\366\340\340\340\377\337\337\337\377\334\334\334\377\303\303\303\377"
3749 "\273\273\273\377LLL\377\0\0\0\273\0\0\0""5\0\0\0\33\0\0\0\13\0\0\0\3"
3750 "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3751 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3752 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0\203\1\1\1\377\342\342"
3753 "\342\377\363\363\363\377\351\351\351\377\330\330\330\377\227\227\227"
3754 "\354\0\0\0\352\0\0\0\274\0\0\0g\0\0\0Y\0\0\0S\0\0\0Q\0\0\0Y\0\0\0\305"
3755 "\234\234\234\351\335\335\335\371\340\340\340\377\330\330\330\377\273"
3756 "\273\273\377\266\266\266\377\1\1\1\377\0\0\0x\0\0\0*\0\0\0\23\0\0\0\7"
3757 "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3758 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3759 "\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\3\0\0\0\15\0\0\0\354\271\271\271\377\363"
3760 "\363\363\377\353\353\353\377\330\330\330\377\212\212\212\356\0\0\0\342"
3761 "\0\0\0}\0\0\0W\0\0\0F\0\0\0""9\0\0\0""0\0\0\0.\0\0\0""1\0\0\0;\0\0\0"
3762 "\224\222\222\222\337\333\333\333\367\337\337\337\377\316\316\316\377"
3763 "\263\263\263\377\223\223\223\377\0\0\0\313\0\0\0:\0\0\0\36\0\0\0\13\0"
3764 "\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3765 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3766 "\0\0\0\0\0\0\0\0\0\0\1\0\0\0\6\0\0\0E\1\1\1\377\352\352\352\377\361\361"
3767 "\361\377\335\335\335\377\300\300\300\377\2\2\2\350\0\0\0\214\0\0\0T\0"
3768 "\0\0<\0\0\0)\0\0\0\34\0\0\0\25\0\0\0\23\0\0\0\26\0\0\0\37\0\0\0.\0\0"
3769 "\0\240\242\242\242\337\345\345\345\377\335\335\335\377\300\300\300\377"
3770 "\266\266\266\377\1\1\1\377\0\0\0a\0\0\0)\0\0\0\22\0\0\0\5\0\0\0\1\0\0"
3771 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3772 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3773 "\0\2\0\0\0\11\0\0\0p\240\240\240\377\361\361\361\377\350\350\350\377"
3774 "\306\306\306\377\201\201\201\354\0\0\0\322\0\0\0Z\0\0\0>\0\0\0%\0\0\0"
3775 "\24\0\0\0\13\0\0\0\7\0\0\0\5\0\0\0\7\0\0\0\15\0\0\0\30\0\0\0""0\2\2\2"
3776 "\313\334\334\334\357\352\352\352\377\321\321\321\377\256\256\256\377"
3777 "vvv\377\0\0\0\220\0\0\0""4\0\0\0\30\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0"
3778 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3779 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\14"
3780 "\0\0\0\223\320\320\320\377\362\362\362\377\331\331\331\377\300\300\300"
3781 "\377///\345\0\0\0\213\0\0\0J\0\0\0,\0\0\0\25\0\0\0\11\0\0\0\3\0\0\0\1"
3782 "\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\13\0\0\0\31\0\0\0n\202\202\202\340\356"
3783 "\356\356\377\334\334\334\377\265\265\265\377\237\237\237\377\0\0\0\274"
3784 "\0\0\0>\0\0\0\37\0\0\0\13\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3785 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3786 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\16\0\0\0\325\341\341\341"
3787 "\377\361\361\361\377\314\314\314\377\300\300\300\377\17\17\17\331\0\0"
3788 "\0e\0\0\0=\0\0\0\40\0\0\0\16\0\0\0\5\0\0\0\2\0\0\0\1\0\0\0\1\0\0\0\1"
3789 "\0\0\0\2\0\0\0\5\0\0\0\17\0\0\0#\37\37\37\323\354\354\354\377\342\342"
3790 "\342\377\300\300\300\377\250\250\250\377\0\0\0\325\0\0\0G\0\0\0%\0\0"
3791 "\0\16\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3792 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3793 "\0\0\0\0\0\2\0\0\0\7\0\0\0\24\0\0\0\336\346\346\346\377\357\357\357\377"
3794 "\313\313\313\377\267\267\267\377\0\0\0\322\0\0\0W\0\0\0""6\0\0\0\34\0"
3795 "\0\0\15\0\0\0\10\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\10\0\0"
3796 "\0\16\0\0\0\35\0\0\0\301\351\351\351\377\345\345\345\377\305\305\305"
3797 "\377\256\256\256\377\0\0\0\360\0\0\0O\0\0\0.\0\0\0\25\0\0\0\10\0\0\0"
3798 "\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3799 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\6\0\0\0"
3800 "\17\0\0\0\37\0\0\0\354\332\332\332\377\353\353\353\377\312\312\312\377"
3801 "\253\253\253\377\0\0\0\322\0\0\0Y\0\0\0<\0\0\0%\0\0\0\32\0\0\0\26\0\0"
3802 "\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\26\0\0\0\32\0\0\0&\0"
3803 "\0\0\300\344\344\344\377\343\343\343\377\312\312\312\377\255\254\252"
3804 "\377\0\0\0\371\0\0\0Y\0\0\0;\0\0\0\"\0\0\0\23\0\0\0\12\0\0\0\5\0\0\0"
3805 "\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3806 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5""1\26\7f7\31\10\3777\31\10\377"
3807 "7\31\10\377\234R\27\377\270n%\377\271k&\377\247Z\34\3777\31\10\3777\31"
3808 "\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10"
3809 "\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\377"
3810 "7\31\10\377\245^\37\377\274s*\377\270o'\377\227U\32\3777\31\10\3777\31"
3811 "\10\3777\31\10\3777\31\10\377%\20\5_\0\0\0\33\0\0\0\16\0\0\0\5\0\0\0"
3812 "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3813 "\0\0\0\0\0\0\0\0\0\0\3\0\0\0\12""7\31\10\377\311\234b\377\364\341\313"
3814 "\377\364\340\311\377\357\333\276\377\354\325\267\377\353\322\264\377"
3815 "\352\322\263\377\353\317\260\377\351\316\256\377\350\314\253\377\347"
3816 "\314\250\377\350\307\241\377\346\306\241\377\346\306\241\377\346\306"
3817 "\241\377\346\306\241\377\346\306\241\377\350\307\241\377\350\307\241"
3818 "\377\346\306\241\377\345\305\240\377\345\305\240\377\343\302\232\377"
3819 "\340\300\233\377\340\275\223\377\337\272\222\377\337\272\216\377\335"
3820 "\263\206\377\325\254|\377\242a\33\3777\31\10\377\0\0\0""1\0\0\0\32\0"
3821 "\0\0\12\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3822 "\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\20""7\31\10\377\365\346\320"
3823 "\377\352\323\257\377\352\317\257\377\343\302\232\377\332\270\213\377"
3824 "\332\266\207\377\330\260\201\377\326\256\177\377\323\253|\377\321\251"
3825 "t\377\317\245n\377\314\243m\377\312\237g\377\312\237g\377\312\237g\377"
3826 "\312\237g\377\312\237g\377\312\237g\377\312\237g\377\310\236g\377\306"
3827 "\233c\377\302\230a\377\302\223[\377\277\220R\377\274\210K\377\275\204"
3828 "@\377\272~=\377\263v4\377\247j\"\377\215S\24\3777\31\10\377\0\0\0E\0"
3829 "\0\0&\0\0\0\17\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3830 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\23""7\31\10\377\365"
3831 "\344\316\377\351\316\256\377\347\315\250\377\337\275\220\377\330\261"
3832 "\203\377\325\255~\377\322\252{\377\322\246w\377\320\247q\377\315\243"
3833 "l\377\310\237h\377\305\233d\377\304\231a\377\304\231a\377\304\231a\377"
3834 "\305\232b\377\305\232b\377\305\232b\377\305\232b\377\304\231a\377\302"
3835 "\230]\377\301\224Z\377\277\220T\377\276\216O\377\274\207I\377\272\202"
3836 "\77\377\272~=\377\261t2\377\247j\"\377\213R\24\3777\31\10\377\0\0\0Q"
3837 "\0\0\0.\0\0\0\23\0\0\0\5\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3838 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\24""7\31\10\377\365"
3839 "\346\320\377\353\317\260\377\351\316\256\377\340\277\227\377\333\264"
3840 "\206\377\330\260\201\377\327\257\200\377\322\254{\377\322\246w\377\320"
3841 "\246o\377\314\243m\377\265\216\\\377\240~P\377\232yM\377\232yM\377\262"
3842 "\214Y\377\307\234d\377\307\234d\377\307\234d\377\305\232b\377\302\227"
3843 "_\377\302\223[\377\277\220T\377\276\216O\377\274\204A\377\272\202\77"
3844 "\377\265|8\377\257s,\377\243f\36\377\207P\24\3777\31\10\377\0\0\0W\0"
3845 "\0\0""2\0\0\0\25\0\0\0\5\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3846 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365"
3847 "\344\316\377\352\317\257\377\350\315\251\377\337\274\222\377\325\255"
3848 "~\377\322\253}\377\322\252{\377\320\253u\377\320\246o\377\315\243l\377"
3849 "\263\216]\377\224tJ\377w^<\377\40\31\20\377\0\0\0\377\40\31\20\377y`"
3850 ">\377\310\237h\377\312\237g\377\307\235f\377\305\233d\377\304\231a\377"
3851 "\302\230]\377\277\221V\377\276\216O\377\276\206E\377\274\203\77\377\266"
3852 "|7\377\252l#\377\215U\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0"
3853 "\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3854 "\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365\344\316\377\351\316"
3855 "\256\377\350\316\251\377\341\274\224\377\332\264\207\377\330\262\201"
3856 "\377\327\257\200\377\322\252{\377\320\250s\377\317\245n\377\222tM\377"
3857 "z`>\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377y`\77\377\312"
3858 "\237g\377\305\233d\377\305\232b\377\302\227_\377\301\224Z\377\276\217"
3859 "Q\377\274\207I\377\272\201=\377\267~:\377\263y4\377\246i!\377\213R\24"
3860 "\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0"
3861 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5"
3862 "\0\0\0\25""7\31\10\377\364\341\313\377\350\315\251\377\345\311\244\377"
3863 "\335\272\220\377\325\255~\377\322\252{\377\322\252{\377\322\245u\377"
3864 "\321\247p\377\314\243m\377\225uL\377\40\32\20\377\0\0\0\377\0\0\0\377"
3865 "\0\0\0\377\0\0\0\377\0\0\0\377!\32\20\377\327\267\216\377\310\236g\377"
3866 "\306\233c\377\304\231a\377\302\227_\377\277\221V\377\275\214L\377\274"
3867 "\210E\377\273\202>\377\266|7\377\251k\"\377\215S\24\3777\31\10\377\0"
3868 "\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3869 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10"
3870 "\377\365\344\316\377\351\315\254\377\347\313\246\377\337\274\222\377"
3871 "\330\260\201\377\326\256\177\377\322\253}\377\322\252{\377\321\245r\377"
3872 "\315\243l\377\226wN\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0"
3873 "\377\0\0\0\377\0\0\0\377\341\313\255\377\307\235f\377\304\231a\377\302"
3874 "\227_\377\300\223Y\377\276\217Q\377\275\214L\377\274\205C\377\272~=\377"
3875 "\263x2\377\247j\"\377\213R\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25"
3876 "\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3877 "\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\364\341\313\377\350"
3878 "\314\247\377\345\312\244\377\334\271\217\377\326\256\177\377\323\253"
3879 "|\377\322\252{\377\322\245u\377\317\245n\377\312\241k\377\225uL\377\40"
3880 "\31\20\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\40\31\17"
3881 "\377\336\306\247\377\302\230a\377\301\222V\377\277\220T\377\275\215N"
3882 "\377\274\207I\377\272\202\77\377\265}:\377\265x6\377\255r,\377\244f\35"
3883 "\377\207P\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1"
3884 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3885 "\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365\344\316\377\351\315\254\377\347"
3886 "\313\246\377\335\272\220\377\325\255~\377\322\253y\377\321\250r\377\317"
3887 "\245n\377\312\241k\377\310\237h\377\305\232b\377u\\8\377\0\0\0\377\0"
3888 "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377u[7\377\335\307\247\377\302\223"
3889 "[\377\301\222V\377\277\220R\377\276\216O\377\274\210K\377\274\203\77"
3890 "\377\267\177<\377\266|7\377\260u/\377\244h!\377\211Q\24\3777\31\10\377"
3891 "\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3892 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10"
3893 "\377\365\346\320\377\352\317\257\377\351\316\252\377\341\274\224\377"
3894 "\333\264\206\377\332\263\205\377\332\263\205\377\326\256\177\377\322"
3895 "\253y\377\320\250s\377\317\245n\377\314\243m\377z`>\377!\32\20\377\0"
3896 "\0\0\377\40\32\21\377\222~c\377\343\317\263\377\324\263\210\377\306\233"
3897 "c\377\302\230]\377\301\224Z\377\277\220T\377\275\214L\377\273\204D\377"
3898 "\267\177<\377\266z9\377\261v0\377\244h!\377\213R\24\3777\31\10\377\0"
3899 "\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3900 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10"
3901 "\377\364\341\313\377\351\316\252\377\345\311\244\377\332\270\213\377"
3902 "\322\254w\377\322\245u\377\321\250r\377\315\244n\377\312\241k\377\310"
3903 "\236g\377\304\231a\377\302\230]\377\245}M\377\0\0\0\377\0\0\0\377\0\0"
3904 "\0\377\331\277\236\377\312\243q\377\304\231a\377\302\230a\377\302\223"
3905 "[\377\277\221V\377\277\220T\377\275\214L\377\274\210E\377\272\202\77"
3906 "\377\267}8\377\263x2\377\255o&\377\211Q\24\3777\31\10\377\0\0\0X\0\0"
3907 "\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3908 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365"
3909 "\344\316\377\351\316\252\377\347\313\246\377\334\271\217\377\326\256"
3910 "\177\377\323\253|\377\322\252{\377\322\245u\377\320\246o\377\312\241"
3911 "k\377\310\236g\377\272\223^\377\225tJ\377\0\0\0\377\0\0\0\377\0\0\0\377"
3912 "\305\263\233\377\304\231a\377\304\231a\377\302\230a\377\301\222V\377"
3913 "\277\221V\377\276\216O\377\274\207I\377\274\203\77\377\267~:\377\265"
3914 "y8\377\255v.\377\257r*\377\207P\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0"
3915 "\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3916 "\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365\346\320\377"
3917 "\352\317\257\377\351\316\252\377\341\275\226\377\333\264\206\377\330"
3918 "\260\201\377\326\256\177\377\322\254{\377\320\250s\377\315\243l\377\312"
3919 "\240i\377\265\217]\377\203fA\377\0\0\0\377\0\0\0\377\0\0\0\377\217uT"
3920 "\377\336\306\247\377\304\231a\377\302\230]\377\301\222V\377\277\220T"
3921 "\377\275\215N\377\274\211G\377\274\203\77\377\267~:\377\265y8\377\257"
3922 "s,\377\275\202B\377\207P\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0"
3923 "\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3924 "\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\364\341\313\377\347"
3925 "\314\250\377\346\306\241\377\333\270\216\377\323\253|\377\322\253y\377"
3926 "\321\247v\377\320\246o\377\314\242k\377\312\237g\377\305\232b\377\264"
3927 "\215Y\377lT3\377\0\0\0\377\0\0\0\377\0\0\0\377mU6\377\336\306\247\377"
3928 "\304\231a\377\302\230a\377\302\223[\377\301\222V\377\277\220R\377\274"
3929 "\210K\377\273\204D\377\272~=\377\264{7\377\261v0\377\300\215Q\377\211"
3930 "N\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0"
3931 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"
3932 "\0\5\0\0\0\25""7\31\10\377\364\340\311\377\347\313\246\377\346\306\241"
3933 "\377\334\263\207\377\321\253v\377\321\245r\377\320\246o\377\315\243l"
3934 "\377\310\237h\377\304\231a\377\262\213W\377\254\203N\377\77""0\34\377"
3935 "\0\0\0\377\0\0\0\377\0\0\0\377@2\36\377\322\275\237\377\310\242q\377"
3936 "\302\223[\377\277\221V\377\277\220T\377\275\215N\377\274\211G\377\270"
3937 "\200=\377\265|8\377\265x6\377\257t.\377\300\215Q\377\206L\23\3777\31"
3938 "\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0"
3939 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25"
3940 "7\31\10\377\364\341\313\377\346\312\245\377\346\306\241\377\333\264\206"
3941 "\377\321\253v\377\320\247q\377\317\245n\377\312\241k\377\310\236g\377"
3942 "\304\231a\377\262\207S\377\232uE\377\77""0\34\377\0\0\0\377\0\0\0\377"
3943 "\0\0\0\377\77""0\34\377\211h>\377\332\301\240\377\275\216P\377\275\215"
3944 "N\377\274\210K\377\273\204D\377\272\202\77\377\267~:\377\264{7\377\261"
3945 "w2\377\255q*\377\312\235c\377\207M\24\3777\31\10\377\0\0\0X\0\0\0""3"
3946 "\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3947 "\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\364\341\313"
3948 "\377\350\314\247\377\344\310\243\377\332\270\215\377\323\253|\377\322"
3949 "\246w\377\320\253u\377\320\246o\377\313\242l\377\310\237h\377\267\217"
3950 "[\377\177c\77\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377r"
3951 "Y8\377\323\263\211\377\302\230a\377\301\222V\377\277\221V\377\276\217"
3952 "Q\377\274\210K\377\274\204A\377\265}:\377\265|8\377\261v0\377\314\237"
3953 "i\377\211Q\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1"
3954 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3955 "\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365\344\316\377\350\315\251\377\345"
3956 "\311\244\377\334\271\217\377\325\255~\377\322\252{\377\322\253y\377\321"
3957 "\247p\377\317\245n\377\312\241k\377\310\237h\377\305\232b\377\305\232"
3958 "b\377\305\232b\377\305\232b\377\305\232b\377\305\232b\377\305\232b\377"
3959 "\305\232b\377\304\231a\377\302\223[\377\277\221V\377\277\220R\377\274"
3960 "\207I\377\274\203\77\377\267~:\377\270\177;\377\274\202=\377\316\241"
3961 "k\377\211N\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1"
3962 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
3963 "\0\1\0\0\0\5\0\0\0\25""7\31\10\377\364\341\313\377\350\313\245\377\345"
3964 "\311\244\377\332\270\213\377\322\252{\377\322\245u\377\321\247p\377\315"
3965 "\244n\377\312\237g\377\307\234d\377\304\231a\377\301\227\\\377\300\223"
3966 "Y\377\300\222W\377\300\222W\377\300\222W\377\300\222W\377\300\222W\377"
3967 "\300\222W\377\277\221V\377\277\220R\377\276\216O\377\274\211G\377\273"
3968 "\204D\377\271\201>\377\265|8\377\270\177;\377\274\205E\377\315\240j\377"
3969 "\207P\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0"
3970 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1"
3971 "\0\0\0\5\0\0\0\25""7\31\10\377\364\340\311\377\346\311\243\377\345\305"
3972 "\240\377\331\270\210\377\323\246v\377\320\247q\377\317\245n\377\313\242"
3973 "l\377\312\237g\377\306\233c\377\305\232b\377\304\231a\377\302\230]\377"
3974 "\302\230a\377\302\230a\377\304\231a\377\304\231a\377\305\232b\377\305"
3975 "\232b\377\304\231a\377\301\224Z\377\300\223Y\377\277\220T\377\274\214"
3976 "M\377\274\211G\377\276\212M\377\304\231a\377\276\213O\377\307\235`\377"
3977 "\211N\24\3777\31\10\377\0\0\0W\0\0\0""3\0\0\0\25\0\0\0\5\0\0\0\1\0\0"
3978 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1"
3979 "\0\0\0\5\0\0\0\24""7\31\10\377\364\340\311\377\346\310\241\377\341\303"
3980 "\234\377\332\263\205\377\321\245r\377\317\245n\377\315\243l\377\310\237"
3981 "h\377\305\233d\377\302\231_\377\302\223[\377\300\222W\377\277\221V\377"
3982 "\277\221V\377\300\222W\377\302\223[\377\301\227\\\377\305\232b\377\310"
3983 "\236g\377\315\243l\377\315\243l\377\316\241k\377\316\241k\377\322\253"
3984 "y\377\322\252w\377\321\245r\377\324\247s\377\277\212L\377\261s0\377\207"
3985 "M\24\3777\31\10\377\0\0\0T\0\0\0""0\0\0\0\24\0\0\0\5\0\0\0\1\0\0\0\0"
3986 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"
3987 "\0\5\0\0\0\22""3\27\7\301\262u-\377\307\235`\377\304\232]\377\275\214"
3988 "L\377\272~=\377\270~9\377\266z9\377\265x6\377\263u2\377\257w.\377\255"
3989 "r,\377\254t+\377\252r)\377\252r)\377\252r)\377\256q)\377\256q)\377\256"
3990 "q)\377\256q)\377\252r)\377\251m&\377\252l#\377\245i\"\377\243g\40\377"
3991 "\242e\35\377\236a\31\377\233_\30\377\231]\26\377\222V\25\377X0\15\377"
3992 "&\21\5\264\0\0\0K\0\0\0*\0\0\0\21\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0"
3993 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\16"
3994 "+\23\6q1\26\7\3077\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10"
3995 "\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\377"
3996 "7\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31"
3997 "\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10"
3998 "\3777\31\10\3777\31\10\3777\31\10\3777\31\10\377&\21\5\264\14\5\1e\0"
3999 "\0\0;\0\0\0\40\0\0\0\14\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
4000 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\11\0\0\0\30"
4001 "\0\0\0,\0\0\0A\0\0\0O\0\0\0U\0\0\0W\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0"
4002 "X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0"
4003 "\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0W\0\0\0S\0"
4004 "\0\0K\0\0\0;\0\0\0'\0\0\0\24\0\0\0\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0"
4005 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"
4006 "\0\4\0\0\0\15\0\0\0\30\0\0\0$\0\0\0,\0\0\0""0\0\0\0""3\0\0\0""3\0\0\0"
4007 "3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0"
4008 "\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3"
4009 "\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""2\0\0\0""0\0\0\0"
4010 "*\0\0\0\40\0\0\0\24\0\0\0\11\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0"
4011 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
4012 "\0\2\0\0\0\4\0\0\0\11\0\0\0\16\0\0\0\22\0\0\0\24\0\0\0\25\0\0\0\25\0"
4013 "\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25"
4014 "\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0"
4015 "\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\24\0"
4016 "\0\0\21\0\0\0\14\0\0\0\7\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
4017 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
4018 "\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\5\0\0"
4019 "\0\5\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6"
4020 "\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0"
4021 "\0\6\0\0\0\6\0\0\0\6\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\4\0\0\0\3\0\0\0\2"
4022 "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
4023 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
4024 "\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0"
4025 "\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1"
4026 "\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0"
4027 "\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
4028 "\0\0\0\0\0\0\0\0\0\0\0\0"};
4029
4030
diff --git a/meta-gnome/packages/gnome/libgnomeui/no-pixbuf-csource.patch b/meta-gnome/packages/gnome/libgnomeui/no-pixbuf-csource.patch
new file mode 100644
index 0000000000..e0765bae18
--- /dev/null
+++ b/meta-gnome/packages/gnome/libgnomeui/no-pixbuf-csource.patch
@@ -0,0 +1,11 @@
1--- libgnomeui-2.6.1.1/configure.in.old 2004-08-04 00:28:43.582266664 +0100
2+++ libgnomeui-2.6.1.1/configure.in 2004-08-04 00:29:27.496590672 +0100
3@@ -235,7 +235,7 @@
4
5 dnl This is installed from GTK+ 2.0's gdk-pixbuf
6 AC_PATH_PROG(GDK_PIXBUF_CSOURCE, gdk-pixbuf-csource)
7-test -z "$GDK_PIXBUF_CSOURCE" && AC_MSG_ERROR([
8+test -z "$GDK_PIXBUF_CSOURCE" && AC_MSG_WARN([
9 *** You need the gdk-pixbuf-csource tool which is installed
10 *** from GTK+ 2.0's gdk-pixbuf.
11 ***
diff --git a/meta-gnome/packages/gnome/libgnomeui_2.24.0.bb b/meta-gnome/packages/gnome/libgnomeui_2.24.0.bb
new file mode 100644
index 0000000000..d216942140
--- /dev/null
+++ b/meta-gnome/packages/gnome/libgnomeui_2.24.0.bb
@@ -0,0 +1,24 @@
1DESCRIPTION = "GNOME User Interface Library"
2LICENSE = "GPL"
3SECTION = "x11/gnome/libs"
4DEPENDS = "libgnome libgnomecanvas gnome-keyring libbonoboui"
5
6inherit gnome
7
8FILES_${PN} += "${libdir}/gtk-2.0/*/filesystems/lib*.so \
9 ${libdir}/libglade/*/lib*.so \
10 ${datadir}/pixmaps/gnome-about-logo.png"
11FILES_${PN}-dev += "${libdir}/gtk-2.0/*/filesystems/*.la ${libdir}/gtk-2.0/*/filesystems/*.a ${libdir}/libglade/*/*.la ${libdir}/libglade/*/*.a"
12FILES_${PN}-dbg += "${libdir}/gtk-2.0/*/filesystems/.debug/ ${libdir}/libglade/*/.debug/"
13
14SRC_URI += "file://gnome-stock-pixbufs.h file://no-pixbuf-csource.patch;patch=1"
15
16EXTRA_OECONF = "--disable-gtk-doc"
17
18do_configure_prepend() {
19 install -m 0644 ${WORKDIR}/gnome-stock-pixbufs.h ${S}/libgnomeui/pixmaps/gnome-stock-pixbufs.h
20}
21
22do_stage() {
23 autotools_stage_all
24}
diff --git a/meta-gnome/packages/gnome/orbit2-native_2.14.12.bb b/meta-gnome/packages/gnome/orbit2-native_2.14.12.bb
new file mode 100644
index 0000000000..009974ade3
--- /dev/null
+++ b/meta-gnome/packages/gnome/orbit2-native_2.14.12.bb
@@ -0,0 +1,23 @@
1DESCRIPTION = "CORBA ORB"
2PR = "r0"
3LICENSE = "LGPL GPL"
4SECTION = "x11/gnome/libs"
5SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/ORBit2/2.14/ORBit2-${PV}.tar.bz2 \
6 file://configure-lossage.patch;patch=1;pnum=1 \
7 file://gtk-doc.m4 \
8 file://gtk-doc.make"
9DEPENDS = "libidl-native popt-native gtk-doc"
10
11S = "${WORKDIR}/ORBit2-${PV}"
12FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/orbit2"
13
14PARALLEL_MAKE = ""
15inherit autotools native pkgconfig
16
17EXTRA_OECONF = "--disable-gtk-doc"
18
19do_configure_prepend() {
20 mkdir -p m4
21 install ${WORKDIR}/gtk-doc.m4 ./m4/
22 install ${WORKDIR}/gtk-doc.make ./
23}
diff --git a/meta-gnome/packages/gnome/orbit2/configure-lossage.patch b/meta-gnome/packages/gnome/orbit2/configure-lossage.patch
new file mode 100644
index 0000000000..7485a0ce0c
--- /dev/null
+++ b/meta-gnome/packages/gnome/orbit2/configure-lossage.patch
@@ -0,0 +1,35 @@
1--- orbit/configure.in~ 2004-05-07 09:31:32.000000000 +0100
2+++ orbit/configure.in 2004-05-08 19:27:35.000000000 +0100
3@@ -193,19 +193,19 @@
4 dnl So many people with broken linking setups asked about this
5 dnl it turned out to be necessary to check for this.
6 dnl
7-dofus_save_libs="$LIBS"
8-LIBS="$ORBIT_LIBS $LIBS"
9-AC_TRY_RUN([ #include <stdio.h>
10- main ()
11- {
12- return 0;
13- } ],,
14- AC_MSG_ERROR([
15-Linking is badly borked on your system. Please ensure your library path is correct
16-Check config.log for details - check near the end of the log above 'failed program was'
17-Alternatively ensure that your /etc/ld.so.conf (and/or LD_LIBRARY_PATH) includes the
18-prefix you're compiling on: '${prefix}' ]))
19-LIBS="$dofus_save_libs"
20+dnl dofus_save_libs="$LIBS"
21+dnl LIBS="$ORBIT_LIBS $LIBS"
22+dnl AC_TRY_RUN([ #include <stdio.h>
23+dnl main ()
24+dnl {
25+dnl return 0;
26+dnl } ],,
27+dnl AC_MSG_ERROR([
28+dnl Linking is badly borked on your system. Please ensure your library path is correct
29+dnl Check config.log for details - check near the end of the log above 'failed program was'
30+dnl Alternatively ensure that your /etc/ld.so.conf (and/or LD_LIBRARY_PATH) includes the
31+dnl prefix you're compiling on: '${prefix}' ]))
32+dnl LIBS="$dofus_save_libs"
33
34 orig_CPPFLAGS=$CPPFLAGS
35 CPPFLAGS="$CPPFLAGS $ORBIT_CFLAGS"
diff --git a/meta-gnome/packages/gnome/orbit2/pkgconfig-fix.patch b/meta-gnome/packages/gnome/orbit2/pkgconfig-fix.patch
new file mode 100644
index 0000000000..f629e506dd
--- /dev/null
+++ b/meta-gnome/packages/gnome/orbit2/pkgconfig-fix.patch
@@ -0,0 +1,12 @@
1diff -urN ORBit2-2.14.12.orig/ORBit-2.0.pc.in ORBit2-2.14.12/ORBit-2.0.pc.in
2--- ORBit2-2.14.12.orig/ORBit-2.0.pc.in 2008-01-29 13:45:22.000000000 +0100
3+++ ORBit2-2.14.12/ORBit-2.0.pc.in 2008-09-23 20:13:07.000000000 +0200
4@@ -2,7 +2,7 @@
5 exec_prefix=@exec_prefix@
6 libdir=@libdir@
7 includedir=@includedir@
8-orbit_idl=@bindir@/orbit-idl-2@EXEEXT@
9+orbit_idl=@exec_prefix@/bin/orbit-idl-2@EXEEXT@
10
11
12 Name: ORBit-2.0
diff --git a/meta-gnome/packages/gnome/orbit2_2.14.16.bb b/meta-gnome/packages/gnome/orbit2_2.14.16.bb
new file mode 100644
index 0000000000..5f6e6f6105
--- /dev/null
+++ b/meta-gnome/packages/gnome/orbit2_2.14.16.bb
@@ -0,0 +1,46 @@
1LICENSE = "GPL"
2DESCRIPTION = "CORBA ORB"
3SECTION = "x11/gnome/libs"
4SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/ORBit2/2.14/ORBit2-${PV}.tar.bz2 \
5 file://configure-lossage.patch;patch=1;pnum=1 \
6 file://pkgconfig-fix.patch;patch=1 \
7 file://gtk-doc.m4 \
8 file://gtk-doc.make"
9DEPENDS = "libidl popt orbit2-native gtk-doc"
10PARALLEL_MAKE = ""
11
12FILES_${PN} += "${libdir}/orbit-2.0/*.so"
13FILES_${PN}-dev += "${libdir}/orbit-2.0/*.a ${libdir}/orbit-2.0/*.la"
14FILES_${PN}-dbg += "${libdir}/orbit-2.0/.debug"
15
16S = "${WORKDIR}/ORBit2-${PV}"
17
18LEAD_SONAME = "libORBit-2.so"
19
20inherit autotools pkgconfig
21
22EXTRA_OECONF = "--disable-gtk-doc"
23EXTRA_OEMAKE = "IDL_COMPILER='${STAGING_BINDIR_NATIVE}/orbit-idl-2'"
24
25do_configure_prepend() {
26 mkdir -p m4
27 install ${WORKDIR}/gtk-doc.m4 ./m4/
28 install ${WORKDIR}/gtk-doc.make ./
29}
30
31do_stage() {
32 oe_libinstall -so -C src/orb libORBit-2 ${STAGING_LIBDIR}
33 oe_libinstall -so -C src/services/name libORBitCosNaming-2 ${STAGING_LIBDIR}
34 oe_libinstall -so -C src/services/imodule libORBit-imodule-2 ${STAGING_LIBDIR}
35 install -m 0644 src/services/name/libname-server-2.a ${STAGING_LIBDIR}/
36
37 for dir in orbit orbit/poa orbit/orb-core orbit/util orbit/dynamic; do
38 install -d ${STAGING_INCDIR}/orbit-2.0/$dir
39 ( cd include/$dir; for i in *.h; do install -m 0644 $i ${STAGING_INCDIR}/orbit-2.0/$dir/$i; done )
40 done
41
42 install -d ${STAGING_INCDIR}/orbit-2.0/ORBitservices
43 install -m 0644 src/services/name/CosNaming.h ${STAGING_INCDIR}/orbit-2.0/ORBitservices/
44 install -m 0644 src/services/name/CosNaming_impl.h ${STAGING_INCDIR}/orbit-2.0/ORBitservices/
45 install -m 0644 src/services/imodule/orbit-imodule.h ${STAGING_INCDIR}/orbit-2.0/ORBitservices/
46}
diff --git a/meta-gnome/packages/gthumb/gthumb_2.10.11.bb b/meta-gnome/packages/gthumb/gthumb_2.10.11.bb
new file mode 100644
index 0000000000..1b957e0a8d
--- /dev/null
+++ b/meta-gnome/packages/gthumb/gthumb_2.10.11.bb
@@ -0,0 +1,15 @@
1DESCRIPTION = "gThumb is an image viewer and browser for the GNOME Desktop"
2SECTION = "x11/gnome"
3LICENSE = "GPL"
4DEPENDS = "glib-2.0 gtk+ libbonobo libgnome libgnomeui gnome-vfs libxml2 libglade gnome-doc-utils"
5
6#EXTRA_OECONF = "--disable-scrollkeeper"
7
8inherit gnome pkgconfig
9
10do_stage () {
11 autotools_stage_all
12}
13
14FILES_${PN} += "${datadir}/icons"
15FILES_${PN}-dbg += "${libdir}/gthumb/modules/.debug" \ No newline at end of file