(gtk) #376: Use freedesktop icon spec
|
@ -242,6 +242,7 @@ AC_CONFIG_FILES([Makefile
|
|||
wx/Makefile
|
||||
wx/images/Makefile
|
||||
gtk/Makefile
|
||||
gtk/icons/Makefile
|
||||
po/Makefile.in])
|
||||
|
||||
ac_configure_args="$ac_configure_args --enable-static --disable-shared -q"
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
SUBDIRS = icons
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
-I$(top_srcdir) \
|
||||
-I$(top_srcdir)/third-party/ \
|
||||
|
@ -17,7 +19,6 @@ noinst_HEADERS = \
|
|||
io.h \
|
||||
ipc.h \
|
||||
lock.h \
|
||||
logo.h \
|
||||
makemeta-ui.h \
|
||||
msgwin.h \
|
||||
stats.h \
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
#include "tr_core.h"
|
||||
#include "tr_prefs.h"
|
||||
#include "lock.h"
|
||||
#include "logo.h"
|
||||
|
||||
#define UNUSED G_GNUC_UNUSED
|
||||
|
||||
|
@ -162,7 +161,6 @@ BuiltinIconInfo;
|
|||
|
||||
const BuiltinIconInfo my_builtin_icons [] =
|
||||
{
|
||||
{ tr_icon_logo, "transmission-logo" },
|
||||
{ tr_icon_lock, "transmission-lock" }
|
||||
};
|
||||
|
||||
|
|
|
@ -0,0 +1,84 @@
|
|||
NULL =
|
||||
|
||||
public_icons_themes = \
|
||||
hicolor \
|
||||
$(NULL)
|
||||
|
||||
public_icons = \
|
||||
hicolor_apps_16x16_transmission.png \
|
||||
hicolor_apps_22x22_transmission.png \
|
||||
hicolor_apps_24x24_transmission.png \
|
||||
hicolor_apps_32x32_transmission.png \
|
||||
hicolor_apps_48x48_transmission.png \
|
||||
hicolor_apps_scalable_transmission.svg \
|
||||
$(NULL)
|
||||
|
||||
private_icons = \
|
||||
$(NULL)
|
||||
|
||||
noinst_DATA = \
|
||||
hicolor_apps_16x16_transmission.svg
|
||||
hicolor_apps_22x22_transmission.svg
|
||||
hicolor_apps_32x32_transmission.svg
|
||||
$(NULL)
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(public_icons) \
|
||||
$(private_icons) \
|
||||
$(noinst_DATA) \
|
||||
$(NULL)
|
||||
|
||||
###############################################################################
|
||||
|
||||
gtk_update_icon_cache = gtk-update-icon-cache -f -t
|
||||
|
||||
update-icon-cache:
|
||||
@-if test -z "$(DESTDIR)"; then \
|
||||
echo "Updating Gtk icon cache."; \
|
||||
for theme in $(public_icons_themes); do \
|
||||
$(gtk_update_icon_cache) $(datadir)/icons/$$theme; \
|
||||
done; \
|
||||
else \
|
||||
echo "*** Icon cache not updated. After (un)install, run this:"; \
|
||||
for theme in $(public_icons_themes); do \
|
||||
echo "*** $(gtk_update_icon_cache) $(datadir)/icons/$$theme"; \
|
||||
done; \
|
||||
fi
|
||||
|
||||
install-icons:
|
||||
for icon in $(public_icons); do \
|
||||
THEME=`echo $$icon | cut -d_ -f1`; \
|
||||
CONTEXT=`echo $$icon | cut -d_ -f2`; \
|
||||
SIZE=`echo $$icon | cut -d_ -f3`; \
|
||||
ICONFILE=`echo $$icon | cut -d_ -f4`; \
|
||||
mkdir -p $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \
|
||||
$(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
|
||||
done; \
|
||||
for icon in $(private_icons); do \
|
||||
THEME=`echo $$icon | cut -d_ -f1`; \
|
||||
CONTEXT=`echo $$icon | cut -d_ -f2`; \
|
||||
SIZE=`echo $$icon | cut -d_ -f3`; \
|
||||
ICONFILE=`echo $$icon | cut -d_ -f4`; \
|
||||
mkdir -p $(DESTDIR)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \
|
||||
$(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
|
||||
done
|
||||
|
||||
uninstall-icons:
|
||||
-for icon in $(public_icons); do \
|
||||
THEME=`echo $$icon | cut -d_ -f1`; \
|
||||
CONTEXT=`echo $$icon | cut -d_ -f2`; \
|
||||
SIZE=`echo $$icon | cut -d_ -f3`; \
|
||||
ICONFILE=`echo $$icon | cut -d_ -f4`; \
|
||||
rm -f $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
|
||||
done; \
|
||||
for icon in $(private_icons); do \
|
||||
THEME=`echo $$icon | cut -d_ -f1`; \
|
||||
CONTEXT=`echo $$icon | cut -d_ -f2`; \
|
||||
SIZE=`echo $$icon | cut -d_ -f3`; \
|
||||
ICONFILE=`echo $$icon | cut -d_ -f4`; \
|
||||
rm -f $(DESTDIR)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
|
||||
done
|
||||
|
||||
install-data-local: install-icons update-icon-cache
|
||||
|
||||
uninstall-local: uninstall-icons update-icon-cache
|
After Width: | Height: | Size: 841 B |
|
@ -0,0 +1,424 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg5186"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+0.46pre0"
|
||||
sodipodi:docname="transmission.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.0"
|
||||
inkscape:export-filename="/home/andreas/project/application icons/16x16/transmission.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs5188">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="-50 : 600 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="700 : 600 : 1"
|
||||
inkscape:persp3d-origin="300 : 400 : 1"
|
||||
id="perspective8190" />
|
||||
<linearGradient
|
||||
id="linearGradient5730"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5732"
|
||||
offset="0"
|
||||
style="stop-color:#787b76;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#babcb9;stop-opacity:1"
|
||||
offset="0.74204391"
|
||||
id="stop5734" />
|
||||
<stop
|
||||
id="stop5736"
|
||||
offset="1"
|
||||
style="stop-color:#787b76;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient9795">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop9797" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop9799" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient9783">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop9785" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop9787" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient9775">
|
||||
<stop
|
||||
style="stop-color:#f9f9f9;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop9777" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0.62037037"
|
||||
offset="1"
|
||||
id="stop9779" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5948">
|
||||
<stop
|
||||
style="stop-color:#787b76;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5950" />
|
||||
<stop
|
||||
id="stop5956"
|
||||
offset="0.87125719"
|
||||
style="stop-color:#babcb9;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#787b76;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5952" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5908">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5910" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5912" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5898">
|
||||
<stop
|
||||
style="stop-color:#cc0000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5900" />
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.36509839"
|
||||
style="stop-color:#ef0000;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#aa0000;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5902" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5871">
|
||||
<stop
|
||||
style="stop-color:#f0f2ef;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5873" />
|
||||
<stop
|
||||
style="stop-color:#cdd1c8;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5875" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5843">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5845" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5847" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5835">
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5837" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5839" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5823">
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5825" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5827" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5234">
|
||||
<stop
|
||||
style="stop-color:#babdb6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5236" />
|
||||
<stop
|
||||
id="stop5242"
|
||||
offset="0.23473401"
|
||||
style="stop-color:#eeeeec;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#babdb6;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5238" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5234"
|
||||
id="linearGradient5240"
|
||||
x1="23.738585"
|
||||
y1="4.156569"
|
||||
x2="24.031918"
|
||||
y2="14.751026"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4264603,0,0,0.2701866,-2.2685841,-0.4639143)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5823"
|
||||
id="linearGradient5829"
|
||||
x1="23.732271"
|
||||
y1="30.057167"
|
||||
x2="23.688078"
|
||||
y2="22.632544"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.504449,0,0,0.4956831,19.758703,-6.1176867)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5835"
|
||||
id="linearGradient5841"
|
||||
x1="23.9375"
|
||||
y1="30.616879"
|
||||
x2="23.9375"
|
||||
y2="36.357994"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4949644,0,0,0.4956831,19.912146,-6.1618809)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5843"
|
||||
id="linearGradient5849"
|
||||
x1="20.771132"
|
||||
y1="32.248005"
|
||||
x2="20.563131"
|
||||
y2="23.939499"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4949644,0,0,0.4956831,19.912146,-6.1618809)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5898"
|
||||
id="linearGradient5904"
|
||||
x1="14.8125"
|
||||
y1="5.6244211"
|
||||
x2="14.8125"
|
||||
y2="9"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4154203,0,0,0.4905272,-2.0246155,-1.7395606)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5908"
|
||||
id="linearGradient5914"
|
||||
x1="24.040522"
|
||||
y1="5.0690055"
|
||||
x2="24.040522"
|
||||
y2="10.0086"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4402542,0,0,0.1815806,13.297492,2.4725425)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5871"
|
||||
id="linearGradient5928"
|
||||
x1="13.625"
|
||||
y1="33.125"
|
||||
x2="14.125"
|
||||
y2="24"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4726296,0,0,0.4398164,20.450225,-4.1981822)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5948"
|
||||
id="linearGradient5954"
|
||||
x1="10.1875"
|
||||
y1="20.25"
|
||||
x2="10.1875"
|
||||
y2="42.5"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4893375,0,0,0.4852669,17.344596,-21.801552)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9775"
|
||||
id="linearGradient9781"
|
||||
x1="24.71875"
|
||||
y1="35.958694"
|
||||
x2="23.936657"
|
||||
y2="17.070877"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4602758,0,0,0.4666918,20.851849,-4.8399781)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9783"
|
||||
id="linearGradient9789"
|
||||
x1="18.3125"
|
||||
y1="20.743757"
|
||||
x2="18.3125"
|
||||
y2="21.814325"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.462186,0,0,0.4956831,20.653068,-5.0681309)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9795"
|
||||
id="linearGradient9801"
|
||||
x1="30.4375"
|
||||
y1="31.82852"
|
||||
x2="29.742416"
|
||||
y2="27.45352"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5730"
|
||||
id="linearGradient5728"
|
||||
x1="6.8125"
|
||||
y1="-0.62499905"
|
||||
x2="6.875"
|
||||
y2="14.75"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.7759005,0,3.4875488)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="32"
|
||||
inkscape:cx="16.315678"
|
||||
inkscape:cy="3.2905558"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1091"
|
||||
inkscape:window-height="777"
|
||||
inkscape:window-x="911"
|
||||
inkscape:window-y="206"
|
||||
width="16px"
|
||||
height="16px"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5195" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata5191">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
<dc:date></dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier></dc:identifier>
|
||||
<dc:source></dc:source>
|
||||
<dc:relation></dc:relation>
|
||||
<dc:language></dc:language>
|
||||
<dc:subject>
|
||||
<rdf:Bag />
|
||||
</dc:subject>
|
||||
<dc:coverage></dc:coverage>
|
||||
<dc:description></dc:description>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<cc:license
|
||||
rdf:resource="" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:url(#linearGradient5728);fill-opacity:1;stroke:#555753;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.1084892,5.4757938 L 14.016511,5.4757938 C 14.318989,5.4757938 14.5625,5.719305 14.5625,6.021783 L 15.578966,15 C 15.578966,15.302478 15.335455,15.545989 15.032977,15.545989 L 1.0920232,15.545989 C 0.7895452,15.545989 0.546034,15.302478 0.546034,15 L 1.5625,6.021783 C 1.5625,5.719305 1.8060112,5.4757938 2.1084892,5.4757938 z"
|
||||
id="rect5137"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="fill:#d9ded7;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 4.1084892,6.4373422 L 11.954011,6.4373422 C 12.256489,6.4373422 12.5,6.6808533 12.5,6.9833313 L 13.604854,13 C 13.604854,13.302478 13.361343,13.545989 13.058865,13.545989 L 3.047829,13.545989 C 2.745351,13.545989 2.5018398,13.302478 2.5018398,13 L 3.5625,6.9833313 C 3.5625,6.6808533 3.8060112,6.4373422 4.1084892,6.4373422 z"
|
||||
id="rect5718"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="fill:#555753;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;fill-opacity:1"
|
||||
d="M 4.5312499,9.5625 L 7.7565788,12.5625 L 11.46875,9.5 L 9.5197367,9.5 L 9.5197367,2.125 L 6.5065789,2.125 L 6.5065789,9.5625 L 4.5312499,9.5625 z"
|
||||
id="path5716"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient5904);fill-opacity:1;stroke:#930000;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5224"
|
||||
width="12.925059"
|
||||
height="2.9730432"
|
||||
x="1.5001314"
|
||||
y="0.47445747"
|
||||
rx="1.654336"
|
||||
ry="0.8146466" />
|
||||
<path
|
||||
style="opacity:0.27999998;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 1.997887,1.46875 L 13.939614,1.46875"
|
||||
id="path5110" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient5240);fill-opacity:1;stroke:#666864;stroke-width:0.99999976000000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5226"
|
||||
width="3.0263538"
|
||||
height="7.0167594"
|
||||
x="6.466898"
|
||||
y="0.50994921"
|
||||
rx="0.54598916"
|
||||
ry="0.54598916" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,417 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="22"
|
||||
height="22"
|
||||
id="svg5186"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
sodipodi:docname="transmission.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.0"
|
||||
inkscape:export-filename="/home/andreas/project/application icons/22x22/transmission.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs5188">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient9795">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop9797" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop9799" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient9783">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop9785" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop9787" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient9775">
|
||||
<stop
|
||||
style="stop-color:#f9f9f9;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop9777" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0.62037037"
|
||||
offset="1"
|
||||
id="stop9779" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5948">
|
||||
<stop
|
||||
style="stop-color:#787b76;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5950" />
|
||||
<stop
|
||||
id="stop5956"
|
||||
offset="0.87125719"
|
||||
style="stop-color:#babcb9;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#787b76;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5952" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5908">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5910" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5912" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5898">
|
||||
<stop
|
||||
style="stop-color:#cc0000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5900" />
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.36509839"
|
||||
style="stop-color:#ef0000;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#aa0000;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5902" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5871">
|
||||
<stop
|
||||
style="stop-color:#f0f2ef;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5873" />
|
||||
<stop
|
||||
style="stop-color:#cdd1c8;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5875" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5843">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5845" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5847" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5835">
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5837" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5839" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5823">
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5825" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5827" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5234">
|
||||
<stop
|
||||
style="stop-color:#babdb6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5236" />
|
||||
<stop
|
||||
id="stop5242"
|
||||
offset="0.13299191"
|
||||
style="stop-color:#eeeeec;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#babdb6;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5238" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5234"
|
||||
id="linearGradient5240"
|
||||
x1="23.738585"
|
||||
y1="4.156569"
|
||||
x2="23.738585"
|
||||
y2="19.46567"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4264603,0,0,0.4242102,0.7314163,-1.0190786)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5823"
|
||||
id="linearGradient5829"
|
||||
x1="23.732271"
|
||||
y1="30.057167"
|
||||
x2="23.688078"
|
||||
y2="22.632544"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.504449,0,0,0.4956831,-1.1787972,-2.8676867)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5835"
|
||||
id="linearGradient5841"
|
||||
x1="23.9375"
|
||||
y1="30.616879"
|
||||
x2="23.9375"
|
||||
y2="36.357994"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4949644,0,0,0.4956831,-1.0253544,-2.9118809)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5843"
|
||||
id="linearGradient5849"
|
||||
x1="20.771132"
|
||||
y1="32.248005"
|
||||
x2="20.563131"
|
||||
y2="23.939499"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4949644,0,0,0.4956831,-1.0253544,-2.9118809)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5898"
|
||||
id="linearGradient5904"
|
||||
x1="14.8125"
|
||||
y1="5.6244211"
|
||||
x2="14.8125"
|
||||
y2="9"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4821806,0,0,0.4956831,-0.6075269,-1.7628323)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5908"
|
||||
id="linearGradient5914"
|
||||
x1="24.040522"
|
||||
y1="5.0690055"
|
||||
x2="24.040522"
|
||||
y2="10.0086"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4402542,0,0,0.1815806,0.4224918,0.4725425)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5871"
|
||||
id="linearGradient5928"
|
||||
x1="13.625"
|
||||
y1="33.125"
|
||||
x2="14.125"
|
||||
y2="24"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4726296,0,0,0.4398164,-0.4872749,-0.9481822)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5948"
|
||||
id="linearGradient5954"
|
||||
x1="10.1875"
|
||||
y1="20.25"
|
||||
x2="10.1875"
|
||||
y2="42.5"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4893375,0,0,0.4852669,-0.7804042,-2.4265523)" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter9771"
|
||||
x="-0.029765811"
|
||||
width="1.0595316"
|
||||
y="-0.13995509"
|
||||
height="1.2799102">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.5196773"
|
||||
id="feGaussianBlur9773" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9775"
|
||||
id="linearGradient9781"
|
||||
x1="24.71875"
|
||||
y1="35.958694"
|
||||
x2="23.936657"
|
||||
y2="17.070877"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4602758,0,0,0.4666918,-8.5651353e-2,-1.5899781)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9783"
|
||||
id="linearGradient9789"
|
||||
x1="18.3125"
|
||||
y1="20.743757"
|
||||
x2="18.3125"
|
||||
y2="21.814325"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.462186,0,0,0.4956831,-0.2844319,-1.8181309)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9795"
|
||||
id="linearGradient9801"
|
||||
x1="30.4375"
|
||||
y1="31.82852"
|
||||
x2="29.742416"
|
||||
y2="27.45352"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="21.961954"
|
||||
inkscape:cy="12.8668"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1091"
|
||||
inkscape:window-height="777"
|
||||
inkscape:window-x="404"
|
||||
inkscape:window-y="129"
|
||||
width="22px"
|
||||
height="22px">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5195" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata5191">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<rect
|
||||
style="opacity:0.28240739;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter9771)"
|
||||
id="rect9761"
|
||||
width="41.901279"
|
||||
height="8.9116125"
|
||||
x="3"
|
||||
y="39"
|
||||
rx="4.5740333"
|
||||
ry="4.0615606"
|
||||
transform="matrix(0.5024224,0,0,0.5658163,-1.0477284,-5.6470761)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5954);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 4.1129711,5.6258452 C 3.5353609,5.6040393 2.958239,6.1004227 2.904919,6.7025312 C 2.4704079,10.238953 1.8262776,14.126823 1.4980737,17.661494 L 1.4980737,19.147624 C 1.5145934,19.914099 2.0221194,20.429719 2.5837914,20.527601 L 19.527103,20.527601 C 20.006177,20.515711 20.537589,20.18612 20.521069,19.557068 L 20.521069,17.64633 L 18.99189,7.0058233 C 18.867687,6.3740913 18.323105,5.7029862 17.569753,5.6258452 L 4.1129711,5.6258452 z"
|
||||
id="path5232"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5928);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 4.5234741,16.47937 C 3.9895856,16.425506 3.6120238,16.099518 3.6252779,15.501408 L 4.5234741,8.4672884 C 4.6615189,7.9974169 4.9890595,7.6217927 5.5060975,7.6231525 L 15.868307,7.6231525 C 16.381734,7.6087796 16.895157,7.9399763 17.029591,8.3340039 L 18.1714,15.429527 C 18.198362,16.075662 17.912672,16.449675 17.431574,16.434941 L 4.5234741,16.47937 z"
|
||||
id="path5230"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5841);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5849);stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 9.1059487,8.5623919 L 8.0850846,12.519416 L 6.615659,12.519416 L 10.590841,15.428836 L 15.030054,12.519416 L 13.560628,12.519416 L 12.63257,8.5623919 L 9.1059487,8.5623919 z"
|
||||
id="path5197"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient5904);fill-opacity:1;stroke:#930000;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5224"
|
||||
width="15.002185"
|
||||
height="3.0042932"
|
||||
x="3.4836648"
|
||||
y="0.47445756"
|
||||
rx="2.341836"
|
||||
ry="1.5021466" />
|
||||
<rect
|
||||
style="opacity:0.58333333;fill:none;fill-opacity:1;stroke:url(#linearGradient5914);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5896"
|
||||
width="12.802713"
|
||||
height="0.71535349"
|
||||
x="4.6050744"
|
||||
y="1.4837651"
|
||||
rx="1.8339341"
|
||||
ry="1.2783499" />
|
||||
<path
|
||||
style="opacity:0.24537036;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient9781);stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 4.7900349,6.6108277 C 4.2750723,6.5912173 3.760546,7.0376252 3.7130079,7.5791158 L 2.4314823,16.948327 L 2.4587488,18.462129 C 2.4734775,19.151439 2.9259565,19.445259 3.4267097,19.533286 L 18.545987,19.533286 C 18.973099,19.522594 19.526992,19.396071 19.512264,18.830352 L 19.512264,16.975602 L 18.068823,7.8382357 C 17.958091,7.2701051 17.472573,6.6802014 16.800929,6.6108277 L 4.7900349,6.6108277 z"
|
||||
id="path5881"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
<path
|
||||
style="opacity:0.20833333;fill:url(#linearGradient9789);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 4.4345593,13.030436 L 5.2839875,9.0868971 L 16.390387,9.1156558 L 17.21298,13.569932 L 16.669091,9.0718432 C 16.566962,8.5753003 16.32185,8.0955307 15.872479,8.1079661 L 5.7412175,8.0860593 C 5.0801089,8.0641536 4.9500748,8.5241859 4.7996146,9.0718432 L 4.4345593,13.030436 z"
|
||||
id="path5926"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient5240);fill-opacity:1;stroke:#888a85;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5226"
|
||||
width="3.0263538"
|
||||
height="11.01676"
|
||||
x="9.466898"
|
||||
y="0.50994933"
|
||||
rx="0.54598916"
|
||||
ry="0.54598916" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient5829);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5244"
|
||||
width="4.1020422"
|
||||
height="3.9869475"
|
||||
x="8.8979578"
|
||||
y="8.0441942"
|
||||
rx="1.0763195"
|
||||
ry="1.0763192" />
|
||||
<path
|
||||
style="opacity:0.43518521;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999994px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 3.3326918,17.464686 L 18.644873,17.464686"
|
||||
id="path5879"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999994px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 5.4795762,11.492033 L 7.0326686,11.492033"
|
||||
id="path9791"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999994px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 14.466935,11.536497 L 16.020027,11.536497"
|
||||
id="path9803"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 2.0 KiB |
|
@ -0,0 +1,450 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
id="svg5186"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
sodipodi:docname="transmission.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/andreas/project/application icons/32x32/transmission.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs5188">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient9795">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop9797" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop9799" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient9783">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop9785" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop9787" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient9775">
|
||||
<stop
|
||||
style="stop-color:#f9f9f9;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop9777" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0.62037037"
|
||||
offset="1"
|
||||
id="stop9779" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5948">
|
||||
<stop
|
||||
style="stop-color:#787b76;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5950" />
|
||||
<stop
|
||||
id="stop5956"
|
||||
offset="0.87125719"
|
||||
style="stop-color:#babcb9;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#787b76;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5952" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5908">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5910" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5912" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5898">
|
||||
<stop
|
||||
style="stop-color:#cc0000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5900" />
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.36509839"
|
||||
style="stop-color:#ef0000;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#aa0000;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5902" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5871">
|
||||
<stop
|
||||
style="stop-color:#f0f2ef;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5873" />
|
||||
<stop
|
||||
style="stop-color:#cdd1c8;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5875" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5843">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5845" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5847" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5835">
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5837" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5839" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5823">
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5825" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5827" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5234">
|
||||
<stop
|
||||
style="stop-color:#babdb6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5236" />
|
||||
<stop
|
||||
id="stop5242"
|
||||
offset="0.13299191"
|
||||
style="stop-color:#eeeeec;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#babdb6;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5238" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5234"
|
||||
id="linearGradient5240"
|
||||
x1="23.738585"
|
||||
y1="4.156569"
|
||||
x2="23.738585"
|
||||
y2="19.46567"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.7032627,0,0,0.690446,-0.8454203,-1.9237523)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5823"
|
||||
id="linearGradient5829"
|
||||
x1="23.732271"
|
||||
y1="30.057167"
|
||||
x2="23.688078"
|
||||
y2="22.632544"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.7378506,0,0,0.6657899,-1.7391304,-1.0117597)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5835"
|
||||
id="linearGradient5841"
|
||||
x1="23.9375"
|
||||
y1="30.616879"
|
||||
x2="23.9375"
|
||||
y2="36.357994"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.6908074,0,0,0.6912969,-0.59029,-1.5732658)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5843"
|
||||
id="linearGradient5849"
|
||||
x1="20.771132"
|
||||
y1="32.248005"
|
||||
x2="20.563131"
|
||||
y2="23.939499"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.6908074,0,0,0.6912969,-0.59029,-1.5732658)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5898"
|
||||
id="linearGradient5904"
|
||||
x1="14.8125"
|
||||
y1="5.6244211"
|
||||
x2="14.8125"
|
||||
y2="9"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.6908074,0,0,0.8517136,-0.59029,-3.3579743)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5908"
|
||||
id="linearGradient5914"
|
||||
x1="24.040522"
|
||||
y1="5.0690055"
|
||||
x2="24.040522"
|
||||
y2="10.0086"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.6604128,0,0,0.7361687,0.1404121,-2.4418757)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5871"
|
||||
id="linearGradient5928"
|
||||
x1="13.625"
|
||||
y1="33.125"
|
||||
x2="14.125"
|
||||
y2="24"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.67645,0,0,0.6956862,-0.2885936,-1.923967)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5948"
|
||||
id="linearGradient5954"
|
||||
x1="10.1875"
|
||||
y1="20.25"
|
||||
x2="10.1875"
|
||||
y2="42.5"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.6908074,0,0,0.7030815,-0.59029,-2.2107408)" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter9771"
|
||||
x="-0.029765811"
|
||||
width="1.0595316"
|
||||
y="-0.13995509"
|
||||
height="1.2799102">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.5196773"
|
||||
id="feGaussianBlur9773" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9775"
|
||||
id="linearGradient9781"
|
||||
x1="24.71875"
|
||||
y1="35.958694"
|
||||
x2="23.936657"
|
||||
y2="17.070877"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.6764492,0,0,0.6747393,-0.1582154,-1.2823333)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9783"
|
||||
id="linearGradient9789"
|
||||
x1="18.3125"
|
||||
y1="20.743757"
|
||||
x2="18.3125"
|
||||
y2="21.814325"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.6716258,0,0,0.6912969,-0.2176661,-1.7500427)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9795"
|
||||
id="linearGradient9801"
|
||||
x1="30.4375"
|
||||
y1="31.82852"
|
||||
x2="29.742416"
|
||||
y2="27.45352"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.313708"
|
||||
inkscape:cx="22.355115"
|
||||
inkscape:cy="12.471181"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1091"
|
||||
inkscape:window-height="777"
|
||||
inkscape:window-x="455"
|
||||
inkscape:window-y="151"
|
||||
width="32px"
|
||||
height="32px">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5195" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata5191">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<rect
|
||||
style="opacity:0.28240739;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter9771)"
|
||||
id="rect9761"
|
||||
width="41.901279"
|
||||
height="8.9116125"
|
||||
x="-3.9757652"
|
||||
y="35.926777"
|
||||
rx="3.3266826"
|
||||
ry="3.324327"
|
||||
transform="matrix(0.6908074,0,0,0.6912969,4.2286202,0.5512439)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5954);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.317784,9.4560179 C 5.5023605,9.4244243 4.687626,10.143612 4.6123532,11.015979 C 3.9989453,16.139744 3.0896138,21.274661 2.6262819,26.395887 L 2.6262819,28.549074 C 2.6496031,29.659585 3.3660877,30.406643 4.1590109,30.548462 L 28.078217,30.548462 C 28.754534,30.531234 29.504741,30.053704 29.48142,29.142299 L 29.48142,26.373916 L 27.322647,11.455405 C 27.147307,10.540117 26.378509,9.567784 25.314988,9.4560179 L 6.317784,9.4560179 z"
|
||||
id="path5232"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5928);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:0.99999976px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.8830298,25.642329 C 6.118903,25.557127 5.5785183,25.041492 5.5974882,24.095423 L 6.8830298,12.969096 C 7.080606,12.225871 7.549398,11.63172 8.2894072,11.633873 L 23.120297,11.633873 C 23.855136,11.611138 24.589975,12.135013 24.782381,12.758273 L 26.416593,23.981724 C 26.455182,25.003758 26.046289,25.595359 25.357718,25.572054 L 6.8830298,25.642329 z"
|
||||
id="path5230"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5841);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5849);stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 13.549674,12.555114 L 12.124884,20.518727 L 10.074049,20.518727 L 15.622096,24.43678 L 21.817775,20.518727 L 19.766941,20.518727 L 18.471677,12.555114 L 13.549674,12.555114 z"
|
||||
id="path5197"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient5904);fill-opacity:1;stroke:#930000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5224"
|
||||
width="21.493235"
|
||||
height="5.1621637"
|
||||
x="5.2710524"
|
||||
y="0.48627612"
|
||||
rx="4.3971953"
|
||||
ry="1.3667381" />
|
||||
<rect
|
||||
style="opacity:0.58333333;fill:none;fill-opacity:1;stroke:url(#linearGradient5914);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5896"
|
||||
width="19.204988"
|
||||
height="2.9002066"
|
||||
x="6.4145861"
|
||||
y="1.6578521"
|
||||
rx="1.4803803"
|
||||
ry="0.83640814" />
|
||||
<path
|
||||
style="opacity:0.24537036;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient9781);stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 7.0073872,10.574325 C 6.2505671,10.545974 5.4943882,11.191386 5.4245233,11.97427 L 3.5411159,25.5202 C 3.548497,25.604598 3.5621121,25.693538 3.5811885,25.776528 L 3.5811885,27.708844 C 3.6028346,28.705442 4.2678253,29.356148 5.0037622,29.483419 L 27.223963,29.483419 C 27.851673,29.46796 28.527928,29.059129 28.506284,28.241216 L 28.506284,25.75681 C 28.511209,25.73758 28.522248,25.71663 28.526319,25.697658 L 28.506284,25.559635 L 28.506284,25.421613 L 28.486247,25.421613 L 26.522694,12.348903 C 26.359956,11.527503 25.64641,10.674626 24.659324,10.574325 L 7.0073872,10.574325 z"
|
||||
id="path5881" />
|
||||
<path
|
||||
style="opacity:0.20833333;fill:url(#linearGradient9789);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.6397375,18.958287 L 7.8740842,13.458489 L 24.013351,13.498598 L 25.208705,19.710687 L 24.41835,13.437495 C 24.269941,12.745 23.913758,12.075896 23.260754,12.093239 L 8.5385083,12.062687 C 7.577818,12.032136 7.3888588,12.673713 7.1702178,13.437495 L 6.6397375,18.958287 z"
|
||||
id="path5926"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient5240);fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5226"
|
||||
width="4.9906678"
|
||||
height="17.93092"
|
||||
x="13.559994"
|
||||
y="0.56489933"
|
||||
rx="1.0763195"
|
||||
ry="1.0763191" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient5829);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5244"
|
||||
width="6"
|
||||
height="5.355175"
|
||||
x="13"
|
||||
y="13.644825"
|
||||
rx="1.0763195"
|
||||
ry="1.0763192" />
|
||||
<path
|
||||
style="opacity:0.43518521;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999982px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 8.5849905,27.548041 L 26.408297,27.548041"
|
||||
id="path5879"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<rect
|
||||
style="opacity:0.22685188;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5892"
|
||||
width="3.0286446"
|
||||
height="15.84055"
|
||||
x="14.499754"
|
||||
y="1.6289179"
|
||||
rx="1.0763192"
|
||||
ry="0.63437736" />
|
||||
<path
|
||||
style="opacity:0.62037036;fill:none;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999994px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 13.485231,19.539018 L 18.364058,19.539018"
|
||||
id="path5831"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="opacity:0.42219651;fill:none;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999988px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 13.461318,21.54033 L 18.476365,21.54033"
|
||||
id="path5833"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="opacity:0.62037036;fill:none;fill-rule:evenodd;stroke:#5d5d5c;stroke-width:0.99999988px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 13.453138,20.49548 L 18.527717,20.49548"
|
||||
id="path5958"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999994px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 9.1456221,19.504973 L 11.313228,19.504973"
|
||||
id="path9791"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999994px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 20.838337,19.505962 L 23.005943,19.505962"
|
||||
id="path9803"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.33500001;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path5119"
|
||||
sodipodi:cx="9.8553009"
|
||||
sodipodi:cy="42.188465"
|
||||
sodipodi:rx="1.1932427"
|
||||
sodipodi:ry="1.0827572"
|
||||
d="M 11.048544,42.188465 A 1.1932427,1.0827572 0 1 1 8.6620582,42.188465 A 1.1932427,1.0827572 0 1 1 11.048544,42.188465 z"
|
||||
transform="matrix(0.3931137,0,0,0.4621274,2.6082375,8.0054209)" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 2.9 KiB |
|
@ -0,0 +1,445 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg5186"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45+devel"
|
||||
sodipodi:docname="transmission.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/andreas/project/application icons/48x48/transmission.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs5188">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient9795">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop9797" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop9799" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient9783">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop9785" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop9787" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient9775">
|
||||
<stop
|
||||
style="stop-color:#f9f9f9;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop9777" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0.62037037"
|
||||
offset="1"
|
||||
id="stop9779" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5948">
|
||||
<stop
|
||||
style="stop-color:#787b76;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5950" />
|
||||
<stop
|
||||
id="stop5956"
|
||||
offset="0.87125719"
|
||||
style="stop-color:#babcb9;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#787b76;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5952" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5908">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5910" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5912" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5898">
|
||||
<stop
|
||||
style="stop-color:#cc0000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5900" />
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.36509839"
|
||||
style="stop-color:#ef0000;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#aa0000;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5902" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5871">
|
||||
<stop
|
||||
style="stop-color:#f0f2ef;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5873" />
|
||||
<stop
|
||||
style="stop-color:#cdd1c8;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5875" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5843">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5845" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5847" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5835">
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5837" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5839" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5823">
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5825" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5827" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5234">
|
||||
<stop
|
||||
style="stop-color:#babdb6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5236" />
|
||||
<stop
|
||||
id="stop5242"
|
||||
offset="0.13299191"
|
||||
style="stop-color:#eeeeec;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#babdb6;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5238" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5234"
|
||||
id="linearGradient5240"
|
||||
x1="23.738585"
|
||||
y1="4.156569"
|
||||
x2="23.738585"
|
||||
y2="19.46567"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5823"
|
||||
id="linearGradient5829"
|
||||
x1="23.732271"
|
||||
y1="30.057167"
|
||||
x2="23.688078"
|
||||
y2="22.632544"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5835"
|
||||
id="linearGradient5841"
|
||||
x1="23.9375"
|
||||
y1="30.616879"
|
||||
x2="23.9375"
|
||||
y2="36.357994"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5843"
|
||||
id="linearGradient5849"
|
||||
x1="20.771132"
|
||||
y1="32.248005"
|
||||
x2="20.563131"
|
||||
y2="23.939499"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5898"
|
||||
id="linearGradient5904"
|
||||
x1="14.8125"
|
||||
y1="5.6244211"
|
||||
x2="14.8125"
|
||||
y2="9"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5908"
|
||||
id="linearGradient5914"
|
||||
x1="24.040522"
|
||||
y1="5.0690055"
|
||||
x2="24.040522"
|
||||
y2="10.0086"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5871"
|
||||
id="linearGradient5928"
|
||||
x1="13.625"
|
||||
y1="33.125"
|
||||
x2="14.125"
|
||||
y2="24"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5948"
|
||||
id="linearGradient5954"
|
||||
x1="10.1875"
|
||||
y1="20.25"
|
||||
x2="10.1875"
|
||||
y2="42.5"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter9771"
|
||||
x="-0.02976581"
|
||||
width="1.0595316"
|
||||
y="-0.13995509"
|
||||
height="1.2799102">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.5196773"
|
||||
id="feGaussianBlur9773" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9775"
|
||||
id="linearGradient9781"
|
||||
x1="24.71875"
|
||||
y1="35.958694"
|
||||
x2="23.936657"
|
||||
y2="17.070877"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9783"
|
||||
id="linearGradient9789"
|
||||
x1="18.3125"
|
||||
y1="20.743757"
|
||||
x2="18.3125"
|
||||
y2="21.814325"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9795"
|
||||
id="linearGradient9801"
|
||||
x1="30.4375"
|
||||
y1="31.82852"
|
||||
x2="29.742416"
|
||||
y2="27.45352"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6568542"
|
||||
inkscape:cx="30.372474"
|
||||
inkscape:cy="21.423534"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1091"
|
||||
inkscape:window-height="777"
|
||||
inkscape:window-x="557"
|
||||
inkscape:window-y="164">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5195" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata5191">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<rect
|
||||
style="opacity:0.28240741;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter9771)"
|
||||
id="rect9761"
|
||||
width="41.901279"
|
||||
height="8.9116125"
|
||||
x="3"
|
||||
y="39"
|
||||
rx="2.2980971"
|
||||
ry="2.2980971" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5954);fill-rule:evenodd;stroke:#555753;stroke-width:1.00000011999999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
|
||||
d="M 10,16.59375 C 8.8196081,16.548814 7.6402135,17.571722 7.53125,18.8125 C 6.643292,26.100083 5.3269606,33.403527 4.65625,40.6875 L 4.65625,43.75 C 4.6900093,45.329492 5.7271791,46.392039 6.875,46.59375 L 41.5,46.59375 C 42.479024,46.569246 43.565009,45.89005 43.53125,44.59375 L 43.53125,40.65625 L 40.40625,19.4375 C 40.152431,18.135677 39.039534,16.752716 37.5,16.59375 L 10,16.59375 z"
|
||||
id="path5232"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5928);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:0.99999994000000003px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 10.601853,39.624614 C 9.47224,39.502143 8.6733861,38.760954 8.7014295,37.401046 L 10.601853,21.407733 C 10.893931,20.339398 11.586949,19.485349 12.680909,19.488442 L 34.605501,19.488442 C 35.691818,19.455762 36.778134,20.208796 37.062569,21.104687 L 39.478435,37.237611 C 39.535481,38.706714 38.931012,39.557098 37.913093,39.523599 L 10.601853,39.624614 z"
|
||||
id="path5230"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5841);fill-rule:evenodd;stroke:url(#linearGradient5849);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
|
||||
d="M 20.46875,20.4375 L 18.40625,32.46875 L 15.4375,32.46875 L 23.46875,37.625 L 32.4375,32.46875 L 29.46875,32.46875 L 27.59375,20.4375 L 20.46875,20.4375 z"
|
||||
id="path5197"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient5904);fill-opacity:1;stroke:#930000;stroke-width:1.00000011999999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5224"
|
||||
width="31.113209"
|
||||
height="6.0609155"
|
||||
x="8.4847708"
|
||||
y="4.5135489"
|
||||
rx="5.0159144"
|
||||
ry="1.9854566" />
|
||||
<rect
|
||||
style="opacity:0.58333333;fill:none;fill-opacity:1;stroke:url(#linearGradient5914);stroke-width:1.00000011999999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5896"
|
||||
width="29.080278"
|
||||
height="3.9395947"
|
||||
x="9.5003824"
|
||||
y="5.5690055"
|
||||
rx="1.8339339"
|
||||
ry="1.2783499" />
|
||||
<path
|
||||
style="opacity:0.24537036000000001;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient9781);stroke-width:1.00000011999999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 10.592965,17.57221 C 9.474152,17.53019 8.3562869,18.486727 8.2530054,19.647002 L 5.4687498,39.722803 C 5.4796612,39.847886 5.4997885,39.979699 5.5279893,40.102694 L 5.5279893,42.966491 C 5.559989,44.443503 6.5430497,45.407885 7.6309909,45.596509 L 40.479283,45.596509 C 41.407232,45.573597 42.406944,44.967688 42.374947,43.755497 L 42.374947,40.073472 C 42.382229,40.044972 42.398547,40.013922 42.404566,39.985805 L 42.374947,39.781247 L 42.374947,39.576691 L 42.345327,39.576691 L 39.442592,20.202228 C 39.202015,18.98487 38.147175,17.72086 36.687956,17.57221 L 10.592965,17.57221 z"
|
||||
id="path5881" />
|
||||
<path
|
||||
style="fill:url(#linearGradient9789);fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;opacity:0.20833333000000001"
|
||||
d="M 10.210155,29.955767 L 12.048004,22 L 36.07815,22.05802 L 37.857941,31.044156 L 36.681164,21.969631 C 36.460193,20.967897 35.929863,20 34.957591,20.025088 L 13.037281,19.980893 C 11.606886,19.936699 11.32554,20.864777 11,21.969631 L 10.210155,29.955767 z"
|
||||
id="path5926"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient5240);fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5226"
|
||||
width="7.0964494"
|
||||
height="25.970053"
|
||||
x="20.48369"
|
||||
y="3.6044116"
|
||||
rx="1.0763195"
|
||||
ry="1.0763192" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient5829);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5244"
|
||||
width="8.1317272"
|
||||
height="8.0433397"
|
||||
x="19.975765"
|
||||
y="22.013826"
|
||||
rx="1.0763195"
|
||||
ry="1.0763192" />
|
||||
<path
|
||||
style="opacity:0.43518521;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 11.423372,41.486321 L 39.533811,41.486321"
|
||||
id="path5879"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<rect
|
||||
style="opacity:0.22685185;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5892"
|
||||
width="5.151906"
|
||||
height="23.93712"
|
||||
x="21.428234"
|
||||
y="4.6321397"
|
||||
rx="1.0763195"
|
||||
ry="1.0763192" />
|
||||
<g
|
||||
id="g5972"
|
||||
style="opacity:0.62037037">
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path5831"
|
||||
d="M 20.4375,30.5 L 27.5,30.5"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path5833"
|
||||
d="M 19.960998,32.5 L 27.976504,32.5"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;opacity:0.68055556" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path5958"
|
||||
d="M 20.273498,31.5 L 27.726504,31.5"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#5d5d5c;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path5960"
|
||||
d="M 19.869986,33.488738 L 28.141277,33.488738"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#5d5d5c;stroke-width:0.99999994000000003px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;opacity:0.68055556" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 14.381412,31.513733 L 17.519198,31.513733"
|
||||
id="path9791"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 30.443912,31.451233 L 33.581698,31.451233"
|
||||
id="path9803"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.33500001;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path5119"
|
||||
sodipodi:cx="9.8553009"
|
||||
sodipodi:cy="42.188465"
|
||||
sodipodi:rx="1.1932427"
|
||||
sodipodi:ry="1.0827572"
|
||||
d="M 11.048544,42.188465 A 1.1932427,1.0827572 0 1 1 8.6620582,42.188465 A 1.1932427,1.0827572 0 1 1 11.048544,42.188465 z"
|
||||
transform="matrix(0.4216252,0,0,0.4766032,5.3634688,21.39228)" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
454
gtk/logo.h
|
@ -1,454 +0,0 @@
|
|||
/* GdkPixbuf RGBA C-Source image dump */
|
||||
|
||||
#ifdef __SUNPRO_C
|
||||
#pragma align 4 (tr_icon_logo)
|
||||
#endif
|
||||
#ifdef __GNUC__
|
||||
static const guint8 tr_icon_logo[] __attribute__ ((__aligned__ (4))) =
|
||||
#else
|
||||
static const guint8 tr_icon_logo[] =
|
||||
#endif
|
||||
{ ""
|
||||
/* Pixbuf magic (0x47646b50) */
|
||||
"GdkP"
|
||||
/* length: header (24) + pixel_data (9216) */
|
||||
"\0\0$\30"
|
||||
/* pixdata_type (0x1010002) */
|
||||
"\1\1\0\2"
|
||||
/* rowstride (192) */
|
||||
"\0\0\0\300"
|
||||
/* width (48) */
|
||||
"\0\0\0""0"
|
||||
/* height (48) */
|
||||
"\0\0\0""0"
|
||||
/* pixel_data: */
|
||||
"\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\213\213\211"
|
||||
"a\213\215\207\346\213\215\207\361\213\215\207\361\213\215\207\361\213"
|
||||
"\215\207\361\212\215\210\350\213\215\211n\377\377\377\0\377\377\377\0"
|
||||
"\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\224\0\0""9\224\0\0\203\227\0\0\270\227"
|
||||
"\0\0\342\224\0\0\374\223\0\0\377\223\0\0\377\223\0\0\377\223\0\0\377"
|
||||
"\223\0\0\377\223\1\1\377\212\206\202\377\273\274\270\377\312\313\306"
|
||||
"\377\312\314\307\377\312\314\307\377\312\313\306\377\275\277\272\377"
|
||||
"\212\207\203\377\222\5\5\377\223\0\0\377\223\0\0\377\223\0\0\377\223"
|
||||
"\0\0\377\223\0\0\377\224\0\0\374\230\0\0\343\231\0\0\273\224\0\0\210"
|
||||
"\221\0\0A\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\226\0\0\205\242\36\36\367\315"
|
||||
"``\376\334~~\377\341\177\177\377\345\177\177\377\345\177\177\377\345"
|
||||
"\177\177\377\345\177\177\377\345\177\177\377\345\177\177\377\342\177"
|
||||
"\177\377\213\213\206\377\343\344\341\377\336\337\333\377\335\336\332"
|
||||
"\377\335\336\332\377\336\337\333\377\343\344\341\377\221\217\212\377"
|
||||
"\334\200\200\377\345\177\177\377\345\177\177\377\345\177\177\377\345"
|
||||
"\177\177\377\345\177\177\377\345\177\177\377\341\177\177\377\334~~\377"
|
||||
"\316cc\376\247##\365\226\0\0\234\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\223\0\0\373\350[[\377"
|
||||
"\351--\377\345\11\11\377\345\6\6\377\345\6\6\377\345\6\6\377\345\6\6"
|
||||
"\377\345\6\6\377\345\6\6\377\345\6\6\377\342\12\12\377\214\213\206\377"
|
||||
"\360\360\357\377\354\354\352\377\354\354\352\377\354\354\352\377\354"
|
||||
"\354\352\377\360\360\356\377\223\215\210\377\334\22\22\377\345\6\6\377"
|
||||
"\345\6\6\377\345\6\6\377\345\6\6\377\345\6\6\377\345\6\6\377\345\6\6"
|
||||
"\377\345\11\11\377\350((\377\353^^\377\227\2\2\370\231\0\0\17\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\223\0"
|
||||
"\0\377\345KK\377\332\0\0\377\332\0\0\377\332\0\0\377\332\0\0\377\332"
|
||||
"\0\0\377\332\0\0\377\332\0\0\377\332\0\0\377\332\0\0\377\327\4\4\377"
|
||||
"\214\213\206\377\355\356\353\377\350\351\346\377\350\351\346\377\350"
|
||||
"\351\346\377\350\351\346\377\355\356\353\377\222\215\207\377\322\15\15"
|
||||
"\377\332\0\0\377\332\0\0\377\332\0\0\377\332\0\0\377\332\0\0\377\332"
|
||||
"\0\0\377\332\0\0\377\332\0\0\377\332\0\0\377\344DD\377\232\7\7\366\225"
|
||||
"\0\0\30\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\223\0\0\375\302((\377\276\20\20\377\272\1\1\377\272\0\0\377\272"
|
||||
"\0\0\377\272\0\0\377\272\0\0\377\272\0\0\377\272\0\0\377\272\0\0\377"
|
||||
"\270\4\4\377\213\213\206\377\352\353\350\377\344\345\342\377\344\345"
|
||||
"\342\377\344\345\342\377\344\345\342\377\352\352\350\377\221\214\207"
|
||||
"\377\265\15\15\377\272\0\0\377\272\0\0\377\272\0\0\377\272\0\0\377\272"
|
||||
"\0\0\377\272\0\0\377\272\0\0\377\272\1\1\377\275\14\14\377\304))\377"
|
||||
"\224\1\1\371\216\0\0\22\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\225\0\0\227\230\4\4\364\245\14\14\377\251\17"
|
||||
"\17\377\255\17\17\377\257\17\17\377\257\17\17\377\257\17\17\377\257\17"
|
||||
"\17\377\257\17\17\377\257\17\17\377\256\23\23\377\213\213\206\377\347"
|
||||
"\347\345\377\341\341\336\377\341\341\336\377\341\341\336\377\341\341"
|
||||
"\336\377\347\347\345\377\220\215\210\377\254\33\33\377\257\17\17\377"
|
||||
"\257\17\17\377\257\17\17\377\257\17\17\377\257\17\17\377\257\17\17\377"
|
||||
"\256\17\17\377\251\17\17\377\245\14\14\377\232\5\5\364\225\0\0\260\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\223\0\0N\224\0\0\242\225\0\0\321\223\0\0\363"
|
||||
"\224\0\0\372\224\0\0\370\224\0\0\370\224\0\0\370\224\0\0\370\224\0\0"
|
||||
"\370\223\4\4\370\213\213\206\377\344\345\342\377\335\336\332\377\335"
|
||||
"\336\332\377\335\336\332\377\335\336\332\377\344\345\342\377\217\214"
|
||||
"\207\377\223\15\15\371\224\0\0\370\224\0\0\370\224\0\0\370\224\0\0\370"
|
||||
"\224\0\0\370\223\0\0\372\224\0\0\365\225\0\0\324\226\0\0\247\223\0\0"
|
||||
"W\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\225\0\0\14\217\0\0\20\217\0\0\20\217\0"
|
||||
"\0\20\217\0\0\20\217\0\0\20\212++\27\213\215\207\374\341\342\337\377"
|
||||
"\331\332\326\377\331\332\326\377\331\332\326\377\331\332\326\377\341"
|
||||
"\342\337\377\217\221\214\367\214VV&\217\0\0\20\217\0\0\20\217\0\0\20"
|
||||
"\217\0\0\20\217\0\0\20\211\0\0\15\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\200\200"
|
||||
"\200\10\213\215\210\374\336\337\334\377\325\326\322\377\325\326\322\377"
|
||||
"\325\326\322\377\325\326\322\377\336\337\333\377\216\221\213\366\212"
|
||||
"\212\212\30\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\200\200\200\10\213"
|
||||
"\215\210\374\333\334\331\377\321\323\316\377\321\323\316\377\321\323"
|
||||
"\316\377\321\323\316\377\333\334\330\377\216\220\213\366\212\212\212"
|
||||
"\30\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\200\200\200\10\213\215\210"
|
||||
"\374\330\331\325\377\315\317\312\377\315\317\312\377\315\317\312\377"
|
||||
"\315\317\312\377\327\331\325\377\216\220\213\366\212\212\212\30\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\200\200\200\10\213\215\210\374\325"
|
||||
"\326\322\377\311\313\306\377\311\313\306\377\311\313\306\377\311\313"
|
||||
"\306\377\324\326\322\377\216\220\213\366\212\212\212\30\377\377\377\0"
|
||||
"\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0UWS\2UWS_WYU\315VXT\361VXT\361VXT\361VXT\361VXT\361VXT\361VXT\361V"
|
||||
"XT\361VXT\361WYU\361\212\214\207\377\322\323\317\377\305\307\302\377"
|
||||
"\305\307\302\377\305\307\302\377\305\307\302\377\321\323\317\377\214"
|
||||
"\216\210\377[]Y\362VXT\361VXT\361VXT\361VXT\361VXT\361VXT\361VXT\361"
|
||||
"VXT\361WYU\351VXTsUWS\10\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0UWSY\\^Z\364xzv\377\205\210\204\377\206\211\205"
|
||||
"\377\206\211\205\377\206\211\205\377\206\211\205\377\206\211\205\377"
|
||||
"\206\211\205\377\206\211\205\377\206\211\205\377\206\211\205\377\213"
|
||||
"\215\210\377\316\321\313\377\301\304\275\377\301\304\275\377\301\304"
|
||||
"\275\377\301\304\275\377\316\320\313\377\215\220\212\377\206\211\205"
|
||||
"\377\206\211\204\377\206\211\204\377\206\211\204\377\206\211\204\377"
|
||||
"\207\212\204\377\207\212\204\377\207\212\204\377\206\211\204\377~\200"
|
||||
"{\377ad_\364VXT\347UWS\13\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0WYU\343~\177|\377\203\205\201\377{~y\377y|w\377y|w\377y|w\377"
|
||||
"y|w\377y|w\377y|w\377y|w\377y|w\377y|w\377\212\214\207\377\313\316\310"
|
||||
"\377\275\300\271\377\275\300\271\377\275\300\271\377\275\300\271\377"
|
||||
"\313\315\310\377\214\216\211\377{}y\377y|w\377y|w\377y|w\377y|w\377y"
|
||||
"|w\377y|w\377y|w\377z}x\377\203\205\200\377\211\214\207\377cfa\365VX"
|
||||
"T|\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0UWS\21Z\\X\372\211\213\207"
|
||||
"\377x{v\377wzu\377hjf\377Z\\W\377UWS\377UWS\377UWS\377UWS\377UWS\377"
|
||||
"UWS\377VXT\377\212\214\207\377\311\313\306\377\272\275\266\377\272\275"
|
||||
"\266\377\272\275\266\377\272\275\266\377\310\313\305\377\213\215\210"
|
||||
"\377Z\\X\377UWS\377UWS\377UWS\377UWS\377UWS\377UWS\377bc_\377mok\377"
|
||||
"x{v\377\202\204\200\377\200\203~\377VXT\360\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0UWS2cfa\362\205\210\203\377x{v\377ilg\377mpk\377\240"
|
||||
"\243\234\377\242\246\236\377\242\246\236\377\242\246\236\377\242\246"
|
||||
"\236\377\242\246\236\377\242\246\236\377\232\235\226\377\211\213\207"
|
||||
"\377\311\313\306\377\272\275\266\377\272\275\266\377\272\275\266\377"
|
||||
"\272\275\266\377\310\313\305\377\211\213\207\377\224\227\221\377\243"
|
||||
"\246\237\377\243\246\237\377\243\246\237\377\243\246\237\377\243\246"
|
||||
"\237\377\241\244\235\377\221\225\215\377\\^Z\377psn\377y|w\377\214\217"
|
||||
"\212\377WYU\372UWS\22\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0UWSTlok\362\206\211\203"
|
||||
"\377|\177z\377[]Z\377\260\264\254\377\301\305\274\377\301\305\274\377"
|
||||
"\301\305\274\377\301\305\274\377\301\305\274\377\301\305\274\377\301"
|
||||
"\305\274\377\235\242\234\377\212\214\207\377\311\313\306\377\272\275"
|
||||
"\266\377\272\275\266\377\272\275\266\377\272\275\266\377\310\313\305"
|
||||
"\377\212\214\207\377\227\232\227\377\301\305\274\377\301\305\274\377"
|
||||
"\301\305\274\377\301\305\274\377\301\305\274\377\301\305\274\377\301"
|
||||
"\305\274\377\226\231\222\377gie\377|\177z\377\216\221\214\377_a]\361"
|
||||
"UWS8\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0UWSvwxu\373\206\211\204\377}\200{\377"
|
||||
"WZU\377\314\320\307\377\315\321\310\377\315\321\310\377\315\321\310\377"
|
||||
"\315\321\310\377\315\321\310\377\315\321\310\377\315\321\310\377\215"
|
||||
"\221\216\377\212\214\207\377\311\313\306\377\272\275\266\377\272\275"
|
||||
"\266\377\272\275\266\377\272\275\266\377\310\313\305\377\212\214\207"
|
||||
"\377\211\216\212\377\315\321\310\377\315\321\310\377\315\321\310\377"
|
||||
"\315\321\310\377\315\321\310\377\315\321\310\377\315\321\310\377\257"
|
||||
"\262\252\377cda\377\177\202}\377\216\221\214\377jlh\364UWS]\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0WYU\240\201\203\200\377\210\212\206\377{~z\377ad`\377"
|
||||
"\315\321\310\377\315\321\310\377\315\321\310\377\315\321\310\377\315"
|
||||
"\321\310\377\315\321\310\377\315\321\310\377\315\321\310\377ptq\377\200"
|
||||
"\202~\377\274\277\272\377\252\256\247\377\252\256\247\377\252\256\247"
|
||||
"\377\251\255\247\377\273\276\271\377\200\203~\377otr\377\315\321\310"
|
||||
"\377\315\321\310\377\315\321\310\377\315\321\310\377\315\321\310\377"
|
||||
"\315\321\310\377\315\321\310\377\301\305\274\377Z\\X\377\203\205\201"
|
||||
"\377\217\221\215\377vxt\375VXT\205\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0Y[W\310"
|
||||
"\214\216\213\377\210\213\206\377x{w\377psn\377\317\323\312\377\317\323"
|
||||
"\312\377\317\322\312\377\316\322\312\377\316\322\311\377\316\322\311"
|
||||
"\377\316\322\311\377\315\321\311\377RXW\377sws\377\255\261\255\377\227"
|
||||
"\233\226\377\227\233\226\377\227\233\226\377\227\233\226\377\255\260"
|
||||
"\254\377vxu\377Z^^\377\315\321\310\377\315\321\310\377\315\321\310\377"
|
||||
"\315\321\310\377\315\321\310\377\315\321\310\377\315\321\310\377\315"
|
||||
"\321\310\377Z\\W\377\202\205\201\377\217\222\214\377\202\204\200\377"
|
||||
"X[V\266\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0Z\\X\350\225\227\224\377\211\214\210"
|
||||
"\377twt\377\200\204~\377\323\326\316\377\323\326\316\377\322\326\316"
|
||||
"\377\322\326\316\377\322\326\316\377\322\325\315\377\322\325\315\377"
|
||||
"\321\325\315\377HLM\377gli\377\237\242\240\377\205\210\205\377\205\210"
|
||||
"\205\377\205\210\205\377\205\210\205\377\236\241\236\377ilj\377PTT\377"
|
||||
"\317\323\312\377\317\323\312\377\317\322\312\377\316\322\312\377\316"
|
||||
"\322\311\377\316\322\311\377\316\322\311\377\316\321\311\377ilf\377}"
|
||||
"\200|\377\216\221\216\377\217\221\216\377X[W\335\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0UWS\2]"
|
||||
"_[\373\233\235\232\377\215\217\213\377qso\377\225\230\222\377\327\332"
|
||||
"\323\377\326\332\323\377\326\332\322\377\326\331\322\377\326\331\322"
|
||||
"\377\326\331\322\377\325\331\321\377\311\314\305\377OSR\377]a_\377\220"
|
||||
"\224\222\377rvt\377rvt\377qus\377qus\377\217\222\220\377]a_\377QVV\377"
|
||||
"\314\317\310\377\323\326\316\377\322\326\316\377\322\326\316\377\322"
|
||||
"\326\316\377\322\325\315\377\322\325\315\377\321\325\315\377}\177y\377"
|
||||
"xzv\377\220\222\216\377\234\236\233\377VXT\370\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0UWS\36"
|
||||
"dfc\366\235\237\234\377\220\223\217\377nrm\377\247\252\244\377\332\336"
|
||||
"\327\377\332\335\327\377\332\335\327\377\332\335\326\377\332\335\326"
|
||||
"\377\331\335\326\377\331\334\326\377\266\271\264\377\\`^\377NSR\377\202"
|
||||
"\205\205\377`ed\377^cb\377^cb\377`ed\377\201\205\204\377OST\377^b`\377"
|
||||
"\274\300\271\377\326\332\323\377\326\332\322\377\326\331\322\377\326"
|
||||
"\331\322\377\326\331\322\377\325\331\321\377\325\331\321\377\225\230"
|
||||
"\222\377rtq\377\220\223\217\377\244\246\243\377Z\\X\366UWS\32\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0UWS@oq"
|
||||
"n\361\236\240\235\377\224\226\222\377imh\377\272\274\267\377\336\341"
|
||||
"\333\377\336\341\333\377\336\341\333\377\336\341\333\377\335\340\332"
|
||||
"\377\335\340\332\377\335\340\332\377\246\251\245\377_a`\377AGG\377bf"
|
||||
"g\377swx\377rww\377rww\377swx\377agg\377@FG\377bfd\377\255\262\255\377"
|
||||
"\332\336\327\377\332\335\327\377\332\335\326\377\332\335\326\377\331"
|
||||
"\335\326\377\331\335\326\377\331\334\325\377\252\255\247\377moj\377\224"
|
||||
"\226\222\377\244\246\243\377gie\361UWS@\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0UWSa~\200|\365\237\240\235\377"
|
||||
"\227\231\225\377bd`\377\315\320\313\377\342\345\340\377\342\345\337\377"
|
||||
"\342\344\337\377\341\344\337\377\341\344\337\377\341\344\336\377\341"
|
||||
"\344\336\377\224\226\223\377^`]\377CGG\3775;<\3777=>\3778>\77\3778=\77"
|
||||
"\3777<>\3775:<\377@DE\377ad`\377\241\245\240\377\336\341\333\377\336"
|
||||
"\341\333\377\336\341\333\377\335\341\332\377\335\340\332\377\335\340"
|
||||
"\332\377\335\340\332\377\302\304\277\377dfc\377\227\231\225\377\245\246"
|
||||
"\243\377wyv\365UWSe\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0VXT\205\213\216\213\376\237\241\236\377\231\234\230"
|
||||
"\377XZV\377\342\345\340\377\346\350\344\377\346\350\344\377\346\350\343"
|
||||
"\377\345\350\343\377\345\350\343\377\345\347\343\377\345\347\342\377"
|
||||
"\205\210\203\377^`]\377qsn\377twr\377uwr\377uwr\377uwr\377uwr\377twr"
|
||||
"\377prm\377ac_\377\222\225\221\377\343\346\340\377\344\347\341\377\344"
|
||||
"\346\341\377\342\345\340\377\341\344\336\377\341\344\336\377\341\344"
|
||||
"\336\377\331\333\327\377WYU\377\232\235\231\377\244\247\243\377\207\211"
|
||||
"\206\376WYU\220\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0Z\\X\260\231\233\230\377\240\242\236\377\227\231\225"
|
||||
"\377`a^\377\352\354\350\377\352\354\350\377\352\354\350\377\351\354\350"
|
||||
"\377\375\375\375\377\377\377\377\377\377\377\377\377\373\374\373\377"
|
||||
"\200\202~\377SUR\377XXV\377XYW\377XYW\377XYW\377XYW\377XYW\377XYW\377"
|
||||
"XXV\377Y[W\377\213\215\210\377\373\373\373\377\375\375\375\377\375\375"
|
||||
"\375\377\373\373\373\377\344\347\342\377\345\347\342\377\344\347\342"
|
||||
"\377\344\347\342\377ab_\377\225\230\223\377\246\247\244\377\226\230\224"
|
||||
"\377Z\\X\277\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0"
|
||||
"\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\\^Z\325\245\250\244\377\241\244\240\377\221\223\220"
|
||||
"\377pro\377\356\360\355\377\356\360\354\377\355\357\354\377\353\355\352"
|
||||
"\377\276\300\275\377\213\215\210\377\210\212\205\377\211\213\206\377"
|
||||
"\205\207\202\377SUS\377deb\377deb\377deb\377deb\377deb\377deb\377deb"
|
||||
"\377deb\377SUR\377\207\211\205\377\210\212\206\377\210\212\205\377\216"
|
||||
"\220\213\377\277\301\274\377\347\351\345\377\351\353\347\377\350\353"
|
||||
"\346\377\350\353\346\377uxr\377\214\217\213\377\244\247\243\377\246\250"
|
||||
"\245\377Z\\X\344\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0_a]\362\256\260\254\377\245\247\243\377\213\215\210\377"
|
||||
"\203\207\202\377\360\362\357\377\360\362\357\377\360\362\357\377\360"
|
||||
"\362\357\377\360\362\357\377\342\344\341\377\233\235\231\377\201\203"
|
||||
"\177\377MQO\377BFE\377LON\377LON\377LON\377LON\377LON\377LON\377LON\377"
|
||||
"LON\377DGF\377`da\377\210\212\205\377\254\256\252\377\345\347\343\377"
|
||||
"\355\357\353\377\355\357\353\377\354\357\353\377\354\356\353\377\354"
|
||||
"\356\353\377\217\221\216\377\203\205\201\377\246\250\244\377\265\266"
|
||||
"\263\377VXT\373UWS\3\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0UWS\12"
|
||||
"bd`\373\264\266\263\377\250\252\247\377\203\205\201\377\232\233\230\377"
|
||||
"\360\362\357\377\360\362\357\377\360\362\357\377\360\362\357\377\360"
|
||||
"\362\357\377\360\362\357\377\360\362\357\377\310\311\306\377\212\214"
|
||||
"\207\377eif\377<AA\377:\77\77\377:\77\77\377:\77\77\377:\77\77\377:\77"
|
||||
"\77\377:\77\77\377PTR\377\203\205\201\377\233\235\231\377\336\337\334"
|
||||
"\377\360\362\357\377\360\362\357\377\360\362\357\377\360\362\357\377"
|
||||
"\360\362\357\377\360\362\357\377\360\362\357\377\252\254\250\377{}y\377"
|
||||
"\250\252\247\377\271\272\270\377`b^\364UWS\"\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0UWS+pso\363\265\267\264\377\253\256\252\377}\200|\377"
|
||||
"\255\257\253\377\360\362\357\377\360\362\357\377\360\362\357\377\360"
|
||||
"\362\357\377\360\362\357\377\360\362\357\377\360\362\357\377\360\362"
|
||||
"\357\377\346\350\345\377\244\246\242\377\202\205\201\377GLL\37739:\377"
|
||||
"39:\37739:\377@EE\377wzw\377\217\220\213\377\320\321\316\377\360\362"
|
||||
"\357\377\360\362\357\377\360\362\357\377\360\362\357\377\360\362\357"
|
||||
"\377\360\362\357\377\360\362\357\377\360\362\357\377\360\362\357\377"
|
||||
"\301\304\301\377qso\377\253\256\252\377\271\274\270\377rsp\361UWSG\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0UWSM\200\202~\362\267\271\266\377"
|
||||
"\257\261\256\377vwu\377\300\301\276\377\360\362\357\377\360\362\357\377"
|
||||
"\360\362\357\377\360\362\357\377\360\362\357\377\360\362\357\377\360"
|
||||
"\362\357\377\360\362\357\377\360\362\357\377\360\362\357\377\321\322"
|
||||
"\317\377\214\216\212\377imj\3779>@\377eig\377\210\213\206\377\275\277"
|
||||
"\274\377\355\357\354\377\360\362\357\377\360\362\357\377\360\362\357"
|
||||
"\377\360\362\357\377\360\362\357\377\360\362\357\377\360\362\357\377"
|
||||
"\360\362\357\377\360\362\357\377\360\362\357\377\331\333\327\377cfa\377"
|
||||
"\257\261\256\377\272\273\271\377\206\210\204\370UWSm\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0UWSn\222\224\220\370\266\270\265\377\262\264"
|
||||
"\261\377pso\377\301\304\301\377\360\362\357\377\360\362\357\377\360\362"
|
||||
"\357\377\360\362\357\377\360\362\357\377\360\362\357\377\360\362\357"
|
||||
"\377\360\362\357\377\360\362\357\377\360\362\357\377\360\362\357\377"
|
||||
"\352\355\351\377\254\256\252\377\210\212\205\377\252\254\250\377\346"
|
||||
"\350\345\377\360\362\357\377\360\362\357\377\360\362\357\377\360\362"
|
||||
"\357\377\360\362\357\377\360\362\357\377\360\362\357\377\360\362\357"
|
||||
"\377\360\362\357\377\360\362\357\377\360\362\357\377\360\362\357\377"
|
||||
"\342\345\341\377^`\\\377\262\264\261\377\272\274\271\377\232\234\230"
|
||||
"\377Y[W\232\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\0\0\0\2XZV\231\243\244\241\377"
|
||||
"\270\272\267\377\266\270\265\377\211\213\210\377\206\211\205\377\351"
|
||||
"\353\350\377\360\362\357\377\360\362\357\377\360\362\357\377\360\362"
|
||||
"\357\377\360\362\357\377\360\362\357\377\360\362\357\377\360\362\357"
|
||||
"\377\360\362\357\377\360\362\357\377\360\362\357\377\360\362\357\377"
|
||||
"\350\352\347\377\360\362\357\377\360\362\357\377\360\362\357\377\360"
|
||||
"\362\357\377\360\362\357\377\360\362\357\377\360\362\357\377\360\362"
|
||||
"\357\377\360\362\357\377\360\362\357\377\360\362\357\377\360\362\357"
|
||||
"\377\360\362\357\377\357\361\356\377\254\256\252\377sur\377\266\270\265"
|
||||
"\377\272\274\271\377\253\254\252\377\\^Z\311\0\0\0\1\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\0\0\0\1---\21Z\\"
|
||||
"Y\313\260\262\257\377\271\273\270\377\271\273\270\377\260\262\256\377"
|
||||
"y{w\377]_[\377fgd\377egb\377dfc\377deb\377cfa\377bda\377bda\377bc`\377"
|
||||
"ad_\377ac_\377ab^\377ac^\377_a]\377_a]\377_a]\377_a]\377]_[\377^`[\377"
|
||||
"]_[\377[]Y\377\\^Z\377[]Y\377[]Y\377[]Y\377[]Y\377Z\\X\377XZV\377mol"
|
||||
"\377\241\243\241\377\271\273\270\377\273\275\273\377\273\275\273\377"
|
||||
"Y\\X\355$77\16\0\0\0\1\377\377\377\0\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0+++\6.44,Y[W\350\256\260\256\377\247\251\246\377\246\250\245"
|
||||
"\377\246\250\245\377\246\250\245\377\240\242\237\377\234\237\233\377"
|
||||
"\234\236\234\377\235\237\233\377\235\240\234\377\235\237\235\377\236"
|
||||
"\240\234\377\236\241\235\377\236\241\235\377\236\240\235\377\237\241"
|
||||
"\235\377\237\242\236\377\237\241\236\377\240\242\237\377\240\241\237"
|
||||
"\377\240\242\237\377\240\242\237\377\241\243\240\377\241\242\240\377"
|
||||
"\241\243\240\377\242\244\241\377\242\243\241\377\242\244\241\377\243"
|
||||
"\245\242\377\242\244\242\377\242\244\242\377\243\245\242\377\244\246"
|
||||
"\243\377\246\250\245\377\246\250\245\377\246\250\245\377\251\253\250"
|
||||
"\377\267\271\266\377VXT\3752>=*333\5\377\377\377\0\377\377\377\0\377"
|
||||
"\377\377\0\377\377\377\0""999\11.66=WYU\355\241\243\240\377\220\222\216"
|
||||
"\377\217\221\215\377\265\267\264\377\300\301\277\377\300\301\277\377"
|
||||
"\300\301\277\377\300\301\277\377\300\301\277\377\300\301\277\377\300"
|
||||
"\301\277\377\300\301\277\377\300\301\277\377\300\301\277\377\300\301"
|
||||
"\277\377\300\301\277\377\300\301\277\377\300\301\277\377\300\301\277"
|
||||
"\377\300\301\277\377\300\301\277\377\300\301\277\377\300\301\277\377"
|
||||
"\300\301\277\377\300\301\277\377\300\301\277\377\300\301\277\377\300"
|
||||
"\301\277\377\300\301\277\377\300\301\277\377\300\301\277\377\300\301"
|
||||
"\277\377\300\301\277\377\300\301\277\377\270\271\267\377\217\221\215"
|
||||
"\377\223\224\221\377\246\247\244\377VXT\3757<<=\40@@\10\377\377\377\0"
|
||||
"\377\377\377\0\377\377\377\0\377\377\377\0""999\11-55\77VXT\355\223\224"
|
||||
"\221\377y|w\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377"
|
||||
"x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377"
|
||||
"x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377"
|
||||
"x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377|\177z\377\224\226\222\377"
|
||||
"UWS\375588A\40@@\10\377\377\377\0\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0""999\11-55\77VXT\353\215\217\213\377\177\202~\377x{v\377x{v\377"
|
||||
"x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377"
|
||||
"x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377"
|
||||
"x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377"
|
||||
"x{v\377x{v\377}\200{\377\224\226\222\377UWS\375588A\40@@\10\377\377\377"
|
||||
"\0\377\377\377\0\377\377\377\0\377\377\377\0""999\11-55\77QTQ\275x{v"
|
||||
"\376\217\222\216\377{~y\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377"
|
||||
"x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377"
|
||||
"x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377"
|
||||
"x{v\377x{v\377x{v\377x{v\377x{v\377x{v\377y|w\377\211\214\207\377\211"
|
||||
"\213\207\377UWS\375376\77\40@@\10\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0@@@\10/77<CGEuY[W\367\201\204\177\377\226\230\224"
|
||||
"\377\225\227\223\377\225\227\223\377\225\227\223\377\225\227\223\377"
|
||||
"\225\227\223\377\225\227\223\377\225\227\223\377\225\227\223\377\225"
|
||||
"\227\223\377\225\227\223\377\225\227\223\377\225\227\223\377\225\227"
|
||||
"\223\377\225\227\223\377\225\227\223\377\225\227\223\377\225\227\223"
|
||||
"\377\225\227\223\377\225\227\223\377\225\227\223\377\225\227\223\377"
|
||||
"\225\227\223\377\225\227\223\377\225\227\223\377\225\227\223\377\225"
|
||||
"\227\223\377\225\227\223\377\225\227\223\377\225\227\223\377\225\227"
|
||||
"\223\377\225\227\223\377\225\227\223\377\225\230\224\377\217\222\215"
|
||||
"\377kni\377TVR\316.887\40@@\10\377\377\377\0\377\377\377\0\377\377\377"
|
||||
"\0\377\377\377\0+++\6""177*.66BILJ\213VXT\363Y[W\370[]Y\370[]Y\370[]"
|
||||
"Y\370[]Y\370[]Y\370[]Y\370[]Y\370[]Y\370[]Y\370[]Y\370[]Y\370[]Y\370"
|
||||
"[]Y\370[]Y\370[]Y\370[]Y\370[]Y\370[]Y\370[]Y\370[]Y\370[]Y\370[]Y\370"
|
||||
"[]Y\370[]Y\370[]Y\370[]Y\370[]Y\370[]Y\370[]Y\370[]Y\370[]Y\370[]Y\370"
|
||||
"Z\\X\370VXT\373UWS\333ADBd077%333\5\377\377\377\0\377\377\377\0\377\377"
|
||||
"\377\0\377\377\377\0\0\0\0\1$77\16""4;;'2778588A;\77>M;\77>M;\77>M;\77"
|
||||
">M;\77>M;\77>M;\77>M;\77>M;\77>M;\77>M;\77>M;\77>M;\77>M;\77>M;\77>M"
|
||||
";\77>M;\77>M;\77>M;\77>M;\77>M;\77>M;\77>M;\77>M;\77>M;\77>M;\77>M;\77"
|
||||
">M;\77>M;\77>M;\77>M;\77>M;\77>M;\77>M;\77>M9<;H/996077%...\13\0\0\0"
|
||||
"\1\377\377\377\0\377\377\377\0"};
|
||||
|
||||
|
|
@ -277,7 +277,7 @@ main( int argc, char ** argv )
|
|||
actions_init ( myUIManager, cbdata );
|
||||
gtk_ui_manager_add_ui_from_string (myUIManager, fallback_ui_file, -1, NULL);
|
||||
gtk_ui_manager_ensure_update (myUIManager);
|
||||
gtk_window_set_default_icon_name ( "transmission-logo" );
|
||||
gtk_window_set_default_icon_name ( "transmission" );
|
||||
|
||||
argfiles = checkfilenames( argc-1, argv+1 );
|
||||
didlock = didinit && sendremote( argfiles, sendquit );
|
||||
|
@ -901,7 +901,7 @@ about ( GtkWindow * parent )
|
|||
"version", LONG_VERSION_STRING,
|
||||
"website", "http://www.transmissionbt.com/",
|
||||
"copyright",_("Copyright 2005-2008 The Transmission Project"),
|
||||
"logo-icon-name", "transmission-logo",
|
||||
"logo-icon-name", "transmission",
|
||||
#ifdef SHOW_LICENSE
|
||||
"license", LICENSE,
|
||||
"wrap-license", TRUE,
|
||||
|
|
|
@ -88,7 +88,7 @@ gpointer
|
|||
tr_icon_new( TrCore * core )
|
||||
{
|
||||
guint id;
|
||||
GtkStatusIcon * icon = gtk_status_icon_new_from_stock ("transmission-logo");
|
||||
GtkStatusIcon * icon = gtk_status_icon_new_from_stock ("transmission");
|
||||
g_signal_connect( icon, "activate", G_CALLBACK( activated ), NULL );
|
||||
g_signal_connect( icon, "popup-menu", G_CALLBACK( popup ), NULL );
|
||||
id = g_timeout_add( 1000, refresh_tooltip_cb, icon );
|
||||
|
|