···19let optional = stdenv.lib.optional;
20in rec {
2122- firefoxVersion = "23.0";
2324- xulVersion = "23.0"; # this attribute is used by other packages
252627 src = fetchurl {
···31 # Fall back to this url for versions not available at releases.mozilla.org.
32 "ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${firefoxVersion}/source/firefox-${firefoxVersion}.source.tar.bz2"
33 ];
34- sha1 = "31936d2ddb727640c96a3ae697bf145c42a2a20e";
35 };
3637 commonConfigureFlags =
···19let optional = stdenv.lib.optional;
20in rec {
2122+ firefoxVersion = "23.0.1";
2324+ xulVersion = "23.0.1"; # this attribute is used by other packages
252627 src = fetchurl {
···31 # Fall back to this url for versions not available at releases.mozilla.org.
32 "ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${firefoxVersion}/source/firefox-${firefoxVersion}.source.tar.bz2"
33 ];
34+ sha1 = "66361fcvyl9liyh41gvgysiim90wsywk";
35 };
3637 commonConfigureFlags =
···1-{ stdenv, fetchurl, pkgconfig, mesa, glib, gdk_pixbuf
2-, pangoSupport ? true, pango, cairo
3-, libXfixes, libXcomposite, libXdamage }:
45stdenv.mkDerivation rec {
6 name = "cogl-1.8.2";
···13 nativeBuildInputs = [ pkgconfig ];
1415 propagatedBuildInputs =
16- [ mesa glib gdk_pixbuf libXfixes libXcomposite libXdamage ];
01718 buildInputs = stdenv.lib.optionals pangoSupport [ pango cairo ];
1920- meta = {
00000021 description = "A small open source library for using 3D graphics hardware for rendering";
22- longDescription =
23- ''
24- Cogl is a small open source library for using 3D graphics hardware for
25- rendering. The API departs from the flat state machine style of OpenGL
26- and is designed to make it easy to write orthogonal components that can
27- render without stepping on each others toes.
28- '';
0029 inherit (glib.meta) platforms;
30 };
31}
···1+{ stdenv, fetchurl, pkgconfig, mesa, glib, gdk_pixbuf, libXfixes, libXcomposite
2+, libXdamage, libintlOrEmpty
3+, pangoSupport ? true, pango, cairo }:
45stdenv.mkDerivation rec {
6 name = "cogl-1.8.2";
···13 nativeBuildInputs = [ pkgconfig ];
1415 propagatedBuildInputs =
16+ [ mesa glib gdk_pixbuf libXfixes libXcomposite libXdamage ]
17+ ++ libintlOrEmpty;
1819 buildInputs = stdenv.lib.optionals pangoSupport [ pango cairo ];
2021+ COGL_PANGO_DEP_CFLAGS
22+ = stdenv.lib.optionalString (stdenv.isDarwin && pangoSupport)
23+ "-I${pango}/include/pango-1.0 -I${cairo}/include/cairo";
24+25+ NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
26+27+ meta = with stdenv.lib; {
28 description = "A small open source library for using 3D graphics hardware for rendering";
29+ maintainers = with maintainers; [ lovek323 ];
30+31+ longDescription = ''
32+ Cogl is a small open source library for using 3D graphics hardware for
33+ rendering. The API departs from the flat state machine style of OpenGL
34+ and is designed to make it easy to write orthogonal components that can
35+ render without stepping on each other's toes.
36+ '';
37+38 inherit (glib.meta) platforms;
39 };
40}
+23-10
pkgs/development/libraries/gsoap/default.nix
···1-{ stdenv, fetchurl, m4, bison, flex, openssl, zlib }:
23-let version = "2.7.15"; in
4-5-stdenv.mkDerivation {
6 name = "gsoap-${version}";
078 src = fetchurl {
9- url = "mirror://sourceforge/gsoap2/files/gSOAP/2.7.15%20stable/gsoap_${version}.tar.gz";
10- sha256 = "3ed883ab1a3d32b5bb2bf599306f247f6de3ffedd8890eb0e6303ae15995dc12";
11 };
1213- buildInputs = [ m4 bison flex openssl zlib ];
14- meta = {
0015 homepage = "http://www.cs.fsu.edu/~engelen/soap.html";
16- description = "The gSOAP toolkit is an open source C and C++ software development toolkit for SOAP/WSDL and XML Web services.";
17- license = "free-non-copyleft";
00000000000018 };
19}
···1+{ stdenv, fetchurl, unzip, m4, bison, flex, openssl, zlib }:
23+stdenv.mkDerivation rec {
004 name = "gsoap-${version}";
5+ version = "2.8.16";
67 src = fetchurl {
8+ url = "mirror://sourceforge/project/gsoap2/gSOAP/gsoap_${version}.zip";
9+ sha256 = "00lhhysa9f9ychkvn1ij0ngr54l1dl9ww801yrliwq5c05gql7a6";
10 };
1112+ buildInputs = [ unzip m4 bison flex openssl zlib ];
13+14+ meta = with stdenv.lib; {
15+ description = "C/C++ toolkit for SOAP web services and XML-based applications";
16 homepage = "http://www.cs.fsu.edu/~engelen/soap.html";
17+ # gsoap is dual/triple licensed (see homepage for details):
18+ # 1. gSOAP Public License 1.3 (based on Mozilla Public License 1.1).
19+ # Components NOT covered by the gSOAP Public License are:
20+ # - wsdl2h tool and its source code output,
21+ # - soapcpp2 tool and its source code output,
22+ # - UDDI code,
23+ # - the webserver example code in gsoap/samples/webserver,
24+ # - and several example applications in the gsoap/samples directory.
25+ # 2. GPLv2 covers all of the software
26+ # 3. Proprietary commercial software development license (removes GPL
27+ # restrictions)
28+ license = licenses.gpl2;
29+ platforms = platforms.linux;
30+ maintainers = [ maintainers.bjornfor ];
31 };
32}
···1+commit 983634ea6b81910529596c262644eacfa2c2c4f9
2+Author: Shea Levy <shea@shealevy.com>
3+Date: Wed Sep 4 16:16:12 2013 -0400
4+5+ Fix LS_BUCKET
6+7+ GET foo.s3.amazonaws.com/ and GET s3.amazonaws.com/foo should result in
8+ an LS_BUCKET request, but under the previous logic it would result in a
9+ LIST_BUCKETS request. GET s3.amazonaws.com/ still results in a
10+ LIST_BUCKETS request due to the 'if path == "/" and s_req.is_path_style'
11+ conditional.
12+13+ Signed-off-by: Shea Levy <shea@shealevy.com>
14+15+diff --git a/lib/fakes3/server.rb b/lib/fakes3/server.rb
16+index 6958151..36d9cad 100644
17+--- a/lib/fakes3/server.rb
18++++ b/lib/fakes3/server.rb
19+@@ -213,10 +213,7 @@ module FakeS3
20+ elems = path.split("/")
21+ end
22+23+- if elems.size == 0
24+- # List buckets
25+- s_req.type = Request::LIST_BUCKETS
26+- elsif elems.size == 1
27++ if elems.size < 2
28+ s_req.type = Request::LS_BUCKET
29+ s_req.query = query
30+ else
···24 # Support drivers that need external firmware.
25 STANDALONE n
2627- # Enable the complete Linux kernel ".config" file to be saved in the kernel.
28- # Also, make it available at runtime as /proc/config.gz.
29- IKCONFIG y
30 IKCONFIG_PROC y
3132 # Optimize with -O2, not -Os.
···103 FB_SIS_300 y
104 FB_SIS_315 y
105 FB_3DFX_ACCEL y
106- FB_GEODE y
00107108 # Video configuration.
109 # Enable KMS for devices whose X.org driver supports it.
···24 # Support drivers that need external firmware.
25 STANDALONE n
2627+ # Make /proc/config.gz available.
0028 IKCONFIG_PROC y
2930 # Optimize with -O2, not -Os.
···101 FB_SIS_300 y
102 FB_SIS_315 y
103 FB_3DFX_ACCEL y
104+ ${optionalString (versionOlder version "3.9" || stdenv.system == "i686-linux") ''
105+ FB_GEODE y
106+ ''}
107108 # Video configuration.
109 # Enable KMS for devices whose X.org driver supports it.
···1-{stdenv, fetchurl, libedit, icu
00000000000000002, superServer ? false
3, port ? 3050
4, serviceName ? "gds_db"
···67/*
8 there are 3 ways to use firebird:
9- a) superserver
10 - one process, one thread for each connection
11- b) classic
12 - is built by default
13 - one process for each connection
14 - on linux direct io operations (?)
···22*/
2324stdenv.mkDerivation rec {
25- version = "2.5.2.26539-0";
26 name = "firebird-${version}";
27000000028 configureFlags =
29 [ "--with-serivec-port=${builtins.toString port}"
30 "--with-service-name=${serviceName}"
31- # "--with-system-icu"
32- # "--with-system-editline"
00033 ]
34- ++ (stdenv.lib.optional superServer "--enable-superserver=true");
03536 src = fetchurl {
37 url = "mirror://sourceforge/firebird/Firebird-${version}.tar.bz2";
38- sha256 = "1j5bcfl35hr6i4lcd08zls19bal2js3ar16gnwkzbhwxkxbyb43b";
39 };
4041- buildInputs = [libedit icu];
00004243 # TODO: Probably this hase to be tidied up..
44 # make install requires beeing. disabling the root checks
···1+{stdenv, fetchurl, libedit, ncurses, automake, autoconf, libtool
2+,
3+ # icu = null: use icu which comes with firebird
4+5+ # icu = pkgs.icu => you may have trouble sharing database files with windows
6+ # users if "Collation unicode" columns are being used
7+ # windows icu version is *30.dll, however neither the icu 3.0 nor the 3.6
8+ # sources look close to what ships with this package.
9+ # Thus I think its best to trust firebird devs and use their version
10+11+ # icu version missmatch may cause such error when selecting from a table:
12+ # "Collation unicode for character set utf8 is not installed"
13+14+ # icu 3.0 can still be build easily by nix (by dropping the #elif case and
15+ # make | make)
16+ icu ? null
17+18, superServer ? false
19, port ? 3050
20, serviceName ? "gds_db"
···2223/*
24 there are 3 ways to use firebird:
25+ a) superserver
26 - one process, one thread for each connection
27+ b) classic
28 - is built by default
29 - one process for each connection
30 - on linux direct io operations (?)
···38*/
3940stdenv.mkDerivation rec {
41+ version = "2.5.2.26540-0";
42 name = "firebird-${version}";
4344+ # enableParallelBuilding = false; build fails
45+46+ # http://tracker.firebirdsql.org/browse/CORE-3246
47+ preConfigure = ''
48+ makeFlags="$makeFlags CPU=$NIX_BUILD_CORES"
49+ '';
50+51 configureFlags =
52 [ "--with-serivec-port=${builtins.toString port}"
53 "--with-service-name=${serviceName}"
54+ # "--disable-static"
55+ "--with-system-editline"
56+ "--with-fblog=/var/log/firebird"
57+ "--with-fbconf=/etc/firebird"
58+ "--with-fbsecure-db=/var/db/firebird/system"
59 ]
60+ ++ (stdenv.lib.optional (icu != null) "--with-system-icu")
61+ ++ (stdenv.lib.optional superServer "--enable-superserver");
6263 src = fetchurl {
64 url = "mirror://sourceforge/firebird/Firebird-${version}.tar.bz2";
65+ sha256 = "0887a813wffp44hnc2gmwbc4ylpqw3fh3hz3bf6q3648344a9fdv";
66 };
6768+ # configurePhase = ''
69+ # sed -i 's@cp /usr/share/automake-.*@@' autogen.sh
70+ # sh autogen.sh $configureFlags --prefix=$out
71+ # '';
72+ buildInputs = [libedit icu automake autoconf libtool];
7374 # TODO: Probably this hase to be tidied up..
75 # make install requires beeing. disabling the root checks
···1+{ stdenv, fetchurl, perl, perlPackages }:
2+3+stdenv.mkDerivation {
4+ name = "stow-2.2.0";
5+6+ src = fetchurl {
7+ url = mirror://gnu/stow/stow-2.2.0.tar.bz2;
8+ sha256 = "01bbsqjmrnd9925s3grvgjnrl52q4w65imrvzy05qaij3pz31g46";
9+ };
10+11+ buildInputs = [ perl perlPackages.TestOutput ];
12+13+ doCheck = true;
14+15+ meta = {
16+ description = "Stow is a tool for managing the installation of multiple software packages in the same run-time directory tree.";
17+18+ longDescription = ''
19+ GNU Stow is a symlink farm manager which takes distinct packages
20+ of software and/or data located in separate directories on the
21+ filesystem, and makes them appear to be installed in the same
22+ place. For example, /usr/local/bin could contain symlinks to
23+ files within /usr/local/stow/emacs/bin, /usr/local/stow/perl/bin
24+ etc., and likewise recursively for any other subdirectories such
25+ as .../share, .../man, and so on.
26+ '';
27+28+ license = "GPLv3+";
29+ homepage = http://www.gnu.org/software/stow/;
30+31+ maintainers = with stdenv.lib.maintainers; [ the-kenny ];
32+ platforms = stdenv.lib.platforms.all;
33+ };
34+}
···1+{ stdenv, fetchurl, python3, libreoffice, asciidoc, makeWrapper
2+# whether to install odt2pdf/odt2doc/... symlinks to unoconv
3+, installSymlinks ? true
4+}:
5+6+# IMPORTANT: unoconv must use the same python version as libreoffice (unless it
7+# will not be able to load the pyuno module from libreoffice).
8+9+stdenv.mkDerivation rec {
10+ name = "unoconv-0.6";
11+12+ src = fetchurl {
13+ url = "http://dag.wieers.com/home-made/unoconv/${name}.tar.gz";
14+ sha256 = "1m3kv942zf5rzyrbkil0nhmyq9mm3007y64bb3s7w88mhr5n23kr";
15+ };
16+17+ buildInputs = [ asciidoc makeWrapper ];
18+19+ # We need to use python3 because libreoffice 4.x uses it. This patch comes
20+ # from unoconv.git, so it will be a part of the next release.
21+ patches = [ ./unoconv-python3.patch ];
22+23+ preBuild = ''
24+ makeFlags=prefix="$out"
25+ '';
26+27+ postInstall = ''
28+ sed -i "s|/usr/bin/env python.*|${python3}/bin/${python3.executable}|" "$out/bin/unoconv"
29+ wrapProgram "$out/bin/unoconv" --set UNO_PATH "${libreoffice}/lib/libreoffice/program/"
30+ '' + (if installSymlinks then ''
31+ make install-links prefix="$out"
32+ '' else "");
33+34+ meta = with stdenv.lib; {
35+ description = "Convert between any document format supported by LibreOffice/OpenOffice";
36+ homepage = http://dag.wieers.com/home-made/unoconv/;
37+ license = licenses.gpl2;
38+ platforms = platforms.linux;
39+ maintainers = [ maintainers.bjornfor ];
40+ };
41+}
···1+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+<!-- Created with Inkscape (http://www.inkscape.org/) -->
3+<svg
4+ xmlns:dc="http://purl.org/dc/elements/1.1/"
5+ xmlns:cc="http://web.resource.org/cc/"
6+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7+ xmlns:svg="http://www.w3.org/2000/svg"
8+ xmlns="http://www.w3.org/2000/svg"
9+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
10+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11+ id="svg2178"
12+ sodipodi:version="0.32"
13+ inkscape:version="0.45"
14+ width="1568"
15+ height="1164"
16+ version="1.0"
17+ sodipodi:docbase="F:\Uni\Scholl\Research\Conferences\BTW2007\Poster"
18+ sodipodi:docname="Logo.svg"
19+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
20+ sodipodi:modified="true">
21+ <metadata
22+ id="metadata2183">
23+ <rdf:RDF>
24+ <cc:Work
25+ rdf:about="">
26+ <dc:format>image/svg+xml</dc:format>
27+ <dc:type
28+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
29+ </cc:Work>
30+ </rdf:RDF>
31+ </metadata>
32+ <defs
33+ id="defs2181" />
34+ <sodipodi:namedview
35+ inkscape:window-height="1150"
36+ inkscape:window-width="1143"
37+ inkscape:pageshadow="2"
38+ inkscape:pageopacity="0.0"
39+ guidetolerance="10.0"
40+ gridtolerance="10.0"
41+ objecttolerance="10.0"
42+ borderopacity="1.0"
43+ bordercolor="#666666"
44+ pagecolor="#ffffff"
45+ id="base"
46+ inkscape:zoom="0.64948454"
47+ inkscape:cx="784"
48+ inkscape:cy="584.00852"
49+ inkscape:window-x="412"
50+ inkscape:window-y="20"
51+ inkscape:current-layer="layer2"
52+ showgrid="false"
53+ inkscape:object-bbox="true"
54+ inkscape:object-points="true"
55+ gridempspacing="10" />
56+ <g
57+ inkscape:groupmode="layer"
58+ id="layer2"
59+ style="opacity:1">
60+ <path
61+ style="font-size:1470px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:19.98425102;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;font-family:Clarendo"
62+ d="M 628.08008,847.55762 C 613.24569,864.30587 601.88095,879.3791 593.98584,892.77734 C 586.08995,906.17595 582.1422,916.94254 582.14258,925.07715 C 582.1422,937.9972 586.92735,947.08899 596.49805,952.35254 C 606.06796,957.61633 624.49079,960.24816 651.7666,960.24805 L 720.67285,960.24805 L 720.67285,1072.2207 L 207.46484,1072.2207 L 207.46484,960.24805 L 256.27344,960.24805 C 284.9843,960.24816 308.07265,955.94152 325.53857,947.32813 C 343.00426,938.71498 364.89633,919.09586 391.21484,888.4707 L 673.2998,568.34375 L 441.45898,276.92773 C 416.57596,245.82505 393.60723,224.77038 372.55273,213.76367 C 351.4979,202.75868 325.89734,197.25576 295.75098,197.25488 L 245.50684,197.25488 L 245.50684,86 L 767.32813,86 L 767.32813,197.25488 L 699.85742,197.25488 C 685.97999,197.25576 675.45266,199.76796 668.27539,204.7915 C 661.0972,209.81678 657.50834,217.11414 657.50879,226.68359 C 657.50834,233.38365 659.30277,240.20249 662.89209,247.14014 C 666.4805,254.07943 672.58156,262.57308 681.19531,272.62109 L 810.39453,429.81348 L 967.58691,265.44336 C 974.76388,258.26644 980.50606,250.84945 984.81348,243.19238 C 989.11933,235.53697 991.27265,229.07702 991.27344,223.8125 C 991.27265,215.20008 985.88936,208.62049 975.12354,204.07373 C 964.35618,199.5287 948.20629,197.25576 926.67383,197.25488 L 869.25195,197.25488 L 869.25195,86 L 1332.2158,86 L 1332.2158,197.25488 L 1279.1006,197.25488 C 1241.2968,197.25576 1189.8564,233.14439 1124.7793,304.9209 L 1123.3438,306.35645 L 905.8584,544.65723 L 1155.6436,856.1709 C 1194.8808,904.97966 1224.6684,934.52797 1245.0063,944.81592 C 1265.3422,955.10412 1294.412,960.24816 1332.2158,960.24805 L 1376,960.24805 L 1376,1072.2207 L 810.39453,1072.2207 L 810.39453,960.24805 L 877.86523,960.24805 C 901.79032,960.24816 919.25612,958.21447 930.2627,954.14697 C 941.26782,950.07971 946.77074,943.26087 946.77148,933.69043 C 946.77074,926.51284 945.3352,918.97623 942.46484,911.08057 C 939.59302,903.18523 935.28638,895.64861 929.54492,888.4707 L 768.76367,685.34082 L 628.08008,847.55762 z "
63+ id="text2175" />
64+ <path
65+ style="font-size:500px;font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#e00000;fill-opacity:1;stroke:#ffffff;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;font-family:Arial Black"
66+ d="M 146.16714,395.52869 L 353.19839,395.52869 C 387.70332,395.52904 414.19255,404.07396 432.66616,421.16345 C 451.13913,438.25361 460.37577,459.41244 460.37612,484.64001 C 460.37577,505.79912 453.78398,523.94688 440.60073,539.08337 C 431.81135,549.17472 418.95329,557.14998 402.02651,563.00916 C 427.74234,569.19424 446.66322,579.81434 458.78921,594.86951 C 470.9145,609.92499 476.97732,628.84587 476.97768,651.6322 C 476.97732,670.18697 472.66417,686.8699 464.03823,701.68103 C 455.41158,716.49227 443.61146,728.211 428.63784,736.83728 C 419.36019,742.20839 405.3628,746.11463 386.64565,748.55603 C 361.74306,751.81124 345.22289,753.43884 337.08511,753.43884 L 146.16714,753.43884 L 146.16714,395.52869 z M 257.7394,535.90955 L 305.83511,535.90955 C 323.0875,535.90976 335.09107,532.93939 341.84585,526.99841 C 348.60017,521.05789 351.97744,512.47229 351.97768,501.24158 C 351.97744,490.82517 348.60017,482.68716 341.84585,476.82751 C 335.09107,470.96842 323.33164,468.03874 306.56753,468.03845 L 257.7394,468.03845 L 257.7394,535.90955 z M 257.7394,676.53455 L 314.13589,676.53455 C 333.17863,676.53462 346.60635,673.15735 354.41909,666.40271 C 362.23134,659.64825 366.13758,650.57436 366.13784,639.18103 C 366.13758,628.60173 362.27203,620.0975 354.54116,613.66833 C 346.8098,607.23944 333.26001,604.02493 313.89175,604.02478 L 257.7394,604.02478 L 257.7394,676.53455 z "
67+ id="text2205" />
68+ <path
69+ style="font-size:500px;font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#e00000;fill-opacity:1;stroke:#ffffff;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;font-family:Arial Black"
70+ d="M 703.69272,694.35681 L 577.71616,694.35681 L 560.38217,753.43884 L 447.34506,753.43884 L 581.86655,395.52869 L 702.47202,395.52869 L 836.9935,753.43884 L 721.27084,753.43884 L 703.69272,694.35681 z M 680.49936,616.96423 L 640.94858,488.30212 L 601.64194,616.96423 L 680.49936,616.96423 z "
71+ id="text3180" />
72+ <path
73+ style="font-size:500px;font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#e00000;fill-opacity:1;stroke:#ffffff;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;font-family:Arial Black"
74+ d="M 810.90509,641.13416 L 916.1297,634.54236 C 918.40822,651.63231 923.04689,664.65313 930.04572,673.60486 C 941.4388,688.09061 957.71482,695.33344 978.87384,695.33337 C 994.6614,695.33344 1006.8277,691.63064 1015.3729,684.22498 C 1023.9176,676.81946 1028.19,668.23386 1028.1902,658.46814 C 1028.19,649.19091 1024.121,640.89013 1015.9832,633.5658 C 1007.845,626.24171 988.96479,619.3244 959.34259,612.81384 C 910.83987,601.90905 876.25331,587.42339 855.58282,569.35681 C 834.74945,551.29061 824.33279,528.26004 824.33282,500.26501 C 824.33279,481.87337 829.66319,464.49871 840.32404,448.14099 C 850.98479,431.7839 867.01667,418.92584 888.41974,409.56677 C 909.82262,400.20841 939.16015,395.52905 976.43243,395.52869 C 1022.1679,395.52905 1057.0393,404.03327 1081.0467,421.04138 C 1105.0535,438.05017 1119.3358,465.10906 1123.8934,502.21814 L 1019.6453,508.32166 C 1016.8782,492.20864 1011.0595,480.4899 1002.1893,473.16541 C 993.31863,465.84148 981.07092,462.17937 965.44611,462.17908 C 952.58787,462.17937 942.90364,464.90561 936.39337,470.35779 C 929.88282,475.81055 926.62761,482.44303 926.62775,490.25525 C 926.62761,495.95213 929.31316,501.07908 934.68439,505.63611 C 939.89257,510.35641 952.26235,514.75094 971.79376,518.8197 C 1020.1334,529.2366 1054.7606,539.77533 1075.6756,550.43591 C 1096.59,561.09692 1111.8081,574.32119 1121.3299,590.10876 C 1130.851,605.89668 1135.6118,623.55617 1135.6121,643.08728 C 1135.6118,666.03659 1129.2641,687.19543 1116.5692,706.56384 C 1103.8735,725.93237 1086.1327,740.62148 1063.3465,750.63123 C 1040.5598,760.64099 1011.8326,765.64587 977.16486,765.64587 C 916.29234,765.64587 874.13743,753.92713 850.70001,730.48962 C 827.26248,707.05218 813.99752,677.26705 810.90509,641.13416 L 810.90509,641.13416 z "
75+ id="text3184" />
76+ <path
77+ style="font-size:500px;font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#e00000;fill-opacity:1;stroke:#ffffff;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;font-family:Arial Black"
78+ d="M 1139.0592,395.52869 L 1435.4459,395.52869 L 1435.4459,471.9447 L 1249.899,471.9447 L 1249.899,528.82947 L 1422.0182,528.82947 L 1422.0182,601.82751 L 1249.899,601.82751 L 1249.899,672.38416 L 1440.817,672.38416 L 1440.817,753.43884 L 1139.0592,753.43884 L 1139.0592,395.52869 z "
79+ id="text3188" />
80+ </g>
81+</svg>